summaryrefslogtreecommitdiff
path: root/plugins/FingerPrintModPlus/src/finger_groups.h
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-05-15 10:38:20 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-05-15 10:38:20 +0000
commit48540940b6c28bb4378abfeb500ec45a625b37b6 (patch)
tree2ef294c0763e802f91d868bdef4229b6868527de /plugins/FingerPrintModPlus/src/finger_groups.h
parent5c350913f011e119127baeb32a6aedeb4f0d33bc (diff)
initial commit
git-svn-id: http://svn.miranda-ng.org/main/trunk@2 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FingerPrintModPlus/src/finger_groups.h')
-rw-r--r--plugins/FingerPrintModPlus/src/finger_groups.h94
1 files changed, 94 insertions, 0 deletions
diff --git a/plugins/FingerPrintModPlus/src/finger_groups.h b/plugins/FingerPrintModPlus/src/finger_groups.h
new file mode 100644
index 0000000000..9502423f34
--- /dev/null
+++ b/plugins/FingerPrintModPlus/src/finger_groups.h
@@ -0,0 +1,94 @@
+case MIRANDA_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupMiranda", 1))
+ SectName = _T("Client Icons/Miranda");
+ break;
+case MULTIPROTOCOL_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupMulti", 1))
+ SectName = _T("Client Icons/Multi-Protocol");
+ break;
+case ICQ_OFF_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupIcq", 1))
+ SectName = _T("Client Icons/ICQ/Official");
+ break;
+case ICQ_UNOFF_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupIcq", 1))
+ SectName = _T("Client Icons/ICQ/Unofficial");
+ break;
+case JABBER_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupJabber", 1))
+ SectName = _T("Client Icons/Jabber");
+ break;
+case MSN_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupMsn", 1))
+ SectName = _T("Client Icons/MSN");
+ break;
+case AIM_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupAim", 1))
+ SectName = _T("Client Icons/AIM");
+ break;
+case YAHOO_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupYahoo", 1))
+ SectName = _T("Client Icons/Yahoo");
+ break;
+case IRC_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupIrc", 1))
+ SectName = _T("Client Icons/IRC");
+ break;
+case VOIP_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupVoIP", 1))
+ SectName = _T("Client Icons/VoIP");
+ break;
+case SKYPE_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupSkype", 1))
+ SectName = _T("Client Icons/Skype");
+ break;
+case GADU_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupGadu", 1))
+ SectName = _T("Client Icons/Gadu-Gadu");
+ break;
+case PACKS_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupPacks", 1))
+ SectName = _T("Client Icons/Miranda/Pack overlays");
+ break;
+case MRA_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupMail", 1))
+ SectName = _T("Client Icons/Mail.Ru Agent");
+ break;
+case OVER1_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupMiranda", 1))
+ SectName = _T("Client Icons/Miranda/Overlays#1");
+ break;
+case SECURITY_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupOtherProtos", 1))
+ SectName = _T("Client Icons/Overlays/Security");
+ break;
+case OTHER_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupOtherProtos", 1))
+ SectName = _T("Client Icons/Other");
+ break;
+case OVER2_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupMiranda", 1))
+ SectName = _T("Client Icons/Miranda/Overlays#2");
+ break;
+case PLATFORM_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupOtherProtos", 1))
+ SectName = _T("Client Icons/Overlays/Platform");
+ break;
+case WEATHER_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupWeather", 1))
+ SectName = _T("Client Icons/Weather");
+ break;
+case RSS_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupRSS", 1))
+ SectName = _T("Client Icons/RSS");
+ break;
+case QQ_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupQQ", 1))
+ SectName = _T("Client Icons/QQ");
+ break;
+case TLEN_CASE:
+ if(DBGetContactSettingByte(NULL, "Finger", "GroupTlen", 1))
+ SectName = _T("Client Icons/Tlen");
+ break;
+default:
+ SectName = _T("Client Icons"); \ No newline at end of file