New control center implementation

This commit is contained in:
Bradford Hovinen (Gdict maintainer) 2000-08-01 20:22:57 +00:00
parent f743b85074
commit 5eeb2d20a6
10 changed files with 834 additions and 0 deletions

52
control-center/main.c Normal file
View file

@ -0,0 +1,52 @@
/* -*- mode: c; style: linux -*- */
/* main.c
* Copyright (C) 2000 Helix Code, Inc.
*
* Written by Bradford Hovinen (hovinen@helixcode.com)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <gnome.h>
#include "capplet-dir.h"
int
main (int argc, char **argv)
{
CappletDirEntry *main_dir;
bindtextdomain (PACKAGE, GNOMELOCALEDIR);
textdomain (PACKAGE);
gnome_init ("control-center", VERSION, argc, argv);
main_dir = capplet_dir_new (SETTINGS_DIR);
if (!main_dir)
g_error ("Could not find directory of control panels");
capplet_dir_entry_activate (main_dir);
gtk_main ();
return 0;
}