/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* main.c: this file is part of users-admin, a ximian-setup-tool frontend * for user administration. * * Copyright (C) 2000-2001 Ximian, Inc. * * 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 of the * License, 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. * * Authors: Carlos Garnacho Parro , * Tambet Ingo and * Arturo Espinosa . */ #include #include "gst.h" #include #include #include #include "table.h" #include "callbacks.h" #include "users-tool.h" GstTool *tool; void quit_cb (GstTool *tool, gpointer data); static GstDialogSignal signals[] = { /* Main dialog callbacks, users tab */ { "user_delete", "clicked", G_CALLBACK (on_user_delete_clicked) }, { "manage_groups", "clicked", G_CALLBACK (on_manage_groups_clicked) }, /* Main dialog callbacks, groups tab */ { "group_new", "clicked", G_CALLBACK (on_group_new_clicked) }, { "group_settings", "clicked", G_CALLBACK (on_group_settings_clicked) }, { "group_delete", "clicked", G_CALLBACK (on_group_delete_clicked) }, { "groups_dialog_help", "clicked", G_CALLBACK (on_groups_dialog_show_help) }, { NULL }}; static void main_window_prepare (GstUsersTool *tool) { GtkWidget *uid_entry; uid_entry = gst_dialog_get_widget (GST_TOOL (tool)->main_dialog, "user_settings_uid"); gtk_spin_button_set_range (GTK_SPIN_BUTTON (uid_entry), 0, OOBS_MAX_UID); create_tables (tool); gtk_window_set_default_size (GTK_WINDOW (GST_TOOL (tool)->main_dialog), 650, 400); /* For random password generation. */ srand (time (NULL)); } int main (int argc, char *argv[]) { gst_init_tool ("users-admin", argc, argv, NULL); tool = GST_TOOL (gst_users_tool_new ()); gst_dialog_connect_signals (tool->main_dialog, signals); main_window_prepare (GST_USERS_TOOL (tool)); gtk_widget_show (GTK_WIDGET (tool->main_dialog)); gtk_main (); return 0; }