forked from hills/xosview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xwin.h
163 lines (144 loc) · 6.26 KB
/
xwin.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
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
#ifndef _XWIN_H_
#define _XWIN_H_
#include "Xrm.h"
#include <string.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <iostream>
class XWin;
typedef void (XWin::*EventCallBack)( XEvent &event );
class XWin {
public:
XWin ();
XWin( int argc, char *argv[], int x, int y, int width, int height );
//XWin( int& argc, char *argv[], char *geometry );
virtual ~XWin( void );
void XWinInit ( int argc, char* argv[], char* geometry, Xrm* xrmp );
int width( void ) { return width_; }
void width( int val ) { width_ = val; }
int height( void ) { return height_; }
void height( int val ) { height_ = val; }
Display *display( void ) { return display_; }
Window window( void ) { return window_; }
int done( void ) { return done_; }
void done( int val ) { done_ = val; }
void title( const char *str ) { XStoreName( display_, window_, str ); }
void iconname( const char *str ) { XSetIconName( display_, window_, str ); }
void clear( void ) { XClearWindow( display_, window_ ); }
void clear( int x, int y, int width, int height )
{ XClearArea( display_, window_, x, y, width, height, False ); }
unsigned long allocColor( const char *name );
void setForeground( unsigned long pixelvalue )
{ XSetForeground( display_, gc_, pixelvalue ); }
void setBackground( unsigned long pixelvalue )
{ XSetBackground( display_, gc_, pixelvalue ); }
void setStipple( Pixmap stipple)
{ if (!doStippling_) return;
XSetStipple(display_, gc_, stipple);
XGCValues xgcv;
xgcv.fill_style = FillOpaqueStippled;
XChangeGC (display_, gc_, GCFillStyle, &xgcv); }
void setStippleN (int n) {setStipple(stipples_[n]); }
Pixmap createPixmap(const char* data, unsigned int w, unsigned int h) {
return XCreatePixmapFromBitmapData(display_, window_,
const_cast<char *>(data), w, h, 0, 1, 1); }
unsigned long foreground( void ) { return fgcolor_; }
unsigned long background( void ) { return bgcolor_; }
void resize( int width, int height )
{ XResizeWindow( display_, window_, width, height ); }
void lineWidth( int width )
{
XGCValues xgcv;
xgcv.line_width = width;
XChangeGC( display_, gc_, GCLineWidth, &xgcv );
}
void drawLine( int x1, int y1, int x2, int y2 )
{ XDrawLine( display_, window_, gc_, x1, y1, x2, y2 ); }
void drawRectangle( int x, int y, int width, int height )
{ XDrawRectangle( display_, window_, gc_, x, y, width, height ); }
void drawFilledRectangle( int x, int y, int width, int height )
{ XFillRectangle( display_, window_, gc_, x, y, width + 1, height + 1 ); }
void drawString( int x, int y, const char *str )
{ XDrawString( display_, window_, gc_, x, y, str, strlen( str ) ); }
void copyArea( int src_x, int src_y, int width, int height, int dest_x, int dest_y )
{ XCopyArea( display_, window_, window_, gc_, src_x, src_y, width, height, dest_x, dest_y ); }
int textWidth( const char *str, int n )
{ return XTextWidth( font_, str, n ); }
int textWidth( const char *str )
{ return textWidth( str, strlen( str ) ); }
int textAscent( void ) { return font_->ascent; }
int textDescent( void ) { return font_->descent; }
int textHeight( void ) { return textAscent() + textDescent(); }
virtual void checkevent( void );
void map( void ) { XMapWindow( display_, window_ ); }
void unmap( void ) { XUnmapWindow( display_, window_ ); }
void flush( void ) { XFlush( display_ ); }
const char *getResource( const char *name );
const char *getResourceOrUseDefault( const char *name, const char* defaultVal );
int isResourceTrue( const char* name ) {
return (!strncasecmp(getResource(name),"True", 5)); }
void dumpResources(std::ostream &os );
protected:
class Event {
public:
Event( XWin *parent, int event, EventCallBack callBack );
virtual ~Event( void ){}
friend class XWin;
void callBack( XEvent &event )
{ if ( event.type == event_ ) (parent_->*callBack_)( event ); }
protected:
XWin *parent_;
EventCallBack callBack_;
int event_;
long mask_;
private:
Event *next_;
};
int borderwidth_; // width of border
int x_, y_; // position of the window
int width_, height_; // width and height of the window
Display *display_; // Connection to X display
Window window_; // Application's main window
GC gc_; // The graphics context for the window
XFontStruct *font_; // Info on the default font
char *name_; // Application's name
XTextProperty title_; // Window name for title bar
XTextProperty iconname_; // Icon name for icon label
unsigned long fgcolor_; // Foreground color of the window
unsigned long bgcolor_; // Background color of the window
XWindowAttributes attr_; // Attributes of the window
XWMHints *wmhints_; // Hints for the window manager
XSizeHints *sizehints_; // Size hints for window manager
XClassHint *classhints_; // Class hint for window manager
Event *events_; // List of Events for this window
int done_; // If true the application is finished.
Atom wm_, wmdelete_; // Used to handle delete Events
Colormap colormap_; // The colormap
char display_name_[256]; // Display name string.
char* geometry_; // geometry string.
Xrm* xrmptr_; // Pointer to the XOSView xrm. FIXME???
int doStippling_; // Either 0 or 1.
Pixmap stipples_[4]; // Array of Stipple masks.
void init( int argc, char *argv[] );
void getGeometry( void );
int getPixmap(Pixmap *);
void setDisplayName (const char* new_display_name) { strncpy
(display_name_, new_display_name, 256); }
const char* displayName () { return display_name_; }
void addEvent( Event *event );
void setColors( void );
void openDisplay( void );
void setHints( int argc, char *argv[] );
void setFont( void );
void selectEvents( long mask );
void ignoreEvents( long mask );
void configureEvent( XEvent &event );
void mappingNotify( XEvent &event )
{ XRefreshKeyboardMapping( &event.xmapping ); }
void deleteEvent( XEvent &event );
//void usage( void );
Colormap colormap( void ) { return colormap_; }
int screen( void ) { return DefaultScreen( display_ ); }
private:
};
#endif