wmaker: Reorganised the header 'funcs.h'
[wmaker-crm.git] / src / funcs.h
blob4503a65bca7d3a78ca3e9c8126c46126f34f55dd
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 DispatchEvent(XEvent *event);
43 WMagicNumber wAddDeathHandler(pid_t pid, WDeathHandler *callback, void *cdata);
44 Bool IsDoubleClick(WScreen *scr, XEvent *event);
47 /* ---[ main.c ]---------------------------------------------------------- */
49 int getWVisualID(int screen);
52 /* ---[ osdep_*.c ]------------------------------------------------------- */
54 Bool GetCommandForPid(int pid, char ***argv, int *argc);
57 /* ---[ startup.c ]------------------------------------------------------- */
59 void wHackedGrabButton(unsigned int button, unsigned int modifiers,
60 Window grab_window, Bool owner_events,
61 unsigned int event_mask, int pointer_mode,
62 int keyboard_mode, Window confine_to, Cursor cursor);
64 #ifdef NUMLOCK_HACK
65 void wHackedGrabKey(int keycode, unsigned int modifiers,
66 Window grab_window, Bool owner_events, int pointer_mode,
67 int keyboard_mode);
68 #endif
71 /* ---[ switchmenu.c ]---------------------------------------------------- */
73 void UpdateSwitchMenu(WScreen *scr, WWindow *wwin, int action);
74 void OpenSwitchMenu(WScreen *scr, int x, int y, int keyboard);
75 void InitializeSwitchMenu(void);
78 /* ---[ winmenu.c ]------------------------------------------------------- */
80 void OpenWindowMenu(WWindow *wwin, int x, int y, int keyboard);
81 void OpenWindowMenu2(WWindow *wwin, int x, int y, int keyboard);
82 void OpenMiniwindowMenu(WWindow *wwin, int x, int y);
83 void CloseWindowMenu(WScreen *scr);
84 void DestroyWindowMenu(WScreen *scr);
86 #endif