diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-24 09:26:39 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-24 09:26:39 +0000 |
commit | 1e92bf5cf72665b5fec103a0a70d734340725539 (patch) | |
tree | 7f9dc318b0e18b2cd55e2604c309eb006c11f278 /plugins/TopToolBar/topbutton.cpp | |
parent | cd441faefd073cfd368d815f4237d7b4996a1063 (diff) |
StopSpamPlus, TipperYM, TooltipNotify, TopToolBar, TranslitSwitcher, UserGuide: changed folder structure
git-svn-id: http://svn.miranda-ng.org/main/trunk@1159 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TopToolBar/topbutton.cpp')
-rw-r--r-- | plugins/TopToolBar/topbutton.cpp | 178 |
1 files changed, 0 insertions, 178 deletions
diff --git a/plugins/TopToolBar/topbutton.cpp b/plugins/TopToolBar/topbutton.cpp deleted file mode 100644 index 8e2f8a1cfd..0000000000 --- a/plugins/TopToolBar/topbutton.cpp +++ /dev/null @@ -1,178 +0,0 @@ -
-#include "common.h"
-
-#define BitChanged(c) (dwFlags ^ Flags) & c
-
-static int maxid = 10000;
-
-TopButtonInt::~TopButtonInt()
-{
- if (hwnd)
- DestroyWindow(hwnd);
-
- if (dwFlags & TTBBF_ISLBUTTON) {
- mir_free(ptszProgram);
- }
- else if (pszService != NULL)
- mir_free(pszService);
-
- mir_free(pszName);
- mir_free(ptszTooltip);
- mir_free(ptszTooltipDn);
- mir_free(ptszTooltipUp);
-}
-
-DWORD TopButtonInt::CheckFlags(DWORD Flags)
-{
- int res = 0;
- if ( BitChanged(TTBBF_DISABLED)) {
- dwFlags ^= TTBBF_DISABLED;
- EnableWindow(hwnd,(dwFlags & TTBBF_DISABLED)?FALSE:TRUE);
- }
- if ( BitChanged(TTBBF_ASPUSHBUTTON)) {
- dwFlags ^= TTBBF_ASPUSHBUTTON;
- SendMessage(hwnd, BUTTONSETASPUSHBTN, (dwFlags & TTBBF_ASPUSHBUTTON)?1:0, 0);
- }
- if ( BitChanged(TTBBF_SHOWTOOLTIP)) {
- dwFlags ^= TTBBF_SHOWTOOLTIP;
- SendMessage(hwnd,BUTTONADDTOOLTIP,
- (WPARAM)((dwFlags & TTBBF_SHOWTOOLTIP) ? ptszTooltip : _T("")), BATF_TCHAR);
- }
- // next settings changing visual side, requires additional actions
- if ( BitChanged(TTBBF_VISIBLE)) {
- dwFlags ^= TTBBF_VISIBLE;
- res |= TTBBF_VISIBLE;
- }
- if ( BitChanged(TTBBF_PUSHED)) {
- dwFlags ^= TTBBF_PUSHED;
- res |= TTBBF_PUSHED;
- bPushed = (dwFlags & TTBBF_PUSHED) ? TRUE : FALSE;
- }
- return res;
-}
-
-void TopButtonInt::CreateWnd()
-{
- if ( !(dwFlags & TTBBF_ISSEPARATOR)) {
- hwnd = CreateWindow(TTB_BUTTON_CLASS, _T(""), BS_PUSHBUTTON|WS_CHILD|WS_TABSTOP|SS_NOTIFY, 0, 0, g_ctrl->nButtonWidth, g_ctrl->nButtonHeight, g_ctrl->hWnd, NULL, hInst, this);
-
- if (dwFlags & TTBBF_ASPUSHBUTTON)
- SendMessage(hwnd, BUTTONSETASPUSHBTN, 1, 0);
-
- if (db_get_b(0, TTB_OPTDIR, "UseFlatButton", 1))
- SendMessage(hwnd, BUTTONSETASFLATBTN, TRUE, 0);
-
- EnableWindow(hwnd,(dwFlags & TTBBF_DISABLED)?FALSE:TRUE);
- }
- // maybe SEPWIDTH, not g_ctrl->nButtonWidth?
- else
- hwnd = CreateWindow( _T("STATIC"), _T(""), WS_CHILD|SS_NOTIFY, 0, 0, g_ctrl->nButtonWidth, g_ctrl->nButtonHeight, g_ctrl->hWnd, NULL, hInst, 0);
-
- SetWindowLongPtr(hwnd, GWLP_USERDATA, id);
- SetBitmap();
-}
-
-void TopButtonInt::LoadSettings()
-{
- char buf[255];
-
- BYTE oldv = isVisible();
- dwFlags = dwFlags & (~TTBBF_VISIBLE);
-
- if (dwFlags & TTBBF_ISSEPARATOR) {
- char buf1[10];
- _itoa(wParamDown, buf1, 10);
- char buf2[20];
- AS(buf2, "Sep", buf1);
-
- arrangedpos = db_get_b(0, TTB_OPTDIR, AS(buf, buf2, "_Position"), Buttons.getCount());
- if ( db_get_b(0, TTB_OPTDIR, AS(buf, buf2, "_Visible"), oldv) > 0 )
- dwFlags |= TTBBF_VISIBLE;
- }
- else if ((dwFlags & TTBBF_ISLBUTTON ) && (dwFlags & TTBBF_INTERNAL)) {
- char buf1[10];
- _itoa(wParamDown, buf1, 10);
- char buf2[20];
- AS(buf2, "Launch", buf1);
-
- mir_free(pszName);
- pszName = DBGetString(0, TTB_OPTDIR, AS(buf, buf2, "_name"));
-
- mir_free(ptszProgram);
- ptszProgram = DBGetStringT(0, TTB_OPTDIR, AS(buf, buf2, "_lpath"));
-
- arrangedpos = db_get_b(0, TTB_OPTDIR, AS(buf, buf2, "_Position"), Buttons.getCount());
- if ( db_get_b(0, TTB_OPTDIR, AS(buf, buf2, "_Visible"), oldv) > 0 )
- dwFlags |= TTBBF_VISIBLE;
- }
- else {
- arrangedpos = db_get_b(0, TTB_OPTDIR, AS(buf, pszName, "_Position"), Buttons.getCount());
- if ( db_get_b(0, TTB_OPTDIR, AS(buf, pszName, "_Visible"), oldv) > 0 )
- dwFlags |= TTBBF_VISIBLE;
- }
-
- if (Buttons.getIndex(this) != -1)
- arrangedpos = maxid++;
-}
-
-void TopButtonInt::SaveSettings(int *SepCnt, int *LaunchCnt)
-{
- char buf[255];
-
- if (SepCnt && (dwFlags & TTBBF_ISSEPARATOR) && (dwFlags & TTBBF_INTERNAL)) {
- char buf1[10];
- _itoa(SepCnt[0]++, buf1, 10);
- char buf2[20];
- AS(buf2, "Sep", buf1);
-
- db_set_b(0, TTB_OPTDIR, AS(buf, buf2, "_Position"), arrangedpos);
- db_set_b(0, TTB_OPTDIR, AS(buf, buf2, "_Visible"), isVisible());
- }
- else if (LaunchCnt && (dwFlags & TTBBF_ISLBUTTON ) && (dwFlags & TTBBF_INTERNAL)) {
- char buf1[10];
- _itoa(LaunchCnt[0]++, buf1, 10);
- char buf2[20];
- AS(buf2, "Launch", buf1);
-
- DBWriteContactSettingString(0, TTB_OPTDIR, AS(buf, buf2, "_name"), pszName);
- DBWriteContactSettingTString(0, TTB_OPTDIR, AS(buf, buf2, "_lpath"), ptszProgram);
- db_set_b(0, TTB_OPTDIR, AS(buf, buf2, "_Position"), arrangedpos);
- db_set_b(0, TTB_OPTDIR, AS(buf, buf2, "_Visible"), isVisible());
- }
- else {
- db_set_b(0, TTB_OPTDIR, AS(buf, pszName, "_Position"), arrangedpos);
- db_set_b(0, TTB_OPTDIR, AS(buf, pszName, "_Visible"), isVisible());
- }
-}
-
-void TopButtonInt::SetBitmap()
-{
- int curstyle = GetWindowLongPtr(hwnd, GWL_STYLE);
- curstyle &= (~SS_BITMAP);
- curstyle &= (~SS_ICON);
-
- if (dwFlags & TTBBF_ISSEPARATOR) {
- SetWindowLongPtr(hwnd, GWL_STYLE, curstyle | SS_BITMAP);
- SendMessage(hwnd, STM_SETIMAGE, IMAGE_BITMAP, (LPARAM)hBmpSeparator);
- SendMessage(hwnd, BM_SETIMAGE, IMAGE_BITMAP, (LPARAM)hBmpSeparator);
- }
- else {
- if (GetWindowLongPtr(hwnd, GWL_STYLE) & SS_ICON)
- SetWindowLongPtr(hwnd, GWL_STYLE, curstyle | SS_ICON);
-
- TCHAR* pTooltip;
- if (bPushed) {
- SendMessage(hwnd, BM_SETIMAGE, IMAGE_ICON, (LPARAM)((hIconDn) ? hIconDn : hIconUp));
- SendMessage(hwnd, BM_SETCHECK, BST_CHECKED, 0);
-
- pTooltip = (ptszTooltipDn) ? ptszTooltipDn : ptszTooltipUp;
- }
- else {
- SendMessage(hwnd, BM_SETIMAGE, IMAGE_ICON, (LPARAM)hIconUp);
- SendMessage(hwnd, BM_SETCHECK, BST_UNCHECKED, 0);
- pTooltip = ptszTooltipUp;
- }
- if (pTooltip)
- SendMessage(hwnd, BUTTONADDTOOLTIP, (WPARAM)TranslateTH(hLangpack, pTooltip), BATF_TCHAR);
- }
-}
|