diff options
author | George Hazan <george.hazan@gmail.com> | 2014-06-15 14:18:25 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-06-15 14:18:25 +0000 |
commit | fa3c28549bc4a00c24abd933455fe440a536fd2a (patch) | |
tree | 5648e5759c49c4b0f937a5ea557f472be28c1584 /plugins/TabSRMM/src/tabctrl.cpp | |
parent | 4bd0aa857bb64720bfb590f3ef8e955f7d617ff8 (diff) |
options for meta icons displaying in tabSRMM
git-svn-id: http://svn.miranda-ng.org/main/trunk@9501 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src/tabctrl.cpp')
-rw-r--r-- | plugins/TabSRMM/src/tabctrl.cpp | 116 |
1 files changed, 52 insertions, 64 deletions
diff --git a/plugins/TabSRMM/src/tabctrl.cpp b/plugins/TabSRMM/src/tabctrl.cpp index 7bff71bdea..1d62b934f3 100644 --- a/plugins/TabSRMM/src/tabctrl.cpp +++ b/plugins/TabSRMM/src/tabctrl.cpp @@ -157,84 +157,72 @@ void TSAPI FillTabBackground(const HDC hdc, int iStateId, const TWindowData *dat static void DrawItem(TabControlData *tabdat, HDC dc, RECT *rcItem, int nHint, int nItem, TWindowData *dat)
{
- int iSize = 16;
- DWORD dwTextFlags = DT_SINGLELINE | DT_VCENTER/* | DT_NOPREFIX*/;
- BOOL leftMost = FALSE;
-
- if (dat) {
- HICON hIcon;
- COLORREF clr = 0;
- HFONT oldFont;
- DWORD dwStyle = tabdat->dwStyle;
- int oldMode = 0;
- unsigned clrIndex = 0;
-
- InflateRect(rcItem, -2, -2);
-
- if (dat->mayFlashTab)
- clrIndex = 3;
- else
- clrIndex = (nHint & HINT_ACTIVE_ITEM ? 1 : (nHint & HINT_HOTTRACK ? 2 : 0));
+ if (dat == NULL)
+ return;
- clr = PluginConfig.tabConfig.colors[clrIndex];
+ InflateRect(rcItem, -2, -2);
- oldMode = SetBkMode(dc, TRANSPARENT);
+ unsigned clrIndex = (dat->mayFlashTab) ? 3 : (nHint & HINT_ACTIVE_ITEM ? 1 : (nHint & HINT_HOTTRACK ? 2 : 0));
+ COLORREF clr = PluginConfig.tabConfig.colors[clrIndex];
- if (!(dwStyle & TCS_BOTTOM))
- OffsetRect(rcItem, 0, 1);
+ int oldMode = SetBkMode(dc, TRANSPARENT);
- if (dat->dwFlags & MWF_ERRORSTATE)
- hIcon = PluginConfig.g_iconErr;
- else if (dat->mayFlashTab)
- hIcon = dat->iFlashIcon;
- else {
- if (dat->si && dat->iFlashIcon) {
- int sizeX, sizeY;
-
- hIcon = dat->iFlashIcon;
- Utils::getIconSize(hIcon, sizeX, sizeY);
- iSize = sizeX;
- } else if (dat->hTabIcon == dat->hTabStatusIcon && dat->hXStatusIcon)
- hIcon = dat->hXStatusIcon;
- else
- hIcon = dat->hTabIcon;
- }
+ if (!(tabdat->dwStyle & TCS_BOTTOM))
+ OffsetRect(rcItem, 0, 1);
+ int iSize = 16;
+ HICON hIcon;
+ if (dat->dwFlags & MWF_ERRORSTATE)
+ hIcon = PluginConfig.g_iconErr;
+ else if (dat->mayFlashTab)
+ hIcon = dat->iFlashIcon;
+ else {
+ if (dat->si && dat->iFlashIcon) {
+ hIcon = dat->iFlashIcon;
- if (dat->mayFlashTab == FALSE || (dat->mayFlashTab == TRUE && dat->bTabFlash != 0) || !(dat->pContainer->dwFlagsEx & TCF_FLASHICON)) {
- DWORD ix = rcItem->left + tabdat->m_xpad - 1;
- DWORD iy = (rcItem->bottom + rcItem->top - iSize) / 2;
- if (dat->dwFlagsEx & MWF_SHOW_ISIDLE && PluginConfig.m_IdleDetect)
- CSkin::DrawDimmedIcon(dc, ix, iy, iSize, iSize, hIcon, 180);
- else
- DrawIconEx(dc, ix, iy, hIcon, iSize, iSize, 0, NULL, DI_NORMAL | DI_COMPAT);
+ int sizeY;
+ Utils::getIconSize(hIcon, iSize, sizeY);
}
+ else if (dat->hTabIcon == dat->hTabStatusIcon && dat->hXStatusIcon)
+ hIcon = dat->hXStatusIcon;
+ else
+ hIcon = dat->hTabIcon;
+ }
- rcItem->left += (iSize + 2 + tabdat->m_xpad);
+ if (dat->mayFlashTab == FALSE || (dat->mayFlashTab == TRUE && dat->bTabFlash != 0) || !(dat->pContainer->dwFlagsEx & TCF_FLASHICON)) {
+ DWORD ix = rcItem->left + tabdat->m_xpad - 1;
+ DWORD iy = (rcItem->bottom + rcItem->top - iSize) / 2;
+ if (dat->dwFlagsEx & MWF_SHOW_ISIDLE && PluginConfig.m_IdleDetect)
+ CSkin::DrawDimmedIcon(dc, ix, iy, iSize, iSize, hIcon, 180);
+ else
+ DrawIconEx(dc, ix, iy, hIcon, iSize, iSize, 0, NULL, DI_NORMAL | DI_COMPAT);
+ }
- if (tabdat->fCloseButton) {
- if (tabdat->iHoveredCloseIcon != nItem)
- CSkin::m_default_bf.SourceConstantAlpha = 150;
+ rcItem->left += (iSize + 2 + tabdat->m_xpad);
- GdiAlphaBlend(dc, rcItem->right - 16 - tabdat->m_xpad, (rcItem->bottom + rcItem->top - 16) / 2, 16, 16, CSkin::m_tabCloseHDC,
- 0, 0, 16, 16, CSkin::m_default_bf);
+ if (tabdat->fCloseButton) {
+ if (tabdat->iHoveredCloseIcon != nItem)
+ CSkin::m_default_bf.SourceConstantAlpha = 150;
- rcItem->right -= (18 + tabdat->m_xpad);
- CSkin::m_default_bf.SourceConstantAlpha = 255;
- }
+ GdiAlphaBlend(dc, rcItem->right - 16 - tabdat->m_xpad, (rcItem->bottom + rcItem->top - 16) / 2, 16, 16, CSkin::m_tabCloseHDC,
+ 0, 0, 16, 16, CSkin::m_default_bf);
- if (dat->mayFlashTab == FALSE || (dat->mayFlashTab == TRUE && dat->bTabFlash != 0) || !(dat->pContainer->dwFlagsEx & TCF_FLASHLABEL)) {
- oldFont = (HFONT)SelectObject(dc, (HFONT)SendMessage(tabdat->hwnd, WM_GETFONT, 0, 0));
- if (tabdat->dwStyle & TCS_BUTTONS || !(tabdat->dwStyle & TCS_MULTILINE)) { // || (tabdat->m_moderntabs && leftMost)) {
- rcItem->right -= tabdat->m_xpad;
- dwTextFlags |= DT_WORD_ELLIPSIS;
- }
- CSkin::RenderText(dc, dwStyle & TCS_BUTTONS ? tabdat->hThemeButton : tabdat->hTheme, dat->newtitle, rcItem, dwTextFlags, CSkin::m_glowSize, clr);
- SelectObject(dc, oldFont);
+ rcItem->right -= (18 + tabdat->m_xpad);
+ CSkin::m_default_bf.SourceConstantAlpha = 255;
+ }
+
+ if (dat->mayFlashTab == FALSE || (dat->mayFlashTab == TRUE && dat->bTabFlash != 0) || !(dat->pContainer->dwFlagsEx & TCF_FLASHLABEL)) {
+ DWORD dwTextFlags = DT_SINGLELINE | DT_VCENTER;
+ HFONT oldFont = (HFONT)SelectObject(dc, (HFONT)SendMessage(tabdat->hwnd, WM_GETFONT, 0, 0));
+ if (tabdat->dwStyle & TCS_BUTTONS || !(tabdat->dwStyle & TCS_MULTILINE)) { // || (tabdat->m_moderntabs && leftMost)) {
+ rcItem->right -= tabdat->m_xpad;
+ dwTextFlags |= DT_WORD_ELLIPSIS;
}
- if (oldMode)
- SetBkMode(dc, oldMode);
+ CSkin::RenderText(dc, tabdat->dwStyle & TCS_BUTTONS ? tabdat->hThemeButton : tabdat->hTheme, dat->newtitle, rcItem, dwTextFlags, CSkin::m_glowSize, clr);
+ SelectObject(dc, oldFont);
}
+ if (oldMode)
+ SetBkMode(dc, oldMode);
}
/*
|