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 /** some config options **/
41 #undef EXTEND_WINDOWSHORTCUT
45 #define WVERSION "0.40"
46 #define WMVERSION "0.54.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 */
64 /* all Panels must start with the following layout */
65 typedef struct PanelRec
{
68 char *sectionName
; /* section name to display in titlebar */
72 CallbackRec callbacks
;
77 void AddSection(Panel
*panel
, char *iconFile
);
79 char *LocateImage(char *name
);
81 void SetButtonAlphaImage(WMScreen
*scr
, WMButton
*bPtr
, char *file
);
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)
130 # define _(text) (text)