forked from Geballin/gtkTtk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtkMacros.h
76 lines (67 loc) · 2.65 KB
/
tkMacros.h
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
* tkMacros.h
* ----------------------
*
* This file is part of the gttk package, a Tk/Tile based theme that uses
* Gtk/GNOME for drawing.
*
* Copyright (C) 2004-2008 by:
* Georgios Petasis, petasis@iit.demokritos.gr,
* Software and Knowledge Engineering Laboratory,
* Institute of Informatics and Telecommunications,
* National Centre for Scientific Research (NCSR) "Demokritos",
* Aghia Paraskevi, 153 10, Athens, Greece.
*/
#ifndef __GTTK_TK_MACROS
#define __GTTK_TK_MACROS
typedef struct {
long flags;
Bool input;
int initial_state;
Pixmap icon_pixmap;
Window icon_window;
int icon_x, icon_y;
Pixmap icon_mask;
XID window_group;
} XWMHints;
typedef struct Tk_FakeWmInfo {
Tk_FakeWin *winPtr; /* Pointer to main Tk information for
* this window. */
Window reparent; /* If the window has been reparented, this
* gives the ID of the ancestor of the window
* that is a child of the root window (may
* not be window's immediate parent). If
* the window isn't reparented, this has the
* value None. */
char *title; /* Title to display in window caption. If
* NULL, use name of widget. Malloced. */
char *iconName; /* Name to display in icon. Malloced. */
XWMHints hints; /* Various pieces of information for
* window manager. */
char *leaderName; /* Path name of leader of window group
* (corresponds to hints.window_group).
* Malloc-ed. Note: this field doesn't
* get updated if leader is destroyed. */
Tk_FakeWin *masterPtr; /* Master window for TRANSIENT_FOR property,
* or NULL. */
Tk_Window icon; /* Window to use as icon for this window,
* or NULL. */
Tk_Window iconFor; /* Window for which this window is icon, or
* NULL if this isn't an icon for anyone. */
int withdrawn; /* Non-zero means window has been withdrawn. */
/*
* In order to support menubars transparently under X, each toplevel
* window is encased in an additional window, called the wrapper,
* that holds the toplevel and the menubar, if any. The information
* below is used to keep track of the wrapper and the menubar.
*/
Tk_FakeWin *wrapperPtr; /* Pointer to information about the wrapper.
* This is the "real" toplevel window as
* seen by the window manager. Although
* this is an official Tk window, it
* doesn't appear in the application's
* window hierarchy. NULL means that
* the wrapper hasn't been created yet. */
} Tk_FakeWmInfo;
#define Tk_RealToplevelWindow(tkwin) ((((Tk_FakeWmInfo *) (((Tk_FakeWin *) (tkwin))->dummy16))->wrapperPtr)->window)
#endif /* __GTTK_TK_MACROS */