2 * Window Maker window manager
4 * Copyright (c) 1997, 1998 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,
25 #include <sys/types.h>
30 typedef void (WCallBack
)(void *cdata
);
32 typedef void (WDeathHandler
)(pid_t pid
, unsigned int status
, void *cdata
);
34 void Shutdown(WShutdownMode mode
);
36 void RestoreDesktop(WScreen
*scr
);
38 void Exit(int status
);
40 void Restart(char *manager
, Bool abortOnFailure
);
42 void SetupEnvironment(WScreen
*scr
);
44 void DispatchEvent(XEvent
*event
);
48 Bool
wRootMenuPerformShortcut(XEvent
*event
);
50 void wRootMenuBindShortcuts(Window window
);
52 void OpenRootMenu(WScreen
*scr
, int x
, int y
, int keyboard
);
54 void OpenSwitchMenu(WScreen
*scr
, int x
, int y
, int keyboard
);
58 void OpenWindowMenu(WWindow
*wwin
, int x
, int y
, int keyboard
);
60 void OpenMiniwindowMenu(WWindow
*wwin
, int x
, int y
);
62 void OpenWorkspaceMenu(WScreen
*scr
, int x
, int y
);
64 void CloseWindowMenu(WScreen
*scr
);
68 #define UpdateSwitchMenu(a, b, c)
70 #define UpdateSwitchMenuWorkspace(a, b)
74 void UpdateSwitchMenu(WScreen
*scr
, WWindow
*wwin
, int action
);
76 void UpdateSwitchMenuWorkspace(WScreen
*scr
, int workspace
);
80 WMagicNumber
wAddDeathHandler(pid_t pid
, WDeathHandler
*callback
, void *cdata
);
82 void wColormapInstallForWindow(WScreen
*scr
, WWindow
*wwin
);
84 void wColormapInstallRoot(WScreen
*scr
);
86 void wColormapUninstallRoot(WScreen
*scr
);
88 void wColormapAllowClientInstallation(WScreen
*scr
, Bool starting
);
90 Pixmap
LoadIcon(WScreen
*scr
, char *path
, char *mask
, int title_height
);
92 void PlaceIcon(WScreen
*scr
, int *x_ret
, int *y_ret
);
94 void PlaceWindow(WWindow
*wwin
, int *x_ret
, int *y_ret
,
95 unsigned int width
, unsigned int height
);
98 char *MakeCPPArgs(char *path
);
101 char *ExpandOptions(WScreen
*scr
, char *cmdline
);
103 void ExecuteShellCommand(WScreen
*scr
, char *command
);
105 void StartLogShell(WScreen
*scr
);
107 Bool
IsDoubleClick(WScreen
*scr
, XEvent
*event
);
109 WWindow
*NextFocusWindow(WScreen
*scr
);
110 WWindow
*PrevFocusWindow(WScreen
*scr
);
112 void SlideWindow(Window win
, int from_x
, int from_y
, int to_x
, int to_y
);
114 char *ShrinkString(WMFont
*font
, char *string
, int width
);
116 char *FindImage(char *paths
, char *file
);
118 RImage
*wGetImageForWindowName(WScreen
*scr
, char *winstance
, char *wclass
);
120 BOOL
StringCompareHook(proplist_t pl1
, proplist_t pl2
);
122 int IsEof(FILE * stream
); /* feof that stats pipes */
124 char *FlattenStringList(char **list
, int count
);
126 void ParseWindowName(proplist_t value
, char **winstance
, char **wclass
,
129 void SendHelperMessage(WScreen
*scr
, char type
, int workspace
, char *msg
);
131 char *GetShortcutString(char *text
);
133 char *EscapeWM_CLASS(char *name
, char *class);
135 void UnescapeWM_CLASS(char *str
, char **name
, char **class);
138 void wHackedGrabKey(int keycode
, unsigned int modifiers
,
139 Window grab_window
, Bool owner_events
, int pointer_mode
,
143 void wHackedGrabButton(unsigned int button
, unsigned int modifiers
,
144 Window grab_window
, Bool owner_events
,
145 unsigned int event_mask
, int pointer_mode
,
146 int keyboard_mode
, Window confine_to
, Cursor cursor
);
149 /* this function is in dock.c */
150 void ParseCommand(char *command
, char ***argv
, int *argc
);
152 /* This function is in moveres.c. */
153 void wGetGeometryWindowSize(WScreen
*scr
, unsigned int *width
,
154 unsigned int *height
);
156 void ExecExitScript();
158 /****** I18N Wrapper for XFetchName,XGetIconName ******/
160 Bool
wFetchName(Display
*dpy
, Window win
, char **winname
);
161 Bool
wGetIconName(Display
*dpy
, Window win
, char **iconname
);