]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/ColorHandler.h
4379437f10605630d8d68c0def81f776a4526c35
[lyx.git] / src / frontends / xforms / ColorHandler.h
1 // -*- C++ -*-
2 /**
3  * \file ColorHandler.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author unknown
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef COLOR_HANDLER_H
13 #define COLOR_HANDLER_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "frontends/Painter.h"
20
21 #include <boost/scoped_ptr.hpp>
22
23 // This is only included to provide stuff for the non-public sections
24 #include <X11/Xlib.h>
25
26 class LyXFont;
27
28 /**
29  * This is a factory class that can produce GCs with a specific
30  * color. It will cache GCs for performance.
31  */
32 class LyXColorHandler {
33 public:
34         ///
35         LyXColorHandler();
36         ///
37         ~LyXColorHandler();
38         ///
39         unsigned long colorPixel(LColor::color c);
40         ///
41         GC getGCForeground(LColor::color c);
42         ///
43         GC getGCLinepars(Painter::line_style,
44                          Painter::line_width, LColor::color c);
45         /// update the cache after a color definition change
46         void updateColor(LColor::color c);
47
48 private:
49         ///
50         Display * display;
51         ///
52         Colormap colormap;
53         ///
54         GC colorGCcache[LColor::ignore + 1];
55         ///
56         typedef std::map<int, GC> LineGCCache;
57         ///
58         LineGCCache lineGCcache;
59         ///
60         Pixmap drawable;
61 };
62
63 ///
64 extern boost::scoped_ptr<LyXColorHandler> lyxColorHandler;
65
66 #endif