File: atom.c

package info (click to toggle)
xview 3.2p1.4-28.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 26,680 kB
  • ctags: 34,403
  • sloc: ansic: 241,397; yacc: 1,435; sh: 1,086; makefile: 148; lex: 76; perl: 54; asm: 50; cpp: 15
file content (177 lines) | stat: -rw-r--r-- 5,861 bytes parent folder | download | duplicates (6)
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
#ident	"@(#)atom.c	26.24	93/06/28 SMI"

/*
 *      (c) Copyright 1989 Sun Microsystems, Inc.
 */

/*
 *      Sun design patents pending in the U.S. and foreign countries. See
 *      LEGAL_NOTICE file for terms of the license.
 */

#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <X11/Xresource.h>

Atom	AtomAtomPair;
Atom	AtomChangeState;
Atom	AtomClass;
Atom	AtomClientWindow;
Atom	AtomColorMapWindows;
Atom	AtomDecorAdd;
Atom	AtomDecorClose;
Atom	AtomDecorDel;
Atom	AtomDecorFooter;
Atom	AtomDecorHeader;
Atom	AtomDecorPin;
Atom	AtomDecorResize;
Atom	AtomDelete;
Atom	AtomDeleteWindow;
Atom	AtomDfltBtn;
Atom	AtomLeftFooter;
Atom	AtomLength;
Atom	AtomListLength;
Atom	AtomMenuFull;
Atom	AtomMenuLimited;
Atom	AtomMultiple;
Atom	AtomName;
Atom	AtomNone;
Atom	AtomOlwmNoFocusWin;
Atom	AtomPinIn;
Atom	AtomPinOut;
Atom	AtomProtocols;
Atom	AtomPushpinState;
Atom	AtomRightFooter;
Atom	AtomSaveYourself;
Atom	AtomSunViewEnv;
Atom	AtomTakeFocus;
Atom	AtomTargets;
Atom	AtomTimestamp;
Atom	AtomUser;
Atom	AtomWMClass;
Atom	AtomWMName;
Atom	AtomWMIconName;
Atom	AtomWMHints;
Atom	AtomWMNormalHints;
Atom	AtomWMSizeHints;
Atom	AtomWMTransientFor;
Atom	AtomWMState;
Atom	AtomWTBase;
Atom	AtomWTCmd;
Atom	AtomWTHelp;
Atom	AtomWTNotice;
Atom	AtomWTOther;
Atom	AtomWinAttr;
Atom	AtomWindowBusy;
Atom	AtomSunLedMap;
Atom	AtomSunWMProtocols;
Atom	AtomSunWindowState;
Atom	AtomSunDragDropDSDM;
Atom	AtomSunDragDropInterest;
Atom	AtomSunDragDropSiteRects;
Atom	AtomSunOLWinAttr5;
Atom	AtomDecorIconName;
Atom	AtomSunReReadMenuFile;
#ifdef OW_I18N_L4
Atom	AtomDecorIMStatus;
Atom	AtomLeftIMStatus;
Atom	AtomRightIMStatus;
#endif
Atom	AtomCompoundText;

/***************************************************************************
* Global functions
***************************************************************************/

/*
 * InitAtoms -- initialize the atoms needed to communicate with Open
 *	Look clients
 */
