New header file event.h
[wmaker-crm.git] / src / funcs.h
blob678c6a4c6c4e2862344c827f3ca1d14c32e6d72a
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 /* ---[ main.c ]---------------------------------------------------------- */
37 int getWVisualID(int screen);
40 /* ---[ monitor.c ]------------------------------------------------------- */
42 int MonitorLoop(int argc, char **argv);
45 /* ---[ osdep_*.c ]------------------------------------------------------- */
47 Bool GetCommandForPid(int pid, char ***argv, int *argc);
50 /* ---[ switchmenu.c ]---------------------------------------------------- */
52 void UpdateSwitchMenu(WScreen *scr, WWindow *wwin, int action);
53 void OpenSwitchMenu(WScreen *scr, int x, int y, int keyboard);
54 void InitializeSwitchMenu(void);
57 /* ---[ winmenu.c ]------------------------------------------------------- */
59 void OpenWindowMenu(WWindow *wwin, int x, int y, int keyboard);
60 void OpenWindowMenu2(WWindow *wwin, int x, int y, int keyboard);
61 void OpenMiniwindowMenu(WWindow *wwin, int x, int y);
62 void CloseWindowMenu(WScreen *scr);
63 void DestroyWindowMenu(WScreen *scr);
65 #endif