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
105
106
107
108
109
110
111
112
|
/*
Miranda IM: the free IM client for Microsoft* Windows*
Copyright 2000-2009 Miranda ICQ/IM project
all portions of this codebase are copyrighted to the people
listed in contributors.txt.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "m_fontservice.h"
// settings to be used for the value of 'deffontsettings' in the FontID structure below - i.e. defaults
typedef struct TFontSettings_tag
{
COLORREF colour;
char size;
BYTE style; // see the DBFONTF_* flags above
BYTE charset;
TCHAR szFace[LF_FACESIZE];
}
TFontSettings;
// a font identifier structure - used for registering a font, and getting one out again
struct TFontID
{
int cbSize;
TCHAR group[64]; // group the font belongs to - this is the 'Font Group' list in the options page
TCHAR name[64]; // this is the name of the font setting - e.g. 'contacts' in the 'contact list' group
char dbSettingsGroup[32]; // the 'module' in the database where the font data is stored
char prefix[32]; // this is prepended to the settings used to store this font's data in the db
DWORD flags; // bitwise OR of the FIDF_* flags above
TFontSettings deffontsettings; // defaults, valid if flags & FIDF_DEFAULTVALID
int order; // controls the order in the font group in which the fonts are listed in the UI (if order fields are equal,
// they will be ordered alphabetically by name)
TCHAR backgroundGroup[64];
TCHAR backgroundName[64];
TFontSettings value;
};
struct TColourID
{
int cbSize;
TCHAR group[64];
TCHAR name[64];
char dbSettingsGroup[32];
char setting[32];
DWORD flags;
COLORREF defcolour;
int order;
COLORREF value;
};
// clist_modern related tune-up, adding clist_modern effects to FontService
typedef struct TEffectSettings_tag
{
BYTE effectIndex;
DWORD baseColour; // ARGB
DWORD secondaryColour; // ARGB
}
TEffectSettings;
struct TEffectID
{
int cbSize;
TCHAR group[64];
TCHAR name[64];
char dbSettingsGroup[32];
char setting[32];
DWORD flags;
TEffectSettings defeffect;
int order;
TEffectSettings value;
};
/////////////////////////////////////////////////////////////////////////////////////////
// global data & functions
typedef struct
{
char *paramName;
TCHAR *groupName;
}
TreeItem;
extern OBJLIST<TFontID> font_id_list;
extern OBJLIST<TColourID> colour_id_list;
extern OBJLIST<TEffectID> effect_id_list;
extern int code_page;
extern HANDLE hFontReloadEvent, hColourReloadEvent;
int CreateFromFontSettings(TFontSettings *fs, LOGFONT *lf );
|