void
InitAtoms(dpy)
Display	*dpy;
{
	/* ICCCM specific flags */
	AtomColorMapWindows = XInternAtom(dpy, "WM_COLORMAP_WINDOWS", False);
	AtomWMState = XInternAtom(dpy, "WM_STATE", False);
	AtomChangeState = XInternAtom(dpy, "WM_CHANGE_STATE" , False);
	AtomProtocols = XInternAtom(dpy, "WM_PROTOCOLS" , False);
	AtomTakeFocus = XInternAtom(dpy, "WM_TAKE_FOCUS" , False);
	AtomSaveYourself = XInternAtom(dpy, "WM_SAVE_YOURSELF" , False);
	AtomDeleteWindow = XInternAtom(dpy, "WM_DELETE_WINDOW" , False);

	/* Predefined atoms - referenced from ClientDistributeProperties */
	AtomWMName = XA_WM_NAME;
	AtomWMIconName = XA_WM_ICON_NAME;
	AtomWMClass = XA_WM_CLASS;
	AtomWMHints = XA_WM_HINTS;
	AtomWMNormalHints = XA_WM_NORMAL_HINTS;
	AtomWMSizeHints = XA_WM_SIZE_HINTS;
	AtomWMTransientFor = XA_WM_TRANSIENT_FOR;

	/* OpenLook specific flags */
	AtomWinAttr = XInternAtom(dpy, "_OL_WIN_ATTR" , False);
	AtomPushpinState = XInternAtom(dpy, "_OL_PIN_STATE" , False);
	AtomWindowBusy = XInternAtom(dpy, "_OL_WIN_BUSY" , False);
	AtomLeftFooter = XInternAtom(dpy, "_OL_WINMSG_ERROR" , False);
	AtomRightFooter = XInternAtom(dpy, "_OL_WINMSG_STATE" , False);
	AtomPinOut = XInternAtom(dpy, "_OL_PIN_OUT" , False);
	AtomDecorResize = XInternAtom(dpy, "_OL_DECOR_RESIZE" , False);
	AtomWTBase = XInternAtom(dpy, "_OL_WT_BASE" , False);
	AtomDecorFooter = XInternAtom(dpy, "_OL_DECOR_FOOTER" , False);
	AtomDecorAdd = XInternAtom(dpy, "_OL_DECOR_ADD" , False);
	AtomDecorDel = XInternAtom(dpy, "_OL_DECOR_DEL" , False);
	AtomDecorPin = XInternAtom(dpy, "_OL_DECOR_PIN" , False);
	AtomWTCmd = XInternAtom(dpy, "_OL_WT_CMD" , False);
	AtomPinIn = XInternAtom(dpy, "_OL_PIN_IN" , False);
	AtomNone = XInternAtom(dpy, "_OL_NONE" , False);
	AtomWTNotice = XInternAtom(dpy, "_OL_WT_NOTICE" , False);
	AtomMenuFull = XInternAtom(dpy, "_OL_MENU_FULL" , False);
	AtomDecorHeader = XInternAtom(dpy, "_OL_DECOR_HEADER" , False);
	AtomWTHelp = XInternAtom(dpy, "_OL_WT_HELP" , False);
	AtomMenuLimited = XInternAtom(dpy, "_OL_MENU_LIMITED" , False);
	AtomDecorClose = XInternAtom(dpy, "_OL_DECOR_CLOSE" , False);
	AtomWTOther = XInternAtom(dpy, "_OL_WT_OTHER" , False);
	AtomOlwmNoFocusWin = XInternAtom(dpy,"_SUN_OLWM_NOFOCUS_WINDOW",False);
	AtomDfltBtn = XInternAtom(dpy, "_OL_DFLT_BTN", False);
	AtomDecorIconName = XInternAtom(dpy, "_OL_DECOR_ICON_NAME", False);
#ifdef OW_I18N_L4
	AtomDecorIMStatus = XInternAtom(dpy, "_OL_DECOR_IMSTATUS", False);
	AtomLeftIMStatus = XInternAtom(dpy, "_OL_WINMSG_IMSTATUS", False);
	AtomRightIMStatus = XInternAtom(dpy, "_OL_WINMSG_IMPREEDIT", False);
#endif

	/* ICCCM selection atoms */
	AtomAtomPair = XInternAtom(dpy,"ATOM_PAIR",False);
	AtomClientWindow = XInternAtom(dpy, "CLIENT_WINDOW",False);
	AtomClass = XInternAtom(dpy,"CLASS",False);
	AtomDelete = XInternAtom(dpy,"DELETE",False);
	AtomMultiple = XInternAtom(dpy,"MULTIPLE",False);
	AtomLength = XInternAtom(dpy,"LENGTH",False);
	AtomListLength = XInternAtom(dpy,"LIST_LENGTH",False);
	AtomName = XInternAtom(dpy,"NAME",False);
	AtomTargets = XInternAtom(dpy,"TARGETS",False);
	AtomTimestamp = XInternAtom(dpy,"TIMESTAMP",False);
	AtomUser = XInternAtom(dpy,"USER",False);
	AtomCompoundText = XInternAtom(dpy, "COMPOUND_TEXT" , False);

	/* SunView environment */
	AtomSunViewEnv = XInternAtom(dpy,"_SUN_SUNVIEW_ENV",False);

	/* Sun window manager atoms */
	AtomSunLedMap = XInternAtom(dpy,"_SUN_LED_MAP",False);
	AtomSunWMProtocols = XInternAtom(dpy,"_SUN_WM_PROTOCOLS",False);
	AtomSunWindowState = XInternAtom(dpy,"_SUN_WINDOW_STATE",False);
	AtomSunOLWinAttr5 = XInternAtom(dpy,"_SUN_OL_WIN_ATTR_5",False);
	AtomSunReReadMenuFile = 
			XInternAtom(dpy,"_SUN_WM_REREAD_MENU_FILE",False);

	/* Sun drag-and-drop atoms */

	AtomSunDragDropInterest =
	    XInternAtom(dpy, "_SUN_DRAGDROP_INTEREST", False);
	AtomSunDragDropDSDM =
	    XInternAtom(dpy, "_SUN_DRAGDROP_DSDM", False);
	AtomSunDragDropSiteRects =
	    XInternAtom(dpy, "_SUN_DRAGDROP_SITE_RECTS", False);
}