1 /* WPrefs.h- general definitions
3 * WPrefs - Window Maker Preferences Program
5 * Copyright (c) 1998, 1999 Alfredo K. Kojima
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,
40 /* For EXTENDED_WINDOWSHORTCUT */
41 #include "../src/wconfig.h"
45 #define WVERSION "0.42"
46 #define WMVERSION "0.62.x"
49 extern char *NOptionValueChanged
;
51 typedef struct _Panel Panel
;
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 */
66 /* all Panels must start with the following layout */
67 typedef struct PanelRec
{
70 char *sectionName
; /* section name to display in titlebar */
74 CallbackRec callbacks
;
79 void AddSection(Panel
*panel
, char *iconFile
);
81 char *LocateImage(char *name
);
83 void SetButtonAlphaImage(WMScreen
*scr
, WMButton
*bPtr
, char *file
,
84 char *title1
, char *title2
);
86 WMWindow
*GetWindow(Panel
*panel
);
88 /* manipulate the dictionary for the WindowMaker domain */
90 proplist_t
GetObjectForKey(char *defaultName
);
92 void SetObjectForKey(proplist_t object
, char *defaultName
);
94 void RemoveObjectForKey(char *defaultName
);
96 char *GetStringForKey(char *defaultName
);
98 int GetIntegerForKey(char *defaultName
);
100 Bool
GetBoolForKey(char *defaultName
);
102 int GetSpeedForKey(char *defaultName
);
104 void SetIntegerForKey(int value
, char *defaultName
);
106 void SetStringForKey(char *value
, char *defaultName
);
108 void SetBoolForKey(Bool value
, char *defaultName
);
110 void SetSpeedForKey(int speed
, char *defaultName
);
114 void AddDeadChildHandler(pid_t pid
, void (*handler
)(void*), void *data
);
117 #define FRAME_TOP 105
118 #define FRAME_LEFT -2
119 #define FRAME_WIDTH 524
120 #define FRAME_HEIGHT 235
125 * Needed for HAVE_LIBINTL_H
127 #include "../src/config.h"
129 #if HAVE_LIBINTL_H && I18N
130 # include <libintl.h>
131 # define _(text) gettext(text)
132 # define N_(text) (text)
134 # define _(text) (text)
135 # define N_(text) (text)