File: display.c

package info (click to toggle)
treetool 2.0.2a-4
  • links: PTS
  • area: non-free
  • in suites: etch, etch-m68k
  • size: 1,172 kB
  • ctags: 2,694
  • sloc: ansic: 26,504; makefile: 215
file content (253 lines) | stat: -rw-r--r-- 4,254 bytes parent folder | download | duplicates (5)
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
#include <stdio.h>

#include <X11/Xlib.h>

#include "generic.h"

typedef struct {
	ltgenericd g;
	Display *dpy;
	int depth;
	char *name;
	int screen;
	Window root;
	Colormap cmap;
	tcolor black, white;
	} ltdisplayd, *ltdisplay;

tdisplay tdisplay_new(name, args)
char *name;
targs args;
{
	ltdisplay dpy;
	
	/* allocate memory */
	dpy=(ltdisplay)titem_new(NULL, lt_display, sizeof(ltdisplayd));
	if(dpy==NULL)
		return(NULL);
	
	/* check format of name */
	if(strlen(name)==0)
		name=NULL;

	/* open the display */
	if((dpy->dpy=XOpenDisplay(name))==NULL)
	{
		titem_free(dpy);
		return(NULL);
	}

	/* store name, screen, root window, colormap, black and white colors */
	dpy->name=(char *)strdup(name);
	dpy->screen=DefaultScreen(dpy->dpy);
	dpy->root=RootWindow(dpy->dpy, dpy->screen);
	dpy->cmap=DefaultColormap(dpy->dpy, dpy->screen);
	dpy->black=tcolor_black(dpy);
	dpy->white=tcolor_white(dpy);
	dpy->depth=DefaultDepth(dpy->dpy, dpy->screen);

	return((tdisplay)dpy);
}

tdisplay tdisplay_create_from_xdpy(xdpy)
Display *xdpy;
{
	ltdisplay dpy;
	
	if(xdpy==NULL)
		return(NULL);
	dpy=(ltdisplay)titem_new(NULL, lt_display, sizeof(ltdisplayd));
	if(dpy==NULL)
		return(NULL);
	dpy->dpy=xdpy;
	dpy->name=NULL;
	dpy->screen=DefaultScreen(dpy->dpy);
	dpy->root=RootWindow(dpy->dpy, dpy->screen);
	dpy->cmap=DefaultColormap(dpy->dpy, dpy->screen);
	dpy->black=tcolor_black(dpy);
	dpy->white=tcolor_white(dpy);
	dpy->depth=DefaultDepth(dpy->dpy, dpy->screen);
	return((tdisplay)dpy);
}

int tdisplay_free(dpy)
ltdisplay dpy;
{
	/* check type of dpy */
	if(dpy==NULL)
		return(0);
	if(titem_type(dpy)!=lt_display)
		return(0);

	/* free the name */
	if(dpy->name!=NULL)
		free(dpy->name);
	
	/* close it */
	XCloseDisplay(dpy->dpy);

	/* free the memory */
	titem_free(dpy);
	return(1);
}

Display *tdisplay_X(dpy)
ltdisplay dpy;
{
	/* check type of dpy */
	if(dpy==NULL)
		return(NULL);
	if(titem_type(dpy)!=lt_display)
		return(NULL);
	
	/* return X display */
	return(dpy->dpy);
}

Window tdisplay_XRoot(dpy)
ltdisplay dpy;
{
	/* check type of dpy */
	if(dpy==NULL)
		return(NULL);
	if(titem_type(dpy)!=lt_display)
		return(NULL);
	
	/* return Root */
	return(dpy->root);
}

Colormap tdisplay_XColormap(dpy)
ltdisplay dpy;
{
	/* check type of dpy */
	if(dpy==NULL)
		return(NULL);
	if(titem_type(dpy)!=lt_display)
		return(NULL);
	
	/* return Colormap */
	return(dpy->cmap);
}

int tdisplay_XScreen(dpy)
ltdisplay dpy;
{
	/* check type of dpy */
	if(dpy==NULL)
		return(NULL);
	if(titem_type(dpy)!=lt_display)
		return(NULL);
	
	/* return screen */
	return(dpy->screen);
}

tcolor tdisplay_Black(dpy)
ltdisplay dpy;
{
	/* check type of dpy */
	if(dpy==NULL)
		return(NULL);
	if(titem_type(dpy)!=lt_display)
		return(NULL);
	
	/* return black color */
	return(dpy->black);
}

tcolor tdisplay_White(dpy)
ltdisplay dpy;
{
	/* check type of dpy */
	if(dpy==NULL)
		return(NULL);
	if(titem_type(dpy)!=lt_display)
		return(NULL);
	
	/* return white color */
	return(dpy->white);
}

int tdisplay_depth(dpy)
ltdisplay dpy;
{
	/* check type of dpy */
	if(dpy==NULL)
		return(NULL);
	if(titem_type(dpy)!=lt_display)
		return(NULL);
	
	/* return depth */
	return(dpy->depth);
}

double tdisplay_dpi_x(dpy)
titem dpy;
{
	ltdisplay d;
	int width, millimeters;
	double dpi;

	d=(ltdisplay)titem_display(dpy);
	if(d==NULL)
		return(0.0);
	
	width=DisplayWidth(d->dpy, d->screen);
	millimeters=DisplayWidthMM(d->dpy, d->screen);
	dpi=width/(millimeters/25.4);	/* convert to inches */
	return(dpi);
}

double tdisplay_dpi_y(dpy)
titem dpy;
{
	ltdisplay d;
	int height, millimeters;
	double dpi;

	d=(ltdisplay)titem_display(dpy);
	if(d==NULL)
		return(0.0);
	
	height=DisplayHeight(d->dpy, d->screen);
	millimeters=DisplayHeightMM(d->dpy, d->screen);
	dpi=height/(millimeters/25.4);	/* convert to inches */
	return(dpi);
}

tdisplay_beep(dpy)
titem dpy;
{
	ltdisplay d;

	d=(ltdisplay)titem_display(dpy);
	if(d==NULL)
		return;
	
	XBell(d->dpy, 100);
}

int tdisplay_height(dpy)
titem dpy;
{
	ltdisplay d;

	d=(ltdisplay)titem_display(dpy);
	if(d==NULL)
		return;
	
	return(DisplayHeight(d->dpy, d->screen));
}

int tdisplay_width(dpy)
titem dpy;
{
	ltdisplay d;

	d=(ltdisplay)titem_display(dpy);
	if(d==NULL)
		return;
	
	return(DisplayWidth(d->dpy, d->screen));
}