new menu editor updates
[wmaker-crm.git] / WPrefs.app / WPrefs.h
blob6e8308c84d145d06a3b25502b1210a9471a38fda
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.h>
38 #include <WUtil.h>
40 /* For EXTENDED_WINDOWSHORTCUT */
41 #include "../src/wconfig.h"
43 /****/
45 #define WVERSION "0.42"
46 #define WMVERSION "0.62.x"
49 extern char *NOptionValueChanged;
51 typedef struct _Panel Panel;
53 typedef struct {
54 unsigned flags; /* reserved for WPrefs.c Don't access it */
56 void (*createWidgets)(Panel*); /* called when showing for first time */
57 void (*updateDomain)(Panel*); /* save the changes to the dictionary */
58 Bool (*requiresRestart)(Panel*); /* return True if some static option was changed */
59 void (*undoChanges)(Panel*); /* reset values to those in the dictionary */
60 void (*prepareForClose)(Panel*); /* called when exiting WPrefs */
61 void (*showPanel)(Panel*); /* called when entering the panel */
62 void (*hidePanel)(Panel*); /* called when exiting the panel */
63 } CallbackRec;
66 /* all Panels must start with the following layout */
67 typedef struct PanelRec {
68 WMFrame *frame;
70 char *sectionName; /* section name to display in titlebar */
72 char *description;
74 CallbackRec callbacks;
75 } PanelRec;
79 void AddSection(Panel *panel, char *iconFile);
81 char *LocateImage(char *name);
83 WMWindow *GetWindow(Panel *panel);
85 /* manipulate the dictionary for the WindowMaker domain */
87 proplist_t GetObjectForKey(char *defaultName);
89 void SetObjectForKey(proplist_t object, char *defaultName);
91 void RemoveObjectForKey(char *defaultName);
93 char *GetStringForKey(char *defaultName);
95 int GetIntegerForKey(char *defaultName);
97 Bool GetBoolForKey(char *defaultName);
99 int GetSpeedForKey(char *defaultName);
101 void SetIntegerForKey(int value, char *defaultName);
103 void SetStringForKey(char *value, char *defaultName);
105 void SetBoolForKey(Bool value, char *defaultName);
107 void SetSpeedForKey(int speed, char *defaultName);
111 void AddDeadChildHandler(pid_t pid, void (*handler)(void*), void *data);
114 #define FRAME_TOP 105
115 #define FRAME_LEFT -2
116 #define FRAME_WIDTH 524
117 #define FRAME_HEIGHT 235
122 * Needed for HAVE_LIBINTL_H
124 #include "../src/config.h"
126 #if HAVE_LIBINTL_H && I18N
127 # include <libintl.h>
128 # define _(text) gettext(text)
129 # define N_(text) (text)
130 #else
131 # define _(text) (text)
132 # define N_(text) (text)
133 #endif
135 #endif