ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtcolor.h
Revision: 1.12
Committed: Thu Jul 29 14:05:27 2004 UTC (19 years, 10 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.11: +11 -2 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 pcg 1.1 #ifndef RXVT_COLOR_H
2     #define RXVT_COLOR_H
3    
4     #include <X11/Xlib.h>
5    
6     #if XFT
7     # include <X11/Xft/Xft.h>
8     #endif
9    
10 pcg 1.3 #include "iom.h"
11    
12 pcg 1.1 #include "rxvtlib.h"
13 pcg 1.3 #include "rxvtstl.h"
14    
15     #include "callback.h"
16 pcg 1.1
17 pcg 1.10 extern class byteorder {
18     uint32_t e;
19     public:
20     byteorder ();
21    
22     bool big_endian () { return e == 0x11223344; };
23     bool network () { return e == 0x11223344; };
24     bool little_endian () { return e == 0x44332211; };
25     bool vax () { return e == 0x44332211; };
26     } byteorder;
27    
28 pcg 1.4 struct rxvt_term;
29 pcg 1.1
30 pcg 1.5 struct im_watcher;
31 pcg 1.3 struct xevent_watcher;
32    
33 pcg 1.5 struct refcounted {
34 pcg 1.3 int referenced;
35 pcg 1.5 char *id;
36    
37     refcounted (const char *id);
38 pcg 1.8 bool init () { return false; }
39 pcg 1.5 ~refcounted ();
40     };
41    
42     template<class T>
43     struct refcache : vector<T *> {
44     T *get (const char *id);
45     void put (T *obj);
46     ~refcache ();
47     };
48    
49     /////////////////////////////////////////////////////////////////////////////
50    
51 root 1.12 #ifdef USE_XIM
52 pcg 1.5 struct rxvt_xim : refcounted {
53     void destroy ();
54     rxvt_display *display;
55    
56     //public
57     XIM xim;
58    
59     rxvt_xim (const char *id) : refcounted (id) { }
60     bool init ();
61     ~rxvt_xim ();
62     };
63 root 1.12 #endif
64 pcg 1.5
65     struct rxvt_display : refcounted {
66     Atom xa_xim_servers;
67 pcg 1.4
68 pcg 1.3 io_manager_vec<xevent_watcher> xw;
69 pcg 1.5
70 pcg 1.6 io_watcher x_ev; void x_cb (io_watcher &w, short revents);
71 pcg 1.3
72 root 1.12 #ifdef USE_XIM
73 pcg 1.5 refcache<rxvt_xim> xims;
74     vector<im_watcher *> imw;
75    
76     void im_change_cb ();
77 root 1.12 #endif
78 pcg 1.5
79 pcg 1.3 //public
80     Display *display;
81     int depth;
82     int screen;
83     Visual *visual;
84     Colormap cmap;
85     Window root;
86 pcg 1.9 rxvt_term *selection_owner;
87 pcg 1.3
88 pcg 1.5 rxvt_display (const char *id);
89     bool init ();
90     ~rxvt_display ();
91 pcg 1.3
92 pcg 1.6 void flush ();
93    
94 root 1.12 void set_selection_owner (rxvt_term *owner);
95    
96 pcg 1.3 void reg (xevent_watcher *w);
97     void unreg (xevent_watcher *w);
98 root 1.12
99     #ifdef USE_XIM
100 pcg 1.5 void reg (im_watcher *w);
101     void unreg (im_watcher *w);
102    
103     rxvt_xim *get_xim (const char *locale, const char *modifiers);
104     void put_xim (rxvt_xim *xim);
105 root 1.12 #endif
106 pcg 1.11
107     Atom atom (const char *name);
108 pcg 1.5 };
109 pcg 1.3
110 root 1.12 #ifdef USE_XIM
111 pcg 1.5 struct im_watcher : watcher, callback0<void> {
112     template<class O1, class O2>
113 pcg 1.7 im_watcher (O1 *object, void (O2::*method) ())
114     : callback0<void> (object,method)
115 pcg 1.5 { }
116 pcg 1.4
117 pcg 1.5 void start (rxvt_display *display)
118     {
119     display->reg (this);
120     }
121     void stop (rxvt_display *display)
122     {
123     display->unreg (this);
124     }
125 pcg 1.3 };
126 root 1.12 #endif
127 pcg 1.3
128     struct xevent_watcher : watcher, callback1<void, XEvent &> {
129     Window window;
130    
131     template<class O1, class O2>
132 pcg 1.7 xevent_watcher (O1 *object, void (O2::*method) (XEvent &))
133     : callback1<void, XEvent &> (object,method)
134 pcg 1.3 { }
135    
136     void start (rxvt_display *display, Window window)
137     {
138     this->window = window;
139     display->reg (this);
140     }
141     void stop (rxvt_display *display)
142     {
143     display->unreg (this);
144     }
145     };
146    
147 pcg 1.5 extern refcache<rxvt_display> displays;
148 pcg 1.3
149 pcg 1.5 /////////////////////////////////////////////////////////////////////////////
150 pcg 1.3
151 pcg 1.1 typedef unsigned long Pixel;
152    
153     struct rxvt_color {
154     #if XFT
155 pcg 1.3 XftColor c;
156 pcg 1.7 operator Pixel () const { return c.pixel; }
157 pcg 1.1 #else
158 pcg 1.3 Pixel p;
159 pcg 1.7 operator Pixel () const { return p; }
160 pcg 1.1 #endif
161    
162 pcg 1.7 bool operator == (const rxvt_color &b) const { return Pixel (*this) == Pixel (b); }
163     bool operator != (const rxvt_color &b) const { return Pixel (*this) != Pixel (b); }
164 pcg 1.1
165 pcg 1.3 void get (rxvt_display *display, unsigned short &cr, unsigned short &cg, unsigned short &cb);
166    
167     bool set (rxvt_display *display, Pixel p);
168     bool set (rxvt_display *display, const char *name);
169     bool set (rxvt_display *display, unsigned short cr, unsigned short cg, unsigned short cb);
170    
171     void free (rxvt_display *display);
172 pcg 1.1 };
173    
174     #endif
175