Merging of my tree.
This contains: * a few capplets were redone UI wise: ui-properties keyboard background-properties * splitting of libcapplet out of this modules (into libcapplet) * new html-based view in the control-center * initial import of functional root-manager This stuff isn't all done yet, but I wanted to get it in. TODO files will hopefully follow.
This commit is contained in:
parent
2749ba455b
commit
d42affc965
73 changed files with 6567 additions and 3322 deletions
71
root-manager/root-manager-helper.c
Normal file
71
root-manager/root-manager-helper.c
Normal file
|
@ -0,0 +1,71 @@
|
|||
/* Copyright (C) 1999 Red Hat Software, Inc.
|
||||
*
|
||||
* This 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <locale.h>
|
||||
#include <libintl.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/types.h>
|
||||
#include <gtk/gtk.h>
|
||||
#include "userdialogs.h"
|
||||
#include "root-manager-wrap.h"
|
||||
|
||||
void
|
||||
userhelper_fatal_error(int signal)
|
||||
{
|
||||
gtk_main_quit();
|
||||
}
|
||||
|
||||
int
|
||||
main(int argc, char* argv[])
|
||||
{
|
||||
char *argv2[] = { UH_PATH, "0", NULL };
|
||||
char **argv_fake;
|
||||
int argc_fake = 2;
|
||||
|
||||
int new_fd;
|
||||
|
||||
/* first set up our locale info for gettext. */
|
||||
setlocale (LC_ALL, "");
|
||||
bindtextdomain (PACKAGE, GNOMELOCALEDIR);
|
||||
textdomain (PACKAGE);
|
||||
|
||||
argv_fake = g_new0 (char *, 3);
|
||||
argv_fake[0] = UH_PATH;
|
||||
argv_fake[1] = "0";
|
||||
|
||||
if (!gtk_init_check(&argc_fake, &argv_fake)) {
|
||||
g_error ("Must be run with $DISPLAY");
|
||||
}
|
||||
|
||||
new_fd = dup (STDIN_FILENO);
|
||||
if (new_fd < 0)
|
||||
g_error ("error dup()'ing");
|
||||
|
||||
signal(SIGCHLD, userhelper_fatal_error);
|
||||
|
||||
userhelper_runv (UH_PATH, new_fd);
|
||||
|
||||
gtk_main();
|
||||
|
||||
g_print ("back...\n");
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue