]> git.lyx.org Git - lyx.git/blob - src/ColorHandler.h
Applied Angus patch to compile on DEC C++ and to avoid name clashes
[lyx.git] / src / ColorHandler.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  * 
5  *           LyX, The Document Processor
6  *       
7  *          Copyright 1995-2000 The LyX Team
8  *
9  * ======================================================*/
10
11 #ifndef COLOR_HANDLER_H
12 #define COLOR_HANDLER_H
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include <boost/smart_ptr.hpp>
19
20 // This is only included to provide stuff for the non-public sections
21 #include <X11/Xlib.h>
22
23 #include "PainterBase.h"
24
25 class LyXFont;
26 class WorkArea;
27
28 ///
29 class LyXColorHandler {
30 public:
31         ///
32         LyXColorHandler();
33         ///
34         ~LyXColorHandler();
35         ///
36         unsigned long colorPixel(LColor::color c);
37         ///
38         GC getGCForeground(LColor::color c);
39         ///
40         GC getGCLinepars(PainterBase::line_style,
41                          PainterBase::line_width, LColor::color c);
42         /// update the cache after a color definition change
43         void updateColor(LColor::color c);
44
45 private:
46         ///
47         Display * display;
48         ///
49         Colormap colormap;
50         ///
51         GC colorGCcache[LColor::ignore + 1];
52         ///
53         typedef std::map<int, GC> LineGCCache;
54         ///
55         LineGCCache lineGCcache;
56         ///
57         Pixmap drawable;
58 };
59
60 ///
61 extern boost::scoped_ptr<LyXColorHandler> lyxColorHandler;
62
63 #endif