/* name: stk_init.h info: initialization of stk - header file author: Dusan Halicky (dvh.tosomja@post.sk) licence: GNU GPL history: 2005-09-27 - start of developement todo: - finish and release this bugs: - notes: - */ #ifndef STK_INIT_H #define STK_INIT_H extern Atom WM_PROTOCOLS; extern Atom WM_DELETE_WINDOW; extern Atom MOTIF_WM_HINTS; extern Atom _NET_WM_WINDOW_TYPE; extern Atom _NET_WM_WINDOW_TYPE_DIALOG; //extern Atom STK_MESSAGE; //extern Atom STK_MESSAGE_SET_FOCUS; // some MOTIF wm hints currently supported by QVWM /*extern Atom XA_MOTIF_WM_HINTS; extern Atom MWM_HINTS_DECORATIONS; extern Atom MWM_DECOR_ALL; extern Atom MWM_DECOR_TITLE; extern Atom MWM_DECOR_BORDER; extern Atom MWM_DECOR_MENU; extern Atom MWM_DECOR_MINIMIZE; extern Atom MWM_DECOR_MAXIMIZE; */ extern Window stkmessage_window; extern Atom stkmessage_atom; extern Atom stkmessage_state; extern bool stkmessage_quit; extern GC stkgc, stkgc_focus, stkgc_dash; // default GCs void stk_init(void); void stk_done(void); #endif // STK_INIT_H