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
|
#ifndef __lib_gui_ewindowstyle_h
#define __lib_gui_ewindowstyle_h
class eWindow;
class eSize;
class gFont;
#include <lib/base/object.h>
class eWindowStyle_ENUMS
{
#ifdef SWIG
eWindowStyle_ENUMS();
~eWindowStyle_ENUMS();
#endif
public:
enum {
styleLabel,
styleListboxSelected,
styleListboxNormal,
styleListboxMarked,
styleListboxMarkedAndSelected
};
enum {
frameButton,
frameListboxEntry
};
enum {
fontStatic,
fontButton,
fontTitlebar
};
};
SWIG_IGNORE(eWindowStyle);
class eWindowStyle: public eWindowStyle_ENUMS, public iObject
{
#ifdef SWIG
eWindowStyle();
#endif
public:
#ifndef SWIG
virtual void handleNewSize(eWindow *wnd, eSize &size, eSize &offset) = 0;
virtual void paintWindowDecoration(eWindow *wnd, gPainter &painter, const std::string &title) = 0;
virtual void paintBackground(gPainter &painter, const ePoint &offset, const eSize &size) = 0;
virtual void setStyle(gPainter &painter, int what) = 0;
virtual void drawFrame(gPainter &painter, const eRect &frame, int type) = 0;
virtual RESULT getFont(int what, ePtr<gFont> &font) = 0;
#endif
virtual ~eWindowStyle() = 0;
};
SWIG_TEMPLATE_TYPEDEF(ePtr<eWindowStyle>, eWindowStylePtr);
SWIG_IGNORE(eWindowStyleManager);
class eWindowStyleManager: public iObject
{
DECLARE_REF(eWindowStyleManager);
#ifdef SWIG
eWindowStyleManager();
~eWindowStyleManager();
#endif
public:
#ifndef SWIG
eWindowStyleManager();
~eWindowStyleManager();
static SWIG_VOID(int) getInstance(ePtr<eWindowStyleManager> &SWIG_NAMED_OUTPUT(mgr)) { mgr = m_instance; if (!mgr) return -1; return 0; }
#endif
void getStyle(int style_id, ePtr<eWindowStyle> &SWIG_OUTPUT);
void setStyle(int style_id, eWindowStyle *style);
private:
static eWindowStyleManager *m_instance;
std::map<int, ePtr<eWindowStyle> > m_current_style;
};
SWIG_TEMPLATE_TYPEDEF(ePtr<eWindowStyleManager>, eWindowStyleManager);
SWIG_EXTEND(ePtr<eWindowStyleManager>,
static ePtr<eWindowStyleManager> getInstance()
{
extern ePtr<eWindowStyleManager> NewWindowStylePtr(void);
return NewWindowStylePtr();
}
);
#ifndef SWIG
class eWindowStyleSimple: public eWindowStyle
{
DECLARE_REF(eWindowStyleSimple);
ePtr<gFont> m_fnt;
gColor m_border_color_tl, m_border_color_br, m_title_color_back, m_title_color, m_background_color;
int m_border_top, m_border_left, m_border_right, m_border_bottom;
public:
eWindowStyleSimple();
void handleNewSize(eWindow *wnd, eSize &size, eSize &offset);
void paintWindowDecoration(eWindow *wnd, gPainter &painter, const std::string &title);
void paintBackground(gPainter &painter, const ePoint &offset, const eSize &size);
void setStyle(gPainter &painter, int what);
void drawFrame(gPainter &painter, const eRect &frame, int what);
RESULT getFont(int what, ePtr<gFont> &font);
};
#endif
#endif
|