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

界面编程

开发平台:

Visual C++

  1. if( pBar->IsKindOf( RUNTIME_CLASS( CExtRibbonPage ) ) )
  2. dwTrackFlags |= TPMX_COMBINE_NONE|TPMX_RIBBON_MODE|TPMX_NO_HIDE_RARELY;
  3. else
  4. dwTrackFlags |= TPMX_COMBINE_DEFAULT;
  5. #else // (!defined __EXT_MFC_NO_RIBBON_BAR)
  6. dwTrackFlags |= TPMX_COMBINE_DEFAULT;
  7. #endif // (!defined __EXT_MFC_NO_RIBBON_BAR)
  8. if( bForceNoAnimation )
  9. dwTrackFlags |= TPMX_FORCE_NO_ANIMATION;
  10. if( bSelectAny )
  11. dwTrackFlags |= TPMX_SELECT_ANY;
  12. pPopup->TrackFlagsSet( dwTrackFlags );
  13. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  14. CExtCustomizeCmdTreeNode * pNode = GetCmdNode();
  15. if( pNode != NULL )
  16. {
  17. ASSERT_VALID( pNode );
  18. VERIFY( pPopup->UpdateFromCmdTree( pWndCmdTarget->GetSafeHwnd(), pNode ) );
  19. } // if( pNode != NULL )
  20. else
  21. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  22. {
  23. HMENU hMenu = GetMenu();
  24. ASSERT( hMenu != NULL );
  25. ASSERT( ::IsMenu(hMenu) );
  26. CMenu _menu;
  27. _menu.Attach( hMenu );
  28. VERIFY( pPopup->UpdateFromMenu( pWndCmdTarget->GetSafeHwnd(), &_menu, IsContainerOfPopupLikeMenu() ) );
  29. _menu.Detach();
  30. } // else from if( pNode != NULL )
  31. if( IsAppendMdiWindowsMenu() && (! pBar->_IsDockSiteCustomizeMode() ) )
  32. pPopup->UpdateMdiWindowsMenu( pWndCmdTarget );
  33. CExtToolControlBar::g_bMenuTracking = bPrevTBMT;
  34. CRect rcBtn = Rect();
  35. pBar->ClientToScreen( &rcBtn );
  36. pBar->ClientToScreen( &point );
  37. if( CExtToolControlBar::g_bMenuTrackingExpanded )
  38. dwTrackFlags |= TPMX_NO_HIDE_RARELY;
  39. pBar->_SwitchMenuTrackingIndex( pBar->_GetIndexOf( this ) );
  40. if( GetAutoChangeID()
  41. && (! CExtControlBar::FindHelpMode(GetBar()) )
  42. && (! pBar->GetParent()->IsKindOf( RUNTIME_CLASS(CExtPopupMenuWnd) ) )
  43. )
  44. {
  45. HWND hWndBar = pBar->GetSafeHwnd();
  46. CExtToolControlBar::g_bMenuTracking = true;
  47. UINT nResultCmdID = 0;
  48. pPopup->m_hWndNotifyMenuClosed = pBar->GetSafeHwnd();
  49. if( GetSeparatedDropDown() )
  50. m_bDropDownHT = true;
  51. g_pTrackingMenuTBB = this;
  52. if( ! pPopup->TrackPopupMenu(
  53. dwTrackFlags|TPMX_NO_WM_COMMAND|TPMX_DO_MESSAGE_LOOP, point.x, point.y, &rcBtn, GetBar(),
  54. CExtToolControlBar::_CbPaintCombinedContent, &nResultCmdID, true
  55. )
  56. )
  57. {
  58. g_pTrackingMenuTBB = NULL;
  59. //delete pPopup;
  60. if( ! ::IsWindow( hWndBar ) )
  61. return UINT(-1L);
  62. CExtToolControlBar::_CloseTrackingMenus();
  63. return UINT(-1L);
  64. }
  65. g_pTrackingMenuTBB = NULL;
  66. if( ! ::IsWindow( hWndBar ) )
  67. return UINT(-1L);
  68. if( pBar->_GetIndexOf( this ) < 0 )
  69. return UINT(-1L);
  70. ModifyStyle( 0, TBBS_PRESSED );
  71. pBar->Invalidate();
  72. if( nResultCmdID == 0 )
  73. return UINT(-1L);
  74. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  75. SetCmdID( nResultCmdID, true, false );
  76. CExtCustomizeCmdTreeNode * pNodeC = GetCmdNode( false );
  77. if( pNodeC != NULL )
  78. {
  79. ASSERT_VALID( pNodeC );
  80. CExtCmdItem * pCmdItem = g_CmdManager->CmdGetPtr( g_CmdManager->ProfileNameFromWnd( hWndBar ), nResultCmdID );
  81. LPCTSTR strText =
  82. ( pCmdItem != NULL )
  83. ? ( pCmdItem->m_sToolbarText.IsEmpty()
  84. ? ( pCmdItem->m_sMenuText.IsEmpty() ? _T("") : pCmdItem->m_sMenuText )
  85. : pCmdItem->m_sToolbarText
  86. )
  87. : _T("")
  88. ;
  89. pNodeC->SetTextInToolbar( strText );
  90. pNodeC->SetTextInMenu( strText );
  91. } // if( pNodeC != NULL )
  92. // pBar->Invalidate();
  93. CFrameWnd * pFrame = pBar->GetParentFrame();
  94. if( pFrame != NULL )
  95. pFrame->RecalcLayout();
  96. else
  97. pBar->_RecalcLayoutImpl();
  98. #else // (!defined __EXT_MFC_NO_CUSTOMIZE)
  99. SetCmdID( nResultCmdID, true, true );
  100. #endif // else from (!defined __EXT_MFC_NO_CUSTOMIZE)
  101. OnDeliverCmd();
  102. if( ::IsWindow(hWndBar) )
  103. pBar->_UpdateButton( pBar->_GetIndexOf(this) );
  104. } // if( GetAutoChangeID() )
  105. else
  106. {
  107. pPopup->m_hWndNotifyMenuClosed = pBar->GetSafeHwnd();
  108. if( GetSeparatedDropDown() )
  109. m_bDropDownHT = true;
  110. g_pTrackingMenuTBB = this;
  111. if( ! pPopup->TrackPopupMenu(
  112. dwTrackFlags, point.x, point.y, &rcBtn, GetBar(),
  113. CExtToolControlBar::_CbPaintCombinedContent, NULL, true
  114. )
  115. )
  116. {
  117. g_pTrackingMenuTBB = NULL;
  118. //delete pPopup;
  119. CExtToolControlBar::_CloseTrackingMenus();
  120. return UINT(-1L);
  121. }
  122. CExtToolControlBar::g_bMenuTracking = true;
  123. pBar->_SwitchMenuTrackingIndex( pBar->_GetIndexOf( this ) );
  124. } // else from if( GetAutoChangeID() )
  125. return UINT(-1L);
  126. }
  127. void CExtBarButton::OnHover(
  128. CPoint point,
  129. bool bOn,
  130. bool & bSuspendTips
  131. )
  132. {
  133. ASSERT_VALID( this );
  134. ASSERT_VALID( GetBar() );
  135. bSuspendTips = false;
  136. // TRACE2(
  137. // " >> OnHover(%s,%s)n",
  138. // bOn ? " on  " : " off ",
  139. // CExtToolControlBar::g_bMenuTracking ? " on  " : " off "
  140. // );
  141. CExtToolControlBar * pBar = GetBar();
  142. bool bDockSiteCustomizeMode =
  143. pBar->_IsDockSiteCustomizeMode();
  144. if( bDockSiteCustomizeMode )
  145. return;
  146. if( ( pBar->m_pDockSite == NULL
  147. || (! pBar->m_pDockSite->m_bHelpMode )
  148. )
  149. && (! CExtPopupMenuWnd::IsMenuTracking() )
  150. )
  151. {
  152. CExtPopupMenuWnd::ITEMCOVERINGNOTIFICATON _icn(
  153. NULL,
  154. this,
  155. bOn
  156. ? CExtPopupMenuWnd::ITEMCOVERINGNOTIFICATON::__EICN_SET
  157. : CExtPopupMenuWnd::ITEMCOVERINGNOTIFICATON::__EICN_CANCEL
  158. );
  159. HWND hWndOwn = pBar->GetSafeHwnd();
  160. _icn.Notify();
  161. bSuspendTips = _icn.m_bSuspendTips;
  162. if( ! ::IsWindow( hWndOwn ) )
  163. return;
  164. }
  165. if( bOn )
  166. {
  167. CExtBarButton * pTBB = this;
  168. for( ; pTBB != NULL; pTBB = pTBB->ParentButtonGet() )
  169. {
  170. pTBB->SetHover( true );
  171. pTBB->RedrawButton( false );
  172. }
  173. if( ! CExtPopupMenuWnd::IsMenuTracking() )
  174. {
  175. m_bDropDownHT = false;
  176. if( GetSeparatedDropDown() )
  177. {
  178. CRect rcBtnDropDownArea = RectDropDown();
  179. if( rcBtnDropDownArea.PtInRect(point) )
  180. m_bDropDownHT = true;
  181. }
  182. }
  183. /// if( CExtToolControlBar::g_bMenuTracking
  184. /// && CExtPopupMenuWnd::IsMenuTracking()
  185. /// && pBar->m_nBtnIdxHover != pBar->m_nBtnIdxMenuTracking
  186. /// )
  187. /// CExtPopupMenuWnd::CancelMenuTracking();
  188. if( CExtToolControlBar::g_bMenuTracking )
  189. {
  190. if( ! OnQueryHoverBasedMenuTracking() )
  191. return;
  192. OnTrackPopup( point, false, false );
  193. }
  194. else
  195. {
  196. CExtControlBar::stat_SetMessageString(
  197. GetCmdTargetWnd(),
  198. (UINT)(
  199. ( // ( ! pBar->IsKindOf(RUNTIME_CLASS(CExtMenuControlBar)) )
  200. ( ! pBar->_IsSimplifiedDropDownButtons() )
  201. && ( ! IsKindOf(RUNTIME_CLASS(CExtBarContentExpandButton)) )
  202. && CExtCmdManager::IsCommand( GetCmdID(false) )
  203. )
  204. ? GetCmdID(true)
  205. : AFX_IDS_IDLEMESSAGE
  206. )
  207. );
  208. }
  209. CWnd * pCtrl = CtrlGet();
  210. if( pCtrl == NULL
  211. || ( pCtrl->GetStyle() & WS_VISIBLE ) == 0
  212. )
  213. {
  214. CExtMouseCaptureSink * pMCS = (CExtMouseCaptureSink *)GetBar();
  215. if( pMCS != NULL )
  216. pMCS->SetCapture( pBar->GetSafeHwnd() );
  217. }
  218. } // if( bOn )
  219. else
  220. {
  221. if( ! CExtPopupMenuWnd::IsMenuTracking() )
  222. m_bDropDownHT = false;
  223. CExtControlBar::stat_SetMessageString( GetCmdTargetWnd() );
  224. if( ::GetCapture() == pBar->m_hWnd
  225. && pBar->_GetHoverButtonIndex() < 0
  226. )
  227. CExtMouseCaptureSink::ReleaseCapture();
  228. } // else from if( bOn )
  229. }
  230. void CExtBarButton::OnHovering(
  231. CPoint point,
  232. bool & bSuspendTips
  233. )
  234. {
  235. ASSERT_VALID( this );
  236. ASSERT_VALID( GetBar() );
  237. point;
  238. bSuspendTips;
  239. }
  240. CExtBarButton * CExtBarButton::g_pTrackingMenuTBB = NULL;
  241. void CExtBarButton::OnClick(
  242. CPoint point,
  243. bool bDown
  244. )
  245. {
  246. ASSERT_VALID( this );
  247. ASSERT_VALID( GetBar() );
  248. CExtToolControlBar * pBar = GetBar();
  249. bool bDockSiteCustomizeMode =
  250. pBar->_IsDockSiteCustomizeMode();
  251. if( bDockSiteCustomizeMode )
  252. return;
  253. bool bDropDownHT = false;
  254. if( GetSeparatedDropDown() )
  255. {
  256. CRect rcBtnDropDownArea = RectDropDown();
  257. if( rcBtnDropDownArea.PtInRect(point) )
  258. bDropDownHT = true;
  259. }
  260. if( IsDisabled()
  261. && ( (! CanBePressedInDisabledState() )
  262. || (! bDropDownHT )
  263. )
  264. )
  265. return;
  266. if( bDown )
  267. {
  268. bool bThisButtonTrackingMenu = ( g_pTrackingMenuTBB == this && CExtPopupMenuWnd::IsMenuTracking() ) ? true : false;
  269. CExtToolControlBar::_CloseTrackingMenus();
  270. bool bAllowTrackMenu = true;
  271. m_bDropDownHT = false;
  272. if( GetSeparatedDropDown() )
  273. {
  274. m_bDropDownHT = bDropDownHT;
  275. if( ! bDropDownHT )
  276. bAllowTrackMenu = false;
  277. }
  278. if( bAllowTrackMenu && IsAbleToTrackMenu() )
  279. {
  280. if( CExtToolControlBar::g_bMenuTracking
  281. && pBar->_GetIndexOf(this) == pBar->m_nBtnIdxMenuTracking
  282. )
  283. return;
  284. CExtToolControlBar::g_bMenuTrackingExpanded = false;
  285. if( ! bThisButtonTrackingMenu )
  286. OnTrackPopup( point, false, false );
  287. else
  288. {
  289. CExtPopupMenuWnd::CancelMenuTracking();
  290. CExtBarButton::g_pTrackingMenuTBB = NULL;
  291. }
  292. return;
  293. }
  294. CExtControlBar::stat_SetMessageString(
  295. GetCmdTargetWnd(),
  296. (UINT)GetCmdID(false)
  297. );
  298. return;
  299. } // if( bDown )
  300. CExtControlBar::stat_SetMessageString( GetCmdTargetWnd() );
  301. if( ! m_bDropDownHT )
  302. bDropDownHT = false;
  303. m_bDropDownHT = false;
  304. if( (IsAbleToTrackMenu() && (!GetSeparatedDropDown()))
  305. || bDropDownHT
  306. )
  307. return;
  308. CWnd * pCtrl = CtrlGet();
  309. if( pCtrl != NULL
  310. && ( pCtrl->GetStyle() & WS_VISIBLE ) != 0
  311. )
  312. {
  313. ASSERT_VALID( pCtrl );
  314. CExtToolControlBar * pBar = GetSafeBar();
  315. ASSERT_VALID( pBar );
  316. if( CWnd::GetCapture() == pBar )
  317. pBar->SendMessage( WM_CANCELMODE );
  318. //pCtrl->SetFocus();
  319. return;
  320. }
  321. OnDeliverCmd();
  322. }
  323. bool CExtBarButton::OnRClick(
  324. CPoint point,
  325. bool bDown
  326. )
  327. {
  328. ASSERT_VALID( this );
  329. ASSERT_VALID( GetBar() );
  330. point;
  331. bDown;
  332. return false;
  333. }
  334. bool CExtBarButton::OnDblClick(
  335. CPoint point
  336. )
  337. {
  338. ASSERT_VALID( this );
  339. ASSERT_VALID( GetBar() );
  340. point;
  341. if( g_pTrackingMenuTBB == this )
  342. {
  343. CExtPopupMenuWnd::CancelMenuTracking();
  344. CExtBarButton::g_pTrackingMenuTBB = NULL;
  345. }
  346. return false;
  347. }
  348. void CExtBarButton::OnDeliverCmd()
  349. {
  350. ASSERT_VALID( this );
  351. CExtToolControlBar * pBar = GetBar();
  352. ASSERT_VALID( pBar );
  353. if( pBar->OnDeliverCmd( this ) )
  354. return;
  355. if( ! CExtCmdManager::IsCommand( GetCmdID(false) ) )
  356. return;
  357. CExtCmdItem * pCmdItem =
  358. g_CmdManager->CmdGetPtr(
  359. g_CmdManager->ProfileNameFromWnd( pBar->GetSafeHwnd() ),
  360. GetCmdID(true)
  361. );
  362. // ASSERT( pCmdItem != NULL );
  363. if( pCmdItem == NULL )
  364. return;
  365. // the command may be undelivered (i.e. pCmdItem->Deliver() will
  366. // return "false") because no command handler found for it
  367. pCmdItem->Deliver(
  368. pBar,
  369. true
  370. );
  371. }
  372. __EXT_MFC_INT_PTR CExtBarButton::OnToolHitTest(
  373. CPoint point,
  374. TOOLINFO * pTI
  375. )
  376. {
  377. ASSERT_VALID( this );
  378. point; // should be inside this button
  379. if( ! IsDisplayScreenTip() )
  380. return -1;
  381. CExtToolControlBar * pBar = GetBar();
  382. ASSERT_VALID( pBar );
  383. m_bDropDownHT = false;
  384. if( GetSeparatedDropDown() )
  385. {
  386. CRect rcBtnDropDownArea = RectDropDown();
  387. if( rcBtnDropDownArea.PtInRect(point) )
  388. m_bDropDownHT = true;
  389. }
  390. pBar->m_bLastDropDownHT = m_bDropDownHT;
  391. int nCmdID = (int)GetCmdID(true);
  392. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  393. CExtCustomizeCmdTreeNode * pNode = GetCmdNode( true );
  394. if( pNode != NULL )
  395. {
  396. ASSERT_VALID( pNode );
  397. CExtCustomizeCmdScreenTip * pCCST = pNode->CmdScreenTipFindForDisplaying( ! m_bDropDownHT );
  398. if( pCCST != NULL )
  399. {
  400. ASSERT_VALID( pCCST );
  401. if( ! pCCST->IsEmpty() )
  402. {
  403. if( pTI != NULL )
  404. {
  405. CRect rcArea = m_bDropDownHT ? RectDropDown() : RectWithoutDropDown();
  406. ::CopyRect(
  407. &(pTI->rect),
  408. &rcArea
  409. );
  410. pTI->uId = (UINT)nCmdID;
  411. pTI->hwnd = GetSafeBar()->GetSafeHwnd();
  412. //pTI->lpszText = LPSTR_TEXTCALLBACK;
  413. pTI->lpszText = _tcsdup( _T("ScreenTip") );
  414. } // if( pTI != NULL )
  415. return (__EXT_MFC_INT_PTR)nCmdID;
  416. } // if( ! pCCST->IsEmpty() )
  417. } // if( pCCST != NULL )
  418. } // if( pNode != NULL )
  419. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  420. CExtCmdItem * pCmdItem =
  421. g_CmdManager->CmdGetPtr(
  422. g_CmdManager->ProfileNameFromWnd( GetSafeBar()->GetSafeHwnd() ),
  423. nCmdID
  424. );
  425. if( pCmdItem == NULL )
  426. return -1;
  427. if( pCmdItem->m_sTipTool.IsEmpty() )
  428. return -1;
  429. if( pTI != NULL )
  430. {
  431. CRect rcArea = Rect();
  432. ::CopyRect(
  433. &(pTI->rect),
  434. &rcArea
  435. );
  436. CExtSafeString strTip = pCmdItem->m_sTipTool;
  437. if( IsDisplayShortcutKeysOnScreenTip()
  438. && ( ! pCmdItem->m_sAccelText.IsEmpty() )
  439. )
  440. {
  441. if( ! strTip.IsEmpty() )
  442. strTip += _T(" ");
  443. strTip += _T("(");
  444. strTip += pCmdItem->m_sAccelText;
  445. strTip += _T(")");
  446. }
  447. pTI->uId = (UINT)nCmdID;
  448. pTI->hwnd = GetSafeBar()->GetSafeHwnd();
  449. pTI->lpszText = (LPTSTR)
  450. ::calloc(
  451. (strTip.GetLength() + 1),
  452. sizeof(TCHAR)
  453. );
  454. if( pTI->lpszText != NULL )
  455. __EXT_MFC_STRCPY(
  456. pTI->lpszText,
  457. strTip.GetLength() + 1,
  458. strTip
  459. );
  460. else
  461. pTI->lpszText = LPSTR_TEXTCALLBACK;
  462. } // if( pTI != NULL )
  463. return (__EXT_MFC_INT_PTR)nCmdID;
  464. }
  465. LRESULT CExtBarButton::OnHelpHitTest(
  466. CPoint point
  467. )
  468. {
  469. ASSERT_VALID( this );
  470. point; // should be inside this button
  471. if( IsSeparator() )
  472. return -1;
  473. if( IsAbleToTrackMenu() )
  474. {
  475. CExtToolControlBar * pBar = GetBar();
  476. CFrameWnd * pDockSiteOrOther = pBar->m_pDockSite;
  477. if( pDockSiteOrOther == NULL
  478. || (! pDockSiteOrOther->m_bHelpMode )
  479. )
  480. {
  481. pDockSiteOrOther = pBar->GetParentFrame();
  482. if( pDockSiteOrOther != NULL
  483. && pDockSiteOrOther->IsKindOf( RUNTIME_CLASS(CExtMiniDockFrameWnd) )
  484. )
  485. pDockSiteOrOther = pDockSiteOrOther->GetParentFrame();
  486. if( pDockSiteOrOther == NULL
  487. || (! pDockSiteOrOther->m_bHelpMode )
  488. )
  489. return -3L;
  490. }
  491. OnTrackPopup( point, false, false );
  492. return CExtToolControlBar::_ContinueHelpHitTestMode( GetBar() );
  493. } // if( IsAbleToTrackMenu() )
  494. int nCmdID = (int)GetCmdID(false);
  495. CExtCmdItem * pCmdItem =
  496. g_CmdManager->CmdGetPtr(
  497. g_CmdManager->ProfileNameFromWnd( GetSafeBar()->GetSafeHwnd() ),
  498. nCmdID
  499. );
  500. if( pCmdItem == NULL
  501. //|| pCmdItem->m_sTipTool.IsEmpty()
  502. )
  503. return -1;
  504. return nCmdID;
  505. }
  506. /////////////////////////////////////////////////////////////////////////////
  507. // CExtBarCheckBoxButton
  508. IMPLEMENT_DYNCREATE(CExtBarCheckBoxButton, CExtBarButton)
  509. CExtBarCheckBoxButton::CExtBarCheckBoxButton(
  510. CExtToolControlBar * pBar, // = NULL
  511. UINT nCmdID, // = ID_SEPARATOR
  512. UINT nStyle // = 0
  513. )
  514. : CExtBarButton( pBar, nCmdID, nStyle )
  515. {
  516. // m_bAcEnabled = false;
  517. }
  518. CExtBarCheckBoxButton::~CExtBarCheckBoxButton()
  519. {
  520. }
  521. INT CExtBarCheckBoxButton::_GetBoxState() const
  522. {
  523. ASSERT_VALID( this );
  524. ASSERT( CtrlGet() == NULL );
  525. ASSERT( ! IsSeparator() );
  526. const CExtToolControlBar * pBar = GetBar();
  527. ASSERT_VALID( pBar );
  528. bool bDockSiteCustomizeMode =
  529. pBar->_IsDockSiteCustomizeMode();
  530. bool bPressedTracking =
  531. IsPressedTracking();
  532. bool bEnabled =
  533. ( IsDisabled() && (!bDockSiteCustomizeMode) )
  534. ? false : true;
  535. bool bHover =
  536. ( IsHover() && (!bDockSiteCustomizeMode) )
  537. ? true : false;
  538. bool bSelected = false;
  539. CExtMenuControlBar * pMenuBar = 
  540. DYNAMIC_DOWNCAST( CExtMenuControlBar, pBar );
  541. if( pMenuBar != NULL )
  542. {
  543. INT nIndex = pMenuBar->_FlatTrackingIndexGet();
  544. if( nIndex >= 0 
  545. && nIndex == pMenuBar->_GetIndexOf( const_cast < CExtBarCheckBoxButton * > ( this ) ) 
  546. )
  547. bSelected = true;
  548. }
  549. if( bSelected )
  550. bHover = true;
  551. if( (! bDockSiteCustomizeMode )
  552. && (! GetBar()->IsForceHoverWhenMenuTracking() )
  553. )
  554. {
  555. if( CExtToolControlBar::g_bMenuTracking
  556. || CExtPopupMenuWnd::IsMenuTracking()
  557. )
  558. bHover = false;
  559. else if( !bHover )
  560. bHover = IsPressedTracking();
  561. } // if( ! bDockSiteCustomizeMode ...
  562. bool bChecked =
  563. ( (GetStyle()&TBBS_CHECKED) != 0 ) 
  564. ? true 
  565. : false;
  566. bool bIndeterminate =
  567. ( IsIndeterminate() && (!bDockSiteCustomizeMode) )
  568. ? true : false;
  569. INT nCheck = 
  570. bIndeterminate 
  571. ? BST_INDETERMINATE 
  572. : bChecked 
  573. ? BST_CHECKED
  574. : BST_UNCHECKED;
  575. CExtPaintManager::eBoxState_t eState = 
  576. CExtPaintManager::BOX_UNCHECKED;
  577. switch( nCheck ) 
  578. {
  579. case BST_UNCHECKED:
  580. if( bEnabled )
  581. {
  582. if( bHover && !bPressedTracking )
  583. eState = CExtPaintManager::BOX_MOUSE_HOVER_UNCHECKED;
  584. else if( bHover && bPressedTracking )
  585. eState = CExtPaintManager::BOX_LDOWN_UNCHECKED;
  586. else
  587. eState = CExtPaintManager::BOX_UNCHECKED;
  588. }
  589. else
  590. eState = CExtPaintManager::BOX_DISABLED_UNCHECKED;
  591. break;
  592. case BST_CHECKED:
  593. if( bEnabled )
  594. {
  595. if( bHover && !bPressedTracking )
  596. eState = CExtPaintManager::BOX_MOUSE_HOVER_CHECKED;
  597. else if( bHover && bPressedTracking )
  598. eState = CExtPaintManager::BOX_LDOWN_CHECKED;
  599. else
  600. eState = CExtPaintManager::BOX_CHECKED;
  601. }
  602. else
  603. eState = CExtPaintManager::BOX_DISABLED_CHECKED;
  604. break;
  605. case BST_INDETERMINATE:
  606. if( bEnabled )
  607. {
  608. if( bHover && !bPressedTracking )
  609. eState = CExtPaintManager::BOX_MOUSE_HOVER_INDETERMINATE;
  610. else if( bHover && bPressedTracking )
  611. eState = CExtPaintManager::BOX_LDOWN_INDETERMINATE;
  612. else
  613. eState = CExtPaintManager::BOX_INDETERMINATE;
  614. }
  615. else
  616. eState = CExtPaintManager::BOX_DISABLED_INDETERMINATE;
  617. break;
  618. } // switch( nCheck ) 
  619. return eState;
  620. }
  621. CSize CExtBarCheckBoxButton::_GetBoxSize(
  622. CDC & dc
  623. ) const
  624. {
  625. ASSERT_VALID( this );
  626. ASSERT( CtrlGet() == NULL );
  627. ASSERT( ! IsSeparator() );
  628. bool bHorz = IsHorzBarOrientation();
  629. const CExtToolControlBar * pBar = GetBar();
  630. ASSERT_VALID( pBar );
  631. CExtPaintManager::PAINTCHECKRADIOBUTTONDATA _pcrbd;
  632. _pcrbd.m_pHelperSrc = (CObject*)pBar; 
  633. _pcrbd.m_eState = (CExtPaintManager::eBoxState_t) _GetBoxState(); 
  634. _pcrbd.m_nTextAlignment = OnQueryAlignmentText( bHorz );
  635. _pcrbd.m_rcTextMargins = OnQueryMarginsText( bHorz );
  636. CSize szBox = 
  637. pBar->PmBridge_GetPM()->GetCheckButtonBoxSize( dc, _pcrbd );
  638. return szBox;
  639. }
  640. CSize CExtBarCheckBoxButton::CalculateLayout(
  641. CDC & dc,
  642. CSize sizePreCalc,
  643. BOOL bHorz
  644. )
  645. {
  646. ASSERT_VALID( this );
  647. ASSERT( CtrlGet() == NULL );
  648. ASSERT( ! IsSeparator() );
  649. CSize szButton =
  650. CExtBarButton::CalculateLayout(
  651. dc,
  652. sizePreCalc,
  653. bHorz
  654. );
  655. CSize szBox = _GetBoxSize( dc );
  656. if( bHorz )
  657. {
  658. szButton.cx += ( szBox.cx + 4 );
  659. szButton.cy = max( szBox.cy, szButton.cy );
  660. }
  661. else
  662. {
  663. szButton.cy += ( szBox.cy + 4 );
  664. szButton.cx = max( szBox.cx, szButton.cx );
  665. }
  666. return szButton;
  667. }
  668. void CExtBarCheckBoxButton::_PaintBox(
  669. CDC & dc,
  670. CRect & rcBox 
  671. ) const
  672. {
  673. ASSERT_VALID( this );
  674. ASSERT( CtrlGet() == NULL );
  675. ASSERT( ! IsSeparator() );
  676. bool bHorz = IsHorzBarOrientation();
  677. const CExtToolControlBar * pBar = GetBar();
  678. ASSERT_VALID( pBar );
  679. CExtPaintManager::PAINTCHECKRADIOBUTTONDATA _pcrbd;
  680. _pcrbd.m_pHelperSrc = (CObject*)pBar; 
  681. _pcrbd.m_rcClient = rcBox; 
  682. _pcrbd.m_rcBox = rcBox;
  683. _pcrbd.m_eState = (CExtPaintManager::eBoxState_t) _GetBoxState(); 
  684. _pcrbd.m_nTextAlignment = OnQueryAlignmentText( bHorz );
  685. _pcrbd.m_rcTextMargins = OnQueryMarginsText( bHorz );
  686. pBar->PmBridge_GetPM()->PaintCheckButtonBox(
  687. dc,
  688. _pcrbd
  689. );
  690. }
  691. void CExtBarCheckBoxButton::PaintCompound(
  692. CDC & dc,
  693. bool bPaintParentChain,
  694. bool bPaintChildren,
  695. bool bPaintOneNearestChildrenLevelOnly
  696. )
  697. {
  698. ASSERT_VALID( this );
  699. ASSERT_VALID( (&dc) );
  700. ASSERT( ! IsSeparator() );
  701. if( ! IsPaintAble( dc ) )
  702. return;
  703. if( AnimationClient_StatePaint( dc ) )
  704. return;
  705. if( bPaintParentChain )
  706. PaintParentChain( dc );
  707. CWnd * pCtrl = CtrlGet();
  708. if( ( pCtrl != NULL )
  709. && ( ( ! m_bVertDocked )
  710. || GetCtrlVisibleVertically()
  711. )
  712. )
  713. return;
  714. CRect rcArea( m_ActiveRect );
  715. if( rcArea.right <= rcArea.left
  716. || rcArea.bottom <= rcArea.top
  717. )
  718. return;
  719. if( (! IsVisible() )
  720. || (GetStyle() & TBBS_HIDDEN) != 0
  721. || (! dc.RectVisible(&m_ActiveRect) )
  722. )
  723. return;
  724. CRect rcAreaInit( rcArea );
  725. CExtToolControlBar * pBar = GetBar();
  726. ASSERT_VALID( pBar );
  727. bool bHorz = IsHorzBarOrientation();
  728. CRect rcBox( 0,0,0,0 );
  729. CSize szBox = _GetBoxSize( dc );
  730. rcBox.SetRect( 
  731. 0, 0, 
  732. szBox.cx, szBox.cy 
  733. );
  734. rcBox.OffsetRect( 
  735. rcArea.TopLeft() 
  736. );
  737. if( bHorz )
  738. {
  739. rcBox.OffsetRect(
  740. 0,
  741. (rcArea.Height() - szBox.cy) / 2
  742. );
  743. rcArea.left += (szBox.cx + 4);
  744. }
  745. else
  746. {
  747. rcBox.OffsetRect(
  748. (rcArea.Width() - szBox.cx) / 2,
  749. 0
  750. );
  751. rcArea.top += (szBox.cy + 4);
  752. }
  753. _PaintBox(
  754. dc,
  755. rcBox
  756. );
  757. bool bDockSiteCustomizeMode =
  758. pBar->_IsDockSiteCustomizeMode();
  759. bool bPushed =
  760. ( IsPressed() && (!bDockSiteCustomizeMode) )
  761. ? true : false;
  762. bool bEnabled =
  763. ( IsDisabled() && (!bDockSiteCustomizeMode) )
  764. ? false : true;
  765. bool bHover =
  766. ( IsHover() && (!bDockSiteCustomizeMode) )
  767. ? true : false;
  768. if( (! bDockSiteCustomizeMode )
  769. && (! GetBar()->IsForceHoverWhenMenuTracking() )
  770. )
  771. {
  772. if( CExtToolControlBar::g_bMenuTracking
  773. || CExtPopupMenuWnd::IsMenuTracking()
  774. )
  775. bHover = false;
  776. else if( !bHover )
  777. bHover = IsPressedTracking();
  778. //if( bPushed && bHover && IsPressedTracking() )
  779. //bHover = false;
  780. } // if( ! bDockSiteCustomizeMode ...
  781. bool bIndeterminate =
  782. ( IsIndeterminate() && (!bDockSiteCustomizeMode) )
  783. ? true : false;
  784. bool bSelected = false;
  785. CExtMenuControlBar * pMenuBar = 
  786. DYNAMIC_DOWNCAST( CExtMenuControlBar, pBar );
  787. if( pMenuBar != NULL )
  788. {
  789. INT nIndex = pMenuBar->_FlatTrackingIndexGet();
  790. if( nIndex >= 0 
  791. && nIndex == pMenuBar->_GetIndexOf( this ) 
  792. )
  793. bSelected = true;
  794. }
  795. CExtCmdIcon * pIcon = GetIconPtr();
  796. CExtCmdIcon * pIconLarge = NULL;
  797. if( pIcon != NULL
  798. && (! pIcon->IsEmpty() )
  799. && IsLargeIcon()
  800. )
  801. {
  802. CSize _sizeIcon = pIcon->GetSize();
  803. _sizeIcon.cx *= 2;
  804. _sizeIcon.cy *= 2;
  805. pIconLarge = new CExtCmdIcon;
  806. if( pIconLarge->CreateScaledCopy(
  807. *pIcon,
  808. _sizeIcon
  809. )
  810. )
  811. pIcon = pIconLarge;
  812. #ifdef _DEBUG
  813. else
  814. {
  815. ASSERT( FALSE );
  816. }
  817. #endif // _DEBUG
  818. }
  819. CExtSafeString sText = GetText();
  820. HFONT hFont =
  821. (HFONT) pBar
  822. -> OnGetToolbarFont( ! bHorz, false )
  823. -> GetSafeHandle();
  824. CExtPaintManager::PAINTPUSHBUTTONDATA _ppbd(
  825. this,
  826. bHorz,
  827. rcArea,
  828. sText,
  829. pIcon,
  830. true, // bFlat
  831. false, // bHover,
  832. false, // bPushed,
  833. bIndeterminate,
  834. bEnabled,
  835. false, // bDrawBorder
  836. bSelected, // bDrawFocusRect
  837. false, // bDefaultPushButton
  838. 0,
  839. hFont,
  840. ( IsAbleToTrackMenu()
  841. && (! pBar->_IsSimplifiedDropDownButtons() )
  842. ) ? true : false,
  843. 0,
  844. true // bTransparentBackground
  845. );
  846. _ppbd.m_rcBorderSizes = OnQueryBorderSizes( bHorz );
  847. _ppbd.m_nIconAlignment = OnQueryAlignmentIcon( bHorz );
  848. _ppbd.m_nTextAlignment = OnQueryAlignmentText( bHorz );
  849. _ppbd.m_rcIconMargins = OnQueryMarginsIcon( bHorz );
  850. _ppbd.m_rcTextMargins = OnQueryMarginsText( bHorz );
  851. if( GetSeparatedDropDown() )
  852. {
  853. _ppbd.m_bSeparatedDropDown = true;
  854. if( m_bDropDownHT
  855. && bPushed
  856. && ( ! bDockSiteCustomizeMode )
  857. )
  858. _ppbd.m_bPushedDropDown = true;
  859. }
  860. _ppbd.m_clrCustomAccentEffectForIcon =
  861. OnQueryCustomAccentEffectForIcon( dc );
  862. pBar->PmBridge_GetPM()->PaintPushButton( dc, _ppbd );
  863. // CExtPaintManager::PAINTCHECKRADIOBUTTONDATA _pcrbd(
  864. //  this,
  865. //  (CExtPaintManager::eBoxState_t) _GetBoxState(),
  866. //  false,
  867. //  OnQueryMaxButtonWidth( bHorz ) >= 0 ? true : false,
  868. //  rcArea,
  869. //  (LPCTSTR) sText,
  870. //  bHover,
  871. //  bPushed,
  872. //  bEnabled,
  873. //  bSelected,
  874. //  0,
  875. //  hFont,
  876. //  true
  877. //  );
  878. //  _pcrbd.m_nTextAlignment = OnQueryAlignmentText( bHorz );
  879. //  _pcrbd.m_rcTextMargins = OnQueryMarginsText( bHorz );
  880. // 
  881. //  pBar->PmBridge_GetPM()->PaintCheckButton( dc, _pcrbd );
  882. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  883. CExtCustomizeSite * pSite = pBar->GetCustomizeSite();
  884. if( pSite != NULL
  885. && pSite->IsCustomizeMode()
  886. && pSite->CustomizedNodeGet() != NULL
  887. && pSite->CustomizedNodeGet() == GetCmdNode( false )
  888. )
  889. {
  890. pBar->PmBridge_GetPM()->PaintDragSourceRect(
  891. dc,
  892. rcAreaInit
  893. );
  894. }
  895. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  896. if( pIconLarge != NULL )
  897. delete pIconLarge;
  898. if( bPaintChildren )
  899. PaintChildren( dc, bPaintOneNearestChildrenLevelOnly );
  900. }
  901. CExtCmdIcon * CExtBarCheckBoxButton::GetIconPtr()
  902. {
  903. ASSERT_VALID( this );
  904. return NULL;
  905. }
  906. #if (!defined __EXT_MFC_NO_RIBBON_BAR)
  907. bool CExtBarCheckBoxButton::IsNoRibbonLayout() const
  908. {
  909. ASSERT_VALID( this );
  910. return true;
  911. }
  912. INT CExtBarCheckBoxButton::RibbonILV_Get(
  913. INT nType // = 0 // -1 min, 0 current, 1 - max
  914. ) const
  915. {
  916. ASSERT_VALID( this );
  917. nType;
  918. return __EXT_RIBBON_ILV_SIMPLE_NORMAL;
  919. }
  920. CSize CExtBarCheckBoxButton::RibbonILV_CalcSize(
  921. CDC & dc,
  922. INT nILV // = -1 // -1 use current visual level
  923. ) const
  924. {
  925. ASSERT_VALID( this );
  926. nILV;
  927. return
  928. ( const_cast < CExtBarCheckBoxButton * > ( this ) )
  929. -> CalculateLayout( dc, CSize(0,0), IsHorzBarOrientation() );
  930. }
  931. #endif // (!defined __EXT_MFC_NO_RIBBON_BAR)
  932. /////////////////////////////////////////////////////////////////////////////
  933. // CExtBarRadioBoxButton
  934. IMPLEMENT_DYNCREATE(CExtBarRadioBoxButton, CExtBarCheckBoxButton)
  935. CExtBarRadioBoxButton::CExtBarRadioBoxButton(
  936. CExtToolControlBar * pBar, // = NULL
  937. UINT nCmdID, // = ID_SEPARATOR
  938. UINT nStyle // = 0
  939. )
  940. : CExtBarCheckBoxButton( pBar, nCmdID, nStyle )
  941. {
  942. }
  943. CExtBarRadioBoxButton::~CExtBarRadioBoxButton()
  944. {
  945. }
  946. INT CExtBarRadioBoxButton::_GetBoxState() const
  947. {
  948. ASSERT_VALID( this );
  949. ASSERT( CtrlGet() == NULL );
  950. ASSERT( !IsSeparator() );
  951. const CExtToolControlBar * pBar = GetBar();
  952. ASSERT_VALID( pBar );
  953. bool bDockSiteCustomizeMode =
  954. pBar->_IsDockSiteCustomizeMode();
  955. bool bPressedTracking =
  956. IsPressedTracking();
  957. bool bEnabled =
  958. ( IsDisabled() && (!bDockSiteCustomizeMode) )
  959. ? false : true;
  960. bool bHover =
  961. ( IsHover() && (!bDockSiteCustomizeMode) )
  962. ? true : false;
  963. bool bSelected = false;
  964. CExtMenuControlBar * pMenuBar = 
  965. DYNAMIC_DOWNCAST( CExtMenuControlBar, pBar );
  966. if( pMenuBar != NULL )
  967. {
  968. INT nIndex = pMenuBar->_FlatTrackingIndexGet();
  969. if( nIndex >= 0 
  970. && nIndex == pMenuBar->_GetIndexOf( const_cast < CExtBarRadioBoxButton * > ( this ) ) 
  971. )
  972. bSelected = true;
  973. }
  974. if( bSelected )
  975. bHover = true;
  976. if( (! bDockSiteCustomizeMode )
  977. && (! GetBar()->IsForceHoverWhenMenuTracking() )
  978. )
  979. {
  980. if( CExtToolControlBar::g_bMenuTracking
  981. || CExtPopupMenuWnd::IsMenuTracking()
  982. )
  983. bHover = false;
  984. else if( !bHover )
  985. bHover = IsPressedTracking();
  986. } // if( ! bDockSiteCustomizeMode ...
  987. bool bChecked =
  988. ( (GetStyle()&TBBS_CHECKED) != 0 ) 
  989. ? true 
  990. : false;
  991. bool bIndeterminate =
  992. ( IsIndeterminate() && (!bDockSiteCustomizeMode) )
  993. ? true : false;
  994. INT nCheck = 
  995. (bChecked || bIndeterminate)
  996. ? BST_CHECKED
  997. : BST_UNCHECKED;
  998. CExtPaintManager::eBoxState_t eState = 
  999. CExtPaintManager::BOX_UNCHECKED;
  1000. switch( nCheck ) 
  1001. {
  1002. case BST_UNCHECKED:
  1003. if( bEnabled )
  1004. {
  1005. if( bHover && !bPressedTracking )
  1006. eState = CExtPaintManager::BOX_MOUSE_HOVER_UNCHECKED;
  1007. else if( bHover && bPressedTracking )
  1008. eState = CExtPaintManager::BOX_LDOWN_UNCHECKED;
  1009. else
  1010. eState = CExtPaintManager::BOX_UNCHECKED;
  1011. }
  1012. else
  1013. eState = CExtPaintManager::BOX_DISABLED_UNCHECKED;
  1014. break;
  1015. case BST_CHECKED:
  1016. if( bEnabled )
  1017. {
  1018. if( bHover && !bPressedTracking )
  1019. eState = CExtPaintManager::BOX_MOUSE_HOVER_CHECKED;
  1020. else if( bHover && bPressedTracking )
  1021. eState = CExtPaintManager::BOX_LDOWN_CHECKED;
  1022. else
  1023. eState = CExtPaintManager::BOX_CHECKED;
  1024. }
  1025. else
  1026. eState = CExtPaintManager::BOX_DISABLED_CHECKED;
  1027. break;
  1028. } // switch( nCheck ) 
  1029. return eState;
  1030. }
  1031. CSize CExtBarRadioBoxButton::_GetBoxSize(
  1032. CDC & dc
  1033. ) const
  1034. {
  1035. ASSERT_VALID( this );
  1036. ASSERT( CtrlGet() == NULL );
  1037. ASSERT( ! IsSeparator() );
  1038. bool bHorz = IsHorzBarOrientation();
  1039. const CExtToolControlBar * pBar = GetBar();
  1040. ASSERT_VALID( pBar );
  1041. CExtPaintManager::PAINTCHECKRADIOBUTTONDATA _pcrbd;
  1042. _pcrbd.m_pHelperSrc = (CObject*)pBar; 
  1043. _pcrbd.m_eState = (CExtPaintManager::eBoxState_t) _GetBoxState(); 
  1044. _pcrbd.m_nTextAlignment = OnQueryAlignmentText( bHorz );
  1045. _pcrbd.m_rcTextMargins = OnQueryMarginsText( bHorz );
  1046. CSize szBox = 
  1047. pBar->PmBridge_GetPM()->GetRadioButtonBoxSize( dc, _pcrbd );
  1048. return szBox;
  1049. }
  1050. void CExtBarRadioBoxButton::_PaintBox(
  1051. CDC & dc,
  1052. CRect & rcBox 
  1053. ) const
  1054. {
  1055. ASSERT_VALID( this );
  1056. ASSERT( CtrlGet() == NULL );
  1057. ASSERT( ! IsSeparator() );
  1058. bool bHorz = IsHorzBarOrientation();
  1059. const CExtToolControlBar * pBar = GetBar();
  1060. ASSERT_VALID( pBar );
  1061. CExtPaintManager::PAINTCHECKRADIOBUTTONDATA _pcrbd;
  1062. _pcrbd.m_pHelperSrc = (CObject*)pBar; 
  1063. _pcrbd.m_rcClient = rcBox; 
  1064. _pcrbd.m_rcBox = rcBox;
  1065. _pcrbd.m_eState = (CExtPaintManager::eBoxState_t) _GetBoxState(); 
  1066. _pcrbd.m_nTextAlignment = OnQueryAlignmentText( bHorz );
  1067. _pcrbd.m_rcTextMargins = OnQueryMarginsText( bHorz );
  1068. pBar->PmBridge_GetPM()->PaintRadioButtonBox(
  1069. dc,
  1070. _pcrbd
  1071. );
  1072. }
  1073. /////////////////////////////////////////////////////////////////////////////
  1074. // CExtBarLabelButton
  1075. IMPLEMENT_DYNCREATE(CExtBarLabelButton, CExtBarButton)
  1076. CExtBarLabelButton::CExtBarLabelButton(
  1077. CExtToolControlBar * pBar, // = NULL
  1078. UINT nCmdID, // = ID_SEPARATOR
  1079. UINT nStyle // = 0
  1080. )
  1081. : CExtBarButton( pBar, nCmdID, nStyle )
  1082. {
  1083. m_bAcEnabled = false;
  1084. }
  1085. CExtBarLabelButton::~CExtBarLabelButton()
  1086. {
  1087. }
  1088. CExtCmdIcon * CExtBarLabelButton::GetIconPtr()
  1089. {
  1090. ASSERT_VALID( this );
  1091. ASSERT_VALID( GetBar() );
  1092. return NULL;
  1093. }
  1094. void CExtBarLabelButton::OnUpdateCmdUI(
  1095. CWnd * pTarget,
  1096. BOOL bDisableIfNoHndler,
  1097. int nIndex
  1098. )
  1099. {
  1100. ASSERT_VALID( this );
  1101. pTarget;
  1102. bDisableIfNoHndler;
  1103. nIndex;
  1104. CExtToolControlBar * pBar = GetBar();
  1105. ASSERT_VALID( pBar );
  1106. UINT nOldStyle = pBar->GetButtonStyle( nIndex );
  1107. UINT nNewStyle = nOldStyle & (~(TBBS_DISABLED));
  1108. if( nOldStyle != nNewStyle )
  1109. pBar->SetButtonStyle( nIndex, nNewStyle );
  1110. }
  1111. bool CExtBarLabelButton::IsHover() const
  1112. {
  1113. ASSERT_VALID( this );
  1114. ASSERT_VALID( GetBar() );
  1115. return false;
  1116. }
  1117. bool CExtBarLabelButton::IsPressed() const
  1118. {
  1119. ASSERT_VALID( this );
  1120. ASSERT_VALID( GetBar() );
  1121. return false;
  1122. }
  1123. bool CExtBarLabelButton::IsPressedTracking() const
  1124. {
  1125. ASSERT_VALID( this );
  1126. ASSERT_VALID( GetBar() );
  1127. return false;
  1128. }
  1129. bool CExtBarLabelButton::AnimationClient_OnQueryEnabledState(
  1130. INT eAPT // __EAPT_*** animation type
  1131. ) const
  1132. {
  1133. ASSERT_VALID( this );
  1134. eAPT;
  1135. return false;
  1136. }
  1137. void CExtBarLabelButton::SetHover(
  1138. bool bHover // = true
  1139. )
  1140. {
  1141. ASSERT_VALID( this );
  1142. ASSERT_VALID( GetBar() );
  1143. bHover;
  1144. }
  1145. void CExtBarLabelButton::OnHover(
  1146. CPoint point,
  1147. bool bOn,
  1148. bool & bSuspendTips
  1149. )
  1150. {
  1151. ASSERT_VALID( this );
  1152. ASSERT_VALID( GetBar() );
  1153. point;
  1154. bOn;
  1155. bSuspendTips;
  1156. }
  1157. void CExtBarLabelButton::OnClick(
  1158. CPoint point,
  1159. bool bDown
  1160. )
  1161. {
  1162. ASSERT_VALID( this );
  1163. ASSERT_VALID( GetBar() );
  1164. point;
  1165. bDown;
  1166. }
  1167. BOOL CExtBarLabelButton::PutToPopupMenu(
  1168. CExtPopupMenuWnd * pPopup
  1169. )
  1170. {
  1171. ASSERT_VALID( this );
  1172. ASSERT( pPopup != NULL );
  1173. ASSERT( pPopup->GetSafeHwnd() == NULL );
  1174. pPopup;
  1175. return TRUE;
  1176. }
  1177. bool CExtBarLabelButton::OnQueryFlatTrackingEnabled() const
  1178. {
  1179. ASSERT_VALID( this );
  1180. return false;
  1181. }
  1182. #if (!defined __EXT_MFC_NO_RIBBON_BAR)
  1183. bool CExtBarLabelButton::IsNoRibbonLayout() const
  1184. {
  1185. ASSERT_VALID( this );
  1186. return true;
  1187. }
  1188. INT CExtBarLabelButton::RibbonILV_Get(
  1189. INT nType // = 0 // -1 min, 0 current, 1 - max
  1190. ) const
  1191. {
  1192. ASSERT_VALID( this );
  1193. nType;
  1194. return __EXT_RIBBON_ILV_SIMPLE_NORMAL;
  1195. }
  1196. CSize CExtBarLabelButton::RibbonILV_CalcSize(
  1197. CDC & dc,
  1198. INT nILV // = -1 // -1 use current visual level
  1199. ) const
  1200. {
  1201. ASSERT_VALID( this );
  1202. nILV;
  1203. return
  1204. ( const_cast < CExtBarLabelButton * > ( this ) )
  1205. -> CalculateLayout( dc, CSize(0,0), IsHorzBarOrientation() );
  1206. }
  1207. #endif // (!defined __EXT_MFC_NO_RIBBON_BAR)
  1208. /////////////////////////////////////////////////////////////////////////////
  1209. // CExtBarColorButton
  1210. IMPLEMENT_DYNCREATE(CExtBarColorButton, CExtBarButton)
  1211. void CExtBarColorButton::OnSyncIcon()
  1212. {
  1213. ASSERT_VALID( this );
  1214. CExtToolControlBar * pBar = GetSafeBar();
  1215. if( pBar->GetSafeHwnd() == NULL )
  1216. return;
  1217. LPCTSTR strCommandProfileName = g_CmdManager->ProfileNameFromWnd( pBar->GetSafeHwnd() );
  1218. if( strCommandProfileName == NULL )
  1219. return;
  1220. CExtCmdIcon icon;
  1221. OnGenerateColorIcon( icon );
  1222. g_CmdManager->CmdSetIcon( strCommandProfileName, GetCmdID(true), icon );
  1223. }
  1224. CSize CExtBarColorButton::CalculateLayout(
  1225. CDC & dc,
  1226. CSize sizePreCalc,
  1227. BOOL bHorz
  1228. )
  1229. {
  1230. ASSERT_VALID( this );
  1231. ASSERT_VALID( GetBar() );
  1232. ASSERT_VALID( (&dc) );
  1233. ASSERT( dc.GetSafeHdc() != NULL );
  1234. #if (!defined __EXT_MFC_NO_RIBBON_BAR)
  1235. CExtToolControlBar * pBar = GetBar();
  1236. if( pBar != NULL
  1237. && pBar->IsKindOf( RUNTIME_CLASS( CExtRibbonPage ) )
  1238. )
  1239. {
  1240. CSize _size = RibbonILV_CalcSize( dc );
  1241. return _size;
  1242. }
  1243. #endif  // (!defined __EXT_MFC_NO_RIBBON_BAR)
  1244. return CExtBarButton::CalculateLayout( dc, sizePreCalc, bHorz );
  1245. }
  1246. void CExtBarColorButton::OnGenerateColorIcon(
  1247. CExtCmdIcon & icon
  1248. )
  1249. {
  1250. ASSERT_VALID( this );
  1251. icon.Empty();
  1252. CExtToolControlBar * pBar = GetBar();
  1253. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1254. CExtCustomizeCmdTreeNode * pNode = GetCmdNode(false);
  1255. if( pNode != NULL
  1256. && pBar->GetSafeHwnd() != NULL
  1257. && ::IsWindow( pBar->GetSafeHwnd() )
  1258. )
  1259. {
  1260. ASSERT_VALID( GetBar() );
  1261. ASSERT_VALID( pNode );
  1262. CExtCustomizeSite * pSite = pBar->GetCustomizeSite();
  1263. if( pSite != NULL )
  1264. {
  1265. pSite->OnColorItemGenerateIcon( this, pNode, ColorGet(true), icon );
  1266. if( ! icon.IsEmpty() )
  1267. return;
  1268. } // if( pSite != NULL )
  1269. }
  1270. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  1271. //  switch( m_eDIT )
  1272. //  {
  1273. //  case __DIT_FRAME:
  1274. //  icon.AssignFromHICON( CExtPaintManager::stat_GenerateColorIconFrame( ColorGet(true) ), false );
  1275. //  break;
  1276. //  case __DIT_CHAR:
  1277. //  {
  1278. //  LOGFONT lf;
  1279. //  ::memset( &lf, 0 , sizeof(LOGFONT) );
  1280. //  pBar->PmBridge_GetPM()->m_FontBold.GetLogFont( &lf );
  1281. //  __EXT_MFC_STRCPY( lf.lfFaceName, LF_FACESIZE, _T("Times New Roman") );
  1282. //  lf.lfHeight = ::MulDiv( lf.lfHeight, 3, 2 );
  1283. //  lf.lfWeight = 900;
  1284. //  CFont fontForLetter;
  1285. //  VERIFY( fontForLetter.CreateFontIndirect( &lf ) );
  1286. //  ASSERT( fontForLetter.GetSafeHandle() != NULL );
  1287. //  icon.AssignFromHICON( CExtPaintManager::stat_GenerateColorIconChar( ColorGet(true), (HFONT)fontForLetter.GetSafeHandle() ), false );
  1288. //  }
  1289. //  break;
  1290. //  //IDB_EXT_TBB_FILL_BOX_TOOL
  1291. //  //case __DIT_BOX:
  1292. //  default:
  1293. //  icon.AssignFromHICON( CExtPaintManager::stat_GenerateColorIconBox( ColorGet(true) ), false );
  1294. //  break;
  1295. //  } // switch( m_eDIT )
  1296. CExtPaintManager * pPM = pBar->PmBridge_GetPM();
  1297. COLORREF clr = ColorGet( true );
  1298. if( clr == COLORREF(-1L) )
  1299. {
  1300. VERIFY( icon.m_bmpNormal.FromColor( RGB(0,0,0), CSize(16,16), BYTE(0) ) );
  1301. return;
  1302. }
  1303. CExtBarColorButton::e_def_icon_type_t eDIT = CExtBarColorButton::IconTypeGet();
  1304. switch( eDIT )
  1305. {
  1306. case CExtBarColorButton::__DIT_FRAME:
  1307. icon.AssignFromHICON( CExtPaintManager::stat_GenerateColorIconFrame( clr ), false );
  1308. break;
  1309. case CExtBarColorButton::__DIT_CHAR:
  1310. {
  1311. LOGFONT lf;
  1312. ::memset( &lf, 0 , sizeof(LOGFONT) );
  1313. pPM->m_FontBold.GetLogFont( &lf );
  1314. __EXT_MFC_STRCPY( lf.lfFaceName, LF_FACESIZE, _T("Times New Roman") );
  1315. lf.lfHeight = ::MulDiv( lf.lfHeight, 3, 2 );
  1316. lf.lfWeight = 900;
  1317. CFont fontForLetter;
  1318. VERIFY(
  1319. fontForLetter.CreateFontIndirect( &lf )
  1320. );
  1321. ASSERT( fontForLetter.GetSafeHandle() != NULL );
  1322. icon.AssignFromHICON( CExtPaintManager::stat_GenerateColorIconChar( clr, (HFONT)fontForLetter.GetSafeHandle() ), false );
  1323. }
  1324. break;
  1325. case CExtBarColorButton::__DIT_FILL_2007:
  1326. case CExtBarColorButton::__DIT_CHAR_2007:
  1327. {
  1328. icon.Empty();
  1329. icon.m_dwFlags = __EXT_ICON_FLAGS_DEFAULT;
  1330. if( icon.m_bmpNormal.LoadBMP_Resource(
  1331. ( eDIT == CExtBarColorButton::__DIT_FILL_2007 )
  1332. ? ( MAKEINTRESOURCE( IDB_EXT_TBB_COLOR_TOOL_2007_FILL ) )
  1333. : ( MAKEINTRESOURCE( IDB_EXT_TBB_COLOR_TOOL_2007_CHAR ) )
  1334. )
  1335. && icon.m_bmpNormal.Make32( false )
  1336. )
  1337. {
  1338. icon.m_bmpNormal.AlphaColor( RGB(255,0,255), RGB(0,0,0), BYTE(0) );
  1339. CRect rcFill( 1, 12, 14, 15 );
  1340. INT nX, nY;
  1341. for( nY = rcFill.top; nY <= rcFill.bottom; nY ++ )
  1342. {
  1343. for( nX = rcFill.left; nX <= rcFill.right; nX ++ )
  1344. icon.m_bmpNormal.SetPixel( nX, nY, clr, 255 );
  1345. }
  1346. }
  1347. }
  1348. break;
  1349. //case CExtBarColorButton::__DIT_BOX:
  1350. default:
  1351. icon.AssignFromHICON( CExtPaintManager::stat_GenerateColorIconBox( clr ), false );
  1352. break;
  1353. } // switch( switch( eDIT ) )
  1354. }
  1355. __EXT_MFC_SAFE_LPCTSTR CExtBarColorButton::BtnTextDefaultGet() const
  1356. {
  1357. ASSERT_VALID( this );
  1358. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1359. const CExtToolControlBar * pBar = GetBar();
  1360. CExtCustomizeCmdTreeNode * pNode = ((CExtBarButton*)this)->GetCmdNode(false);
  1361. if( pNode != NULL
  1362. && pBar->GetSafeHwnd() != NULL
  1363. && ::IsWindow( pBar->GetSafeHwnd() )
  1364. )
  1365. {
  1366. ASSERT_VALID( GetBar() );
  1367. ASSERT_VALID( pNode );
  1368. CExtCustomizeSite * pSite =
  1369. ((CExtToolControlBar *)GetBar())->GetCustomizeSite();
  1370. if( pSite != NULL )
  1371. pSite->OnColorItemGetBtnTextDefault(
  1372. (CExtBarColorButton*)this,
  1373. pNode,
  1374. (CExtSafeString &)m_sBtnTextColorDefault
  1375. );
  1376. }
  1377. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  1378. return
  1379. m_sBtnTextColorDefault.IsEmpty()
  1380. ? _T("")
  1381. : m_sBtnTextColorDefault
  1382. ;
  1383. }
  1384. void CExtBarColorButton::BtnTextDefaultSet(
  1385. __EXT_MFC_SAFE_LPCTSTR sText // = NULL
  1386. )
  1387. {
  1388. ASSERT_VALID( this );
  1389. m_sBtnTextColorDefault =
  1390. (sText == NULL)
  1391. ? _T("")
  1392. : sText
  1393. ;
  1394. }
  1395. __EXT_MFC_SAFE_LPCTSTR CExtBarColorButton::BtnTextCustomGet() const
  1396. {
  1397. ASSERT_VALID( this );
  1398. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1399. const CExtToolControlBar * pBar = GetBar();
  1400. CExtCustomizeCmdTreeNode * pNode = ((CExtBarButton*)this)->GetCmdNode(false);
  1401. if( pNode != NULL
  1402. && pBar->GetSafeHwnd() != NULL
  1403. && ::IsWindow( pBar->GetSafeHwnd() )
  1404. )
  1405. {
  1406. ASSERT_VALID( GetBar() );
  1407. ASSERT_VALID( pNode );
  1408. CExtCustomizeSite * pSite =
  1409. ((CExtToolControlBar *)GetBar())->GetCustomizeSite();
  1410. if( pSite != NULL )
  1411. pSite->OnColorItemGetBtnTextCustom(
  1412. (CExtBarColorButton*)this,
  1413. pNode,
  1414. (CExtSafeString &)m_sBtnTextColorCustom
  1415. );
  1416. }
  1417. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  1418. return
  1419. m_sBtnTextColorCustom.IsEmpty()
  1420. ? _T("")
  1421. : m_sBtnTextColorCustom
  1422. ;
  1423. }
  1424. void CExtBarColorButton::BtnTextCustomSet(
  1425. __EXT_MFC_SAFE_LPCTSTR sText // = NULL
  1426. )
  1427. {
  1428. ASSERT_VALID( this );
  1429. m_sBtnTextColorCustom =
  1430. (sText == NULL)
  1431. ? _T("")
  1432. : sText
  1433. ;
  1434. }
  1435. CExtCmdIcon * CExtBarColorButton::GetIconPtr()
  1436. {
  1437. ASSERT_VALID( this );
  1438. ASSERT_VALID( GetBar() );
  1439. return CExtBarButton::GetIconPtr();
  1440. }
  1441. BOOL CExtBarColorButton::PutToPopupMenu(
  1442. CExtPopupMenuWnd * pPopup
  1443. )
  1444. {
  1445. ASSERT_VALID( this );
  1446. ASSERT_VALID( GetBar() );
  1447. ASSERT( CtrlGet() == NULL );
  1448. ASSERT( IsAbleToTrackMenu() );
  1449. CExtToolControlBar * pBar = GetBar();
  1450. ASSERT_VALID( pBar );
  1451. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1452. if( pBar->m_pDockSite != NULL )
  1453. {
  1454. ASSERT_VALID( pBar->m_pDockSite );
  1455. if( !pPopup->ItemInsert( GetCmdID(true) ) )
  1456. {
  1457. ASSERT( FALSE );
  1458. return FALSE;
  1459. }
  1460. CExtPopupMenuWnd::MENUITEMDATA & mi = 
  1461. pPopup->ItemGetInfo( pPopup->ItemGetCount() - 1 );
  1462. VERIFY(
  1463. mi.UpdateFromCmdTree(
  1464. pBar->m_pDockSite->m_hWnd,
  1465. GetCmdNode(false),
  1466. GetCmdNode(false)->GetOwnIndex(),
  1467. pPopup
  1468. )
  1469. );
  1470. pPopup->ItemGetInfo(
  1471. pPopup->ItemGetCount() - 1
  1472. ).SetCmdNode( GetCmdNode() );
  1473. if( (pPopup->TrackFlagsGet()&TPMX_PALETTE) != 0 )
  1474. mi.SetChildCombine();
  1475. return TRUE;
  1476. } // if( pBar->m_pDockSite != NULL )
  1477. #endif
  1478. CExtCmdItem * pCmdItem =
  1479. g_CmdManager->CmdGetPtr(
  1480. g_CmdManager->ProfileNameFromWnd( GetSafeBar()->GetSafeHwnd() ),
  1481. GetCmdID(false)
  1482. );
  1483. CExtCmdIcon icon;
  1484. CExtCmdIcon * pIcon = GetIconPtr();
  1485. if( pIcon != NULL 
  1486.    && (!pIcon->IsEmpty())
  1487.    )
  1488.    icon = *pIcon;
  1489. CExtPopupColorMenuWnd * pColorPopup =
  1490. STATIC_DOWNCAST(
  1491. CExtPopupColorMenuWnd,
  1492. CExtPopupMenuWnd::InstantiatePopupMenu(
  1493. pBar->GetSafeHwnd(),
  1494. RUNTIME_CLASS(CExtPopupColorMenuWnd),
  1495. this
  1496. )
  1497. );
  1498. VERIFY(
  1499. pPopup->ItemInsertSpecPopup(
  1500. pColorPopup,
  1501. -1,
  1502. pCmdItem->m_sMenuText,
  1503. icon
  1504. )
  1505. );
  1506. pColorPopup->m_lParamCookie = LParamCookieGet();
  1507. pColorPopup->m_bEnableBtnColorDefault = IsEnabledBtnColorDefault();
  1508. pColorPopup->m_bEnableBtnColorCustom = IsEnabledBtnColorCustom();
  1509. pColorPopup->m_clrDefault = ColorGet( false );
  1510. pColorPopup->m_clrInitial = ColorGet( true );
  1511. CExtSafeString _s( BtnTextDefaultGet() );
  1512. if( !_s.IsEmpty() )
  1513. pColorPopup->m_sBtnTextColorDefault = _s;
  1514. _s = BtnTextCustomGet();
  1515. if( !_s.IsEmpty() )
  1516. pColorPopup->m_sBtnTextColorCustom = _s;
  1517. CExtPopupMenuWnd::MENUITEMDATA & mi = 
  1518. pPopup->ItemGetInfo( pPopup->ItemGetCount() - 1 );
  1519. mi.Enable( IsEnabled() ? true : false );
  1520. if( (pPopup->TrackFlagsGet()&TPMX_PALETTE) != 0 )
  1521. mi.SetChildCombine();
  1522. return TRUE;
  1523. }
  1524. bool CExtBarColorButton::CanBePressedInDisabledState()
  1525. {
  1526. return false;
  1527. }
  1528. bool CExtBarColorButton::IsAbleToTrackMenu(
  1529. bool bCustomizeMode // = false
  1530. ) const
  1531. {
  1532. ASSERT_VALID( this );
  1533. if( bCustomizeMode )
  1534. return false;
  1535. return true;
  1536. }
  1537. UINT CExtBarColorButton::OnTrackPopup(
  1538. CPoint point,
  1539. bool bSelectAny,
  1540. bool bForceNoAnimation
  1541. )
  1542. {
  1543. ASSERT_VALID( this );
  1544. ASSERT_VALID( GetBar() );
  1545. ASSERT( CtrlGet() == NULL );
  1546. ASSERT( IsAbleToTrackMenu() );
  1547. CExtToolControlBar * pBar = GetBar();
  1548. bool bDockSiteCustomizeMode =
  1549. pBar->_IsDockSiteCustomizeMode();
  1550. if( bDockSiteCustomizeMode )
  1551. return UINT(-1L);
  1552. if( !IsEnabled() )
  1553. return UINT(-1L);
  1554. bool bPrevTBMT = CExtToolControlBar::g_bMenuTracking;
  1555. if( CExtToolControlBar::g_bMenuTracking
  1556. //&& CExtPopupMenuWnd::IsMenuTracking()
  1557. && pBar->_GetIndexOf(this) ==
  1558. pBar->GetMenuTrackingButton()
  1559. )
  1560. return UINT(-1L);
  1561. CExtToolControlBar::_CloseTrackingMenus();
  1562. if( pBar->IsFloating() )
  1563. {
  1564. pBar->ActivateTopParent();
  1565. CFrameWnd * pFrame =
  1566. pBar->GetDockingFrame();
  1567. ASSERT_VALID( pFrame );
  1568. pFrame->BringWindowToTop();
  1569. }
  1570. CWnd * pWndCmdTarget = GetCmdTargetWnd();
  1571. ASSERT_VALID( pWndCmdTarget );
  1572. CExtPopupColorMenuWnd * pPopup =
  1573. STATIC_DOWNCAST(
  1574. CExtPopupColorMenuWnd,
  1575. CExtPopupMenuWnd::InstantiatePopupMenu(
  1576. pBar->GetSafeHwnd(),
  1577. RUNTIME_CLASS(CExtPopupColorMenuWnd),
  1578. this
  1579. )
  1580. );
  1581. VERIFY(
  1582. pPopup->CreatePopupMenu(
  1583. GetCmdTargetWnd()->GetSafeHwnd()
  1584. )
  1585. );
  1586. pPopup->m_lParamCookie = LParamCookieGet();
  1587. pPopup->m_bEnableBtnColorDefault = IsEnabledBtnColorDefault();
  1588. pPopup->m_bEnableBtnColorCustom = IsEnabledBtnColorCustom();
  1589. pPopup->m_clrDefault = ColorGet( false );
  1590. pPopup->m_clrInitial = ColorGet( true );
  1591. CExtSafeString _s( BtnTextDefaultGet() );
  1592. if( !_s.IsEmpty() )
  1593. pPopup->m_sBtnTextColorDefault = _s;
  1594. _s = BtnTextCustomGet();
  1595. if( !_s.IsEmpty() )
  1596. pPopup->m_sBtnTextColorCustom = _s;
  1597. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1598. pPopup->_CmdNodeSet( GetCmdNode(false) );
  1599. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  1600. CExtToolControlBar::g_bMenuTracking = bPrevTBMT;
  1601. CRect rcBtn = Rect();
  1602. pBar->ClientToScreen( &rcBtn );
  1603. pBar->ClientToScreen( &point );
  1604. DWORD dwTrackFlags = OnGetTrackPopupFlags() | TPMX_OWNERDRAW_FIXED;
  1605. #if (!defined __EXT_MFC_NO_RIBBON_BAR)
  1606. if( pBar->IsKindOf( RUNTIME_CLASS( CExtRibbonPage ) ) )
  1607. dwTrackFlags |= TPMX_COMBINE_NONE|TPMX_RIBBON_MODE|TPMX_NO_HIDE_RARELY;
  1608. else
  1609. dwTrackFlags |= TPMX_COMBINE_DEFAULT;
  1610. #else // (!defined __EXT_MFC_NO_RIBBON_BAR)
  1611. dwTrackFlags |= TPMX_COMBINE_DEFAULT;
  1612. #endif // (!defined __EXT_MFC_NO_RIBBON_BAR)
  1613. if( bSelectAny )
  1614. dwTrackFlags |= TPMX_SELECT_ANY;
  1615. if( CExtToolControlBar::g_bMenuTrackingExpanded )
  1616. dwTrackFlags |= TPMX_NO_HIDE_RARELY;
  1617. if( bForceNoAnimation )
  1618. dwTrackFlags |= TPMX_FORCE_NO_ANIMATION;
  1619. pBar->_SwitchMenuTrackingIndex(
  1620. pBar->_GetIndexOf( this )
  1621. );
  1622. UINT nResultCmdID = (UINT)-1L;
  1623. pPopup->m_hWndNotifyMenuClosed = pBar->GetSafeHwnd();
  1624. if( GetSeparatedDropDown() )
  1625. m_bDropDownHT = true;
  1626. g_pTrackingMenuTBB = this;
  1627. if( ! pPopup->TrackPopupMenu(
  1628. dwTrackFlags,
  1629. point.x,
  1630. point.y,
  1631. &rcBtn,
  1632. GetBar(),
  1633. CExtToolControlBar::_CbPaintCombinedContent,
  1634. &nResultCmdID,
  1635. true
  1636. )
  1637. )
  1638. {
  1639. g_pTrackingMenuTBB = NULL;
  1640. //delete pPopup;
  1641. CExtToolControlBar::_CloseTrackingMenus();
  1642. return UINT(-1L);
  1643. }
  1644. CExtToolControlBar::g_bMenuTracking = true;
  1645. pBar->_SwitchMenuTrackingIndex(
  1646. pBar->_GetIndexOf( this )
  1647. );
  1648. return UINT(-1L);
  1649. }
  1650. __EXT_MFC_INT_PTR CExtBarColorButton::OnToolHitTest(
  1651. CPoint point,
  1652. TOOLINFO * pTI
  1653. )
  1654. {
  1655. ASSERT_VALID( this );
  1656. return CExtBarButton::OnToolHitTest( point, pTI );
  1657. }
  1658. LRESULT CExtBarColorButton::OnHelpHitTest(
  1659. CPoint point
  1660. )
  1661. {
  1662. ASSERT_VALID( this );
  1663. // return
  1664. // CExtBarButton::OnHelpHitTest( point );
  1665. point;
  1666. return GetCmdID();
  1667. }
  1668. void CExtBarColorButton::OnUpdateCmdUI(
  1669. CWnd * pTarget,
  1670. BOOL bDisableIfNoHndler,
  1671. int nIndex
  1672. )
  1673. {
  1674. ASSERT_VALID( this );
  1675. CExtBarButton::OnUpdateCmdUI(
  1676. pTarget,
  1677. bDisableIfNoHndler,
  1678. nIndex
  1679. );
  1680. }
  1681. bool CExtBarColorButton::CanStartCommandDrag()
  1682. {
  1683. ASSERT_VALID( this );
  1684. ASSERT_VALID( GetBar() );
  1685. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1686. if( GetCmdNode() == NULL )
  1687. return false;
  1688. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  1689. return true;
  1690. }
  1691. LPARAM CExtBarColorButton::LParamCookieGet() const
  1692. {
  1693. ASSERT_VALID( this );
  1694. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1695. CExtCustomizeCmdTreeNode * pNode = ((CExtBarButton*)this)->GetCmdNode(false);
  1696. if( pNode != NULL )
  1697. {
  1698. ASSERT_VALID( pNode );
  1699. return pNode->GetLParam();
  1700. } // if( pNode != NULL )
  1701. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  1702. return m_lParamCookie;
  1703. }
  1704. void CExtBarColorButton::LParamCookieSet(
  1705. LPARAM lParamCookie // = 0L
  1706. )
  1707. {
  1708. ASSERT_VALID( this );
  1709. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1710. CExtCustomizeCmdTreeNode * pNode = ((CExtBarButton*)this)->GetCmdNode(false);
  1711. if( pNode != NULL )
  1712. {
  1713. ASSERT_VALID( pNode );
  1714. pNode->SetLParam( lParamCookie );
  1715. } // if( pNode != NULL )
  1716. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  1717. m_lParamCookie = lParamCookie;
  1718. }
  1719. bool CExtBarColorButton::IsEnabledBtnColorDefault() const
  1720. {
  1721. ASSERT_VALID( this );
  1722. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1723. CExtCustomizeCmdTreeNode * pNode = ((CExtBarButton*)this)->GetCmdNode(false);
  1724. if( pNode != NULL )
  1725. {
  1726. ASSERT_VALID( pNode );
  1727. return ( (pNode->GetFlags() & __ECTN_TBB_MCB_DEFAULT) != 0 ) ? true : false;
  1728. } // if( pNode != NULL )
  1729. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  1730. return m_bEnableBtnColorDefault;
  1731. }
  1732. void CExtBarColorButton::EnableBtnColorDefault(
  1733. bool bEnable // = true
  1734. )
  1735. {
  1736. ASSERT_VALID( this );
  1737. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1738. CExtCustomizeCmdTreeNode * pNode = GetCmdNode(false);
  1739. if( pNode != NULL )
  1740. {
  1741. ASSERT_VALID( pNode );
  1742. pNode->ModifyFlags(
  1743. bEnable ? __ECTN_TBB_MCB_DEFAULT : 0,
  1744. bEnable ? 0 : __ECTN_TBB_MCB_DEFAULT
  1745. );
  1746. } // if( pNode != NULL )
  1747. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  1748. m_bEnableBtnColorDefault = bEnable;
  1749. }
  1750. bool CExtBarColorButton::IsEnabledBtnColorCustom() const
  1751. {
  1752. ASSERT_VALID( this );
  1753. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1754. CExtCustomizeCmdTreeNode * pNode = ((CExtBarButton*)this)->GetCmdNode(false);
  1755. if( pNode != NULL )
  1756. {
  1757. ASSERT_VALID( pNode );
  1758. return ( (pNode->GetFlags() & __ECTN_TBB_MCB_CUSTOM) != 0 ) ? true : false;
  1759. } // if( pNode != NULL )
  1760. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  1761. return m_bEnableBtnColorCustom;
  1762. }
  1763. void CExtBarColorButton::EnableBtnColorCustom(
  1764. bool bEnable // = true
  1765. )
  1766. {
  1767. ASSERT_VALID( this );
  1768. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1769. CExtCustomizeCmdTreeNode * pNode = GetCmdNode(false);
  1770. if( pNode != NULL )
  1771. {
  1772. ASSERT_VALID( pNode );
  1773. pNode->ModifyFlags(
  1774. bEnable ? __ECTN_TBB_MCB_CUSTOM: 0,
  1775. bEnable ? 0 : __ECTN_TBB_MCB_CUSTOM
  1776. );
  1777. } // if( pNode != NULL )
  1778. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  1779. m_bEnableBtnColorCustom = bEnable;
  1780. }
  1781. COLORREF CExtBarColorButton::ColorGet( bool bSelected ) const
  1782. {
  1783. ASSERT_VALID( this );
  1784. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1785. const CExtToolControlBar * pBar = GetBar();
  1786. CExtCustomizeCmdTreeNode * pNode = ((CExtBarButton*)this)->GetCmdNode(false);
  1787. if( pNode != NULL
  1788. && pBar->GetSafeHwnd() != NULL
  1789. && ::IsWindow( pBar->GetSafeHwnd() )
  1790. )
  1791. {
  1792. ASSERT_VALID( GetBar() );
  1793. ASSERT_VALID( pNode );
  1794. CExtCustomizeSite * pSite =
  1795. ((CExtToolControlBar *)GetBar())->GetCustomizeSite();
  1796. if( pSite != NULL )
  1797. {
  1798. COLORREF clr = bSelected ? m_clrSelected : m_clrDefault;
  1799. if( pSite->OnColorItemValueGet(
  1800. (CExtBarColorButton*)this,
  1801. pNode,
  1802. clr,
  1803. bSelected
  1804. )
  1805. )
  1806. return clr;
  1807. } // if( pSite != NULL )
  1808. }
  1809. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  1810. return bSelected ? m_clrSelected : m_clrDefault;
  1811. }
  1812. void CExtBarColorButton::ColorSet( COLORREF clr, bool bSelected )
  1813. {
  1814. ASSERT_VALID( this );
  1815. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1816. CExtToolControlBar * pBar = GetBar();
  1817. CExtCustomizeCmdTreeNode * pNode = GetCmdNode(false);
  1818. if( pNode != NULL
  1819. && pBar->GetSafeHwnd() != NULL
  1820. && ::IsWindow( pBar->GetSafeHwnd() )
  1821. )
  1822. {
  1823. ASSERT_VALID( GetBar() );
  1824. ASSERT_VALID( pNode );
  1825. CExtCustomizeSite * pSite =
  1826. pBar->GetCustomizeSite();
  1827. if( pSite != NULL )
  1828. pSite->OnColorItemValueSet(
  1829. this,
  1830. pNode,
  1831. clr,
  1832. bSelected
  1833. );
  1834. }
  1835. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  1836. if( bSelected )
  1837. {
  1838. if( m_clrSelected != clr )
  1839. {
  1840. m_clrSelected = clr;
  1841. OnSyncIcon();
  1842. }
  1843. }
  1844. else
  1845. {
  1846. if( m_clrDefault != clr )
  1847. {
  1848. m_clrDefault = clr;
  1849. OnSyncIcon();
  1850. }
  1851. }
  1852. }
  1853. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1854. int CExtBarColorButton::CalculateDropOverEffect(
  1855. CPoint point,
  1856. CExtCustomizeSite::CCmdDragInfo & _dragInfo,
  1857. bool bAllowTrackNodePopup // = true
  1858. )
  1859. {
  1860. ASSERT_VALID( this );
  1861. ASSERT_VALID( GetBar() );
  1862. ASSERT( !_dragInfo.IsEmpty() );
  1863. bAllowTrackNodePopup;
  1864. return
  1865. CExtBarButton::CalculateDropOverEffect(
  1866. point,
  1867. _dragInfo,
  1868. false
  1869. );
  1870. }
  1871. CExtCustomizeCmdTreeNode * CExtBarColorButton::GetCmdNode(
  1872. bool bInitial // = false
  1873. )
  1874. {
  1875. ASSERT_VALID( this );
  1876. ASSERT_VALID( GetBar() );
  1877. return CExtBarButton::GetCmdNode( bInitial );
  1878. }
  1879. void CExtBarColorButton::SetBasicCmdNode(
  1880. CExtCustomizeCmdTreeNode * pNode
  1881. )
  1882. {
  1883. ASSERT_VALID( this );
  1884. ASSERT_VALID( GetBar() );
  1885. CExtBarButton::SetBasicCmdNode( pNode );
  1886. }
  1887. void CExtBarColorButton::SetCustomizedCmdNode(
  1888. CExtCustomizeCmdTreeNode * pNode
  1889. )
  1890. {
  1891. ASSERT_VALID( this );
  1892. ASSERT_VALID( GetBar() );
  1893. CExtBarButton::SetCustomizedCmdNode( pNode );
  1894. }
  1895. CExtCustomizeCmdTreeNode * CExtBarColorButton::OnCustomizeNodeInit(
  1896. CExtCustomizeSite * pSite,
  1897. CExtCustomizeCmdTreeNode * pParentNode // toolbar node
  1898. )
  1899. {
  1900. ASSERT_VALID( this );
  1901. ASSERT_VALID( GetBar() );
  1902. CExtCustomizeCmdTreeNode * pNode =
  1903. CExtBarButton::OnCustomizeNodeInit( pSite, pParentNode );
  1904. ASSERT_VALID( pNode );
  1905. return pNode;
  1906. }
  1907. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  1908. void CExtBarColorButton::OnDeliverCmd()
  1909. {
  1910. ASSERT_VALID( this );
  1911. ASSERT_VALID( GetBar() );
  1912. if( GetBar()->OnDeliverCmd( this ) )
  1913. return;
  1914. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1915. CExtCustomizeCmdTreeNode * pNode = GetCmdNode( false );
  1916. if( pNode != NULL )
  1917. {
  1918. ASSERT_VALID( pNode );
  1919. CExtToolControlBar * pBar = GetBar();
  1920. CExtCustomizeSite * pSite = pBar->GetCustomizeSite();
  1921. if( pSite != NULL
  1922. && pSite->OnColorItemChanged(
  1923. this,
  1924. pNode,
  1925. true,
  1926. ColorGet(true),
  1927. LParamCookieGet()
  1928. )
  1929. )
  1930. return;
  1931. } // if( pNode != NULL )
  1932. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  1933. GetCmdTargetWnd()->SendMessage(
  1934. CExtPopupColorMenuWnd::g_nMsgNotifyColorChangedFinally,
  1935. (WPARAM)ColorGet(true),
  1936. LParamCookieGet()
  1937. );
  1938. }
  1939. /////////////////////////////////////////////////////////////////////////////
  1940. // CExtBarContentExpandButton
  1941. IMPLEMENT_DYNCREATE(CExtBarContentExpandButton, CExtBarButton)
  1942. CExtBarContentExpandButton::CExtBarContentExpandButton(
  1943. CExtToolControlBar * pBar // = NULL
  1944. )
  1945. : CExtBarButton( pBar )
  1946. {
  1947. SetCmdID( __ID_TOOLBAR_RIGHT_BUTTON__ );
  1948. AnimationClient_EnabledSet( false );
  1949. }
  1950. CExtBarContentExpandButton::~CExtBarContentExpandButton()
  1951. {
  1952. }
  1953. CSize CExtBarContentExpandButton::CalculateLayout(
  1954. CDC & dc,
  1955. CSize sizePreCalc,
  1956. BOOL bHorz
  1957. )
  1958. {
  1959. dc;
  1960. ASSERT( CtrlGet() == NULL );
  1961. ASSERT( ! IsSeparator() );
  1962. ASSERT( GetCmdID(false) == __ID_TOOLBAR_RIGHT_BUTTON__ );
  1963. SIZE sizeReal = { 0, 0 };
  1964. CExtToolControlBar * pBar = GetBar();
  1965. if( pBar->PmBridge_GetPM()->Toolbar_GetSizeOfCEB(
  1966. sizeReal,
  1967. sizePreCalc,
  1968. dc,
  1969. bHorz,
  1970. this
  1971. )
  1972. )
  1973. {
  1974. m_ActiveSize = sizeReal;
  1975. return m_ActiveSize;
  1976. }
  1977. CSize _size(
  1978. bHorz ? __RIGHT_BUTTON_HORZ_DX__ : sizePreCalc.cx,
  1979. bHorz ? sizePreCalc.cy : __RIGHT_BUTTON_VERT_DY__
  1980. );
  1981. m_ActiveSize = _size;
  1982. return m_ActiveSize;
  1983. }
  1984. void CExtBarContentExpandButton::PaintCompound(
  1985. CDC & dc,
  1986. bool bPaintParentChain,
  1987. bool bPaintChildren,
  1988. bool bPaintOneNearestChildrenLevelOnly
  1989. )
  1990. {
  1991. ASSERT( CtrlGet() == NULL );
  1992. ASSERT_VALID( (&dc) );
  1993. ASSERT( !  IsSeparator() );
  1994. ASSERT( GetCmdID(false) == __ID_TOOLBAR_RIGHT_BUTTON__ );
  1995. if( ! IsPaintAble( dc ) )
  1996. return;
  1997. if( AnimationClient_StatePaint( dc ) )
  1998. return;
  1999. if( bPaintParentChain )
  2000. PaintParentChain( dc );
  2001. CRect rcArea( m_ActiveRect );
  2002. if( rcArea.right <= rcArea.left
  2003. || rcArea.bottom <= rcArea.top
  2004. )
  2005. return;
  2006. CExtToolControlBar * pBar = GetBar();
  2007. bool bDockSiteCustomizeMode =
  2008. pBar->_IsDockSiteCustomizeMode();
  2009. bool bEnabled = 
  2010. ( (!IsDisabled()) || bDockSiteCustomizeMode )
  2011. ? true : false;
  2012. bool bBarIsCompletelyVisible =
  2013. (GetButtons().GetSize() == 0) ? true : false;
  2014. bool bEmpty = 
  2015. ( (!pBar->m_bRightButtonDisplayBarsList)
  2016. && bBarIsCompletelyVisible
  2017. ) ? true : false;
  2018. bool bPushed =
  2019. ( (!bEmpty) && bEnabled && IsPressed() && (!bDockSiteCustomizeMode) )
  2020. ? true : false;
  2021. bool bHover =
  2022. ( (!bEmpty)
  2023. && bEnabled
  2024. && (!bDockSiteCustomizeMode)
  2025. && IsHover()
  2026. && !CExtToolControlBar::g_bMenuTracking
  2027. && !CExtPopupMenuWnd::IsMenuTracking()
  2028. ) ? true : false;
  2029. bool bHorz = IsHorzBarOrientation();
  2030. pBar->PmBridge_GetPM()->PaintToolbarExpandButton(
  2031. dc,
  2032. rcArea,
  2033. bHorz,
  2034. bBarIsCompletelyVisible,
  2035. bEnabled && !bEmpty,
  2036. bPushed,
  2037. bHover,
  2038. this,
  2039. 0L,
  2040. ( (!bHover) && (!bPushed) )
  2041. );
  2042. if( bPaintChildren )
  2043. PaintChildren( dc, bPaintOneNearestChildrenLevelOnly );
  2044. }
  2045. BOOL CExtBarContentExpandButton::PutToPopupMenu(
  2046. CExtPopupMenuWnd * pPopup
  2047. )
  2048. {
  2049. pPopup;
  2050. ASSERT( FALSE );
  2051. return FALSE;
  2052. }
  2053. UINT CExtBarContentExpandButton::OnGetTrackPopupFlags()
  2054. {
  2055. ASSERT_VALID( this );
  2056. CExtToolControlBar * pBar = GetBar();
  2057. ASSERT_VALID( pBar );
  2058. DWORD dwTrackFlags = CExtBarButton::OnGetTrackPopupFlags();
  2059. if( pBar->IsPaletteChevronMenu() )
  2060. dwTrackFlags |= TPMX_PALETTE;
  2061. else
  2062. dwTrackFlags &= ~TPMX_PALETTE;
  2063. dwTrackFlags &= ~(TPMX_COMBINE_MASK);
  2064. if( pBar->PmBridge_GetPM()->IsToolBarChevronMenuCombined() )
  2065. dwTrackFlags |= TPMX_COMBINE_DEFAULT;
  2066. return dwTrackFlags;
  2067. }
  2068. UINT CExtBarContentExpandButton::OnTrackPopup(
  2069. CPoint point,
  2070. bool bSelectAny,
  2071. bool bForceNoAnimation
  2072. )
  2073. {
  2074. ASSERT_VALID( this );
  2075. CExtToolControlBar * pBar = GetBar();
  2076. ASSERT_VALID( pBar );
  2077. bool bDockSiteCustomizeMode =
  2078. pBar->_IsDockSiteCustomizeMode();
  2079. if( bDockSiteCustomizeMode )
  2080. return UINT(-1L);
  2081. if( !IsEnabled() )
  2082. return UINT(-1L);
  2083. bool bPrevTBMT = CExtToolControlBar::g_bMenuTracking;
  2084. if( CExtToolControlBar::g_bMenuTracking
  2085. //&& CExtPopupMenuWnd::IsMenuTracking()
  2086. && pBar->_GetIndexOf(this) ==
  2087. pBar->m_nBtnIdxMenuTracking
  2088. )
  2089. return UINT(-1L);
  2090. bool bBarIsCompletelyVisible =
  2091. (GetButtons().GetSize() == 0) ? true : false;
  2092. bool bEmpty = 
  2093. ( !pBar->m_bRightButtonDisplayBarsList
  2094. && bBarIsCompletelyVisible
  2095. ) ? true : false;
  2096. if( bEmpty )
  2097. return UINT(-1L);
  2098. CExtToolControlBar::_CloseTrackingMenus();
  2099. CExtToolControlBar::g_bMenuTracking = bPrevTBMT;
  2100. if( pBar->IsFloating() )
  2101. {
  2102. pBar->ActivateTopParent();
  2103. CFrameWnd * pFrame =
  2104. pBar->GetParentFrame();
  2105. if( pFrame != NULL )
  2106. pFrame->BringWindowToTop();
  2107. }
  2108. HWND hWndTrack = GetCmdTargetWnd()->GetSafeHwnd();
  2109. ASSERT(
  2110. hWndTrack != NULL
  2111. && ::IsWindow(hWndTrack)
  2112. );
  2113. DWORD dwTrackFlags =
  2114. OnGetTrackPopupFlags()
  2115. | TPMX_OWNERDRAW_FIXED
  2116. ;
  2117. #if (!defined __EXT_MFC_NO_RIBBON_BAR)
  2118. if( pBar->IsKindOf( RUNTIME_CLASS( CExtRibbonPage ) ) )
  2119. dwTrackFlags |= TPMX_COMBINE_NONE|TPMX_RIBBON_MODE|TPMX_NO_HIDE_RARELY;
  2120. #endif // (!defined __EXT_MFC_NO_RIBBON_BAR)
  2121. CExtPopupMenuWnd * pPopup = OnCreatePopupMenuWnd();
  2122. ASSERT_VALID( pPopup );
  2123. VERIFY( pPopup->CreatePopupMenu(hWndTrack) );
  2124. pPopup->TrackFlagsSet( dwTrackFlags );
  2125. CExtControlBar::POPUP_MENU_EVENT_DATA _pmed(
  2126. CExtControlBar::POPUP_MENU_EVENT_DATA::__PMED_CTXEXPBTN_TOP,
  2127. pPopup,
  2128. GetBar(),
  2129. CPoint( -1, -1 ),
  2130. WM_NCLBUTTONDOWN,
  2131. this
  2132. );
  2133. if( !_pmed.NotifyTarget( false ) )
  2134. {
  2135. // append hidden buttons
  2136. __EXT_MFC_INT_PTR nCount = GetButtons().GetSize();
  2137. if( nCount != 0 )
  2138. {
  2139. ASSERT( nCount > 0 );
  2140. int nCountBefore = pPopup->ItemGetCount();
  2141. for( int i=0; i < nCount; i++ )
  2142. {
  2143. CExtBarButton * pTBB = GetButtons() [i];
  2144. ASSERT( pTBB != NULL );
  2145. if( i==0 && pTBB->IsSeparator() )
  2146. continue;
  2147. ASSERT( ! pTBB->IsKindOf(RUNTIME_CLASS(CExtBarContentExpandButton)) );
  2148. VERIFY( pTBB->PutToPopupMenu(pPopup) );
  2149. } // for( int i=0; i< nCount; i++ )
  2150. if( (dwTrackFlags&TPMX_PALETTE) != NULL )
  2151. {
  2152. pPopup->ItemRemoveAllSeparators();
  2153. pPopup->ResetPaletteWrapping( true );
  2154. }
  2155. int nCountAfter = pPopup->ItemGetCount();
  2156. ASSERT( nCountAfter >= nCountBefore );
  2157. if( nCountAfter != nCountBefore
  2158. && (! (pBar->m_bPresubclassDialogMode) )
  2159. && pBar->m_bRightButtonDisplayBarsList
  2160. )
  2161. {
  2162. // append separator
  2163. VERIFY(
  2164. pPopup->ItemInsert(
  2165. CExtPopupMenuWnd::TYPE_SEPARATOR
  2166. )
  2167. );
  2168. }
  2169. } // if( nCount != 0 )
  2170. // append show/hide popup
  2171. if( (! (pBar->m_bPresubclassDialogMode) )
  2172. && pBar->m_bRightButtonDisplayBarsList
  2173. )
  2174. {
  2175. CFrameWnd * pFrame = pBar->_GetDockingFrameImpl();
  2176. if( pFrame != NULL )
  2177. {
  2178. ASSERT_VALID( pFrame );
  2179. CExtSafeString sShowHidePanels;
  2180. if( ! g_ResourceManager->LoadString( sShowHidePanels, IDS_SHOW_HIDE_PANELS ) )
  2181. sShowHidePanels = _T("&Show/hide panels");
  2182. CExtControlBar::POPUP_MENU_EVENT_DATA _pmed(
  2183. CExtControlBar::POPUP_MENU_EVENT_DATA::__PMED_CTXEXPBTN_APPEND,
  2184. pPopup,
  2185. GetBar(),
  2186. CPoint( -1, -1 ),
  2187. WM_NCLBUTTONDOWN,
  2188. this
  2189. );
  2190. if( ! _pmed.NotifyTarget( false ) )
  2191. {
  2192. VERIFY(
  2193. pPopup->ItemInsert(
  2194. (UINT)CExtPopupMenuWnd::TYPE_POPUP,
  2195. -1,
  2196. sShowHidePanels
  2197. )
  2198. );
  2199. CExtPopupMenuWnd::MENUITEMDATA & mi =
  2200. pPopup->ItemGetInfo( pPopup->ItemGetCount() - 1 );
  2201. mi.SetChildCombine();
  2202. mi.SetToolButton();
  2203. mi.SetToolWrap();
  2204. CExtPopupMenuWnd * pPopupBars = mi.GetPopup();
  2205. ASSERT( pPopupBars != NULL );
  2206. if( ! CExtDockBar::_ConstructDockSiteControlBarPopupMenu(
  2207. pFrame,
  2208. pPopupBars,
  2209. CExtControlBar::POPUP_MENU_EVENT_DATA::__PMED_CTXEXPBTN_BARS,
  2210. GetBar(),
  2211. WM_NCLBUTTONDOWN,
  2212. this
  2213. )
  2214. )
  2215. {
  2216. VERIFY(
  2217. pPopup->ItemRemove(
  2218. pPopup->ItemGetCount() - 1
  2219. )
  2220. );
  2221. }
  2222. } // if( !_pmed.NotifyTarget( false ) )
  2223. _pmed.NotifyTarget( true );
  2224. } // if( pFrame != NULL )
  2225. } // if( (!pBar->m_bPresubclassDialogMode) ...
  2226. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  2227. if( pBar->m_bCustomizationAllowed
  2228. && pBar->GetCustomizeSite() != NULL
  2229. )
  2230. { // if customization allowed
  2231. VERIFY(
  2232. CExtDockBar::_AppendAddRemoveButtonsCustomizeMenu(
  2233. pPopup,
  2234. GetBar()
  2235. )
  2236. );
  2237. } // if customization allowed
  2238. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  2239. } // if( !_pmed.NotifyTarget( false ) )
  2240. _pmed.NotifyTarget( true );
  2241. if( pPopup->ItemGetCount() == 0 )
  2242. {
  2243. delete pPopup;
  2244. return UINT(-1L);
  2245. }
  2246. CRect rcBtn = Rect();
  2247. pBar->ClientToScreen( &rcBtn );
  2248. pBar->ClientToScreen( &point );
  2249. if( bSelectAny )
  2250. dwTrackFlags |= TPMX_SELECT_ANY;
  2251. if( CExtToolControlBar::g_bMenuTrackingExpanded )
  2252. dwTrackFlags |= TPMX_NO_HIDE_RARELY;
  2253. if( bForceNoAnimation )
  2254. dwTrackFlags |= TPMX_FORCE_NO_ANIMATION;
  2255. pBar->_SwitchMenuTrackingIndex(
  2256. pBar->_GetIndexOf( this )
  2257. );
  2258. pPopup->m_hWndNotifyMenuClosed = pBar->GetSafeHwnd();
  2259. if( GetSeparatedDropDown() )
  2260. m_bDropDownHT = true;
  2261. g_pTrackingMenuTBB = this;
  2262. if( ! pPopup->TrackPopupMenu(
  2263. dwTrackFlags,
  2264. point.x,
  2265. point.y,
  2266. &rcBtn,
  2267. GetBar(),
  2268. CExtToolControlBar::_CbPaintCombinedContent,
  2269. NULL,
  2270. true
  2271. )
  2272. )
  2273. {
  2274. g_pTrackingMenuTBB = NULL;
  2275. //delete pPopup;
  2276. CExtToolControlBar::_CloseTrackingMenus();
  2277. return UINT(-1L);
  2278. }
  2279. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  2280. CExtCustomizeSite * pSite = pBar->GetCustomizeSite();
  2281. if( pSite != NULL )
  2282. pSite->BarDefCmdTargetSet( GetBar() );
  2283. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  2284. CExtToolControlBar::g_bMenuTracking = true;
  2285. pBar->_SwitchMenuTrackingIndex(
  2286. pBar->_GetIndexOf( this )
  2287. );
  2288. return UINT(-1L);
  2289. }
  2290. void CExtBarContentExpandButton::OnHover(
  2291. CPoint point,
  2292. bool bOn,
  2293. bool & bSuspendTips
  2294. )
  2295. {
  2296. CExtToolControlBar * pBar = GetBar();
  2297. ASSERT_VALID( pBar );
  2298. bSuspendTips = false;
  2299. bool bDockSiteCustomizeMode =
  2300. pBar->_IsDockSiteCustomizeMode();
  2301. if( bDockSiteCustomizeMode )
  2302. return;
  2303. CExtBarButton::OnHover(
  2304. point,
  2305. bOn,
  2306. bSuspendTips
  2307. );
  2308. }
  2309. void CExtBarContentExpandButton::OnClick(
  2310. CPoint point,
  2311. bool bDown
  2312. )
  2313. {
  2314. CExtToolControlBar * pBar = GetBar();
  2315. ASSERT_VALID( pBar );
  2316. bool bDockSiteCustomizeMode =
  2317. pBar->_IsDockSiteCustomizeMode();
  2318. if( bDockSiteCustomizeMode )
  2319. return;
  2320. if( !bDown )
  2321. return;
  2322. CExtToolControlBar::g_bMenuTrackingExpanded = false;
  2323. bool bThisButtonTrackingMenu = ( g_pTrackingMenuTBB == this ) ? true : false;
  2324. if( ! bThisButtonTrackingMenu )
  2325. OnTrackPopup( point, false, false );
  2326. else
  2327. {
  2328. CExtPopupMenuWnd::CancelMenuTracking();
  2329. CExtBarButton::g_pTrackingMenuTBB = NULL;
  2330. }
  2331. }
  2332. __EXT_MFC_INT_PTR CExtBarContentExpandButton::OnToolHitTest(
  2333. CPoint point,
  2334. TOOLINFO * pTI
  2335. )
  2336. {
  2337. ASSERT_VALID( this );
  2338. point; // should be inside this button
  2339. if( pTI != NULL )
  2340. {
  2341. CRect rcArea = Rect();
  2342. ::CopyRect(
  2343. &(pTI->rect),
  2344. &rcArea
  2345. );
  2346. __EXT_MFC_INT_PTR nCmdID = AFX_IDS_IDLEMESSAGE; //(int)pBar->GetDlgCtrlID();
  2347. pTI->uId = (UINT)nCmdID;
  2348. pTI->hwnd = GetSafeBar()->GetSafeHwnd();
  2349. CExtSafeString sExpandTip;
  2350. if( ! g_ResourceManager->LoadString( sExpandTip, IDS_CONTENT_EXPAND_TIP ) )
  2351. sExpandTip = _T("Where are buttons?");
  2352. pTI->lpszText = (LPTSTR)
  2353. ::calloc(
  2354. (sExpandTip.GetLength() + 1),
  2355. sizeof(TCHAR)
  2356. );
  2357. if( pTI->lpszText != NULL )
  2358. __EXT_MFC_STRCPY(
  2359. pTI->lpszText,
  2360. sExpandTip.GetLength() + 1,
  2361. sExpandTip
  2362. );
  2363. else
  2364. pTI->lpszText = LPSTR_TEXTCALLBACK;
  2365. return (__EXT_MFC_INT_PTR)nCmdID;
  2366. } // if( pTI != NULL )
  2367. return -1;
  2368. }
  2369. LRESULT CExtBarContentExpandButton::OnHelpHitTest(
  2370. CPoint point
  2371. )
  2372. {
  2373. ASSERT_VALID( this );
  2374. return
  2375. CExtBarButton::OnHelpHitTest( point );
  2376. }
  2377. bool CExtBarContentExpandButton::CanStartCommandDrag()
  2378. {
  2379. ASSERT_VALID( this );
  2380. return false;
  2381. }
  2382. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  2383. CExtCustomizeCmdTreeNode * CExtBarContentExpandButton::GetCmdNode(
  2384. bool bInitial // = false
  2385. )
  2386. {
  2387. ASSERT_VALID( this );
  2388. ASSERT_VALID( GetBar() );
  2389. bInitial;
  2390. ASSERT( m_pCmdNodeI == NULL );
  2391. ASSERT( m_pCmdNodeC == NULL );
  2392. return NULL;
  2393. }
  2394. void CExtBarContentExpandButton::SetBasicCmdNode(
  2395. CExtCustomizeCmdTreeNode * pNode
  2396. )
  2397. {
  2398. ASSERT_VALID( this );
  2399. ASSERT_VALID( GetBar() );
  2400. ASSERT( m_pCmdNodeI == NULL );
  2401. ASSERT( m_pCmdNodeC == NULL );
  2402. ASSERT( FALSE ); // should be never called
  2403. pNode;
  2404. }
  2405. void CExtBarContentExpandButton::SetCustomizedCmdNode(
  2406. CExtCustomizeCmdTreeNode * pNode
  2407. )
  2408. {
  2409. ASSERT_VALID( this );
  2410. ASSERT_VALID( GetBar() );
  2411. ASSERT( m_pCmdNodeI == NULL );
  2412. ASSERT( m_pCmdNodeC == NULL );
  2413. ASSERT( FALSE ); // should be never called
  2414. pNode;
  2415. }
  2416. CExtCustomizeCmdTreeNode * CExtBarContentExpandButton::OnCustomizeNodeInit(
  2417. CExtCustomizeSite * pSite,
  2418. CExtCustomizeCmdTreeNode * pParentNode // toolbar node
  2419. )
  2420. {
  2421. ASSERT_VALID( this );
  2422. ASSERT_VALID( GetBar() );
  2423. ASSERT( pSite != NULL );
  2424. ASSERT_VALID( pParentNode );
  2425. pSite;
  2426. pParentNode;
  2427. return NULL; // no customization support
  2428. }
  2429. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  2430. /////////////////////////////////////////////////////////////////////////////
  2431. // CExtBarSliderButton
  2432. IMPLEMENT_DYNCREATE(CExtBarSliderButton, CExtBarButton)
  2433. ULONG CExtBarSliderButton::ScrollLimitGet() const
  2434. {
  2435. ASSERT_VALID( this );
  2436. ULONG nScrollPageSize = ScrollPageSizeGet();
  2437. ULONG nScrollTotalRange = ScrollTotalRangeGet();
  2438. ULONG nScrollLimit = nScrollTotalRange;
  2439. if( nScrollLimit > nScrollPageSize )
  2440. {
  2441. const CExtToolControlBar * pBar = GetBar();
  2442. bool bHorz = pBar->IsDockedVertically() ? false : true;
  2443. INT nExtentBtn = bHorz
  2444. ? ScrollButtonExtentHorzGet()
  2445. : ScrollButtonExtentVertGet();
  2446. if( nExtentBtn > 0 )
  2447. nScrollLimit -= nScrollPageSize;
  2448. } // if( nScrollLimit > nScrollPageSize )
  2449. else
  2450. nScrollLimit = 0L;
  2451. return nScrollLimit;
  2452. }
  2453. ULONG CExtBarSliderButton::ScrollTotalRangeGet() const
  2454. {
  2455. ASSERT_VALID( this );
  2456. return m_nScrollTotalRange;
  2457. }
  2458. ULONG CExtBarSliderButton::ScrollTotalRangeSet( ULONG nScrollTotalRange )
  2459. {
  2460. ASSERT_VALID( this );
  2461. ULONG nScrollPosOld = ScrollPosGet();
  2462. if( nScrollPosOld > nScrollTotalRange )
  2463. ScrollPosSet( nScrollTotalRange );
  2464. ULONG nScrollTotalRangeOld = ScrollTotalRangeGet();
  2465. m_nScrollTotalRange = nScrollTotalRange;
  2466. ASSERT_VALID( this );
  2467. RecalcSliderLayout();
  2468. return nScrollTotalRangeOld;
  2469. }
  2470. ULONG CExtBarSliderButton::ScrollPosGet() const
  2471. {
  2472. ASSERT_VALID( this );
  2473. return m_nScrollPos;
  2474. }
  2475. ULONG CExtBarSliderButton::ScrollPosSet( ULONG nScrollPos )
  2476. {
  2477. ASSERT_VALID( this );
  2478. ULONG nScrollPosOld = ScrollPosGet();
  2479. m_nScrollPos = nScrollPos;
  2480. ASSERT_VALID( this );
  2481. RecalcSliderLayout();
  2482. return nScrollPosOld;
  2483. }
  2484. ULONG CExtBarSliderButton::ScrollPageSizeGet() const
  2485. {
  2486. ASSERT_VALID( this );
  2487. return m_nScrollPageSize;
  2488. }
  2489. ULONG CExtBarSliderButton::ScrollPageSizeSet( ULONG nScrollPageSize )
  2490. {
  2491. ASSERT_VALID( this );
  2492. ULONG nScrollPageSizeOld = ScrollPageSizeGet();
  2493. m_nScrollPageSize = nScrollPageSize;
  2494. ASSERT_VALID( this );
  2495. RecalcSliderLayout();
  2496. return nScrollPageSizeOld;
  2497. }
  2498. INT CExtBarSliderButton::ScrollButtonExtentHorzGet() const
  2499. {
  2500. ASSERT_VALID( this );
  2501. return m_nScrollButtonExtentH;
  2502. }
  2503. INT CExtBarSliderButton::ScrollButtonExtentHorzSet( INT nScrollButtonExtent )
  2504. {
  2505. ASSERT_VALID( this );
  2506. INT nScrollButtonExtentOld = ScrollButtonExtentHorzGet();
  2507. m_nScrollButtonExtentH = nScrollButtonExtent;
  2508. ASSERT_VALID( this );
  2509. RecalcSliderLayout();
  2510. return nScrollButtonExtentOld;
  2511. }
  2512. INT CExtBarSliderButton::ScrollButtonExtentVertGet() const
  2513. {
  2514. ASSERT_VALID( this );
  2515. return m_nScrollButtonExtentV;
  2516. }
  2517. INT CExtBarSliderButton::ScrollButtonExtentVertSet( INT nScrollButtonExtent )
  2518. {
  2519. ASSERT_VALID( this );
  2520. INT nScrollButtonExtentOld = ScrollButtonExtentVertGet();
  2521. m_nScrollButtonExtentV = nScrollButtonExtent;
  2522. ASSERT_VALID( this );
  2523. RecalcSliderLayout();
  2524. return nScrollButtonExtentOld;
  2525. }
  2526. INT CExtBarSliderButton::ScrollControlExtentHorzGet() const
  2527. {
  2528. ASSERT_VALID( this );
  2529. return m_nScrollControlExtentH;
  2530. }
  2531. INT CExtBarSliderButton::ScrollControlExtentHorzSet( INT nScrollControlExtent )
  2532. {
  2533. ASSERT_VALID( this );
  2534. INT nScrollControlExtentOld = ScrollControlExtentHorzGet();
  2535. m_nScrollControlExtentH = nScrollControlExtent;
  2536. ASSERT_VALID( this );
  2537. RecalcSliderLayout();
  2538. return nScrollControlExtentOld;
  2539. }
  2540. INT CExtBarSliderButton::ScrollControlExtentVertGet() const
  2541. {
  2542. ASSERT_VALID( this );
  2543. return m_nScrollControlExtentV;
  2544. }
  2545. INT CExtBarSliderButton::ScrollControlExtentVertSet( INT nScrollControlExtent )
  2546. {
  2547. ASSERT_VALID( this );
  2548. INT nScrollControlExtentOld = ScrollControlExtentVertGet();
  2549. m_nScrollControlExtentV = nScrollControlExtent;
  2550. ASSERT_VALID( this );
  2551. RecalcSliderLayout();
  2552. return nScrollControlExtentOld;
  2553. }
  2554. #ifdef _DEBUG
  2555. void CExtBarSliderButton::AssertValid() const
  2556. {
  2557. CExtBarButton::AssertValid();
  2558. ASSERT( m_nScrollPos <= m_nScrollTotalRange );
  2559. ASSERT( m_nScrollButtonExtentH >= 0 );
  2560. ASSERT( m_nScrollButtonExtentV >= 0 );
  2561. ASSERT( m_nScrollControlExtentH >= 0 );
  2562. ASSERT( m_nScrollControlExtentV >= 0 );
  2563. ASSERT( m_pCtrl == NULL );
  2564. }
  2565. void CExtBarSliderButton::Dump(CDumpContext& dc) const
  2566. {
  2567. CExtBarButton::Dump( dc );
  2568. }
  2569. #endif
  2570. void CExtBarSliderButton::SetMenu(
  2571. HMENU hMenu,
  2572. bool bPopupMenu,
  2573. bool bAutoDestroyMenu
  2574. )
  2575. {
  2576. ASSERT_VALID( this );
  2577. ASSERT( FALSE ); // should not be used with text-field button
  2578. hMenu;
  2579. bPopupMenu;
  2580. bAutoDestroyMenu;
  2581. }
  2582. HMENU CExtBarSliderButton::GetMenu()
  2583. {
  2584. ASSERT_VALID( this );
  2585. return NULL;
  2586. }
  2587. //bool CExtBarSliderButton::IsLargeIcon() const
  2588. //{
  2589. // ASSERT_VALID( this );
  2590. // return false;
  2591. //}
  2592. //
  2593. //bool CExtBarSliderButton::IsDisplayScreenTip() const
  2594. //{
  2595. // ASSERT_VALID( this );
  2596. // return false;
  2597. //}
  2598. //
  2599. //bool CExtBarSliderButton::IsDisplayShortcutKeysOnScreenTip() const
  2600. //{
  2601. // ASSERT_VALID( this );
  2602. // return false;
  2603. //}
  2604. void CExtBarSliderButton::SetRect( const RECT & rectButton )
  2605. {
  2606. ASSERT_VALID( this );
  2607. ASSERT_VALID( GetBar() );
  2608. GetBar()->AnimationSite_ClientProgressStop(
  2609. this
  2610. );
  2611. AnimationClient_StateGet( false ).Empty();
  2612. AnimationClient_StateGet( true ).Empty();
  2613. AnimationClient_TargetRectSet( rectButton );
  2614. m_ActiveRect = rectButton;
  2615. RecalcSliderLayout();
  2616. }
  2617. bool CExtBarSliderButton::CanBePressedInDisabledState()
  2618. {
  2619. return false;
  2620. }
  2621. bool CExtBarSliderButton::IsAbleToTrackMenu(
  2622. bool bCustomizeMode // = false
  2623. ) const
  2624. {
  2625. ASSERT_VALID( this );
  2626. bCustomizeMode;
  2627. return false;
  2628. }
  2629. bool CExtBarSliderButton::IsContainerOfPopupLikeMenu()
  2630. {
  2631. ASSERT_VALID( this );
  2632. return false;
  2633. }
  2634. //CExtCmdIcon * CExtBarSliderButton::GetIconPtr()
  2635. //{
  2636. // ASSERT_VALID( this );
  2637. // return NULL; // no icon at all for text-fields
  2638. //}
  2639. CSize CExtBarSliderButton::CalculateLayout(
  2640. CDC & dc,
  2641. CSize sizePreCalc,
  2642. BOOL bHorz
  2643. )
  2644. {
  2645. ASSERT_VALID( this );
  2646. ASSERT_VALID( GetBar() );
  2647. ASSERT_VALID( (&dc) );
  2648. if( GetNoRotateVerticalLayout() )
  2649. bHorz = TRUE;
  2650. m_ActiveSize = sizePreCalc;
  2651. ASSERT( ! IsSeparator() );
  2652. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  2653. if( GetCmdNode() == NULL )
  2654. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  2655. {
  2656. CExtToolControlBar * pBar = GetBar();
  2657. CExtCmdItem * pCmdItem =
  2658. g_CmdManager->CmdGetPtr(
  2659. g_CmdManager->ProfileNameFromWnd( pBar->GetSafeHwnd() ),
  2660. GetCmdID( true )
  2661. );
  2662. if( pCmdItem == NULL )
  2663. return m_ActiveSize; // shutdown mode
  2664. } // if( GetCmdNode() == NULL )
  2665. CSize _size( 0, 0 );
  2666. // update size for icon
  2667. bool bIconEmpty = true;
  2668. CExtCmdIcon * pIcon = GetIconPtr();
  2669. if( pIcon != NULL && (! pIcon->IsEmpty() ) )
  2670. {
  2671. bIconEmpty = false;
  2672. _size = pIcon->GetSize();
  2673. if( IsLargeIcon() )
  2674. {
  2675. _size.cx *= 2;
  2676. _size.cy *= 2;
  2677. }
  2678. }
  2679. // update size for text
  2680. bool bTextEmpty = true;
  2681. CExtSafeString sMeasureText = GetText();
  2682. if( sMeasureText.IsEmpty() )
  2683. {
  2684. CSize sizeAlign = m_pBar->_GetDefButtonSize();
  2685. if( bHorz )
  2686. {
  2687. sizeAlign.cy -= 7;
  2688. _size.cy = max( _size.cy, sizeAlign.cy );
  2689. } // if( bHorz )
  2690. else
  2691. {
  2692. sizeAlign.cx -= 7;
  2693. _size.cx = max( _size.cx, sizeAlign.cx );
  2694. } // else from if( bHorz )
  2695. } // if( sMeasureText.IsEmpty() )
  2696. else
  2697. {
  2698. bTextEmpty = false;
  2699. static TCHAR stat_strDummyAmpSeq[] = _T("0101");
  2700. sMeasureText.Replace( _T("&&"), stat_strDummyAmpSeq );
  2701. sMeasureText.Remove( _T('&') );
  2702. sMeasureText.Replace( stat_strDummyAmpSeq, _T("&") );
  2703. CRect rcTextMeasure( 0, 0, 0, 0 );
  2704. dc.DrawText(
  2705. sMeasureText,
  2706. sMeasureText.GetLength(),
  2707. &rcTextMeasure,
  2708. DT_SINGLELINE|DT_LEFT|DT_CALCRECT
  2709. );
  2710. if( bHorz )
  2711. {
  2712. _size.cx +=
  2713. rcTextMeasure.Width()
  2714. + __EXT_TB_BUTTON_TEXT_MARGIN*2;
  2715. _size.cy =
  2716. max(
  2717. _size.cy,
  2718. rcTextMeasure.Height()
  2719. );
  2720. } // if( bHorz )
  2721. else
  2722. {
  2723. _size.cx =
  2724. max(
  2725. _size.cx,
  2726. rcTextMeasure.Height()
  2727. );
  2728. _size.cy +=
  2729. rcTextMeasure.Width()
  2730. //+ __EXT_TB_BUTTON_TEXT_MARGIN*2
  2731. + __EXT_TB_BUTTON_TEXT_MARGIN
  2732. ;
  2733. } // else from if( bHorz )
  2734. } // else from if( sMeasureText.IsEmpty() )
  2735. // update size for slider control
  2736. if( bHorz )
  2737. {
  2738. INT nExtentCtrl = ScrollControlExtentHorzGet();
  2739. ASSERT( nExtentCtrl >= 0 );
  2740. _size.cx += nExtentCtrl;
  2741. if( bTextEmpty && bIconEmpty )
  2742. _size.cy += __EXT_TB_BUTTON_OUTER_MARGIN*2-2;
  2743. } // if( bHorz )
  2744. else
  2745. {
  2746. INT nExtentCtrl = ScrollControlExtentVertGet();
  2747. ASSERT( nExtentCtrl >= 0 );
  2748. _size.cy += nExtentCtrl;
  2749. if( bTextEmpty && bIconEmpty )
  2750. _size.cx += __EXT_TB_BUTTON_OUTER_MARGIN*2-2;
  2751. } // else from if( bHorz )
  2752. if( !( bTextEmpty && bIconEmpty ) )
  2753. {
  2754. _size.cx += __EXT_TB_BUTTON_OUTER_MARGIN*2;
  2755. _size.cy += __EXT_TB_BUTTON_OUTER_MARGIN*2;
  2756. if( m_ActiveSize.cx < _size.cx )
  2757. m_ActiveSize.cx = _size.cx;
  2758. if( m_ActiveSize.cy < _size.cy )
  2759. m_ActiveSize.cy = _size.cy;
  2760. } // if( !( bTextEmpty && bIconEmpty ) )
  2761. m_ActiveSize = _size;
  2762. return m_ActiveSize;
  2763. }
  2764. void CExtBarSliderButton::RecalcSliderLayout()
  2765. {
  2766. ASSERT_VALID( this );
  2767. GetBar()->AnimationSite_ClientProgressStop(
  2768. this
  2769. );
  2770. AnimationClient_StateGet( false ).Empty();
  2771. AnimationClient_StateGet( true ).Empty();
  2772. CRect rcAll = Rect();
  2773. CExtToolControlBar * pBar = GetBar();
  2774. bool bHorz = pBar->IsDockedVertically() ? false : true;
  2775. if( GetNoRotateVerticalLayout() )
  2776. bHorz = true;
  2777. INT nExtentCtrl = bHorz
  2778. ? ScrollControlExtentHorzGet()
  2779. : ScrollControlExtentVertGet();
  2780. m_arrAreaRects[__ESA_ICON_AND_TEXT] = rcAll;
  2781. m_arrAreaRects[__ESA_SLIDER] = rcAll;
  2782. m_arrAreaRects[__ESA_ICON_AND_TEXT].DeflateRect(
  2783. 0,
  2784. 0,
  2785. bHorz ? nExtentCtrl : 0,
  2786. bHorz ? 0 : nExtentCtrl
  2787. );
  2788. m_arrAreaRects[__ESA_SLIDER].DeflateRect(
  2789. bHorz ? m_arrAreaRects[__ESA_ICON_AND_TEXT].Width() : 0,
  2790. bHorz ? 0 : m_arrAreaRects[__ESA_ICON_AND_TEXT].Height(),
  2791. 0,
  2792. 0
  2793. );
  2794. INT nExtentBtn = bHorz
  2795. ? ScrollButtonExtentHorzGet()
  2796. : ScrollButtonExtentVertGet();
  2797. m_arrAreaRects[__ESA_SCROLLABLE] = m_arrAreaRects[__ESA_SLIDER];
  2798. m_arrAreaRects[__ESA_LINE_UP] = m_arrAreaRects[__ESA_SLIDER];
  2799. m_arrAreaRects[__ESA_LINE_DOWN] = m_arrAreaRects[__ESA_SLIDER];
  2800. m_arrAreaRects[__ESA_THUMB].SetRect( 0, 0, 0, 0 );
  2801. m_arrAreaRects[__ESA_PAGE_UP].SetRect( 0, 0, 0, 0 );
  2802. m_arrAreaRects[__ESA_PAGE_DOWN].SetRect( 0, 0, 0, 0 );
  2803. ULONG nScrollPos = ScrollPosGet();
  2804. ULONG nScrollPageSize = ScrollPageSizeGet();
  2805. ULONG nScrollTotalRange = ScrollTotalRangeGet();
  2806. ULONG nScrollLimit = ScrollLimitGet();
  2807. ULONG nExtentMD = 0L;
  2808. INT nExtentThumb = 0;
  2809. if( nScrollLimit > 0L )
  2810. {
  2811. if( nScrollPageSize == 0 )
  2812. {
  2813. nExtentThumb = nExtentBtn;
  2814. if( nExtentThumb == 0 )
  2815. nExtentThumb = 6;
  2816. } // if( nScrollPageSize == 0 )
  2817. else
  2818. {
  2819. if( nScrollTotalRange > nScrollPageSize )
  2820. {
  2821. nExtentMD = nScrollTotalRange/nScrollPageSize;
  2822. } // if( nScrollTotalRange > nScrollPageSize )
  2823. } // else from if( nScrollPageSize == 0 )
  2824. } // if( nScrollLimit > 0L )
  2825. if( bHorz )
  2826. {
  2827. m_arrAreaRects[__ESA_SCROLLABLE].DeflateRect( nExtentBtn, 0 );
  2828. m_arrAreaRects[__ESA_LINE_UP].right = m_arrAreaRects[__ESA_LINE_UP].left + nExtentBtn;
  2829. m_arrAreaRects[__ESA_LINE_DOWN].left = m_arrAreaRects[__ESA_LINE_DOWN].right - nExtentBtn;
  2830. if( m_arrAreaRects[__ESA_SCROLLABLE].Width() > 5 )
  2831. {
  2832. if( nExtentThumb == 0 && nExtentMD != 0L )
  2833. nExtentThumb =
  2834. ::MulDiv( m_arrAreaRects[__ESA_SCROLLABLE].Width(), nScrollPageSize, nScrollTotalRange );
  2835. if( nExtentThumb != 0 && nExtentThumb < 6 )
  2836. nExtentThumb = 6;
  2837. if( nExtentThumb != 0 )
  2838. {
  2839. m_arrAreaRects[__ESA_THUMB] = m_arrAreaRects[__ESA_SCROLLABLE];
  2840. m_arrAreaRects[__ESA_THUMB].right = m_arrAreaRects[__ESA_THUMB].left + nExtentThumb;
  2841. if( nScrollLimit > 0 )
  2842. {
  2843. INT nRestSpace = m_arrAreaRects[__ESA_SCROLLABLE].Width() - m_arrAreaRects[__ESA_THUMB].Width();
  2844. ASSERT( nRestSpace > 0 );
  2845. INT nOffset = ::MulDiv( nRestSpace, nScrollPos, nScrollLimit );
  2846. m_arrAreaRects[__ESA_THUMB].OffsetRect( nOffset, 0 );
  2847. if( nScrollPos > 0 )
  2848. {
  2849. m_arrAreaRects[__ESA_PAGE_UP] = m_arrAreaRects[__ESA_SCROLLABLE];
  2850. m_arrAreaRects[__ESA_PAGE_UP].right = m_arrAreaRects[__ESA_THUMB].left;
  2851. }
  2852. if( nScrollPos < nScrollLimit )
  2853. {
  2854. m_arrAreaRects[__ESA_PAGE_DOWN] = m_arrAreaRects[__ESA_SCROLLABLE];
  2855. m_arrAreaRects[__ESA_PAGE_DOWN].left = m_arrAreaRects[__ESA_THUMB].right;
  2856. }
  2857. } // if( nScrollLimit > 0 )
  2858. } // if( nExtentThumb != 0 )
  2859. } // if( m_arrAreaRects[__ESA_SCROLLABLE].Width() > 5 )
  2860. } // if( bHorz )
  2861. else
  2862. {
  2863. m_arrAreaRects[__ESA_SCROLLABLE].DeflateRect( 0, nExtentBtn );
  2864. m_arrAreaRects[__ESA_LINE_UP].bottom = m_arrAreaRects[__ESA_LINE_UP].top + nExtentBtn;
  2865. m_arrAreaRects[__ESA_LINE_DOWN].top = m_arrAreaRects[__ESA_LINE_DOWN].bottom - nExtentBtn;
  2866. if( m_arrAreaRects[__ESA_SCROLLABLE].Height() > 5 )
  2867. {
  2868. if( nExtentThumb == 0 && nExtentMD != 0L )
  2869. nExtentThumb =
  2870. ::MulDiv( m_arrAreaRects[__ESA_SCROLLABLE].Height(), nScrollPageSize, nScrollTotalRange );
  2871. if( nExtentThumb != 0 && nExtentThumb < 6 )
  2872. nExtentThumb = 6;
  2873. if( nExtentThumb != 0 )
  2874. {
  2875. m_arrAreaRects[__ESA_THUMB] = m_arrAreaRects[__ESA_SCROLLABLE];
  2876. m_arrAreaRects[__ESA_THUMB].bottom = m_arrAreaRects[__ESA_THUMB].top + nExtentThumb;
  2877. if( nScrollLimit > 0 )
  2878. {
  2879. INT nRestSpace = m_arrAreaRects[__ESA_SCROLLABLE].Height() - m_arrAreaRects[__ESA_THUMB].Height();
  2880. ASSERT( nRestSpace > 0 );
  2881. INT nOffset = ::MulDiv( nRestSpace, nScrollPos, nScrollLimit );
  2882. m_arrAreaRects[__ESA_THUMB].OffsetRect( 0, nOffset );
  2883. if( nScrollPos > 0 )
  2884. {
  2885. m_arrAreaRects[__ESA_PAGE_UP] = m_arrAreaRects[__ESA_SCROLLABLE];
  2886. m_arrAreaRects[__ESA_PAGE_UP].bottom = m_arrAreaRects[__ESA_THUMB].top;
  2887. }
  2888. if( nScrollPos < nScrollLimit )
  2889. {
  2890. m_arrAreaRects[__ESA_PAGE_DOWN] = m_arrAreaRects[__ESA_SCROLLABLE];
  2891. m_arrAreaRects[__ESA_PAGE_DOWN].top = m_arrAreaRects[__ESA_THUMB].bottom;
  2892. }
  2893. } // if( nScrollLimit > 0 )
  2894. } // if( nExtentThumb != 0 )
  2895. } // if( m_arrAreaRects[__ESA_SCROLLABLE].Height() > 5 )
  2896. } // else from if( bHorz )
  2897. }
  2898. void CExtBarSliderButton::PaintCompound(
  2899. CDC & dc,
  2900. bool bPaintParentChain,
  2901. bool bPaintChildren,
  2902. bool bPaintOneNearestChildrenLevelOnly
  2903. )
  2904. {
  2905. ASSERT_VALID( this );
  2906. ASSERT_VALID( (&dc) );
  2907. ASSERT( ! IsSeparator() );
  2908. if( ! IsPaintAble( dc ) )
  2909. return;
  2910. if( AnimationClient_StatePaint( dc ) )
  2911. return;
  2912. if( bPaintParentChain )
  2913. PaintParentChain( dc );
  2914. if( ( ! IsVisible() )
  2915. || ( GetStyle() & TBBS_HIDDEN)  != 0
  2916. || ( ! dc.RectVisible( &m_ActiveRect ) )
  2917. )
  2918. return;
  2919. CRect rcArea( m_ActiveRect );
  2920. bool bHorz = IsHorzBarOrientation();
  2921. INT nExtentCtrl = bHorz
  2922. ? ScrollControlExtentHorzGet()
  2923. : ScrollControlExtentVertGet();
  2924. rcArea.DeflateRect(
  2925. 0,
  2926. 0,
  2927. bHorz ? nExtentCtrl : 0,
  2928. bHorz ? 0 : nExtentCtrl
  2929. );
  2930. if( rcArea.right > rcArea.left
  2931. && rcArea.bottom > rcArea.top
  2932. && dc.RectVisible( &rcArea )
  2933. )
  2934. { // if icon/text area is not empty and visible
  2935. CExtToolControlBar * pBar = GetBar();
  2936. bool bDockSiteCustomizeMode =
  2937. pBar->_IsDockSiteCustomizeMode();
  2938. bool bPushed = false;
  2939. // ( IsPressed() && (!bDockSiteCustomizeMode) )
  2940. // ? true : false;
  2941. bool bEnabled =
  2942. ( IsDisabled() && (!bDockSiteCustomizeMode) )
  2943. ? false : true;
  2944. bool bHover = false;
  2945. // ( IsHover() && (!bDockSiteCustomizeMode) )
  2946. // ? true : false;
  2947. //if( !bDockSiteCustomizeMode )
  2948. //{
  2949. // if( CExtToolControlBar::g_bMenuTracking
  2950. // || CExtPopupMenuWnd::IsMenuTracking()
  2951. // )
  2952. // bHover = false;
  2953. // else if( !bHover )
  2954. // bHover = IsPressedTracking();
  2955. //} // if( !bDockSiteCustomizeMode )
  2956. bool bIndeterminate = false;
  2957. // ( IsIndeterminate() && (!bDockSiteCustomizeMode) )
  2958. // ? true : false;
  2959. CExtSafeString sText = GetText();
  2960. CExtCmdIcon * pIcon = GetIconPtr();
  2961. CExtCmdIcon _iconLarge;
  2962. if( pIcon != NULL
  2963. && (! pIcon->IsEmpty() )
  2964. && IsLargeIcon()
  2965. )
  2966. {
  2967. CSize _sizeIcon = pIcon->GetSize();
  2968. _sizeIcon.cx *= 2;
  2969. _sizeIcon.cy *= 2;
  2970. if( _iconLarge.CreateScaledCopy(
  2971. *pIcon,
  2972. _sizeIcon
  2973. )
  2974. )
  2975. pIcon = &_iconLarge;
  2976. #ifdef _DEBUG
  2977. else
  2978. {
  2979. ASSERT( FALSE );
  2980. }
  2981. #endif // _DEBUG
  2982. }
  2983. HFONT hFont =
  2984. (HFONT) GetBar()
  2985. -> OnGetToolbarFont( ! bHorz, false )
  2986. -> GetSafeHandle();
  2987. CExtPaintManager::PAINTPUSHBUTTONDATA _ppbd(
  2988. this,
  2989. bHorz,
  2990. rcArea,
  2991. sText,
  2992. pIcon,
  2993. true,
  2994. bHover,
  2995. bPushed,
  2996. bIndeterminate,
  2997. bEnabled,
  2998. true,
  2999. false,
  3000. false,
  3001. 0,
  3002. hFont, // NULL // (+ 2.24)
  3003. ( IsAbleToTrackMenu()
  3004. //&&( ! pBar->IsKindOf(RUNTIME_CLASS(CExtMenuControlBar)) )
  3005. && ( ! pBar->_IsSimplifiedDropDownButtons() )
  3006. ) ? true : false,
  3007. 0,
  3008. (!bEnabled) || ( bEnabled && (!bHover) && (!bPushed) )
  3009. );
  3010. _ppbd.m_rcBorderSizes = OnQueryBorderSizes( bHorz );
  3011. _ppbd.m_nIconAlignment = OnQueryAlignmentIcon( bHorz );
  3012. _ppbd.m_nTextAlignment = OnQueryAlignmentText( bHorz );
  3013. _ppbd.m_rcIconMargins = OnQueryMarginsIcon( bHorz );
  3014. _ppbd.m_rcTextMargins = OnQueryMarginsText( bHorz );
  3015. //if( GetSeparatedDropDown() )
  3016. //{
  3017. // _ppbd.m_bSeparatedDropDown = true;
  3018. // if( ( m_bDropDownHT /*|| CExtToolControlBar::g_bMenuTracking*/ )
  3019. // && bPushed
  3020. // && ( ! bDockSiteCustomizeMode )
  3021. // )
  3022. // {
  3023. // //_ppbd.m_bPushed = false;
  3024. // _ppbd.m_bPushedDropDown = true;
  3025. // }
  3026. //}
  3027. bool bChecked =
  3028. ( (GetStyle()&TBBS_CHECKED) != 0 ) 
  3029. ? true 
  3030. : false;
  3031. _ppbd.m_bChecked = bChecked;
  3032. pBar->PmBridge_GetPM()->PaintPushButton( dc, _ppbd );
  3033. } // if icon/text area is not empty and visible
  3034. if( m_arrAreaRects[__ESA_SLIDER].right > m_arrAreaRects[__ESA_SLIDER].left
  3035. && m_arrAreaRects[__ESA_SLIDER].bottom > m_arrAreaRects[__ESA_SLIDER].top
  3036. && dc.RectVisible( &m_arrAreaRects[__ESA_SLIDER] )
  3037. )
  3038. { // if slider area is not empty and visible
  3039. for( int nRectNo = __ESA_PAINT_RANGE_FIRST;
  3040. nRectNo <= __ESA_PAINT_RANGE_LAST;
  3041. nRectNo++
  3042. )
  3043. { // walk and paint all areas
  3044. if( m_arrAreaRects[nRectNo].right <= m_arrAreaRects[nRectNo].left
  3045. || m_arrAreaRects[nRectNo].bottom <= m_arrAreaRects[nRectNo].top
  3046. || ( ! dc.RectVisible( &m_arrAreaRects[nRectNo] ) )
  3047. )
  3048. continue;
  3049. OnPaintScrollArea(
  3050. dc,
  3051. (CExtBarSliderButton::e_SliderArea_t)nRectNo,
  3052. bHorz
  3053. );
  3054. } // walk and paint all areas
  3055. } // if slider area is not empty and visible
  3056. rcArea = m_ActiveRect;
  3057. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  3058. CExtToolControlBar * pBar = GetBar();
  3059. CExtCustomizeSite * pSite = pBar->GetCustomizeSite();
  3060. if( pSite != NULL
  3061. && pSite->IsCustomizeMode()
  3062. && pSite->CustomizedNodeGet() != NULL
  3063. && pSite->CustomizedNodeGet() == GetCmdNode( false )
  3064. )
  3065. {
  3066. pBar->PmBridge_GetPM()->PaintDragSourceRect(
  3067. dc,
  3068. rcArea
  3069. );
  3070. }
  3071. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  3072. if( bPaintChildren )
  3073. PaintChildren( dc, bPaintOneNearestChildrenLevelOnly );
  3074. }
  3075. void CExtBarSliderButton::OnPaintScrollArea(
  3076. CDC & dc,
  3077. CExtBarSliderButton::e_SliderArea_t eSA,
  3078. bool bHorz
  3079. )
  3080. {
  3081. ASSERT_VALID( this );
  3082. ASSERT_VALID( (&dc) );
  3083. CExtToolControlBar * pBar = GetBar();
  3084. ASSERT_VALID( pBar );
  3085. ASSERT( 0 <= eSA && eSA < __ESA_COUNT );
  3086. CRect rcArea = GetAreaRect( eSA );
  3087. if( rcArea.right < rcArea.left
  3088. || rcArea.bottom < rcArea.top
  3089. || ( ! dc.RectVisible(&rcArea) )
  3090. )
  3091. return;
  3092. bool bFlatButton = false;
  3093. bool bDockSiteCustomizeMode =
  3094. pBar->_IsDockSiteCustomizeMode();
  3095. bool bEnabled =
  3096. ( IsDisabled()
  3097. && (!bDockSiteCustomizeMode)
  3098. )
  3099. ? false : true;
  3100. if( bEnabled )
  3101. {
  3102. ULONG nScrollPageSize = ScrollPageSizeGet();
  3103. ULONG nScrollTotalRange = ScrollTotalRangeGet();
  3104. if( nScrollPageSize >= nScrollTotalRange
  3105. || nScrollTotalRange == 0L
  3106. )
  3107. bEnabled = false;
  3108. } // if( bEnabled )
  3109. bool bHover =
  3110. ( IsHover()
  3111. && bEnabled
  3112. && (!bDockSiteCustomizeMode)
  3113. )
  3114. ? true : false;
  3115. bool bPushed =
  3116. ( GetPressedArea() == eSA
  3117. && bEnabled
  3118. && (!bDockSiteCustomizeMode)
  3119. )
  3120. ? true : false;
  3121. if( !bDockSiteCustomizeMode )
  3122. {
  3123. if( CExtToolControlBar::g_bMenuTracking
  3124. || CExtPopupMenuWnd::IsMenuTracking()
  3125. )
  3126. bHover = false;
  3127. else if( !bHover )
  3128. bHover = IsPressedTracking();
  3129. } // if( !bDockSiteCustomizeMode )
  3130. CExtPaintManager::glyph_t * pBtnGlyph = NULL;
  3131. bool bPaintAsButton = false;
  3132. INT nExtentBtn = bHorz
  3133. ? ScrollButtonExtentHorzGet()
  3134. : ScrollButtonExtentVertGet();
  3135. switch( eSA )
  3136. {
  3137. case __ESA_LINE_UP:
  3138. bPaintAsButton = true;
  3139. pBtnGlyph = bHorz
  3140. ? CExtPaintManager::g_DockingCaptionGlyphs[
  3141. CExtPaintManager::__DCBT_ARROW_LEFT ]
  3142. : CExtPaintManager::g_DockingCaptionGlyphs[
  3143. CExtPaintManager::__DCBT_ARROW_UP ];
  3144. bFlatButton = bPushed;
  3145. // bPushed = false;
  3146. break;
  3147. case __ESA_LINE_DOWN:
  3148. bPaintAsButton = true;
  3149. pBtnGlyph = bHorz
  3150. ? CExtPaintManager::g_DockingCaptionGlyphs[
  3151. CExtPaintManager::__DCBT_ARROW_RIGHT ]
  3152. : CExtPaintManager::g_DockingCaptionGlyphs[
  3153. CExtPaintManager::__DCBT_ARROW_DOWN ];
  3154. bFlatButton = bPushed;
  3155. // bPushed = false;
  3156. break;
  3157. case __ESA_THUMB:
  3158. bPaintAsButton = true;
  3159. //bFlatButton = bPushed;
  3160. bPushed = false;
  3161. break;
  3162. case __ESA_SCROLLABLE:
  3163. if( nExtentBtn != 0 )
  3164. {
  3165. dc.FillRect(
  3166. rcArea,
  3167. (bHover && bEnabled)
  3168. ? ( & pBar->PmBridge_GetPM()->m_brushLightestDefault )
  3169. : ( & pBar->PmBridge_GetPM()->m_brushLightDefault )
  3170. );
  3171. rcArea.InflateRect(
  3172. bHorz ? 1 : 0,
  3173. bHorz ? 0 : 1
  3174. );
  3175. } // if( nExtentBtn != 0 )
  3176. else
  3177. {
  3178. rcArea.DeflateRect(
  3179. bHorz ? 0 : (rcArea.Width()/2),
  3180. bHorz ? (rcArea.Height()/2) : 0
  3181. );
  3182. rcArea.InflateRect(
  3183. bHorz ? 0 : 1,
  3184. bHorz ? 1 : 0
  3185. );
  3186. if( bEnabled && bHover )
  3187. {
  3188. dc.FillSolidRect( &rcArea, pBar->PmBridge_GetPM()->GetColor( COLOR_3DDKSHADOW, this ) );
  3189. rcArea.DeflateRect( 1, 1 );
  3190. dc.FillRect( &rcArea, &pBar->PmBridge_GetPM()->m_brushLightestDefault );
  3191. } // if( bEnabled && bHover )
  3192. else
  3193. {
  3194. dc.FillRect( &rcArea, &pBar->PmBridge_GetPM()->m_brushDarkestDefault );
  3195. rcArea.DeflateRect( 1, 1 );
  3196. dc.FillRect( &rcArea, &pBar->PmBridge_GetPM()->m_brushLighterDefault );
  3197. } // else from if( bEnabled && bHover )
  3198. } // else from if( nExtentBtn != 0 )
  3199. return;
  3200. case __ESA_PAGE_UP:
  3201. case __ESA_PAGE_DOWN:
  3202. if( nExtentBtn != 0 )
  3203. {
  3204. if( bHover || bPushed )
  3205. dc.FillRect(
  3206. rcArea,
  3207. bPushed
  3208. ? &pBar->PmBridge_GetPM()->m_brushDarkestDefault
  3209. : &pBar->PmBridge_GetPM()->m_brushLightestDefault
  3210. );
  3211. } // if( nExtentBtn != 0 )
  3212. return;
  3213. } // switch( eSA )
  3214. if( bPaintAsButton )
  3215. {
  3216. CExtPaintManager * pPM = pBar->PmBridge_GetPM();
  3217. ASSERT_VALID( pPM );
  3218. #ifndef __EXT_MFC_NO_GRIDWND
  3219. COLORREF clrFace = pPM->GetColor( COLOR_3DFACE );
  3220. COLORREF clrLight = pPM->GetColor( COLOR_3DHIGHLIGHT );
  3221. COLORREF clrShadow = pPM->GetColor( COLOR_3DSHADOW );
  3222. COLORREF clrWindow = pPM->GetColor( COLOR_WINDOW );
  3223. COLORREF clrText = pPM->GetColor( COLOR_BTNTEXT );
  3224. if( ! pPM->Grid_PaintButton(
  3225. dc,
  3226. rcArea,
  3227. INT(CExtGridCell::__EBTT_ELLIPSIS),
  3228. bPushed,
  3229. bHover,
  3230. false, // focused
  3231. bEnabled,
  3232. clrFace,
  3233. clrLight,
  3234. clrShadow,
  3235. clrWindow,
  3236. clrText,
  3237. __EGCPF_NO_BUTTON_ELLIPSIS_DOTS,
  3238. pBar, // (CObject*) this
  3239. 0L
  3240. )
  3241. )
  3242. #endif // __EXT_MFC_NO_GRIDWND
  3243. {
  3244. bool bIndeterminate =
  3245. ( IsIndeterminate() && (!bDockSiteCustomizeMode) )
  3246. ? true : false;
  3247. CExtPaintManager::PAINTPUSHBUTTONDATA _ppbd(
  3248. this,
  3249. bHorz,
  3250. rcArea,
  3251. _T(""),
  3252. NULL,
  3253. bFlatButton,
  3254. bHover,
  3255. bPushed,
  3256. bIndeterminate,
  3257. bEnabled,
  3258. !bFlatButton,
  3259. false,
  3260. false,
  3261. 0,
  3262. NULL,
  3263. false,
  3264. 0,
  3265. false
  3266. );
  3267. _ppbd.m_rcBorderSizes = OnQueryBorderSizes( bHorz );
  3268. _ppbd.m_nIconAlignment = OnQueryAlignmentIcon( bHorz );
  3269. _ppbd.m_nTextAlignment = OnQueryAlignmentText( bHorz );
  3270. _ppbd.m_rcIconMargins = OnQueryMarginsIcon( bHorz );
  3271. _ppbd.m_rcTextMargins = OnQueryMarginsText( bHorz );
  3272. bool bChecked =
  3273. ( (GetStyle()&TBBS_CHECKED) != 0 ) 
  3274. ? true 
  3275. : false;
  3276. _ppbd.m_bChecked = bChecked;
  3277. _ppbd.m_lParam = eSA; // flag, which specifies what the part of the slider we are drawing
  3278. pPM->PaintPushButton( dc, _ppbd );
  3279. }
  3280. if( pBtnGlyph != NULL )
  3281. {
  3282. if( bPushed )
  3283. rcArea.OffsetRect(
  3284. pBar->PmBridge_GetPM()->GetPushedOffset()
  3285. );
  3286. COLORREF ColorValues[] =
  3287. {
  3288. RGB(0,0,0),
  3289. pBar->PmBridge_GetPM()->GetColor(
  3290. bEnabled
  3291. ? (
  3292. (bHover || bPushed)
  3293. ? CExtPaintManager::CLR_TEXT_IN
  3294. : CExtPaintManager::CLR_TEXT_OUT
  3295. )
  3296. : CExtPaintManager::CLR_TEXT_DISABLED
  3297. ,
  3298. this
  3299. )
  3300. };
  3301. pBar->PmBridge_GetPM()->PaintGlyphCentered(
  3302. dc,
  3303. rcArea,
  3304. *pBtnGlyph,
  3305. ColorValues
  3306. );
  3307. } // if( pBtnGlyph != NULL )
  3308. return;
  3309. } // if( bPaintAsButton )
  3310. }
  3311. CExtBarSliderButton::e_SliderArea_t
  3312. CExtBarSliderButton::GetTrackedArea() const
  3313. {
  3314. ASSERT_VALID( this );
  3315. ASSERT_VALID( m_pBar );
  3316. return m_eAreaTracked;
  3317. }
  3318. CExtBarSliderButton::e_SliderArea_t
  3319. CExtBarSliderButton::GetPressedArea() const
  3320. {
  3321. ASSERT_VALID( this );
  3322. ASSERT_VALID( m_pBar );
  3323. return m_eAreaPressed;
  3324. }
  3325. CRect CExtBarSliderButton::GetAreaRect(
  3326. CExtBarSliderButton::e_SliderArea_t eSA
  3327. ) const
  3328. {
  3329. ASSERT_VALID( this );
  3330. ASSERT_VALID( m_pBar );
  3331. ASSERT( 0 <= eSA && eSA < __ESA_COUNT );
  3332. return m_arrAreaRects[eSA];
  3333. }
  3334. UINT CExtBarSliderButton::OnTrackPopup(
  3335. CPoint point,
  3336. bool bSelectAny,
  3337. bool bForceNoAnimation
  3338. )
  3339. {
  3340. ASSERT_VALID( this );
  3341. ASSERT_VALID( m_pBar );
  3342. point;
  3343. bSelectAny;
  3344. bForceNoAnimation;
  3345. return UINT(-1L);
  3346. }
  3347. void CExtBarSliderButton::OnHover(
  3348. CPoint point,
  3349. bool bOn,
  3350. bool & bSuspendTips
  3351. )
  3352. {
  3353. ASSERT_VALID( this );
  3354. ASSERT_VALID( m_pBar );
  3355. bSuspendTips = false;
  3356. bool bDockSiteCustomizeMode =
  3357. m_pBar->_IsDockSiteCustomizeMode();
  3358. if( bDockSiteCustomizeMode )
  3359. return;
  3360. CExtBarButton::OnHover(
  3361. point,
  3362. bOn,
  3363. bSuspendTips
  3364. );
  3365. }
  3366. void CExtBarSliderButton::OnClick(
  3367. CPoint point,
  3368. bool bDown
  3369. )
  3370. {
  3371. ASSERT_VALID( this );
  3372. ASSERT_VALID( m_pBar );
  3373. bool bDockSiteCustomizeMode =
  3374. m_pBar->_IsDockSiteCustomizeMode();
  3375. if( bDockSiteCustomizeMode )
  3376. return;
  3377. CExtBarButton::OnClick( point, bDown );
  3378. if( m_pBar->m_pDockSite != NULL )
  3379. {
  3380. if( m_pBar->m_pDockSite->m_bHelpMode )
  3381. return;
  3382. } // if( m_pBar->m_pDockSite != NULL )
  3383. m_eAreaTracked = m_eAreaPressed = __ESA_UNKNOWN_OR_NOWHERE;
  3384. if( !bDown )
  3385. {
  3386. RedrawButton( true );
  3387. return;
  3388. }
  3389. ULONG nScrollLimit = ScrollLimitGet();
  3390. if( nScrollLimit == 0L )
  3391. {
  3392. RedrawButton( true );
  3393. return;
  3394. }
  3395. ULONG nScrollPos = ScrollPosGet();
  3396. ULONG nScrollPosStart = nScrollPos;
  3397. for( int nRectNo = __ESA_CLICKABLE_RANGE_FIRST;
  3398. nRectNo <= __ESA_CLICKABLE_RANGE_LAST;
  3399. nRectNo++
  3400. )
  3401. {
  3402. if( m_arrAreaRects[nRectNo].right <= m_arrAreaRects[nRectNo].left
  3403. || m_arrAreaRects[nRectNo].bottom <= m_arrAreaRects[nRectNo].top
  3404. )
  3405. continue;
  3406. if( m_arrAreaRects[nRectNo].PtInRect(point) )
  3407. {
  3408. m_eAreaTracked = (e_SliderArea_t)nRectNo;
  3409. break;
  3410. }
  3411. }
  3412. RedrawButton( true );
  3413. if( m_eAreaTracked == __ESA_UNKNOWN_OR_NOWHERE )
  3414. return;
  3415. CExtToolControlBar * pBar = GetBar();
  3416. bool bHorz = pBar->IsDockedVertically() ? false : true;
  3417. if( GetNoRotateVerticalLayout() )
  3418. bHorz = true;
  3419. e_SliderArea_t eSA = m_eAreaTracked;
  3420. CRect rcArea = GetAreaRect( eSA );
  3421. const UINT nTimerID = 401;
  3422. const UINT nTimerEllapse = 50;
  3423. HWND hWndOwnBar = m_pBar->GetSafeHwnd();
  3424. ASSERT( hWndOwnBar != NULL );
  3425. bool bStopFlag = false;
  3426. CPoint ptCursor( point );
  3427. ULONG nStepSize = 0L;
  3428. bool bUpStep = false;
  3429. switch( eSA )
  3430. {
  3431. case __ESA_LINE_UP:
  3432. bUpStep = true;
  3433. case __ESA_LINE_DOWN:
  3434. nStepSize = 1L;
  3435. break;
  3436. case __ESA_PAGE_UP:
  3437. bUpStep = true;
  3438. case __ESA_PAGE_DOWN:
  3439. nStepSize = ScrollPageSizeGet();
  3440. if( nStepSize == 0L )
  3441. nStepSize = 1L;
  3442. break;
  3443. case __ESA_THUMB:
  3444. m_eAreaPressed = eSA;
  3445. RedrawButton();
  3446. break;
  3447. } // switch( eSA )
  3448. if( nStepSize > nScrollLimit )
  3449. nStepSize = nScrollLimit;
  3450. ::SetCapture( hWndOwnBar );
  3451. if( nStepSize != 0L )
  3452. ::SetTimer( hWndOwnBar, nTimerID, nTimerEllapse, NULL );
  3453. for( MSG msg; ::IsWindow( hWndOwnBar ) && (!bStopFlag); )
  3454. {
  3455. if( !PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE) )
  3456. {
  3457. if( ! ::IsWindow( hWndOwnBar ) )
  3458. break;
  3459. ::WaitMessage();
  3460. continue;
  3461. } // if( !PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE) )
  3462. bool bAnalyzeThumb = false;
  3463. switch( msg.message )
  3464. {
  3465. case WM_LBUTTONDBLCLK:
  3466. case WM_LBUTTONUP:
  3467. case WM_RBUTTONDBLCLK:
  3468. case WM_RBUTTONDOWN:
  3469. case WM_RBUTTONUP:
  3470. case WM_MBUTTONDBLCLK:
  3471. case WM_MBUTTONDOWN:
  3472. case WM_MBUTTONUP:
  3473. case WM_CANCELMODE:
  3474. case WM_ACTIVATEAPP:
  3475. case WM_KEYDOWN:
  3476. case WM_KEYUP:
  3477. bStopFlag = true;
  3478. break;
  3479. case WM_CAPTURECHANGED:
  3480. if( (HWND)msg.wParam != hWndOwnBar )
  3481. bStopFlag = true;
  3482. break;
  3483. case WM_MOUSEMOVE:
  3484. if( eSA == __ESA_THUMB )
  3485. {
  3486. if( ( ! CExtPopupMenuWnd::IsKeyPressed(VK_LBUTTON) )
  3487. || CExtPopupMenuWnd::IsKeyPressed(VK_MBUTTON)
  3488. || CExtPopupMenuWnd::IsKeyPressed(VK_RBUTTON)
  3489. || CExtPopupMenuWnd::IsMenuTracking()
  3490. )
  3491. {
  3492. bStopFlag = true;
  3493. break;
  3494. }
  3495. PeekMessage(&msg,NULL,msg.message,msg.message,PM_REMOVE);
  3496. bAnalyzeThumb = true;
  3497. ::GetCursorPos( &ptCursor );
  3498. ::ScreenToClient( hWndOwnBar, &ptCursor );
  3499. break;
  3500. } // if( eSA == __ESA_THUMB )
  3501. if( nStepSize == 0 )
  3502. break;
  3503. case WM_TIMER:
  3504. if( ( ! CExtPopupMenuWnd::IsKeyPressed(VK_LBUTTON) )
  3505. || CExtPopupMenuWnd::IsKeyPressed(VK_MBUTTON)
  3506. || CExtPopupMenuWnd::IsKeyPressed(VK_RBUTTON)
  3507. || CExtPopupMenuWnd::IsMenuTracking()
  3508. )
  3509. {
  3510. bStopFlag = true;
  3511. break;
  3512. }
  3513. if( msg.message == WM_TIMER )
  3514. {
  3515. if( msg.wParam != nTimerID )
  3516. break;
  3517. } // if( msg.message == WM_TIMER )
  3518. ASSERT( nStepSize != 0L );
  3519. PeekMessage(&msg,NULL,msg.message,msg.message,PM_REMOVE);
  3520. ::GetCursorPos( &ptCursor );
  3521. ::ScreenToClient( hWndOwnBar, &ptCursor );
  3522. if( ! rcArea.PtInRect(ptCursor) )
  3523. {
  3524. if( m_eAreaPressed != __ESA_UNKNOWN_OR_NOWHERE )
  3525. {
  3526. m_eAreaPressed = __ESA_UNKNOWN_OR_NOWHERE;
  3527. RedrawButton( true );
  3528. }
  3529. continue;
  3530. }
  3531. if( bUpStep )
  3532. {
  3533. if( nScrollPos == 0L )
  3534. {
  3535. nScrollPos = ScrollPosGet();
  3536. nScrollLimit = ScrollLimitGet();
  3537. break;
  3538. }
  3539. if( nScrollPos < nStepSize )
  3540. nScrollPos = 0L;
  3541. else
  3542. nScrollPos -= nStepSize;
  3543. } // if( bUpStep )
  3544. else
  3545. {
  3546. if( nScrollPos >= nScrollLimit )
  3547. {
  3548. nScrollPos = ScrollPosGet();
  3549. nScrollLimit = ScrollLimitGet();
  3550. break;
  3551. }
  3552. if( nStepSize > (nScrollLimit-nScrollPos) )
  3553. nScrollPos = nScrollLimit;
  3554. else
  3555. nScrollPos += nStepSize;
  3556. ASSERT( nScrollPos <= nScrollLimit );
  3557. } // else from if( bUpStep )
  3558. if( ScrollPosGet() != nScrollPos )
  3559. {
  3560. ScrollPosSet( nScrollPos );
  3561. nScrollPos = ScrollPosGet();
  3562. nScrollLimit = ScrollLimitGet();
  3563. RecalcSliderLayout();
  3564. RedrawButton( true );
  3565. }
  3566. rcArea = GetAreaRect( eSA );
  3567. m_eAreaPressed = eSA;
  3568. break;
  3569. default:
  3570. if( ( ! CExtPopupMenuWnd::IsKeyPressed(VK_LBUTTON) )
  3571. || CExtPopupMenuWnd::IsKeyPressed(VK_MBUTTON)
  3572. || CExtPopupMenuWnd::IsKeyPressed(VK_RBUTTON)
  3573. || CExtPopupMenuWnd::IsMenuTracking()
  3574. )
  3575. bStopFlag = true;
  3576. break;
  3577. } // switch( msg.message )
  3578. if( bStopFlag || nScrollLimit == 0L )
  3579. break;
  3580. if( bAnalyzeThumb )
  3581. {
  3582. LONG nPixelOffset = bHorz
  3583. ? (ptCursor.x - point.x)
  3584. : (ptCursor.y - point.y);
  3585. LONG nPixelExtent = bHorz
  3586. ? (m_arrAreaRects[__ESA_SCROLLABLE].Width() - m_arrAreaRects[__ESA_THUMB].Width())
  3587. : (m_arrAreaRects[__ESA_SCROLLABLE].Height() - m_arrAreaRects[__ESA_THUMB].Height());
  3588. if( nPixelExtent <= 0 )
  3589. {
  3590. bStopFlag = true;
  3591. break;
  3592. } // if( nPixelExtent <= 0 )
  3593. if( abs(nPixelOffset) > nPixelExtent )
  3594. nPixelOffset =
  3595. (nPixelOffset < 0)
  3596. ? (-nPixelExtent)
  3597. : nPixelExtent;
  3598. ULONG nShift =
  3599. ( nPixelExtent == 0 || nPixelOffset == 0 )
  3600. ? 0
  3601. : ::MulDiv( nScrollLimit, abs(nPixelOffset), nPixelExtent );
  3602. nScrollPos = nScrollPosStart;
  3603. if( nPixelOffset < 0 )
  3604. {
  3605. if( nShift >= nScrollPos )
  3606. nScrollPos = 0;
  3607. else
  3608. nScrollPos -= nShift;
  3609. } // if( nPixelOffset < 0 )
  3610. else
  3611. {
  3612. if( nScrollPos > nScrollLimit )
  3613. {
  3614. nScrollPos = ScrollPosGet();
  3615. nScrollLimit = ScrollLimitGet();
  3616. break;
  3617. }
  3618. if( nShift > (nScrollLimit-nScrollPos) )
  3619. nScrollPos = nScrollLimit;
  3620. else
  3621. nScrollPos += nShift;
  3622. ASSERT( nScrollPos <= nScrollLimit );
  3623. } // else from if( nPixelOffset < 0 )
  3624. if( ScrollPosGet() != nScrollPos )
  3625. {
  3626. ScrollPosSet( nScrollPos );
  3627. nScrollPos = ScrollPosGet();
  3628. nScrollLimit = ScrollLimitGet();
  3629. RecalcSliderLayout();
  3630. RedrawButton( true );
  3631. rcArea = GetAreaRect( eSA );
  3632. m_eAreaPressed = eSA;
  3633. continue;
  3634. } // if( bAnalyzeThumb )
  3635. if( !AfxGetThread()->PumpMessage() )
  3636. break;
  3637. } // for( MSG msg; ::IsWindow( hWndOwnBar ) && (!bStopFlag); )
  3638. if( ! ::IsWindow( hWndOwnBar ) )
  3639. return;
  3640. if( nStepSize != 0L )
  3641. ::KillTimer( hWndOwnBar, nTimerID );
  3642. m_eAreaTracked = m_eAreaPressed = __ESA_UNKNOWN_OR_NOWHERE;
  3643. RedrawButton( true );
  3644. if( ::GetCapture() == hWndOwnBar )
  3645. ::ReleaseCapture();
  3646. }
  3647. void CExtBarSliderButton::OnDeliverCmd()
  3648. {
  3649. ASSERT_VALID( this );
  3650. ASSERT_VALID( GetBar() );
  3651. //CExtBarButton::OnDeliverCmd();
  3652. if( GetBar()->OnDeliverCmd( this ) )
  3653. return;
  3654. }
  3655. __EXT_MFC_INT_PTR CExtBarSliderButton::OnToolHitTest(
  3656. CPoint point,
  3657. TOOLINFO * pTI
  3658. )
  3659. {
  3660. ASSERT_VALID( this );
  3661. ASSERT_VALID( m_pBar );
  3662. return CExtBarButton::OnToolHitTest( point, pTI );
  3663. }
  3664. LRESULT CExtBarSliderButton::OnHelpHitTest(
  3665. CPoint point
  3666. )
  3667. {
  3668. ASSERT_VALID( this );
  3669. ASSERT_VALID( m_pBar );
  3670. return CExtBarButton::OnHelpHitTest( point );
  3671. }
  3672. void CExtBarSliderButton::OnUpdateCmdUI(
  3673. CWnd * pTarget,
  3674. BOOL bDisableIfNoHndler,
  3675. int nIndex
  3676. )
  3677. {
  3678. ASSERT_VALID( this );
  3679. ASSERT_VALID( m_pBar );
  3680. CExtBarButton::OnUpdateCmdUI(
  3681. pTarget,
  3682. bDisableIfNoHndler,
  3683. nIndex
  3684. );
  3685. }
  3686. bool CExtBarSliderButton::OnSetCursor( CPoint point )
  3687. {
  3688. ASSERT_VALID( this );
  3689. ASSERT_VALID( m_pBar );
  3690. return CExtBarButton::OnSetCursor( point );
  3691. }
  3692. /////////////////////////////////////////////////////////////////////////////
  3693. // CExtToolControlBar
  3694. const UINT CExtToolControlBar::g_nMsgTrackButtonMenu =
  3695. ::RegisterWindowMessage(
  3696. _T("CExtToolControlBar::g_nMsgTrackButtonMenu")
  3697. );
  3698. const UINT CExtToolControlBar::g_nMsgContinueTrackMenu =
  3699. ::RegisterWindowMessage(
  3700. _T("CExtToolControlBar::g_nMsgContinueTrackMenu")
  3701. );
  3702. IMPLEMENT_DYNCREATE( CExtToolControlBar, CExtControlBar )
  3703. CExtBarButton * CExtToolControlBar::_GetButtonPtr(int nIndex) const
  3704. {
  3705. __EXT_MFC_INT_PTR nButtonsCount = m_buttons.GetSize();
  3706. if( !( nIndex >= 0 && nIndex < nButtonsCount ) )
  3707. return NULL;
  3708. CExtBarButton * pTBB =
  3709. m_buttons[nIndex];
  3710. ASSERT_VALID( pTBB );
  3711. return pTBB;
  3712. }
  3713. void CExtToolControlBar::_RemoveAllButtonsImpl()
  3714. {
  3715. INT nAcIndex, nAcCount = AnimationSite_ClientGetCount();
  3716. for( nAcIndex = 0; nAcIndex < nAcCount; nAcIndex ++ )
  3717. {
  3718. CExtAnimationClient * pAC = AnimationSite_ClientGetAt( nAcIndex );
  3719. AnimationSite_ClientProgressStop( pAC );
  3720. }
  3721. if( GetMenuTrackingButton() != NULL )
  3722. {
  3723. _CloseTrackingMenus();
  3724. CExtPopupMenuWnd::CancelMenuTracking();
  3725. }
  3726. if( m_pRightBtn != NULL )
  3727. m_pRightBtn->GetButtons().RemoveAll();
  3728. for( INT nBtnIdx = 0; nBtnIdx < m_buttons.GetSize(); nBtnIdx++ )
  3729. {
  3730. CExtBarButton * pTBB = m_buttons[nBtnIdx];
  3731. ASSERT( pTBB != NULL );
  3732. AnimationSite_ClientRemove( pTBB );
  3733. delete pTBB;
  3734. } // for( INT nBtnIdx = 0; nBtnIdx < m_buttons.GetSize(); nBtnIdx++ )
  3735. m_buttons.RemoveAll();
  3736. m_pRightBtn = NULL;
  3737. m_nBtnIdxCapture = -1;      // nothing captured
  3738. m_nBtnIdxHover = -1;
  3739. m_nBtnIdxMenuTracking = -1;
  3740. }
  3741. int CExtToolControlBar::_GetButtonsCountImpl() const
  3742. {
  3743. int nCountOfButtons = (int)m_buttons.GetSize();
  3744. return nCountOfButtons;
  3745. }
  3746. void CExtToolControlBar::_RedrawOnPosChanged()
  3747. {
  3748. ASSERT_VALID( this );