xclass.h
6.24 KB
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
/**
* \file xclass.h
*
* \brief Drei Klassen für die zentralen XWindows Objekte.
*
* Verpackt die drei zentralen Elemente für ein XWindows Programm
* in drei Klassen.
* <ul type="circle">
* <li>\ref xdisplay für das display</li>
* <li>\ref xscreen für alle screens</li>
* <li>\ref xwindow für alle windows</li>
* </ul>
* Dabei ist die Struktur so das zu ein display aus 1-n screens bestehen
* In denen dann wiederum jeweils 1-n windows existieren. Es existiert
* mindestens das rootwindow.
* Alle in dieser Datei definierten Klassen arbeiten sehr eng zusammen,
* daher ist jede friend der aller anderen.
*
* \author Georg Steffers <georg@steffers.org>
*
* \date 04.12.2003
*
* \version ..2001 (Georg Steffers): erste implementation
* \version 2001-2003 (Georg Steffers): diverse Modifikationen
* \version 05.12.2003 (Georg Steffers): beginn der Dokumentation via doxygen
*/
/*
* Copyright (C)2003 Georg Steffers
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __xclass_h__
#define __xclass_h__
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xos.h>
#include <X11/Xatom.h>
#include <X11/keysym.h>
#include <X11/extensions/Xdbe.h>
class xscreen;
class xwindow;
/**
* \brief Das Display ist die Verbindung zum X-Server
*
* Verbindung zum X-Server, entwerder über TCP/IP oder
* Unix Domain Sockets. Je nach Server und Hardware auf der dieser
* läft kann dieser 1-n screens zur verfügung stellen.
* Es existiert zumindest der \ref default_screen.
*/
class xdisplay {
friend class xscreen; //!< Da ein xscreen sehr eng mit einem xdisplay
//! zusammenarbeitet
friend class xwindow; //!< Da ein xwindow sehr eng mit einem xdisplay
//! zusammenarbeitet
private:
// Exceptionklassen
class noconnect_exception {}; //!< no connection to display
class nofont_exception {}; //!< no font-file to load
Display* display; //!< \brief Der Descriptor für die eigentliche
//! Verbindung zum X-Server
char* display_name; //!< \brief Hardwarename des Displays
//!
//! Wenn display_name NULL ist, so wird für
//! den Hardwarenamen der Wert der in der
//! Environmentvariable \$DISPLAY steht genommen.
int screen_anz; //<! Anzahl moeglicher screens dieses Displays
int default_screen; //<! default screen dieses Displays
xscreen** screens; //<! Liste aller screens dieses Displays
int wincount; //<! Anzahle der existierenden Windows
xwindow** wins; //<! Referenz zu allen Windows
XFontStruct* font_info; //<! Fontinformationen
public:
xdisplay(char* name=NULL); //!< Defaultkonstruktor
xdisplay(const xdisplay&); //!< Copyconstruktor
~xdisplay(); //!< Destruktor
xdisplay& operator=(const xdisplay&); //!< Zuweisungsoperator
// Queryfunktionen...
Display* getdisplay(void) { return display; }
XFontStruct* getfont(void) { return font_info; }
xwindow* getXwinById(Window id);
xscreen* defaultscreen(void);
int defaultscreenid(void) { return default_screen; }
void loadfont(char* name="9x15");
};
class xscreen {
friend class xwindow;
friend class xdisplay;
private:
xdisplay* x_disp;
int screen_num;
Screen* screen;
xwindow* rootwin;
unsigned int width;
unsigned int height;
Visual* vis;
XVisualInfo vi;
int depth;
int bytespp;
int scanline_pad;
GC gc;
Colormap default_cm;
unsigned long black_pixel;
unsigned long white_pixel;
public:
xscreen(xdisplay* disp=NULL, int screen_num=-1);
xscreen(const xscreen&);
~xscreen();
xscreen& operator=(const xscreen&);
// queryfunktionen.....
Screen* getscreen(void) { return screen; }
int getscreennum(void) {return screen_num; }
xdisplay* getxdisp(void) { return x_disp; }
Visual* getvisual(void) { return vis; }
int getdepth(void) { return depth; }
int getbytespp(void) { return bytespp; }
int getscanlinepad(void) { return scanline_pad; }
GC getgc(void) { return gc; }
unsigned getwidth(void) { return width; }
unsigned getheight(void) { return height; }
xwindow* getrootwin(void) { return rootwin; }
Colormap getdefaultcm(void) { return default_cm; }
unsigned long blackpixel(void) { return black_pixel; }
unsigned long whitepixel(void) { return white_pixel; }
unsigned long getcolor(unsigned short, unsigned short,
unsigned short);
};
class xwindow {
friend class xscreen;
friend class xdisplay;
private:
xscreen* screen;
Window window;
XdbeBackBuffer back;
XdbeSwapInfo swapinfo;
public:
xwindow(xwindow*, int, int, unsigned int,
unsigned int, unsigned int);
xwindow(xscreen* screen);
xwindow(const xwindow&);
xwindow() {
screen=NULL;
}
~xwindow() {
XDestroyWindow(screen->x_disp->display, window);
}
xwindow& operator=(const xwindow&);
xscreen* getxscr(void) { return screen; }
Window getwindow(void) { return window; }
void initWM(void);
void map(void) { XMapWindow(screen->x_disp->display, window); }
};
#endif // __xclass_h__