- Finished moving to the new proplist handling code in WINGs.
[wmaker-crm.git] / src / funcs.h
blob19228d8ae3e7cc1843b20875e6a640e5bfc5ba07
1 /*
2 * Window Maker window manager
3 *
4 * Copyright (c) 1997, 1998 Alfredo K. Kojima
5 *
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,
19 * USA.
22 #ifndef WMFUNCS_H_
23 #define WMFUNCS_H_
25 #include <sys/types.h>
26 #include <stdio.h>
28 #include "window.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);
46 #ifdef LITE
47 #define UpdateSwitchMenu(a,b,c)
48 #else
49 void UpdateSwitchMenu(WScreen *scr, WWindow *wwin, int action);
51 Bool wRootMenuPerformShortcut(XEvent *event);
53 void wRootMenuBindShortcuts(Window window);
55 void OpenRootMenu(WScreen *scr, int x, int y, int keyboard);
57 void OpenSwitchMenu(WScreen *scr, int x, int y, int keyboard);
59 #endif /* !LITE */
63 void OpenWindowMenu(WWindow *wwin, int x, int y, int keyboard);
65 void OpenMiniwindowMenu(WWindow *wwin, int x, int y);
67 void OpenWorkspaceMenu(WScreen *scr, int x, int y);
69 void CloseWindowMenu(WScreen *scr);
71 WMagicNumber wAddDeathHandler(pid_t pid, WDeathHandler *callback, void *cdata);
73 void wColormapInstallForWindow(WScreen *scr, WWindow *wwin);
75 void wColormapInstallRoot(WScreen *scr);
77 void wColormapUninstallRoot(WScreen *scr);
79 void wColormapAllowClientInstallation(WScreen *scr, Bool starting);
81 Pixmap LoadIcon(WScreen *scr, char *path, char *mask, int title_height);
83 void PlaceIcon(WScreen *scr, int *x_ret, int *y_ret);
85 void PlaceWindow(WWindow *wwin, int *x_ret, int *y_ret,
86 unsigned int width, unsigned int height);
89 void StartWindozeCycle(WWindow *wwin, XEvent *event, Bool next);
91 #ifdef USECPP
92 char *MakeCPPArgs(char *path);
93 #endif
95 char *ExpandOptions(WScreen *scr, char *cmdline);
97 void ExecuteShellCommand(WScreen *scr, char *command);
99 void StartLogShell(WScreen *scr);
101 Bool IsDoubleClick(WScreen *scr, XEvent *event);
103 WWindow *NextToFocusAfter(WWindow *wwin);
104 WWindow *NextToFocusBefore(WWindow *wwin);
106 void SlideWindow(Window win, int from_x, int from_y, int to_x, int to_y);
108 char *ShrinkString(WMFont *font, char *string, int width);
110 char *FindImage(char *paths, char *file);
112 RImage*wGetImageForWindowName(WScreen *scr, char *winstance, char *wclass);
114 int IsEof(FILE * stream); /* feof that stats pipes */
116 void ParseWindowName(WMPropList *value, char **winstance, char **wclass,
117 char *where);
119 void SendHelperMessage(WScreen *scr, char type, int workspace, char *msg);
121 char *GetShortcutString(char *text);
123 char *EscapeWM_CLASS(char *name, char *class);
125 void UnescapeWM_CLASS(char *str, char **name, char **class);
127 #ifdef NUMLOCK_HACK
128 void wHackedGrabKey(int keycode, unsigned int modifiers,
129 Window grab_window, Bool owner_events, int pointer_mode,
130 int keyboard_mode);
131 #endif
133 void wHackedGrabButton(unsigned int button, unsigned int modifiers,
134 Window grab_window, Bool owner_events,
135 unsigned int event_mask, int pointer_mode,
136 int keyboard_mode, Window confine_to, Cursor cursor);
139 void ExecExitScript();
141 /****** I18N Wrapper for XFetchName,XGetIconName ******/
143 Bool wFetchName(Display *dpy, Window win, char **winname);
144 Bool wGetIconName(Display *dpy, Window win, char **iconname);
148 #endif