1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
/*
* ion/ioncore/rootwin.h
*
* Copyright (c) Tuomo Valkonen 1999-2007.
*
* See the included file LICENSE for details.
*/
#ifndef ION_IONCORE_ROOTWIN_H
#define ION_IONCORE_ROOTWIN_H
#include "common.h"
#include "window.h"
#include "screen.h"
#include "gr.h"
#include "rectangle.h"
#include "screen.h"
#define WROOTWIN_ROOT(X) ((X)->wwin.win)
#define FOR_ALL_ROOTWINS(RW) \
for(RW=ioncore_g.rootwins; \
RW!=NULL; \
RW=OBJ_CAST(((WRegion*)RW)->p_next, WRootWin))
DECLCLASS(WRootWin){
WWindow wwin;
int xscr;
Colormap default_cmap;
Window *tmpwins;
int tmpnwins;
Window dummy_win;
GC xor_gc;
};
extern void rootwin_deinit(WRootWin *rootwin);
extern WScreen *rootwin_current_scr(WRootWin *rootwin);
extern void rootwin_warp_pointer(WRootWin *root, int x, int y);
extern void rootwin_manage_initial_windows(WRootWin *rootwin);
extern WRootWin *create_rootwin(int xscr);
#endif /* ION_IONCORE_ROOTWIN_H */
|