diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-17 22:06:40 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-17 22:06:40 +0000 |
commit | 76e7322839a1145eace5fdc90a37cbb7e2de3b04 (patch) | |
tree | fe4cddbcdfe7c6b0cbcd893c674433fb7ad6ebb6 /src/core | |
parent | 56273a2a767e4cdb504397121ec8aeb0ca20e55f (diff) |
- colored nicks in tabSRMM;
- color registration removed from core due to some conflicts
git-svn-id: http://svn.miranda-ng.org/main/trunk@7701 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/stdchat/src/chat.h | 1 | ||||
-rw-r--r-- | src/core/stdchat/src/main.cpp | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/src/core/stdchat/src/chat.h b/src/core/stdchat/src/chat.h index f7f8a5ef09..4b1ce18173 100644 --- a/src/core/stdchat/src/chat.h +++ b/src/core/stdchat/src/chat.h @@ -60,6 +60,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include <m_chat_int.h>
#include <m_core.h>
#include <m_string.h>
+#include <m_fontservice.h>
#include "m_ieview.h"
#include "m_smileyadd.h"
diff --git a/src/core/stdchat/src/main.cpp b/src/core/stdchat/src/main.cpp index 9d70355fd8..3fbbc0c281 100644 --- a/src/core/stdchat/src/main.cpp +++ b/src/core/stdchat/src/main.cpp @@ -257,12 +257,45 @@ static void OnLoadSettings() g_TabSession.bBGSet = TRUE;
}
+static void RegisterFonts()
+{
+ ColourIDT colourid = { sizeof(colourid) };
+ strncpy(colourid.dbSettingsGroup, "Chat", sizeof(colourid.dbSettingsGroup));
+ _tcsncpy(colourid.group, LPGENT("Chat module"), SIZEOF(colourid.group));
+
+ strncpy(colourid.setting, "ColorLogBG", SIZEOF(colourid.setting));
+ _tcsncpy(colourid.name, LPGENT("Background"), SIZEOF(colourid.name));
+ colourid.defcolour = GetSysColor(COLOR_WINDOW);
+ ColourRegisterT(&colourid);
+
+ strncpy(colourid.setting, "ColorMessageBG", SIZEOF(colourid.setting));
+ _tcsncpy(colourid.name, LPGENT("Message background"), SIZEOF(colourid.name));
+ colourid.defcolour = GetSysColor(COLOR_WINDOW);
+ ColourRegisterT(&colourid);
+
+ strncpy(colourid.setting, "ColorNicklistBG", SIZEOF(colourid.setting));
+ _tcsncpy(colourid.name, LPGENT("User list background"), SIZEOF(colourid.name));
+ colourid.defcolour = GetSysColor(COLOR_WINDOW);
+ ColourRegisterT(&colourid);
+
+ strncpy(colourid.setting, "ColorNicklistLines", SIZEOF(colourid.setting));
+ _tcsncpy(colourid.name, LPGENT("User list lines"), SIZEOF(colourid.name));
+ colourid.defcolour = GetSysColor(COLOR_INACTIVEBORDER);
+ ColourRegisterT(&colourid);
+
+ strncpy(colourid.setting, "ColorNicklistSelectedBG", SIZEOF(colourid.setting));
+ _tcsncpy(colourid.name, LPGENT("User list background (selected)"), SIZEOF(colourid.name));
+ colourid.defcolour = GetSysColor(COLOR_HIGHLIGHT);
+ ColourRegisterT(&colourid);
+}
+
extern "C" __declspec(dllexport) int Load(void)
{
mir_getLP(&pluginInfo);
mir_getCLI();
AddIcons();
+ RegisterFonts();
CHAT_MANAGER_INITDATA data = { &g_Settings, sizeof(MODULEINFO), sizeof(SESSION_INFO), LPGENT("Chat module") };
mir_getCI(&data);
|