Prevent crash when switchpanel is not initialised.
[wmaker-crm.git] / src / funcs.h
blobb996856b67421cd76c1fa2fd6c02af8d8ec47fab
1 /*
2 * Window Maker window manager
4 * Copyright (c) 1997-2003 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 along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #ifndef WMFUNCS_H_
22 #define WMFUNCS_H_
24 #include <sys/types.h>
25 #include <stdio.h>
27 #include "window.h"
28 #include "defaults.h"
29 #include "keybind.h"
31 typedef void (WCallBack)(void *cdata);
32 typedef void (WDeathHandler)(pid_t pid, unsigned int status, void *cdata);
35 /* ---[ cycling.c ]------------------------------------------------------- */
37 void StartWindozeCycle(WWindow *wwin, XEvent *event, Bool next, Bool class_only);
40 /* ---[ event.c ]--------------------------------------------------------- */
42 void EventLoop(void);
43 void DispatchEvent(XEvent *event);
44 void ProcessPendingEvents(void);
45 WMagicNumber wAddDeathHandler(pid_t pid, WDeathHandler *callback, void *cdata);
46 Bool IsDoubleClick(WScreen *scr, XEvent *event);
49 /* ---[ main.c ]---------------------------------------------------------- */
51 int getWVisualID(int screen);
54 /* ---[ monitor.c ]------------------------------------------------------- */
56 int MonitorLoop(int argc, char **argv);
59 /* ---[ osdep_*.c ]------------------------------------------------------- */
61 Bool GetCommandForPid(int pid, char ***argv, int *argc);
64 /* ---[ startup.c ]------------------------------------------------------- */
66 void StartUp(Bool defaultScreenOnly);
68 void wHackedGrabButton(unsigned int button, unsigned int modifiers,
69 Window grab_window, Bool owner_events,
70 unsigned int event_mask, int pointer_mode,
71 int keyboard_mode, Window confine_to, Cursor cursor);
73 #ifdef NUMLOCK_HACK
74 void wHackedGrabKey(int keycode, unsigned int modifiers,
75 Window grab_window, Bool owner_events, int pointer_mode,
76 int keyboard_mode);
77 #endif
80 /* ---[ switchmenu.c ]---------------------------------------------------- */
82 void UpdateSwitchMenu(WScreen *scr, WWindow *wwin, int action);
83 void OpenSwitchMenu(WScreen *scr, int x, int y, int keyboard);
84 void InitializeSwitchMenu(void);
87 /* ---[ winmenu.c ]------------------------------------------------------- */
89 void OpenWindowMenu(WWindow *wwin, int x, int y, int keyboard);
90 void OpenWindowMenu2(WWindow *wwin, int x, int y, int keyboard);
91 void OpenMiniwindowMenu(WWindow *wwin, int x, int y);
92 void CloseWindowMenu(WScreen *scr);
93 void DestroyWindowMenu(WScreen *scr);
95 #endif