-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathConfigSettings.cpp
More file actions
executable file
·71 lines (57 loc) · 1.4 KB
/
ConfigSettings.cpp
File metadata and controls
executable file
·71 lines (57 loc) · 1.4 KB
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
/*-----------------------------------------------------------------------------
Lua Studio
Copyright (c) 1996-2008 Michal Kowalski
-----------------------------------------------------------------------------*/
#include "StdAfx.h"
#include "ConfigSettings.h"
#include "IOWindow.h"
#include "ConfigSettings.h"
#include "MainFrm.h"
#include "LuaView.h"
LOGFONT* const CConfigSettings::fonts[]=
{
&LuaSrcView::log_font_,
&CIOWindow::log_font_,
NULL
};
CFont* const CConfigSettings::cfonts[]= // struktury CFont w ca³ym programie
{
&LuaSrcView::font_,
&CIOWindow::font_,
//&CDeasmView::font_,
NULL
};
COLORREF* CConfigSettings::text_color[]=
{
&LuaSrcView::rgb_text_color_,
&CIOWindow::rgb_text_color_,
//&CDeasmView::rgb_instr_,
NULL
};
COLORREF* CConfigSettings::bkgnd_color[]=
{
&LuaSrcView::rgb_bkgnd_color_,
&CIOWindow::rgb_backgnd_color_,
//&CDeasmView::rgb_bkgnd_,
NULL
};
COLORREF* CConfigSettings::color_syntax[]=
{
&LuaSrcView::vrgb_color_syntax_[0],
&LuaSrcView::vrgb_color_syntax_[1],
&LuaSrcView::vrgb_color_syntax_[2],
&LuaSrcView::vrgb_color_syntax_[3],
&LuaSrcView::vrgb_color_syntax_[4],
&LuaSrcView::vrgb_color_syntax_[5],
0
};
BYTE* CConfigSettings::syntax_font_style[]=
{
&LuaSrcView::vby_font_style_[0],
&LuaSrcView::vby_font_style_[1],
&LuaSrcView::vby_font_style_[2],
&LuaSrcView::vby_font_style_[3],
&LuaSrcView::vby_font_style_[4],
&LuaSrcView::vby_font_style_[5],
0
};