changed indentation to use spaces only
[wmaker-crm.git] / WPrefs.app / main.c
blob8313f508108a60ebc913681af0c7530c7c0c9aa9
1 /*
2 * WPrefs - Window Maker Preferences Program
4 * Copyright (c) 1998-2003 Alfredo K. Kojima
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 * USA.
22 #include "WPrefs.h"
25 #include <assert.h>
27 #include <X11/Xlocale.h>
29 #include <sys/wait.h>
30 #include <unistd.h>
33 char *NOptionValueChanged = "NOptionValueChanged";
35 extern void Initialize(WMScreen *scr);
37 #define MAX_DEATHS 64
39 struct {
40 pid_t pid;
41 void *data;
42 void (*handler)(void*);
43 } DeadHandlers[MAX_DEATHS];
46 static pid_t DeadChildren[MAX_DEATHS];
47 static int DeadChildrenCount = 0;
49 void
50 wAbort(Bool foo)
52 exit(1);
56 static void
57 print_help(char *progname)
59 printf(_("usage: %s [options]\n"), progname);
60 puts(_("options:"));
61 puts(_(" -display <display> display to be used"));
62 puts(_(" --version print version number and exit"));
63 puts(_(" --help print this message and exit"));
67 #if 0
68 static RETSIGTYPE
69 handleDeadChild(int sig)
71 pid_t pid;
72 int status;
74 pid = waitpid(-1, &status, WNOHANG);
75 if (pid > 0) {
76 DeadChildren[DeadChildrenCount++] = pid;
79 #endif
81 void
82 AddDeadChildHandler(pid_t pid, void (*handler)(void*), void *data)
84 int i;
86 for (i = 0; i < MAX_DEATHS; i++) {
87 if (DeadHandlers[i].pid == 0) {
88 DeadHandlers[i].pid = pid;
89 DeadHandlers[i].handler = handler;
90 DeadHandlers[i].data = data;
91 break;
94 assert(i!=MAX_DEATHS);
98 int
99 main(int argc, char **argv)
101 Display *dpy;
102 WMScreen *scr;
103 char *locale;
104 int i;
105 char *display_name="";
107 wsetabort(wAbort);
109 memset(DeadHandlers, 0, sizeof(DeadHandlers));
111 WMInitializeApplication("WPrefs", &argc, argv);
113 if (argc>1) {
114 for (i=1; i<argc; i++) {
115 if (strcmp(argv[i], "-version")==0
116 || strcmp(argv[i], "--version")==0) {
117 printf("WPrefs (Window Maker) %s\n", WVERSION);
118 exit(0);
119 } else if (strcmp(argv[i], "-display")==0) {
120 i++;
121 if (i>=argc) {
122 wwarning(_("too few arguments for %s"), argv[i-1]);
123 exit(0);
125 display_name = argv[i];
126 } else {
127 print_help(argv[0]);
128 exit(0);
133 locale = getenv("LANG");
134 setlocale(LC_ALL, "");
136 #ifdef I18N
137 if (getenv("NLSPATH"))
138 bindtextdomain("WPrefs", getenv("NLSPATH"));
139 else
140 bindtextdomain("WPrefs", LOCALEDIR);
141 textdomain("WPrefs");
143 if (!XSupportsLocale()) {
144 wwarning(_("X server does not support locale"));
146 if (XSetLocaleModifiers("") == NULL) {
147 wwarning(_("cannot set locale modifiers"));
149 #endif
151 dpy = XOpenDisplay(display_name);
152 if (!dpy) {
153 wfatal(_("could not open display %s"), XDisplayName(display_name));
154 exit(0);
156 #if 0
157 XSynchronize(dpy, 1);
158 #endif
159 scr = WMCreateScreen(dpy, DefaultScreen(dpy));
160 if (!scr) {
161 wfatal(_("could not initialize application"));
162 exit(0);
165 WMPLSetCaseSensitive(False);
167 Initialize(scr);
169 while (1) {
170 XEvent event;
172 WMNextEvent(dpy, &event);
174 while (DeadChildrenCount-- > 0) {
175 int i;
177 for (i=0; i<MAX_DEATHS; i++) {
178 if (DeadChildren[i] == DeadHandlers[i].pid) {
179 (*DeadHandlers[i].handler)(DeadHandlers[i].data);
180 DeadHandlers[i].pid = 0;
185 WMHandleEvent(&event);