]> Dogcows Code - chaz/openbox/blob - otk/truerendercontrol.hh
set the background pixmap
[chaz/openbox] / otk / truerendercontrol.hh
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 #ifndef __truerendercontrol_hh
3 #define __truerendercontrol_hh
4
5 #include "rendercontrol.hh"
6
7 namespace otk {
8
9 class TrueRenderControl : public RenderControl {
10 private:
11 // the offset of each color in a color mask
12 int _red_offset;
13 int _green_offset;
14 int _blue_offset;
15
16 public:
17 TrueRenderControl(const ScreenInfo *screen);
18 virtual ~TrueRenderControl();
19
20 virtual void render(::Window w);
21 };
22
23 }
24
25 #endif // __truerendercontrol_hh
This page took 0.039084 seconds and 5 git commands to generate.