ExtPaintManager.cpp
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:1653k
源码类别:

界面编程

开发平台:

Visual C++

  1. pStatusBar;
  2. lParam;
  3. return false;
  4. }
  5. bool CExtPaintManagerNativeXP::StatusBar_EraseBackground(
  6. CDC & dc,
  7. const RECT & rcClient,
  8. const CExtStatusControlBar * pStatusBar,
  9. LPARAM lParam // = 0
  10. ) const
  11. {
  12. ASSERT_VALID( this );
  13. ASSERT( dc.GetSafeHdc() != NULL );
  14. ASSERT_VALID( pStatusBar );
  15. if( ! g_PaintManager.m_UxTheme.IsControlsThemed() )
  16. return
  17. CExtPaintManager::StatusBar_EraseBackground(
  18. dc,
  19. rcClient,
  20. pStatusBar,
  21. lParam
  22. );
  23. if( g_PaintManager.m_UxTheme.OpenThemeData( pStatusBar->GetSafeHwnd(), VSCLASS_STATUS ) != NULL )
  24. {
  25. VERIFY( 
  26. g_PaintManager.m_UxTheme.DrawBackground(
  27. pStatusBar->GetSafeHwnd(), 
  28. dc.GetSafeHdc(), 
  29. 0, 
  30. 0, 
  31. &rcClient, 
  32. &rcClient
  33. ) == S_OK
  34. );
  35. g_PaintManager.m_UxTheme.CloseThemeData();
  36. }
  37. return true;
  38. }
  39. bool CExtPaintManager::StatusBar_ErasePaneBackground(
  40. CDC & dc,
  41. int nPaneIdx,
  42. const RECT & rcPane,
  43. const CExtStatusControlBar * pStatusBar,
  44. LPARAM lParam // = 0
  45. ) const
  46. {
  47. ASSERT_VALID( this );
  48. ASSERT( dc.GetSafeHdc() != NULL );
  49. ASSERT_VALID( pStatusBar );
  50. dc;
  51. nPaneIdx;
  52. rcPane;
  53. pStatusBar;
  54. lParam;
  55. return false;
  56. }
  57. bool CExtPaintManagerNativeXP::StatusBar_ErasePaneBackground(
  58. CDC & dc,
  59. int nPaneIdx,
  60. const RECT & rcPane,
  61. const CExtStatusControlBar * pStatusBar,
  62. LPARAM lParam // = 0
  63. ) const
  64. {
  65. ASSERT_VALID( this );
  66. ASSERT( dc.GetSafeHdc() != NULL );
  67. ASSERT_VALID( pStatusBar );
  68. if( ! g_PaintManager.m_UxTheme.IsControlsThemed() )
  69. return CExtPaintManager::StatusBar_ErasePaneBackground( dc, nPaneIdx, rcPane, pStatusBar, lParam );
  70. if( g_PaintManager.m_UxTheme.OpenThemeData( pStatusBar->GetSafeHwnd(), VSCLASS_STATUS ) != NULL )
  71. {
  72. INT nPaneCount = pStatusBar->GetPaneCount();
  73. VERIFY( 
  74. g_PaintManager.m_UxTheme.DrawBackground(
  75. pStatusBar->GetSafeHwnd(), 
  76. dc.GetSafeHdc(), 
  77. ( nPaneIdx == nPaneCount - 1 ) 
  78. ? SP_GRIPPERPANE 
  79. : SP_PANE, 
  80. 0, 
  81. &rcPane, 
  82. &rcPane
  83. ) == S_OK
  84. );
  85. g_PaintManager.m_UxTheme.CloseThemeData();
  86. }
  87. return true;
  88. }
  89. bool CExtPaintManager::StatusBar_PaintPane(
  90. CDC & dc,
  91. int nPaneIdx,
  92. const RECT & rcPane,
  93. DWORD dwPaneStyle,
  94. HICON hIcon,
  95. __EXT_MFC_SAFE_LPCTSTR sPaneText,
  96. UINT nDrawTextFlags,
  97. COLORREF clrText,
  98. const CExtStatusControlBar * pStatusBar,
  99. LPARAM lParam // = 0
  100. ) const
  101. {
  102. ASSERT_VALID( this );
  103. ASSERT( dc.GetSafeHdc() != NULL );
  104. ASSERT_VALID( pStatusBar );
  105. dc; nPaneIdx; rcPane; dwPaneStyle; hIcon; sPaneText; nDrawTextFlags; clrText; pStatusBar; lParam;
  106. return false;
  107. }
  108. bool CExtPaintManager::StatusBar_PaintSeparator(
  109. CDC & dc,
  110. int nPaneIdxAfterSep,
  111. const RECT & rcPaneBefore,
  112. const RECT & rcPaneAfter,
  113. const CExtStatusControlBar * pStatusBar,
  114. LPARAM lParam // = 0
  115. ) const
  116. {
  117. ASSERT_VALID( this );
  118. ASSERT( dc.GetSafeHdc() != NULL );
  119. ASSERT_VALID( pStatusBar );
  120. dc;
  121. nPaneIdxAfterSep;
  122. rcPaneBefore;
  123. rcPaneAfter;
  124. pStatusBar;
  125. lParam;
  126. return false;
  127. }
  128. bool CExtPaintManagerNativeXP::StatusBar_PaintSeparator(
  129. CDC & dc,
  130. int nPaneIdxAfterSep,
  131. const RECT & rcPaneBefore,
  132. const RECT & rcPaneAfter,
  133. const CExtStatusControlBar * pStatusBar,
  134. LPARAM lParam // = 0
  135. ) const
  136. {
  137. ASSERT_VALID( this );
  138. ASSERT( dc.GetSafeHdc() != NULL );
  139. ASSERT_VALID( pStatusBar );
  140. if( ! g_PaintManager.m_UxTheme.IsControlsThemed() )
  141. return
  142. CExtPaintManager::StatusBar_PaintSeparator(
  143. dc,
  144. nPaneIdxAfterSep,
  145. rcPaneBefore,
  146. rcPaneAfter,
  147. pStatusBar,
  148. lParam
  149. );
  150. // do not paint pain separators
  151. return true;
  152. }
  153. #endif // __EXT_MFC_NO_STATUSBAR
  154. bool CExtPaintManager::AdjustControlFont(
  155. HFONT & hFont,
  156. CObject * pHelperSrc,
  157. LPARAM lParam // = 0L
  158. )
  159. {
  160. ASSERT_VALID( this );
  161. ASSERT( hFont != NULL );
  162. hFont;
  163. pHelperSrc;
  164. lParam;
  165. return false;
  166. }
  167. DLGTEMPLATE * CExtPaintManager::AdjustDialogTemplate(
  168. const DLGTEMPLATE * lpDialogTemplate,
  169. CObject * pHelperSrc,
  170. bool bWizard, // = false
  171. LPARAM lParam // = 0L
  172. )
  173. {
  174. ASSERT_VALID( this );
  175. ASSERT( lpDialogTemplate != NULL );
  176. lpDialogTemplate;
  177. pHelperSrc;
  178. bWizard;
  179. lParam;
  180. return NULL;
  181. }
  182. HFONT CExtPaintManager::CreateDefaultFont()
  183. {
  184. ASSERT_VALID( this );
  185. HFONT hDefaultGuiFont = stat_menu_HFONT_from_current_NONCLIENTMETRICS( m_bUseTahomaFont, false );
  186. if( hDefaultGuiFont == NULL )
  187. hDefaultGuiFont = (HFONT)::GetStockObject( DEFAULT_GUI_FONT );
  188. if( hDefaultGuiFont == NULL )
  189. hDefaultGuiFont = (HFONT)::GetStockObject( SYSTEM_FONT );
  190. ASSERT( hDefaultGuiFont != NULL );
  191. return hDefaultGuiFont;
  192. }
  193. HFONT CExtPaintManager::CreateCaptionFont()
  194. {
  195. ASSERT_VALID( this );
  196. HFONT hCaptionFont = stat_menu_HFONT_from_current_NONCLIENTMETRICS( false, /*m_bUseTahomaFont,*/ true );
  197. if( hCaptionFont != NULL )
  198. {
  199. LOGFONT lf;
  200. ::GetObject( hCaptionFont, sizeof(LOGFONT), &lf );
  201. lf.lfWeight = 400;
  202. HFONT hCaptionFont2 = ::CreateFontIndirect( &lf );
  203. if( hCaptionFont2 != NULL )
  204. {
  205. ::DeleteObject( hCaptionFont );
  206. return hCaptionFont2;
  207. }
  208. }
  209. hCaptionFont = (HFONT)::GetStockObject( DEFAULT_GUI_FONT );
  210. if( hCaptionFont == NULL )
  211. hCaptionFont = (HFONT)::GetStockObject( SYSTEM_FONT );
  212. ASSERT( hCaptionFont != NULL );
  213. return hCaptionFont;
  214. }
  215. HFONT CExtPaintManagerOffice2007_Impl::CreateDefaultFont()
  216. {
  217. ASSERT_VALID( this );
  218. if( IsHighContrast() )
  219. return CExtPaintManagerXP::CreateDefaultFont();
  220. return CExtPaintManagerOffice2003::CreateDefaultFont();
  221. // if( ! g_PaintManager.m_bIsWinXPorLater )
  222. //  return CExtPaintManagerOffice2003::CreateDefaultFont();
  223. // if( g_ResourceManager->DesiredFont_GetFaceName() != NULL )
  224. //  return CExtPaintManagerOffice2003::CreateDefaultFont();
  225. //bool bUseDesiredRibbonFontFaceName = false;
  226. //static __EXT_MFC_SAFE_LPCTSTR
  227. // g_sDesiredRibbonFontFaceName = _T("Segoe UI");
  228. //CWindowDC dc( NULL );
  229. // if( ! ::EnumFontFamilies(
  230. // dc.m_hDC,
  231. // NULL,
  232. // (FONTENUMPROC)stat_FindFontByNameCallBack,
  233. // reinterpret_cast < LPARAM > ( LPCTSTR(g_sDesiredRibbonFontFaceName) )
  234. // )
  235. // )
  236. // bUseDesiredRibbonFontFaceName = true;
  237. //HFONT hDef = (HFONT)::GetStockObject( DEFAULT_GUI_FONT );
  238. //LOGFONT _lf;
  239. // ::memset( &_lf, 0, sizeof(LOGFONT) );
  240. // ::GetObject( hDef, sizeof(LOGFONT), &_lf );
  241. // if( bUseDesiredRibbonFontFaceName )
  242. // {
  243. // __EXT_MFC_STRCPY( _lf.lfFaceName, LF_FACESIZE, g_sDesiredRibbonFontFaceName );
  244. // _lf.lfWidth = 0;
  245. // _lf.lfHeight = -12;
  246. // }
  247. // else
  248. // {
  249. // __EXT_MFC_STRCPY( _lf.lfFaceName, LF_FACESIZE, _T("Arial") );
  250. // _lf.lfWidth = 5;
  251. // _lf.lfHeight = 14;
  252. // _lf.lfWeight = 550;
  253. // }
  254. // if( g_PaintManager.m_bIsWinXPorLater )
  255. // _lf.lfQuality = CLEARTYPE_QUALITY;
  256. //HFONT hDefaultGuiFont = ::CreateFontIndirect( &_lf );
  257. // return hDefaultGuiFont;
  258. }
  259. HFONT CExtPaintManagerOffice2007_Impl::CreateCaptionFont()
  260. {
  261. ASSERT_VALID( this );
  262. if( IsHighContrast() )
  263. return CExtPaintManagerXP::CreateCaptionFont();
  264. return CExtPaintManagerOffice2003::CreateCaptionFont();
  265. //bool bUseDesiredRibbonFontFaceName = false;
  266. //static __EXT_MFC_SAFE_LPCTSTR
  267. // g_sDesiredRibbonFontFaceName = _T("Segoe UI");
  268. //CWindowDC dc( NULL );
  269. // if( ! ::EnumFontFamilies(
  270. // dc.m_hDC,
  271. // NULL,
  272. // (FONTENUMPROC)stat_FindFontByNameCallBack,
  273. // reinterpret_cast < LPARAM > ( LPCTSTR(g_sDesiredRibbonFontFaceName) )
  274. // )
  275. // )
  276. // bUseDesiredRibbonFontFaceName = true;
  277. //
  278. // if( g_ResourceManager->DesiredFont_GetFaceName() != NULL )
  279. // return CExtPaintManagerOffice2003::CreateCaptionFont();
  280. //
  281. //HFONT hDef = (HFONT)::GetStockObject( DEFAULT_GUI_FONT );
  282. //LOGFONT _lf;
  283. // ::memset( &_lf, 0, sizeof(LOGFONT) );
  284. // ::GetObject( hDef, sizeof(LOGFONT), &_lf );
  285. // if( bUseDesiredRibbonFontFaceName )
  286. // {
  287. // __EXT_MFC_STRCPY( _lf.lfFaceName, LF_FACESIZE, g_sDesiredRibbonFontFaceName );
  288. // _lf.lfWidth = 0;
  289. // _lf.lfHeight = -12;
  290. // // _lf.lfWidth = 6;
  291. // // _lf.lfHeight = 17;
  292. // // _lf.lfWeight = 550;
  293. // }
  294. // else
  295. // {
  296. // __EXT_MFC_STRCPY( _lf.lfFaceName, LF_FACESIZE, _T("Arial") );
  297. // _lf.lfWidth = 0;
  298. // _lf.lfHeight = -12;
  299. // _lf.lfWeight = 550;
  300. // }
  301. // if( g_PaintManager.m_bIsWinXPorLater )
  302. // _lf.lfQuality = CLEARTYPE_QUALITY;
  303. //HFONT hDefaultGuiFont = ::CreateFontIndirect( &_lf );
  304. // return hDefaultGuiFont;
  305. }
  306. void CExtPaintManager::SyncSysColors()
  307. {
  308. ASSERT_VALID( this );
  309. g_PaintManager.InitUserExApi();
  310. // init fonts
  311. if( m_FontNormal.GetSafeHandle() )
  312. m_FontNormal.DeleteObject();
  313. HFONT hDefaultGuiFont = CreateDefaultFont();
  314. ASSERT( hDefaultGuiFont != NULL );
  315. m_FontNormal.Attach( hDefaultGuiFont );
  316. if( m_FontCaption.GetSafeHandle() )
  317. m_FontCaption.DeleteObject();
  318. HFONT hCaptionFont = CreateCaptionFont();
  319. ASSERT( hCaptionFont != NULL );
  320. m_FontCaption.Attach( hCaptionFont );
  321. static __EXT_MFC_SAFE_LPCTSTR sVertFontFaceForNt4 = _T("Arial");
  322. LOGFONT lf;
  323. VERIFY( m_FontNormal.GetLogFont(&lf) );
  324. lf.lfWeight = 900;
  325. if( m_FontBold.GetSafeHandle() )
  326. m_FontBold.DeleteObject();
  327. VERIFY( m_FontBold.CreateFontIndirect(&lf) );
  328. VERIFY( m_FontCaption.GetLogFont(&lf) );
  329. lf.lfWeight = 900;
  330. if( m_FontCaptionBold.GetSafeHandle() )
  331. m_FontCaptionBold.DeleteObject();
  332. VERIFY( m_FontCaptionBold.CreateFontIndirect(&lf) );
  333. VERIFY( m_FontNormal.GetLogFont(&lf) );
  334. lf.lfCharSet = SYMBOL_CHARSET;
  335. lf.lfWeight = 0;
  336. lf.lfHeight = ::GetSystemMetrics(SM_CYMENUCHECK) - 1;
  337. __EXT_MFC_STRCPY( lf.lfFaceName, LF_FACESIZE, _T("Marlett") );
  338. if( m_FontMarlett.GetSafeHandle() )
  339. m_FontMarlett.DeleteObject();
  340. VERIFY( m_FontMarlett.CreateFontIndirect(&lf) );
  341. VERIFY( m_FontNormal.GetLogFont(&lf) );
  342. lf.lfEscapement = __EXT_VERT_FONT_ESCAPEMENT__;
  343. if( m_FontNormalVert.GetSafeHandle() )
  344. m_FontNormalVert.DeleteObject();
  345. if( g_PaintManager.m_bIsWinNT4 || g_PaintManager.m_bIsWin9x )
  346. __EXT_MFC_STRCPY( lf.lfFaceName, LF_FACESIZE, sVertFontFaceForNt4 );
  347. VERIFY( m_FontNormalVert.CreateFontIndirect(&lf) );
  348. lf.lfEscapement = __EXT_VERT_FONT_ESCAPEMENT_X__;
  349. if( m_FontNormalVertX.GetSafeHandle() )
  350. m_FontNormalVertX.DeleteObject();
  351. if( g_PaintManager.m_bIsWinNT4 || g_PaintManager.m_bIsWin9x )
  352. __EXT_MFC_STRCPY( lf.lfFaceName, LF_FACESIZE, sVertFontFaceForNt4 );
  353. VERIFY( m_FontNormalVertX.CreateFontIndirect(&lf) );
  354. VERIFY( m_FontCaption.GetLogFont(&lf) );
  355. lf.lfEscapement = __EXT_VERT_FONT_ESCAPEMENT__;
  356. if( m_FontCaptionVert.GetSafeHandle() )
  357. m_FontCaptionVert.DeleteObject();
  358. if( g_PaintManager.m_bIsWinNT4 || g_PaintManager.m_bIsWin9x )
  359. __EXT_MFC_STRCPY( lf.lfFaceName, LF_FACESIZE, sVertFontFaceForNt4 );
  360. VERIFY( m_FontCaptionVert.CreateFontIndirect(&lf) );
  361. lf.lfEscapement = __EXT_VERT_FONT_ESCAPEMENT_X__;
  362. if( m_FontCaptionVertX.GetSafeHandle() )
  363. m_FontCaptionVertX.DeleteObject();
  364. if( g_PaintManager.m_bIsWinNT4 || g_PaintManager.m_bIsWin9x )
  365. __EXT_MFC_STRCPY( lf.lfFaceName, LF_FACESIZE, sVertFontFaceForNt4 );
  366. VERIFY( m_FontCaptionVertX.CreateFontIndirect(&lf) );
  367. VERIFY( m_FontBold.GetLogFont(&lf) );
  368. lf.lfEscapement = __EXT_VERT_FONT_ESCAPEMENT__;
  369. if( m_FontBoldVert.GetSafeHandle() )
  370. m_FontBoldVert.DeleteObject();
  371. if( g_PaintManager.m_bIsWinNT4 || g_PaintManager.m_bIsWin9x )
  372. __EXT_MFC_STRCPY( lf.lfFaceName, LF_FACESIZE, sVertFontFaceForNt4 );
  373. VERIFY( m_FontBoldVert.CreateFontIndirect(&lf) );
  374. lf.lfEscapement = __EXT_VERT_FONT_ESCAPEMENT_X__;
  375. if( m_FontBoldVertX.GetSafeHandle() )
  376. m_FontBoldVertX.DeleteObject();
  377. if( g_PaintManager.m_bIsWinNT4 || g_PaintManager.m_bIsWin9x )
  378. __EXT_MFC_STRCPY( lf.lfFaceName, LF_FACESIZE, sVertFontFaceForNt4 );
  379. VERIFY( m_FontBoldVertX.CreateFontIndirect(&lf) );
  380. VERIFY( m_FontCaptionBold.GetLogFont(&lf) );
  381. lf.lfEscapement = __EXT_VERT_FONT_ESCAPEMENT__;
  382. if( m_FontCaptionBoldVert.GetSafeHandle() )
  383. m_FontCaptionBoldVert.DeleteObject();
  384. if( g_PaintManager.m_bIsWinNT4 || g_PaintManager.m_bIsWin9x )
  385. __EXT_MFC_STRCPY( lf.lfFaceName, LF_FACESIZE, sVertFontFaceForNt4 );
  386. VERIFY( m_FontCaptionBoldVert.CreateFontIndirect(&lf) );
  387. lf.lfEscapement = __EXT_VERT_FONT_ESCAPEMENT_X__;
  388. if( m_FontCaptionBoldVertX.GetSafeHandle() )
  389. m_FontCaptionBoldVertX.DeleteObject();
  390. if( g_PaintManager.m_bIsWinNT4 || g_PaintManager.m_bIsWin9x )
  391. __EXT_MFC_STRCPY( lf.lfFaceName, LF_FACESIZE, sVertFontFaceForNt4 );
  392. VERIFY( m_FontCaptionBoldVertX.CreateFontIndirect(&lf) );
  393. CFont * arrBarCaptFonts[7*2] =
  394. {
  395. &m_FontNormalBC, &m_FontCaption, // &m_FontNormal,
  396. &m_FontNormalVertBC, &m_FontCaptionVert, // &m_FontNormalVert,
  397. &m_FontNormalVertX, &m_FontCaptionVertX, // &m_FontNormalVertX,
  398. &m_FontNormalVertXBC, &m_FontCaptionVertX,
  399. &m_FontBoldBC, &m_FontCaptionBold, // &m_FontBold,
  400. &m_FontBoldVertBC, &m_FontCaptionBoldVert, // &m_FontBoldVert,
  401. &m_FontBoldVertXBC, &m_FontCaptionBoldVertX // &m_FontBoldVertX
  402. };
  403. int i = 0;
  404. for( i = 0;
  405. i < sizeof(arrBarCaptFonts)/sizeof(arrBarCaptFonts[0]);
  406. i += 2
  407. )
  408. {
  409. CFont * pFontSrc = arrBarCaptFonts[i+1];
  410. ASSERT( pFontSrc->GetSafeHandle() != NULL );
  411. CFont * pFontDst = arrBarCaptFonts[i];
  412. if( pFontDst->GetSafeHandle() != NULL )
  413. pFontDst->DeleteObject();
  414. VERIFY( pFontSrc->GetLogFont(&lf) );
  415. VERIFY( pFontDst->CreateFontIndirect(&lf) );
  416. }
  417. /// init colors
  418. COLORREF clrDefaultExtendColor = ::GetSysColor( COLOR_3DFACE );
  419. for( i = int(m_colors.GetSize());
  420. i <= __ExtMfc_MAX_SYS_COLOR_VAL;
  421. i++
  422. )
  423. {
  424. m_colors.Add( clrDefaultExtendColor );
  425. }
  426. HBRUSH hDefaultExtendBrush = ::GetSysColorBrush( COLOR_3DFACE );
  427. for( i = int(m_brushes.GetSize());
  428. i <= __ExtMfc_MAX_SYS_COLOR_VAL;
  429. i++
  430. )
  431. {
  432. m_brushes.Add( hDefaultExtendBrush );
  433. }
  434. //m_colors.clear();
  435. //m_brushes.clear();
  436. for( i = __ExtMfc_MIN_SYS_COLOR_VAL;
  437. i <= __ExtMfc_MAX_SYS_COLOR_VAL;
  438. i++
  439. )
  440. {
  441. m_colors[i] = ::GetSysColor( i );
  442. m_brushes[i] = ::GetSysColorBrush( i );
  443. }
  444. ASSERT( m_colors.GetSize() >= __ExtMfc_MAX_SYS_COLOR_VAL+1 );
  445. ASSERT( m_brushes.GetSize() >= __ExtMfc_MAX_SYS_COLOR_VAL+1 );
  446. #if (!defined __EXT_MFC_NO_RIBBON_BAR)
  447. Ribbon_SyncFonts();
  448. #endif // (!defined __EXT_MFC_NO_RIBBON_BAR)
  449. }
  450. // get any system color based brush
  451. HBRUSH CExtPaintManager::GetBrush(
  452. int nColorIndex
  453. )
  454. {
  455. ASSERT_VALID( this );
  456. int nBrushesCount = (int)m_brushes.GetSize();
  457. if(
  458. !(
  459. __ExtMfc_MIN_SYS_COLOR_VAL <= nColorIndex
  460. &&
  461. nColorIndex < nBrushesCount
  462. )
  463. )
  464. {
  465. ASSERT( FALSE );
  466. nColorIndex = COLOR_3DFACE;
  467. }
  468. HBRUSH hBrush = m_brushes[nColorIndex];
  469. return hBrush;
  470. }
  471. COLORREF CExtPaintManager::GetColor(
  472. int nColorIndex,
  473. CObject * pHelperSrc, // = NULL
  474. LPARAM lParam // = 0L
  475. )
  476. {
  477. ASSERT_VALID( this );
  478. pHelperSrc;
  479. lParam;
  480. if( nColorIndex >= __ExtMfc_COLOR_MAP_BASE )
  481. {
  482. int nColorIndex2 = 0;
  483. if( m_mapColorTranslate.Lookup(
  484. nColorIndex,
  485. nColorIndex2
  486. )
  487. )
  488. nColorIndex = nColorIndex2;
  489. else
  490. {
  491. ASSERT( FALSE );
  492. nColorIndex = COLOR_3DFACE;
  493. }
  494. }
  495. int nColorCount = (int)m_colors.GetSize();
  496. if(
  497. !(
  498. __ExtMfc_MIN_SYS_COLOR_VAL <= nColorIndex
  499. &&
  500. nColorIndex < nColorCount // <= __ExtMfc_MAX_SYS_COLOR_VAL
  501. )
  502. )
  503. {
  504. ASSERT( FALSE );
  505. nColorIndex = COLOR_3DFACE;
  506. }
  507. COLORREF clr = m_colors[nColorIndex];
  508. return clr;
  509. }
  510. COLORREF CExtPaintManager::GetColor(
  511. int nColorIndex,
  512. CObject * pHelperSrc, // = NULL
  513. LPARAM lParam // = 0L
  514. ) const
  515. {
  516. ASSERT_VALID( this );
  517. return
  518. ( const_cast < CExtPaintManager * > ( this ) )
  519. -> GetColor( nColorIndex, pHelperSrc, lParam );
  520. };
  521. int CExtPaintManager::InstallColor(
  522. COLORREF clr,
  523. int nColorIndex // = -1
  524. )
  525. {
  526. ASSERT_VALID( this );
  527. int nColorCount = (int)m_colors.GetSize();
  528. if( nColorIndex < 0 || nColorIndex >= nColorCount )
  529. {
  530. nColorIndex = (int)m_colors.Add( clr );
  531. }
  532. else
  533. m_colors[nColorIndex] = clr;
  534. return nColorIndex;
  535. }
  536. void CExtPaintManager::InitTranslatedColors()
  537. {
  538. ASSERT_VALID( this );
  539. m_mapColorTranslate.RemoveAll();
  540. m_mapColorTranslate[CLR_3DFACE_OUT] = COLOR_3DFACE;
  541. m_mapColorTranslate[CLR_3DFACE_IN] = COLOR_3DFACE;
  542. m_mapColorTranslate[CLR_3DFACE_DISABLED] = COLOR_3DFACE;
  543. m_mapColorTranslate[CLR_3DLIGHT_OUT] = COLOR_3DLIGHT;
  544. m_mapColorTranslate[CLR_3DLIGHT_IN] = COLOR_3DLIGHT;
  545. m_mapColorTranslate[CLR_3DLIGHT_DISABLED] = COLOR_3DLIGHT;
  546. m_mapColorTranslate[CLR_3DHILIGHT_OUT] = COLOR_3DHILIGHT;
  547. m_mapColorTranslate[CLR_3DHILIGHT_IN] = COLOR_3DHILIGHT;
  548. m_mapColorTranslate[CLR_3DHILIGHT_DISABLED] = COLOR_3DHILIGHT;
  549. m_mapColorTranslate[CLR_3DSHADOW_OUT] = COLOR_3DSHADOW;
  550. m_mapColorTranslate[CLR_3DSHADOW_IN] = COLOR_3DSHADOW;
  551. m_mapColorTranslate[CLR_3DSHADOW_DISABLED] = COLOR_3DSHADOW;
  552. m_mapColorTranslate[CLR_3DDKSHADOW_OUT] = COLOR_3DDKSHADOW;
  553. m_mapColorTranslate[CLR_3DDKSHADOW_IN] = COLOR_3DDKSHADOW;
  554. m_mapColorTranslate[CLR_3DDKSHADOW_DISABLED] = COLOR_3DDKSHADOW;
  555. m_mapColorTranslate[CLR_TEXT_OUT] = COLOR_WINDOWTEXT;
  556. m_mapColorTranslate[CLR_TEXT_IN] = COLOR_WINDOWTEXT;
  557. m_mapColorTranslate[CLR_TEXT_DISABLED] = COLOR_GRAYTEXT;
  558. // Menu text colors
  559.   m_mapColorTranslate[CLR_MENUTEXT_OUT] = COLOR_WINDOWTEXT;
  560. m_mapColorTranslate[CLR_MENUTEXT_IN] = COLOR_HIGHLIGHTTEXT;
  561. m_mapColorTranslate[CLR_MENUTEXT_DISABLED] = COLOR_GRAYTEXT;
  562. // Task Pane Colors
  563. m_mapColorTranslate[CLR_TASK_PANE_BK_TOP] = COLOR_WINDOW;
  564. m_mapColorTranslate[CLR_TASK_PANE_BK_BOTTOM] = COLOR_WINDOW;
  565. m_mapColorTranslate[CLR_TASK_PANE_GROUP_CAPTION_TEXT_NORMAL] = 
  566. COLOR_WINDOWTEXT;
  567. m_mapColorTranslate[CLR_TASK_PANE_GROUP_CAPTION_TEXT_NORMAL_HOVERED] = 
  568. COLOR_WINDOWTEXT;
  569. m_mapColorTranslate[CLR_TASK_PANE_GROUP_CAPTION_TEXT_HIGHLIGHTED] = 
  570. COLOR_HIGHLIGHTTEXT;
  571. m_mapColorTranslate[CLR_TASK_PANE_GROUP_CAPTION_TEXT_HIGHLIGHTED_HOVERED] = 
  572. COLOR_HIGHLIGHTTEXT;
  573. m_mapColorTranslate[CLR_TASK_PANE_GROUP_CAPTION_BK_LEFT_NORMAL] = 
  574. COLOR_3DFACE;
  575. m_mapColorTranslate[CLR_TASK_PANE_GROUP_CAPTION_BK_LEFT_HIGHLIGHTED] = 
  576. COLOR_HIGHLIGHT;
  577. m_mapColorTranslate[CLR_TASK_PANE_GROUP_CAPTION_BK_RIGHT_NORMAL] = 
  578. COLOR_3DFACE;
  579. m_mapColorTranslate[CLR_TASK_PANE_GROUP_CAPTION_BK_RIGHT_HIGHLIGHTED] = 
  580. COLOR_HIGHLIGHT;
  581. // Page Navigator colors
  582. m_mapColorTranslate[CLR_PN_CAPTION_TEXT] = COLOR_WINDOW;
  583. // Group Box colors
  584. m_mapColorTranslate[CLR_GROUP_BOX_FRAME] = COLOR_3DSHADOW;
  585. // Resizable Bar non client area color
  586. m_mapColorTranslate[CLR_WRB_FRAME] = COLOR_3DSHADOW;
  587. }
  588. void CExtPaintManager::InitHelperBrushes()
  589. {
  590. ASSERT_VALID( this );
  591. if( m_brushLightDefault.GetSafeHandle() != NULL )
  592. m_brushLightDefault.DeleteObject();
  593. if( m_brushLightSystem.GetSafeHandle() != NULL )
  594. m_brushLightSystem.DeleteObject();
  595. if( m_brushDarkDefault.GetSafeHandle() != NULL )
  596. m_brushDarkDefault.DeleteObject();
  597. if( m_brushDarkSystem.GetSafeHandle() != NULL )
  598. m_brushDarkSystem.DeleteObject();
  599. if( m_brushLighterDefault.GetSafeHandle() != NULL )
  600. m_brushLighterDefault.DeleteObject();
  601. if( m_brushLighterSystem.GetSafeHandle() != NULL )
  602. m_brushLighterSystem.DeleteObject();
  603. if( m_brushDarkerDefault.GetSafeHandle() != NULL )
  604. m_brushDarkerDefault.DeleteObject();
  605. if( m_brushDarkerSystem.GetSafeHandle() != NULL )
  606. m_brushDarkerSystem.DeleteObject();
  607. if( m_brushLightestDefault.GetSafeHandle() != NULL )
  608. m_brushLightestDefault.DeleteObject();
  609. if( m_brushLightestSystem.GetSafeHandle() != NULL )
  610. m_brushLightestSystem.DeleteObject();
  611. if( m_brushDarkestDefault.GetSafeHandle() != NULL )
  612. m_brushDarkestDefault.DeleteObject();
  613. if( m_brushDarkestSystem.GetSafeHandle() != NULL )
  614. m_brushDarkestSystem.DeleteObject();
  615. int nBitsPerPixel = stat_GetBPP();
  616. if( nBitsPerPixel > 8 )
  617. {
  618. COLORREF clrDarker = GetColor( COLOR_3DFACE, this );
  619. COLORREF clrLighter = GetColor( COLOR_3DHILIGHT, this );
  620. COLORREF clrMixed = RGB (
  621. GetRValue(clrDarker) + ((GetRValue(clrLighter) -
  622. GetRValue(clrDarker)) / 2),
  623. GetGValue(clrDarker) + ((GetGValue(clrLighter) -
  624. GetGValue(clrDarker)) / 2),
  625. GetBValue(clrDarker) + ((GetBValue(clrLighter) -
  626. GetBValue(clrDarker)) / 2)
  627. );
  628. m_brushLightDefault.CreateSolidBrush( clrMixed );
  629. clrMixed = RGB (
  630. GetRValue(clrDarker) +
  631. ::MulDiv((GetRValue(clrLighter) -
  632. GetRValue(clrDarker)),3,5),
  633. GetGValue(clrDarker) +
  634. ::MulDiv((GetGValue(clrLighter) -
  635. GetGValue(clrDarker)),3,5),
  636. GetBValue(clrDarker) +
  637. ::MulDiv((GetBValue(clrLighter) -
  638. GetBValue(clrDarker)),3,5)
  639. );
  640. m_brushLighterDefault.CreateSolidBrush( clrMixed );
  641. clrMixed = RGB (
  642. GetRValue(clrDarker) +
  643. ::MulDiv((GetRValue(clrLighter) -
  644. GetRValue(clrDarker)),4,5),
  645. GetGValue(clrDarker) +
  646. ::MulDiv((GetGValue(clrLighter) -
  647. GetGValue(clrDarker)),4,5),
  648. GetBValue(clrDarker) +
  649. ::MulDiv((GetBValue(clrLighter) -
  650. GetBValue(clrDarker)),4,5)
  651. );
  652. m_brushLightestDefault.CreateSolidBrush( clrMixed );
  653. clrLighter = clrDarker;
  654. clrDarker = GetColor( COLOR_3DSHADOW, this );
  655. clrMixed = RGB (
  656. GetRValue(clrDarker) + ((GetRValue(clrLighter) -
  657. GetRValue(clrDarker)) / 2 ),
  658. GetGValue(clrDarker) + ((GetGValue(clrLighter) -
  659. GetGValue(clrDarker)) / 2),
  660. GetBValue(clrDarker) + ((GetBValue(clrLighter) -
  661. GetBValue(clrDarker)) / 2)
  662. );
  663. m_brushDarkDefault.CreateSolidBrush( clrMixed );
  664. clrMixed = RGB (
  665. GetRValue(clrDarker) +
  666. ::MulDiv((GetRValue(clrLighter) -
  667. GetRValue(clrDarker)),2,5),
  668. GetGValue(clrDarker) +
  669. ::MulDiv((GetGValue(clrLighter) -
  670. GetGValue(clrDarker)),2,5),
  671. GetBValue(clrDarker) +
  672. ::MulDiv((GetBValue(clrLighter) -
  673. GetBValue(clrDarker)),2,5)
  674. );
  675. m_brushDarkerDefault.CreateSolidBrush( clrMixed );
  676. clrMixed = RGB (
  677. GetRValue(clrDarker) +
  678. ::MulDiv((GetRValue(clrLighter) -
  679. GetRValue(clrDarker)),1,5),
  680. GetGValue(clrDarker) +
  681. ::MulDiv((GetGValue(clrLighter) -
  682. GetGValue(clrDarker)),1,5),
  683. GetBValue(clrDarker) +
  684. ::MulDiv((GetBValue(clrLighter) -
  685. GetBValue(clrDarker)),1,5)
  686. );
  687. m_brushDarkestDefault.CreateSolidBrush( clrMixed );
  688. clrDarker = ::GetSysColor( COLOR_3DFACE );
  689. clrLighter = ::GetSysColor( COLOR_3DHILIGHT );
  690. clrMixed = RGB (
  691. GetRValue(clrDarker) + ((GetRValue(clrLighter) -
  692. GetRValue(clrDarker)) / 2),
  693. GetGValue(clrDarker) + ((GetGValue(clrLighter) -
  694. GetGValue(clrDarker)) / 2),
  695. GetBValue(clrDarker) + ((GetBValue(clrLighter) -
  696. GetBValue(clrDarker)) / 2)
  697. );
  698. m_brushLightSystem.CreateSolidBrush( clrMixed );
  699. clrMixed = RGB (
  700. GetRValue(clrDarker) +
  701. ::MulDiv((GetRValue(clrLighter) -
  702. GetRValue(clrDarker)),3,5),
  703. GetGValue(clrDarker) +
  704. ::MulDiv((GetGValue(clrLighter) -
  705. GetGValue(clrDarker)),3,5),
  706. GetBValue(clrDarker) +
  707. ::MulDiv((GetBValue(clrLighter) -
  708. GetBValue(clrDarker)),3,5)
  709. );
  710. m_brushLighterSystem.CreateSolidBrush( clrMixed );
  711. clrMixed = RGB (
  712. GetRValue(clrDarker) +
  713. ::MulDiv((GetRValue(clrLighter) -
  714. GetRValue(clrDarker)),4,5),
  715. GetGValue(clrDarker) +
  716. ::MulDiv((GetGValue(clrLighter) -
  717. GetGValue(clrDarker)),4,5),
  718. GetBValue(clrDarker) +
  719. ::MulDiv((GetBValue(clrLighter) -
  720. GetBValue(clrDarker)),4,5)
  721. );
  722. m_brushLightestSystem.CreateSolidBrush( clrMixed );
  723. clrLighter = clrDarker;
  724. clrDarker = ::GetSysColor( COLOR_3DSHADOW );
  725. clrMixed = RGB (
  726. GetRValue(clrDarker) + ((GetRValue(clrLighter) -
  727. GetRValue(clrDarker)) / 2),
  728. GetGValue(clrDarker) + ((GetGValue(clrLighter) -
  729. GetGValue(clrDarker)) / 2),
  730. GetBValue(clrDarker) + ((GetBValue(clrLighter) -
  731. GetBValue(clrDarker)) / 2)
  732. );
  733. m_brushDarkSystem.CreateSolidBrush( clrMixed );
  734. clrMixed = RGB (
  735. GetRValue(clrDarker) +
  736. ::MulDiv((GetRValue(clrLighter) -
  737. GetRValue(clrDarker)),2,5),
  738. GetGValue(clrDarker) +
  739. ::MulDiv((GetGValue(clrLighter) -
  740. GetGValue(clrDarker)),2,5),
  741. GetBValue(clrDarker) +
  742. ::MulDiv((GetBValue(clrLighter) -
  743. GetBValue(clrDarker)),2,5)
  744. );
  745. m_brushDarkerSystem.CreateSolidBrush( clrMixed );
  746. clrMixed = RGB (
  747. GetRValue(clrDarker) +
  748. ::MulDiv((GetRValue(clrLighter) -
  749. GetRValue(clrDarker)),1,5),
  750. GetGValue(clrDarker) +
  751. ::MulDiv((GetGValue(clrLighter) -
  752. GetGValue(clrDarker)),1,5),
  753. GetBValue(clrDarker) +
  754. ::MulDiv((GetBValue(clrLighter) -
  755. GetBValue(clrDarker)),1,5)
  756. );
  757. m_brushDarkestSystem.CreateSolidBrush( clrMixed );
  758. } // if( nBitsPerPixel > 8 )
  759. else
  760. {
  761. CBitmap bmp;
  762. COLORREF clrDarker = GetColor( COLOR_3DFACE, this );
  763. COLORREF clrLighter = GetColor( COLOR_3DHILIGHT, this );
  764. HBITMAP hBmp = stat_GenLBDIB( clrDarker, clrLighter );
  765. ASSERT( hBmp != NULL );
  766. bmp.Attach( hBmp );
  767. m_brushLightDefault.CreatePatternBrush( &bmp );
  768. bmp.DeleteObject();
  769. hBmp = stat_GenLBDIB( clrDarker, clrLighter, 1, 1, 1, 1, clrLighter );
  770. ASSERT( hBmp != NULL );
  771. bmp.Attach( hBmp );
  772. m_brushLighterDefault.CreatePatternBrush( &bmp );
  773. bmp.DeleteObject();
  774. hBmp = stat_GenLBDIB( clrDarker, clrLighter, 1, 1, 2, 2, clrLighter );
  775. ASSERT( hBmp != NULL );
  776. bmp.Attach( hBmp );
  777. m_brushLightestDefault.CreatePatternBrush( &bmp );
  778. bmp.DeleteObject();
  779. clrLighter = clrDarker;
  780. clrDarker = GetColor( COLOR_3DSHADOW, this );
  781. hBmp = stat_GenLBDIB( clrDarker, clrLighter );
  782. ASSERT( hBmp != NULL );
  783. bmp.Attach( hBmp );
  784. m_brushDarkDefault.CreatePatternBrush( &bmp );
  785. bmp.DeleteObject();
  786. hBmp = stat_GenLBDIB( clrDarker, clrLighter, 1, 1, 1, 1 );
  787. ASSERT( hBmp != NULL );
  788. bmp.Attach( hBmp );
  789. m_brushDarkerDefault.CreatePatternBrush( &bmp );
  790. bmp.DeleteObject();
  791. clrLighter = clrDarker;
  792. clrDarker = GetColor( COLOR_3DDKSHADOW, this );
  793. hBmp = stat_GenLBDIB( clrDarker, clrLighter );
  794. ASSERT( hBmp != NULL );
  795. bmp.Attach( hBmp );
  796. m_brushDarkestDefault.CreatePatternBrush( &bmp );
  797. bmp.DeleteObject();
  798. clrDarker = ::GetSysColor( COLOR_3DFACE );
  799. clrLighter = ::GetSysColor( COLOR_3DHILIGHT );
  800. hBmp = stat_GenLBDIB( clrDarker, clrLighter );
  801. ASSERT( hBmp != NULL );
  802. bmp.Attach( hBmp );
  803. m_brushLightSystem.CreatePatternBrush( &bmp );
  804. bmp.DeleteObject();
  805. hBmp = stat_GenLBDIB( clrDarker, clrLighter, 1, 1, 1, 1, clrLighter );
  806. ASSERT( hBmp != NULL );
  807. bmp.Attach( hBmp );
  808. m_brushLighterSystem.CreatePatternBrush( &bmp );
  809. bmp.DeleteObject();
  810. hBmp = stat_GenLBDIB( clrDarker, clrLighter, 1, 1, 2, 2, clrLighter );
  811. ASSERT( hBmp != NULL );
  812. bmp.Attach( hBmp );
  813. m_brushLightestSystem.CreatePatternBrush( &bmp );
  814. bmp.DeleteObject();
  815. clrLighter = clrDarker;
  816. clrDarker = ::GetSysColor( COLOR_3DSHADOW );
  817. hBmp = stat_GenLBDIB( clrDarker, clrLighter );
  818. ASSERT( hBmp != NULL );
  819. bmp.Attach( hBmp );
  820. m_brushDarkSystem.CreatePatternBrush( &bmp );
  821. bmp.DeleteObject();
  822. hBmp = stat_GenLBDIB( clrDarker, clrLighter, 1, 1, 1, 1 );
  823. ASSERT( hBmp != NULL );
  824. bmp.Attach( hBmp );
  825. m_brushDarkerSystem.CreatePatternBrush( &bmp );
  826. bmp.DeleteObject();
  827. clrLighter = clrDarker;
  828. clrDarker = ::GetSysColor( COLOR_3DDKSHADOW );
  829. hBmp = stat_GenLBDIB( clrDarker, clrLighter );
  830. ASSERT( hBmp != NULL );
  831. bmp.Attach( hBmp );
  832. m_brushDarkestSystem.CreatePatternBrush( &bmp );
  833. bmp.DeleteObject();
  834. } // else from if( nBitsPerPixel > 8 )
  835. }
  836. static const UINT stat_pixels_dock_btn_empty[] =
  837. {
  838. 0,0,0,0,0,0,0,0,0,
  839. 0,0,0,0,0,0,0,0,0,
  840. 0,0,0,0,0,0,0,0,0,
  841. 0,0,0,0,0,0,0,0,0,
  842. 0,0,0,0,0,0,0,0,0,
  843. 0,0,0,0,0,0,0,0,0,
  844. 0,0,0,0,0,0,0,0,0,
  845. 0,0,0,0,0,0,0,0,0,
  846. 0,0,0,0,0,0,0,0,0,
  847. };
  848. static const UINT stat_pixels_dock_btn_close[] =
  849. {
  850. 0,0,0,0,0,0,0,0,0,
  851. 0,1,1,0,0,0,0,1,1,
  852. 0,0,1,1,0,0,1,1,0,
  853. 0,0,0,1,1,1,1,0,0,
  854. 0,0,0,0,1,1,0,0,0,
  855. 0,0,0,1,1,1,1,0,0,
  856. 0,0,1,1,0,0,1,1,0,
  857. 0,1,1,0,0,0,0,1,1,
  858. 0,0,0,0,0,0,0,0,0,
  859. };
  860. static const UINT stat_pixels_dock_btn_close_dc2k[] =
  861. {
  862. 0,0,0,0,0,0,0,0,0,
  863. 0,1,1,0,0,0,1,1,0,
  864. 0,0,1,1,0,1,1,0,0,
  865. 0,0,0,1,1,1,0,0,0,
  866. 0,0,0,1,1,1,0,0,0,
  867. 0,0,1,1,0,1,1,0,0,
  868. 0,1,1,0,0,0,1,1,0,
  869. 0,0,0,0,0,0,0,0,0,
  870. 0,0,0,0,0,0,0,0,0,
  871. };
  872. static const UINT stat_pixels_dock_btn_thin_close[] =
  873. {
  874. 0,0,0,0,0,0,0,0,0,
  875. 0,1,0,0,0,0,0,1,0,
  876. 0,0,1,0,0,0,1,0,0,
  877. 0,0,0,1,0,1,0,0,0,
  878. 0,0,0,0,1,0,0,0,0,
  879. 0,0,0,1,0,1,0,0,0,
  880. 0,0,1,0,0,0,1,0,0,
  881. 0,1,0,0,0,0,0,1,0,
  882. 0,0,0,0,0,0,0,0,0,
  883. };
  884. static const UINT stat_pixels_dock_btn_arrow_up[] =
  885. {
  886. 0,0,0,0,0,0,0,0,0,
  887. 0,0,0,0,0,0,0,0,0,
  888. 0,0,0,0,1,0,0,0,0,
  889. 0,0,0,1,1,1,0,0,0,
  890. 0,0,1,1,1,1,1,0,0,
  891. 0,1,1,1,1,1,1,1,0,
  892. 0,0,0,0,0,0,0,0,0,
  893. 0,0,0,0,0,0,0,0,0,
  894. 0,0,0,0,0,0,0,0,0,
  895. };
  896. static const UINT stat_pixels_dock_btn_hollow_up[] =
  897. {
  898. 0,0,0,0,0,0,0,0,0,
  899. 0,0,0,0,0,0,0,0,0,
  900. 0,0,0,0,1,0,0,0,0,
  901. 0,0,0,1,0,1,0,0,0,
  902. 0,0,1,0,0,0,1,0,0,
  903. 0,1,0,0,0,0,0,1,0,
  904. 1,1,1,1,1,1,1,1,1,
  905. 0,0,0,0,0,0,0,0,0,
  906. 0,0,0,0,0,0,0,0,0,
  907. };
  908. static const UINT stat_pixels_dock_btn_arrow_up_l[] =
  909. {
  910. 0,0,0,0,1,0,0,0,0,
  911. 0,0,0,1,1,1,0,0,0,
  912. 0,0,1,1,1,1,1,0,0,
  913. 0,1,1,1,1,1,1,1,0,
  914. 1,1,1,1,1,1,1,1,1,
  915. 0,0,1,1,1,1,1,0,0,
  916. 0,0,1,1,1,1,1,0,0,
  917. 0,0,1,1,1,1,1,0,0,
  918. 0,0,0,0,0,0,0,0,0,
  919. };
  920. static const UINT stat_pixels_dock_wnd_minimize[] =
  921. {
  922. 0,0,0,0,0,0,0,0,0,
  923. 0,0,0,0,0,0,0,0,0,
  924. 0,0,0,0,0,0,0,0,0,
  925. 0,0,0,0,0,0,0,0,0,
  926. 0,0,0,0,0,0,0,0,0,
  927. 0,0,0,0,0,0,0,0,0,
  928. 0,1,1,1,1,1,1,1,0,
  929. 0,1,1,1,1,1,1,1,0,
  930. 0,0,0,0,0,0,0,0,0,
  931. };
  932. static const UINT stat_pixels_dock_wnd_restore[] =
  933. {
  934. 0,0,1,1,1,1,1,1,0,
  935. 0,0,1,0,0,0,0,1,0,
  936. 1,1,1,1,1,1,0,1,0,
  937. 1,1,1,1,1,1,0,1,0,
  938. 1,0,0,0,0,1,1,1,0,
  939. 1,0,0,0,0,1,0,0,0,
  940. 1,0,0,0,0,1,0,0,0,
  941. 1,1,1,1,1,1,0,0,0,
  942. 0,0,0,0,0,0,0,0,0,
  943. };
  944. static const UINT stat_pixels_dock_wnd_maximize[] =
  945. {
  946. 1,1,1,1,1,1,1,1,1,
  947. 1,1,1,1,1,1,1,1,1,
  948. 1,0,0,0,0,0,0,0,1,
  949. 1,0,0,0,0,0,0,0,1,
  950. 1,0,0,0,0,0,0,0,1,
  951. 1,0,0,0,0,0,0,0,1,
  952. 1,0,0,0,0,0,0,0,1,
  953. 1,0,0,0,0,0,0,0,1,
  954. 1,1,1,1,1,1,1,1,1,
  955. };
  956. static const UINT stat_pixels_dock_wnd_keep[] =
  957. {
  958. 0,0,1,1,1,1,1,0,0,
  959. 0,0,1,0,0,1,1,0,0,
  960. 0,0,1,0,0,1,1,0,0,
  961. 0,0,1,0,0,1,1,0,0,
  962. 0,0,1,0,0,1,1,0,0,
  963. 0,1,1,1,1,1,1,1,0,
  964. 0,0,0,0,1,0,0,0,0,
  965. 0,0,0,0,1,0,0,0,0,
  966. 0,0,0,0,0,0,0,0,0,
  967. };
  968. static const UINT stat_pixels_dock_btn_contexthelp[] =
  969. {
  970. 0,0,0,1,1,1,1,0,0,
  971. 0,0,1,1,0,0,1,1,0,
  972. 0,0,1,1,0,0,1,1,0,
  973. 0,0,0,0,0,1,1,0,0,
  974. 0,0,0,0,1,1,0,0,0,
  975. 0,0,0,0,1,1,0,0,0,
  976. 0,0,0,0,0,0,0,0,0,
  977. 0,0,0,0,1,1,0,0,0,
  978. 0,0,0,0,1,1,0,0,0,
  979. };
  980. static const UINT stat_pixels_hollow_plus[] =
  981. {
  982. 0,0,0,0,0,0,0,0,0,
  983. 0,0,0,0,0,0,0,0,0,
  984. 0,0,0,0,1,0,0,0,0,
  985. 0,0,0,0,1,0,0,0,0,
  986. 0,0,1,1,1,1,1,0,0,
  987. 0,0,0,0,1,0,0,0,0,
  988. 0,0,0,0,1,0,0,0,0,
  989. 0,0,0,0,0,0,0,0,0,
  990. 0,0,0,0,0,0,0,0,0,
  991. };
  992. static const UINT stat_pixels_hollow_minus[] =
  993. {
  994. 0,0,0,0,0,0,0,0,0,
  995. 0,0,0,0,0,0,0,0,0,
  996. 0,0,0,0,0,0,0,0,0,
  997. 0,0,0,0,0,0,0,0,0,
  998. 0,0,1,1,1,1,1,0,0,
  999. 0,0,0,0,0,0,0,0,0,
  1000. 0,0,0,0,0,0,0,0,0,
  1001. 0,0,0,0,0,0,0,0,0,
  1002. 0,0,0,0,0,0,0,0,0,
  1003. };
  1004. static const UINT stat_pixels_tree_plus[] =
  1005. {
  1006. 1,1,1,1,1,1,1,1,1,
  1007. 1,0,0,0,0,0,0,0,1,
  1008. 1,0,0,0,1,0,0,0,1,
  1009. 1,0,0,0,1,0,0,0,1,
  1010. 1,0,1,1,1,1,1,0,1,
  1011. 1,0,0,0,1,0,0,0,1,
  1012. 1,0,0,0,1,0,0,0,1,
  1013. 1,0,0,0,0,0,0,0,1,
  1014. 1,1,1,1,1,1,1,1,1,
  1015. };
  1016. static const UINT stat_pixels_tree_minus[] =
  1017. {
  1018. 1,1,1,1,1,1,1,1,1,
  1019. 1,0,0,0,0,0,0,0,1,
  1020. 1,0,0,0,0,0,0,0,1,
  1021. 1,0,0,0,0,0,0,0,1,
  1022. 1,0,1,1,1,1,1,0,1,
  1023. 1,0,0,0,0,0,0,0,1,
  1024. 1,0,0,0,0,0,0,0,1,
  1025. 1,0,0,0,0,0,0,0,1,
  1026. 1,1,1,1,1,1,1,1,1,
  1027. };
  1028. static const UINT stat_pixels_tree_plus_filled[] =
  1029. {
  1030. 1,1,1,1,1,1,1,1,1,
  1031. 1,2,2,2,2,2,2,2,1,
  1032. 1,2,2,2,1,2,2,2,1,
  1033. 1,2,2,2,1,2,2,2,1,
  1034. 1,2,1,1,1,1,1,2,1,
  1035. 1,2,2,2,1,2,2,2,1,
  1036. 1,2,2,2,1,2,2,2,1,
  1037. 1,2,2,2,2,2,2,2,1,
  1038. 1,1,1,1,1,1,1,1,1,
  1039. };
  1040. static const UINT stat_pixels_tree_minus_filled[] =
  1041. {
  1042. 1,1,1,1,1,1,1,1,1,
  1043. 1,2,2,2,2,2,2,2,1,
  1044. 1,2,2,2,2,2,2,2,1,
  1045. 1,2,2,2,2,2,2,2,1,
  1046. 1,2,1,1,1,1,1,2,1,
  1047. 1,2,2,2,2,2,2,2,1,
  1048. 1,2,2,2,2,2,2,2,1,
  1049. 1,2,2,2,2,2,2,2,1,
  1050. 1,1,1,1,1,1,1,1,1,
  1051. };
  1052. static const UINT stat_pixels_circle_plus[] =
  1053. {
  1054. 0,0,1,1,1,1,1,0,0,
  1055. 0,1,0,0,0,0,0,1,0,
  1056. 1,0,0,0,1,0,0,0,1,
  1057. 1,0,0,0,1,0,0,0,1,
  1058. 1,0,1,1,1,1,1,0,1,
  1059. 1,0,0,0,1,0,0,0,1,
  1060. 1,0,0,0,1,0,0,0,1,
  1061. 0,1,0,0,0,0,0,1,0,
  1062. 0,0,1,1,1,1,1,0,0,
  1063. };
  1064. static const UINT stat_pixels_circle_minus[] =
  1065. {
  1066. 0,0,1,1,1,1,1,0,0,
  1067. 0,1,0,0,0,0,0,1,0,
  1068. 1,0,0,0,0,0,0,0,1,
  1069. 1,0,0,0,0,0,0,0,1,
  1070. 1,0,1,1,1,1,1,0,1,
  1071. 1,0,0,0,0,0,0,0,1,
  1072. 1,0,0,0,0,0,0,0,1,
  1073. 0,1,0,0,0,0,0,1,0,
  1074. 0,0,1,1,1,1,1,0,0,
  1075. };
  1076. static const UINT stat_pixels_arrow_pt_up[] =
  1077. {
  1078. 0,0,0,0,0,1,0,0,0,0,0,
  1079. 0,0,0,0,1,1,1,0,0,0,0,
  1080. 0,0,0,1,1,1,1,1,0,0,0,
  1081. 0,0,1,1,1,1,1,1,1,0,0,
  1082. 0,1,1,1,1,1,1,1,1,1,0,
  1083. 1,1,1,1,1,1,1,1,1,1,1,
  1084. 0,0,0,1,1,1,1,1,0,0,0,
  1085. 0,0,0,1,1,1,1,1,0,0,0,
  1086. 0,0,0,1,1,1,1,1,0,0,0,
  1087. 0,0,0,1,1,1,1,1,0,0,0,
  1088. 0,0,0,0,0,0,0,0,0,0,0,
  1089. };
  1090. static const UINT stat_pixels_arrow_pt_lt[] =
  1091. {
  1092. 1,1,1,1,1,1,1,1,0,0,0,
  1093. 1,1,1,1,1,1,1,0,0,0,0,
  1094. 1,1,1,1,1,1,0,0,0,0,0,
  1095. 1,1,1,1,1,1,0,0,0,0,0,
  1096. 1,1,1,1,1,1,1,0,0,0,0,
  1097. 1,1,1,1,1,1,1,1,0,0,0,
  1098. 1,1,0,0,1,1,1,1,1,0,0,
  1099. 1,0,0,0,0,1,1,1,0,0,0,
  1100. 0,0,0,0,0,0,1,0,0,0,0,
  1101. 0,0,0,0,0,0,0,0,0,0,0,
  1102. 0,0,0,0,0,0,0,0,0,0,0,
  1103. };
  1104. static const UINT stat_pixels_arrow_small_up[] =
  1105. {
  1106. 0,0,1,0,0,
  1107. 0,1,1,1,0,
  1108. 1,1,1,1,1,
  1109. };
  1110. static const UINT stat_pixels_ellipsis[] =
  1111. {
  1112. 0,0,0,0,0,0,0,0,0,
  1113. 0,1,0,0,1,0,0,1,0,
  1114. 0,0,0,0,0,0,0,0,0,
  1115. };
  1116. static CExtPaintManager::glyph_t stat_glyph_dock_empty(
  1117. 9,9,2,
  1118. stat_pixels_dock_btn_empty
  1119. );
  1120. static CExtPaintManager::glyph_t stat_glyph_dock_close(
  1121. 9,9,2,
  1122. stat_pixels_dock_btn_close
  1123. );
  1124. static CExtPaintManager::glyph_t stat_glyph_dock_close_dc2k(
  1125. 9,9,2,
  1126. stat_pixels_dock_btn_close_dc2k
  1127. );
  1128. static CExtPaintManager::glyph_t stat_glyph_dock_xp_thin_close(
  1129. 9,9,2,
  1130. stat_pixels_dock_btn_thin_close
  1131. );
  1132. static CExtPaintManager::glyph_t stat_glyph_dock_arrow_up(
  1133. 9,9,2,
  1134. stat_pixels_dock_btn_arrow_up
  1135. );
  1136. static CExtPaintManager::glyph_t stat_glyph_dock_arrow_down(
  1137. stat_glyph_dock_arrow_up,
  1138. 180
  1139. );
  1140. static CExtPaintManager::glyph_t stat_glyph_dock_arrow_left(
  1141. stat_glyph_dock_arrow_up,
  1142. 270
  1143. );
  1144. static CExtPaintManager::glyph_t stat_glyph_dock_arrow_right(
  1145. stat_glyph_dock_arrow_left,
  1146. 180
  1147. );
  1148. static CExtPaintManager::glyph_t stat_glyph_dock_wnd_minimize(
  1149. 9,9,2,
  1150. stat_pixels_dock_wnd_minimize
  1151. );
  1152. static CExtPaintManager::glyph_t stat_glyph_dock_wnd_restore(
  1153. 9,9,2,
  1154. stat_pixels_dock_wnd_restore
  1155. );
  1156. static CExtPaintManager::glyph_t stat_glyph_dock_wnd_maximize(
  1157. 9,9,2,
  1158. stat_pixels_dock_wnd_maximize
  1159. );
  1160. static CExtPaintManager::glyph_t stat_glyph_dock_wnd_keep(
  1161. 9,9,2,
  1162. stat_pixels_dock_wnd_keep
  1163. );
  1164. static CExtPaintManager::glyph_t stat_glyph_dock_wnd_unkeep(
  1165. stat_glyph_dock_wnd_keep,
  1166. 90
  1167. );
  1168. static CExtPaintManager::glyph_t stat_glyph_dock_wnd_contexthelp(
  1169. 9,9,2,
  1170. stat_pixels_dock_btn_contexthelp
  1171. );
  1172. static CExtPaintManager::glyph_t stat_glyph_dock_arrow_up_l(
  1173. 9,9,2,
  1174. stat_pixels_dock_btn_arrow_up_l
  1175. );
  1176. static CExtPaintManager::glyph_t stat_glyph_dock_arrow_down_l(
  1177. stat_glyph_dock_arrow_up_l,
  1178. 180
  1179. );
  1180. static CExtPaintManager::glyph_t stat_glyph_dock_arrow_left_l(
  1181. stat_glyph_dock_arrow_up_l,
  1182. 270
  1183. );
  1184. static CExtPaintManager::glyph_t stat_glyph_dock_arrow_right_l(
  1185. stat_glyph_dock_arrow_left_l,
  1186. 180
  1187. );
  1188. static CExtPaintManager::glyph_t stat_glyph_dock_hollow_up(
  1189. 9,9,2,
  1190. stat_pixels_dock_btn_hollow_up
  1191. );
  1192. static CExtPaintManager::glyph_t stat_glyph_dock_hollow_down(
  1193. stat_glyph_dock_hollow_up,
  1194. 180
  1195. );
  1196. static CExtPaintManager::glyph_t stat_glyph_dock_hollow_left(
  1197. stat_glyph_dock_hollow_up,
  1198. 270
  1199. );
  1200. static CExtPaintManager::glyph_t stat_glyph_dock_hollow_right(
  1201. stat_glyph_dock_hollow_left,
  1202. 180
  1203. );
  1204. static CExtPaintManager::glyph_t stat_glyph_hollow_plus(
  1205. 9,9,2,
  1206. stat_pixels_hollow_plus
  1207. );
  1208. static CExtPaintManager::glyph_t stat_glyph_hollow_minus(
  1209. 9,9,2,
  1210. stat_pixels_hollow_minus
  1211. );
  1212. static CExtPaintManager::glyph_t stat_glyph_tree_plus(
  1213. 9,9,2,
  1214. stat_pixels_tree_plus
  1215. );
  1216. static CExtPaintManager::glyph_t stat_glyph_tree_minus(
  1217. 9,9,2,
  1218. stat_pixels_tree_minus
  1219. );
  1220. static CExtPaintManager::glyph_t stat_glyph_tree_plus_filled(
  1221. 9,9,3,
  1222. stat_pixels_tree_plus_filled
  1223. );
  1224. static CExtPaintManager::glyph_t stat_glyph_tree_minus_filled(
  1225. 9,9,3,
  1226. stat_pixels_tree_minus_filled
  1227. );
  1228. static CExtPaintManager::glyph_t stat_glyph_circle_plus(
  1229. 9,9,2,
  1230. stat_pixels_circle_plus
  1231. );
  1232. static CExtPaintManager::glyph_t stat_glyph_circle_minus(
  1233. 9,9,2,
  1234. stat_pixels_circle_minus
  1235. );
  1236. static CExtPaintManager::glyph_t stat_glyph_arrow_pt_up(
  1237. 11,11,2,
  1238. stat_pixels_arrow_pt_up
  1239. );
  1240. static CExtPaintManager::glyph_t stat_glyph_arrow_pt_down(
  1241. stat_glyph_arrow_pt_up,
  1242. 180
  1243. );
  1244. static CExtPaintManager::glyph_t stat_glyph_arrow_pt_left(
  1245. stat_glyph_arrow_pt_up,
  1246. 270
  1247. );
  1248. static CExtPaintManager::glyph_t stat_glyph_arrow_pt_right(
  1249. stat_glyph_arrow_pt_left,
  1250. 180
  1251. );
  1252. static CExtPaintManager::glyph_t stat_glyph_arrow_small_up(
  1253. 5,3,2,
  1254. stat_pixels_arrow_small_up
  1255. );
  1256. static CExtPaintManager::glyph_t stat_glyph_arrow_small_down(
  1257. stat_glyph_arrow_small_up,
  1258. 180
  1259. );
  1260. static CExtPaintManager::glyph_t stat_glyph_arrow_small_left(
  1261. stat_glyph_arrow_small_up,
  1262. 270
  1263. );
  1264. static CExtPaintManager::glyph_t stat_glyph_arrow_small_right(
  1265. stat_glyph_arrow_small_left,
  1266. 180
  1267. );
  1268. static CExtPaintManager::glyph_t stat_glyph_ellipsis(
  1269. 9,3,2,
  1270. stat_pixels_ellipsis
  1271. );
  1272. static CExtPaintManager::glyph_t stat_glyph_arrow_pt_lt(
  1273. 11,11,2,
  1274. stat_pixels_arrow_pt_lt
  1275. );
  1276. static CExtPaintManager::glyph_t stat_glyph_arrow_pt_rt(
  1277. stat_glyph_arrow_pt_lt,
  1278. 90
  1279. );
  1280. static CExtPaintManager::glyph_t stat_glyph_arrow_pt_rb(
  1281. stat_glyph_arrow_pt_rt,
  1282. 90
  1283. );
  1284. static CExtPaintManager::glyph_t stat_glyph_arrow_pt_lb(
  1285. stat_glyph_arrow_pt_rb,
  1286. 90
  1287. );
  1288. static const UINT stat_pixels_arrow_sort_up[] =
  1289. {
  1290. 0,0,0,0,1,1,0,0,0,0,
  1291. 0,0,0,0,1,1,0,0,0,0,
  1292. 0,0,0,1,3,1,1,0,0,0,
  1293. 0,0,0,3,0,0,1,0,0,0,
  1294. 0,0,1,1,0,0,1,1,0,0,
  1295. 0,0,3,0,0,0,0,1,0,0,
  1296. 0,1,1,0,0,0,0,1,1,0,
  1297. 0,3,0,0,0,0,0,0,1,0,
  1298. 1,1,0,0,0,0,0,0,1,1,
  1299. 1,2,2,2,2,2,2,2,2,2,
  1300. };
  1301. static const UINT stat_pixels_arrow_sort_down[] =
  1302. {
  1303. 3,3,3,3,3,3,3,3,3,2,
  1304. 1,1,0,0,0,0,0,0,2,2,
  1305. 0,3,0,0,0,0,0,0,2,0,
  1306. 0,1,1,0,0,0,0,2,2,0,
  1307. 0,0,3,0,0,0,0,2,0,0,
  1308. 0,0,1,1,0,0,2,2,0,0,
  1309. 0,0,0,3,0,0,2,0,0,0,
  1310. 0,0,0,1,3,2,2,0,0,0,
  1311. 0,0,0,0,1,2,0,0,0,0,
  1312. 0,0,0,0,1,2,0,0,0,0,
  1313. };
  1314. static CExtPaintManager::glyph_t stat_glyph_arrow_sort_up(
  1315. 10,10,4, // 8,7,4,
  1316. stat_pixels_arrow_sort_up
  1317. );
  1318. static CExtPaintManager::glyph_t stat_glyph_arrow_sort_down(
  1319. 10,10,4, // 8,7,4,
  1320. stat_pixels_arrow_sort_down
  1321. );
  1322. static CExtPaintManager::glyph_t stat_glyph_arrow_sort_left(
  1323. stat_glyph_arrow_sort_down,
  1324. 90
  1325. );
  1326. static CExtPaintManager::glyph_t stat_glyph_arrow_sort_right(
  1327. stat_glyph_arrow_sort_up,
  1328. 90
  1329. );
  1330. static const UINT stat_pixels_arrow_sort_down_2007[] =
  1331. {
  1332. 1,1,1,1,1,1,1,1,1,
  1333. 0,1,1,1,1,1,1,1,0,
  1334. 0,0,1,1,1,1,1,0,0,
  1335. 0,0,0,1,1,1,0,0,0,
  1336. 0,0,0,0,1,0,0,0,0,
  1337. };
  1338. static CExtPaintManager::glyph_t stat_glyph_arrow_sort_down_2007(
  1339. 9,5,2,
  1340. stat_pixels_arrow_sort_down_2007
  1341. );
  1342. static CExtPaintManager::glyph_t stat_glyph_arrow_sort_up_2007(
  1343. stat_glyph_arrow_sort_down_2007,
  1344. 180
  1345. );
  1346. static CExtPaintManager::glyph_t stat_glyph_arrow_sort_left_2007(
  1347. stat_glyph_arrow_sort_down_2007,
  1348. 90
  1349. );
  1350. static CExtPaintManager::glyph_t stat_glyph_arrow_sort_right_2007(
  1351. stat_glyph_arrow_sort_up_2007,
  1352. 90
  1353. );
  1354. static const UINT stat_pixels_tabs_list_arrow[] =
  1355. {
  1356. 1,1,1,1,1,1,1,
  1357. 1,1,1,1,1,1,1,
  1358. 0,0,0,0,0,0,0,
  1359. 1,1,1,1,1,1,1,
  1360. 0,1,1,1,1,1,0,
  1361. 0,0,1,1,1,0,0,
  1362. 0,0,0,1,0,0,0,
  1363. };
  1364. static CExtPaintManager::glyph_t stat_glyph_tabs_list_arrow(
  1365. 7,7,2,
  1366. stat_pixels_tabs_list_arrow
  1367. );
  1368. static const UINT stat_pixels_pn_config_button[] =
  1369. {
  1370. 1,1,0,1,1,0,0,
  1371. 0,1,1,0,1,1,0,
  1372. 0,0,1,1,0,1,1,
  1373. 0,1,1,0,1,1,0,
  1374. 1,1,0,1,1,0,0,
  1375. 0,0,0,0,0,0,0,
  1376. 0,0,0,0,0,0,0,
  1377. 0,0,0,0,0,0,0,
  1378. 0,0,0,0,0,0,0,
  1379. 0,1,1,1,1,1,0,
  1380. 0,0,1,1,1,0,0,
  1381. 0,0,0,1,0,0,0,
  1382. };
  1383. static CExtPaintManager::glyph_t stat_glyph_pn_config_button(
  1384. 7,12,2,
  1385. stat_pixels_pn_config_button
  1386. );
  1387. static const UINT stat_pixels_pn_config_button_2007[] =
  1388. {
  1389. 1,1,1,1,1,
  1390. 0,1,1,1,0,
  1391. 0,0,1,0,0,
  1392. };
  1393. static CExtPaintManager::glyph_t stat_glyph_pn_config_button_2007(
  1394. 5,3,2,
  1395. stat_pixels_pn_config_button_2007
  1396. );
  1397. static const UINT stat_pixels_pn_caption_expanded[] =
  1398. {
  1399. 0,0,0,1,0,0,0,
  1400. 0,0,1,1,1,0,0,
  1401. 0,1,1,0,1,1,0,
  1402. 1,1,0,0,0,1,1,
  1403. 0,0,0,1,0,0,0,
  1404. 0,0,1,1,1,0,0,
  1405. 0,1,1,0,1,1,0,
  1406. 1,1,0,0,0,1,1,
  1407. };
  1408. static CExtPaintManager::glyph_t stat_glyph_pn_caption_expanded(
  1409. 7,8,2,
  1410. stat_pixels_pn_caption_expanded
  1411. );
  1412. static const UINT stat_pixels_pn_caption_collapsed[] =
  1413. {
  1414. 1,1,0,0,0,1,1,
  1415. 0,1,1,0,1,1,0,
  1416. 0,0,1,1,1,0,0,
  1417. 0,0,0,1,0,0,0,
  1418. 1,1,0,0,0,1,1,
  1419. 0,1,1,0,1,1,0,
  1420. 0,0,1,1,1,0,0,
  1421. 0,0,0,1,0,0,0,
  1422. };
  1423. static CExtPaintManager::glyph_t stat_glyph_pn_caption_collapsed(
  1424. 7,8,2,
  1425. stat_pixels_pn_caption_collapsed
  1426. );
  1427. static const UINT stat_pixels_scroll_top[] =
  1428. {
  1429. 1,1,1,1,1,1,1,
  1430. 0,0,0,0,0,0,0,
  1431. 0,0,0,1,0,0,0,
  1432. 0,0,1,1,1,0,0,
  1433. 0,1,1,1,1,1,0,
  1434. 1,1,1,1,1,1,1,
  1435. 0,0,0,0,0,0,0,
  1436. };
  1437. static CExtPaintManager::glyph_t stat_glyph_scroll_top(
  1438. 7,7,2,
  1439. stat_pixels_scroll_top
  1440. );
  1441. static const UINT stat_pixels_scroll_left[] =
  1442. {
  1443. 1,0,0,0,0,1,0,
  1444. 1,0,0,0,1,1,0,
  1445. 1,0,0,1,1,1,0,
  1446. 1,0,1,1,1,1,0,
  1447. 1,0,0,1,1,1,0,
  1448. 1,0,0,0,1,1,0,
  1449. 1,0,0,0,0,1,0,
  1450. };
  1451. static CExtPaintManager::glyph_t stat_glyph_scroll_left(
  1452. 7,7,2,
  1453. stat_pixels_scroll_left
  1454. );
  1455. static const UINT stat_pixels_scroll_bottom[] =
  1456. {
  1457. 0,0,0,0,0,0,0,
  1458. 1,1,1,1,1,1,1,
  1459. 0,1,1,1,1,1,0,
  1460. 0,0,1,1,1,0,0,
  1461. 0,0,0,1,0,0,0,
  1462. 0,0,0,0,0,0,0,
  1463. 1,1,1,1,1,1,1,
  1464. };
  1465. static CExtPaintManager::glyph_t stat_glyph_scroll_bottom(
  1466. 7,7,2,
  1467. stat_pixels_scroll_bottom
  1468. );
  1469. static const UINT stat_pixels_scroll_right[] =
  1470. {
  1471. 0,1,0,0,0,0,1,
  1472. 0,1,1,0,0,0,1,
  1473. 0,1,1,1,0,0,1,
  1474. 0,1,1,1,1,0,1,
  1475. 0,1,1,1,0,0,1,
  1476. 0,1,1,0,0,0,1,
  1477. 0,1,0,0,0,0,1,
  1478. };
  1479. static CExtPaintManager::glyph_t stat_glyph_scroll_right(
  1480. 7,7,2,
  1481. stat_pixels_scroll_right
  1482. );
  1483. CExtPaintManager::glyph_t *
  1484. CExtPaintManager::g_DockingCaptionGlyphs[__DCBT_VALUE_MAX+1] =
  1485. {
  1486. & stat_glyph_dock_empty,
  1487. & stat_glyph_dock_close,
  1488. & stat_glyph_dock_arrow_up,
  1489. & stat_glyph_dock_arrow_down,
  1490. & stat_glyph_dock_arrow_left,
  1491. & stat_glyph_dock_arrow_right,
  1492. & stat_glyph_dock_wnd_minimize,
  1493. & stat_glyph_dock_wnd_restore,
  1494. & stat_glyph_dock_wnd_maximize,
  1495. & stat_glyph_dock_wnd_contexthelp,
  1496. & stat_glyph_dock_wnd_keep,
  1497. & stat_glyph_dock_wnd_unkeep,
  1498. & stat_glyph_dock_arrow_up_l,
  1499. & stat_glyph_dock_arrow_down_l,
  1500. & stat_glyph_dock_arrow_left_l,
  1501. & stat_glyph_dock_arrow_right_l,
  1502. & stat_glyph_dock_xp_thin_close,
  1503. & stat_glyph_dock_hollow_up,
  1504. & stat_glyph_dock_hollow_down,
  1505. & stat_glyph_dock_hollow_left,
  1506. & stat_glyph_dock_hollow_right,
  1507. & stat_glyph_dock_close_dc2k,
  1508. & stat_glyph_hollow_plus,
  1509. & stat_glyph_hollow_minus,
  1510. & stat_glyph_tree_plus,
  1511. & stat_glyph_tree_minus,
  1512. & stat_glyph_circle_plus,
  1513. & stat_glyph_circle_minus,
  1514. & stat_glyph_arrow_pt_up,
  1515. & stat_glyph_arrow_pt_down,
  1516. & stat_glyph_arrow_pt_left,
  1517. & stat_glyph_arrow_pt_right,
  1518. & stat_glyph_arrow_pt_lt,
  1519. & stat_glyph_arrow_pt_rt,
  1520. & stat_glyph_arrow_pt_rb,
  1521. & stat_glyph_arrow_pt_lb,
  1522. & stat_glyph_arrow_small_up,
  1523. & stat_glyph_arrow_small_down,
  1524. & stat_glyph_arrow_small_left,
  1525. & stat_glyph_arrow_small_right,
  1526. & stat_glyph_ellipsis,
  1527. & stat_glyph_arrow_sort_up,
  1528. & stat_glyph_arrow_sort_down,
  1529. & stat_glyph_arrow_sort_left,
  1530. & stat_glyph_arrow_sort_right,
  1531. & stat_glyph_tabs_list_arrow,
  1532. & stat_glyph_pn_config_button,
  1533. & stat_glyph_pn_config_button_2007,
  1534. & stat_glyph_pn_caption_expanded,
  1535. & stat_glyph_pn_caption_collapsed,
  1536. & stat_glyph_tree_plus_filled,
  1537. & stat_glyph_tree_minus_filled,
  1538. & stat_glyph_scroll_top,
  1539. & stat_glyph_scroll_left,
  1540. & stat_glyph_scroll_bottom,
  1541. & stat_glyph_scroll_right,
  1542. & stat_glyph_arrow_sort_up_2007,
  1543. & stat_glyph_arrow_sort_down_2007,
  1544. & stat_glyph_arrow_sort_left_2007,
  1545. & stat_glyph_arrow_sort_right_2007,
  1546. };
  1547. CExtPaintManager::PAINTDOCKINGCAPTIONBUTTONDATA::PAINTDOCKINGCAPTIONBUTTONDATA()
  1548. : m_pHelperSrc( NULL )
  1549. , m_lParam( 0L )
  1550. , m_rcClient( 0,0,0,0 )
  1551. , m_eType( CExtPaintManager::__DCBT_EMPTY )
  1552. , m_bHover( false )
  1553. , m_bPushed( false )
  1554. , m_bEnabled( false )
  1555. , m_bSideBar( false )
  1556. , m_bBarWndActive( false )
  1557. , m_bFloating( false )
  1558. {
  1559. }
  1560. CExtPaintManager::PAINTDOCKINGCAPTIONBUTTONDATA::PAINTDOCKINGCAPTIONBUTTONDATA(
  1561. CObject * pHelperSrc,
  1562. const RECT & rcClient,
  1563. int eType, // CExtPaintManager::e_docking_caption_button_t
  1564. bool bHover,
  1565. bool bPushed,
  1566. bool bEnabled,
  1567. bool bSideBar,
  1568. bool bBarWndActive,
  1569. bool bFloating
  1570. )
  1571. : m_pHelperSrc( pHelperSrc )
  1572. , m_lParam( 0L )
  1573. , m_rcClient( rcClient )
  1574. , m_eType( eType )
  1575. , m_bHover( bHover )
  1576. , m_bPushed( bPushed )
  1577. , m_bEnabled( bEnabled )
  1578. , m_bSideBar( bSideBar )
  1579. , m_bBarWndActive( bBarWndActive )
  1580. , m_bFloating( bFloating )
  1581. {
  1582. }
  1583. void CExtPaintManager::PaintDockingCaptionButton(
  1584. CDC & dc,
  1585. CExtPaintManager::PAINTDOCKINGCAPTIONBUTTONDATA & _pdcbd
  1586. )
  1587. {
  1588. ASSERT_VALID( this );
  1589. ASSERT( dc.GetSafeHdc() != NULL );
  1590. ASSERT(
  1591. __DCBT_VALUE_MIN <= _pdcbd.m_eType
  1592. &&
  1593. _pdcbd.m_eType <= __DCBT_VALUE_MAX
  1594. );
  1595. if( _pdcbd.m_rcClient.IsRectEmpty() )
  1596. return;
  1597. bool bHover = _pdcbd.m_bHover;
  1598. if( !_pdcbd.m_bEnabled )
  1599. bHover = false;
  1600. COLORREF clr3dFace = ::GetSysColor( COLOR_3DFACE );
  1601. COLORREF clr3dShadow = ::GetSysColor( COLOR_3DSHADOW );
  1602. COLORREF clr3dDkShadow = ::GetSysColor( COLOR_3DDKSHADOW );
  1603. COLORREF clr3dHiLight = ::GetSysColor( COLOR_3DHILIGHT );
  1604. COLORREF ColorValues[2] =
  1605. {
  1606. RGB(0,0,0),
  1607. RGB(0,0,0),
  1608. };
  1609. ColorValues[1] = 
  1610. _pdcbd.m_bEnabled 
  1611. ? ::GetSysColor( COLOR_BTNTEXT )
  1612. : ::GetSysColor( COLOR_GRAYTEXT );
  1613. CRect rcGlyph( _pdcbd.m_rcClient );
  1614. rcGlyph.NormalizeRect();
  1615. if( rcGlyph.Width() & 1 )
  1616. rcGlyph.left++;
  1617. if( rcGlyph.Height() & 1 )
  1618. rcGlyph.top++;
  1619. if( _pdcbd.m_eType == __DCBT_CLOSE )
  1620. _pdcbd.m_eType = __DCBT_CLOSE_DC2K;
  1621. glyph_t * pGlyph = g_DockingCaptionGlyphs[_pdcbd.m_eType];
  1622. ASSERT( pGlyph != NULL );
  1623. if( !_pdcbd.m_bFloating )
  1624. // rcGlyph.InflateRect( 2, 2 );
  1625. // else
  1626. rcGlyph.InflateRect( 1, 1 );
  1627. rcGlyph.InflateRect( 1, 1, 0, 0 );
  1628. dc.FillSolidRect(
  1629. &rcGlyph,
  1630. clr3dFace
  1631. );
  1632. CRect rcGlyphShape( rcGlyph );
  1633. if( _pdcbd.m_bPushed )
  1634. rcGlyphShape.OffsetRect( 1, 1 );
  1635. PaintGlyphCentered(
  1636. dc,
  1637. rcGlyphShape,
  1638. *pGlyph,
  1639. ColorValues
  1640. );
  1641. /*
  1642. if( bEnabled && bPushed )
  1643. {
  1644. dc.Draw3dRect(
  1645. &rcGlyph,
  1646. clr3dDkShadow, clr3dFace
  1647. );
  1648. rcGlyph.DeflateRect( 1, 1 );
  1649. dc.Draw3dRect(
  1650. &rcGlyph,
  1651. clr3dShadow, clr3dHiLight
  1652. );
  1653. } // if( bPushed )
  1654. else
  1655. {
  1656. dc.Draw3dRect(
  1657. &rcGlyph,
  1658. clr3dFace, clr3dDkShadow
  1659. );
  1660. rcGlyph.DeflateRect( 1, 1 );
  1661. dc.Draw3dRect(
  1662. &rcGlyph,
  1663. clr3dHiLight, clr3dShadow
  1664. );
  1665. } // else if( bHover )
  1666. */
  1667. if( _pdcbd.m_bEnabled && _pdcbd.m_bPushed )
  1668. {
  1669. dc.Draw3dRect(
  1670. &rcGlyph,
  1671. clr3dShadow, clr3dHiLight
  1672. );
  1673. } // if( _pdcbd.m_bEnabled && _pdcbd.m_bPushed )
  1674. else if( _pdcbd.m_bEnabled && bHover )
  1675. {
  1676. dc.Draw3dRect(
  1677. &rcGlyph,
  1678. clr3dFace, clr3dDkShadow
  1679. );
  1680. rcGlyph.DeflateRect( 1, 1 );
  1681. dc.Draw3dRect(
  1682. &rcGlyph,
  1683. clr3dHiLight, clr3dShadow
  1684. );
  1685. } // else if( _pdcbd.m_bEnabled && bHover )
  1686. else
  1687. {
  1688. dc.Draw3dRect(
  1689. &rcGlyph,
  1690. clr3dHiLight, clr3dShadow
  1691. );
  1692. } // else ...
  1693. }
  1694. void CExtPaintManagerXP::PaintDockingCaptionButton(
  1695. CDC & dc,
  1696. CExtPaintManager::PAINTDOCKINGCAPTIONBUTTONDATA & _pdcbd
  1697. )
  1698. {
  1699. ASSERT_VALID( this );
  1700. ASSERT( dc.GetSafeHdc() != NULL );
  1701. ASSERT( __DCBT_VALUE_MIN <= _pdcbd.m_eType && _pdcbd.m_eType <= __DCBT_VALUE_MAX );
  1702. if( _pdcbd.m_rcClient.IsRectEmpty() )
  1703. return;
  1704. bool bHover = _pdcbd.m_bHover;
  1705. if( !_pdcbd.m_bEnabled )
  1706. bHover = false;
  1707. COLORREF ColorValues[2] = { RGB(0,0,0), RGB(0,0,0), };
  1708. if( _pdcbd.m_bEnabled )
  1709. {
  1710. if( ! (bHover || _pdcbd.m_bPushed) )
  1711. ColorValues[1] =
  1712. GetColor(
  1713. _pdcbd.m_bSideBar
  1714. ? (_pdcbd.m_bBarWndActive ? COLOR_HIGHLIGHTTEXT : COLOR_3DDKSHADOW )
  1715. : COLOR_HIGHLIGHTTEXT 
  1716. ,
  1717. _pdcbd.m_pHelperSrc,
  1718. _pdcbd.m_lParam
  1719. );
  1720. } // if( bEnabled )
  1721. else
  1722. ColorValues[1] = GetColor( COLOR_3DSHADOW, _pdcbd.m_pHelperSrc, _pdcbd.m_lParam );
  1723. CRect rcGlyph( _pdcbd.m_rcClient );
  1724. rcGlyph.NormalizeRect();
  1725. if( bHover || _pdcbd.m_bPushed )
  1726. {
  1727. dc.FillSolidRect( &rcGlyph, GetColor( _pdcbd.m_bPushed ? XPCLR_HILIGHT : CLR_3DFACE_IN, _pdcbd.m_pHelperSrc, _pdcbd.m_lParam ) );
  1728. CRect rcBtnBorder(rcGlyph);
  1729. rcBtnBorder.InflateRect(1,1);
  1730. COLORREF clrBtnBorder = GetColor( _pdcbd.m_bBarWndActive ? XPCLR_HILIGHT : XPCLR_HILIGHT_BORDER, _pdcbd.m_pHelperSrc, _pdcbd.m_lParam );
  1731. dc.Draw3dRect( rcBtnBorder, clrBtnBorder, clrBtnBorder );
  1732. }
  1733. if( rcGlyph.Width() & 1 )
  1734. rcGlyph.left++;
  1735. if( rcGlyph.Height() & 1 )
  1736. rcGlyph.top++;
  1737. int eType = _pdcbd.m_eType;
  1738. if( _pdcbd.m_bSideBar && !_pdcbd.m_bFloating && eType == __DCBT_CLOSE )
  1739. eType = __DCBT_XP_THIN_CLOSE;
  1740. glyph_t * pGlyph = g_DockingCaptionGlyphs[eType];
  1741. ASSERT( pGlyph != NULL );
  1742. PaintGlyphCentered( dc, rcGlyph, *pGlyph, ColorValues );
  1743. }
  1744. void CExtPaintManagerStudio2005::PaintDockingCaptionButton(
  1745. CDC & dc,
  1746. CExtPaintManager::PAINTDOCKINGCAPTIONBUTTONDATA & _pdcbd
  1747. )
  1748. {
  1749. ASSERT_VALID( this );
  1750. ASSERT( dc.GetSafeHdc() != NULL );
  1751. if( IsHighContrast() )
  1752. {
  1753. CExtPaintManagerXP::PaintDockingCaptionButton( dc, _pdcbd );
  1754. return;
  1755. }
  1756. if( _pdcbd.m_bSideBar 
  1757. && _pdcbd.m_bFloating 
  1758. && ( ( ! _pdcbd.m_pHelperSrc->IsKindOf(RUNTIME_CLASS(CExtBarNcAreaButtonMenu) ) )
  1759. #if (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  1760. || (! ((CExtBarNcAreaButtonMenu*)_pdcbd.m_pHelperSrc)->OnQueryDeactivateAutohideSlider() )
  1761. #else
  1762. || (! ((CExtBarNcAreaButtonMenu*)_pdcbd.m_pHelperSrc)->GetBar()->IsFixedMode() )
  1763. #endif
  1764. )
  1765. )
  1766. CExtPaintManager::PaintDockingCaptionButton( dc, _pdcbd );
  1767. else
  1768. CExtPaintManagerOffice2003::PaintDockingCaptionButton( dc, _pdcbd );
  1769. }
  1770. void CExtPaintManagerNativeXP::PaintDockingCaptionButton(
  1771. CDC & dc,
  1772. CExtPaintManager::PAINTDOCKINGCAPTIONBUTTONDATA & _pdcbd
  1773. )
  1774. {
  1775. ASSERT_VALID( this );
  1776. ASSERT( dc.GetSafeHdc() != NULL );
  1777. ASSERT( __DCBT_VALUE_MIN <= _pdcbd.m_eType
  1778. && _pdcbd.m_eType <= __DCBT_VALUE_MAX 
  1779. );
  1780. if( _pdcbd.m_rcClient.IsRectEmpty() )
  1781. return;
  1782. if( ! g_PaintManager.m_UxTheme.IsControlsThemed() )
  1783. {
  1784. CExtPaintManager::PaintDockingCaptionButton( dc, _pdcbd );
  1785. return;
  1786. } // if( ! g_PaintManager.m_UxTheme.IsControlsThemed() )
  1787. HWND hWnd = NULL;
  1788. CWnd * pWnd = DYNAMIC_DOWNCAST( CWnd, _pdcbd.m_pHelperSrc );
  1789. if( pWnd != NULL )
  1790. {
  1791. ASSERT_VALID( pWnd );
  1792. hWnd = pWnd->GetSafeHwnd();
  1793. }
  1794. if( _pdcbd.m_eType == __DCBT_CLOSE )
  1795. {
  1796. if( g_PaintManager.m_UxTheme.OpenThemeData( hWnd, VSCLASS_WINDOW ) != NULL )
  1797. {
  1798. INT nStateID = 
  1799. (!_pdcbd.m_bEnabled)
  1800. ? CBS_DISABLED
  1801. : _pdcbd.m_bPushed
  1802. ? CBS_PUSHED
  1803. : _pdcbd.m_bHover
  1804. ? CBS_HOT
  1805. : CBS_NORMAL;
  1806. VERIFY( 
  1807. g_PaintManager.m_UxTheme.DrawBackground(
  1808. hWnd,
  1809. dc.GetSafeHdc(), 
  1810. WP_SMALLCLOSEBUTTON, 
  1811. nStateID, 
  1812. &_pdcbd.m_rcClient, 
  1813. &_pdcbd.m_rcClient
  1814. ) == S_OK
  1815. );
  1816. g_PaintManager.m_UxTheme.CloseThemeData();
  1817. }
  1818. }
  1819. else
  1820. {
  1821. CRect rcGlyph( _pdcbd.m_rcClient );
  1822. rcGlyph.NormalizeRect();
  1823. if( (_pdcbd.m_bHover || _pdcbd.m_bPushed)
  1824. && _pdcbd.m_bEnabled 
  1825. )
  1826. {
  1827. if( g_PaintManager.m_UxTheme.OpenThemeData( hWnd, VSCLASS_TOOLBAR ) != NULL )
  1828. {
  1829. INT nStateID = 
  1830. _pdcbd.m_bPushed
  1831. ? TS_PRESSED
  1832. : _pdcbd.m_bHover
  1833. ? TS_HOT
  1834. : TS_NORMAL;
  1835. VERIFY( 
  1836. g_PaintManager.m_UxTheme.DrawBackground(
  1837. hWnd,
  1838. dc.GetSafeHdc(), 
  1839. TP_BUTTON, 
  1840. nStateID, 
  1841. &rcGlyph, 
  1842. &rcGlyph
  1843. ) == S_OK
  1844. );
  1845. g_PaintManager.m_UxTheme.CloseThemeData();
  1846. }
  1847. }
  1848. COLORREF ColorValues[2] =
  1849. {
  1850. RGB(0,0,0),
  1851. ::GetSysColor(
  1852. (!_pdcbd.m_bEnabled)
  1853. ? COLOR_GRAYTEXT
  1854. : (_pdcbd.m_bHover || _pdcbd.m_bPushed) 
  1855. ? COLOR_BTNTEXT
  1856. : COLOR_HIGHLIGHTTEXT
  1857. )
  1858. };
  1859. glyph_t * pGlyph = g_DockingCaptionGlyphs[ _pdcbd.m_eType ];
  1860. ASSERT( pGlyph != NULL );
  1861. if( _pdcbd.m_bPushed )
  1862. rcGlyph.OffsetRect( 1, 1 );
  1863. PaintGlyphCentered( dc, rcGlyph, *pGlyph, ColorValues );
  1864. }
  1865. }
  1866. CExtPaintManager::PAINTPUSHBUTTONDATA::PAINTPUSHBUTTONDATA()
  1867. : m_pHelperSrc( NULL )
  1868. , m_lParam( 0L )
  1869. , m_bHorz( false )
  1870. , m_rcClient( 0,0,0,0 )
  1871. , m_sText( _T("") )
  1872. , m_pIcon( NULL )
  1873. , m_bFlat( false )
  1874. , m_bHover( false )
  1875. , m_bPushed( false )
  1876. , m_bChecked( false )
  1877. , m_bIndeterminate( false )
  1878. , m_bEnabled( false )
  1879. , m_bDrawBorder( false )
  1880. , m_bDrawFocusRect( false )
  1881. , m_bDefaultPushButton( false )
  1882. , m_nTextAlignment( __ALIGN_HORIZ_LEFT | __ALIGN_VERT_CENTER )
  1883. , m_nIconAlignment( __ALIGN_HORIZ_LEFT | __ALIGN_VERT_CENTER )
  1884. , m_rcBorderSizes( 0, 0, 0, 0 )
  1885. , m_rcIconMargins( 0, 0, 0, 0 )
  1886. , m_rcTextMargins( 0, 0, 0, 0 )
  1887. , m_nFocusMode( __EBFM_CAPTION_AREA )
  1888. , m_hFont( NULL )
  1889. , m_bDropDown( false )
  1890. , m_nHelperSysCmdID( 0 )
  1891. , m_bTransparentBackground( false )
  1892. , m_bSeparatedDropDown( false )
  1893. , m_bNoDropDownArrow( false )
  1894. , m_bPushedDropDown( false )
  1895. , m_bHoverDropDown( false )
  1896. , m_clrForceTextDisabled( ((COLORREF)-1L) )
  1897. , m_clrForceTextNormal( ((COLORREF)-1L) )
  1898. , m_clrForceTextHover( ((COLORREF)-1L) )
  1899. , m_clrForceTextPressed( ((COLORREF)-1L) )
  1900. , m_clrForceBk( ((COLORREF)-1L) )
  1901. , m_nDrawTextFlagsH( DT_CENTER|DT_VCENTER ) // ( DT_SINGLELINE|DT_CENTER|DT_VCENTER )
  1902. , m_bForceUseDrawTextApiH( false )
  1903. , m_bForceRtlLayout( false )
  1904. , m_bForceRtlText( false )
  1905. , m_bWordBreak( false )
  1906. , m_clrCustomAccentEffectForIcon( COLORREF(-1L) )
  1907. , m_bHelperColorCellButton( false )
  1908. {
  1909. }
  1910. CExtPaintManager::PAINTPUSHBUTTONDATA::PAINTPUSHBUTTONDATA(
  1911. CObject * pHelperSrc,
  1912. bool bHorz,
  1913. const RECT & rcClient,
  1914. __EXT_MFC_SAFE_LPCTSTR sText,
  1915. CExtCmdIcon * pIcon,
  1916. bool bFlat,
  1917. bool bHover,
  1918. bool bPushed,
  1919. bool bIndeterminate,
  1920. bool bEnabled,
  1921. bool bDrawBorder,
  1922. bool bDrawFocusRect,
  1923. bool bDefaultPushButton,
  1924. int eAlign,
  1925. HFONT hFont, // = NULL
  1926. bool bDropDown, // = false
  1927. UINT nHelperSysCmdID, // = 0
  1928. bool bTransparentBackground // = false
  1929. )
  1930. : m_pHelperSrc( pHelperSrc )
  1931. , m_lParam( 0L )
  1932. , m_bHorz( bHorz )
  1933. , m_rcClient( rcClient )
  1934. , m_sText( (sText==NULL) ? _T("") : sText )
  1935. , m_pIcon( pIcon )
  1936. , m_bFlat( bFlat )
  1937. , m_bHover( bHover )
  1938. , m_bPushed( bPushed )
  1939. , m_bChecked( false )
  1940. , m_bIndeterminate( bIndeterminate )
  1941. , m_bEnabled( bEnabled )
  1942. , m_bDrawBorder( bDrawBorder )
  1943. , m_bDrawFocusRect( bDrawFocusRect )
  1944. , m_bDefaultPushButton( bDefaultPushButton )
  1945. , m_nTextAlignment( eAlign )
  1946. , m_nIconAlignment( __ALIGN_HORIZ_LEFT | __ALIGN_VERT_CENTER )
  1947. , m_rcBorderSizes( 0, 0, 0, 0 )
  1948. , m_rcIconMargins( 0, 0, 0, 0 )
  1949. , m_rcTextMargins( 0, 0, 0, 0 )
  1950. , m_hFont( hFont )
  1951. , m_bDropDown( bDropDown )
  1952. , m_nHelperSysCmdID( nHelperSysCmdID )
  1953. , m_bTransparentBackground( bTransparentBackground )
  1954. , m_bSeparatedDropDown( false )
  1955. , m_bNoDropDownArrow( false )
  1956. , m_bPushedDropDown( false )
  1957. , m_bHoverDropDown( false )
  1958. , m_clrForceTextDisabled( ((COLORREF)-1L) )
  1959. , m_clrForceTextNormal( ((COLORREF)-1L) )
  1960. , m_clrForceTextHover( ((COLORREF)-1L) )
  1961. , m_clrForceTextPressed( ((COLORREF)-1L) )
  1962. , m_clrForceBk( ((COLORREF)-1L) )
  1963. , m_nDrawTextFlagsH( 0 ) // ( DT_SINGLELINE )
  1964. , m_bForceUseDrawTextApiH( false )
  1965. , m_bForceRtlLayout( false )
  1966. , m_bForceRtlText( false )
  1967. , m_bWordBreak( false )
  1968. , m_clrCustomAccentEffectForIcon( COLORREF(-1L) )
  1969. , m_bHelperColorCellButton( false )
  1970. {
  1971. if( (m_nTextAlignment&__ALIGN_HORIZ_CENTER) != 0 )
  1972. m_nDrawTextFlagsH |= DT_CENTER;
  1973. else if( (m_nTextAlignment&__ALIGN_HORIZ_RIGHT) != 0 )
  1974. m_nDrawTextFlagsH |= DT_RIGHT;
  1975. else
  1976. m_nDrawTextFlagsH |= DT_LEFT;
  1977. if( (m_nTextAlignment&__ALIGN_VERT_CENTER) != 0 )
  1978. m_nDrawTextFlagsH |= DT_VCENTER;
  1979. else
  1980. m_nDrawTextFlagsH |= DT_TOP;
  1981. }
  1982. bool CExtPaintManager::PAINTPUSHBUTTONDATA::IsRTL()
  1983. {
  1984. if( m_bForceRtlLayout )
  1985. return true;
  1986. if( m_pHelperSrc == NULL )
  1987. return false;
  1988. ASSERT_VALID( m_pHelperSrc );
  1989. CExtPopupMenuWnd * pPopup =
  1990. DYNAMIC_DOWNCAST( CExtPopupMenuWnd, m_pHelperSrc );
  1991. if( pPopup != NULL )
  1992. return pPopup->OnQueryLayoutRTL();
  1993. CExtBarButton * pTBB =
  1994. DYNAMIC_DOWNCAST( CExtBarButton, m_pHelperSrc );
  1995. if( pTBB != NULL )
  1996. {
  1997. CExtToolControlBar * pToolBar =
  1998. pTBB->GetBar();
  1999. if( pToolBar != NULL )
  2000. {
  2001. if( (g_ResourceManager->OnQueryLangLayout()&LAYOUT_RTL) != 0 )
  2002. return true;
  2003. if( pToolBar->m_pDockSite != NULL
  2004. && (pToolBar->m_pDockSite->GetExStyle()&WS_EX_LAYOUTRTL) != 0
  2005. )
  2006. return true;
  2007. if( (pToolBar->GetParent()->GetExStyle()&WS_EX_LAYOUTRTL) != 0 )
  2008. return true;
  2009. } // if( pToolBar != NULL )
  2010. } // if( pTBB != NULL )
  2011. return false;
  2012. }
  2013. void CExtPaintManager::PaintPushButton(
  2014. CDC & dc,
  2015. CExtPaintManager::PAINTPUSHBUTTONDATA & _ppbd
  2016. )
  2017. {
  2018. ASSERT_VALID( this );
  2019. ASSERT( dc.GetSafeHdc() != NULL );
  2020. if( _ppbd.m_rcClient.IsRectEmpty() )
  2021. return;
  2022. #if (!defined __EXT_MFC_NO_RIBBON_BAR)
  2023. if( _ppbd.m_pHelperSrc != NULL )
  2024. {
  2025. CExtBarButton * pTBB = DYNAMIC_DOWNCAST( CExtBarButton, _ppbd.m_pHelperSrc );
  2026. if( pTBB != NULL )
  2027. {
  2028. if( pTBB->IsRibbonPaintingMode() )
  2029. {
  2030. Ribbon_PaintPushButton( dc, _ppbd );
  2031. return;
  2032. }
  2033. CExtToolControlBar * pBar = pTBB->GetBar();
  2034. if( pBar != NULL
  2035. && pBar->IsKindOf( RUNTIME_CLASS( CExtRibbonPage ) )
  2036. && (! pTBB->IsNoRibbonLayout() )
  2037. && (! pTBB->IsKindOf( RUNTIME_CLASS( CExtBarMdiRightButton ) ) )
  2038. )
  2039. {
  2040. Ribbon_PaintPushButton( dc, _ppbd );
  2041. return;
  2042. }
  2043. } // if( pTBB != NULL )
  2044. } // if( _ppbd.m_pHelperSrc != NULL )
  2045. #endif // (!defined __EXT_MFC_NO_RIBBON_BAR)
  2046. bool bRTL = _ppbd.IsRTL();
  2047. if( !_ppbd.m_bEnabled )
  2048. {
  2049. _ppbd.m_bHover = false;
  2050. _ppbd.m_bDrawFocusRect = false;
  2051. _ppbd.m_bIndeterminate = false;
  2052. }
  2053. if( _ppbd.m_bSeparatedDropDown && (_ppbd.m_bPushed || _ppbd.m_bPushedDropDown) )
  2054. _ppbd.m_bHover = false;
  2055. COLORREF clrOldText = dc.GetTextColor();
  2056. COLORREF clrOldBk = dc.GetBkColor();
  2057. int nOldBkMode = dc.SetBkMode( TRANSPARENT );
  2058. CBrush * pBrush = NULL;
  2059. COLORREF bgColor = COLORREF(-1L);
  2060. if( _ppbd.m_clrForceBk != ((COLORREF)-1L) )
  2061. bgColor = _ppbd.m_clrForceBk;
  2062. else if( _ppbd.m_bHover || _ppbd.m_bPushed )
  2063. bgColor = GetColor( CLR_3DFACE_IN, _ppbd.m_pHelperSrc, _ppbd.m_lParam );
  2064. else if( _ppbd.m_bIndeterminate )
  2065. {
  2066. bgColor = GetColor( CLR_3DFACE_IN, _ppbd.m_pHelperSrc, _ppbd.m_lParam );
  2067. pBrush = &m_brushLightestSystem;
  2068. }
  2069. else
  2070. bgColor = GetColor( CLR_3DFACE_OUT, _ppbd.m_pHelperSrc, _ppbd.m_lParam );
  2071. bool bPushedDropDown = false;
  2072. if( (_ppbd.m_bPushed && !_ppbd.m_bSeparatedDropDown)
  2073. || _ppbd.m_bPushedDropDown
  2074. )
  2075. bPushedDropDown = true;
  2076. CRect rectClient( _ppbd.m_rcClient );
  2077. CRect rectCaption( _ppbd.m_rcClient );
  2078. CRect rectDropDown( 0, 0, 0, 0 );
  2079. if( _ppbd.m_bDropDown )
  2080. {
  2081. rectDropDown = rectClient;
  2082. if( _ppbd.m_bHorz )
  2083. {
  2084. if( bRTL )
  2085. {
  2086. rectCaption.left +=
  2087. __DROPDOWN_ARROW_GAP*2
  2088. + g_glyph_btn_expand_bottom.Size().cx
  2089. ;
  2090. rectDropDown.right = rectCaption.left + 1;
  2091. } // if( bRTL )
  2092. else
  2093. {
  2094. rectCaption.right -=
  2095. __DROPDOWN_ARROW_GAP*2
  2096. + g_glyph_btn_expand_bottom.Size().cx
  2097. ;
  2098. rectDropDown.left = rectCaption.right - 1;
  2099. } // else from if( bRTL )
  2100. } // if( _ppbd.m_bHorz )
  2101. else
  2102. {
  2103. rectCaption.bottom -=
  2104. __DROPDOWN_ARROW_GAP*2
  2105. + g_glyph_btn_expand_right.Size().cy
  2106. ;
  2107. rectDropDown.top = rectCaption.bottom - 1;
  2108. } // if( _ppbd.m_bHorz )
  2109. if( !_ppbd.m_bTransparentBackground 
  2110. || _ppbd.m_clrForceBk != ((COLORREF)-1L)
  2111. )
  2112. {
  2113. if( _ppbd.m_bEnabled
  2114. && bPushedDropDown
  2115. && _ppbd.m_bHover
  2116. && _ppbd.m_clrForceBk == ((COLORREF)-1L)
  2117. )
  2118. dc.FillRect( &rectDropDown, &m_brushLightDefault );
  2119. else
  2120. dc.FillSolidRect( &rectDropDown, bgColor );
  2121. } // if( ! _ppbd.m_bTransparentBackground )
  2122. if( _ppbd.m_bSeparatedDropDown )
  2123. {
  2124. rectClient = rectCaption;
  2125. if( bPushedDropDown )
  2126. {
  2127. if( (!_ppbd.m_bFlat) || _ppbd.m_bDrawBorder )
  2128. dc.Draw3dRect(
  2129. rectDropDown,
  2130. GetColor( CLR_3DSHADOW_IN, _ppbd.m_pHelperSrc, _ppbd.m_lParam ),
  2131. GetColor( CLR_3DHILIGHT_IN, _ppbd.m_pHelperSrc, _ppbd.m_lParam )
  2132. );
  2133. } // if( bPushedDropDown )
  2134. else
  2135. {
  2136. if( (!_ppbd.m_bFlat) || (_ppbd.m_bHover && _ppbd.m_bDrawBorder) )
  2137. dc.Draw3dRect(
  2138. rectDropDown,
  2139. GetColor( CLR_3DHILIGHT_OUT, _ppbd.m_pHelperSrc, _ppbd.m_lParam ),
  2140. GetColor( CLR_3DSHADOW_OUT, _ppbd.m_pHelperSrc, _ppbd.m_lParam )
  2141. );
  2142. } // else from if( bPushedDropDown )
  2143. } // if( _ppbd.m_bSeparatedDropDown )
  2144. } // if( _ppbd.m_bDropDown )
  2145. if( !_ppbd.m_bTransparentBackground 
  2146. || _ppbd.m_clrForceBk != ((COLORREF)-1L)
  2147. )
  2148. {
  2149. if( _ppbd.m_bEnabled
  2150. && _ppbd.m_bPushed
  2151. && _ppbd.m_bHover
  2152. && _ppbd.m_clrForceBk == ((COLORREF)-1L)
  2153. )
  2154. {
  2155. dc.FillRect( &rectClient, &m_brushLightDefault );
  2156. }
  2157. else
  2158. {
  2159. if( pBrush != NULL )
  2160. dc.FillRect( &rectClient, pBrush );
  2161. else
  2162. dc.FillSolidRect( &rectClient, bgColor );
  2163. }
  2164. } // if( !_ppbd.m_bTransparentBackground )
  2165. // Draw pressed button
  2166. if( _ppbd.m_bPushed || _ppbd.m_bIndeterminate )
  2167. {
  2168. if( pBrush != NULL )
  2169. dc.FillRect( &rectClient, pBrush );
  2170. if( (!_ppbd.m_bFlat) || _ppbd.m_bDrawBorder )
  2171. dc.Draw3dRect(
  2172. rectClient,
  2173. GetColor( CLR_3DSHADOW_IN, _ppbd.m_pHelperSrc, _ppbd.m_lParam ),
  2174. GetColor( CLR_3DHILIGHT_IN, _ppbd.m_pHelperSrc, _ppbd.m_lParam )
  2175. );
  2176. } // if( _ppbd.m_bPushed || _ppbd.m_bIndeterminate )
  2177. else // ...else draw non pressed button
  2178. {
  2179. if( (!_ppbd.m_bFlat) || (_ppbd.m_bHover && _ppbd.m_bDrawBorder) )
  2180. dc.Draw3dRect(
  2181. rectClient,
  2182. GetColor( CLR_3DHILIGHT_OUT, _ppbd.m_pHelperSrc, _ppbd.m_lParam ),
  2183. GetColor( CLR_3DSHADOW_OUT, _ppbd.m_pHelperSrc, _ppbd.m_lParam )
  2184. );
  2185. if( (!_ppbd.m_bFlat) && _ppbd.m_bHover )
  2186. {
  2187. CRect cc( _ppbd.m_rcClient );
  2188. dc.Draw3dRect(
  2189. cc,
  2190. GetColor( CLR_3DSHADOW_OUT, _ppbd.m_pHelperSrc, _ppbd.m_lParam ),
  2191. GetColor( CLR_3DDKSHADOW_OUT, _ppbd.m_pHelperSrc, _ppbd.m_lParam )
  2192. );
  2193. cc.DeflateRect(1,1);
  2194. dc.Draw3dRect(
  2195. cc,
  2196. GetColor( CLR_3DHILIGHT_OUT, _ppbd.m_pHelperSrc, _ppbd.m_lParam ),
  2197. GetColor( CLR_3DSHADOW_OUT, _ppbd.m_pHelperSrc, _ppbd.m_lParam )
  2198. );
  2199. } // if( (!_ppbd.m_bFlat) && _ppbd.m_bHover )
  2200. } // else from if( _ppbd.m_bPushed )
  2201. if( _ppbd.m_bDropDown && (! _ppbd.m_bNoDropDownArrow ) )
  2202. {
  2203. CRect rectGlyph( rectDropDown );
  2204. if( bPushedDropDown )
  2205. rectGlyph.OffsetRect( GetPushedOffset() );
  2206. COLORREF ColorValues[2] =
  2207. {
  2208. RGB(0,0,0),
  2209. GetColor(
  2210. _ppbd.m_bEnabled
  2211. ? CLR_TEXT_OUT
  2212. : CLR_3DSHADOW_OUT
  2213. ,
  2214. _ppbd.m_pHelperSrc,
  2215. _ppbd.m_lParam
  2216. )
  2217. };
  2218. if( bRTL && (rectGlyph.Width()&1) != 0 )
  2219. rectGlyph.right++;
  2220. PaintGlyphCentered(
  2221. dc,
  2222. rectGlyph,
  2223. _ppbd.m_bHorz ? g_glyph_btn_expand_bottom : g_glyph_btn_expand_right,
  2224. ColorValues
  2225. );
  2226. } // if( _ppbd.m_bDropDown && (! _ppbd.m_bNoDropDownArrow ) )
  2227. dc.SetBkColor( bgColor );
  2228. rectCaption.DeflateRect( _ppbd.m_rcBorderSizes );
  2229. rectClient = rectCaption;
  2230. CRect rcFocus( rectCaption );
  2231. // Draw icon
  2232. if( rectClient.bottom > rectClient.top
  2233. && rectClient.right > rectClient.left
  2234. )
  2235. PaintPushButtonIcon(
  2236. dc,
  2237. rectClient,
  2238. rectCaption,
  2239. rcFocus,
  2240. _ppbd
  2241. );
  2242. CExtSafeString sTitle( _T("") );
  2243. if( _ppbd.m_sText != NULL )
  2244. sTitle = _ppbd.m_sText;
  2245. // Draw text
  2246. if( rectCaption.bottom > rectCaption.top
  2247. && rectCaption.right > rectCaption.left
  2248. && (!sTitle.IsEmpty())
  2249. )
  2250. PaintPushButtonText(
  2251. dc,
  2252. rectCaption,
  2253. _ppbd
  2254. );
  2255. // Draw focus rectangle
  2256. if( _ppbd.m_bDrawFocusRect 
  2257. && ( ( !sTitle.IsEmpty() ) || _ppbd.m_nFocusMode == __EBFM_CLIENT_AREA )
  2258. && rcFocus.bottom > rcFocus.top 
  2259. && rcFocus.right > rcFocus.left
  2260. )
  2261. {
  2262. rcFocus.DeflateRect( 2, 2 );
  2263. dc.DrawFocusRect( &rcFocus );
  2264. }
  2265. dc.SetBkMode( nOldBkMode );
  2266. dc.SetBkColor( clrOldBk );
  2267. dc.SetTextColor( clrOldText );
  2268. }
  2269. void CExtPaintManager::PaintPushButtonMdiRight(
  2270. CDC & dc,
  2271. CExtPaintManager::PAINTPUSHBUTTONDATA & _ppbd
  2272. )
  2273. {
  2274. ASSERT_VALID( this );
  2275. ASSERT( dc.GetSafeHdc() != NULL );
  2276. PaintPushButton( dc, _ppbd );
  2277. }
  2278. void CExtPaintManager::PaintPushButtonText(
  2279. CDC & dc,
  2280. CRect & rcCaption,
  2281. CExtPaintManager::PAINTPUSHBUTTONDATA & _ppbd
  2282. )
  2283. {
  2284. ASSERT_VALID( this );
  2285. ASSERT( dc.GetSafeHdc() != NULL );
  2286. if( _ppbd.m_rcClient.IsRectEmpty() )
  2287. return;
  2288. CExtSafeString sTitle( _T("") );
  2289. if( _ppbd.m_sText != NULL )
  2290. sTitle = _ppbd.m_sText;
  2291. bool bRTL = _ppbd.IsRTL();
  2292. if( rcCaption.bottom > rcCaption.top
  2293. && rcCaption.right > rcCaption.left
  2294. && (!sTitle.IsEmpty())
  2295. )
  2296. {
  2297. INT nOldBkMode = dc.SetBkMode( TRANSPARENT );
  2298. if( _ppbd.m_bEnabled )
  2299. {
  2300. if( _ppbd.m_bHover || _ppbd.m_bPushed )
  2301. {
  2302. if( _ppbd.m_bPushed
  2303. && _ppbd.m_clrForceTextPressed != ((COLORREF)-1L)
  2304. )
  2305. dc.SetTextColor( _ppbd.m_clrForceTextPressed );
  2306. else if( _ppbd.m_bHover
  2307. && _ppbd.m_clrForceTextHover != ((COLORREF)-1L)
  2308. )
  2309. dc.SetTextColor( _ppbd.m_clrForceTextHover );
  2310. else if( _ppbd.m_clrForceTextNormal != ((COLORREF)-1L) ) 
  2311. dc.SetTextColor( _ppbd.m_clrForceTextNormal );
  2312. else
  2313. dc.SetTextColor( GetColor( COLOR_BTNTEXT, _ppbd.m_pHelperSrc, _ppbd.m_lParam ) );
  2314. }
  2315. else 
  2316. {
  2317. dc.SetTextColor( 
  2318. ( _ppbd.m_clrForceTextNormal == ((COLORREF)-1L) )
  2319. ? GetColor( COLOR_BTNTEXT, _ppbd.m_pHelperSrc, _ppbd.m_lParam )
  2320. : _ppbd.m_clrForceTextNormal
  2321. );
  2322. }
  2323. }
  2324. else
  2325. {
  2326. dc.SetTextColor(
  2327. ( _ppbd.m_clrForceTextDisabled == ((COLORREF)-1L) )
  2328. ? GetColor( COLOR_3DFACE, _ppbd.m_pHelperSrc, _ppbd.m_lParam )
  2329. : _ppbd.m_clrForceTextDisabled
  2330. );
  2331. }
  2332. CFont * pOldBtnFont = NULL;
  2333. CFont * pCurrFont = NULL;
  2334. CFont fontDummy;
  2335. if( _ppbd.m_hFont != NULL )
  2336. {
  2337. if( _ppbd.m_bHorz )
  2338. pCurrFont = CFont::FromHandle(_ppbd.m_hFont);
  2339. else
  2340. {
  2341. LOGFONT lf;
  2342. ::memset(&lf,0,sizeof(LOGFONT));
  2343. ::GetObject(_ppbd.m_hFont, sizeof(LOGFONT), &lf);
  2344. if( lf.lfEscapement == 0 )
  2345. {
  2346. lf.lfEscapement = __EXT_VERT_FONT_ESCAPEMENT__;
  2347. VERIFY(
  2348. fontDummy.CreateFontIndirect(&lf)
  2349. );
  2350. pCurrFont = &fontDummy;
  2351. }
  2352. else
  2353. {
  2354. // suppose font already prepared
  2355. pCurrFont = CFont::FromHandle( _ppbd.m_hFont );
  2356. }
  2357. }
  2358. } // if( _ppbd.m_hFont != NULL )
  2359. else
  2360. {
  2361. if( _ppbd.m_bHorz )
  2362. {
  2363. if( _ppbd.m_bDefaultPushButton )
  2364. pCurrFont = &m_FontBold;
  2365. else
  2366. pCurrFont = &m_FontNormal;
  2367. }
  2368. else
  2369. {
  2370. if( _ppbd.m_bDefaultPushButton )
  2371. pCurrFont = &m_FontBoldVert;
  2372. else
  2373. pCurrFont = &m_FontNormalVert;
  2374. }
  2375. } // else from if( _ppbd.m_hFont != NULL )
  2376. ASSERT( pCurrFont != NULL );
  2377. pOldBtnFont = dc.SelectObject( pCurrFont );
  2378. ASSERT( pOldBtnFont != NULL );
  2379. CExtSafeString sBtn( sTitle );
  2380. if( _ppbd.m_bHorz )
  2381. {
  2382. CRect rcTextLocation( 0, 0, 0, 0);
  2383. UINT nDtMeasureFlags =
  2384. DT_LEFT | DT_TOP | DT_CALCRECT | ((bRTL || _ppbd.m_bForceRtlText) ? DT_RTLREADING : 0);
  2385. if( _ppbd.m_bWordBreak )
  2386. {
  2387. rcTextLocation = rcCaption;
  2388. rcTextLocation.OffsetRect( -rcTextLocation.TopLeft() );
  2389. rcTextLocation.bottom = rcTextLocation.top;
  2390. nDtMeasureFlags |= DT_WORDBREAK;
  2391. }
  2392. else
  2393. nDtMeasureFlags |= DT_SINGLELINE;
  2394. dc.DrawText(
  2395. sBtn, 
  2396. -1,
  2397. rcTextLocation,
  2398. nDtMeasureFlags
  2399. );
  2400. rcTextLocation.OffsetRect(
  2401. rcCaption.TopLeft() - rcTextLocation.TopLeft()
  2402. );
  2403. UINT nDtDrawFlags = 0;
  2404. if( (_ppbd.m_nTextAlignment&__ALIGN_HORIZ_MASK) == __ALIGN_HORIZ_RIGHT )
  2405. {
  2406. nDtDrawFlags |= DT_RIGHT;
  2407. rcTextLocation.OffsetRect(
  2408. rcCaption.Width() - rcTextLocation.Width(),
  2409. 0
  2410. );
  2411. }
  2412. else if( (_ppbd.m_nTextAlignment&__ALIGN_HORIZ_MASK) == __ALIGN_HORIZ_CENTER )
  2413. {
  2414. nDtDrawFlags |= DT_CENTER;
  2415. rcTextLocation.OffsetRect(
  2416. ( rcCaption.Width() - rcTextLocation.Width() ) / 2,
  2417. 0
  2418. );
  2419. }
  2420. else
  2421. nDtDrawFlags |= DT_LEFT;
  2422. if( (_ppbd.m_nTextAlignment&__ALIGN_VERT_MASK) == __ALIGN_VERT_BOTTOM )
  2423. {
  2424. nDtDrawFlags |= DT_BOTTOM;
  2425. rcTextLocation.OffsetRect(
  2426. 0,
  2427. rcCaption.Height() - rcTextLocation.Height()
  2428. );
  2429. }
  2430. else if( (_ppbd.m_nTextAlignment&__ALIGN_VERT_MASK) == __ALIGN_VERT_TOP )
  2431. {
  2432. nDtDrawFlags |= DT_TOP;
  2433. }
  2434. else
  2435. {
  2436. nDtDrawFlags |= DT_VCENTER;
  2437. rcTextLocation.OffsetRect(
  2438. 0,
  2439. ( rcCaption.Height() - rcTextLocation.Height() ) / 2
  2440. );
  2441. }
  2442. if( _ppbd.m_bWordBreak )
  2443. nDtDrawFlags |= DT_WORDBREAK;
  2444. else
  2445. nDtDrawFlags |= DT_SINGLELINE;
  2446. if( _ppbd.m_bPushed )
  2447. {
  2448. CSize szPushedOffset = GetPushedOffset();
  2449. rcTextLocation.OffsetRect( szPushedOffset );
  2450. }
  2451. if( _ppbd.m_bForceUseDrawTextApiH )
  2452. {
  2453. dc.DrawText(
  2454. sTitle,
  2455. -1,
  2456. &rcTextLocation,
  2457. nDtDrawFlags
  2458. );
  2459. } // if( _ppbd.m_bForceUseDrawTextApiH )
  2460. else
  2461. {
  2462. if( _ppbd.m_bEnabled 
  2463. || _ppbd.m_clrForceTextDisabled != ((COLORREF)-1L)
  2464. )
  2465. {
  2466. dc.DrawText(
  2467. LPCTSTR(sTitle),
  2468. sTitle.GetLength(),
  2469. &rcTextLocation,
  2470. nDtDrawFlags
  2471. );
  2472. }
  2473. else
  2474. {
  2475. CRect rcDrawTextOffs = rcTextLocation;
  2476. rcDrawTextOffs.OffsetRect( 1, 1 );
  2477. COLORREF clrTextRestore =
  2478. dc.SetTextColor(
  2479. GetColor(
  2480. COLOR_3DHILIGHT,
  2481. _ppbd.m_pHelperSrc,
  2482. _ppbd.m_lParam
  2483. )
  2484. );
  2485. dc.DrawText(
  2486. LPCTSTR(sTitle),
  2487. sTitle.GetLength(),
  2488. &rcDrawTextOffs,
  2489. nDtDrawFlags
  2490. );
  2491. dc.SetTextColor(
  2492. GetColor(
  2493. COLOR_3DSHADOW,
  2494. _ppbd.m_pHelperSrc,
  2495. _ppbd.m_lParam
  2496. )
  2497. );
  2498. dc.DrawText(
  2499. LPCTSTR(sTitle),
  2500. sTitle.GetLength(),
  2501. rcTextLocation,
  2502. nDtDrawFlags
  2503. );
  2504. dc.SetTextColor( clrTextRestore );
  2505. } // else from if( _ppbd.m_bEnabled )
  2506. } // else from if( _ppbd.m_bForceUseDrawTextApiH )
  2507. } // if( _ppbd.m_bHorz )
  2508. else
  2509. {
  2510. INT nTextLength = sTitle.GetLength();
  2511. INT nAmpIndex = sTitle.Find( _T('&') );
  2512.   if( nAmpIndex >= 0 )
  2513. sBtn =
  2514. sTitle.Left( nAmpIndex )
  2515. + sTitle.Right( nTextLength - ( nAmpIndex + 1 ) );
  2516. static TCHAR stat_strDummyAmpSeq[] = _T("0101");
  2517. sBtn.Replace( _T("&&"), stat_strDummyAmpSeq );
  2518. sBtn.Remove( _T('&') );
  2519. sBtn.Replace( stat_strDummyAmpSeq, _T("&") );
  2520. CFont * pFont = 
  2521. _ppbd.m_bDefaultPushButton 
  2522. ? &m_FontBold 
  2523. : &m_FontNormal;
  2524. CRect rcText =
  2525. stat_CalcTextDimension( dc, *pFont, sBtn );
  2526. CRect rcTextLocation( 
  2527. 0, 0, 
  2528. rcText.Height(), rcText.Width()
  2529. );
  2530. rcTextLocation.OffsetRect(
  2531. rcCaption.TopLeft()
  2532. );
  2533. if( (_ppbd.m_nTextAlignment&__ALIGN_HORIZ_MASK) == __ALIGN_HORIZ_RIGHT )
  2534. {
  2535. rcTextLocation.OffsetRect(
  2536. 0,
  2537. rcCaption.Height() - rcTextLocation.Height()
  2538. );
  2539. }
  2540. else if( (_ppbd.m_nTextAlignment&__ALIGN_HORIZ_MASK) == __ALIGN_HORIZ_CENTER )
  2541. {
  2542. rcTextLocation.OffsetRect(
  2543. 0,
  2544. ( rcCaption.Height() - rcTextLocation.Height() ) / 2
  2545. );
  2546. }
  2547. if( (_ppbd.m_nTextAlignment&__ALIGN_VERT_MASK) == __ALIGN_VERT_TOP )
  2548. {
  2549. rcTextLocation.OffsetRect(
  2550. rcCaption.Width() - rcTextLocation.Width(),
  2551. 0
  2552. );
  2553. }
  2554. else if( (_ppbd.m_nTextAlignment&__ALIGN_VERT_MASK) == __ALIGN_VERT_CENTER )
  2555. {
  2556. rcTextLocation.OffsetRect(
  2557. ( rcCaption.Width() - rcTextLocation.Width() ) / 2,
  2558. 0
  2559. );
  2560. }
  2561. rcTextLocation.OffsetRect( 1, 0 );
  2562. COLORREF clrText = GetColor( COLOR_3DSHADOW, _ppbd.m_pHelperSrc, _ppbd.m_lParam );
  2563. COLORREF clrShadow = GetColor( COLOR_3DHILIGHT, _ppbd.m_pHelperSrc, _ppbd.m_lParam );
  2564. CPoint ptOffset( 1, 1 );
  2565. if( nAmpIndex >= 0 )
  2566. {
  2567. CPoint ptLineFrom = 
  2568. CPoint(
  2569. rcTextLocation.left,
  2570. rcTextLocation.top + stat_CalcTextWidth( dc, *pFont, sBtn.Left( nAmpIndex ) )
  2571. );
  2572. CPoint ptLineTo =
  2573. CPoint(
  2574. rcTextLocation.left,
  2575. rcTextLocation.top + stat_CalcTextWidth( dc, *pFont, sBtn.Left( nAmpIndex + 1 ) )
  2576. );
  2577. CPen pen;
  2578. CPen * pOldPen = NULL;
  2579. if( _ppbd.m_bEnabled 
  2580. || _ppbd.m_clrForceTextDisabled != ((COLORREF)-1L) 
  2581. )
  2582. {
  2583. pen.CreatePen( PS_SOLID, 0, dc.GetTextColor() );
  2584. pOldPen = dc.SelectObject( &pen );
  2585. dc.MoveTo( ptLineFrom );
  2586. dc.LineTo( ptLineTo );
  2587. dc.SelectObject( pOldPen );
  2588. }
  2589. else
  2590. {
  2591. ptLineFrom += ptOffset;
  2592. ptLineTo += ptOffset;
  2593. pen.CreatePen( PS_SOLID, 0, clrShadow );
  2594. pOldPen = dc.SelectObject( &pen );
  2595. dc.MoveTo( ptLineFrom );
  2596. dc.LineTo( ptLineTo );
  2597. pen.DeleteObject();
  2598. ptLineFrom -= ptOffset;
  2599. ptLineTo -= ptOffset;
  2600. pen.CreatePen( PS_SOLID, 0, clrText );
  2601. dc.SelectObject( &pen );
  2602. dc.MoveTo( ptLineFrom );
  2603. dc.LineTo( ptLineTo );
  2604. pen.DeleteObject();
  2605. dc.SelectObject( pOldPen );
  2606. }
  2607. }
  2608. rcTextLocation.OffsetRect(
  2609. rcTextLocation.Width() + 1,
  2610. 0
  2611. );
  2612. if( _ppbd.m_bEnabled 
  2613. || _ppbd.m_clrForceTextDisabled != ((COLORREF)-1L) 
  2614. )
  2615. {
  2616. dc.DrawText(
  2617. sBtn,
  2618. sBtn.GetLength(),
  2619. rcTextLocation,
  2620. DT_SINGLELINE | DT_NOCLIP | DT_NOPREFIX
  2621. );
  2622. }
  2623. else
  2624. {
  2625. rcTextLocation.OffsetRect( ptOffset.x, ptOffset.y );
  2626. COLORREF clrTextOld = dc.SetTextColor( clrShadow );
  2627. dc.DrawText(
  2628. sBtn,
  2629. sBtn.GetLength(),
  2630. rcTextLocation,
  2631. DT_SINGLELINE | DT_NOCLIP | DT_NOPREFIX
  2632. );
  2633. rcTextLocation.OffsetRect( -ptOffset.x, -ptOffset.y );
  2634. dc.SetTextColor( clrText );
  2635. dc.DrawText(
  2636. sBtn,
  2637. sBtn.GetLength(),
  2638. rcTextLocation,
  2639. DT_SINGLELINE | DT_NOCLIP | DT_NOPREFIX
  2640. );
  2641. dc.SetTextColor( clrTextOld );
  2642. }
  2643. } // else from if( _ppbd.m_bHorz )
  2644. dc.SelectObject( pOldBtnFont );
  2645. dc.SetBkMode( nOldBkMode );
  2646. }
  2647. }
  2648. void CExtPaintManager::PaintPushButtonIcon(
  2649. CDC & dc,
  2650. CRect & rcClient,
  2651. CRect & rcCaption,
  2652. CRect & rcFocus,
  2653. CExtPaintManager::PAINTPUSHBUTTONDATA & _ppbd
  2654. )
  2655. {
  2656. ASSERT_VALID( this );
  2657. ASSERT( dc.GetSafeHdc() != NULL );
  2658. if( _ppbd.m_rcClient.IsRectEmpty() )
  2659. return;
  2660. bool bRTL = _ppbd.IsRTL();
  2661. bool bDrawIcon = true;
  2662. bool bRibbonMode = false;
  2663. #if (!defined __EXT_MFC_NO_RIBBON_BAR)
  2664. if( _ppbd.m_pHelperSrc != NULL
  2665. && _ppbd.m_pHelperSrc->IsKindOf( RUNTIME_CLASS(CExtRibbonButton) )
  2666. )
  2667. { // ribbon button
  2668. bRibbonMode = true;
  2669. CExtRibbonButton * pTBB = STATIC_DOWNCAST( CExtRibbonButton, _ppbd.m_pHelperSrc );
  2670. INT nILV = pTBB->RibbonILV_Get();
  2671. if( nILV == __EXT_RIBBON_ILV_SIMPLE_LARGE )
  2672. {
  2673. bDrawIcon = false;
  2674. INT nTextToIconDistance = Ribbon_GetTextToIconDistance( dc, nILV, pTBB, _ppbd.m_lParam );
  2675. // CSize _sizeIcon = _ppbd.m_pIcon->GetSize();
  2676. CSize _sizeIcon = Ribbon_GetIconSize( pTBB, nILV, _ppbd.m_lParam );
  2677. CRect rcIconPaint = rcCaption;
  2678. CRect rcCP = pTBB->OnRibbonGetContentPadding();
  2679. rcIconPaint.bottom = rcIconPaint.top + _sizeIcon.cx + rcCP.bottom + nTextToIconDistance;
  2680. rcIconPaint.DeflateRect( rcCP.left, rcCP.top, rcCP.right, 0 );
  2681. rcCaption.top += _sizeIcon.cy + nTextToIconDistance + rcCP.top + rcCP.bottom;
  2682. rcCaption.DeflateRect( rcCP.left, 0, rcCP.right, rcCP.bottom );
  2683. if( _ppbd.m_pIcon != NULL && (! _ppbd.m_pIcon->IsEmpty()) )
  2684. {
  2685. PaintIcon(
  2686. dc,
  2687. _ppbd.m_bHorz,
  2688. _ppbd.m_pIcon,
  2689. rcIconPaint,
  2690. _ppbd.m_bPushed,
  2691. _ppbd.m_bEnabled,
  2692. _ppbd.m_bHover,
  2693. _ppbd.m_nIconAlignment,
  2694. _ppbd.m_bForceRtlLayout && _ppbd.m_bHorz,
  2695. NULL,
  2696. NULL,
  2697. &_ppbd.m_rcIconMargins,
  2698. _ppbd.m_clrCustomAccentEffectForIcon
  2699. );
  2700. } // if( _ppbd.m_pIcon != NULL && (! _ppbd.m_pIcon->IsEmpty()) )
  2701. } // if( nILV == __EXT_RIBBON_ILV_SIMPLE_LARGE )
  2702. } // ribbon button
  2703. #endif // (!defined __EXT_MFC_NO_RIBBON_BAR)
  2704. // Draw the icon
  2705. if( bDrawIcon
  2706. && rcClient.bottom > rcClient.top
  2707. && rcClient.right > rcClient.left
  2708. )
  2709. {
  2710. if( _ppbd.m_pIcon != NULL && (! _ppbd.m_pIcon->IsEmpty()) )
  2711. {
  2712. PaintIcon(
  2713. dc,
  2714. _ppbd.m_bHorz,
  2715. _ppbd.m_pIcon,
  2716. rcClient,
  2717. _ppbd.m_bPushed,
  2718. _ppbd.m_bEnabled,
  2719. _ppbd.m_bHover,
  2720. _ppbd.m_nIconAlignment,
  2721. _ppbd.m_bForceRtlLayout && _ppbd.m_bHorz,
  2722. NULL,
  2723. &rcCaption,
  2724. &_ppbd.m_rcIconMargins,
  2725. _ppbd.m_clrCustomAccentEffectForIcon
  2726. );
  2727. if( _ppbd.m_nFocusMode == __EBFM_CAPTION_AREA )
  2728. rcFocus = rcCaption;
  2729. if( _ppbd.m_bHorz
  2730. && _ppbd.m_pHelperSrc != NULL
  2731. && _ppbd.m_pHelperSrc->IsKindOf(RUNTIME_CLASS(CExtPopupMenuWnd))
  2732. )
  2733. // painting tool button with icon in popup menu
  2734. if( bRTL )
  2735. rcCaption.right -= 3;
  2736. else
  2737. rcCaption.left += 3;
  2738. }
  2739. if( ! rcCaption.IsRectEmpty() )
  2740. {
  2741. if( _ppbd.m_bHorz )
  2742. {
  2743. rcCaption.DeflateRect( 
  2744. _ppbd.m_rcTextMargins.left,
  2745. _ppbd.m_rcTextMargins.top,
  2746. _ppbd.m_rcTextMargins.right,
  2747. _ppbd.m_rcTextMargins.bottom
  2748. );
  2749. }
  2750. else
  2751. {
  2752. rcCaption.DeflateRect( 
  2753. _ppbd.m_rcTextMargins.top,
  2754. _ppbd.m_rcTextMargins.right,
  2755. _ppbd.m_rcTextMargins.bottom,
  2756. _ppbd.m_rcTextMargins.left
  2757. );
  2758. }
  2759. }
  2760. } // if( _ppbd.m_pIcon != NULL && (! _ppbd.m_pIcon->IsEmpty()) )
  2761. else
  2762. {
  2763. if( ! bRibbonMode )
  2764. {
  2765. if( _ppbd.m_pHelperSrc != NULL
  2766. && _ppbd.m_pHelperSrc->IsKindOf(RUNTIME_CLASS(CExtPopupMenuWnd))
  2767. )
  2768. {
  2769. if( _ppbd.m_bHorz )
  2770. rcCaption.DeflateRect( 3, 0 );
  2771. else
  2772. rcCaption.DeflateRect( 0, 3 );
  2773. }
  2774. } // if( ! bRibbonMode )
  2775. COLORREF clrForceGlyphColor = COLORREF(-1L);
  2776. if( _ppbd.m_pHelperSrc != NULL
  2777. && ( _ppbd.m_clrForceTextDisabled != COLORREF(-1L)
  2778. || _ppbd.m_clrForceTextNormal   != COLORREF(-1L)
  2779. || _ppbd.m_clrForceTextHover    != COLORREF(-1L)
  2780. || _ppbd.m_clrForceTextPressed  != COLORREF(-1L)
  2781. )
  2782. && _ppbd.m_pHelperSrc->IsKindOf( RUNTIME_CLASS(CExtBarMdiRightButton) )
  2783. )
  2784. {
  2785. if( _ppbd.m_bEnabled )
  2786. {
  2787. if( _ppbd.m_bPushed )
  2788. clrForceGlyphColor = _ppbd.m_clrForceTextPressed;
  2789. else if( _ppbd.m_bHover )
  2790. clrForceGlyphColor = _ppbd.m_clrForceTextHover;
  2791. else if( _ppbd.m_bEnabled )
  2792. clrForceGlyphColor = _ppbd.m_clrForceTextNormal;
  2793. }
  2794. else
  2795. clrForceGlyphColor = _ppbd.m_clrForceTextDisabled;
  2796. }
  2797. PaintSysCmdGlyph(
  2798. dc,
  2799. _ppbd.m_nHelperSysCmdID,
  2800. rcClient,
  2801. false,
  2802. _ppbd.m_bPushed,
  2803. _ppbd.m_bEnabled,
  2804. clrForceGlyphColor
  2805. );
  2806. } // else from if( _ppbd.m_pIcon != NULL && (! _ppbd.m_pIcon->IsEmpty()) )
  2807. }
  2808. }
  2809. CExtPaintManager::PAINTCHECKRADIOBUTTONDATA::PAINTCHECKRADIOBUTTONDATA()
  2810. : m_pHelperSrc( NULL )
  2811. , m_eState( BOX_UNCHECKED )
  2812. , m_lParam( 0L )
  2813. , m_bLeftText( false )
  2814. , m_bMultiline( false )
  2815. , m_rcClient( 0,0,0,0 )
  2816. , m_sText( _T("") )
  2817. , m_bHover( false )
  2818. , m_bPushed( false )
  2819. , m_bEnabled( false )
  2820. , m_bDrawFocusRect( false )
  2821. , m_nTextAlignment( __ALIGN_HORIZ_LEFT | __ALIGN_VERT_CENTER )
  2822. , m_rcTextMargins( 1, 1, 1, 1 )
  2823. , m_hFont( NULL )
  2824. , m_bTransparentBackground( false )
  2825. , m_clrForceTextDisabled( ((COLORREF)-1L) )
  2826. , m_clrForceTextNormal( ((COLORREF)-1L) )
  2827. , m_clrForceTextHover( ((COLORREF)-1L) )
  2828. , m_clrForceTextPressed( ((COLORREF)-1L) )
  2829. , m_clrForceBk( ((COLORREF)-1L) )
  2830. {
  2831. }
  2832. CExtPaintManager::PAINTCHECKRADIOBUTTONDATA::PAINTCHECKRADIOBUTTONDATA(
  2833. CObject * pHelperSrc,
  2834. eBoxState_t eState,
  2835. bool bLeftText,
  2836. bool bMultiline,
  2837. const RECT & rcClient,
  2838. __EXT_MFC_SAFE_LPCTSTR sText,
  2839. bool bHover,
  2840. bool bPushed,
  2841. bool bEnabled,
  2842. bool bDrawFocusRect,
  2843. INT eAlign,
  2844. HFONT hFont, // = NULL
  2845. bool bTransparentBackground // = false
  2846. )
  2847. : m_pHelperSrc( pHelperSrc )
  2848. , m_eState( eState )
  2849. , m_lParam( 0L )
  2850. , m_bLeftText( bLeftText )
  2851. , m_bMultiline( bMultiline )
  2852. , m_rcClient( rcClient )
  2853. , m_sText( (sText==NULL) ? _T("") : sText )
  2854. , m_bHover( bHover )
  2855. , m_bPushed( bPushed )
  2856. , m_bEnabled( bEnabled )
  2857. , m_bDrawFocusRect( bDrawFocusRect )
  2858. , m_nTextAlignment( eAlign )
  2859. , m_rcTextMargins( 1, 1, 1, 1 )
  2860. , m_hFont( hFont )
  2861. , m_bTransparentBackground( bTransparentBackground )
  2862. , m_clrForceTextDisabled( ((COLORREF)-1L) )
  2863. , m_clrForceTextNormal( ((COLORREF)-1L) )
  2864. , m_clrForceTextHover( ((COLORREF)-1L) )
  2865. , m_clrForceTextPressed( ((COLORREF)-1L) )
  2866. , m_clrForceBk( ((COLORREF)-1L) )
  2867. {
  2868. }
  2869. CSize CExtPaintManager::GetCheckButtonBoxSize(
  2870. CDC & dc,
  2871. CExtPaintManager::PAINTCHECKRADIOBUTTONDATA & _pcbd
  2872. ) const
  2873. {
  2874. ASSERT_VALID( this );
  2875. ASSERT( dc.GetSafeHdc() != NULL );
  2876. CSize _sizeBox( 13, 13 );
  2877. _sizeBox.cx = UiScalingDo( _sizeBox.cx, __EUIST_X );
  2878. _sizeBox.cy = UiScalingDo( _sizeBox.cy, __EUIST_Y );
  2879. if( _pcbd.m_pHelperSrc != NULL )
  2880. {
  2881. ASSERT_VALID( _pcbd.m_pHelperSrc );
  2882. CWnd * pWnd = NULL;
  2883. if( _pcbd.m_pHelperSrc->IsKindOf( RUNTIME_CLASS( CExtBarButton ) ) ) 
  2884. {
  2885. CExtBarButton * pTBB = STATIC_DOWNCAST( CExtBarButton, _pcbd.m_pHelperSrc );
  2886. ASSERT_VALID( pTBB );
  2887. CExtToolControlBar * pBar = pTBB->GetBar();
  2888. ASSERT( pBar != NULL );
  2889. ASSERT_VALID( pBar );
  2890. pWnd = pBar;
  2891. }
  2892. else 
  2893. pWnd = DYNAMIC_DOWNCAST( CWnd, _pcbd.m_pHelperSrc );
  2894. ASSERT( pWnd != NULL );
  2895. if( g_PaintManager.m_UxTheme.IsControlsThemed()
  2896. && g_PaintManager.m_UxTheme.OpenThemeData( pWnd->GetSafeHwnd(), VSCLASS_BUTTON ) != NULL
  2897. )
  2898. {
  2899. INT nState = 0;
  2900. switch( _pcbd.m_eState ) 
  2901. {
  2902. case CExtPaintManager::BOX_UNCHECKED:
  2903. nState = CBS_UNCHECKEDNORMAL;
  2904. break;
  2905. case CExtPaintManager::BOX_LDOWN_UNCHECKED:
  2906. nState = CBS_UNCHECKEDPRESSED;
  2907. break;
  2908. case CExtPaintManager::BOX_DISABLED_UNCHECKED:
  2909. nState = CBS_UNCHECKEDDISABLED;
  2910. break;
  2911. case CExtPaintManager::BOX_MOUSE_HOVER_UNCHECKED:
  2912. nState = CBS_UNCHECKEDHOT;
  2913. break;
  2914. case CExtPaintManager::BOX_CHECKED:
  2915. nState = CBS_CHECKEDNORMAL;
  2916. break;
  2917. case CExtPaintManager::BOX_LDOWN_CHECKED:
  2918. nState = CBS_CHECKEDPRESSED;
  2919. break;
  2920. case CExtPaintManager::BOX_MOUSE_HOVER_CHECKED:
  2921. nState = CBS_CHECKEDHOT;
  2922. break;
  2923. case CExtPaintManager::BOX_DISABLED_CHECKED:
  2924. nState = CBS_CHECKEDDISABLED;
  2925. break;
  2926. case CExtPaintManager::BOX_INDETERMINATE:
  2927. nState = CBS_MIXEDNORMAL;
  2928. break;
  2929. case CExtPaintManager::BOX_LDOWN_INDETERMINATE:
  2930. nState = CBS_MIXEDPRESSED;
  2931. break;
  2932. case CExtPaintManager::BOX_MOUSE_HOVER_INDETERMINATE:
  2933. nState = CBS_MIXEDHOT;
  2934. break;
  2935. case CExtPaintManager::BOX_DISABLED_INDETERMINATE:
  2936. nState = CBS_MIXEDDISABLED;
  2937. break;
  2938. } // switch( _pcrbd.m_eState ) 
  2939. VERIFY( 
  2940. g_PaintManager.m_UxTheme.GetThemePartSize(
  2941. dc.GetSafeHdc(),
  2942. BP_CHECKBOX,
  2943. nState,
  2944. NULL,
  2945. CExtUxTheme::__EXT_UX_TS_TRUE,
  2946. &_sizeBox
  2947. ) == S_OK
  2948. );
  2949. g_PaintManager.m_UxTheme.CloseThemeData( true );
  2950. }
  2951. } // if( _pcbd.m_pHelperSrc != NULL )
  2952. return _sizeBox;
  2953. }
  2954. CSize CExtPaintManager::GetRadioButtonBoxSize(
  2955. CDC & dc,
  2956. CExtPaintManager::PAINTCHECKRADIOBUTTONDATA & _pcbd
  2957. ) const
  2958. {
  2959. ASSERT_VALID( this );
  2960. ASSERT( dc.GetSafeHdc() != NULL );
  2961. CSize _sizeBox( 13, 13 );
  2962. _sizeBox.cx = UiScalingDo( _sizeBox.cx, __EUIST_X );
  2963. _sizeBox.cy = UiScalingDo( _sizeBox.cy, __EUIST_Y );
  2964. if( _pcbd.m_pHelperSrc != NULL )
  2965. {
  2966. ASSERT_VALID( _pcbd.m_pHelperSrc );
  2967. CWnd * pWnd =
  2968. DYNAMIC_DOWNCAST( CWnd, _pcbd.m_pHelperSrc );
  2969. ASSERT( pWnd != NULL );
  2970. if( g_PaintManager.m_UxTheme.IsControlsThemed()
  2971. && g_PaintManager.m_UxTheme.OpenThemeData( pWnd->GetSafeHwnd(), VSCLASS_BUTTON ) != NULL
  2972. )
  2973. {
  2974. INT nState = 0;
  2975. switch( _pcbd.m_eState ) 
  2976. {
  2977. case CExtPaintManager::BOX_UNCHECKED:
  2978. nState = CBS_UNCHECKEDNORMAL;
  2979. break;
  2980. case CExtPaintManager::BOX_LDOWN_UNCHECKED:
  2981. nState = CBS_UNCHECKEDPRESSED;
  2982. break;
  2983. case CExtPaintManager::BOX_DISABLED_UNCHECKED:
  2984. nState = CBS_UNCHECKEDDISABLED;
  2985. break;
  2986. case CExtPaintManager::BOX_MOUSE_HOVER_UNCHECKED:
  2987. nState = CBS_UNCHECKEDHOT;
  2988. break;
  2989. case CExtPaintManager::BOX_CHECKED:
  2990. nState = CBS_CHECKEDNORMAL;
  2991. break;
  2992. case CExtPaintManager::BOX_LDOWN_CHECKED:
  2993. nState = CBS_CHECKEDPRESSED;
  2994. break;
  2995. case CExtPaintManager::BOX_MOUSE_HOVER_CHECKED:
  2996. nState = CBS_CHECKEDHOT;
  2997. break;
  2998. case CExtPaintManager::BOX_DISABLED_CHECKED:
  2999. nState = CBS_CHECKEDDISABLED;
  3000. break;
  3001. } // switch( _pcrbd.m_eState ) 
  3002. VERIFY( 
  3003. g_PaintManager.m_UxTheme.GetThemePartSize(
  3004. dc.GetSafeHdc(), 
  3005. BP_RADIOBUTTON, 
  3006. nState, 
  3007. NULL, 
  3008. CExtUxTheme::__EXT_UX_TS_TRUE,
  3009. &_sizeBox
  3010. ) == S_OK
  3011. );
  3012. g_PaintManager.m_UxTheme.CloseThemeData( true );
  3013. }
  3014. } // if( _pcbd.m_pHelperSrc != NULL )
  3015. return _sizeBox;
  3016. }
  3017. void CExtPaintManager::PaintCheckButtonBox(
  3018. CDC & dc,
  3019. CExtPaintManager::PAINTCHECKRADIOBUTTONDATA & _pcrbd
  3020. )
  3021. {
  3022. ASSERT_VALID( this );
  3023. ASSERT( dc.GetSafeHdc() != NULL );
  3024. if( _pcrbd.m_rcClient.IsRectEmpty() )
  3025. return;
  3026. if( _pcrbd.m_pHelperSrc == NULL )
  3027. return;
  3028. ASSERT_VALID( _pcrbd.m_pHelperSrc );
  3029. CWnd * pWnd = NULL;
  3030. if( _pcrbd.m_pHelperSrc->IsKindOf( RUNTIME_CLASS( CExtBarButton ) ) ) 
  3031. {
  3032. CExtBarButton * pTBB = STATIC_DOWNCAST( CExtBarButton, _pcrbd.m_pHelperSrc );
  3033. ASSERT_VALID( pTBB );
  3034. CExtToolControlBar * pBar = pTBB->GetBar();
  3035. ASSERT( pBar != NULL );
  3036. ASSERT_VALID( pBar );
  3037. pWnd = pBar;
  3038. }
  3039. else 
  3040. pWnd = DYNAMIC_DOWNCAST( CWnd, _pcrbd.m_pHelperSrc );
  3041. ASSERT( pWnd != NULL );
  3042. INT nState = 0;
  3043. INT nStateForUxTheme = 0;
  3044. switch( _pcrbd.m_eState ) 
  3045. {
  3046. case CExtPaintManager::BOX_UNCHECKED:
  3047. nStateForUxTheme = CBS_UNCHECKEDNORMAL;
  3048. nState = DFCS_BUTTONCHECK;
  3049. break;
  3050. case CExtPaintManager::BOX_LDOWN_UNCHECKED:
  3051. nStateForUxTheme = CBS_UNCHECKEDPRESSED;
  3052. nState = DFCS_BUTTONCHECK | DFCS_PUSHED;
  3053. break;
  3054. case CExtPaintManager::BOX_DISABLED_UNCHECKED:
  3055. nStateForUxTheme = CBS_UNCHECKEDDISABLED;
  3056. nState = DFCS_BUTTONCHECK | DFCS_INACTIVE;
  3057. break;
  3058. case CExtPaintManager::BOX_MOUSE_HOVER_UNCHECKED:
  3059. nStateForUxTheme = CBS_UNCHECKEDHOT;
  3060. nState = DFCS_BUTTONCHECK;
  3061. break;
  3062. case CExtPaintManager::BOX_CHECKED:
  3063. nStateForUxTheme = CBS_CHECKEDNORMAL;
  3064. nState = DFCS_BUTTONCHECK | DFCS_CHECKED;
  3065. break;
  3066. case CExtPaintManager::BOX_LDOWN_CHECKED:
  3067. nStateForUxTheme = CBS_CHECKEDPRESSED;
  3068. nState = DFCS_BUTTONCHECK | DFCS_CHECKED | DFCS_PUSHED;
  3069. break;
  3070. case CExtPaintManager::BOX_MOUSE_HOVER_CHECKED:
  3071. nStateForUxTheme = CBS_CHECKEDHOT;
  3072. nState = DFCS_BUTTONCHECK | DFCS_CHECKED;
  3073. break;
  3074. case CExtPaintManager::BOX_DISABLED_CHECKED:
  3075. nStateForUxTheme = CBS_CHECKEDDISABLED;
  3076. nState = DFCS_BUTTONCHECK | DFCS_CHECKED | DFCS_INACTIVE;
  3077. break;
  3078. case CExtPaintManager::BOX_INDETERMINATE:
  3079. nStateForUxTheme = CBS_MIXEDNORMAL;
  3080. nState = DFCS_BUTTON3STATE | DFCS_CHECKED;
  3081. break;
  3082. case CExtPaintManager::BOX_LDOWN_INDETERMINATE:
  3083. nStateForUxTheme = CBS_MIXEDPRESSED;
  3084. nState = DFCS_BUTTON3STATE | DFCS_CHECKED | DFCS_PUSHED;
  3085. break;
  3086. case CExtPaintManager::BOX_MOUSE_HOVER_INDETERMINATE:
  3087. nStateForUxTheme = CBS_MIXEDHOT;
  3088. nState = DFCS_BUTTON3STATE | DFCS_CHECKED;
  3089. break;
  3090. case CExtPaintManager::BOX_DISABLED_INDETERMINATE:
  3091. nStateForUxTheme = CBS_MIXEDDISABLED;
  3092. nState = DFCS_BUTTON3STATE | DFCS_CHECKED | DFCS_INACTIVE;
  3093. break;
  3094. } // switch( _pcrbd.m_eState ) 
  3095. INT nOldBkMode = dc.SetBkMode( TRANSPARENT );
  3096. bool bDefaultDrawing = true;
  3097. if( g_PaintManager.m_UxTheme.IsControlsThemed()
  3098. && g_PaintManager.m_UxTheme.OpenThemeData( pWnd->GetSafeHwnd(), VSCLASS_BUTTON ) != NULL
  3099. )
  3100. {
  3101. if( g_PaintManager.m_UxTheme.DrawBackground(
  3102. pWnd->GetSafeHwnd(),
  3103. dc.GetSafeHdc(), 
  3104. BP_CHECKBOX, 
  3105. nStateForUxTheme, 
  3106. &_pcrbd.m_rcBox, 
  3107. &_pcrbd.m_rcBox
  3108. ) == S_OK
  3109. )
  3110. bDefaultDrawing = false;
  3111. g_PaintManager.m_UxTheme.CloseThemeData();
  3112. }
  3113. if( bDefaultDrawing )
  3114. {
  3115. DWORD dwStyle = pWnd->GetStyle();
  3116. if( dwStyle & BS_FLAT )
  3117. nState |= DFCS_FLAT;
  3118. dc.DrawFrameControl( &_pcrbd.m_rcBox, DFC_BUTTON, nState );
  3119. } // if( bDefaultDrawing )
  3120. dc.SetBkMode( nOldBkMode );
  3121. }
  3122. void CExtPaintManager::PaintRadioButtonBox(
  3123. CDC & dc,
  3124. CExtPaintManager::PAINTCHECKRADIOBUTTONDATA & _pcrbd
  3125. )
  3126. {
  3127. ASSERT_VALID( this );
  3128. ASSERT( dc.GetSafeHdc() != NULL );
  3129. if( _pcrbd.m_rcClient.IsRectEmpty() )
  3130. return;
  3131. if( _pcrbd.m_pHelperSrc == NULL )
  3132. return;
  3133. ASSERT_VALID( _pcrbd.m_pHelperSrc );
  3134. CWnd * pWnd =
  3135. DYNAMIC_DOWNCAST( CWnd, _pcrbd.m_pHelperSrc );
  3136. ASSERT( pWnd != NULL );
  3137. INT nState = 0;
  3138. INT nStateForUxTheme = 0;
  3139. switch( _pcrbd.m_eState ) 
  3140. {
  3141. case CExtPaintManager::BOX_UNCHECKED:
  3142. nStateForUxTheme = RBS_UNCHECKEDNORMAL;
  3143. break;
  3144. case CExtPaintManager::BOX_LDOWN_UNCHECKED:
  3145. nStateForUxTheme = RBS_UNCHECKEDPRESSED;
  3146. nState = DFCS_PUSHED;
  3147. break;
  3148. case CExtPaintManager::BOX_DISABLED_UNCHECKED:
  3149. nStateForUxTheme = RBS_UNCHECKEDDISABLED;
  3150. nState = DFCS_INACTIVE;
  3151. break;
  3152. case CExtPaintManager::BOX_MOUSE_HOVER_UNCHECKED:
  3153. nStateForUxTheme = RBS_UNCHECKEDHOT;
  3154. break;
  3155. case CExtPaintManager::BOX_CHECKED:
  3156. nStateForUxTheme = RBS_CHECKEDNORMAL;
  3157. nState = DFCS_CHECKED;
  3158. break;
  3159. case CExtPaintManager::BOX_LDOWN_CHECKED:
  3160. nStateForUxTheme = RBS_CHECKEDPRESSED;
  3161. nState = DFCS_CHECKED | DFCS_PUSHED;
  3162. break;
  3163. case CExtPaintManager::BOX_MOUSE_HOVER_CHECKED:
  3164. nStateForUxTheme = RBS_CHECKEDHOT;
  3165. nState = DFCS_CHECKED;
  3166. break;
  3167. case CExtPaintManager::BOX_DISABLED_CHECKED:
  3168. nStateForUxTheme = RBS_CHECKEDDISABLED;
  3169. nState = DFCS_CHECKED | DFCS_INACTIVE;
  3170. break;
  3171. } // switch( _pcrbd.m_eState ) 
  3172. INT nOldBkMode = dc.SetBkMode( TRANSPARENT );
  3173. bool bDefaultDrawing = true;
  3174. if( g_PaintManager.m_UxTheme.IsControlsThemed()
  3175. && g_PaintManager.m_UxTheme.OpenThemeData( pWnd->GetSafeHwnd(), VSCLASS_BUTTON ) != NULL )
  3176. {
  3177. if( g_PaintManager.m_UxTheme.DrawBackground(
  3178. pWnd->GetSafeHwnd(),
  3179. dc.GetSafeHdc(), 
  3180. BP_RADIOBUTTON, 
  3181. nStateForUxTheme, 
  3182. &_pcrbd.m_rcBox, 
  3183. &_pcrbd.m_rcBox
  3184. ) == S_OK
  3185. )
  3186. bDefaultDrawing = false;
  3187. g_PaintManager.m_UxTheme.CloseThemeData();
  3188. }
  3189. if( bDefaultDrawing )
  3190. {
  3191. DWORD dwStyle = pWnd->GetStyle();
  3192. if( dwStyle & BS_FLAT )
  3193. nState |= DFCS_FLAT;
  3194. dc.DrawFrameControl( &_pcrbd.m_rcBox, DFC_BUTTON, nState | DFCS_BUTTONRADIO );
  3195. } // if( bDefaultDrawing )
  3196. dc.SetBkMode( nOldBkMode );
  3197. }
  3198. void CExtPaintManager::PaintCheckOrRadioButtonText(
  3199. CDC & dc,
  3200. CExtPaintManager::PAINTCHECKRADIOBUTTONDATA & _pcrbd,
  3201. CSize _sizeBox,
  3202. CRect & rcBoxLocation
  3203. )
  3204. {
  3205. ASSERT_VALID( this );
  3206. ASSERT( dc.GetSafeHdc() != NULL );
  3207. if( _pcrbd.m_rcClient.IsRectEmpty() )
  3208. return;
  3209. if( !_pcrbd.m_bEnabled )
  3210. {
  3211. _pcrbd.m_bHover = false;
  3212. _pcrbd.m_bDrawFocusRect = false;
  3213. }
  3214. CRect rcTextArea( _pcrbd.m_rcClient );
  3215. CRect rcTextLocation( 0, 0, 0, 0);
  3216. rcBoxLocation.SetRect(
  3217. _pcrbd.m_rcClient.left,
  3218. _pcrbd.m_rcClient.top,
  3219. _pcrbd.m_rcClient.left + _sizeBox.cx,
  3220. _pcrbd.m_rcClient.top + _sizeBox.cy
  3221. );
  3222. if( (_pcrbd.m_nTextAlignment&__ALIGN_VERT_MASK) == __ALIGN_VERT_BOTTOM )
  3223. rcBoxLocation.OffsetRect(
  3224. 0,
  3225. ( _pcrbd.m_rcClient.bottom - _sizeBox.cy ) - 2
  3226. );
  3227. else if( (_pcrbd.m_nTextAlignment&__ALIGN_VERT_MASK) == __ALIGN_VERT_CENTER )
  3228. rcBoxLocation.OffsetRect(
  3229. 0,
  3230. ( _pcrbd.m_rcClient.Height() - rcBoxLocation.Height() ) / 2
  3231. );
  3232. else
  3233. rcBoxLocation.OffsetRect( 0, 1 );
  3234. // pre-calculate box coordinates
  3235. if( _pcrbd.m_bLeftText )
  3236. {
  3237. rcBoxLocation.OffsetRect(
  3238. _pcrbd.m_rcClient.Width() - rcBoxLocation.Width(),
  3239. 0
  3240. );
  3241. rcTextArea.right = rcBoxLocation.left - 2;
  3242. rcTextArea.left += 1;
  3243. } // if( _pcrbd.m_bLeftText )
  3244. else
  3245. rcTextArea.left = rcBoxLocation.right + 4;
  3246. rcTextArea.DeflateRect( _pcrbd.m_rcTextMargins );
  3247. INT nOldBkMode = dc.SetBkMode( TRANSPARENT );
  3248. // draw text
  3249. INT nTextLength =
  3250. (_pcrbd.m_sText == NULL)
  3251. ? INT(0)
  3252. : INT(_tcslen(_pcrbd.m_sText));
  3253. if( nTextLength > 0
  3254. && rcTextArea.bottom > rcTextArea.top 
  3255. && rcTextArea.right > rcTextArea.left
  3256. )
  3257. {
  3258. // if have valid area, text & focus rect
  3259. ASSERT( _pcrbd.m_sText != NULL );
  3260. COLORREF clrText =
  3261. QueryObjectTextColor(
  3262. dc,
  3263. _pcrbd.m_bEnabled,
  3264. _pcrbd.m_bDrawFocusRect,
  3265. _pcrbd.m_bHover,
  3266. _pcrbd.m_bPushed,
  3267. _pcrbd.m_pHelperSrc
  3268. );
  3269. if( clrText == COLORREF(-1L) )
  3270. {
  3271. if( _pcrbd.m_bEnabled )
  3272. {
  3273. if( _pcrbd.m_bHover || _pcrbd.m_bPushed )
  3274. {
  3275. if( _pcrbd.m_bPushed
  3276. && _pcrbd.m_clrForceTextPressed != ((COLORREF)-1L)
  3277. )
  3278. clrText = _pcrbd.m_clrForceTextPressed;
  3279. else if( _pcrbd.m_bHover
  3280. && _pcrbd.m_clrForceTextHover != ((COLORREF)-1L)
  3281. )
  3282. clrText = _pcrbd.m_clrForceTextHover;
  3283. else if( _pcrbd.m_clrForceTextNormal != ((COLORREF)-1L) ) 
  3284. clrText = _pcrbd.m_clrForceTextNormal;
  3285. else
  3286. clrText = GetColor( COLOR_BTNTEXT, this );
  3287. } // if( _pcrbd.m_bHover || _pcrbd.m_bPushed )
  3288. else
  3289. clrText = 
  3290. ( _pcrbd.m_clrForceTextNormal == ((COLORREF)-1L) )
  3291. ? GetColor( COLOR_BTNTEXT, this )
  3292. : _pcrbd.m_clrForceTextNormal;
  3293. } // if( _pcrbd.m_bEnabled )
  3294. else
  3295. {
  3296. clrText = 
  3297. ( _pcrbd.m_clrForceTextDisabled == ((COLORREF)-1L) )
  3298. ? GetColor( CLR_TEXT_DISABLED, this )
  3299. : _pcrbd.m_clrForceTextDisabled;
  3300. } // else from if( _pcrbd.m_bEnabled )
  3301. } // if( clrText == COLORREF(-1L) )
  3302. COLORREF clrOldText = dc.SetTextColor( clrText );
  3303. CFont * pOldBtnFont = NULL;
  3304. CFont * pCurrFont = NULL;
  3305. if( _pcrbd.m_hFont != NULL )
  3306. pCurrFont = CFont::FromHandle( _pcrbd.m_hFont );
  3307. else
  3308. pCurrFont = &m_FontNormal;
  3309. ASSERT( pCurrFont != NULL );
  3310. pOldBtnFont = dc.SelectObject( pCurrFont );
  3311. UINT nDtMeasureFlags =
  3312. DT_LEFT|DT_TOP|DT_CALCRECT;
  3313. if( _pcrbd.m_bMultiline )
  3314. {
  3315. rcTextLocation = rcTextArea;
  3316. rcTextLocation.OffsetRect( -rcTextLocation.TopLeft() );
  3317. rcTextLocation.bottom = rcTextLocation.top;
  3318. nDtMeasureFlags |= DT_WORDBREAK;
  3319. }
  3320. else
  3321. nDtMeasureFlags |= DT_SINGLELINE;
  3322. dc.DrawText(
  3323. _pcrbd.m_sText, 
  3324. nTextLength,
  3325. rcTextLocation,
  3326. nDtMeasureFlags
  3327. );
  3328. rcTextLocation.OffsetRect(
  3329. rcTextArea.TopLeft() - rcTextLocation.TopLeft()
  3330. );
  3331. UINT nDtDrawFlags = 0;
  3332. if( (_pcrbd.m_nTextAlignment&__ALIGN_HORIZ_MASK) == __ALIGN_HORIZ_RIGHT )
  3333. {
  3334. nDtDrawFlags |= DT_RIGHT;
  3335. rcTextLocation.OffsetRect(
  3336. rcTextArea.Width() - rcTextLocation.Width(),
  3337. 0
  3338. );
  3339. }
  3340. else if( (_pcrbd.m_nTextAlignment&__ALIGN_HORIZ_MASK) == __ALIGN_HORIZ_CENTER )
  3341. {
  3342. nDtDrawFlags |= DT_CENTER;
  3343. rcTextLocation.OffsetRect(
  3344. ( rcTextArea.Width() - rcTextLocation.Width() ) / 2,
  3345. 0
  3346. );
  3347. }
  3348. else
  3349. nDtDrawFlags |= DT_LEFT;
  3350. if( (_pcrbd.m_nTextAlignment&__ALIGN_VERT_MASK) == __ALIGN_VERT_BOTTOM )
  3351. {
  3352. nDtDrawFlags |= DT_BOTTOM;
  3353. rcTextLocation.OffsetRect(
  3354. 0,
  3355. rcTextArea.Height() - rcTextLocation.Height()
  3356. );
  3357. }
  3358. else if( (_pcrbd.m_nTextAlignment&__ALIGN_VERT_MASK) == __ALIGN_VERT_TOP )
  3359. {
  3360. nDtDrawFlags |= DT_TOP;
  3361. }
  3362. else
  3363. {
  3364. nDtDrawFlags |= DT_VCENTER;
  3365. rcTextLocation.OffsetRect(
  3366. 0,
  3367. ( rcTextArea.Height() - rcTextLocation.Height() ) / 2
  3368. );
  3369. }
  3370. if( _pcrbd.m_bMultiline )
  3371. nDtDrawFlags |= DT_WORDBREAK;
  3372. else
  3373. nDtDrawFlags |= DT_SINGLELINE;
  3374. dc.DrawText(
  3375. _pcrbd.m_sText,
  3376. nTextLength,
  3377. rcTextLocation,
  3378. nDtDrawFlags
  3379. );
  3380. dc.SelectObject( pOldBtnFont );
  3381. dc.SetTextColor( clrOldText );
  3382. if( _pcrbd.m_bDrawFocusRect )
  3383. {
  3384. CRect rcFocus( rcTextLocation );
  3385. rcFocus.InflateRect( 2, 2 );
  3386. rcFocus.left = max( rcFocus.left, rcTextArea.left );
  3387. rcFocus.top = max( rcFocus.top, rcTextArea.top );
  3388. rcFocus.right = min( rcFocus.right, rcTextArea.right );
  3389. rcFocus.bottom = min( rcFocus.bottom, rcTextArea.bottom );
  3390. rcFocus.InflateRect(
  3391. _pcrbd.m_bLeftText ? 0 : 1,
  3392. 0,
  3393. _pcrbd.m_bLeftText ? 1 : 0,
  3394. 0
  3395. );
  3396. dc.DrawFocusRect( &rcFocus );
  3397. } // if( _pcrbd.m_bDrawFocusRect )
  3398. } // if have valid area, text & focus rect
  3399. dc.SetBkMode( nOldBkMode );
  3400. }
  3401. void CExtPaintManager::PaintCheckButton(
  3402. CDC & dc,
  3403. CExtPaintManager::PAINTCHECKRADIOBUTTONDATA & _pcrbd
  3404. )
  3405. {
  3406. ASSERT_VALID( this );
  3407. ASSERT( dc.GetSafeHdc() != NULL );
  3408. if( _pcrbd.m_rcClient.IsRectEmpty() )
  3409. return;
  3410. if( !_pcrbd.m_bEnabled )
  3411. {
  3412. _pcrbd.m_bHover = false;
  3413. _pcrbd.m_bDrawFocusRect = false;
  3414. }
  3415. CSize szCheckBox = 
  3416. GetCheckButtonBoxSize( dc, _pcrbd );
  3417. // draw text
  3418. CRect rcBoxLocation;
  3419. PaintCheckOrRadioButtonText(
  3420. dc,
  3421. _pcrbd,
  3422. szCheckBox,
  3423. rcBoxLocation
  3424. );
  3425. // draw check box
  3426. _pcrbd.m_rcBox = rcBoxLocation;
  3427. PaintCheckButtonBox( dc, _pcrbd );
  3428. }
  3429. void CExtPaintManager::PaintRadioButton(
  3430. CDC & dc,
  3431. CExtPaintManager::PAINTCHECKRADIOBUTTONDATA & _pcrbd
  3432. )
  3433. {
  3434. ASSERT_VALID( this );
  3435. ASSERT( dc.GetSafeHdc() != NULL );
  3436. if( _pcrbd.m_rcClient.IsRectEmpty() )
  3437. return;
  3438. if( !_pcrbd.m_bEnabled )
  3439. {
  3440. _pcrbd.m_bHover = false;
  3441. _pcrbd.m_bDrawFocusRect = false;
  3442. }
  3443. CSize szRadioBox = 
  3444. GetRadioButtonBoxSize( dc, _pcrbd );
  3445. // draw text
  3446. CRect rcBoxLocation;
  3447. PaintCheckOrRadioButtonText(
  3448. dc,
  3449. _pcrbd,
  3450. szRadioBox,
  3451. rcBoxLocation
  3452. );
  3453. // draw radio box
  3454. _pcrbd.m_rcBox = rcBoxLocation;
  3455. PaintRadioButtonBox( dc, _pcrbd );
  3456. }
  3457. CSize CExtPaintManager::GetDropDividerMerics()
  3458. {
  3459. ASSERT_VALID( this );
  3460. return CSize( 6, 6 );
  3461. }
  3462. void CExtPaintManager::PaintDropDivider(
  3463. CDC & dc,
  3464. const RECT & rcItem,
  3465. bool bBefore,
  3466. bool bHorz
  3467. )
  3468. {
  3469. ASSERT_VALID( this );
  3470. ASSERT( dc.GetSafeHdc() != NULL );
  3471. CRect rc( rcItem );
  3472. CSize _sizeDDM = GetDropDividerMerics();
  3473. COLORREF clr = GetColor( COLOR_BTNTEXT, this );
  3474. if( bHorz )
  3475. {
  3476. rc.InflateRect( 0, 1 );
  3477. if( bBefore )
  3478. {
  3479. rc.right = rc.left + 1;
  3480. rc.left--;
  3481. } // if( bBefore )
  3482. else
  3483. {
  3484. rc.left = rc.right - 1;
  3485. rc.right++;
  3486. } // else from if( bBefore )
  3487. dc.FillSolidRect( &rc, clr );
  3488. CRect rc2( rc );
  3489. rc2.bottom = rc2.top + 1;
  3490. rc2.InflateRect( 2, 0 );
  3491. dc.FillSolidRect( &rc2, clr );
  3492. rc2.DeflateRect( 1, 0 );
  3493. rc2.bottom++;
  3494. dc.FillSolidRect( &rc2, clr );
  3495. rc2 = rc;
  3496. rc2.top = rc2.bottom - 1;
  3497. rc2.InflateRect( 2, 0 );
  3498. dc.FillSolidRect( &rc2, clr );
  3499. rc2.DeflateRect( 1, 0 );
  3500. rc2.top--;
  3501. dc.FillSolidRect( &rc2, clr );
  3502. } // if( bHorz )
  3503. else
  3504. {
  3505. rc.InflateRect( 1, 0 );
  3506. if( bBefore )
  3507. {
  3508. rc.bottom = rc.top + 1;
  3509. rc.top--;
  3510. } // if( bBefore )
  3511. else
  3512. {
  3513. rc.top = rc.bottom - 1;
  3514. rc.bottom++;
  3515. rc.right--;
  3516. } // else from if( bBefore )
  3517. dc.FillSolidRect( &rc, clr );
  3518. CRect rc2( rc );
  3519. rc2.right = rc2.left + 1;
  3520. rc2.InflateRect( 0, 2 );
  3521. dc.FillSolidRect( &rc2, clr );
  3522. rc2.DeflateRect( 0, 1 );
  3523. rc2.right++;
  3524. dc.FillSolidRect( &rc2, clr );
  3525. rc2 = rc;
  3526. rc2.left = rc2.right - 1;
  3527. rc2.InflateRect( 0, 2 );
  3528. dc.FillSolidRect( &rc2, clr );
  3529. rc2.DeflateRect( 0, 1 );
  3530. rc2.left--;
  3531. dc.FillSolidRect( &rc2, clr );
  3532. } // else from if( bHorz )
  3533. }
  3534. INT CExtPaintManager::GetDropDownButtonWidth(
  3535. CObject * pHelperSrc, // = NULL
  3536. LPARAM lParam // = 0L
  3537. ) const
  3538. {
  3539. ASSERT_VALID( this );
  3540. pHelperSrc; lParam;
  3541. #ifdef _DEBUG
  3542. if( pHelperSrc != NULL )
  3543. {
  3544. ASSERT_VALID( pHelperSrc );
  3545. }
  3546. #endif // _DEBUG
  3547. INT nDD = 15; // 14;
  3548. nDD = UiScalingDo( nDD, __EUIST_X );
  3549. return nDD;
  3550. }
  3551. INT CExtPaintManagerNativeXP::GetDropDownButtonWidth(
  3552. CObject * pHelperSrc, // = NULL
  3553. LPARAM lParam // = 0L
  3554. ) const
  3555. {
  3556. ASSERT_VALID( this );
  3557. #ifdef _DEBUG
  3558. if( pHelperSrc != NULL )
  3559. {
  3560. ASSERT_VALID( pHelperSrc );
  3561. }
  3562. #endif // _DEBUG
  3563. if( ! g_PaintManager.m_UxTheme.IsControlsThemed() )
  3564. return CExtPaintManager::GetDropDownButtonWidth( pHelperSrc, lParam );
  3565. INT nDD = ::GetSystemMetrics( SM_CXHTHUMB );
  3566. nDD = UiScalingDo( nDD, __EUIST_X );
  3567. return nDD;
  3568. }
  3569. INT CExtPaintManagerOffice2007_Impl::GetDropDownButtonWidth(
  3570. CObject * pHelperSrc, // = NULL
  3571. LPARAM lParam // = 0L
  3572. ) const
  3573. {
  3574. ASSERT_VALID( this );
  3575. if( IsHighContrast() )
  3576. return CExtPaintManagerXP::GetDropDownButtonWidth( pHelperSrc, lParam );
  3577. #if (!defined __EXT_MFC_NO_RIBBON_BAR)
  3578. if( pHelperSrc != NULL )
  3579. {
  3580. ASSERT_VALID( pHelperSrc );
  3581. CExtBarButton * pTBB = DYNAMIC_DOWNCAST( CExtBarButton, pHelperSrc );
  3582. if( pTBB != NULL && pTBB->IsRibbonPaintingMode() )
  3583. {
  3584. if( pTBB->IsKindOf( RUNTIME_CLASS(CExtBarTextFieldButton) ) )
  3585. {
  3586. INT nDD = 14;
  3587. //nDD = UiScalingDo( nDD, __EUIST_X );
  3588. return nDD;
  3589. }
  3590. CExtBarButton * pParentTBB = pTBB->ParentButtonGet();
  3591. if( pParentTBB != NULL
  3592. && pParentTBB->IsKindOf( RUNTIME_CLASS(CExtRibbonButtonToolGroup) )
  3593. )
  3594. {
  3595. INT nDD = 10;
  3596. nDD = UiScalingDo( nDD, __EUIST_X );
  3597. return nDD;
  3598. }
  3599. INT nDD = 13;
  3600. nDD = UiScalingDo( nDD, __EUIST_X );
  3601. return nDD;
  3602. } // if( pTBB != NULL && pTBB->IsRibbonPaintingMode() )
  3603. } // if( pHelperSrc != NULL )
  3604. #endif // #if (!defined __EXT_MFC_NO_RIBBON_BAR)
  3605. INT nDD = m_sizeComboBoxDropDown.cx;
  3606. nDD = UiScalingDo( nDD, __EUIST_X );
  3607. return nDD;
  3608. }
  3609. INT CExtPaintManager::GetSpinButtonWidth(
  3610. CObject * pHelperSrc, // = NULL
  3611. LPARAM lParam // = 0L
  3612. ) const
  3613. {
  3614. ASSERT_VALID( this );
  3615. pHelperSrc;
  3616. lParam;
  3617. #ifdef _DEBUG
  3618. if( pHelperSrc != NULL )
  3619. {
  3620. ASSERT_VALID( pHelperSrc );
  3621. }
  3622. #endif // _DEBUG
  3623. INT nDD = 15;
  3624. nDD = UiScalingDo( nDD, __EUIST_X );
  3625. return nDD;
  3626. }
  3627. INT CExtPaintManagerNativeXP::GetSpinButtonWidth(
  3628. CObject * pHelperSrc, // = NULL
  3629. LPARAM lParam // = 0L
  3630. ) const
  3631. {
  3632. ASSERT_VALID( this );
  3633. #ifdef _DEBUG
  3634. if( pHelperSrc != NULL )
  3635. {
  3636. ASSERT_VALID( pHelperSrc );
  3637. }
  3638. #endif // _DEBUG
  3639. if( ! g_PaintManager.m_UxTheme.IsControlsThemed() )
  3640. return CExtPaintManager::GetSpinButtonWidth( pHelperSrc, lParam );
  3641. INT nDD = ::GetSystemMetrics( SM_CXHTHUMB );
  3642. nDD = UiScalingDo( nDD, __EUIST_X );
  3643. return nDD;
  3644. }
  3645. INT CExtPaintManagerOffice2007_Impl::GetSpinButtonWidth(
  3646. CObject * pHelperSrc, // = NULL
  3647. LPARAM lParam // = 0L
  3648. ) const
  3649. {
  3650. ASSERT_VALID( this );
  3651. if( IsHighContrast() )
  3652. return 
  3653. CExtPaintManagerXP::GetSpinButtonWidth(
  3654. pHelperSrc,
  3655. lParam
  3656. );
  3657. #if (!defined __EXT_MFC_NO_RIBBON_BAR)
  3658. if( pHelperSrc != NULL )
  3659. {
  3660. ASSERT_VALID( pHelperSrc );
  3661. CExtBarButton * pTBB =
  3662. DYNAMIC_DOWNCAST( CExtBarButton, pHelperSrc );
  3663. if( pTBB != NULL && pTBB->IsRibbonPaintingMode() )
  3664. {
  3665. if( pTBB->IsKindOf( RUNTIME_CLASS(CExtBarTextFieldButton) ) )
  3666. {
  3667. INT nDD = 14;
  3668. //nDD = UiScalingDo( nDD, __EUIST_X );
  3669. return nDD;
  3670. }
  3671. CExtBarButton * pParentTBB = pTBB->ParentButtonGet();
  3672. if( pParentTBB != NULL
  3673. && pParentTBB->IsKindOf( RUNTIME_CLASS(CExtRibbonButtonToolGroup) )
  3674. )
  3675. {
  3676. INT nDD = 10;
  3677. nDD = UiScalingDo( nDD, __EUIST_X );
  3678. return nDD;
  3679. }
  3680. INT nDD = 13;
  3681. nDD = UiScalingDo( nDD, __EUIST_X );
  3682. return nDD;
  3683. } // if( pTBB != NULL && pTBB->IsRibbonPaintingMode() )
  3684. } // if( pHelperSrc != NULL )
  3685. #endif // #if (!defined __EXT_MFC_NO_RIBBON_BAR)
  3686. INT nDD = m_sizeComboBoxDropDown.cx;
  3687. nDD = UiScalingDo( nDD, __EUIST_X );
  3688. return nDD;
  3689. }
  3690. CRect CExtPaintManager::GetSpinButtonMargins(
  3691. CObject * pHelperSrc, // = NULL
  3692. LPARAM lParam // = 0L
  3693. ) const
  3694. {
  3695. ASSERT_VALID( this );
  3696. pHelperSrc;
  3697. lParam;
  3698. #ifdef _DEBUG
  3699. if( pHelperSrc != NULL )
  3700. {
  3701. ASSERT_VALID( pHelperSrc );
  3702. }
  3703. #endif // _DEBUG
  3704. return CRect( 0, 3, 3, 3 );
  3705. }
  3706. CRect CExtPaintManagerNativeXP::GetSpinButtonMargins(
  3707. CObject * pHelperSrc, // = NULL
  3708. LPARAM lParam // = 0L
  3709. ) const
  3710. {
  3711. ASSERT_VALID( this );
  3712. pHelperSrc;
  3713. lParam;
  3714. #ifdef _DEBUG
  3715. if( pHelperSrc != NULL )
  3716. {
  3717. ASSERT_VALID( pHelperSrc );
  3718. }
  3719. #endif // _DEBUG
  3720. return CRect( 0, 1, 1, 1 );
  3721. }
  3722. void CExtPaintManager::PaintDragSourceRect(
  3723. CDC & dc,
  3724. const RECT & rcItem
  3725. )
  3726. {
  3727. ASSERT_VALID( this );
  3728. ASSERT( dc.GetSafeHdc() != NULL );
  3729. if( !dc.RectVisible(&rcItem) )
  3730. return;
  3731. COLORREF clr = GetColor( COLOR_BTNTEXT, this );
  3732. CRect rc( rcItem );
  3733. dc.Draw3dRect( &rc, clr, clr );
  3734. rc.DeflateRect( 1, 1 );
  3735. dc.Draw3dRect( &rc, clr, clr );
  3736. }
  3737. void CExtPaintManager::PaintMenuSeparator(
  3738. CDC & dc,
  3739. const RECT & rectItem,
  3740. int nIconAreaWidth,
  3741. bool bRarelyUsed,
  3742. bool bIsForceNoLeftGradient,
  3743. CObject * pHelperSrc,
  3744. LPARAM lParam // = 0L
  3745. )
  3746. {
  3747. ASSERT_VALID( this );
  3748. ASSERT( dc.GetSafeHdc() != NULL );
  3749. nIconAreaWidth;
  3750. bIsForceNoLeftGradient;
  3751. if( ::IsRectEmpty(&rectItem) )
  3752. return;
  3753. #if (!defined __EXT_MFC_NO_RIBBON_BAR)
  3754. if( pHelperSrc != NULL
  3755. && pHelperSrc->IsKindOf( RUNTIME_CLASS( CExtRibbonGalleryPopupMenuWnd ) )
  3756. && ( ((CExtPopupMenuWnd*)pHelperSrc)->TrackFlagsGet() & TPMX_RIBBON_FILE_MENU ) == 0
  3757. && ((CExtRibbonGalleryPopupMenuWnd*)pHelperSrc)->ItemGetCount() > 0
  3758. )
  3759. {
  3760. CRect rc;
  3761. ((CExtRibbonGalleryPopupMenuWnd*)pHelperSrc)->_GetClientRect( &rc );
  3762. rc.top = rectItem.top; // + ( rectItem.bottom - rectItem.top ) / 2;
  3763. rc.bottom = rc.top + 2;
  3764. rc.DeflateRect( 3, 0 );
  3765. COLORREF clrBtnShadow = GetColor( COLOR_3DSHADOW, pHelperSrc, lParam );
  3766. COLORREF clrBtnHilight = GetColor( COLOR_3DHILIGHT, pHelperSrc, lParam );
  3767. dc.Draw3dRect(
  3768. rc,
  3769. clrBtnShadow,
  3770. clrBtnHilight
  3771. );
  3772. return;
  3773. }
  3774. #endif // (!defined __EXT_MFC_NO_RIBBON_BAR)
  3775. CRect rectItem2( rectItem );
  3776. if( bRarelyUsed )
  3777. dc.FillRect(
  3778. &rectItem2,
  3779. &m_brushLightDefault
  3780. );
  3781. else
  3782. dc.FillSolidRect(
  3783. &rectItem2,
  3784. GetColor( CLR_3DFACE_OUT, pHelperSrc, lParam )
  3785. );
  3786. int nFunnyDeflateMetric =
  3787. ::GetSystemMetrics(SM_CXSMICON) / 2;
  3788. rectItem2.DeflateRect(
  3789. nFunnyDeflateMetric,
  3790. 0
  3791. );
  3792. COLORREF clrBtnShadow =
  3793. GetColor(
  3794. bRarelyUsed ?
  3795. CLR_3DFACE_OUT : CLR_3DSHADOW_OUT,
  3796. pHelperSrc,
  3797. lParam
  3798. );
  3799. COLORREF clrBtnHilight =
  3800. GetColor( CLR_3DHILIGHT_OUT, pHelperSrc, lParam );
  3801. const int nSeparatorHeight = 2;
  3802. rectItem2.top += ( rectItem2.Height() - nSeparatorHeight ) / 2;
  3803. rectItem2.bottom = rectItem2.top + nSeparatorHeight;
  3804. dc.Draw3dRect(
  3805. rectItem2,
  3806. clrBtnShadow,
  3807. clrBtnHilight
  3808. );
  3809. }
  3810. void CExtPaintManagerXP::PaintMenuSeparator(
  3811. CDC & dc,
  3812. const RECT & rectItem,
  3813. int nIconAreaWidth,
  3814. bool bRarelyUsed,
  3815. bool bIsForceNoLeftGradient,
  3816. CObject * pHelperSrc,
  3817. LPARAM lParam // = 0L
  3818. )
  3819. {
  3820. ASSERT_VALID( this );
  3821. ASSERT( dc.GetSafeHdc() != NULL );
  3822. if( ::IsRectEmpty(&rectItem) )
  3823. return;
  3824. bool bRTL = false;
  3825. if( pHelperSrc != NULL )
  3826. {
  3827. ASSERT_VALID( pHelperSrc );
  3828. CExtPopupMenuWnd * pPopup = DYNAMIC_DOWNCAST( CExtPopupMenuWnd, pHelperSrc );
  3829. if( pPopup != NULL )
  3830. bRTL = pPopup->OnQueryLayoutRTL();
  3831. } // if( pHelperSrc != NULL )
  3832. CRect rc( rectItem ); 
  3833. if( ! bIsForceNoLeftGradient )
  3834. {
  3835. CRect rcBottomFill( rectItem );
  3836. if( bRTL )
  3837. rcBottomFill.left = rcBottomFill.right - nIconAreaWidth;
  3838. else
  3839. rcBottomFill.right = rcBottomFill.left + nIconAreaWidth;
  3840. COLORREF clr3dFace =
  3841. GetColor(
  3842. bRarelyUsed ? XPCLR_RARELY_BORDER : CLR_3DFACE_OUT,
  3843. pHelperSrc,
  3844. lParam 
  3845. );
  3846. dc.FillSolidRect( rcBottomFill, clr3dFace );
  3847. } // if( ! bIsForceNoLeftGradient )
  3848. CRect rcGradient( rectItem );
  3849. if( bRTL )
  3850. rcGradient.left = rcGradient.right - nIconAreaWidth;
  3851. else
  3852. rcGradient.right = rcGradient.left + nIconAreaWidth;
  3853. if( ! bIsForceNoLeftGradient )
  3854. {
  3855. COLORREF clrGradientLeft = ((COLORREF)(-1L)), 
  3856.  clrGradientMiddle((COLORREF)(-1L)),
  3857.  clrGradientRight((COLORREF)(-1L));
  3858. if( bRarelyUsed )
  3859. {
  3860. if( m_nIdxClrMlaRarelyLeft >= 0
  3861. && m_nIdxClrMlaRarelyMiddle >= 0
  3862. && m_nIdxClrMlaRarelyRight >= 0
  3863. && ::GetDeviceCaps( dc.m_hDC, BITSPIXEL ) > 8
  3864. )
  3865. { // if paint gradient on rarely used item's left part
  3866. clrGradientLeft = GetColor( m_nIdxClrMlaRarelyLeft, pHelperSrc, lParam );
  3867. clrGradientMiddle = GetColor( m_nIdxClrMlaRarelyMiddle, pHelperSrc, lParam );
  3868. clrGradientRight = GetColor( m_nIdxClrMlaRarelyRight, pHelperSrc, lParam );
  3869. } // if paint gradient on rarely used item's left part
  3870. } // if( bRarelyUsed )
  3871. else
  3872. {
  3873. if( m_nIdxClrMlaNormLeft >= 0
  3874. && m_nIdxClrMlaNormMiddle >= 0
  3875. && m_nIdxClrMlaNormRight >= 0
  3876. && ::GetDeviceCaps( dc.m_hDC, BITSPIXEL ) > 8
  3877. )
  3878. { // if paint gradient on rarely used item's left part
  3879. clrGradientLeft = GetColor( m_nIdxClrMlaNormLeft, pHelperSrc, lParam );
  3880. clrGradientMiddle = GetColor( m_nIdxClrMlaNormMiddle, pHelperSrc, lParam );
  3881. clrGradientRight = GetColor( m_nIdxClrMlaNormRight, pHelperSrc, lParam );
  3882. } // if paint gradient on rarely used item's left part
  3883. } // else from if( bRarelyUsed )
  3884. if( clrGradientLeft != ((COLORREF)(-1L)) )
  3885. {
  3886. ASSERT( clrGradientRight != ((COLORREF)(-1L)) );
  3887. stat_PaintGradientRect2steps( 
  3888. dc,
  3889. rcGradient, 
  3890. clrGradientLeft,
  3891. clrGradientMiddle, 
  3892. clrGradientRight,
  3893. false,
  3894. 1,
  3895. 2
  3896. );
  3897. } // if( clrGradientLeft != ((COLORREF)(-1L)) )
  3898. } // if( ! bIsForceNoLeftGradient )
  3899. if( bRTL )
  3900. rc.right -= nIconAreaWidth;
  3901. else
  3902. rc.left += nIconAreaWidth;
  3903. dc.FillSolidRect( rc, GetColor( XPCLR_3DFACE_NORMAL, pHelperSrc, lParam ) );
  3904. PAINTMENUITEMDATA _pmid; // fake
  3905. _pmid.m_bForceNoLeftGradient = bIsForceNoLeftGradient;
  3906. PaintMenuItemLeftAreaMarginXP(
  3907. dc,
  3908. _pmid,
  3909. rcGradient,
  3910. rc
  3911. );
  3912. if( bRTL )
  3913. rc.right -= __EXT_MENU_GAP;
  3914. else
  3915. rc.left += __EXT_MENU_GAP;
  3916. rc.top += rc.Height()/2 - 1;
  3917. rc.bottom = rc.top + 1;
  3918. #if (!defined __EXT_MFC_NO_RIBBON_BAR)
  3919. if( pHelperSrc != NULL
  3920. && pHelperSrc->IsKindOf( RUNTIME_CLASS( CExtRibbonGalleryPopupMenuWnd ) )
  3921. && ( ((CExtPopupMenuWnd*)pHelperSrc)->TrackFlagsGet() & TPMX_RIBBON_FILE_MENU ) == 0
  3922. && ((CExtRibbonGalleryPopupMenuWnd*)pHelperSrc)->ItemGetCount() > 0
  3923. )
  3924. {
  3925. CRect rcC;
  3926. ((CExtRibbonGalleryPopupMenuWnd*)pHelperSrc)->_GetClientRect( &rcC );
  3927. rc.left = rcC.left;
  3928. rc.right = rcC.right;
  3929. rc.DeflateRect( 1, 0 );
  3930. }
  3931. #endif // (!defined __EXT_MFC_NO_RIBBON_BAR)
  3932. dc.FillSolidRect(
  3933. rc,
  3934. GetColor( XPCLR_SEPARATOR, pHelperSrc, lParam )
  3935. );
  3936. }
  3937. bool CExtPaintManagerNativeXP::PaintMenuSeparator_UX(
  3938. HWND hWnd,
  3939. CDC & dc,
  3940. const RECT & rectItem,
  3941. int nIconAreaWidth,
  3942. bool bRarelyUsed,
  3943. bool bIsForceNoLeftGradient,
  3944. CObject * pHelperSrc,
  3945. LPARAM lParam // = 0L
  3946. )
  3947. {
  3948. ASSERT_VALID( this );
  3949. ASSERT( dc.GetSafeHdc() != NULL );
  3950. bRarelyUsed;
  3951. bIsForceNoLeftGradient;
  3952. pHelperSrc;
  3953. lParam;
  3954. if( ::IsRectEmpty(&rectItem) )
  3955. return true;
  3956. if( hWnd == NULL || ( ! ::IsWindow( hWnd ) ) )
  3957. return false;
  3958. if( g_PaintManager.m_UxTheme.OpenThemeData( hWnd, VSCLASS_MENU ) == NULL )
  3959. return false;
  3960. bool bRTL = false;
  3961. if( pHelperSrc != NULL )
  3962. {
  3963. ASSERT_VALID( pHelperSrc );
  3964. CExtPopupMenuWnd * pPopup = DYNAMIC_DOWNCAST( CExtPopupMenuWnd, pHelperSrc );
  3965. if( pPopup != NULL )
  3966. bRTL = pPopup->OnQueryLayoutRTL();
  3967. }
  3968. HRESULT hr0 = S_OK, hr1 = S_OK, hr2 = S_OK;
  3969. CRect rcBk( rectItem );
  3970. rcBk.DeflateRect( 1, 0, 1, 0 );
  3971. CRect rcFillSelectedBk = rcBk;
  3972. if( nIconAreaWidth > 0 )
  3973. {
  3974. CRect rcLeftArea = rcFillSelectedBk;
  3975. if( bRTL )
  3976. rcFillSelectedBk.right = rcLeftArea.left = rcLeftArea.right - nIconAreaWidth - 1;
  3977. else
  3978. rcFillSelectedBk.left = rcLeftArea.right = rcLeftArea.left + nIconAreaWidth + 1;
  3979. rcLeftArea.InflateRect( 0, 1 );
  3980. hr0 =
  3981. g_PaintManager.m_UxTheme.DrawBackground(
  3982. hWnd, 
  3983. dc.GetSafeHdc(), 
  3984. MENU_POPUPGUTTER,
  3985. MPI_NORMAL, 
  3986. &rcLeftArea, 
  3987. &rcLeftArea
  3988. );
  3989. }
  3990. hr1 =
  3991. g_PaintManager.m_UxTheme.DrawBackground(
  3992. hWnd, 
  3993. dc.GetSafeHdc(), 
  3994. MENU_POPUPITEM,
  3995. MPI_NORMAL, 
  3996. &rcFillSelectedBk, 
  3997. &rcFillSelectedBk
  3998. );
  3999. CRect rcSeparator( rectItem );
  4000. // rcSeparator.top += ( rectItem.bottom - rectItem.top ) / 2;
  4001. // rcSeparator.bottom = rcSeparator.top + 1;
  4002. rcSeparator.DeflateRect( 3, 1 );
  4003. if( bRTL )
  4004. rcSeparator.right -= nIconAreaWidth;
  4005. else
  4006. rcSeparator.left += nIconAreaWidth;
  4007. hr2 =
  4008. g_PaintManager.m_UxTheme.DrawBackground(
  4009. hWnd, 
  4010. dc.GetSafeHdc(), 
  4011. MENU_POPUPSEPARATOR, 
  4012. 0, 
  4013. &rcSeparator,
  4014. &rcSeparator
  4015. );
  4016. bool bThemedApproachOK = ( hr0 == S_OK && hr1 == S_OK && hr2 == S_OK ) ? true : false;
  4017. g_PaintManager.m_UxTheme.CloseThemeData();
  4018. return bThemedApproachOK;
  4019. }
  4020. void CExtPaintManagerNativeXP::PaintMenuSeparator(
  4021. CDC & dc,
  4022. const RECT & rectItem,
  4023. int nIconAreaWidth,
  4024. bool bRarelyUsed,
  4025. bool bIsForceNoLeftGradient,
  4026. CObject * pHelperSrc,
  4027. LPARAM lParam // = 0L
  4028. )
  4029. {
  4030. ASSERT_VALID( this );
  4031. ASSERT( dc.GetSafeHdc() != NULL );
  4032. if( ::IsRectEmpty(&rectItem) )
  4033. return;
  4034. if( ! g_PaintManager.m_UxTheme.IsControlsThemed() )
  4035. {
  4036. CExtPaintManager::PaintMenuSeparator(
  4037. dc,
  4038. rectItem,
  4039. nIconAreaWidth,
  4040. bRarelyUsed,
  4041. bIsForceNoLeftGradient,
  4042. pHelperSrc,
  4043. lParam
  4044. );
  4045. return;
  4046. } // if( ! g_PaintManager.m_UxTheme.IsControlsThemed() )
  4047. HWND hWnd = NULL;
  4048. CWnd * pWnd = DYNAMIC_DOWNCAST( CWnd, pHelperSrc );