summaryrefslogtreecommitdiff
path: root/plugins/TabSRMM/src/chat/chat.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-07-06 12:28:50 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-07-06 12:28:50 +0000
commit0db5618a347355245230f25992343febaaec0e43 (patch)
tree27e2970909a30bc5fed0faccce1e538ded7b3604 /plugins/TabSRMM/src/chat/chat.h
parent6af7ff26a41182bf79986e25b2c3e583ea9bc2b2 (diff)
more booleans
git-svn-id: http://svn.miranda-ng.org/main/trunk@5246 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src/chat/chat.h')
-rw-r--r--plugins/TabSRMM/src/chat/chat.h43
1 files changed, 16 insertions, 27 deletions
diff --git a/plugins/TabSRMM/src/chat/chat.h b/plugins/TabSRMM/src/chat/chat.h
index 9a69a10f43..90d9e6446f 100644
--- a/plugins/TabSRMM/src/chat/chat.h
+++ b/plugins/TabSRMM/src/chat/chat.h
@@ -241,16 +241,16 @@ struct LOGSTREAMDATA
struct TMUCSettings
{
HICON hIconOverlay;
- bool ShowTime, ShowTimeIfChanged, LoggingEnabled;
- bool FlashWindow, FlashWindowHightlight;
- bool OpenInDefault;
- bool HighlightEnabled, LogIndentEnabled;
- bool StripFormat;
- bool BBCodeInPopups;
- bool TrayIconInactiveOnly;
- bool AddColonToAutoComplete;
- bool LogLimitNames;
- bool TimeStampEventColour;
+ bool bShowTime, bShowTimeIfChanged, bLoggingEnabled;
+ bool bFlashWindow, bFlashWindowHightlight;
+ bool bOpenInDefault;
+ bool bHighlightEnabled, LogIndentEnabled;
+ bool bStripFormat;
+ bool bBBCodeInPopups;
+ bool bTrayIconInactiveOnly;
+ bool bAddColonToAutoComplete;
+ bool bLogLimitNames;
+ bool bTimeStampEventColour;
DWORD dwIconFlags;
int LogTextIndent;
long LoggingLimit;
@@ -270,29 +270,18 @@ struct TMUCSettings
COLORREF crUserListBGColor;
COLORREF crPUTextColour;
COLORREF crPUBkgColour;
- BYTE ClassicIndicators;
HFONT UserListFonts[CHAT_STATUS_MAX];
COLORREF UserListColors[CHAT_STATUS_MAX];
- BYTE LogClassicIndicators;
- BYTE AlternativeSorting;
- BYTE AnnoyingHighlight;
- BYTE CreateWindowOnHighlight;
-
- BYTE LogSymbols;
- BYTE ClickableNicks;
- BYTE ColorizeNicks;
- BYTE ColorizeNicksInLog;
- BYTE ScaleIcons;
- BYTE UseDividers;
- BYTE DividersUsePopupConfig;
- BYTE MathMod;
COLORREF nickColors[8];
HBRUSH SelectionBGBrush;
- bool DoubleClick4Privat;
- bool ShowContactStatus;
- bool ContactStatusFirst;
+ bool bDoubleClick4Privat, bShowContactStatus, bContactStatusFirst;
+
+ bool bLogClassicIndicators, bAlternativeSorting, bAnnoyingHighlight, bCreateWindowOnHighlight;
+ bool bLogSymbols, bClassicIndicators, bClickableNicks, bColorizeNicks, bColorizeNicksInLog;
+ bool bScaleIcons, bUseDividers, bDividersUsePopupConfig, bMathMod;
+
HANDLE hGroup;
CMUCHighlight* Highlight;
};