A few miscelaneous fixes
[wmaker-crm.git] / WPrefs.app / WPrefs.h
blob0815da6977a8b38d1a6438f09e60ece2d007d358
1 /* WPrefs.h- general definitions
2 *
3 * WPrefs - Window Maker Preferences Program
4 *
5 * Copyright (c) 1998, 1999 Alfredo K. Kojima
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20 * USA.
23 #ifndef WPREFS_H_
24 #define WPREFS_H_
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <string.h>
29 #include <signal.h>
31 #include <X11/Xlib.h>
33 #include <proplist.h>
35 #include <wraster.h>
37 #include <WINGs/WINGs.h>
39 /* For EXTENDED_WINDOWSHORTCUT */
40 #include "../src/wconfig.h"
42 /****/
44 #define WVERSION "0.44"
45 #define WMVERSION "0.64.x"
47 extern char *NOptionValueChanged;
49 typedef struct _Panel Panel;
51 typedef struct {
52 unsigned flags; /* reserved for WPrefs.c Don't access it */
54 void (*createWidgets)(Panel*); /* called when showing for first time */
55 void (*updateDomain)(Panel*); /* save the changes to the dictionary */
56 Bool (*requiresRestart)(Panel*); /* return True if some static option was changed */
57 void (*undoChanges)(Panel*); /* reset values to those in the dictionary */
58 void (*prepareForClose)(Panel*); /* called when exiting WPrefs */
59 void (*showPanel)(Panel*); /* called when entering the panel */
60 void (*hidePanel)(Panel*); /* called when exiting the panel */
61 } CallbackRec;
64 /* all Panels must start with the following layout */
65 typedef struct PanelRec {
66 WMBox *box;
68 char *sectionName; /* section name to display in titlebar */
70 char *description;
72 CallbackRec callbacks;
73 } PanelRec;
77 void AddSection(Panel *panel, char *iconFile);
79 char *LocateImage(char *name);
81 void SetButtonAlphaImage(WMScreen *scr, WMButton *bPtr, char *file,
82 char *title1, char *title2);
84 WMWindow *GetWindow(Panel *panel);
86 /* manipulate the dictionary for the WindowMaker domain */
88 proplist_t GetObjectForKey(char *defaultName);
90 void SetObjectForKey(proplist_t object, char *defaultName);
92 void RemoveObjectForKey(char *defaultName);
94 char *GetStringForKey(char *defaultName);
96 int GetIntegerForKey(char *defaultName);
98 Bool GetBoolForKey(char *defaultName);
100 int GetSpeedForKey(char *defaultName);
102 void SetIntegerForKey(int value, char *defaultName);
104 void SetStringForKey(char *value, char *defaultName);
106 void SetBoolForKey(Bool value, char *defaultName);
108 void SetSpeedForKey(int speed, char *defaultName);
112 void AddDeadChildHandler(pid_t pid, void (*handler)(void*), void *data);
115 #define FRAME_TOP 105
116 #define FRAME_LEFT -2
117 #define FRAME_WIDTH 524
118 #define FRAME_HEIGHT 235
123 * Needed for HAVE_LIBINTL_H
125 #include "../src/config.h"
127 #if HAVE_LIBINTL_H && I18N
128 # include <libintl.h>
129 # define _(text) gettext(text)
130 # define N_(text) (text)
131 #else
132 # define _(text) (text)
133 # define N_(text) (text)
134 #endif
136 #endif