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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
/*
Scriver
Copyright (c) 2000-12 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.
*/
#ifndef SRMM_GLOBALS_H
#define SRMM_GLOBALS_H
struct ImageListUsageEntry
{
int index;
int used;
};
struct WindowFlags
{
bool bAutoPopup : 1;
bool bStayMinimized : 1;
bool bCloseOnSend : 1;
bool bMinimizeOnSend : 1;
bool bSaveDrafts : 1;
bool bDelTemp : 1;
bool bShowProgress : 1;
bool bShowAvatar : 1;
bool bRtl : 1;
bool bShowIcons : 1;
bool bHideNames : 1;
bool bShowTime : 1;
bool bShowDate : 1;
bool bLongDate : 1;
bool bRelativeDate : 1;
bool bShowSeconds : 1;
bool bGroupMessages : 1;
bool bMarkFollowups : 1;
bool bMsgOnNewline : 1;
bool bDrawLines : 1;
bool bIndentText : 1;
bool bOriginalAvatarH : 1;
};
struct TabFlags
{
bool bUseTabs : 1;
bool bHideOneTab : 1;
bool bTabsAtBottom : 1;
bool bLimitNames : 1;
bool bSwitchToActive : 1;
bool bSeparateChats : 1;
bool bTabCloseButton : 1;
bool bLimitTabs : 1;
bool bLimitChatTabs : 1;
bool bHideContainer : 1;
bool bShowInfoBar : 1;
bool bShowStatusBar : 1;
bool bShowTitleBar : 1;
bool bShowToolBar : 1;
bool bUseTransparency : 1;
bool bShowTyping : 1;
bool bShowTypingWin : 1;
bool bShowTypingTray : 1;
bool bShowTypingClist : 1;
bool bShowTypingSwitch : 1;
};
struct GlobalMessageData
{
union {
uint32_t dwFlags;
WindowFlags flags;
};
union {
uint32_t dwFlags2;
TabFlags flags2;
};
uint32_t openFlags;
uint32_t limitNamesLength;
int activeAlpha;
int inactiveAlpha;
int tabIconListUsageSize;
int smileyAddInstalled;
int limitTabsNum;
int limitChatsTabsNum;
int indentSize;
HIMAGELIST hTabIconList;
HIMAGELIST hHelperIconList;
HBRUSH hInfobarBrush;
int toolbarPosition;
HWND hFocusWnd;
uint32_t logLineColour;
int logPixelSX;
int logPixelSY;
HICON hMsgIcon;
HICON hMsgIconBig;
HICON hIconChatBig;
int minInputAreaHeight;
wchar_t wszTitleFormat[200];
MWindowList hParentWindowList;
struct ParentWindowData *lastParent;
struct ParentWindowData *lastChatParent;
ImageListUsageEntry *tabIconListUsage;
};
int IconsChanged(WPARAM wParam, LPARAM lParam);
int SmileySettingsChanged(WPARAM wParam, LPARAM lParam);
void InitGlobals();
void FreeGlobals();
void ReloadGlobals();
void RegisterIcons();
void ReleaseIcons();
void LoadGlobalIcons();
void RegisterFontServiceFonts();
int ImageList_AddIcon_Ex(HIMAGELIST hIml, int id);
int ImageList_AddIcon_Ex2(HIMAGELIST hIml, HICON hIcon);
int ImageList_ReplaceIcon_Ex(HIMAGELIST hIml, int nIndex, int id);
int ImageList_AddIcon_ProtoEx(HIMAGELIST hIml, const char *szProto, int status);
void StreamInTestEvents(CDlgBase *pDlg, GlobalMessageData *gdat);
#endif
|