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

界面编程

开发平台:

Visual C++

  1. bool bUpdateState = false;
  2. if( m_nBtnIdxCapture >= 0 )
  3. {
  4. CExtBarButton* pTBB =
  5. _GetButtonPtr(m_nBtnIdxCapture);
  6. ASSERT_VALID( pTBB );
  7. ASSERT( !(pTBB->IsSeparator()) );
  8. if( m_nBtnIdxMenuTracking != m_nBtnIdxCapture )
  9. {
  10. UINT nNewStyle = (pTBB->GetStyle() & ~TBBS_PRESSED);
  11. SetButtonStyle(m_nBtnIdxCapture, nNewStyle);
  12. }
  13. pTBB->OnPressedTrackingStop();
  14. m_nBtnIdxCapture = -1;
  15. bUpdateState = true;
  16. }
  17. if( m_nBtnIdxHover >= 0 )
  18. _UpdateHoverButton( CPoint(-1,-1), false );
  19. if( bUpdateState )
  20. {
  21. if( CExtMouseCaptureSink::GetCapture() == GetSafeHwnd() )
  22. CExtMouseCaptureSink::ReleaseCapture();
  23. Invalidate();
  24. // UpdateWindow();
  25. }
  26. }
  27. void CExtToolControlBar::OnSettingChange(UINT uFlags, __EXT_MFC_SAFE_LPCTSTR lpszSection)
  28. {
  29. CExtControlBar::OnSettingChange(uFlags,lpszSection);
  30. if( m_bPresubclassDialogMode )
  31. {
  32. _RecalcLayoutImpl();
  33. return;
  34. }
  35. CFrameWnd* pFrame = GetParentFrame();
  36. ASSERT_VALID(pFrame);
  37. pFrame->DelayRecalcLayout();
  38. }
  39. bool CExtToolControlBar::IsRightExpandButton( int nBtnIdx )
  40. {
  41. CExtBarButton * pTBB =
  42. _GetButtonPtr( nBtnIdx );
  43. if( pTBB == NULL )
  44. return false;
  45. ASSERT_VALID( pTBB );
  46. if( pTBB->IsKindOf(RUNTIME_CLASS(CExtBarContentExpandButton)) )
  47. return true;
  48. return false;
  49. }
  50. void CExtToolControlBar::_UpdateCtrlLock()
  51. {
  52. ASSERT_VALID( this );
  53. ASSERT( m_nUpdateCtrlLockCount >= 0 );
  54. m_nUpdateCtrlLockCount ++;
  55. ASSERT( m_nUpdateCtrlLockCount >= 0 );
  56. // if( m_nUpdateCtrlLockCount == 1 )
  57. // SetRedraw( FALSE );
  58. }
  59. void CExtToolControlBar::_UpdateCtrlUnlock()
  60. {
  61. ASSERT_VALID( this );
  62. ASSERT( m_nUpdateCtrlLockCount >= 0 );
  63. m_nUpdateCtrlLockCount --;
  64. ASSERT( m_nUpdateCtrlLockCount >= 0 );
  65. // if( m_nUpdateCtrlLockCount == 0 )
  66. // SetRedraw( TRUE );
  67. }
  68. bool CExtToolControlBar::_UpdateCtrlIsLocked() const
  69. {
  70. ASSERT_VALID( this );
  71. ASSERT( m_nUpdateCtrlLockCount >= 0 );
  72. return ( m_nUpdateCtrlLockCount == 0 ) ? false : true;
  73. }
  74. bool CExtToolControlBar::_UpdateCtrlIsEnabled(
  75. CExtBarButton * pTBB
  76. )
  77. {
  78. ASSERT_VALID( this );
  79. pTBB;
  80. return _UpdateCtrlIsLocked() ? false : true;
  81. }
  82. void CExtToolControlBar::_UpdateCtrlAll()
  83. {
  84. ASSERT_VALID( this );
  85. if( GetSafeHwnd() == NULL )
  86. return;
  87. INT nBtnIdx, nCountOfButtons = _GetButtonsCountImpl();
  88. for( nBtnIdx = 0; nBtnIdx < nCountOfButtons; nBtnIdx++ )
  89. {
  90. CExtBarButton * pTBB = _GetButtonPtr( nBtnIdx );
  91. ASSERT_VALID( pTBB );
  92. pTBB->_UpdateCtrl();
  93. }
  94. }
  95. void CExtToolControlBar::OnUpdateCmdUI(CFrameWnd* pTarget, BOOL bDisableIfNoHndler)
  96. {
  97. CWnd * pTargetUpdateWnd = pTarget;
  98. if( ! m_bPresubclassDialogMode )
  99. {
  100. CExtControlBar::OnUpdateCmdUI(pTarget, bDisableIfNoHndler);
  101. //if( CExtPopupMenuWnd::IsMenuTracking() )
  102. // return;
  103. if( _DraggingGetBar() != NULL )
  104. return;
  105. } // if( ! m_bPresubclassDialogMode )
  106. else
  107. {
  108. if( pTargetUpdateWnd != NULL 
  109. && pTargetUpdateWnd->IsKindOf( RUNTIME_CLASS(CFrameWnd) )
  110. )
  111. return;
  112. //ASSERT( pTargetUpdateWnd == NULL );
  113. // if( pTargetUpdateWnd == NULL )
  114. pTargetUpdateWnd = GetOwner();
  115. if( pTargetUpdateWnd == NULL )
  116. pTargetUpdateWnd = GetParent();
  117. ASSERT( pTargetUpdateWnd != NULL );
  118. }
  119. if( pTargetUpdateWnd == NULL )
  120. return;
  121. ASSERT_VALID( pTargetUpdateWnd );
  122. if( ( GetStyle() & WS_VISIBLE ) == 0
  123. && ( ! m_bUseInvisibleCmdUI )
  124. )
  125. return;
  126. int nCountOfButtons = _GetButtonsCountImpl();
  127. for( int nBtnIdx = 0; nBtnIdx < nCountOfButtons; nBtnIdx++ )
  128. {
  129. CExtBarButton * pTBB = _GetButtonPtr( nBtnIdx );
  130. ASSERT_VALID( pTBB );
  131. pTBB->OnUpdateCmdUI(
  132. pTargetUpdateWnd,
  133. bDisableIfNoHndler,
  134. nBtnIdx
  135. );
  136. }
  137. // update the dialog controls added to the toolbar
  138. UpdateDialogControls(pTargetUpdateWnd, bDisableIfNoHndler);
  139. }
  140. void CExtToolControlBar::_UpdateButton( int nIndex )
  141. {
  142. CWnd * pTarget = GetOwner();
  143. if( pTarget == NULL && ( ! m_bPresubclassDialogMode ) )
  144. pTarget = GetParentFrame();
  145. if( pTarget == NULL )
  146. return;
  147. BOOL bDisableIfNoHandler = TRUE;
  148. if( pTarget->IsKindOf( RUNTIME_CLASS(CFrameWnd) ) )
  149. bDisableIfNoHandler = ((CFrameWnd *)pTarget)->m_bAutoMenuEnable;
  150. CExtBarButton * pTBB = _GetButtonPtr( nIndex );
  151. if( pTBB == NULL )
  152. return;
  153. ASSERT_VALID( pTBB );
  154. pTBB->OnUpdateCmdUI( pTarget, bDisableIfNoHandler, nIndex );
  155. }
  156. /////////////////////////////////////////////////////////////////////////////
  157. // CExtToolControlBar diagnostics
  158. #ifdef _DEBUG
  159. void CExtToolControlBar::AssertValid() const
  160. {
  161. CExtControlBar::AssertValid();
  162. }
  163. void CExtToolControlBar::Dump(CDumpContext& dc) const
  164. {
  165. CExtControlBar::Dump(dc);
  166. }
  167. #endif
  168. CSize CExtToolControlBar::_GetDefButtonSize() const
  169. {
  170. ASSERT_VALID( this );
  171. return CSize( 23, 22 );
  172. }
  173. int CExtToolControlBar::_GetIndexOf( CExtBarButton * pTBB )
  174. {
  175. if( pTBB == NULL )
  176. return -1;
  177. int nCountOfButtons = (int)m_buttons.GetSize();
  178. for( int nBtnIdx=0; nBtnIdx < nCountOfButtons; nBtnIdx++ )
  179. {
  180. ASSERT( m_buttons[nBtnIdx] != NULL );
  181. if( m_buttons[nBtnIdx] == pTBB )
  182. return nBtnIdx;
  183. }
  184. return -1;
  185. }
  186. // input CRect should be client rectangle size
  187. void CExtToolControlBar::_CalcInsideRect(CRect& rect, BOOL bHorz) const
  188. {
  189. ASSERT_VALID(this);
  190. if( ! (((CExtToolControlBar*)this)->_AdjustBGInfo()) )
  191. {
  192. CControlBar::CalcInsideRect(rect,bHorz);
  193. return;
  194. }
  195. DWORD dwStyle = m_dwStyle;
  196. if( (dwStyle&CBRS_BORDER_LEFT) != 0 )
  197. rect.left += afxData.cxBorder2;
  198. if( (dwStyle&CBRS_BORDER_TOP) != 0 )
  199. rect.top += afxData.cyBorder2;
  200. if( (dwStyle&CBRS_BORDER_RIGHT) != 0 )
  201. rect.right -= afxData.cxBorder2;
  202. if( (dwStyle&CBRS_BORDER_BOTTOM) != 0 )
  203. rect.bottom -= afxData.cyBorder2;
  204. rect.left += m_cxLeftBorder;
  205. rect.top += m_cyTopBorder;
  206. rect.right -= m_cxRightBorder;
  207. rect.bottom -= m_cyBottomBorder;
  208. // if( (m_dwStyle&(CBRS_GRIPPER|CBRS_FLOATING)) == CBRS_GRIPPER )
  209. // {
  210. // if( bHorz )
  211. // {
  212. // INT nGripWidth = _GripperWidthAtLeftGet();
  213. // if( nGripWidth >= 0 )
  214. // rect.left += nGripWidth;
  215. // } // if( bHorz )
  216. // else
  217. // {
  218. // INT nGripHeight = _GripperHeightAtTopGet();
  219. // if( nGripHeight >= 0 )
  220. // rect.top += nGripHeight;
  221. // } // else from if( bHorz )
  222. // } // if( (m_dwStyle&(CBRS_GRIPPER|CBRS_FLOATING)) == CBRS_GRIPPER )
  223. }
  224. bool CExtToolControlBar::OnQueryShiftRTL() const
  225. {
  226. ASSERT_VALID( this );
  227. return false;
  228. }
  229. bool CExtToolControlBar::OnQueryRevertRTL() const
  230. {
  231. ASSERT_VALID( this );
  232. return false;
  233. }
  234. void CExtToolControlBar::_RecalcPositionsImpl()
  235. {
  236. if( GetSafeHwnd() == NULL
  237. || (! ::IsWindow( GetSafeHwnd() ) )
  238. )
  239. return;
  240. ASSERT_VALID(this);
  241. int nCountOfButtons = _GetButtonsCountImpl();
  242. if( nCountOfButtons == 0 )
  243. return;
  244. CExtBarButton::e_wrap_t _evt = GetBtnWrapCode();
  245. BOOL bHorz = (m_dwStyle & CBRS_ORIENT_HORZ) ? TRUE : FALSE;
  246. BOOL bFloating = IsFloating();
  247. bool bMultiRowLayout = OnQueryMultiRowLayout();
  248. CRect rcInner;
  249. GetClientRect( &rcInner );
  250. CExtPaintManager::e_paint_manager_name_t ePMN =
  251. PmBridge_GetPM()->OnQueryPaintManagerName();
  252. if( ! bFloating )
  253. {
  254. if( bMultiRowLayout )
  255. {
  256. //  if( bHorz )
  257. //  rcInner.OffsetRect( 0, 2 /*- PmBridge_GetPM()->GetPushedOffset().cy*/ );
  258. //  else
  259. //  rcInner.OffsetRect( -2, 0 );
  260. UINT nMetric = 0;
  261. if( ePMN == CExtPaintManager::Office2000
  262. || ePMN == CExtPaintManager::OfficeXP
  263. )
  264. nMetric = 1;
  265. if( bHorz )
  266. rcInner.OffsetRect( 0, 2 - nMetric );
  267. else
  268. rcInner.OffsetRect( -2 + nMetric, 0 );
  269. }
  270. } // if( ! bFloating )
  271. CPoint ptLimitTL = rcInner.TopLeft();
  272. CPoint ptLimitBR = rcInner.BottomRight();
  273. CFont * pFont =
  274. OnGetToolbarFont(
  275. ( ( ( m_dwStyle & CBRS_ORIENT_HORZ ) == 0 ) && (!m_bPaletteMode) )
  276. ? true : false,
  277. false
  278. );
  279. if( pFont->GetSafeHandle() == NULL )
  280. pFont = ( ( ( m_dwStyle & CBRS_ORIENT_HORZ ) == 0 ) && (!m_bPaletteMode) )
  281. ? (&( PmBridge_GetPM()->m_FontNormalVert ))
  282. : (&( PmBridge_GetPM()->m_FontNormal ))
  283. ;
  284. CClientDC dc(this);
  285. CFont* pOldFont = dc.SelectObject( pFont );
  286. ASSERT( pOldFont != NULL );
  287. CSize sizeDefButton = _GetDefButtonSize();
  288. int nReviewCount = nCountOfButtons;
  289. CSize sizeTBBRight( 0, 0 );
  290. if( m_pRightBtn != NULL )
  291. {
  292. nReviewCount--;
  293. ASSERT_VALID( m_pRightBtn );
  294. ASSERT( m_buttons.GetSize() > 0 );
  295. ASSERT( m_buttons[nReviewCount] == m_pRightBtn );
  296. m_pRightBtn->GetButtons().RemoveAll();
  297. m_pRightBtn->ClearContent();
  298. sizeTBBRight =
  299. m_pRightBtn->CalculateLayout(
  300. dc,
  301. sizeDefButton,
  302. bHorz || m_bPaletteMode
  303. );
  304. if( bFloating || m_bPaletteMode )
  305. {
  306. m_pRightBtn->Show( false );
  307. m_pRightBtn->SetRect(
  308. CRect( ptLimitTL, sizeTBBRight )
  309. );
  310. if( nReviewCount == 0 )
  311. return;
  312. } // if( bFloating || m_bPaletteMode )
  313. else
  314. {
  315. CRect rcCalcRightBtn(
  316. bHorz ? (ptLimitBR.x - sizeTBBRight.cx) : ptLimitTL.x,
  317. bHorz ? ptLimitTL.y : (ptLimitBR.y - sizeTBBRight.cy),
  318. ptLimitBR.x,
  319. ptLimitBR.y
  320. );
  321. if( bMultiRowLayout
  322. && ( ePMN == CExtPaintManager::Office2000
  323. || ePMN == CExtPaintManager::OfficeXP
  324. || ePMN == CExtPaintManager::ProfSkinPainter
  325. )
  326. )
  327. {
  328. INT nMetric = 1;
  329. if( ePMN == CExtPaintManager::ProfSkinPainter )
  330. nMetric = 2;
  331. if( bHorz )
  332. rcCalcRightBtn.OffsetRect( 0, -nMetric );
  333. else
  334. rcCalcRightBtn.OffsetRect( nMetric, 0 );
  335. }
  336. m_pRightBtn->SetRect( rcCalcRightBtn );
  337. m_pRightBtn->Show( true );
  338. const CSize _sizeRoundedAreaMerics =
  339. PmBridge_GetPM()->FixedBar_GetRoundedAreaMerics();
  340. if( bHorz )
  341. rcInner.right -= sizeTBBRight.cx + _sizeRoundedAreaMerics.cx;
  342. else
  343. rcInner.bottom -= sizeTBBRight.cy + _sizeRoundedAreaMerics.cy;
  344. } // else from if( bFloating || m_bPaletteMode )
  345. } // if( m_pRightBtn != NULL )
  346. // if( bMultiRowLayout
  347. // //&& (! m_bInsideCalcLayout )
  348. // && m_pDockBar != NULL
  349. // && (! IsFloating() )
  350. // )
  351. // {
  352. // CRect rcWrap;
  353. // if( _GetFullRowMode() )
  354. // m_pDockBar->GetClientRect( &rcWrap );
  355. // else
  356. // rcWrap = rcInner;
  357. // //if( IsDockedHorizontally() )
  358. // // _WrapToolBarH( rcWrap.Width(), rcWrap.Height() );
  359. // //else
  360. // // _WrapToolBarV( rcWrap.Height() );
  361. // BOOL bVert = IsDockedVertically();
  362. // _SizeToolBar(
  363. // bVert ? rcWrap.Height() : rcWrap.Width(),
  364. // bVert
  365. // );
  366. // }
  367. CArray < CRect, CRect > arrBtnRects;
  368. CArray < BOOL, BOOL > arrBtnVisibility;
  369. CArray < BOOL, BOOL > arrBtnSeparators;
  370. //CArray < BOOL, BOOL > arrBtnEnabled;
  371. arrBtnRects.SetSize( nReviewCount );
  372. arrBtnVisibility.SetSize( nReviewCount );
  373. arrBtnSeparators.SetSize( nReviewCount );
  374. // arrBtnEnabled.SetSize( nReviewCount );
  375. CSize sizeLastWrappedRow( 0, 0 );
  376. //bool bDockerTrasparentMode =
  377. // PmBridge_GetPM()->GetCb2DbTransparentMode( this );
  378. // if( (! bFloating ) && bMultiRowLayout )
  379. // {
  380. // if( bHorz && bDockerTrasparentMode )
  381. // ptLimitTL.y += 1;
  382. // else if( !bHorz )
  383. // {
  384. // if( bDockerTrasparentMode )
  385. // ptLimitBR.x -= 2;
  386. // else
  387. // ptLimitBR.x -= 1;
  388. // ptLimitTL.y -= 1;
  389. // }
  390. // } // if( (! bFloating ) && bMultiRowLayout )
  391. CPoint ptBtnPosCurr( ptLimitTL );
  392. INT nRowExtent = sizeDefButton.cy;
  393. if( bMultiRowLayout && (!bHorz) )
  394. {
  395. ptBtnPosCurr.x = ptLimitBR.x;
  396. nRowExtent = sizeDefButton.cx;
  397. }
  398. BOOL bSeparatorPrev = FALSE, bPostResyncAllowed = FALSE;
  399. INT nRowDistance = PmBridge_GetPM()->FixedBar_GetRowDistance( this );
  400. int nBtnIdx = 0;
  401. for( nBtnIdx = 0; nBtnIdx < nReviewCount; nBtnIdx++ )
  402. {
  403. CExtBarButton * pTBB = _GetButtonPtr( nBtnIdx );
  404. ASSERT_VALID( pTBB );
  405. BOOL bVisibleTBB =
  406. ( pTBB->GetStyle() & TBBS_HIDDEN ) ? FALSE : TRUE;
  407. if( pTBB->IsSeparator()
  408. && nBtnIdx < (nReviewCount-1)
  409. )
  410. {
  411. CExtBarButton * pNextTBB = _GetButtonPtr( nBtnIdx+1 );
  412. ASSERT_VALID( pNextTBB );
  413. if( pNextTBB->GetStyle() & TBBS_HIDDEN )
  414. bVisibleTBB = FALSE;
  415. }
  416. arrBtnVisibility.SetAt( nBtnIdx, bVisibleTBB );
  417. if( ! bVisibleTBB )
  418. continue;
  419. pTBB->SetVertDocked( (bHorz || m_bPaletteMode) ? false : true );
  420. // arrBtnEnabled.SetAt( nBtnIdx, pTBB->IsEnabled() );
  421. BOOL bSeparator = pTBB->IsSeparator();
  422. arrBtnSeparators.SetAt( nBtnIdx, bSeparator );
  423. if( (bSeparatorPrev && bSeparator) || (bSeparator && nBtnIdx == 0) )
  424. { // remove double separators
  425. arrBtnVisibility.SetAt( nBtnIdx, FALSE );
  426. continue;
  427. } // remove double separators
  428. CSize sizeTBB =
  429. pTBB->CalculateLayout(
  430. dc,
  431. sizeDefButton,
  432. bHorz || m_bPaletteMode
  433. );
  434. CRect rcTBB( ptBtnPosCurr, sizeTBB );
  435. if( bMultiRowLayout && (!bHorz) )
  436. nRowExtent = max( nRowExtent, sizeTBB.cx );
  437. else
  438. nRowExtent = max( nRowExtent, sizeTBB.cy );
  439. if( ( bFloating
  440. || bMultiRowLayout
  441. || m_bPaletteMode
  442. )
  443. && pTBB->IsWrap( _evt )
  444. )
  445. {
  446. if( bMultiRowLayout && (!bHorz) )
  447. {
  448. ptBtnPosCurr.y = ptLimitTL.y;
  449. ptBtnPosCurr.x -=
  450. nRowExtent
  451. + nRowDistance;
  452. sizeLastWrappedRow = CSize( 0, 0 );
  453. nRowExtent = sizeDefButton.cx;
  454. } // if( bMultiRowLayout && (!bHorz) )
  455. else
  456. {
  457. ptBtnPosCurr.x = ptLimitTL.x;
  458. ptBtnPosCurr.y +=
  459. nRowExtent // sizeDefButton.cy (+ v.2.22)
  460. + nRowDistance;
  461. sizeLastWrappedRow = CSize( 0, 0 );
  462. nRowExtent = sizeDefButton.cy;
  463. } // else from if( bMultiRowLayout && (!bHorz) )
  464. } // if( (bFloating || ...
  465. else
  466. {
  467. bool bResyncVisibleTBB = false;
  468. if( bHorz || m_bPaletteMode )
  469. {
  470. ptBtnPosCurr.x += sizeTBB.cx;
  471. if( (!bMultiRowLayout)
  472. && ptBtnPosCurr.x > rcInner.right
  473. )
  474. bResyncVisibleTBB = true;
  475. } // if( bHorz || m_bPaletteMode )
  476. else
  477. {
  478. ptBtnPosCurr.y += sizeTBB.cy;
  479. if( (!bMultiRowLayout)
  480. && ptBtnPosCurr.y > rcInner.bottom
  481. )
  482. bResyncVisibleTBB = true;
  483. } // else from if( bHorz || m_bPaletteMode )
  484. if( bResyncVisibleTBB )
  485. {
  486. int nSpaceToFind =
  487. ( bHorz || m_bPaletteMode )
  488. ? ptBtnPosCurr.x - rcInner.right
  489. : ptBtnPosCurr.y - rcInner.bottom;
  490. int nBtnWithNearestWidth = nBtnIdx;
  491. int nNearestMetric =
  492. ( bHorz || m_bPaletteMode )
  493. ? rcTBB.Width() : rcTBB.Height();
  494. int nNearestDiff = nSpaceToFind - nNearestMetric;
  495. // hide nearest by size reviewed visible
  496. int nBtnIdx2 = 0;
  497. for( nBtnIdx2 = nBtnIdx-1; nBtnIdx2 >= 0; nBtnIdx2-- )
  498. {
  499. if( ! arrBtnVisibility[nBtnIdx2] )
  500. continue;
  501. if( arrBtnSeparators[nBtnIdx2] )
  502. continue;
  503. #ifdef _DEBUG
  504. CExtBarButton * pTBB2 =
  505. _GetButtonPtr( nBtnIdx2 );
  506. ASSERT( (pTBB2->GetStyle() & TBBS_HIDDEN) == 0 );
  507. #endif // _DEBUG
  508. int nMetric =
  509. ( bHorz || m_bPaletteMode )
  510. ? arrBtnRects[nBtnIdx2].Width()
  511. : arrBtnRects[nBtnIdx2].Height();
  512. //if( nMetric <= nNearestMetric ) // <<-- widest search algorithm
  513. // continue;
  514. if( nMetric > nSpaceToFind )
  515. continue;
  516. int nDiff = nSpaceToFind - nMetric;
  517. // if( ! arrBtnEnabled[nBtnIdx2] )
  518. // { // hide disabled buttons first
  519. // nNearestDiff = nDiff;
  520. // nNearestMetric = nMetric;
  521. // nBtnWithNearestWidth = nBtnIdx2;
  522. // break;
  523. // } // hide disabled buttons first
  524. if( nDiff >= nNearestDiff )
  525. continue;
  526. nNearestDiff = nDiff;
  527. nNearestMetric = nMetric;
  528. nBtnWithNearestWidth = nBtnIdx2;
  529. } // for( nBtnIdx2 = nBtnIdx-1; nBtnIdx2 >= 0; nBtnIdx2-- )
  530. if( nBtnWithNearestWidth < nBtnIdx )
  531. {
  532. ASSERT( bVisibleTBB );
  533. arrBtnVisibility.SetAt( nBtnWithNearestWidth, FALSE );
  534. if( (! m_bPaletteMode )
  535. && (! bMultiRowLayout )
  536. && (! IsFloating() )
  537. )
  538. bPostResyncAllowed = TRUE;
  539. if( m_pRightBtn!=NULL && !arrBtnSeparators[nBtnWithNearestWidth] )
  540. {
  541. CExtBarButton * pTBB2 =
  542. _GetButtonPtr( nBtnWithNearestWidth );
  543. ASSERT_VALID( pTBB2 );
  544. m_pRightBtn->GetButtons().Add( pTBB2 );
  545. }
  546. if( nBtnWithNearestWidth > 0 && nBtnWithNearestWidth < nReviewCount-1 )
  547. { // remove double separators
  548. if( arrBtnSeparators[nBtnWithNearestWidth-1]
  549. && arrBtnSeparators[nBtnWithNearestWidth+1]
  550. )
  551. {
  552. arrBtnVisibility.SetAt( nBtnWithNearestWidth-1, FALSE );
  553. nNearestMetric +=
  554. ( bHorz || m_bPaletteMode )
  555. ? arrBtnRects[nBtnWithNearestWidth-1].Width()
  556. : arrBtnRects[nBtnWithNearestWidth-1].Height();
  557. }
  558. } // remove double separators
  559. rcTBB.OffsetRect(
  560. ( bHorz || m_bPaletteMode ) ? -nNearestMetric : 0,
  561. ( bHorz || m_bPaletteMode ) ? 0 : -nNearestMetric
  562. );
  563. ( ( bHorz || m_bPaletteMode ) ? ptBtnPosCurr.x : ptBtnPosCurr.y) -= nNearestMetric;
  564. for( nBtnIdx2 = nBtnWithNearestWidth+1; nBtnIdx2 < nBtnIdx; nBtnIdx2++ )
  565. {
  566. if( !arrBtnVisibility[nBtnIdx2] )
  567. continue;
  568. CRect rcTBB2 = arrBtnRects[nBtnIdx2];
  569. rcTBB2.OffsetRect(
  570. ( bHorz || m_bPaletteMode ) ? -nNearestMetric : 0,
  571. ( bHorz || m_bPaletteMode ) ? 0 : -nNearestMetric
  572. );
  573. arrBtnRects.SetAt( nBtnIdx2, rcTBB2 );
  574. } // for( nBtnIdx2 = nBtnWithNearestWidth+1; nBtnIdx2 < nBtnIdx; nBtnIdx2++ )
  575. } // if( nBtnWithNearestWidth < nBtnIdx )
  576. else
  577. {
  578. ASSERT( nBtnWithNearestWidth == nBtnIdx );
  579. bVisibleTBB = FALSE;
  580. if( (! m_bPaletteMode )
  581. && (! bMultiRowLayout )
  582. && (! IsFloating() )
  583. )
  584. bPostResyncAllowed = TRUE;
  585. ( (bHorz || m_bPaletteMode ) ? ptBtnPosCurr.x : ptBtnPosCurr.y) -=
  586. ( (bHorz || m_bPaletteMode ) ? sizeTBB.cx : sizeTBB.cy);
  587. } // else from if( nBtnWithNearestWidth < nBtnIdx )
  588. } // if( bResyncVisibleTBB )
  589. } // else from if( (bFloating || ...
  590. arrBtnVisibility.SetAt( nBtnIdx, bVisibleTBB );
  591. if( bMultiRowLayout && (!bHorz) )
  592. {
  593. CRect rcTBB2( rcTBB );
  594. rcTBB2.OffsetRect( -rcTBB.Width(), 0 );
  595. arrBtnRects.SetAt( nBtnIdx, rcTBB2 );
  596. }
  597. else
  598. {
  599. arrBtnRects.SetAt( nBtnIdx, rcTBB );
  600. }
  601. if( bVisibleTBB )
  602. bSeparatorPrev = bSeparator;
  603. if( m_pRightBtn != NULL
  604. && (!bMultiRowLayout)
  605. && (!bVisibleTBB)
  606. && (!bSeparator)
  607. )
  608. m_pRightBtn->GetButtons().Add( pTBB );
  609. } // for( nBtnIdx = 0; nBtnIdx < nReviewCount; nBtnIdx++ )
  610. dc.SelectObject( pOldFont );
  611. if( bPostResyncAllowed )
  612. {
  613. ASSERT( ! IsFloating() );
  614. ASSERT( ! m_bPaletteMode );
  615. ASSERT( ! bMultiRowLayout );
  616. INT nVisIdx0 = -1, nVisIdx1 = -1;
  617. for( int nBtnIdx = 0; nBtnIdx < nReviewCount; nBtnIdx++ )
  618. {
  619. if( ! arrBtnVisibility[nBtnIdx] )
  620. continue;
  621. CExtBarButton * pTBB = _GetButtonPtr( nBtnIdx );
  622. ASSERT_VALID( pTBB );
  623. if( pTBB->IsKindOf(RUNTIME_CLASS(CExtBarContentExpandButton)) )
  624. break;
  625. if( nVisIdx0 < 0 )
  626. nVisIdx0 = nBtnIdx;
  627. nVisIdx1 = nBtnIdx;
  628. } // for( int nBtnIdx = 0; nBtnIdx < nReviewCount; nBtnIdx++ )
  629. if( nVisIdx0 >= 0 )
  630. {
  631. ASSERT( nVisIdx1 >= nVisIdx0 );
  632. INT nShiftMetric = 0;
  633. for( ; nVisIdx0 <= nVisIdx1; nVisIdx0++ )
  634. {
  635. if( ! arrBtnVisibility[nVisIdx0] )
  636. break;
  637. CExtBarButton * pTBB = _GetButtonPtr( nVisIdx0 );
  638. ASSERT_VALID( pTBB );
  639. ASSERT( ! pTBB->IsKindOf( RUNTIME_CLASS( CExtBarContentExpandButton ) ) );
  640. if( ! pTBB->IsSeparator() )
  641. break;
  642. arrBtnVisibility[nVisIdx0] = FALSE;
  643. if( bHorz )
  644. nShiftMetric -= arrBtnRects[nVisIdx0].Width();
  645. else
  646. nShiftMetric -= arrBtnRects[nVisIdx0].Height();
  647. }
  648. for( ; nVisIdx1 >= nVisIdx0; nVisIdx1-- )
  649. {
  650. if( ! arrBtnVisibility[nVisIdx1] )
  651. break;
  652. CExtBarButton * pTBB = _GetButtonPtr( nVisIdx1 );
  653. ASSERT_VALID( pTBB );
  654. ASSERT( ! pTBB->IsKindOf(RUNTIME_CLASS(CExtBarContentExpandButton)) );
  655. if( ! pTBB->IsSeparator() )
  656. break;
  657. arrBtnVisibility[nVisIdx1] = FALSE;
  658. }
  659. if( nShiftMetric != 0 )
  660. {
  661. for( int nBtnIdx = 0; nBtnIdx < nReviewCount; nBtnIdx++ )
  662. {
  663. if( ! arrBtnVisibility[nBtnIdx] )
  664. continue;
  665. CExtBarButton * pTBB = _GetButtonPtr( nBtnIdx );
  666. ASSERT_VALID( pTBB );
  667. if( pTBB->IsKindOf(RUNTIME_CLASS(CExtBarContentExpandButton)) )
  668. break;
  669. arrBtnRects.ElementAt( nBtnIdx ).OffsetRect(
  670. bHorz ? nShiftMetric : 0,
  671. bHorz ? 0 : nShiftMetric
  672. );
  673. } // for( int nBtnIdx = 0; nBtnIdx < nReviewCount; nBtnIdx++ )
  674. } // if( nShiftMetric != 0 )
  675. } // if( nVisIdx0 >= 0 )
  676. } // if( bPostResyncAllowed )
  677. INT nRowStart = 0;
  678. INT nSizeRow = 0;
  679. INT nSubRowCount = 0;
  680. bool bReAlignHorz =
  681. ( bHorz
  682. || bFloating
  683. || m_bPaletteMode
  684. ) ? true : false;
  685. if( bMultiRowLayout && (!bHorz) )
  686. bReAlignHorz = false;
  687. bool bShiftRTL = OnQueryShiftRTL();
  688. if( ! bReAlignHorz )
  689. bShiftRTL = false;
  690. if( bShiftRTL )
  691. { // do content shift to right
  692. CRect rcAlign = rcInner;
  693. INT nAdditionalShift = 0;
  694. for( int nBtnIdx = 0; nBtnIdx < nReviewCount; nBtnIdx++ )
  695. {
  696. CExtBarButton * pTBB = _GetButtonPtr( nBtnIdx );
  697. ASSERT_VALID( pTBB );
  698. BOOL bVis = arrBtnVisibility[nBtnIdx];
  699. if( ! bVis )
  700. continue;
  701. CSize sizeTBB = *pTBB;
  702. if( pTBB->IsKindOf(RUNTIME_CLASS(CExtBarMdiDocButton))
  703. && (! pTBB->IsKindOf(RUNTIME_CLASS(CExtBarMdiRightButton)) )
  704. )
  705. {
  706. nSizeRow = 0;
  707. nRowStart = nBtnIdx + 1;
  708. //Align.left += sizeTBB.cx;
  709. nAdditionalShift = - sizeTBB.cx;
  710. if( nAdditionalShift == 0 )
  711. nAdditionalShift = - 20;
  712. continue;
  713. }
  714. nSizeRow += sizeTBB.cx;
  715. bool bWrap =
  716. ( ( bFloating
  717. || bMultiRowLayout
  718. || m_bPaletteMode
  719. )
  720. && pTBB->IsWrap(_evt)
  721. )
  722. ? true : false;
  723. if( (! bWrap)
  724. && pTBB->IsKindOf(RUNTIME_CLASS(CExtBarMdiRightButton))
  725. )
  726. bWrap = true;
  727. if( bWrap
  728. || nBtnIdx == (nReviewCount-1)
  729. )
  730. {
  731. INT nShift =
  732. rcAlign.Width()
  733. - nSizeRow
  734. + nAdditionalShift
  735. - 7
  736. ;
  737. for( INT nBtnIdx2 = nRowStart; nBtnIdx2 <= nBtnIdx; nBtnIdx2++ )
  738. {
  739. CExtBarButton * pTBB = _GetButtonPtr( nBtnIdx2 );
  740. ASSERT_VALID( pTBB );
  741. BOOL bVis2 = arrBtnVisibility[nBtnIdx2];
  742. if( ! bVis2 )
  743. continue;
  744. if( pTBB->IsKindOf(RUNTIME_CLASS(CExtBarMdiDocButton))
  745. && (! pTBB->IsKindOf(RUNTIME_CLASS(CExtBarMdiRightButton)) )
  746. )
  747. continue;
  748. CRect rcBtn = arrBtnRects[nBtnIdx2];
  749. rcBtn.OffsetRect( nShift, 0 );
  750. // if( bFloating )
  751. // rcBtn.OffsetRect( -3, 0 );
  752. arrBtnRects.SetAt( nBtnIdx2, rcBtn );
  753. }
  754. nRowStart = nBtnIdx + 1;
  755. nSizeRow = 0;
  756. nSubRowCount++;
  757. rcAlign = rcInner;
  758. nAdditionalShift = 0;
  759. }
  760. } // for( int nBtnIdx = 0; nBtnIdx < nReviewCount; nBtnIdx++ )
  761. // reset vars
  762. nRowStart = 0;
  763. nSizeRow = 0;
  764. nSubRowCount = 0;
  765. }  // do content shift to right
  766. for( nBtnIdx = 0; nBtnIdx < nReviewCount; nBtnIdx++ )
  767. {
  768. CExtBarButton * pTBB = _GetButtonPtr( nBtnIdx );
  769. ASSERT_VALID( pTBB );
  770. CSize sizeTBB = *pTBB;
  771. INT nSizeBtn = bReAlignHorz ? sizeTBB.cy : sizeTBB.cx;
  772. nSizeRow = max( nSizeRow, nSizeBtn );
  773. if( ( ( bFloating
  774. || bMultiRowLayout
  775. || m_bPaletteMode
  776. )
  777. && pTBB->IsWrap(_evt)
  778. )
  779. || nBtnIdx == ( nReviewCount - 1 )
  780. )
  781. {
  782. for( INT nBtnIdx2 = nRowStart; nBtnIdx2 <= nBtnIdx; nBtnIdx2++ )
  783. {
  784. CExtBarButton * pTBB = _GetButtonPtr( nBtnIdx2 );
  785. ASSERT_VALID( pTBB );
  786. BOOL bVis = arrBtnVisibility[nBtnIdx2];
  787. pTBB->Show( bVis ? true : false );
  788. if( ! bVis )
  789. continue;
  790. CRect rcBtn = arrBtnRects[nBtnIdx2];
  791. if( pTBB->IsSeparator() )
  792. {
  793. if( bReAlignHorz )
  794. rcBtn.bottom = rcBtn.top + nSizeRow;
  795. else
  796. rcBtn.left = rcBtn.right - nSizeRow;
  797. } // if( pTBB->IsSeparator() )
  798. else
  799. {
  800. if( bReAlignHorz )
  801. rcBtn.OffsetRect(
  802. 0,
  803. ( nSizeRow - rcBtn.Height() ) / 2
  804. );
  805. else 
  806. rcBtn.OffsetRect(
  807. - ( nSizeRow - rcBtn.Width() ) / 2,
  808. 0
  809. );
  810. } // else from if( pTBB->IsSeparator() )
  811. if( bFloating
  812. // || bMultiRowLayout
  813. )
  814. //rcBtn.OffsetRect( 0, 1 );
  815. rcBtn.OffsetRect( 2, 1 );
  816. pTBB->SetRect( rcBtn );
  817. }
  818. nRowStart = nBtnIdx + 1;
  819. nSizeRow = 0;
  820. nSubRowCount++;
  821. }
  822. } // for( nBtnIdx = 0; nBtnIdx < nReviewCount; nBtnIdx++ )
  823. if( nSubRowCount == 1 && (!m_bPaletteMode) && (!bFloating) && (!bMultiRowLayout) )
  824. {
  825. CRect rcBarClient;
  826. GetClientRect( &rcBarClient );
  827. nSizeRow = bHorz
  828. ? rcBarClient.Height()
  829. : rcBarClient.Width()
  830. ;
  831. for( nBtnIdx = 0; nBtnIdx < nReviewCount; nBtnIdx++ )
  832. {
  833. CExtBarButton * pTBB = _GetButtonPtr( nBtnIdx );
  834. ASSERT_VALID( pTBB );
  835. BOOL bVis = arrBtnVisibility[nBtnIdx];
  836. if( ! bVis )
  837. continue;
  838. CRect rcBtn( pTBB->Rect() );
  839. // if( pTBB->IsSeparator() )
  840. // {
  841. // if( bHorz )
  842. // {
  843. // rcBtn.top = m_cyTopBorder;
  844. // rcBtn.bottom = m_cyBottomBorder + nSizeRow;
  845. // } // if( bHorz )
  846. // else
  847. // {
  848. // rcBtn.left = m_cxLeftBorder;
  849. // rcBtn.right = m_cxRightBorder + nSizeRow;
  850. // } // else from if( bHorz )
  851. // } // if( pTBB->IsSeparator() )
  852. // else
  853. {
  854. rcBtn.OffsetRect(
  855. bHorz
  856. ? 0
  857. : ( ( nSizeRow - rcBtn.Width() ) / 2  - rcBtn.left)
  858. ,
  859. bHorz
  860. ? ( ( nSizeRow - rcBtn.Height() ) / 2 - rcBtn.top) 
  861. : 0
  862. );
  863. } // else from if( pTBB->IsSeparator() )
  864. pTBB->SetRect( rcBtn );
  865. } // for( nBtnIdx = 0; nBtnIdx < nReviewCount; nBtnIdx++ )
  866. } // if( nSubRowCount == 1 && (!m_bPaletteMode) && (!bFloating) && (!bMultiRowLayout) )
  867. else if( ! m_bPaletteMode )
  868. { // just re-align separators in each row
  869. INT nRowMinLoc = 0, nRowMaxLoc = 0;
  870. INT nRowStart = 0;
  871. for( nBtnIdx = 0; nBtnIdx < nReviewCount; nBtnIdx++ )
  872. {
  873. CExtBarButton * pTBB = _GetButtonPtr( nBtnIdx );
  874. ASSERT_VALID( pTBB );
  875. if( pTBB->IsVisible()
  876. && (pTBB->GetStyle() & TBBS_HIDDEN) == 0
  877. )
  878. {
  879. CRect rcTBB = *pTBB;
  880. if( nBtnIdx == nRowStart )
  881. {
  882. if( bHorz )
  883. {
  884. nRowMinLoc = rcTBB.top;
  885. nRowMaxLoc = rcTBB.bottom;
  886. } // if( bHorz )
  887. else
  888. {
  889. nRowMinLoc = rcTBB.left;
  890. nRowMaxLoc = rcTBB.right;
  891. } // else from if( bHorz )
  892. } // if( nBtnIdx == nRowStart )
  893. else
  894. {
  895. if( bHorz )
  896. {
  897. nRowMinLoc = min( nRowMinLoc, rcTBB.top );
  898. nRowMaxLoc = max( nRowMaxLoc, rcTBB.bottom );
  899. } // if( bHorz )
  900. else
  901. {
  902. nRowMinLoc = min( nRowMinLoc, rcTBB.left );
  903. nRowMaxLoc = max( nRowMaxLoc, rcTBB.right );
  904. } // else from if( bHorz )
  905. } // else from if( nBtnIdx == nRowStart )
  906. } // if( pTBB->IsVisible() ...
  907. if( (! pTBB->IsWrap(_evt) )
  908. && nBtnIdx != (nReviewCount-1)
  909. )
  910. continue;
  911. for( INT nBtnIdx2 = nRowStart; nBtnIdx2 < nBtnIdx; nBtnIdx2++ )
  912. {
  913. CExtBarButton * pTBB = _GetButtonPtr( nBtnIdx2 );
  914. ASSERT_VALID( pTBB );
  915. if( (! pTBB->IsVisible() )
  916. || (pTBB->GetStyle() & TBBS_HIDDEN) != 0
  917. || (! pTBB->IsSeparator() )
  918. )
  919. continue;
  920. CRect rcTBB = *pTBB;
  921. if( bHorz )
  922. {
  923. rcTBB.top = nRowMinLoc;
  924. rcTBB.bottom = nRowMaxLoc;
  925. // rcTBB.InflateRect(
  926. // 0,
  927. // bDockerTrasparentMode ? 2 : 1
  928. // );
  929. } // if( bHorz )
  930. else
  931. {
  932. rcTBB.left = nRowMinLoc;
  933. rcTBB.right = nRowMaxLoc;
  934. // rcTBB.InflateRect(
  935. // bDockerTrasparentMode ? 2 : 1,
  936. // 0,
  937. // bDockerTrasparentMode ? 3 : 2,
  938. // 0
  939. // );
  940. } // else from if( bHorz )
  941. pTBB->SetRect( rcTBB );
  942. } // for( INT nBtnIdx2 = nRowStart; nBtnIdx2 < nBtnIdx; nBtnIdx2++ )
  943. nRowStart = nBtnIdx + 1;
  944. } // for( nBtnIdx = 0; nBtnIdx < nReviewCount; nBtnIdx++ )
  945. } // just re-align separators in each row
  946. // remove TBBS_HIDDEN in right menu
  947. if( (!m_bPaletteMode) && m_pRightBtn != NULL )
  948. {
  949. int nMenuCount = (int)m_pRightBtn->GetButtons().GetSize();
  950. for( int nMenuIdx = 0; nMenuIdx < nMenuCount; )
  951. {
  952. CExtBarButton * pTBB = 
  953. m_pRightBtn->GetButtons().
  954. GetAt( nMenuIdx );
  955. ASSERT_VALID( pTBB );
  956. if( pTBB->GetStyle() & TBBS_HIDDEN )
  957. {
  958. m_pRightBtn->GetButtons().RemoveAt( nMenuIdx );
  959. nMenuCount--;
  960. } // if( pTBB->GetStyle() & TBBS_HIDDEN )
  961. else
  962. nMenuIdx++;
  963. } // for( int nMenuIdx = 0; nMenuIdx < nMenuCount; )
  964. } // if( (!m_bPaletteMode) && m_pRightBtn != NULL )
  965. if( m_pRightBtn != NULL && m_bPresubclassDialogMode )
  966. {
  967. if( m_pRightBtn->GetButtons().GetSize() == 0 )
  968. m_pRightBtn->ModifyStyle( TBBS_DISABLED, 0 );
  969. else
  970. m_pRightBtn->ModifyStyle( 0, TBBS_DISABLED );
  971. }
  972. // hide first separator(s)
  973. if( ! m_bPaletteMode )
  974. {
  975. INT nWalkCount = _GetButtonsCountImpl();
  976. for( nBtnIdx = 0; nBtnIdx < nWalkCount; nBtnIdx++ )
  977. {
  978. CExtBarButton * pTBB = _GetButtonPtr( nBtnIdx );
  979. ASSERT_VALID( pTBB );
  980. if( pTBB->IsVisible()
  981. && ( pTBB->GetStyle() & TBBS_HIDDEN ) == 0
  982. )
  983. {
  984. if( pTBB->IsSeparator() )
  985. {
  986. pTBB->ModifyStyle( TBBS_HIDDEN, 0 );
  987. pTBB->Show( false );
  988. continue;
  989. }
  990. else
  991. break;
  992. }
  993. } // for( nBtnIdx = 0; nBtnIdx < nWalkCount; nBtnIdx++ )
  994. }
  995. // insert separators into right button
  996. if( !( bFloating
  997. || bMultiRowLayout
  998. || m_bPaletteMode
  999. || bMultiRowLayout
  1000. || m_pRightBtn == NULL
  1001. || ( m_pRightBtn != NULL
  1002. && m_pRightBtn->GetButtons().GetSize() == 0
  1003. )
  1004. )
  1005. )
  1006. {
  1007. int nHiddenCount = (int)m_pRightBtn->GetButtons().GetSize();
  1008. if( nHiddenCount >= 2 )
  1009. {
  1010. int nEndMeasure = nHiddenCount-1;
  1011. for( int iHidden = 0; iHidden < nEndMeasure; iHidden++ )
  1012. {
  1013. CExtBarButton * pTbbHidden0 =
  1014. m_pRightBtn->GetButtons().GetAt(iHidden);
  1015. ASSERT( pTbbHidden0 != NULL );
  1016. ASSERT( ! pTbbHidden0->IsSeparator() );
  1017. ASSERT( (! pTbbHidden0->IsVisible()) && (pTbbHidden0->GetStyle() & TBBS_HIDDEN) == 0 );
  1018. CExtBarButton * pTbbHidden1 =
  1019. m_pRightBtn->GetButtons().GetAt(iHidden+1);
  1020. ASSERT( pTbbHidden1 != NULL );
  1021. ASSERT( ! pTbbHidden1->IsSeparator() );
  1022. ASSERT( (! pTbbHidden1->IsVisible()) && (pTbbHidden1->GetStyle() & TBBS_HIDDEN) == 0 );
  1023. CExtBarButton * pTbbSeparatorToInsert = NULL;
  1024. int nIdx0=-1,nIdx1=-1;
  1025. for( nBtnIdx = 0; nBtnIdx < nCountOfButtons; nBtnIdx++ )
  1026. {
  1027. CExtBarButton * pTBB = _GetButtonPtr( nBtnIdx );
  1028. ASSERT_VALID( pTBB );
  1029. if( pTBB == pTbbHidden0 )
  1030. {
  1031. nIdx0 = nBtnIdx;
  1032. ASSERT( nIdx1 < 0 );
  1033. continue;
  1034. }
  1035. if( nIdx0 >= 0
  1036. && pTBB->IsSeparator()
  1037. && pTbbSeparatorToInsert == NULL
  1038. )
  1039. pTbbSeparatorToInsert = pTBB;
  1040. if( pTBB == pTbbHidden1 )
  1041. {
  1042. nIdx1 = nBtnIdx;
  1043. ASSERT( nIdx0 >= 0 && nIdx0 < nIdx1 );
  1044. break;
  1045. }
  1046. }
  1047. ASSERT(
  1048. nIdx0 < nIdx1
  1049. &&
  1050. nIdx0 >= 0 && nIdx0 < nCountOfButtons
  1051. && 
  1052. nIdx1 >= 0 && nIdx1 < nCountOfButtons
  1053. );
  1054. if( (nIdx0+1) == nIdx1 )
  1055. continue;
  1056. if( pTbbSeparatorToInsert != NULL )
  1057. {
  1058. nEndMeasure++;
  1059. iHidden++;
  1060. m_pRightBtn->GetButtons().InsertAt(
  1061. iHidden,
  1062. pTbbSeparatorToInsert
  1063. );
  1064. }
  1065. } // for( int iHidden = 0; iHidden < nEndMeasure; iHidden++ )
  1066. } // if( nHiddenCount >= 2 )
  1067. }
  1068. // offset buttons according to the theme NC metrics
  1069. if( ! bFloating )
  1070. {
  1071. CSize _sizeButtonOffset( 0, 0 );
  1072. if( m_bPaletteMode )
  1073. {
  1074. if( bHorz )
  1075. _sizeButtonOffset.cy = 2;
  1076. else
  1077. _sizeButtonOffset.cx = 2;
  1078. } // if( m_bPaletteMode )
  1079. _sizeButtonOffset += PmBridge_GetPM()->GetToolBarButtonOffset( bHorz );
  1080. if( _sizeButtonOffset.cx != 0 || _sizeButtonOffset.cy != 0 )
  1081. {
  1082. for( nBtnIdx = 0; nBtnIdx < nReviewCount; nBtnIdx++ )
  1083. {
  1084. CExtBarButton * pTBB = _GetButtonPtr( nBtnIdx );
  1085. ASSERT_VALID( pTBB );
  1086. if( pTBB->IsVisible()
  1087. && (pTBB->GetStyle() & TBBS_HIDDEN) == 0
  1088. )
  1089. {
  1090. CRect rcTBB = *pTBB;
  1091. rcTBB.OffsetRect( _sizeButtonOffset );
  1092. pTBB->SetRect( rcTBB );
  1093. }
  1094. } // for( nBtnIdx = 0; nBtnIdx < nReviewCount; nBtnIdx++ )
  1095. } // if( _sizeButtonOffset.cx != 0 || _sizeButtonOffset.cy != 0 )
  1096. } // if( ! bFloating )
  1097. }
  1098. DWORD CExtToolControlBar::RecalcDelayShow(AFX_SIZEPARENTPARAMS* lpLayout)
  1099. {
  1100. DWORD dwRes = CControlBar::RecalcDelayShow( lpLayout );
  1101. if( (!IsFloating()) && IsVisible() )
  1102. _RecalcPositionsImpl();
  1103. return dwRes;
  1104. }
  1105. void CExtToolControlBar::OnNcCalcSize(BOOL bCalcValidRects, NCCALCSIZE_PARAMS FAR* lpncsp)
  1106. {
  1107. ASSERT_VALID( this );
  1108. if( _AdjustBGInfo() )
  1109. {
  1110. // INT nGripWidthAtLeft = 0, nGripHeightAtTop = 0;
  1111. // if( (GetBarStyle()&CBRS_GRIPPER) != 0 )
  1112. // {
  1113. // nGripWidthAtLeft =
  1114. // PmBridge_GetPM()->Bar_GripperWidthAtLeftGet( this );
  1115. // nGripHeightAtTop =
  1116. // PmBridge_GetPM()->Bar_GripperHeightAtTopGet( this );
  1117. // if( nGripWidthAtLeft < 0 )
  1118. // nGripWidthAtLeft = 0;
  1119. // if( nGripHeightAtTop < 0 )
  1120. // nGripHeightAtTop = 0;
  1121. // } // if( (GetBarStyle()&CBRS_GRIPPER) != 0 )
  1122. // _GripperWidthAtLeftSet( nGripWidthAtLeft );
  1123. // _GripperHeightAtTopSet( nGripHeightAtTop );
  1124. lpncsp->rgrc[0].left += m_cxLeftBorder;
  1125. lpncsp->rgrc[0].top += m_cyTopBorder;
  1126. lpncsp->rgrc[0].right -= m_cxRightBorder;
  1127. lpncsp->rgrc[0].bottom -= m_cyBottomBorder;
  1128. return;
  1129. }
  1130. CExtControlBar::OnNcCalcSize(bCalcValidRects,lpncsp);
  1131. }
  1132. void CExtToolControlBar::OnSize(UINT nType, int cx, int cy) 
  1133. {
  1134. CExtControlBar::OnSize(nType, cx, cy);
  1135. if( _DraggingGetBar() != this )
  1136. _RecalcLayoutImpl();
  1137. else
  1138. _RecalcPositionsImpl();
  1139. }
  1140. void CExtToolControlBar::_RecalcLayoutImpl()
  1141. {
  1142. if( GetSafeHwnd() == NULL
  1143. || !::IsWindow( GetSafeHwnd() )
  1144. )
  1145. return;
  1146. CExtControlBar::_RecalcLayoutImpl();
  1147. _RecalcPositionsImpl();
  1148. Invalidate();
  1149. if( m_bPresubclassDialogMode )
  1150. UpdateWindow();
  1151. }
  1152. void CExtToolControlBar::_RibbonPageRslaResetStateData()
  1153. {
  1154. ASSERT_VALID( this );
  1155. }
  1156. LRESULT CExtToolControlBar::WindowProc(UINT message, WPARAM wParam, LPARAM lParam)
  1157. {
  1158. if( message == WM_TIMER && wParam == 0x444 )
  1159. {
  1160. if( CExtPopupMenuWnd::IsMenuTracking()
  1161. || g_bMenuTracking
  1162. || _DraggingGetBar() != NULL
  1163. )
  1164. return 0;
  1165. KillTimer( 0x444 );
  1166. CFrameWnd * pFrame = GetParentFrame();
  1167. if( pFrame != NULL )
  1168. {
  1169. ASSERT_VALID( pFrame );
  1170. pFrame->RecalcLayout();
  1171. if( pFrame->IsKindOf( RUNTIME_CLASS(CMiniDockFrameWnd) ) )
  1172. pFrame->SendMessage( WM_NCPAINT );
  1173. } // if( pFrame != NULL )
  1174. return 0;
  1175. } // if( message == WM_TIMER && wParam == 0x444 )
  1176. if( message == WM_WINDOWPOSCHANGED )
  1177. {
  1178. _RecalcPositionsImpl();
  1179. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1180. CExtCustomizeSite * pSite = GetCustomizeSite();
  1181. if( pSite != NULL && pSite->IsCustomizeMode() )
  1182. pSite->ActiveItemSet();
  1183. #endif //(!defined __EXT_MFC_NO_CUSTOMIZE)
  1184. // CExtControlBar * pDraggedBar = _DraggingGetBar();
  1185. // if( pDraggedBar == NULL
  1186. // || pDraggedBar != this
  1187. // )
  1188. // _RecalcLayoutImpl();
  1189. } // if( message == WM_WINDOWPOSCHANGED )
  1190. switch( message )
  1191. {
  1192. case WM_WINDOWPOSCHANGED:
  1193. case WM_SIZE:
  1194. _RedrawOnPosChanged();
  1195. break;
  1196. case WM_DESTROY:
  1197. case WM_NCDESTROY:
  1198. m_ptLastClientHover.x = m_ptLastClientHover.y = -32767;
  1199. break;
  1200. } // switch( message )
  1201. return CExtControlBar::WindowProc(message,wParam,lParam);
  1202. }
  1203. #if _MFC_VER < 0x700
  1204. void CExtToolControlBar::OnActivateApp(BOOL bActive, HTASK hTask) 
  1205. #else
  1206. void CExtToolControlBar::OnActivateApp(BOOL bActive, DWORD hTask) 
  1207. #endif
  1208. {
  1209. CExtControlBar::OnActivateApp( bActive, hTask );
  1210. }
  1211. void CExtToolControlBar::OnTimer(__EXT_MFC_UINT_PTR nIDEvent) 
  1212. {
  1213. switch( nIDEvent )
  1214. {
  1215. case __EXT_MFC_ID_TOOLBAR_HOVER_PROTECTION_TIMER:
  1216. {
  1217. bool bStateClear = false;
  1218. INT nIndex, nCount = GetButtonsCount();
  1219. for( nIndex = 0; nIndex < nCount; nIndex ++ )
  1220. {
  1221. CExtBarButton * pTBB = GetButton( nIndex );
  1222. ASSERT_VALID( pTBB );
  1223. if( ( ! pTBB->IsVisible() )
  1224. || ( pTBB->GetStyle() & TBBS_HIDDEN ) != 0
  1225. )
  1226. continue;
  1227. bool bHover = pTBB->IsHover();
  1228. if( bHover && m_nBtnIdxHover != nIndex )
  1229. {
  1230. bool bCancelHover = true;
  1231. CExtBarButton * pParentTBB = GetButton( m_nBtnIdxHover );
  1232. if( pParentTBB != NULL )
  1233. {
  1234. for( pParentTBB = pParentTBB->ParentButtonGet(); pParentTBB != NULL; pParentTBB = pParentTBB->ParentButtonGet() )
  1235. {
  1236. if( LPVOID(pParentTBB) == LPVOID(pTBB) )
  1237. {
  1238. bCancelHover = false;
  1239. break;
  1240. }
  1241. }
  1242. }
  1243. if( bCancelHover )
  1244. {
  1245. pTBB->SetHover( false );
  1246. _InvalidateButton( nIndex );
  1247. bStateClear = true;
  1248. break;
  1249. }
  1250. }
  1251. }
  1252. if( bStateClear )
  1253. {
  1254. KillTimer( __EXT_MFC_ID_TOOLBAR_HOVER_PROTECTION_TIMER );
  1255. return;
  1256. }
  1257. bool bActiveHover =
  1258. ( ( m_nBtnIdxHover >= 0 )
  1259. && CExtPopupMenuWnd::TestHoverEnabledFromActiveHWND( m_hWnd )
  1260. ) ? true : false;
  1261. if( bActiveHover )
  1262. {
  1263. CPoint point;
  1264. if( ::GetCursorPos( &point ) )
  1265. {
  1266. if( ::WindowFromPoint( point ) != m_hWnd )
  1267. bActiveHover = false;
  1268. }
  1269. else
  1270. bActiveHover = false;
  1271. }
  1272. if( bActiveHover
  1273. && m_pDockSite->GetSafeHwnd() != NULL
  1274. && ( ! m_pDockSite->IsWindowEnabled() )
  1275. )
  1276. bActiveHover = false;
  1277. if( ! bActiveHover )
  1278. {
  1279. _UpdateHoverButton( CPoint(32767,32767), false );
  1280. KillTimer( __EXT_MFC_ID_TOOLBAR_HOVER_PROTECTION_TIMER );
  1281. CExtPopupMenuTipWnd * pATTW =
  1282. OnAdvancedPopupMenuTipWndGet();
  1283. if( pATTW != NULL
  1284. && pATTW->GetLastParentHWND() == m_hWnd
  1285. )
  1286. pATTW->Hide();
  1287. CWnd::CancelToolTips();
  1288. }
  1289. else
  1290. {
  1291. if( m_nBtnIdxHover >= 0 )
  1292. {
  1293. CPoint pt;
  1294. if( ::GetCursorPos( &pt ) )
  1295. {
  1296. ScreenToClient( &pt );
  1297. INT nHT = HitTest( pt );
  1298. if( nHT != m_nBtnIdxHover )
  1299. {
  1300. KillTimer( __EXT_MFC_ID_TOOLBAR_HOVER_PROTECTION_TIMER );
  1301. if( ! CExtPopupMenuWnd::IsMenuTracking() )
  1302. _UpdateHoverButton( pt, false );
  1303. }
  1304. }
  1305. }
  1306. }
  1307. }
  1308. return; // case __EXT_MFC_ID_TOOLBAR_HOVER_PROTECTION_TIMER
  1309. } // switch( nIDEvent )
  1310. CExtControlBar::OnTimer(nIDEvent);
  1311. }
  1312. bool CExtToolControlBar::IsPaletteChevronMenu() const
  1313. {
  1314. ASSERT_VALID( this );
  1315. // if( m_bPresubclassDialogMode )
  1316. // return false;
  1317. return true;
  1318. }
  1319. void CExtToolControlBar::_SwitchMenuTrackingIndex(
  1320. int iNewMenuTrackingIndex  // = -1
  1321. )
  1322. {
  1323. ASSERT_VALID( this );
  1324. if( GetSafeHwnd() == NULL )
  1325. return;
  1326. if( m_nBtnIdxMenuTracking == iNewMenuTrackingIndex )
  1327. return;
  1328. if( m_nBtnIdxMenuTracking >= 0 )
  1329. {
  1330. CExtBarButton * pTBB =
  1331. _GetButtonPtr( m_nBtnIdxMenuTracking );
  1332. ASSERT_VALID( pTBB );
  1333. ASSERT( !(pTBB->IsSeparator()) );
  1334. UINT nNewStyle =
  1335. pTBB->GetStyle()
  1336. &
  1337. ~(TBBS_PRESSED|TBBS_CHECKED|TBBS_INDETERMINATE);
  1338. pTBB->SetStyle( nNewStyle );
  1339. pTBB->OnPressedTrackingStop();
  1340. _InvalidateButton( m_nBtnIdxMenuTracking );
  1341. m_nBtnIdxMenuTracking = -1;
  1342. } // if( m_nBtnIdxMenuTracking >= 0 )
  1343. if( iNewMenuTrackingIndex >= 0 )
  1344. {
  1345. m_nBtnIdxMenuTracking = iNewMenuTrackingIndex;
  1346. CExtBarButton * pTBB =
  1347. _GetButtonPtr( m_nBtnIdxMenuTracking );
  1348. ASSERT_VALID( pTBB );
  1349. ASSERT( !(pTBB->IsSeparator()) );
  1350. UINT nNewStyle =
  1351. pTBB->GetStyle()
  1352. &
  1353. ~(TBBS_CHECKED|TBBS_INDETERMINATE);
  1354. nNewStyle |= TBBS_PRESSED;
  1355. pTBB->SetStyle( nNewStyle );
  1356. pTBB->OnPressedTrackingStart();
  1357. _InvalidateButton( m_nBtnIdxMenuTracking );
  1358. } // if( iNewMenuTrackingIndex >= 0 )
  1359. // UpdateWindow();
  1360. }
  1361. CExtToolControlBar * CExtToolControlBar::_GetMenuTrackingBar()
  1362. {
  1363. //CSingleLock _slCsCB( &g_csCB );
  1364. // _slCsCB.Lock();
  1365. CExtToolControlBar * pRetVal = NULL;
  1366. INT iBar;
  1367. for( iBar = 0; iBar < g_AllBars.GetSize(); ++iBar )
  1368. {
  1369. CExtControlBar * pBar = g_AllBars[iBar];
  1370. ASSERT_VALID( pBar );
  1371. if( pBar->GetSafeHwnd() == NULL )
  1372. continue;
  1373. CExtToolControlBar * pToolControlBar =
  1374. DYNAMIC_DOWNCAST(CExtToolControlBar,pBar);
  1375. if( pToolControlBar == NULL )
  1376. continue;
  1377. if( pToolControlBar->m_nBtnIdxMenuTracking >= 0 )
  1378. {
  1379. pRetVal = pToolControlBar;
  1380. break;
  1381. }
  1382. } // for( iBar = 0; iBar < g_AllBars.GetSize(); ++iBar )
  1383. // _slCsCB.Unlock();
  1384. return pRetVal; // fixed by Mr. Jay Horak
  1385. }
  1386. void CExtToolControlBar::_CloseTrackingMenus()
  1387. {
  1388. __PROF_UIS_MANAGE_STATE;
  1389. // TRACE1(
  1390. // " >> _CloseTrackingMenus()(%s)n",
  1391. // g_bMenuTracking ? " on  " : " off "
  1392. // );
  1393. g_bMenuTracking = false;
  1394. //CSingleLock _slCsCB( &g_csCB );
  1395. // _slCsCB.Lock();
  1396. for( INT iBar=0; iBar<g_AllBars.GetSize(); ++iBar )
  1397. {
  1398. CExtControlBar * pBar = g_AllBars[iBar];
  1399. ASSERT( pBar != NULL );
  1400. if( CWnd::FromHandlePermanent(pBar->m_hWnd) != pBar )
  1401. continue;
  1402. ASSERT_VALID( pBar );
  1403. if( pBar->GetSafeHwnd() == NULL )
  1404. continue;
  1405. CExtToolControlBar * pToolControlBar =
  1406. DYNAMIC_DOWNCAST(CExtToolControlBar,pBar);
  1407. if( pToolControlBar == NULL )
  1408. continue;
  1409. pToolControlBar->_SwitchMenuTrackingIndex();
  1410. }
  1411. // _slCsCB.Unlock();
  1412. // CExtPopupMenuWnd::CancelMenuTracking();
  1413. // CWnd::CancelToolTips();
  1414. if( (! CExtPopupMenuSite::g_DefPopupMenuSite.IsEmpty() )
  1415. && (! CExtPopupMenuSite::g_DefPopupMenuSite.IsShutdownMode() )
  1416. )
  1417. {
  1418. CExtPopupMenuWnd * pTopMenu =
  1419. CExtPopupMenuSite::g_DefPopupMenuSite.
  1420. GetInstance();
  1421. if( pTopMenu->GetSafeHwnd() != NULL )
  1422. pTopMenu->PostMessage( WM_CANCELMODE );
  1423. }
  1424. CWnd::CancelToolTips();
  1425. //  TO FIX: can be tracked other menu
  1426. // ASSERT( !CExtPopupMenuWnd::IsMenuTracking() );
  1427. }
  1428. void CExtToolControlBar::_CloseCustomMenusAll()
  1429. {
  1430. static bool g_bClosingCustomMenu = false;
  1431. if( g_bClosingCustomMenu )
  1432. return;
  1433. g_bClosingCustomMenu = true;
  1434. for( INT iBar=0; iBar<g_AllBars.GetSize(); ++iBar )
  1435. {
  1436. CExtControlBar * pBar = g_AllBars[iBar];
  1437. ASSERT( pBar != NULL );
  1438. if( CWnd::FromHandlePermanent(pBar->m_hWnd) != pBar )
  1439. continue;
  1440. ASSERT_VALID( pBar );
  1441. if( pBar->GetSafeHwnd() == NULL )
  1442. continue;
  1443. CExtToolControlBar * pToolControlBar =
  1444. DYNAMIC_DOWNCAST(CExtToolControlBar,pBar);
  1445. if( pToolControlBar == NULL )
  1446. continue;
  1447. pToolControlBar->_CloseCustomMenus();
  1448. }
  1449. g_bClosingCustomMenu = false;
  1450. }
  1451. void CExtToolControlBar::_CloseCustomMenus()
  1452. {
  1453. }
  1454. CExtToolControlBar * CExtToolControlBar::_GetMenuTrackingToolControlBar()
  1455. {
  1456. __PROF_UIS_MANAGE_STATE;
  1457. for( INT iBar=0; iBar<g_AllBars.GetSize(); ++iBar )
  1458. {
  1459. CExtControlBar * pBar = g_AllBars[iBar];
  1460. ASSERT( pBar != NULL );
  1461. if( CWnd::FromHandlePermanent(pBar->m_hWnd) != pBar )
  1462. continue;
  1463. ASSERT_VALID( pBar );
  1464. if( pBar->GetSafeHwnd() == NULL )
  1465. continue;
  1466. CExtToolControlBar * pToolControlBar =
  1467. DYNAMIC_DOWNCAST(CExtToolControlBar,pBar);
  1468. if( pToolControlBar == NULL )
  1469. continue;
  1470. if( pToolControlBar->GetMenuTrackingButton() >= 0 )
  1471. return pToolControlBar;
  1472. }
  1473. return NULL;
  1474. }
  1475. CExtMenuControlBar * CExtToolControlBar::_GetMenuTrackingMenuControlBar()
  1476. {
  1477. __PROF_UIS_MANAGE_STATE;
  1478. CExtToolControlBar * pToolControlBar = _GetMenuTrackingToolControlBar();
  1479. if( pToolControlBar == NULL )
  1480. return NULL;
  1481. CExtMenuControlBar * pMenuControlBar = DYNAMIC_DOWNCAST( CExtMenuControlBar, pToolControlBar );
  1482. return pMenuControlBar;
  1483. }
  1484. void CExtToolControlBar::_CbPaintCombinedContent(
  1485. LPVOID pCookie,
  1486. CDC & dc,
  1487. const CWnd & refWndMenu,
  1488. const CRect & rcExcludeArea, // in screen coords
  1489. int eCombineAlign // CExtPopupMenuWnd::e_combine_align_t values
  1490. )
  1491. {
  1492. CExtToolControlBar::g_bMenuTracking = true;
  1493. pCookie;
  1494. dc;
  1495. refWndMenu;
  1496. rcExcludeArea;
  1497. eCombineAlign;
  1498. ASSERT( dc.GetSafeHdc() != NULL );
  1499. ASSERT( refWndMenu.GetSafeHwnd() != NULL );
  1500. CExtToolControlBar * pBar = (CExtToolControlBar *)pCookie;
  1501. ASSERT_VALID( pBar );
  1502. ASSERT( pBar->IsKindOf(RUNTIME_CLASS(CExtToolControlBar)) );
  1503. ASSERT( eCombineAlign != CExtPopupMenuWnd::__CMBA_NONE );
  1504. if( rcExcludeArea.IsRectEmpty() )
  1505. return;
  1506. if( pBar->m_nBtnIdxMenuTracking < 0 )
  1507. return;
  1508. ASSERT(
  1509. pBar->m_nBtnIdxMenuTracking <
  1510. pBar->GetButtonsCount()
  1511. );
  1512. CExtBarButton * pTBB =
  1513. pBar->_GetButtonPtr(
  1514. pBar->m_nBtnIdxMenuTracking
  1515. );
  1516. ASSERT_VALID( pTBB );
  1517. if( pBar->PmBridge_GetPM()->GetCb2DbTransparentMode(pTBB)
  1518. && pTBB->IsKindOf( RUNTIME_CLASS(CExtBarContentExpandButton) )
  1519. && (! pBar->IsKindOf(RUNTIME_CLASS(CExtMenuControlBar)) )
  1520. && ( (! pBar->m_bPresubclassDialogMode )
  1521. || pBar->m_bForceBalloonGradientInDialogs
  1522. )
  1523. && ::GetDeviceCaps( dc.m_hDC, BITSPIXEL ) > 8
  1524. )
  1525. return;
  1526. UINT nStyle = pTBB->GetStyle();
  1527. bool bHover = pTBB->IsHover();
  1528. pTBB->AnimationClient_CacheGeneratorLock();
  1529. pTBB->SetHover( false );
  1530. pTBB->ModifyStyle(
  1531. 0,
  1532. TBBS_PRESSED|TBBS_CHECKED|TBBS_CHECKBOX
  1533. );
  1534. CRect rcClientBar,rcClientExcludeArea;
  1535. pBar->GetClientRect( &rcClientBar );
  1536. pBar->ClientToScreen( &rcClientBar );
  1537. refWndMenu.GetClientRect( &rcClientExcludeArea );
  1538. refWndMenu.ClientToScreen( &rcClientExcludeArea );
  1539. CPoint ptOffset =
  1540. rcClientBar.TopLeft()
  1541. - rcClientExcludeArea.TopLeft()
  1542. ;
  1543. CPoint ptViewportOrg = dc.GetViewportOrg();
  1544. dc.SetViewportOrg( ptOffset );
  1545. CExtPopupMenuWnd::g_pCombinedHelper = pTBB;
  1546. pBar->PmBridge_GetPM()->PaintBarButtonCombinedArea( dc, pTBB );
  1547. pTBB->Paint( dc );
  1548. CExtPopupMenuWnd::g_pCombinedHelper = NULL;
  1549. dc.SetViewportOrg( ptViewportOrg );
  1550. pTBB->SetHover( bHover );
  1551. pTBB->SetStyle( nStyle );
  1552. pTBB->AnimationClient_CacheGeneratorUnlock();
  1553. }
  1554. CExtBarButton * CExtToolControlBar::GetButton( int nIndex )
  1555. {
  1556. return _GetButtonPtr( nIndex );
  1557. }
  1558. CExtBarContentExpandButton * CExtToolControlBar::GetRightButton()
  1559. {
  1560. return m_pRightBtn;
  1561. }
  1562. void CExtToolControlBar::OnCaptureChanged(CWnd *pWnd) 
  1563. {
  1564. if( pWnd != this
  1565. // && pWnd != NULL
  1566. )
  1567. {
  1568. if( m_nBtnIdxCapture >= 0 || m_nBtnIdxHover >= 0 )
  1569. {
  1570. SendMessage( WM_CANCELMODE );
  1571. m_nBtnIdxCapture = m_nBtnIdxHover = -1;
  1572. }
  1573. }
  1574. CExtControlBar::OnCaptureChanged(pWnd);
  1575. }
  1576. BOOL CExtToolControlBar::InitContentExpandButton()
  1577. {
  1578. if( m_pRightBtn != NULL )
  1579. return TRUE;
  1580. m_pRightBtn = OnCreateBarRightBtn();
  1581. if( m_pRightBtn == NULL )
  1582. return FALSE;
  1583. ASSERT_VALID( m_pRightBtn );
  1584. ASSERT_KINDOF( CExtBarContentExpandButton, m_pRightBtn );
  1585. m_buttons.Add( m_pRightBtn );
  1586. return TRUE;
  1587. }
  1588. bool CExtToolControlBar::_CanDockToInnerCircles() const
  1589. {
  1590. return false;
  1591. }
  1592. bool CExtToolControlBar::_CanDockToTabbedContainers(
  1593. CExtControlBar * pDestBar
  1594. ) const
  1595. {
  1596. pDestBar;
  1597. return false;
  1598. }
  1599. void CExtToolControlBar::ToggleDocking()
  1600. {
  1601. ASSERT_VALID( this );
  1602. if( m_pDockSite == NULL || m_pDockBar == NULL )
  1603. return;
  1604. ASSERT_VALID( m_pDockSite );
  1605. ASSERT_VALID( m_pDockBar );
  1606. #ifdef _DEBUG
  1607. if( !IsFloating() )
  1608. {
  1609. ASSERT_KINDOF( CExtDockBar, m_pDockBar );
  1610. }
  1611. #endif // _DEBUG
  1612. ASSERT( m_pDockContext != NULL );
  1613. CFrameWnd * pParentFrame = GetParentFrame();
  1614. ASSERT_VALID( pParentFrame );
  1615. if( pParentFrame != m_pDockSite )
  1616. pParentFrame->ShowWindow( SW_HIDE );
  1617. m_pDockContext->ToggleDocking();
  1618. CFrameWnd * pFrame = _GetDockingFrameImpl();
  1619. ASSERT_VALID( pFrame );
  1620. pFrame->DelayRecalcLayout();
  1621. _RecalcNcArea();
  1622. }
  1623. CExtBarButton::e_wrap_t CExtToolControlBar::GetBtnWrapCode() const
  1624. {
  1625. ASSERT_VALID( this );
  1626. if( m_bPresubclassDialogMode
  1627. || GetSafeHwnd() == NULL
  1628. || ( ! ::IsWindow(GetSafeHwnd()) )
  1629. || IsFloating()
  1630. )
  1631. return CExtBarButton::__EVT_FLOAT;
  1632. if( IsDockedVertically() )
  1633. return CExtBarButton::__EVT_VERT;
  1634. return CExtBarButton::__EVT_HORZ;
  1635. }
  1636. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1637. bool CExtToolControlBar::_IsDockSiteCustomizeMode() const
  1638. {
  1639. ASSERT_VALID( this );
  1640. if( ! m_bCustomizationAllowed )
  1641. return false;
  1642. CExtCustomizeSite * pSite = GetCustomizeSite();
  1643. if( pSite == NULL )
  1644. // return CExtControlBar::_IsDockSiteCustomizeMode();
  1645. return false;
  1646. return pSite->IsCustomizeMode();
  1647. }
  1648. CExtCustomizeSite * CExtToolControlBar::GetCustomizeSite()
  1649. {
  1650. ASSERT_VALID( this );
  1651. return m_pCustomizeSite;
  1652. }
  1653. CExtCustomizeSite * CExtToolControlBar::GetCustomizeSite() const
  1654. {
  1655. ASSERT_VALID( this );
  1656. return ((CExtToolControlBar*)this)->GetCustomizeSite();
  1657. }
  1658. bool CExtToolControlBar::OnCustomizeRegisterBar(
  1659. CExtCustomizeSite * pCustomizeSite
  1660. )
  1661. {
  1662. ASSERT_VALID( this );
  1663. ASSERT( m_pCustomizeSite == NULL ); // should called only once
  1664. ASSERT( pCustomizeSite != NULL );
  1665. m_pCustomizeSite = pCustomizeSite;
  1666. if( (! m_bCustomizationAllowed )
  1667. || m_bPaletteMode
  1668. )
  1669. return false;
  1670. return true;
  1671. }
  1672. void CExtToolControlBar::OnCustomizeGetBarInfo(
  1673. CExtCustomizeSite::CToolBarCustomizeInfo * pInfo
  1674. )
  1675. {
  1676. ASSERT_VALID( this );
  1677. ASSERT( m_pCustomizeSite != NULL );
  1678. ASSERT( pInfo != NULL );
  1679. ASSERT( m_hWnd != NULL && ::IsWindow(m_hWnd) );
  1680. UINT nBarID = (UINT)GetDlgCtrlID();
  1681. CExtCmdItem * pCmd =
  1682. g_CmdManager->CmdGetPtr(
  1683. g_CmdManager->ProfileNameFromWnd(m_hWnd),
  1684. nBarID
  1685. );
  1686. if( pCmd != NULL )
  1687. pInfo->m_strDisplayName =
  1688. pCmd->OnGetToolBarCustomizeName();
  1689. if( pInfo->m_strDisplayName.IsEmpty() )
  1690. {
  1691. if( ! g_ResourceManager->LoadString( pInfo->m_strDisplayName, nBarID ) )
  1692. {
  1693. int nTextLen = GetWindowTextLength();
  1694. if( nTextLen > 0 )
  1695. {
  1696. GetWindowText( pInfo->m_strDisplayName.GetBuffer(nTextLen+2), nTextLen+1 );
  1697. pInfo->m_strDisplayName.ReleaseBuffer();
  1698. } // if( nTextLen > 0 )
  1699. if( pInfo->m_strDisplayName.IsEmpty() )
  1700. pInfo->m_strDisplayName.Format(
  1701. _T("Toolbar #%08X"),
  1702. nBarID
  1703. );
  1704. }
  1705. } // if( pInfo->m_strDisplayName.IsEmpty() )
  1706. if( pInfo->m_pHelperBarButtonsI != NULL )
  1707. {
  1708. CExtCustomizeSite * pCustomizeSite = GetCustomizeSite();
  1709. ASSERT( pCustomizeSite != NULL );
  1710. ASSERT_VALID( pInfo->m_pHelperBarButtonsI );
  1711. ASSERT( pInfo->m_pHelperBarButtonsI->GetCmdID() == ((UINT)GetDlgCtrlID()) );
  1712. ASSERT( pInfo->m_pHelperBarButtonsI->GetNodeCount() == 0 );
  1713. pInfo->m_pHelperBarButtonsI->SetTextUser( pInfo->m_strDisplayName );
  1714. bool bRevertRTL = OnQueryRevertRTL();
  1715. INT nCountOfButtons = _GetButtonsCountImpl();
  1716. for( INT nBtnIdx = 0; nBtnIdx < nCountOfButtons; nBtnIdx++ )
  1717. {
  1718. CExtBarButton * pTBB =
  1719. _GetButtonPtr(
  1720. bRevertRTL
  1721. ? (nCountOfButtons - nBtnIdx - 1)
  1722. : nBtnIdx
  1723. );
  1724. ASSERT_VALID( pTBB );
  1725. pTBB->OnCustomizeNodeInit(
  1726. pCustomizeSite,
  1727. pInfo->m_pHelperBarButtonsI
  1728. );
  1729. } // for( INT nBtnIdx = 0; nBtnIdx < nCountOfButtons; nBtnIdx++ )
  1730. } // if( pInfo->m_pHelperBarButtonsI != NULL )
  1731. }
  1732. void CExtToolControlBar::OnCustomizeUpdateInitialBarState(
  1733. CExtCustomizeCmdTreeNode * pParentNode,
  1734. bool bRecalcLayout
  1735. )
  1736. {
  1737. ASSERT_VALID( this );
  1738. ASSERT_VALID( pParentNode );
  1739. ASSERT( m_pCustomizeSite != NULL );
  1740. INT nNodeCount = pParentNode->GetNodeCount();
  1741. INT nCountOfButtons = _GetButtonsCountImpl();
  1742. ASSERT( nNodeCount <= nCountOfButtons );
  1743. bool bRevertRTL = OnQueryRevertRTL();
  1744. INT nNodePos = bRevertRTL ? (pParentNode->GetNodeCount()-1) : 0;
  1745. for( INT nBtnIdx = 0; nBtnIdx < nCountOfButtons; nBtnIdx++ )
  1746. {
  1747. CExtBarButton * pTBB =
  1748. _GetButtonPtr( nBtnIdx );
  1749. ASSERT_VALID( pTBB );
  1750. CExtCustomizeCmdTreeNode * pCmdNodeI =
  1751. pTBB->GetCmdNode( true );
  1752. if( pCmdNodeI == NULL )
  1753. continue;
  1754. ASSERT( !pTBB->IsSeparator() );
  1755. ASSERT_VALID( pCmdNodeI );
  1756. CExtCustomizeCmdTreeNode * pCmdNodeC =
  1757. pParentNode->ElementAt( nNodePos );
  1758. if( bRevertRTL )
  1759. nNodePos --;
  1760. else
  1761. nNodePos ++;
  1762. ASSERT_VALID( pCmdNodeC );
  1763. // re-init spec buttons
  1764. pTBB =
  1765. m_pCustomizeSite->OnCreateToolbarButton(
  1766. this,
  1767. pCmdNodeI,
  1768. pCmdNodeI
  1769. );
  1770. ASSERT_VALID( pTBB );
  1771. VERIFY(
  1772. InsertSpecButton(
  1773. nBtnIdx,
  1774. pTBB,
  1775. FALSE
  1776. )
  1777. );
  1778. pTBB->SetBasicCmdNode( pCmdNodeI );
  1779. pTBB->SetCustomizedCmdNode( pCmdNodeC );
  1780. pTBB->OnCustomizeUpdateProps();
  1781. RemoveButton( nBtnIdx + 1, FALSE );
  1782. } // for( INT nBtnIdx = 0; nBtnIdx < nCountOfButtons; nBtnIdx++ )
  1783. if( bRecalcLayout )
  1784. _RecalcLayoutImpl();
  1785. }
  1786. void CExtToolControlBar::OnCustomizeModeEnter()
  1787. {
  1788. ASSERT_VALID( this );
  1789. if( (! m_bCustomizationAllowed )
  1790. || m_pDockSite == NULL
  1791. || m_pDockBar == NULL
  1792. || (! m_pDockBar->IsKindOf(RUNTIME_CLASS(CExtDockOuterBar)) )
  1793. )
  1794. return;
  1795. ASSERT_VALID( m_pDockSite );
  1796. ASSERT_VALID( m_pDockBar );
  1797. CExtCustomizeSite * pSite = GetCustomizeSite();
  1798. if( pSite != NULL )
  1799. pSite->RegisterCommandDropTarget( this, this );
  1800. if( (! IsDocked() )
  1801. || _GetFullRowMode()
  1802. )
  1803. return;
  1804. INT nCountOfButtons = _GetButtonsCountImpl();
  1805. if( nCountOfButtons == 0 )
  1806. return;
  1807. if( m_pRightBtn == NULL )
  1808. return;
  1809. if( m_pRightBtn->GetButtons().GetSize() == 0 )
  1810. return;
  1811. INT nOwnIdxInDocker = m_pDockBar->FindBar(this);
  1812. ASSERT( 0 < nOwnIdxInDocker && nOwnIdxInDocker < (m_pDockBar->m_arrBars.GetSize()-1) );
  1813. if( m_pDockBar->m_arrBars[nOwnIdxInDocker+1] != NULL )
  1814. m_pDockBar->m_arrBars.InsertAt( nOwnIdxInDocker+1, (CControlBar *)NULL );
  1815. if( m_pDockBar->m_arrBars[nOwnIdxInDocker-1] != NULL )
  1816. m_pDockBar->m_arrBars.InsertAt( nOwnIdxInDocker, (CControlBar *)NULL );
  1817. Invalidate();
  1818. }
  1819. void CExtToolControlBar::OnCustomizeModeLeave()
  1820. {
  1821. ASSERT_VALID( this );
  1822. // if( ! m_bCustomizationAllowed )
  1823. // return;
  1824. }
  1825. void CExtToolControlBar::OnCustomizeListBoxUpdate( CExtCustomizeToolbarsListBox * pWndList )
  1826. {
  1827. ASSERT_VALID( this );
  1828. ASSERT_VALID( pWndList );
  1829. if( ! m_bCustomizationAllowed )
  1830. return;
  1831. CExtControlBar::OnCustomizeListBoxUpdate( pWndList );
  1832. }
  1833. DROPEFFECT CExtToolControlBar::OnCustomizeTargetOver(
  1834. CExtCustomizeSite::CCmdDragInfo & _dragInfo,
  1835. CPoint point,
  1836. DWORD dwKeyState
  1837. )
  1838. {
  1839. ASSERT_VALID( this );
  1840. ASSERT( !_dragInfo.IsEmpty() );
  1841. _dragInfo;
  1842. if( ! m_bCustomizationAllowed )
  1843. return DROPEFFECT_NONE;
  1844. if( m_pDockBar != NULL
  1845. && IsFloating()
  1846. )
  1847. GetParentFrame()->SetWindowPos(
  1848. &CWnd::wndTop, 0, 0, 0, 0,
  1849. SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE
  1850. );
  1851. int nCountTest = _GetButtonsCountImpl();
  1852. int nCountReal = nCountTest;
  1853. if( m_pRightBtn != NULL )
  1854. {
  1855. nCountTest--;
  1856. ASSERT( nCountTest >= 0 );
  1857. }
  1858. if( nCountTest > 0
  1859. && _GetButtonPtr(0)->IsKindOf(RUNTIME_CLASS(CExtBarMdiDocButton))
  1860. )
  1861. {
  1862. nCountTest--;
  1863. ASSERT( nCountTest >= 0 );
  1864. }
  1865. if( nCountReal > 1
  1866. && _GetButtonPtr(
  1867. ( m_pRightBtn != NULL )
  1868. ? (nCountReal-2)
  1869. : (nCountReal-1)
  1870. )->IsKindOf(RUNTIME_CLASS(CExtBarMdiDocButton))
  1871. )
  1872. {
  1873. nCountTest--;
  1874. ASSERT( nCountTest >= 0 );
  1875. }
  1876. if( nCountTest == 0 )
  1877. {
  1878. if( (dwKeyState & MK_CONTROL) != NULL )
  1879. return DROPEFFECT_COPY;
  1880. return DROPEFFECT_MOVE;
  1881. }
  1882. if( m_pDragTargetTBB != NULL )
  1883. _InvalidateButton( _GetIndexOf(m_pDragTargetTBB) );
  1884. int nHitIdx = _HitTestImpl( point, 0, 0, true );
  1885. if( nHitIdx < 0 )
  1886. {
  1887. m_pDragTargetTBB = NULL;
  1888. m_nDragTargetShift = 0;
  1889. UpdateWindow();
  1890. return DROPEFFECT_NONE;
  1891. }
  1892. CExtBarButton * pHitTBB = _GetButtonPtr( nHitIdx );
  1893. ASSERT_VALID( pHitTBB );
  1894. if( pHitTBB->IsSeparator() )
  1895. {
  1896. nHitIdx--;
  1897. if( nHitIdx < 0 )
  1898. {
  1899. m_pDragTargetTBB = NULL;
  1900. m_nDragTargetShift = 0;
  1901. UpdateWindow();
  1902. return DROPEFFECT_NONE;
  1903. }
  1904. pHitTBB = _GetButtonPtr( nHitIdx );
  1905. ASSERT_VALID( pHitTBB );
  1906. if( pHitTBB->IsSeparator() )
  1907. {
  1908. ASSERT( FALSE ); // double  separators?!
  1909. m_pDragTargetTBB = NULL;
  1910. m_nDragTargetShift = 0;
  1911. UpdateWindow();
  1912. return DROPEFFECT_NONE;
  1913. } // if( pHitTBB->IsSeparator() )
  1914. } // if( pHitTBB->IsSeparator() )
  1915. m_nDragTargetShift =
  1916. pHitTBB->CalculateDropOverEffect( point, _dragInfo );
  1917. if( m_nDragTargetShift == 0 )
  1918. {
  1919. m_pDragTargetTBB = NULL;
  1920. m_nDragTargetShift = 0;
  1921. UpdateWindow();
  1922. return DROPEFFECT_NONE;
  1923. } // if( m_nDragTargetShift == 0 )
  1924. if( m_pDragTargetTBB != pHitTBB )
  1925. {
  1926. m_pDragTargetTBB = pHitTBB;
  1927. _InvalidateButton( _GetIndexOf(m_pDragTargetTBB) );
  1928. }
  1929. UpdateWindow();
  1930. if( (dwKeyState & MK_CONTROL) != NULL )
  1931. return DROPEFFECT_COPY;
  1932. return DROPEFFECT_MOVE;
  1933. }
  1934. void CExtToolControlBar::OnCustomizeTargetLeave()
  1935. {
  1936. ASSERT_VALID( this );
  1937. if( ! m_bCustomizationAllowed )
  1938. return;
  1939. if( m_pDragTargetTBB == NULL )
  1940. return;
  1941. _InvalidateButton( _GetIndexOf(m_pDragTargetTBB) );
  1942. m_pDragTargetTBB = NULL;
  1943. m_nDragTargetShift = 0;
  1944. UpdateWindow();
  1945. }
  1946. bool CExtToolControlBar::OnCustomizeTargetDrop(
  1947. CExtCustomizeSite::CCmdDragInfo & _dragInfo,
  1948. CPoint point,
  1949. DROPEFFECT de
  1950. )
  1951. {
  1952. // returns true if drop with any effect
  1953. // has been performed
  1954. ASSERT_VALID( this );
  1955. ASSERT( !_dragInfo.IsEmpty() );
  1956. _dragInfo;
  1957. point;
  1958. if( ! m_bCustomizationAllowed )
  1959. return false;
  1960. ASSERT(
  1961. de == DROPEFFECT_NONE
  1962. || de == DROPEFFECT_MOVE
  1963. || de == DROPEFFECT_COPY
  1964. );
  1965. if( de == DROPEFFECT_NONE )
  1966. return false;
  1967. if( m_pDragTargetTBB == NULL )
  1968. {
  1969. CExtCustomizeSite * pSite =
  1970. GetCustomizeSite();
  1971. ASSERT( pSite != NULL );
  1972. int nInsertPos = 0;
  1973. if( GetButtonsCount() > 0
  1974. && _GetButtonPtr(0)->IsKindOf(RUNTIME_CLASS(CExtBarMdiDocButton))
  1975. )
  1976. nInsertPos = 1;
  1977. pSite->OnInsertToolbarCmdNode(
  1978. _dragInfo,
  1979. this,
  1980. nInsertPos,
  1981. true
  1982. );
  1983. if( m_pDockBar != NULL )
  1984. {
  1985. Invalidate();
  1986. GetParentFrame()->RecalcLayout();
  1987. }
  1988. return true;
  1989. } // if( m_pDragTargetTBB == NULL )
  1990. ASSERT_VALID( m_pDragTargetTBB );
  1991. int nBtn = _GetIndexOf(m_pDragTargetTBB);
  1992. ASSERT( 0 <= nBtn && nBtn < _GetButtonsCountImpl() );
  1993. _InvalidateButton( nBtn );
  1994. bool bSeparatorAdd = false;
  1995. bool bSeparatorRemove = false;
  1996. if( de == DROPEFFECT_MOVE )
  1997. {
  1998. if( m_pDragSourceTBB == m_pDragTargetTBB )
  1999. {
  2000. if( m_nDragTargetShift == -2 )
  2001. return false; // no reinsert
  2002. if( m_nDragTargetShift < 0 )
  2003. { // if remove separator
  2004. if( nBtn > 0
  2005. && _GetButtonPtr(nBtn-1)->IsSeparator()
  2006. )
  2007. bSeparatorRemove = true;
  2008. else
  2009. return false; // no reinsert
  2010. } // if remove separator
  2011. else
  2012. { // if add separator
  2013. if( ( nBtn > 1
  2014. || ( nBtn == 1
  2015. && (! _GetButtonPtr(0)->IsKindOf(RUNTIME_CLASS(CExtBarMdiDocButton)) )
  2016. )
  2017. )
  2018. && (! _GetButtonPtr(nBtn-1)->IsSeparator() )
  2019. )
  2020. bSeparatorAdd = true;
  2021. else
  2022. return false; // no reinsert
  2023. } // if add separator
  2024. } // if( m_pDragSourceTBB == m_pDragTargetTBB )
  2025. else if(
  2026. m_pDragSourceTBB != NULL
  2027. && nBtn > 0
  2028. && m_nDragTargetShift < 0
  2029. && _GetIndexOf(m_pDragSourceTBB) == (nBtn-1)
  2030. && (!( nBtn == 2
  2031. && _GetButtonPtr(0)->IsKindOf(RUNTIME_CLASS(CExtBarMdiDocButton))
  2032. ))
  2033. )
  2034. {
  2035. if( ( nBtn > 1
  2036. && (! _GetButtonPtr(nBtn-2)->IsSeparator() )
  2037. )
  2038. || nBtn <= 1
  2039. )
  2040. { // avoid unwanted separator insert
  2041. bSeparatorAdd = true;
  2042. nBtn--;
  2043. } // avoid unwanted separator insert
  2044. }
  2045. } // if( de == DROPEFFECT_MOVE )
  2046. if( bSeparatorRemove )
  2047. {
  2048. CExtBarButton * pModifyTBB = _GetButtonPtr(nBtn);
  2049. ASSERT_VALID( pModifyTBB );
  2050. CExtCustomizeCmdTreeNode * pNode = pModifyTBB->GetCmdNode();
  2051. ASSERT_VALID( pNode );
  2052. pNode->ModifyFlags( 0, __ECTN_GROUP_START );
  2053. RemoveButton(nBtn-1);
  2054. UpdateWindow();
  2055. if( m_pDockBar != NULL
  2056. //&& IsFloating()
  2057. )
  2058. {
  2059. Invalidate();
  2060. GetParentFrame()->RecalcLayout();
  2061. }
  2062. m_bHelperSeparatorAction = true;
  2063. } // if( bSeparatorRemove )
  2064. else if( bSeparatorAdd )
  2065. {
  2066. CExtBarButton * pModifyTBB = _GetButtonPtr(nBtn);
  2067. ASSERT_VALID( pModifyTBB );
  2068. CExtCustomizeCmdTreeNode * pNode = pModifyTBB->GetCmdNode();
  2069. ASSERT_VALID( pNode );
  2070. pNode->ModifyFlags( __ECTN_GROUP_START );
  2071. InsertButton(nBtn);
  2072. UpdateWindow();
  2073. if( m_pDockBar != NULL
  2074. //&& IsFloating()
  2075. )
  2076. {
  2077. Invalidate();
  2078. GetParentFrame()->RecalcLayout();
  2079. }
  2080. m_bHelperSeparatorAction = true;
  2081. } // else if( bSeparatorAdd )
  2082. else
  2083. { // if command drop
  2084. int nInsertPos = (m_nDragTargetShift < 0) ? nBtn : (nBtn+1);
  2085. m_pDragTargetTBB = NULL;
  2086. m_nDragTargetShift = 0;
  2087. UpdateWindow();
  2088. //InsertButton( nInsertPos, pCmdItem->m_nCmdID );
  2089. CExtCustomizeSite * pSite =
  2090. GetCustomizeSite();
  2091. ASSERT( pSite != NULL );
  2092. pSite->OnInsertToolbarCmdNode(
  2093. _dragInfo,
  2094. this,
  2095. nInsertPos,
  2096. true
  2097. );
  2098. if( m_pDockBar != NULL
  2099. //&& IsFloating()
  2100. )
  2101. {
  2102. Invalidate();
  2103. GetParentFrame()->RecalcLayout();
  2104. }
  2105. } // if command drop
  2106. return true;
  2107. }
  2108. void CExtToolControlBar::OnCustomizeSourceDragComplete(
  2109. DROPEFFECT de,
  2110. bool bCanceled,
  2111. bool * p_bNoResetActiveItem
  2112. )
  2113. {
  2114. ASSERT_VALID( this );
  2115. ASSERT_VALID( m_pDragSourceTBB );
  2116. ASSERT( p_bNoResetActiveItem != NULL );
  2117. ASSERT(
  2118. de == DROPEFFECT_NONE
  2119. || de == DROPEFFECT_MOVE
  2120. || de == DROPEFFECT_COPY
  2121. );
  2122. if( ! m_bCustomizationAllowed )
  2123. return;
  2124. int nBtnSrc = _GetIndexOf(m_pDragSourceTBB);
  2125. if( (!bCanceled) && (!m_bHelperSeparatorAction) )
  2126. {
  2127. CExtBarButton * pHtCurrTBB = NULL;
  2128. if( GetButtonsCount() > 0 )
  2129. {
  2130. CPoint point( 0, 0 );
  2131. ::GetCursorPos( &point );
  2132. ScreenToClient( &point );
  2133. INT nButton = HitTest( point );
  2134. if( nButton >= 0 )
  2135. pHtCurrTBB = _GetButtonPtr( nButton );
  2136. } // if( GetButtonsCount() > 0 )
  2137. if( de == DROPEFFECT_NONE || de == DROPEFFECT_MOVE )
  2138. {
  2139. if( m_pDragSourceTBB == m_pDragTargetTBB
  2140. || m_pDragSourceTBB == pHtCurrTBB
  2141. )
  2142. { // if keep source button active
  2143. m_pDragSourceTBB = NULL;
  2144. if( _IsDockSiteCustomizeMode() )
  2145. *p_bNoResetActiveItem = true;
  2146. } // if keep source button active
  2147. else
  2148. { // if remove source button
  2149. m_pDragSourceTBB = NULL;
  2150. CExtCustomizeSite * pSite = GetCustomizeSite();
  2151. ASSERT( pSite != NULL );
  2152. CExtCustomizeCmdTreeNode * pNode =
  2153. pSite->DraggedNodeGet();
  2154. ASSERT_VALID( pNode );
  2155. ASSERT( ((LPVOID)pNode) == ((LPVOID)_GetButtonPtr(nBtnSrc)->GetCmdNode(false)) );
  2156. if( pSite->GetPopupDropTargetNode() == pNode )
  2157. {
  2158. pSite->DropTargetPopupCancel();
  2159. ASSERT( pSite->GetPopupDropTargetNode() != pNode );
  2160. }
  2161. RemoveButton( nBtnSrc );
  2162. pSite->DraggedNodeSet( NULL );
  2163. CExtCmdItem * pCmdItem =
  2164. g_CmdManager->CmdGetPtr(
  2165. g_CmdManager->ProfileNameFromWnd(m_hWnd),
  2166. pNode->GetCmdID( false )
  2167. );
  2168. ASSERT( pCmdItem != NULL );
  2169. ASSERT_VALID( pNode->GetParentNode() );
  2170. int nOwnNodeIndex = pNode->GetOwnIndex();
  2171. int nSiblingCount = pNode->GetParentNode()->GetNodeCount();
  2172. bool bRemovePrevSeparator =
  2173. (pNode->GetFlags() & __ECTN_GROUP_START)
  2174. ? true : false;
  2175. bool bRemoveNextSeparator = false;
  2176. if( bRemovePrevSeparator
  2177. && nOwnNodeIndex < (nSiblingCount-1)
  2178. )
  2179. {
  2180. ASSERT( nOwnNodeIndex > 0 );
  2181. ASSERT( nBtnSrc > 0 );
  2182. if( (pNode->GetParentNode()->ElementAt(nOwnNodeIndex+1)
  2183. ->GetFlags()&__ECTN_GROUP_START) == 0
  2184. )
  2185. {
  2186. pNode->GetParentNode()->ElementAt(nOwnNodeIndex+1)
  2187. ->ModifyFlags( __ECTN_GROUP_START );
  2188. bRemovePrevSeparator = false;
  2189. }
  2190. }
  2191. if( nOwnNodeIndex == 0
  2192. && nSiblingCount > 1
  2193. && (pNode->GetParentNode()->ElementAt(1)
  2194. ->GetFlags()&__ECTN_GROUP_START) != 0
  2195. )
  2196. {
  2197. pNode->GetParentNode()->ElementAt(1)->ModifyFlags( 0, __ECTN_GROUP_START );
  2198. bRemoveNextSeparator = true;
  2199. }
  2200. pNode->RemoveSelf( pCmdItem );
  2201. bool bRevertRTL = OnQueryRevertRTL();
  2202. if( bRevertRTL )
  2203. {
  2204. if( bRemovePrevSeparator )
  2205. {
  2206. ASSERT( _GetButtonPtr(nBtnSrc)->IsSeparator() );
  2207. RemoveButton( nBtnSrc );
  2208. }
  2209. if( bRemoveNextSeparator )
  2210. {
  2211. ASSERT( _GetButtonPtr(nBtnSrc-1)->IsSeparator() );
  2212. RemoveButton( nBtnSrc-1 );
  2213. }
  2214. } // if( bRevertRTL )
  2215. else
  2216. {
  2217. if( bRemoveNextSeparator )
  2218. {
  2219. ASSERT( _GetButtonPtr(nBtnSrc)->IsSeparator() );
  2220. RemoveButton( nBtnSrc );
  2221. }
  2222. if( bRemovePrevSeparator )
  2223. {
  2224. ASSERT( _GetButtonPtr(nBtnSrc-1)->IsSeparator() );
  2225. RemoveButton( nBtnSrc-1 );
  2226. }
  2227. } // else from if( bRevertRTL )
  2228. if( m_pDockBar != NULL )
  2229. {
  2230. CFrameWnd * pRecalcFrame = GetParentFrame();
  2231. ASSERT_VALID( pRecalcFrame );
  2232. pRecalcFrame->RecalcLayout();
  2233. if( IsFloating() )
  2234. pRecalcFrame->SendMessage( WM_NCPAINT );
  2235. Invalidate();
  2236. } // if( m_pDockBar != NULL )
  2237. } // if remove source button
  2238. }  // if( de == DROPEFFECT_NONE || de == DROPEFFECT_MOVE )
  2239. else
  2240. {
  2241. _InvalidateButton( nBtnSrc );
  2242. if( m_pDockBar != NULL )
  2243. {
  2244. CFrameWnd * pRecalcFrame = GetParentFrame();
  2245. ASSERT_VALID( pRecalcFrame );
  2246. pRecalcFrame->RecalcLayout();
  2247. if( IsFloating() )
  2248. pRecalcFrame->SendMessage( WM_NCPAINT );
  2249. } // if( m_pDockBar != NULL )
  2250. }
  2251. } // if( (!bCanceled) && (!m_bHelperSeparatorAction) )
  2252. else
  2253. _InvalidateButton( nBtnSrc );
  2254. m_pDragSourceTBB = NULL;
  2255. m_pDragTargetTBB = NULL;
  2256. m_nDragTargetShift = 0;
  2257. m_bHelperSeparatorAction = false;
  2258. UpdateWindow();
  2259. }
  2260. INT CExtToolControlBar::OnCustomizeCalcCmdNodePos(
  2261. INT nButtonPos,
  2262. bool * p_bReinitGroupStart // = NULL
  2263. )
  2264. {
  2265. ASSERT_VALID( this );
  2266. if( p_bReinitGroupStart != NULL )
  2267. (*p_bReinitGroupStart) = false;
  2268. if( ! m_bCustomizationAllowed )
  2269. return 0;
  2270. INT nButtonsCount = _GetButtonsCountImpl();
  2271. ASSERT( nButtonPos <= nButtonsCount );
  2272. if( nButtonsCount == 0 )
  2273. return 0;
  2274. INT nCmdPos = 0;
  2275. bool bRevertRTL = OnQueryRevertRTL();
  2276. if( bRevertRTL )
  2277. {
  2278. for( INT nBtnIdx = nButtonsCount-1; nBtnIdx > nButtonPos; nBtnIdx--  )
  2279. {
  2280. CExtBarButton * pTBB =
  2281. _GetButtonPtr( nBtnIdx );
  2282. ASSERT_VALID( pTBB );
  2283. if( pTBB->GetCmdNode() == NULL )
  2284. continue;
  2285. ASSERT( ! pTBB->IsSeparator() );
  2286. ASSERT_VALID( pTBB->GetCmdNode() );
  2287. nCmdPos ++;
  2288. } // for( INT nBtnIdx = nButtonsCount-1; nBtnIdx > nButtonPos; nBtnIdx--  )
  2289. ASSERT( nCmdPos <= nButtonsCount );
  2290. if( p_bReinitGroupStart != NULL && nButtonPos < nButtonsCount-1 )
  2291. {
  2292. CExtBarButton * pTBB = _GetButtonPtr( nButtonPos + 1 );
  2293. ASSERT_VALID( pTBB );
  2294. if( pTBB->IsSeparator() )
  2295. (*p_bReinitGroupStart) = true;
  2296. } // if( p_bReinitGroupStart != NULL && nButtonPos > 0 )
  2297. } // if( bRevertRTL )
  2298. else
  2299. {
  2300. for( INT nBtnIdx = 0; nBtnIdx < nButtonPos; nBtnIdx++  )
  2301. {
  2302. CExtBarButton * pTBB =
  2303. _GetButtonPtr( nBtnIdx );
  2304. ASSERT_VALID( pTBB );
  2305. if( pTBB->GetCmdNode() == NULL )
  2306. continue;
  2307. ASSERT( ! pTBB->IsSeparator() );
  2308. ASSERT_VALID( pTBB->GetCmdNode() );
  2309. nCmdPos ++;
  2310. } // for( INT nBtnIdx = 0; nBtnIdx < nButtonPos; nBtnIdx++  )
  2311. ASSERT( nCmdPos <= nButtonsCount );
  2312. if( p_bReinitGroupStart != NULL && nButtonPos > 0 )
  2313. {
  2314. CExtBarButton * pTBB = _GetButtonPtr( nButtonPos - 1 );
  2315. ASSERT_VALID( pTBB );
  2316. if( pTBB->IsSeparator() )
  2317. (*p_bReinitGroupStart) = true;
  2318. } // if( p_bReinitGroupStart != NULL && nButtonPos > 0 )
  2319. } // else from if( bRevertRTL )
  2320. return nCmdPos;
  2321. }
  2322. bool CExtToolControlBar::OnCustomizeCanShowHideButtons()
  2323. {
  2324. ASSERT_VALID( this );
  2325. if( ( ! m_bCustomizationAllowed )
  2326. || m_bPaletteMode
  2327. || IsKindOf(RUNTIME_CLASS(CExtPanelControlBar))
  2328. || IsKindOf(RUNTIME_CLASS(CExtMenuControlBar))
  2329. || (! IsVisible() )
  2330. )
  2331. return false;
  2332. INT nButtonsCount = _GetButtonsCountImpl();
  2333. if( nButtonsCount == 0 )
  2334. return false;
  2335. for( INT nBtnIdx = 0; nBtnIdx < nButtonsCount; nBtnIdx++  )
  2336. {
  2337. CExtBarButton * pTBB = _GetButtonPtr( nBtnIdx );
  2338. ASSERT_VALID( pTBB );
  2339. if( pTBB->IsSeparator()
  2340. || pTBB->IsKindOf(RUNTIME_CLASS(CExtBarContentExpandButton))
  2341. || pTBB->IsKindOf(RUNTIME_CLASS(CExtBarMdiDocButton))
  2342. || pTBB->IsKindOf(RUNTIME_CLASS(CExtBarMdiRightButton))
  2343. || pTBB->GetCmdNode() == NULL
  2344. )
  2345. continue;
  2346. ASSERT_VALID( pTBB->GetCmdNode() );
  2347. if( (pTBB->GetCmdNode()->GetFlags()&__ECTN_TBB_CANNOT_HIDE) != 0 )
  2348. continue;
  2349. return true;
  2350. } // for( INT nBtnIdx = 0; nBtnIdx < nButtonPos; nBtnIdx++  )
  2351. return false;
  2352. }
  2353. void CExtToolControlBar::OnCustomizeInitShowHideButtonMenu(
  2354. CExtPopupMenuWnd * pFolder
  2355. )
  2356. {
  2357. ASSERT_VALID( this );
  2358. ASSERT( OnCustomizeCanShowHideButtons() );
  2359. ASSERT_VALID( pFolder );
  2360. ASSERT( IsVisible() );
  2361. if( ! m_bCustomizationAllowed )
  2362. return;
  2363. INT nButtonsCount = _GetButtonsCountImpl();
  2364. ASSERT( nButtonsCount > 0 );
  2365. INT nInsertPos = 0;
  2366. for( INT nBtnIdx = 0; nBtnIdx < nButtonsCount; nBtnIdx++  )
  2367. {
  2368. CExtBarButton * pTBB = _GetButtonPtr( nBtnIdx );
  2369. ASSERT_VALID( pTBB );
  2370. if( pTBB->IsSeparator()
  2371. || pTBB->IsKindOf(RUNTIME_CLASS(CExtBarContentExpandButton))
  2372. || pTBB->IsKindOf(RUNTIME_CLASS(CExtBarMdiDocButton))
  2373. || pTBB->IsKindOf(RUNTIME_CLASS(CExtBarMdiRightButton))
  2374. || pTBB->GetCmdNode() == NULL
  2375. )
  2376. continue;
  2377. ASSERT_VALID( pTBB->GetCmdNode() );
  2378. if( (pTBB->GetCmdNode()->GetFlags()&__ECTN_TBB_CANNOT_HIDE) != 0 )
  2379. continue;
  2380. VERIFY(
  2381. pFolder->ItemInsert(
  2382. pTBB->GetCmdID(false),
  2383. nInsertPos
  2384. )
  2385. );
  2386. CExtPopupMenuWnd::MENUITEMDATA & mi =
  2387. pFolder->ItemGetInfo( nInsertPos );
  2388. mi.SetForceEnabled();
  2389. mi.SetExtraMark(
  2390. (CExtPopupMenuWnd::MENUITEMDATA::pCbItemClick)
  2391. stat_CbXtraMarkState
  2392. );
  2393. mi.LParamSet( (LPARAM)pTBB );
  2394. pFolder->ItemSetDisplayed( nInsertPos, true );
  2395. mi.SetExtraChecked(
  2396. ( (pTBB->GetStyle() & TBBS_HIDDEN) != 0 )
  2397. ? false : true
  2398. );
  2399. nInsertPos++;
  2400. } // for( INT nBtnIdx = 0; nBtnIdx < nButtonPos; nBtnIdx++  )
  2401. }
  2402. bool CExtToolControlBar::stat_CbXtraMarkState(
  2403. CExtPopupMenuWnd * pPopup,
  2404. LPVOID pItemData
  2405. )
  2406. {
  2407. ASSERT_VALID( pPopup );
  2408. pPopup;
  2409. ASSERT( pItemData != NULL );
  2410. CExtPopupMenuWnd::MENUITEMDATA & mi =
  2411. *((CExtPopupMenuWnd::MENUITEMDATA *)pItemData);
  2412. ASSERT( mi.IsExtraMark() );
  2413. mi.SetExtraChecked( !mi.IsExtraChecked() );
  2414. CExtBarButton * pTBB = (CExtBarButton*)mi.LParamGet();
  2415. ASSERT_VALID( pTBB );
  2416. CExtToolControlBar * pBar = pTBB->GetBar();
  2417. ASSERT_VALID( pBar );
  2418. #ifdef _DEBUG
  2419. INT nButtonIndex = pBar->_GetIndexOf( pTBB );
  2420. ASSERT( nButtonIndex >= 0 );
  2421. #endif // _DEBUG
  2422. bool bShow = mi.IsExtraChecked();
  2423. pTBB->ModifyStyle(
  2424. bShow ? 0 : TBBS_HIDDEN,
  2425. bShow ? TBBS_HIDDEN : 0
  2426. );
  2427. pTBB->Show( bShow );
  2428. pBar->_RecalcPositionsImpl();
  2429. pBar->Invalidate();
  2430. pBar->UpdateWindow();
  2431. if( pBar->m_bPresubclassDialogMode )
  2432. return true; // not important
  2433. if( pBar->m_pDockSite != NULL
  2434. && pBar->IsFloating()
  2435. )
  2436. {
  2437. CFrameWnd * pFrame = pBar->GetParentFrame();
  2438. ASSERT_VALID( pFrame );
  2439. ASSERT_KINDOF( CMiniDockFrameWnd, pFrame );
  2440. }
  2441. pBar->SetTimer( 0x444, 1, NULL );
  2442. return true; // not important
  2443. }
  2444. bool CExtToolControlBar::stat_CbCmdDeliver(
  2445. CExtPopupMenuWnd * pPopup,
  2446. LPVOID pItemData
  2447. )
  2448. {
  2449. ASSERT_VALID( pPopup );
  2450. pPopup;
  2451. ASSERT( pItemData != NULL );
  2452. CExtPopupMenuWnd::MENUITEMDATA & mi =
  2453. *((CExtPopupMenuWnd::MENUITEMDATA *)pItemData);
  2454. if( mi.IsExtraMark() )
  2455. return false;
  2456. if( mi.IsSeparator() )
  2457. return false;
  2458. if( mi.IsPopup() )
  2459. return false;
  2460. if( mi.GetCmdID() != ID_EXT_RESET_TOOLBAR )
  2461. return false;
  2462. ASSERT(
  2463. pPopup->GetSafeHwnd() != NULL
  2464. && ::IsWindow( pPopup->GetSafeHwnd() )
  2465. );
  2466. CExtCustomizeSite * pSite =
  2467. CExtCustomizeSite::GetCustomizeSite(
  2468. pPopup->GetSafeHwnd()
  2469. );
  2470. if( pSite == NULL )
  2471. return false;
  2472. CExtToolControlBar * pBar = (CExtToolControlBar *)
  2473. mi.LParamGet();
  2474. ASSERT_VALID( pBar );
  2475. ASSERT_KINDOF( CExtToolControlBar, pBar );
  2476. ASSERT( pSite->BarIsRegistered( pBar ) );
  2477. pSite->BarDefCmdTargetSet( pBar );
  2478. return false;
  2479. }
  2480. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  2481. CExtToolControlBar::FtLayoutQuery::FtLayoutQuery()
  2482. : m_pToolBar( NULL )
  2483. , m_pMiniFrame( NULL )
  2484. , m_hWndFor( NULL )
  2485. {
  2486. }
  2487. CExtToolControlBar::FtLayoutQuery::~FtLayoutQuery()
  2488. {
  2489. Empty();
  2490. }
  2491. void CExtToolControlBar::FtLayoutQuery::Empty()
  2492. {
  2493. m_arrRowRects.RemoveAll();
  2494. m_arrRowBtnIndices.RemoveAll();
  2495. m_pToolBar = NULL;
  2496. m_pMiniFrame = NULL;
  2497. m_hWndFor = NULL;
  2498. }
  2499. bool CExtToolControlBar::FtLayoutQuery::Query( HWND hWndFor )
  2500. {
  2501. Empty();
  2502. if( hWndFor == NULL || (! ::IsWindow( hWndFor ) ) )
  2503. return false;
  2504. m_hWndFor = hWndFor;
  2505. HWND hWnd = hWndFor;
  2506. for( ; hWnd != NULL; hWnd = ::GetParent(hWnd) )
  2507. {
  2508. if( m_pMiniFrame != NULL && hWndFor == m_pMiniFrame->m_hWnd )
  2509. break;
  2510. __EXT_MFC_LONG_PTR dwStyle = ::__EXT_MFC_GetClassLong( hWnd, GWL_STYLE );
  2511. if( (dwStyle&WS_CHILD) == 0 && m_pMiniFrame == NULL )
  2512. break;
  2513. CWnd * pWnd = CWnd::FromHandlePermanent( hWnd );
  2514. if( pWnd == NULL )
  2515. continue;
  2516. if( m_pMiniFrame == NULL )
  2517. {
  2518. CFrameWnd * pFrame = pWnd->GetParentFrame();
  2519. if( pFrame == NULL )
  2520. break;
  2521. m_pMiniFrame =
  2522. DYNAMIC_DOWNCAST(
  2523. CExtMiniDockFrameWnd,
  2524. pFrame
  2525. );
  2526. if( m_pMiniFrame == NULL )
  2527. break;
  2528. } // if( m_pMiniFrame == NULL )
  2529. m_pToolBar =
  2530. DYNAMIC_DOWNCAST(
  2531. CExtToolControlBar,
  2532. pWnd
  2533. );
  2534. if( m_pToolBar == NULL )
  2535. continue;
  2536. if( m_pToolBar->m_hWnd == m_hWndFor )
  2537. break; // toolbar performs self-painting
  2538. return m_pToolBar->_DoFtLayoutQuery( this, NULL );
  2539. } // for( ; hWnd != NULL && ::IsWindow(hWnd); hWnd = ::GetParent(hWnd) )
  2540. return false;
  2541. }
  2542. void CExtToolControlBar::FtLayoutQuery::ReMapRectsToTargetClient()
  2543. {
  2544. if( m_hWndFor == NULL
  2545. || (! ::IsWindow( m_hWndFor ) )
  2546. || (m_pToolBar->GetSafeHwnd() == NULL )
  2547. )
  2548. return;
  2549. ASSERT_VALID( m_pToolBar );
  2550. INT nIdx, nCount = (INT)m_arrRowRects.GetSize();
  2551. ASSERT( m_arrRowBtnIndices.GetSize() == nCount );
  2552. for( nIdx = 0; nIdx < nCount; nIdx++ )
  2553. {
  2554. CRect & rcRowBk = m_arrRowRects.ElementAt( nIdx );
  2555. m_pToolBar->ClientToScreen( &rcRowBk );
  2556. LPPOINT pPoints = (LPPOINT)&rcRowBk;
  2557. ::ScreenToClient( m_hWndFor, pPoints );
  2558. pPoints++;
  2559. ::ScreenToClient( m_hWndFor, pPoints );
  2560. } // for( nIdx = 0; nIdx < nCount; nIdx++ )
  2561. }
  2562. void CExtToolControlBar::FtLayoutQuery::ReMapRectsToTargetWindow()
  2563. {
  2564. if( m_hWndFor == NULL
  2565. || (! ::IsWindow( m_hWndFor ) )
  2566. || (m_pToolBar->GetSafeHwnd() == NULL )
  2567. )
  2568. return;
  2569. ASSERT_VALID( m_pToolBar );
  2570. INT nIdx, nCount = (INT)m_arrRowRects.GetSize();
  2571. ASSERT( m_arrRowBtnIndices.GetSize() == nCount );
  2572. CRect rcTargetWnd;
  2573. ::GetWindowRect( m_hWndFor, &rcTargetWnd );
  2574. for( nIdx = 0; nIdx < nCount; nIdx++ )
  2575. {
  2576. CRect & rcRowBk = m_arrRowRects.ElementAt( nIdx );
  2577. m_pToolBar->ClientToScreen( &rcRowBk );
  2578. rcRowBk.OffsetRect( -rcTargetWnd.left, -rcTargetWnd.top );
  2579. } // for( nIdx = 0; nIdx < nCount; nIdx++ )
  2580. }
  2581. void CExtToolControlBar::FtLayoutQuery::DrawRects( CDC & dc )
  2582. {
  2583. if( m_hWndFor == NULL
  2584. || (! ::IsWindow( m_hWndFor ) )
  2585. || (m_pToolBar->GetSafeHwnd() == NULL )
  2586. )
  2587. return;
  2588. ASSERT_VALID( m_pToolBar );
  2589. ASSERT_VALID( (&dc) );
  2590. ASSERT( dc.GetSafeHdc() != NULL );
  2591. INT nIdx, nCount = (INT)m_arrRowRects.GetSize();
  2592. ASSERT( m_arrRowBtnIndices.GetSize() == nCount );
  2593. for( nIdx = 0; nIdx < nCount; nIdx++ )
  2594. {
  2595. CRect & rcRowBk = m_arrRowRects.ElementAt( nIdx );
  2596. INT nBtnIdx = m_arrRowBtnIndices[ nIdx ];
  2597. if( dc.RectVisible( &rcRowBk ) )
  2598. m_pToolBar->PmBridge_GetPM()->PaintFloatToolbarRowBk(
  2599. dc,
  2600. m_pToolBar,
  2601. nBtnIdx,
  2602. rcRowBk
  2603. );
  2604. } // for( nIdx = 0; nIdx < nCount; nIdx++ )
  2605. }
  2606. /////////////////////////////////////////////////////////////////////////////
  2607. // CExtPanelControlBar
  2608. IMPLEMENT_DYNCREATE(CExtPanelControlBar, CExtToolControlBar)
  2609. CExtPanelControlBar::CExtPanelControlBar()
  2610. : m_rcMargins( 5, 5, 5, 5 )
  2611. {
  2612. m_bPaletteMode = true;
  2613. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  2614. m_bVisibleInCustomizeListBox = false;
  2615. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  2616. }
  2617. CExtPanelControlBar::~CExtPanelControlBar()
  2618. {
  2619. }
  2620. BEGIN_MESSAGE_MAP(CExtPanelControlBar, CExtToolControlBar)
  2621. //{{AFX_MSG_MAP(CExtPanelControlBar)
  2622. ON_WM_SIZE()
  2623. ON_WM_PAINT()
  2624. ON_WM_WINDOWPOSCHANGED()
  2625. ON_WM_SETFOCUS()
  2626. //}}AFX_MSG_MAP
  2627. END_MESSAGE_MAP()
  2628. /////////////////////////////////////////////////////////////////////////////
  2629. // CExtToolControlBar message handlers
  2630. CSize CExtPanelControlBar::CalcDynamicLayout(int nLength, DWORD dwMode)
  2631. {
  2632. ASSERT_VALID( this );
  2633. if( (nLength == -1)
  2634. && !(dwMode & (LM_MRUWIDTH|LM_COMMIT))
  2635. &&  (dwMode & (LM_HORZDOCK|LM_VERTDOCK))
  2636. )
  2637. return
  2638. CalcFixedLayout(
  2639. dwMode & LM_STRETCH,
  2640. dwMode & LM_HORZDOCK
  2641. );
  2642. ASSERT(
  2643. (dwMode&(LM_HORZ|LM_HORZDOCK))
  2644. ||
  2645. (!(dwMode&LM_HORZDOCK))
  2646. );
  2647. CSize sizeCalcLayout = _CalcLayout( dwMode, nLength );
  2648. return sizeCalcLayout;
  2649. }
  2650. CSize CExtPanelControlBar::CalcFixedLayout(
  2651. BOOL bStretch,
  2652. BOOL bHorz
  2653. )
  2654. {
  2655. ASSERT_VALID( this );
  2656. DWORD dwMode = bStretch ? LM_STRETCH : 0;
  2657. dwMode |= bHorz ? LM_HORZ : 0;
  2658. ASSERT(
  2659. (dwMode&(LM_HORZ|LM_HORZDOCK))
  2660. ||
  2661. (!(dwMode&LM_HORZDOCK))
  2662. );
  2663. CSize sizeCalcLayout = _CalcLayout( dwMode );
  2664. _RecalcNcArea();
  2665. return sizeCalcLayout;
  2666. }
  2667. CSize CExtPanelControlBar::_CalcLayout(
  2668. DWORD dwMode,
  2669. int nLength // = -1
  2670. )
  2671. {
  2672. ASSERT_VALID( this );
  2673. dwMode;
  2674. nLength;
  2675. CSize sizeCalcLayout( 0, 0 );
  2676. if( !IsFloating() )
  2677. {
  2678. sizeCalcLayout += CSize( 2, 2 );
  2679. bool bGripperAtTop = false;
  2680. if( IsBarWithGripper( &bGripperAtTop ) )
  2681. {
  2682. CSize sizeGrip = _RectGripGet().Size();
  2683. if( bGripperAtTop )
  2684. sizeCalcLayout.cy += sizeGrip.cy;
  2685. else
  2686. sizeCalcLayout.cx += sizeGrip.cx;
  2687. }
  2688. }
  2689. if( IsDockedHorizontally() )
  2690. {
  2691. sizeCalcLayout += _QueryFixedBarNewSize( __FSQ_DOCKED_H );
  2692. SetInitDesiredSizeHorizontal( sizeCalcLayout );
  2693. m_nMinHW = sizeCalcLayout.cx;
  2694. }
  2695. else if( IsDockedVertically() )
  2696. {
  2697. sizeCalcLayout += _QueryFixedBarNewSize( __FSQ_DOCKED_V );
  2698. SetInitDesiredSizeVertical( sizeCalcLayout );
  2699. m_nMinVH = sizeCalcLayout.cy;
  2700. }
  2701. else if( IsFloating() )
  2702. {
  2703. sizeCalcLayout += _QueryFixedBarNewSize( __FSQ_FLOATING );
  2704. SetInitDesiredSizeFloating( sizeCalcLayout );
  2705. }
  2706. else
  2707. {
  2708. sizeCalcLayout += CSize( 20, 20 );
  2709. }
  2710. if( m_pDockSite == NULL )
  2711. { // specific for dialog mode
  2712. if( IsDockedHorizontally() )
  2713. sizeCalcLayout.cy += 4;
  2714. else
  2715. sizeCalcLayout.cx += 4;
  2716. } // specific for dialog mode
  2717. return sizeCalcLayout;
  2718. }
  2719. INT CExtPanelControlBar::_CalcDesiredMinHW() const
  2720. {
  2721. ASSERT_VALID( this );
  2722. CSize sizeCalcLayout = _QueryFixedBarNewSize( __FSQ_DOCKED_H );
  2723. return sizeCalcLayout.cx;
  2724. }
  2725. CSize CExtPanelControlBar::_CalcDesiredMinOuterSize( BOOL bHorz ) const
  2726. {
  2727. ASSERT_VALID( this );
  2728. CSize sizeCalcLayout =
  2729. _QueryFixedBarNewSize(
  2730. bHorz ? __FSQ_DOCKED_H : __FSQ_DOCKED_V
  2731. );
  2732. return sizeCalcLayout;
  2733. }
  2734. INT CExtPanelControlBar::_CalcDesiredMinVH() const
  2735. {
  2736. ASSERT_VALID( this );
  2737. CSize sizeCalcLayout = _QueryFixedBarNewSize( __FSQ_DOCKED_V );
  2738. return sizeCalcLayout.cy;
  2739. }
  2740. CSize CExtPanelControlBar::_CalcDesiredMinFloatedSize() const
  2741. {
  2742. ASSERT_VALID( this );
  2743. CSize sizeCalcLayout = _QueryFixedBarNewSize( __FSQ_FLOATING );
  2744. return sizeCalcLayout;
  2745. }
  2746. CSize CExtPanelControlBar::_QueryFixedBarNewSize(
  2747. CExtPanelControlBar::e_fixed_bar_size_query_t eWhichSizeNeedToKnow
  2748. ) const
  2749. {
  2750. CSize sizeResult( OnQueryFixedBarNewSize(eWhichSizeNeedToKnow) );
  2751. // if( eWhichSizeNeedToKnow != __FSQ_FLOATING )
  2752. // {
  2753. // CRect rcClient, rcWnd;
  2754. // GetClientRect( &rcClient );
  2755. // GetWindowRect( &rcWnd );
  2756. // CSize sizeClient( rcClient.Size() );
  2757. // CSize sizeWnd( rcWnd.Size() );
  2758. // sizeResult += sizeWnd;
  2759. // sizeResult -= sizeClient;
  2760. // }
  2761. return sizeResult;
  2762. }
  2763. CSize CExtPanelControlBar::OnQueryFixedBarNewSize(
  2764. CExtPanelControlBar::e_fixed_bar_size_query_t eWhichSizeNeedToKnow
  2765. ) const
  2766. {
  2767. ASSERT_VALID( this );
  2768. eWhichSizeNeedToKnow;
  2769. //CSize sizeResult;
  2770. // switch( eWhichSizeNeedToKnow )
  2771. // {
  2772. // case __FSQ_DOCKED_H:
  2773. // sizeResult = CSize( 20, 20 );
  2774. // break;
  2775. // case __FSQ_DOCKED_V:
  2776. // sizeResult = CSize( 20, 20 );
  2777. // break;
  2778. // default:
  2779. // ASSERT( eWhichSizeNeedToKnow == __FSQ_FLOATING );
  2780. // sizeResult = CSize( 20, 20 );
  2781. // break;
  2782. // }
  2783. // return sizeResult;
  2784. CSize sizeResult( _GetChildSize() );
  2785. CRect rcMargins = OnQueryFixedBarChildWindowMargins();
  2786. sizeResult.cx += rcMargins.left + rcMargins.right;
  2787. sizeResult.cy += rcMargins.top + rcMargins.bottom;
  2788. return sizeResult;
  2789. }
  2790. CRect CExtPanelControlBar::OnQueryFixedBarChildWindowMargins() const
  2791. {
  2792. ASSERT_VALID( this );
  2793. return m_rcMargins;
  2794. }
  2795. CSize CExtPanelControlBar::_GetChildSize() const
  2796. {
  2797. ASSERT_VALID( this );
  2798. if( GetSafeHwnd() == NULL
  2799. || (! ::IsWindow(GetSafeHwnd()))
  2800. )
  2801. return CSize( 0, 0 );
  2802. CWnd * pWndChild = GetWindow( GW_CHILD );
  2803. if( pWndChild->GetSafeHwnd() == NULL
  2804. || (! ::IsWindow(pWndChild->GetSafeHwnd()))
  2805. )
  2806. return CSize( 0, 0 );
  2807. CRect rcChild;
  2808. pWndChild->GetWindowRect( &rcChild );
  2809. CSize sizeChild( rcChild.Size() );
  2810. return sizeChild;
  2811. }
  2812. void CExtPanelControlBar::_RepositionChild(
  2813. bool bRedraw // = true
  2814. )
  2815. {
  2816. ASSERT_VALID( this );
  2817. CWnd * pWndChild = GetWindow( GW_CHILD );
  2818. if( pWndChild == NULL )
  2819. return;
  2820. CRect rcMargins = OnQueryFixedBarChildWindowMargins();
  2821. CRect rcRequired, rcReal;
  2822. GetClientRect( &rcRequired );
  2823. rcRequired.DeflateRect( &rcMargins );
  2824. pWndChild->GetWindowRect( &rcReal );
  2825. ScreenToClient( &rcReal );
  2826. // if( rcReal == rcRequired )
  2827. if( rcReal.TopLeft() == rcRequired.TopLeft() )
  2828. return;
  2829. rcReal.OffsetRect( - rcReal.TopLeft() + rcRequired.TopLeft() );
  2830. pWndChild->MoveWindow(
  2831. &rcReal, // &rcRequired,
  2832. bRedraw ? TRUE : FALSE
  2833. );
  2834. }
  2835. void CExtPanelControlBar::OnSize(UINT nType, int cx, int cy) 
  2836. {
  2837. ASSERT_VALID( this );
  2838. CExtToolControlBar::OnSize(nType, cx, cy);
  2839. _RepositionChild();
  2840. }
  2841. void CExtPanelControlBar::OnWindowPosChanged(WINDOWPOS FAR* lpwndpos) 
  2842. {
  2843. ASSERT_VALID( this );
  2844. CExtToolControlBar::OnWindowPosChanged(lpwndpos);
  2845. _RepositionChild();
  2846. }
  2847. void CExtPanelControlBar::OnSetFocus(CWnd* pOldWnd) 
  2848. {
  2849. ASSERT_VALID( this );
  2850. CExtToolControlBar::OnSetFocus(pOldWnd);
  2851. CWnd * pWndChild = GetWindow( GW_CHILD );
  2852. if( pWndChild == NULL )
  2853. return;
  2854. pWndChild->SetFocus();
  2855. }
  2856. void CExtPanelControlBar::OnPaint() 
  2857. {
  2858. ASSERT_VALID( this );
  2859. CPaintDC dcPaint( this );
  2860. CExtMemoryDC dc( &dcPaint );
  2861. CRect rcClient;
  2862. GetClientRect( &rcClient );
  2863. CWnd * pWndChild = GetWindow( GW_CHILD );
  2864. if( pWndChild == NULL )
  2865. { // if no child - fill entire client area
  2866. if( (! PmBridge_GetPM()->GetCb2DbTransparentMode(this) )
  2867. || (! PmBridge_GetPM()->PaintDockerBkgnd( true, dc, this ) )
  2868. )
  2869. dc.FillSolidRect(
  2870. &rcClient,
  2871. PmBridge_GetPM()->GetColor(
  2872. CExtPaintManager::CLR_3DFACE_OUT, this
  2873. )
  2874. );
  2875. //
  2876. // DEBUG BLOCK BEGIN: - fill gradient & draw text
  2877. //
  2878. // rcClient.DeflateRect( 2, 2 );
  2879. // COLORREF clrFc = PmBridge_GetPM()->GetColor( COLOR_3DFACE, this );
  2880. // COLORREF clrDk = PmBridge_GetPM()->GetColor( COLOR_3DDKSHADOW, this );
  2881. // COLORREF clrHi = PmBridge_GetPM()->GetColor( COLOR_3DHILIGHT, this );
  2882. // COLORREF clrLo = PmBridge_GetPM()->GetColor( COLOR_3DSHADOW, this );
  2883. // dc.Draw3dRect( &rcClient, clrFc, clrDk );
  2884. // rcClient.DeflateRect( 1, 1 );
  2885. // dc.Draw3dRect( &rcClient, clrHi, clrLo );
  2886. // rcClient.DeflateRect( 1, 1 );
  2887. // dc.Draw3dRect( &rcClient, clrLo, clrHi );
  2888. // rcClient.DeflateRect( 1, 1 );
  2889. // dc.Draw3dRect( &rcClient, clrDk, clrFc );
  2890. // rcClient.DeflateRect( 2, 2 );
  2891. // UINT nDockBarID = GetSafeDockBarDlgCtrlID();
  2892. // CExtPaintManager::stat_PaintGradientRect(
  2893. // dc,
  2894. // rcClient,
  2895. // RGB( 128, 128, 255 ),
  2896. // RGB( 0, 0, 0 ),
  2897. // (nDockBarID==AFX_IDW_DOCKBAR_LEFT || nDockBarID==AFX_IDW_DOCKBAR_RIGHT)
  2898. // ? true : false
  2899. // );
  2900. //
  2901. // CRect rcDrawText( rcClient );
  2902. // rcDrawText.DeflateRect( 5, 5 );
  2903. // CRect rcDrawTextShadow( rcDrawText );
  2904. // CExtSafeString sText;
  2905. // CFont * pFont = &PmBridge_GetPM()->m_FontNormal;
  2906. // switch( nDockBarID )
  2907. // {
  2908. // case AFX_IDW_DOCKBAR_TOP:
  2909. // sText = _T("Docked at top");
  2910. // rcDrawTextShadow.OffsetRect( 1, 1 );
  2911. // break;
  2912. // case AFX_IDW_DOCKBAR_BOTTOM:
  2913. // sText = _T("Docked at bottom");
  2914. // rcDrawTextShadow.OffsetRect( 1, 1 );
  2915. // break;
  2916. // case AFX_IDW_DOCKBAR_LEFT:
  2917. // sText = _T("Docked at left");
  2918. // pFont = &PmBridge_GetPM()->m_FontNormalVert;
  2919. // rcDrawText.OffsetRect( rcDrawText.Width(), 0 );
  2920. // rcDrawText.OffsetRect( -1, -2 );
  2921. // rcDrawTextShadow = rcDrawText;
  2922. // rcDrawTextShadow.OffsetRect( 1, 1 );
  2923. // break;
  2924. // case AFX_IDW_DOCKBAR_RIGHT:
  2925. // sText = _T("Docked at right");
  2926. // pFont = &PmBridge_GetPM()->m_FontNormalVert;
  2927. // rcDrawText.OffsetRect( rcDrawText.Width(), 0 );
  2928. // rcDrawText.OffsetRect( -1, -2 );
  2929. // rcDrawTextShadow = rcDrawText;
  2930. // rcDrawTextShadow.OffsetRect( 1, 1 );
  2931. // break;
  2932. // default:
  2933. // ASSERT( nDockBarID == AFX_IDW_DOCKBAR_FLOAT );
  2934. // sText = _T("Floating");
  2935. // rcDrawTextShadow.OffsetRect( 1, 1 );
  2936. // break;
  2937. // } // switch( nDockBarID )
  2938. // CFont * pOldFont = dc.SelectObject( pFont );
  2939. // int nOldBkMode = dc.SetBkMode( TRANSPARENT );
  2940. // COLORREF clrOldTextColor = dc.SetTextColor( RGB(128,128,128) );
  2941. // dc.DrawText( sText, &rcDrawTextShadow, DT_SINGLELINE|DT_NOCLIP );
  2942. // dc.SetTextColor( RGB(255,255,255) );
  2943. // dc.DrawText( sText, &rcDrawText, DT_SINGLELINE|DT_NOCLIP );
  2944. // dc.SetTextColor( clrOldTextColor );
  2945. // dc.SetBkMode( nOldBkMode );
  2946. // dc.SelectObject( pOldFont );
  2947. //
  2948. // DEBUG BLOCK END: - fill gradient & draw text
  2949. //
  2950. } // if no child - fill entire client area
  2951. else
  2952. { // if has child - fill margins around child
  2953. // CRect rcMargins = OnQueryFixedBarChildWindowMargins();
  2954. // CRect rcExclude( rcClient );
  2955. // rcExclude.DeflateRect( &rcMargins );
  2956. // dc.ExcludeClipRect( &rcExclude );
  2957. CExtPaintManager::stat_ExcludeChildAreas(
  2958. dc,
  2959. m_hWnd
  2960. );
  2961. if( (! PmBridge_GetPM()->GetCb2DbTransparentMode(this) )
  2962. || (! PmBridge_GetPM()->PaintDockerBkgnd( true, dc, this ) )
  2963. )
  2964. dc.FillSolidRect(
  2965. &rcClient,
  2966. PmBridge_GetPM()->GetColor(
  2967. CExtPaintManager::CLR_3DFACE_OUT, this
  2968. )
  2969. );
  2970. dc.SelectClipRgn( NULL );
  2971. } // if has child - fill margins around child
  2972. }
  2973. bool CExtPanelControlBar::_AffixmentIsAlignedHW() const
  2974. {
  2975. ASSERT_VALID( this );
  2976. return false;
  2977. }
  2978. LRESULT CExtPanelControlBar::DoHelpHitTest( CPoint ptHelpHitTest )
  2979. {
  2980. ASSERT_VALID( this );
  2981. return CExtControlBar::DoHelpHitTest( ptHelpHitTest );
  2982. }
  2983. bool CExtPanelControlBar::OnQueryMultiRowLayout() const
  2984. {
  2985. ASSERT_VALID( this );
  2986. return false;
  2987. }
  2988. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  2989. CExtCustomizeSite * CExtPanelControlBar::GetCustomizeSite()
  2990. {
  2991. ASSERT_VALID( this );
  2992. return NULL;
  2993. }
  2994. bool CExtPanelControlBar::OnCustomizeRegisterBar(
  2995. CExtCustomizeSite * pCustomizeSite
  2996. )
  2997. {
  2998. ASSERT_VALID( this );
  2999. ASSERT( pCustomizeSite != NULL );
  3000. pCustomizeSite;
  3001. return false;
  3002. }
  3003. void CExtPanelControlBar::OnCustomizeModeEnter()
  3004. {
  3005. ASSERT_VALID( this );
  3006. }
  3007. void CExtPanelControlBar::OnCustomizeModeLeave()
  3008. {
  3009. ASSERT_VALID( this );
  3010. }
  3011. void CExtPanelControlBar::OnCustomizeListBoxUpdate( CExtCustomizeToolbarsListBox * pWndList )
  3012. {
  3013. ASSERT_VALID( this );
  3014. ASSERT_VALID( pWndList );
  3015. CExtToolControlBar::OnCustomizeListBoxUpdate( pWndList );
  3016. }
  3017. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  3018. #ifndef __EXT_MFC_NO_UNDO_REDO_POPUP
  3019. /////////////////////////////////////////////////////////////////////////////
  3020. // CExtBarUndoRedoButton
  3021. IMPLEMENT_DYNCREATE(CExtBarUndoRedoButton, CExtBarButton)
  3022. CExtBarUndoRedoButton::CExtBarUndoRedoButton(
  3023. CExtToolControlBar * pBar, // = NULL
  3024. UINT nCmdID, // = ID_SEPARATOR
  3025. UINT nStyle // = 0
  3026. )
  3027. : CExtBarButton( pBar, nCmdID, nStyle )
  3028. , m_lParamCookie( 0L )
  3029. , m_dwListBoxStyles( WS_CHILD|WS_VISIBLE|WS_VSCROLL|LBS_MULTIPLESEL|LBS_NOINTEGRALHEIGHT|LBS_HASSTRINGS|LBS_OWNERDRAWVARIABLE )
  3030. , m_nDropDownWidth( -1 ) // (-1) - auto calc
  3031. , m_nDropDownHeightMax( 250 )
  3032. {
  3033. }
  3034. CExtBarUndoRedoButton::~CExtBarUndoRedoButton()
  3035. {
  3036. }
  3037. LPARAM CExtBarUndoRedoButton::LParamCookieGet() const
  3038. {
  3039. ASSERT_VALID( this );
  3040. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  3041. CExtCustomizeCmdTreeNode * pNode = ((CExtBarButton*)this)->GetCmdNode(false);
  3042. if( pNode != NULL )
  3043. {
  3044. ASSERT_VALID( pNode );
  3045. return pNode->GetLParam();
  3046. } // if( pNode != NULL )
  3047. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  3048. return m_lParamCookie;
  3049. }
  3050. void CExtBarUndoRedoButton::LParamCookieSet(
  3051. LPARAM lParamCookie // = 0L
  3052. )
  3053. {
  3054. ASSERT_VALID( this );
  3055. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  3056. CExtCustomizeCmdTreeNode * pNode = ((CExtBarButton*)this)->GetCmdNode(false);
  3057. if( pNode != NULL )
  3058. {
  3059. ASSERT_VALID( pNode );
  3060. pNode->SetLParam( lParamCookie );
  3061. } // if( pNode != NULL )
  3062. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  3063. m_lParamCookie = lParamCookie;
  3064. }
  3065. bool CExtBarUndoRedoButton::CanBePressedInDisabledState()
  3066. {
  3067. return false;
  3068. }
  3069. bool CExtBarUndoRedoButton::IsAbleToTrackMenu(
  3070. bool bCustomizeMode // = false
  3071. ) const
  3072. {
  3073. ASSERT_VALID( this );
  3074. if( bCustomizeMode )
  3075. return false;
  3076. return true;
  3077. }
  3078. LRESULT CExtBarUndoRedoButton::OnHelpHitTest(
  3079. CPoint point
  3080. )
  3081. {
  3082. ASSERT_VALID( this );
  3083. // return
  3084. // CExtBarButton::OnHelpHitTest( point );
  3085. point;
  3086. return GetCmdID();
  3087. }
  3088. CExtPopupMenuWnd * CExtBarUndoRedoButton::OnCreateDropPopup(
  3089. bool bContentExpand // true - inserting to content expand menu, false - tracking dropped popup
  3090. )
  3091. {
  3092. ASSERT_VALID( this );
  3093. ASSERT_VALID( GetBar() );
  3094. bContentExpand;
  3095. CWnd * pWndCmdTarget = GetCmdTargetWnd();
  3096. ASSERT_VALID( pWndCmdTarget );
  3097. CExtPopupUndoRedoMenuWnd * pPopup =
  3098. STATIC_DOWNCAST(
  3099. CExtPopupUndoRedoMenuWnd,
  3100. CExtPopupMenuWnd::InstantiatePopupMenu(
  3101. GetBar()->GetSafeHwnd(),
  3102. RUNTIME_CLASS(CExtPopupUndoRedoMenuWnd),
  3103. this
  3104. )
  3105. );
  3106. pPopup->m_lParamCookie = LParamCookieGet();
  3107. pPopup->m_pCbListBoxSelection = 
  3108. (CExtPopupInplaceListBox::pCbListBoxSelection)
  3109. stat_CbListBoxSelection;
  3110. pPopup->m_pSelectionCookie = (LPVOID)this;
  3111. pPopup->m_pCbInitListBoxContent =
  3112. (CExtPopupInplaceListBox::pCbInitListBoxContent)
  3113. stat_CbInitListBoxContent;
  3114. pPopup->m_pInitListBoxCookie = (LPVOID)this;
  3115. pPopup->m_pCbListBoxItemDraw =
  3116. (CExtPopupInplaceListBox::pCbListBoxItemDraw)
  3117. stat_CbListBoxItemDraw;
  3118. pPopup->m_pCbListBoxItemMeasure =
  3119. (CExtPopupInplaceListBox::pCbListBoxItemMeasure)
  3120. stat_CbListBoxItemMeasure;
  3121. pPopup->m_pListBoxItemCookie = (LPVOID)this;
  3122. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  3123. CExtCustomizeSite * pSite = m_pBar->GetCustomizeSite();
  3124. if( pSite == NULL
  3125. || (! pSite->OnPopupListBoxGetStyles(
  3126. this,
  3127. GetCmdNode( false ),
  3128. pPopup->m_dwListBoxStyles
  3129. )
  3130. )
  3131. )
  3132. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  3133. pPopup->m_dwListBoxStyles = m_dwListBoxStyles;
  3134. pPopup->m_pCbFormatCaption =
  3135. (CExtPopupUndoRedoMenuWnd::pCbFormatCaption)
  3136. stat_CbFormatCaption;
  3137. pPopup->m_pFormatCaptionCookie = (LPVOID)this;
  3138. CSize sizeMeasure = OnPopupListBoxMeasureTrackSize();
  3139. pPopup->m_sizeChildControl = sizeMeasure;
  3140. VERIFY( 
  3141. pPopup->CreatePopupMenu( pWndCmdTarget->GetSafeHwnd() ) 
  3142. );
  3143. return pPopup;
  3144. }
  3145. UINT CExtBarUndoRedoButton::OnTrackPopup(
  3146. CPoint point,
  3147. bool bSelectAny,
  3148. bool bForceNoAnimation
  3149. )
  3150. {
  3151. ASSERT_VALID( this );
  3152. CExtToolControlBar * pBar = GetBar();
  3153. ASSERT_VALID( pBar );
  3154. ASSERT( CtrlGet() == NULL );
  3155. ASSERT( IsAbleToTrackMenu() );
  3156. bool bDockSiteCustomizeMode =
  3157. pBar->_IsDockSiteCustomizeMode();
  3158. if( bDockSiteCustomizeMode )
  3159. return UINT(-1L);
  3160. if( !IsEnabled() )
  3161. return UINT(-1L);
  3162. bool bPrevTBMT = CExtToolControlBar::g_bMenuTracking;
  3163. if( CExtToolControlBar::g_bMenuTracking
  3164. //&& CExtPopupMenuWnd::IsMenuTracking()
  3165. && pBar->_GetIndexOf(this) ==
  3166. pBar->GetMenuTrackingButton()
  3167. )
  3168. return UINT(-1L);
  3169. CExtToolControlBar::_CloseTrackingMenus();
  3170. if( pBar->IsFloating() )
  3171. {
  3172. pBar->ActivateTopParent();
  3173. CFrameWnd * pFrame =
  3174. pBar->GetDockingFrame();
  3175. ASSERT_VALID( pFrame );
  3176. pFrame->BringWindowToTop();
  3177. }
  3178. CExtPopupMenuWnd * pPopup = OnCreateDropPopup( false );
  3179. if( pPopup == NULL )
  3180. {
  3181. ASSERT( FALSE );
  3182. return UINT(-1L);
  3183. }
  3184. ASSERT_VALID( pPopup );
  3185. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  3186. pPopup->_CmdNodeSet( GetCmdNode(false) );
  3187. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  3188. CExtToolControlBar::g_bMenuTracking = bPrevTBMT;
  3189. CRect rcBtn = Rect();
  3190. pBar->ClientToScreen( &rcBtn );
  3191. pBar->ClientToScreen( &point );
  3192. DWORD dwTrackFlags =
  3193. OnGetTrackPopupFlags()
  3194. | TPMX_OWNERDRAW_FIXED
  3195. ;
  3196. #if (!defined __EXT_MFC_NO_RIBBON_BAR)
  3197. if( pBar->IsKindOf( RUNTIME_CLASS( CExtRibbonPage ) ) )
  3198. dwTrackFlags |= TPMX_COMBINE_NONE|TPMX_RIBBON_MODE|TPMX_NO_HIDE_RARELY;
  3199. else
  3200. dwTrackFlags |= TPMX_COMBINE_DEFAULT;
  3201. #else // (!defined __EXT_MFC_NO_RIBBON_BAR)
  3202. dwTrackFlags |= TPMX_COMBINE_DEFAULT;
  3203. #endif // (!defined __EXT_MFC_NO_RIBBON_BAR)
  3204. if( bSelectAny )
  3205. dwTrackFlags |= TPMX_SELECT_ANY;
  3206. if( CExtToolControlBar::g_bMenuTrackingExpanded )
  3207. dwTrackFlags |= TPMX_NO_HIDE_RARELY;
  3208. if( bForceNoAnimation )
  3209. dwTrackFlags |= TPMX_FORCE_NO_ANIMATION;
  3210. pBar->_SwitchMenuTrackingIndex(
  3211. pBar->_GetIndexOf( this )
  3212. );
  3213. UINT nResultCmdID = (UINT)-1L;
  3214. pPopup->m_hWndNotifyMenuClosed = pBar->GetSafeHwnd();
  3215. if( GetSeparatedDropDown() )
  3216. m_bDropDownHT = true;
  3217. g_pTrackingMenuTBB = this;
  3218. if( ! pPopup->TrackPopupMenu(
  3219. dwTrackFlags,
  3220. point.x,
  3221. point.y,
  3222. &rcBtn,
  3223. GetBar(),
  3224. CExtToolControlBar::_CbPaintCombinedContent,
  3225. &nResultCmdID,
  3226. true
  3227. )
  3228. )
  3229. {
  3230. g_pTrackingMenuTBB = NULL;
  3231. //delete pPopup;
  3232. CExtToolControlBar::_CloseTrackingMenus();
  3233. return UINT(-1L);
  3234. }
  3235. CExtToolControlBar::g_bMenuTracking = true;
  3236. pBar->_SwitchMenuTrackingIndex(
  3237. pBar->_GetIndexOf( this )
  3238. );
  3239. return UINT(-1L);
  3240. }
  3241. BOOL CExtBarUndoRedoButton::PutToPopupMenu(
  3242. CExtPopupMenuWnd * pPopup
  3243. )
  3244. {
  3245. ASSERT_VALID( this );
  3246. CExtToolControlBar * pBar = GetBar();
  3247. ASSERT_VALID( pBar );
  3248. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  3249. if( !pPopup->ItemInsert( GetCmdID(true) ) )
  3250. {
  3251. ASSERT( FALSE );
  3252. return FALSE;
  3253. }
  3254. CExtPopupMenuWnd::MENUITEMDATA & mi = 
  3255. pPopup->ItemGetInfo( pPopup->ItemGetCount() - 1 );
  3256. ASSERT_VALID( pBar->m_pDockSite );
  3257. VERIFY(
  3258. mi.UpdateFromCmdTree(
  3259. pBar->m_pDockSite->m_hWnd,
  3260. GetCmdNode(false),
  3261. GetCmdNode(false)->GetOwnIndex(),
  3262. pPopup
  3263. )
  3264. );
  3265. mi.SetCmdNode( GetCmdNode() );
  3266. mi.SetChildCombine();
  3267. #else
  3268. CExtPopupMenuWnd * pSub = OnCreateDropPopup( true );
  3269. if( pSub == NULL )
  3270. {
  3271. ASSERT( FALSE );
  3272. return FALSE;
  3273. }
  3274. ASSERT_VALID( pSub );
  3275. CExtCmdItem * pCmdItem =
  3276. g_CmdManager->CmdGetPtr(
  3277. g_CmdManager->ProfileNameFromWnd( m_pBar->GetSafeHwnd() ),
  3278. GetCmdID( false )
  3279. );
  3280. ASSERT( pCmdItem != NULL );
  3281. CExtSafeString sText = pCmdItem->m_sMenuText;
  3282. if( sText.IsEmpty() )
  3283. sText = pCmdItem->m_sToolbarText;
  3284. // added in 2.55
  3285. CExtCmdIcon _emptyIcon, * pCmdIcon = GetIconPtr();
  3286. // commented in 2.55
  3287. // CExtCmdIcon _emptyIcon, * pCmdIcon =
  3288. //  g_CmdManager->CmdGetIconPtr(
  3289. //  g_CmdManager->ProfileNameFromWnd( m_pBar->GetSafeHwnd() ),
  3290. //  GetCmdID( false )
  3291. //  );
  3292. CExtCmdIcon & _cmdIcon =
  3293. ( pCmdIcon != NULL )
  3294. ? (*pCmdIcon)
  3295. : _emptyIcon
  3296. ;
  3297. if( ! pPopup->ItemInsertSpecPopup( pSub, -1, sText, _cmdIcon ) )
  3298. {
  3299. ASSERT( FALSE );
  3300. return FALSE;
  3301. }
  3302. CExtPopupMenuWnd::MENUITEMDATA & mi =
  3303. pPopup->ItemGetInfo( pPopup->ItemGetCount() - 1 );
  3304. mi.Enable( 
  3305. IsEnabled() ? true : false 
  3306. );
  3307. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  3308. return TRUE;
  3309. }
  3310. bool CExtBarUndoRedoButton::stat_CbFormatCaption(
  3311. CExtSafeString & strCaption,
  3312. CExtPopupUndoRedoMenuWnd * pUndoRedoPopupMenuWnd,
  3313. CExtBarUndoRedoButton * pUndoRedoTBB
  3314. )
  3315. {
  3316. ASSERT_VALID( pUndoRedoTBB );
  3317. ASSERT_KINDOF( CExtBarUndoRedoButton, pUndoRedoTBB );
  3318. return
  3319. pUndoRedoTBB->OnPopupUndoRedoFormatCaption(
  3320. strCaption,
  3321. pUndoRedoPopupMenuWnd
  3322. );
  3323. }
  3324. bool CExtBarUndoRedoButton::stat_CbInitListBoxContent(
  3325. CExtPopupInplaceListBox & wndListBox,
  3326. CExtBarUndoRedoButton * pUndoRedoTBB
  3327. )
  3328. {
  3329. ASSERT_VALID( pUndoRedoTBB );
  3330. ASSERT_KINDOF( CExtBarUndoRedoButton, pUndoRedoTBB );
  3331. return
  3332. pUndoRedoTBB->OnPopupListBoxInitContent(
  3333. wndListBox
  3334. );
  3335. }
  3336. bool CExtBarUndoRedoButton::stat_CbListBoxSelection(
  3337. CExtPopupInplaceListBox & wndListBox,
  3338. CExtBarUndoRedoButton * pUndoRedoTBB,
  3339. int eSAT // CExtPopupInplaceListBox::e_sel_action_t
  3340. )
  3341. {
  3342. ASSERT_VALID( pUndoRedoTBB );
  3343. ASSERT_KINDOF( CExtBarUndoRedoButton, pUndoRedoTBB );
  3344. switch( ((CExtPopupInplaceListBox::e_sel_action_t)eSAT) )
  3345. {
  3346. case CExtPopupInplaceListBox::__SAT_SELCHANGE:
  3347. return
  3348. pUndoRedoTBB->OnPopupListBoxSelChange(
  3349. wndListBox
  3350. );
  3351. case CExtPopupInplaceListBox::__SAT_SELENDOK:
  3352. return
  3353. pUndoRedoTBB->OnPopupListBoxSelEndOK(
  3354. wndListBox
  3355. );
  3356. case CExtPopupInplaceListBox::__SAT_SELENDCANCEL:
  3357. return
  3358. pUndoRedoTBB->OnPopupListBoxSelEndCancel(
  3359. wndListBox
  3360. );
  3361. case CExtPopupInplaceListBox::__SAT_CLOSE:
  3362. return
  3363. pUndoRedoTBB->OnPopupListBoxClose(
  3364. wndListBox
  3365. );
  3366. #ifdef _DEBUG
  3367. default:
  3368. ASSERT( FALSE );
  3369. break;
  3370. #endif // _DEBUG
  3371. } // switch( ((CExtPopupInplaceListBox::e_sel_action_t)eSAT) )
  3372. return false;
  3373. }
  3374. bool CExtBarUndoRedoButton::stat_CbListBoxItemDraw(
  3375. CExtPopupInplaceListBox & wndListBox,
  3376. CExtBarUndoRedoButton * pUndoRedoTBB,
  3377. LPDRAWITEMSTRUCT pDIS
  3378. )
  3379. {
  3380. ASSERT_VALID( pUndoRedoTBB );
  3381. ASSERT_KINDOF( CExtBarUndoRedoButton, pUndoRedoTBB );
  3382. ASSERT( pDIS != NULL && pDIS->hDC != NULL );
  3383. return
  3384. pUndoRedoTBB->OnPopupListBoxItemDraw(
  3385. wndListBox,
  3386. pDIS
  3387. );
  3388. }
  3389. bool CExtBarUndoRedoButton::stat_CbListBoxItemMeasure(
  3390. CExtPopupInplaceListBox & wndListBox,
  3391. CExtBarUndoRedoButton * pUndoRedoTBB,
  3392. LPMEASUREITEMSTRUCT pMIS
  3393. )
  3394. {
  3395. ASSERT_VALID( pUndoRedoTBB );
  3396. ASSERT_KINDOF( CExtBarUndoRedoButton, pUndoRedoTBB );
  3397. ASSERT( pMIS != NULL );
  3398. return
  3399. pUndoRedoTBB->OnPopupListBoxItemMeasure(
  3400. wndListBox,
  3401. pMIS
  3402. );
  3403. }
  3404. CSize CExtBarUndoRedoButton::OnPopupListBoxMeasureTrackSize() const
  3405. {
  3406. ASSERT_VALID( this );
  3407. const CExtToolControlBar * pBar = GetBar();
  3408. ASSERT_VALID( pBar );
  3409. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  3410. CExtCustomizeSite * pSite = m_pBar->GetCustomizeSite();
  3411. if( pSite != NULL )
  3412. {
  3413. CSize _size =
  3414. pSite->OnPopupListBoxMeasureTrackSize(
  3415. this,
  3416. ((CExtBarButton*)this)->GetCmdNode( false )
  3417. );
  3418. if( _size.cx > 0 && _size.cy > 0 )
  3419. return _size;
  3420. } // if( pSite != NULL )
  3421. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  3422. int nCount = (int)m_arrLbItems.GetSize();
  3423. if( (m_dwListBoxStyles & LBS_HASSTRINGS) == 0
  3424. || nCount == 0
  3425. )
  3426. {
  3427. CSize sizeCalc( 150, 100 );
  3428. if( m_nDropDownWidth > 0 )
  3429. sizeCalc.cx = m_nDropDownWidth;
  3430. if( m_nDropDownHeightMax > 0 )
  3431. sizeCalc.cy = m_nDropDownHeightMax;
  3432. // if( m_bComboField )
  3433. // sizeCalc.cx +=
  3434. // //::GetSystemMetrics( SM_CXSIZEFRAME )
  3435. // + GetBar()->PmBridge_GetPM()->GetDropDownButtonWidth( this )
  3436. // ;
  3437. return sizeCalc;
  3438. }
  3439. CWindowDC dc( NULL );
  3440. CSize sizeCalc( 0, 0 );
  3441. for( int i = 0; i < nCount; i++ )
  3442. {
  3443. const CExtSafeString & sItem =
  3444. ((CExtSafeStringArray*)&m_arrLbItems)->ElementAt( i );
  3445. CExtSafeString sMeasure(
  3446. sItem.IsEmpty() ? _T("AaWwPpQqRrWwZz") : sItem
  3447. );
  3448. CRect rcMeasure =
  3449. CExtPaintManager::stat_CalcTextDimension(
  3450. dc,
  3451. pBar->PmBridge_GetPM()->m_FontNormal,
  3452. sMeasure
  3453. );
  3454. if( m_dwListBoxStyles & (LBS_OWNERDRAWVARIABLE|LBS_OWNERDRAWFIXED) )
  3455. rcMeasure.InflateRect( OnPopupListBoxCalcItemExtraSizes() );
  3456. CSize sizeMeasure = rcMeasure.Size();
  3457. if( m_nDropDownWidth == -1 )
  3458. sizeCalc.cx = max( sizeCalc.cx, sizeMeasure.cx );
  3459. sizeCalc.cy += sizeMeasure.cy;
  3460. } // for( int i = 0; i < nCount; i++ )
  3461. if( m_nDropDownWidth == -1 )
  3462. sizeCalc.cx += ::GetSystemMetrics( SM_CXSIZEFRAME )*2;
  3463. sizeCalc.cy += 2;
  3464. ASSERT( m_nDropDownHeightMax > 0 );
  3465. INT nDD = GetBar()->PmBridge_GetPM()->GetDropDownButtonWidth( (CObject*)this );
  3466. if( sizeCalc.cy > m_nDropDownHeightMax )
  3467. {
  3468. sizeCalc.cy = m_nDropDownHeightMax;
  3469. if( m_nDropDownWidth == -1 )
  3470. sizeCalc.cx +=
  3471. ::GetSystemMetrics( SM_CXSIZEFRAME )
  3472. + nDD
  3473. ;
  3474. } // if( sizeCalc.cy > m_nDropDownHeightMax )
  3475. else if( m_dwListBoxStyles & LBS_DISABLENOSCROLL )
  3476. {
  3477. if( m_nDropDownWidth == -1 )
  3478. sizeCalc.cx +=
  3479. ::GetSystemMetrics( SM_CXSIZEFRAME )
  3480. + nDD
  3481. ;
  3482. } // else if( m_dwListBoxStyles & LBS_DISABLENOSCROLL )
  3483. if( m_nDropDownWidth > 0 )
  3484. sizeCalc.cx = m_nDropDownWidth;
  3485. return sizeCalc;
  3486. }
  3487. bool CExtBarUndoRedoButton::OnPopupListBoxInitContent(
  3488. CExtPopupInplaceListBox & wndListBox
  3489. )
  3490. {
  3491. ASSERT_VALID( this );
  3492. ASSERT_VALID( m_pBar );
  3493. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  3494. CExtCustomizeSite * pSite = m_pBar->GetCustomizeSite();
  3495. if( pSite != NULL
  3496. && pSite->OnPopupListBoxInitContent(
  3497. this,
  3498. GetCmdNode( false ),
  3499. wndListBox
  3500. )
  3501. )
  3502. return true;
  3503. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  3504. if( (wndListBox.GetStyle() & LBS_HASSTRINGS) != 0 )
  3505. {
  3506. int nCount = (int)m_arrLbItems.GetSize();
  3507. for( int i = 0; i < nCount; i++ )
  3508. {
  3509. const CExtSafeString & sItem = m_arrLbItems.ElementAt( i );
  3510. wndListBox.AddString(
  3511. sItem.IsEmpty() ? _T("") : sItem
  3512. );
  3513. } // for( int i = 0; i < nCount; i++ )
  3514. if( nCount > 0 )
  3515. wndListBox.SetSel( 0, TRUE );
  3516. } // if( (wndListBox.GetStyle() & LBS_HASSTRINGS) != 0 )
  3517. return true;
  3518. }
  3519. bool CExtBarUndoRedoButton::OnPopupListBoxSelChange(
  3520. CExtPopupInplaceListBox & wndListBox
  3521. )
  3522. {
  3523. ASSERT_VALID( this );
  3524. ASSERT_VALID( m_pBar );
  3525. wndListBox;
  3526. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  3527. CExtCustomizeSite * pSite = m_pBar->GetCustomizeSite();
  3528. if( pSite != NULL
  3529. && pSite->OnPopupListBoxSelChange(
  3530. this,
  3531. GetCmdNode( false ),
  3532. wndListBox
  3533. )
  3534. )
  3535. return true;
  3536. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  3537. return false;
  3538. }
  3539. bool CExtBarUndoRedoButton::OnPopupListBoxSelEndOK(
  3540. CExtPopupInplaceListBox & wndListBox
  3541. )
  3542. {
  3543. ASSERT_VALID( this );
  3544. ASSERT_VALID( m_pBar );
  3545. wndListBox;
  3546. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  3547. HWND hWndThis = wndListBox.m_hWnd;
  3548. ASSERT( hWndThis != NULL && ::IsWindow(hWndThis) );
  3549. CExtCustomizeSite * pSite = m_pBar->GetCustomizeSite();
  3550. if( pSite != NULL
  3551. && pSite->OnPopupListBoxSelEndOK(
  3552. this,
  3553. GetCmdNode( false ),
  3554. wndListBox
  3555. )
  3556. )
  3557. return true;
  3558. if( ! ::IsWindow( hWndThis ) )
  3559. return false;
  3560. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  3561. return false;
  3562. }
  3563. bool CExtBarUndoRedoButton::OnPopupListBoxSelEndCancel(
  3564. CExtPopupInplaceListBox & wndListBox
  3565. )
  3566. {
  3567. ASSERT_VALID( this );
  3568. ASSERT_VALID( m_pBar );
  3569. wndListBox;
  3570. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  3571. CExtCustomizeSite * pSite = m_pBar->GetCustomizeSite();
  3572. if( pSite != NULL
  3573. && pSite->OnPopupListBoxSelEndCancel(
  3574. this,
  3575. GetCmdNode( false ),
  3576. wndListBox
  3577. )
  3578. )
  3579. return true;
  3580. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  3581. return false;
  3582. }
  3583. bool CExtBarUndoRedoButton::OnPopupListBoxClose(
  3584. CExtPopupInplaceListBox & wndListBox
  3585. )
  3586. {
  3587. ASSERT_VALID( this );
  3588. ASSERT_VALID( m_pBar );
  3589. wndListBox;
  3590. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  3591. CExtCustomizeSite * pSite = m_pBar->GetCustomizeSite();
  3592. if( pSite != NULL
  3593. && pSite->OnPopupListBoxClose(
  3594. this,
  3595. GetCmdNode( false ),
  3596. wndListBox
  3597. )
  3598. )
  3599. return true;
  3600. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  3601. return false;
  3602. }
  3603. bool CExtBarUndoRedoButton::OnPopupListBoxItemDraw(
  3604. CExtPopupInplaceListBox & wndListBox,
  3605. LPDRAWITEMSTRUCT pDIS
  3606. )
  3607. {
  3608. ASSERT_VALID( this );
  3609. ASSERT( pDIS != NULL && pDIS->hDC != NULL );
  3610. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  3611. CExtCustomizeSite * pSite = m_pBar->GetCustomizeSite();
  3612. if( pSite != NULL
  3613. && pSite->OnPopupListBoxItemDraw(
  3614. this,
  3615. GetCmdNode( false ),
  3616. wndListBox,
  3617. pDIS
  3618. )
  3619. )
  3620. return true;
  3621. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  3622. if( (wndListBox.GetStyle() & LBS_HASSTRINGS) == 0 )
  3623. return false;
  3624. if( ((INT)pDIS->itemID) < 0 || ((INT)pDIS->itemID) >= wndListBox.GetCount() )
  3625. return true;
  3626. CDC dc;
  3627. dc.Attach( pDIS->hDC );
  3628. CExtToolControlBar * pBar = GetBar();
  3629. if( pDIS->itemAction & (ODA_DRAWENTIRE | ODA_SELECT) )
  3630. {
  3631. CRect rcErase( pDIS->rcItem );
  3632. if( INT(pDIS->itemID) == (wndListBox.GetCount()-1) )
  3633. {
  3634. CRect rcClient;
  3635. wndListBox.GetClientRect( &rcClient );
  3636. if( rcErase.bottom < rcClient.bottom )
  3637. rcErase.bottom = rcClient.bottom;
  3638. }
  3639. dc.FillSolidRect( 
  3640. rcErase, 
  3641. pBar->PmBridge_GetPM()->GetColor( COLOR_WINDOW )
  3642. );
  3643. dc.FillSolidRect(
  3644. &pDIS->rcItem,
  3645. pBar->PmBridge_GetPM()->GetColor(
  3646. ( pDIS->itemState & ODS_SELECTED )
  3647. ? COLOR_HIGHLIGHT
  3648. : COLOR_WINDOW
  3649. ,
  3650. this
  3651. )
  3652. );
  3653. }
  3654. if( INT(pDIS->itemID) >= 0 )
  3655. {
  3656. CString sText;
  3657. wndListBox.GetText( (INT)pDIS->itemID, sText );
  3658. if( !sText.IsEmpty() )
  3659. {
  3660. COLORREF clrTextOld =
  3661. dc.SetTextColor(
  3662. pBar->PmBridge_GetPM()->GetColor(
  3663. ( pDIS->itemState & ODS_SELECTED )
  3664. ? COLOR_HIGHLIGHTTEXT
  3665. : COLOR_BTNTEXT
  3666. ,
  3667. this
  3668. )
  3669. );
  3670. int nOldBkMode = dc.SetBkMode( TRANSPARENT );
  3671. CRect rcText( pDIS->rcItem );
  3672. rcText.DeflateRect( OnPopupListBoxCalcItemExtraSizes() );
  3673. dc.DrawText(
  3674. sText,
  3675. &rcText,
  3676. DT_SINGLELINE|DT_LEFT|DT_VCENTER|DT_NOPREFIX
  3677. );
  3678. dc.SetBkMode( nOldBkMode );
  3679. dc.SetTextColor( clrTextOld );
  3680. } // if( !sText.IsEmpty() )
  3681. } // if( INT(pDIS->itemID) >= 0 )
  3682. dc.Detach();
  3683. return true;
  3684. }
  3685. bool CExtBarUndoRedoButton::OnPopupListBoxItemMeasure(
  3686. CExtPopupInplaceListBox & wndListBox,
  3687. LPMEASUREITEMSTRUCT pMIS
  3688. )
  3689. {
  3690. ASSERT_VALID( this );
  3691. ASSERT( pMIS != NULL );
  3692. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  3693. CExtCustomizeSite * pSite = m_pBar->GetCustomizeSite();
  3694. if( pSite != NULL
  3695. && pSite->OnPopupListBoxItemMeasure(
  3696. this,
  3697. GetCmdNode( false ),
  3698. wndListBox,
  3699. pMIS
  3700. )
  3701. )
  3702. return true;
  3703. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  3704. if( (wndListBox.GetStyle() & LBS_HASSTRINGS) == 0 )
  3705. return false;
  3706. pMIS->itemWidth = pMIS->itemHeight = 10;
  3707. if( ((INT)pMIS->itemID) < 0 || ((INT)pMIS->itemID) >= wndListBox.GetCount() )
  3708. return true;
  3709. CExtSafeString sMeasure;
  3710. wndListBox.GetText( (INT)pMIS->itemID, *((CString*)&sMeasure) );
  3711. if( sMeasure.IsEmpty() )
  3712. return true;
  3713. CExtToolControlBar * pBar = GetBar();
  3714. CWindowDC dc( NULL );
  3715. CRect rcMeasure =
  3716. CExtPaintManager::stat_CalcTextDimension(
  3717. dc,
  3718. pBar->PmBridge_GetPM()->m_FontNormal,
  3719. sMeasure
  3720. );
  3721. rcMeasure.InflateRect( OnPopupListBoxCalcItemExtraSizes() );
  3722. pMIS->itemWidth = rcMeasure.Width();
  3723. pMIS->itemHeight = rcMeasure.Height();
  3724. return true;
  3725. }
  3726. CSize CExtBarUndoRedoButton::OnPopupListBoxCalcItemExtraSizes() const
  3727. {
  3728. ASSERT_VALID( this );
  3729. ASSERT_VALID( m_pBar );
  3730. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  3731. CExtCustomizeSite * pSite = m_pBar->GetCustomizeSite();
  3732. if( pSite != NULL )
  3733. {
  3734. CSize _size =
  3735. pSite->OnPopupListBoxCalcItemExtraSizes(
  3736. this,
  3737. ((CExtBarButton*)this)->GetCmdNode( false )
  3738. );
  3739. if( _size.cx > 0 && _size.cy > 0 ) 
  3740. return _size;
  3741. } // if( pSite != NULL )
  3742. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  3743. return CSize( 2, 1 );
  3744. }
  3745. bool CExtBarUndoRedoButton::OnPopupUndoRedoFormatCaption(
  3746. CExtSafeString & strCaption,
  3747. CExtPopupUndoRedoMenuWnd * pUndoRedoPopupMenuWnd
  3748. )
  3749. {
  3750. ASSERT_VALID( this );
  3751. ASSERT_VALID( m_pBar );
  3752. strCaption;
  3753. pUndoRedoPopupMenuWnd;
  3754. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  3755. CExtCustomizeSite * pSite = m_pBar->GetCustomizeSite();
  3756. if( pSite != NULL
  3757. && pSite->OnPopupUndoRedoFormatCaption(
  3758. this,
  3759. GetCmdNode( false ),
  3760. pUndoRedoPopupMenuWnd, 
  3761. strCaption
  3762. )
  3763. )
  3764. return true;
  3765. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  3766. return false;
  3767. }
  3768. #endif // __EXT_MFC_NO_UNDO_REDO_POPUP