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

界面编程

开发平台:

Visual C++

  1. // This is part of the Professional User Interface Suite library.
  2. // Copyright (C) 2001-2009 FOSS Software, Inc.
  3. // All rights reserved.
  4. //
  5. // http://www.prof-uis.com
  6. // mailto:support@prof-uis.com
  7. //
  8. // This source code can be used, modified and redistributed
  9. // under the terms of the license agreement that is included
  10. // in the Professional User Interface Suite package.
  11. //
  12. // Warranties and Disclaimers:
  13. // THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND
  14. // INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY,
  15. // FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
  16. // IN NO EVENT WILL FOSS SOFTWARE INC. BE LIABLE FOR ANY DIRECT,
  17. // INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES,
  18. // INCLUDING DAMAGES FOR LOSS OF PROFITS, LOSS OR INACCURACY OF DATA,
  19. // INCURRED BY ANY PERSON FROM SUCH PERSON'S USAGE OF THIS SOFTWARE
  20. // EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  21. // extcontrolbar.cpp : implementation file
  22. //
  23. #include "stdafx.h"
  24. //
  25. // Many thanks to Paul DiLascia & Cristi Posea, their works
  26. // were a powerful incentive to learn more about pretty
  27. // complicated MFC docking windows mechanism
  28. //
  29. #if (!defined __EXT_CONTROLBAR_H)
  30. #include <ExtControlBar.h>
  31. #endif
  32. #if (!defined __EXTDOCKBAR_H)
  33. #include "ExtDockBar.h"
  34. #endif
  35. #if (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  36. #if (!defined __EXT_CONTROLBAR_TABBED_FEATURES_H)
  37. #include "ExtControlBarTabbedFeatures.h"
  38. #endif // __EXT_CONTROLBAR_TABBED_FEATURES_H
  39. #endif // (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  40. #if (!defined __EXTMINIDOCKFRAMEWND_H)
  41. #include "ExtMiniDockFrameWnd.h"
  42. #endif
  43. #if (!defined __ExtCmdManager_H)
  44. #include <ExtCmdManager.h>
  45. #endif
  46. #if (!defined __EXT_MEMORY_DC_H)
  47. #include <../Src/ExtMemoryDC.h>
  48. #endif
  49. #if (!defined __EXT_NC_FRAME_H)
  50. #include <ExtNcFrame.h>
  51. #endif
  52. #if (!defined __EXT_LOCALIZATION_H)
  53. #include <../Src/ExtLocalization.h>
  54. #endif
  55. #if (!defined __EXT_MFC_NO_DYNAMIC_BAR_SITE)
  56. #if (!defined __EXT_MFC_NO_TAB_PAGECONTAINER_CTRL)
  57. #if (! defined __EXT_TAB_PAGE_CONTAINER_WND_H)
  58. #include <ExtTabPageContainerWnd.h>
  59. #endif // (!defined __EXT_TAB_PAGE_CONTAINER_WND_H)
  60. #endif // (!defined __EXT_MFC_NO_TAB_PAGECONTAINER_CTRL)
  61. #if (!defined __EXT_NC_FRAME_H)
  62. #include <ExtNcFrame.h>
  63. #endif
  64. #endif // (!defined __EXT_MFC_NO_DYNAMIC_BAR_SITE)
  65. #include <Resources/Resource.h>
  66. #if (!defined __AFXPRIV_H__)
  67. #include <AfxPriv.h>
  68. #endif 
  69. #if _MFC_VER < 0x700
  70. #include <../src/AfxImpl.h>
  71. #else
  72. #ifndef __AFXSTATE_H__
  73. #include <../src/mfc/afxstat_.h>
  74. #endif
  75. #include <../src/mfc/AfxImpl.h>
  76. #endif
  77. #ifndef __AFXOLE_H__
  78. #include <AfxOle.h>
  79. #endif 
  80. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  81. #if (!defined __EXTCUSTOMIZE_H)
  82. #include <ExtCustomize.h>
  83. #endif
  84. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  85. #ifdef _DEBUG
  86. #define new DEBUG_NEW
  87. #undef THIS_FILE
  88. static char THIS_FILE[] = __FILE__;
  89. #endif
  90. /////////////////////////////////////////////////////////////////////////////
  91. // CExtAnimationParameters
  92. CExtAnimationParameters::CExtAnimationParameters(
  93. INT nAcStepCount, // = __EXT_MFC_DEF_ANIMATION_STEP_COUNT
  94. UINT nAcTimerElapse // = __EXT_MFC_DEF_ANIMATION_TIMER_ELAPSE,
  95. )
  96. : m_nAcStepCount( nAcStepCount )
  97. , m_nAcTimerElapse( nAcTimerElapse )
  98. {
  99. }
  100. CExtAnimationParameters::~CExtAnimationParameters()
  101. {
  102. }
  103. INT CExtAnimationParameters::AnimationClient_StepCountGet() const
  104. {
  105. ASSERT( this != NULL );
  106. ASSERT( 0 <= m_nAcStepCount && m_nAcStepCount <= __EXT_MFC_DEF_ANIMATION_STEP_COUNT_MAX );
  107. return m_nAcStepCount;
  108. }
  109. void CExtAnimationParameters::AnimationClient_StepCountSet( INT nAcStepCount )
  110. {
  111. ASSERT( this != NULL );
  112. ASSERT( 0 <= m_nAcStepCount && m_nAcStepCount <= __EXT_MFC_DEF_ANIMATION_STEP_COUNT_MAX );
  113. ASSERT( 0 <= nAcStepCount && nAcStepCount <= __EXT_MFC_DEF_ANIMATION_STEP_COUNT_MAX );
  114. m_nAcStepCount = nAcStepCount;
  115. }
  116. UINT CExtAnimationParameters::AnimationClient_TimerElapseGet() const
  117. {
  118. ASSERT( this != NULL );
  119. return m_nAcTimerElapse;
  120. }
  121. void CExtAnimationParameters::AnimationClient_TimerElapseSet( UINT nAcTimerElapse )
  122. {
  123. ASSERT( this != NULL );
  124. m_nAcTimerElapse = nAcTimerElapse;
  125. }
  126. /////////////////////////////////////////////////////////////////////////////
  127. // CExtAnimationClient
  128. CExtAnimationClient::CExtAnimationClient(
  129. CExtAnimationSite * pAcAS, // = NULL
  130. bool bAcEnabled, // = true
  131. bool bAcNonClientMode, // = false
  132. INT nAcStepNumber, // = 0
  133. INT nAcStepCount, // = __EXT_MFC_DEF_ANIMATION_STEP_COUNT
  134. UINT nAcTimerElapse, // = __EXT_MFC_DEF_ANIMATION_TIMER_ELAPSE,
  135. const RECT * pAcRcAnimationTarget // = NULL
  136. )
  137. : m_pAcAS( pAcAS )
  138. , m_bAcEnabled( bAcEnabled )
  139. , m_bAcNonClientMode( bAcNonClientMode )
  140. , m_nAcStepNumber( nAcStepNumber )
  141. , m_nAcStepCount( nAcStepCount )
  142. , m_nAcTimerElapse( nAcTimerElapse )
  143. , m_rcAcTarget( 0, 0, 0, 0 )
  144. , m_nAcCacheGeneratorLock( 0 )
  145. , m_eAPT_Last( 0 )
  146. {
  147. ASSERT( 0 <= m_nAcStepNumber );
  148. ASSERT( 0 <= m_nAcStepCount && m_nAcStepCount <= __EXT_MFC_DEF_ANIMATION_STEP_COUNT_MAX );
  149. if( m_pAcAS != NULL && m_pAcAS->AnimationSite_ClientGetIndexOf( this ) < 0 )
  150. m_pAcAS->AnimationSite_ClientAdd( this );
  151. if( pAcRcAnimationTarget != NULL )
  152. m_rcAcTarget = (*pAcRcAnimationTarget);
  153. }
  154. CExtAnimationClient::~CExtAnimationClient()
  155. {
  156. if( m_pAcAS != NULL )
  157. m_pAcAS->AnimationSite_ClientRemove( this );
  158. }
  159. void CExtAnimationClient::AnimationClient_CacheGeneratorLock()
  160. {
  161. ASSERT( this != NULL );
  162. ASSERT( m_nAcCacheGeneratorLock >= 0 );
  163. m_nAcCacheGeneratorLock ++;
  164. }
  165. void CExtAnimationClient::AnimationClient_CacheGeneratorUnlock()
  166. {
  167. ASSERT( this != NULL );
  168. ASSERT( m_nAcCacheGeneratorLock >= 0 );
  169. m_nAcCacheGeneratorLock --;
  170. }
  171. bool CExtAnimationClient::AnimationClient_CacheGeneratorIsLocked() const
  172. {
  173. ASSERT( this != NULL );
  174. ASSERT( m_nAcCacheGeneratorLock >= 0 );
  175. if( ! AnimationClient_EnabledGet() )
  176. return true;
  177. if( m_nAcCacheGeneratorLock == 0 )
  178. return false;
  179. else
  180. return true;
  181. }
  182. CExtAnimationSite * CExtAnimationClient::AnimationClient_SiteGet()
  183. {
  184. ASSERT( this != NULL );
  185. return m_pAcAS;
  186. }
  187. const CExtAnimationSite * CExtAnimationClient::AnimationClient_SiteGet() const
  188. {
  189. ASSERT( this != NULL );
  190. return
  191. ( const_cast < CExtAnimationClient * > ( this ) )
  192. -> AnimationClient_SiteGet();
  193. }
  194. void CExtAnimationClient::AnimationClient_SiteSet(
  195. CExtAnimationSite * pAcAS // = NULL
  196. )
  197. {
  198. ASSERT( this != NULL );
  199. if( m_pAcAS == pAcAS )
  200. return;
  201. if( m_pAcAS != NULL )
  202. m_pAcAS->AnimationSite_ClientRemove( this );
  203. m_pAcAS = pAcAS;
  204. if( m_pAcAS != NULL && m_pAcAS->AnimationSite_ClientGetIndexOf( this ) < 0 )
  205. m_pAcAS->AnimationSite_ClientAdd( this );
  206. }
  207. CExtBitmap & CExtAnimationClient::AnimationClient_StateGet( bool bAcNext )
  208. {
  209. ASSERT( this != NULL );
  210. if( bAcNext )
  211. return m_bmpAcStateNext;
  212. else
  213. return m_bmpAcStatePrev;
  214. }
  215. const CExtBitmap & CExtAnimationClient::AnimationClient_StateGet( bool bAcNext ) const
  216. {
  217. ASSERT( this != NULL );
  218. return
  219. ( const_cast < CExtAnimationClient * > ( this ) )
  220. -> AnimationClient_StateGet( bAcNext );
  221. }
  222. bool CExtAnimationClient::AnimationClient_IsEmpty() const
  223. {
  224. ASSERT( this != NULL );
  225. if( AnimationClient_StateGet( false ).IsEmpty()
  226. && AnimationClient_StateGet( true ).IsEmpty()
  227. )
  228. return true;
  229. else
  230. return false;
  231. }
  232. void CExtAnimationClient::AnimationClient_Empty()
  233. {
  234. ASSERT( this != NULL );
  235. AnimationClient_StateGet( false ).Empty();
  236. AnimationClient_StateGet( true ).Empty();
  237. AnimationClient_StepNumberSet( 0 );
  238. // AnimationClient_NonClientModeSet();
  239. //CRect rcEmpty( 0, 0, 0, 0 );
  240. // AnimationClient_TargetRectSet( rcEmpty );
  241. }
  242. INT CExtAnimationClient::AnimationClient_StepNumberGet() const
  243. {
  244. ASSERT( this != NULL );
  245. ASSERT( 0 <= m_nAcStepNumber );
  246. return m_nAcStepNumber;
  247. }
  248. void CExtAnimationClient::AnimationClient_StepNumberSet( INT nAcStepNumber )
  249. {
  250. ASSERT( this != NULL );
  251. ASSERT( 0 <= m_nAcStepNumber );
  252. ASSERT( 0 <= nAcStepNumber );
  253. m_nAcStepNumber = nAcStepNumber;
  254. }
  255. INT CExtAnimationClient::AnimationClient_StepCountGet() const
  256. {
  257. ASSERT( this != NULL );
  258. ASSERT( 0 <= m_nAcStepCount && m_nAcStepCount <= __EXT_MFC_DEF_ANIMATION_STEP_COUNT_MAX );
  259. return m_nAcStepCount;
  260. }
  261. void CExtAnimationClient::AnimationClient_StepCountSet( INT nAcStepCount )
  262. {
  263. ASSERT( this != NULL );
  264. ASSERT( 0 <= m_nAcStepCount && m_nAcStepCount <= __EXT_MFC_DEF_ANIMATION_STEP_COUNT_MAX );
  265. ASSERT( 0 <= nAcStepCount && nAcStepCount <= __EXT_MFC_DEF_ANIMATION_STEP_COUNT_MAX );
  266. m_nAcStepCount = nAcStepCount;
  267. }
  268. UINT CExtAnimationClient::AnimationClient_TimerElapseGet() const
  269. {
  270. ASSERT( this != NULL );
  271. return m_nAcTimerElapse;
  272. }
  273. void CExtAnimationClient::AnimationClient_TimerElapseSet( UINT nAcTimerElapse )
  274. {
  275. ASSERT( this != NULL );
  276. m_nAcTimerElapse = nAcTimerElapse;
  277. }
  278. bool CExtAnimationClient::AnimationClient_NonClientModeGet() const
  279. {
  280. ASSERT( this != NULL );
  281. return m_bAcNonClientMode;
  282. }
  283. void CExtAnimationClient::AnimationClient_NonClientModeSet(
  284. bool bAcNonClientMode // = false
  285. )
  286. {
  287. ASSERT( this != NULL );
  288. m_bAcNonClientMode = bAcNonClientMode;
  289. }
  290. bool CExtAnimationClient::AnimationClient_EnabledGet() const
  291. {
  292. ASSERT( this != NULL );
  293. return m_bAcEnabled;
  294. }
  295. void CExtAnimationClient::AnimationClient_EnabledSet(
  296. bool bAcEnabled // = true
  297. )
  298. {
  299. ASSERT( this != NULL );
  300. m_bAcEnabled = bAcEnabled;
  301. }
  302. bool CExtAnimationClient::AnimationClient_OnQueryEnabledState(
  303. INT eAPT // __EAPT_*** animation type
  304. ) const
  305. {
  306. ASSERT( this != NULL );
  307. const CExtAnimationSite * pAcAS = AnimationClient_SiteGet();
  308. if( pAcAS == NULL )
  309. return false;
  310. if( pAcAS->AnimationSite_ClientGetIndexOf( this ) < 0 )
  311. return false;
  312. if( ! AnimationClient_EnabledGet() )
  313. return false;
  314. if( AnimationClient_IsEmpty() )
  315. return false;
  316. if( AnimationClient_TargetRectGet().IsRectEmpty() )
  317. return false;
  318. INT nAcStepCount = AnimationClient_OnStepCountGet( eAPT );
  319. ASSERT( 0 <= nAcStepCount && nAcStepCount <= __EXT_MFC_DEF_ANIMATION_STEP_COUNT_MAX );
  320. if( nAcStepCount == 0 )
  321. return false;
  322. INT nAcStepNumber = AnimationClient_StepNumberGet();
  323. ASSERT( 0 <= nAcStepNumber );
  324. if( nAcStepNumber >= nAcStepCount )
  325. return false;
  326. return true;
  327. }
  328. CRect CExtAnimationClient::AnimationClient_TargetRectGet() const
  329. {
  330. ASSERT( this != NULL );
  331. return m_rcAcTarget;
  332. }
  333. void CExtAnimationClient::AnimationClient_TargetRectSet(
  334. const RECT & rcAcAnimationTarget
  335. )
  336. {
  337. ASSERT( this != NULL );
  338. m_rcAcTarget = rcAcAnimationTarget;
  339. }
  340. bool CExtAnimationClient::AnimationClient_CacheNextState(
  341. CDC & dc,
  342. const RECT & rcAcAnimationTarget,
  343. bool bAnimate,
  344. INT eAPT // __EAPT_*** animation type
  345. )
  346. {
  347. ASSERT( this != NULL );
  348. ASSERT( dc.GetSafeHdc() != NULL );
  349. CExtAnimationSite * pAcAS = AnimationClient_SiteGet();
  350. if( pAcAS == NULL )
  351. return false;
  352. if( pAcAS->AnimationSite_ClientGetIndexOf( this ) < 0 )
  353. return false;
  354. if( ! AnimationClient_EnabledGet() )
  355. return false;
  356. if( AnimationClient_OnStepCountGet( eAPT ) == 0 )
  357. return false;
  358. m_bmpAcStatePrev = m_bmpAcStateNext;
  359. m_bmpAcStateNext.FromSurface( dc, rcAcAnimationTarget );
  360. m_bmpAcStateNext.Make32();
  361. AnimationClient_NextStateAdjust( m_bmpAcStateNext );
  362. m_rcAcTarget = rcAcAnimationTarget;
  363. // if( AnimationClient_IsEmpty() )
  364. // return false;
  365. AnimationClient_StepNumberSet( 0 );
  366. if( bAnimate )
  367. pAcAS->AnimationSite_OnClientStateChanged( this, eAPT );
  368. else
  369. pAcAS->AnimationSite_ClientProgressStop( this );
  370. return true;
  371. }
  372. bool CExtAnimationClient::AnimationClient_CacheNextState(
  373. HWND hWnd,
  374. const RECT & rcAcAnimationTarget,
  375. bool bAnimate,
  376. INT eAPT // __EAPT_*** animation type
  377. )
  378. {
  379. ASSERT( this != NULL );
  380. if( hWnd == NULL || ( ! ::IsWindow( hWnd ) ) )
  381. return false;
  382. CExtAnimationSite * pAcAS = AnimationClient_SiteGet();
  383. if( pAcAS == NULL )
  384. return false;
  385. if( pAcAS->AnimationSite_ClientGetIndexOf( this ) < 0 )
  386. return false;
  387. if( ! AnimationClient_EnabledGet() )
  388. return false;
  389. if( AnimationClient_OnStepCountGet( eAPT ) == 0 )
  390. return false;
  391. bool bAcNonClientMode = AnimationClient_NonClientModeGet();
  392. HDC hDC =
  393. (! bAcNonClientMode )
  394. ? ( ::GetDC( hWnd ) )
  395. : ( ::GetWindowDC( hWnd ) )
  396. ;
  397. if( hDC == NULL )
  398. return false;
  399. if( bAcNonClientMode )
  400. {
  401. RECT rcClient, rcWnd;
  402. if( ::GetClientRect( hWnd, &rcClient )
  403. && ::GetWindowRect( hWnd, &rcWnd )
  404. && ::ClientToScreen( hWnd, LPPOINT(&rcClient) )
  405. && ::ClientToScreen( hWnd, LPPOINT(&rcClient)+1 )
  406. && ::OffsetRect( &rcClient, -rcWnd.left, -rcWnd.top )
  407. )
  408. {
  409. ::ExcludeClipRect(
  410. hDC,
  411. rcClient.left,
  412. rcClient.top,
  413. rcClient.right,
  414. rcClient.bottom
  415. );
  416. } // if( ::GetClientRect( hWnd, &rcClient ) ...
  417. else
  418. {
  419. ::ReleaseDC( hWnd, hDC );
  420. return false;
  421. } // else from if( ::GetClientRect( hWnd, &rcClient ) ...
  422. } // if( bAcNonClientMode )
  423. bool bRetVal = false;
  424. CDC * pDC = CDC::FromHandle( hDC );
  425. if( pDC != NULL )
  426. {
  427. CRect _rcAcAnimationTarget = rcAcAnimationTarget;
  428. CExtMemoryDC dc( pDC, &_rcAcAnimationTarget );
  429. AnimationClient_NextStatePrepare(
  430. dc,
  431. rcAcAnimationTarget,
  432. bAnimate,
  433. eAPT
  434. );
  435. bRetVal = 
  436. AnimationClient_CacheNextState(
  437. dc, //*pDC,
  438. rcAcAnimationTarget,
  439. bAnimate,
  440. eAPT
  441. );
  442. dc.__Flush( FALSE );
  443. }
  444. ::ReleaseDC( hWnd, hDC );
  445. return bRetVal;
  446. }
  447. bool CExtAnimationClient::AnimationClient_CacheNextStateMinInfo(
  448. bool bAnimate,
  449. INT eAPT // __EAPT_*** animation type
  450. )
  451. {
  452. ASSERT( this != NULL );
  453. CExtAnimationSite * pAcAS = AnimationClient_SiteGet();
  454. if( pAcAS == NULL )
  455. return false;
  456. HWND hWnd = pAcAS->AnimationSite_GetSafeHWND();
  457. if( hWnd == NULL )
  458. return false;
  459. ASSERT( ::IsWindow( hWnd ) );
  460. CRect rcAcAnimationTarget = AnimationClient_TargetRectGet();
  461. return
  462. AnimationClient_CacheNextState(
  463. hWnd,
  464. rcAcAnimationTarget,
  465. bAnimate,
  466. eAPT
  467. );
  468. }
  469. void CExtAnimationClient::AnimationClient_NextStatePrepare(
  470. CDC & dc,
  471. const RECT & rcAcAnimationTarget,
  472. bool bAnimate,
  473. INT eAPT // __EAPT_*** animation type
  474. )
  475. {
  476. ASSERT( this != NULL );
  477. ASSERT( dc.GetSafeHdc() != NULL );
  478. dc;
  479. rcAcAnimationTarget;
  480. bAnimate;
  481. eAPT;
  482. }
  483. void CExtAnimationClient::AnimationClient_NextStateAdjust(
  484. CExtBitmap & _bmp
  485. )
  486. {
  487. ASSERT( this != NULL );
  488. _bmp;
  489. }
  490. void CExtAnimationClient::AnimationClient_StateDoStep()
  491. {
  492. ASSERT( this != NULL );
  493. CExtAnimationSite * pAcAS = AnimationClient_SiteGet();
  494. if( pAcAS == NULL )
  495. return;
  496. HWND hWnd = pAcAS->AnimationSite_GetSafeHWND();
  497. if( hWnd == NULL )
  498. return;
  499. ASSERT( ::IsWindow( hWnd ) );
  500. CRect _rcAcAnimationTarget = AnimationClient_TargetRectGet();
  501.   ::InvalidateRect( hWnd, &_rcAcAnimationTarget, TRUE );
  502. //static int g_nDebugCounter = 0;
  503. // TRACE1( "Animation step %drn", g_nDebugCounter++ );
  504. }
  505. bool CExtAnimationClient::AnimationClient_StatePaint(
  506. CDC & dc
  507. )
  508. {
  509. ASSERT( this != NULL );
  510. ASSERT( dc.GetSafeHdc() != NULL );
  511. if( AnimationClient_CacheGeneratorIsLocked() )
  512. return false;
  513. if( ! AnimationClient_OnQueryEnabledState( m_eAPT_Last ) )
  514. return false;
  515. CRect rcAcAnimationTarget = AnimationClient_TargetRectGet();
  516. if( dc.RectVisible( &rcAcAnimationTarget ) )
  517. {
  518. INT nAcStepNumber = AnimationClient_StepNumberGet();
  519. INT nAcStepCount = AnimationClient_OnStepCountGet( m_eAPT_Last );
  520. ASSERT( nAcStepNumber <= nAcStepCount && nAcStepCount > 0 );
  521. CExtBitmap & bmpPrev = AnimationClient_StateGet( false );
  522. CExtBitmap & bmpNext = AnimationClient_StateGet( true );
  523. if( bmpPrev.IsEmpty() )
  524. return false;
  525. if( bmpNext.IsEmpty() )
  526. return false;
  527. double lfNextSCA = double(nAcStepNumber + 1) / double(nAcStepCount);
  528. //  lfNextSCA = double( sin( lfNextSCA * 0.8 ) );
  529. //  lfNextSCA = double( sin( lfNextSCA * 0.8 ) );
  530. if( lfNextSCA > 1.0 )
  531. lfNextSCA = 1.0;
  532. INT nNextSCA = INT( lfNextSCA * 255.0 );
  533. if( nNextSCA > 255 )
  534. nNextSCA = 255;
  535. ASSERT( 0 <= nNextSCA && nNextSCA <= 255 );
  536. int nPrevSCA = 255; // 255 - nNextSCA;
  537. int nOldStretchBltMode = ::GetStretchBltMode( dc.m_hDC );
  538. ::SetStretchBltMode( dc.m_hDC, g_PaintManager.m_bIsWinNT ? HALFTONE : COLORONCOLOR );
  539. DWORD dwPrevOldRTF = 0, dwNextOldRTF = 0;
  540. bool bChangeRTF = false;
  541. if( g_PaintManager.m_bIsWinVistaOrLater
  542. && g_PaintManager.m_DWM.IsCompositionEnabled()
  543. )
  544. bChangeRTF = true;
  545. if( bChangeRTF )
  546. {
  547. dwPrevOldRTF = bmpPrev.RunTimeFlagsGet();
  548. dwNextOldRTF = bmpNext.RunTimeFlagsGet();
  549. bmpPrev.RunTimeFlagsSet( dwPrevOldRTF | __EXT_BMP_FLAG_NO_RTL_DETECTION );
  550. bmpNext.RunTimeFlagsSet( dwNextOldRTF | __EXT_BMP_FLAG_NO_RTL_DETECTION );
  551. }
  552. if( nPrevSCA > 0 )
  553. bmpPrev.AlphaBlend(
  554. dc.m_hDC,
  555. rcAcAnimationTarget,
  556. BYTE(nPrevSCA)
  557. );
  558. if( nNextSCA > 0 )
  559. bmpNext.AlphaBlend(
  560. dc.m_hDC,
  561. rcAcAnimationTarget,
  562. BYTE(nNextSCA)
  563. );
  564. if( bChangeRTF )
  565. {
  566. bmpPrev.RunTimeFlagsSet( dwPrevOldRTF );
  567. bmpNext.RunTimeFlagsSet( dwNextOldRTF );
  568. }
  569. ::SetStretchBltMode( dc.m_hDC, nOldStretchBltMode );
  570. } // if( dc.RectVisible( &rcAcAnimationTarget ) )
  571. return true;
  572. }
  573. bool CExtAnimationClient::AnimationClient_StatePaint(
  574. HWND hWnd
  575. )
  576. {
  577. ASSERT( this != NULL );
  578. if( hWnd == NULL || ( ! ::IsWindow( hWnd ) ) )
  579. return false;
  580. CExtAnimationSite * pAcAS = AnimationClient_SiteGet();
  581. if( pAcAS == NULL )
  582. return false;
  583. if( pAcAS->AnimationSite_ClientGetIndexOf( this ) < 0 )
  584. return false;
  585. if( ! AnimationClient_EnabledGet() )
  586. return false;
  587. if( AnimationClient_OnStepCountGet( m_eAPT_Last ) == 0 )
  588. return false;
  589. bool bAcNonClientMode = AnimationClient_NonClientModeGet();
  590. HDC hDC =
  591. bAcNonClientMode
  592. ? ( ::GetWindowDC( hWnd ) )
  593. : ( ::GetDC( hWnd ) )
  594. ;
  595. if( hDC == NULL )
  596. return false;
  597. if( bAcNonClientMode )
  598. {
  599. RECT rcClient, rcWnd;
  600. if( ::GetClientRect( hWnd, &rcClient )
  601. && ::GetWindowRect( hWnd, &rcWnd )
  602. && ::ClientToScreen( hWnd, LPPOINT(&rcClient) )
  603. && ::ClientToScreen( hWnd, LPPOINT(&rcClient)+1 )
  604. && ::OffsetRect( &rcClient, -rcWnd.left, -rcWnd.top )
  605. )
  606. {
  607. ::ExcludeClipRect(
  608. hDC,
  609. rcClient.left,
  610. rcClient.top,
  611. rcClient.right,
  612. rcClient.bottom
  613. );
  614. } // if( ::GetClientRect( hWnd, &rcClient ) ...
  615. else
  616. {
  617. ::ReleaseDC( hWnd, hDC );
  618. return false;
  619. } // else from if( ::GetClientRect( hWnd, &rcClient ) ...
  620. } // if( bAcNonClientMode )
  621. bool bRetVal = false;
  622. CDC * pDC = CDC::FromHandle( hDC );
  623. if( pDC != NULL )
  624. {
  625. CRect _rcAcAnimationTarget = AnimationClient_TargetRectGet();
  626. CExtMemoryDC dc( pDC, &_rcAcAnimationTarget );
  627. dc.FillSolidRect( &_rcAcAnimationTarget, 0 );
  628. bRetVal = AnimationClient_StatePaint( dc );
  629. }
  630. ::ReleaseDC( hWnd, hDC );
  631. return bRetVal;
  632. }
  633. bool CExtAnimationClient::AnimationClient_StatePaint()
  634. {
  635. ASSERT( this != NULL );
  636. CExtAnimationSite * pAcAS = AnimationClient_SiteGet();
  637. if( pAcAS == NULL )
  638. return false;
  639. HWND hWnd = pAcAS->AnimationSite_GetSafeHWND();
  640. if( hWnd == NULL )
  641. return false;
  642. ASSERT( ::IsWindow( hWnd ) );
  643. return AnimationClient_StatePaint( hWnd );
  644. }
  645. void CExtAnimationClient::AnimationClient_OnProgressStart(
  646. INT eAPT // __EAPT_*** animation type
  647. )
  648. {
  649. ASSERT( this != NULL );
  650. eAPT;
  651. AnimationClient_StepNumberSet( 0 );
  652. }
  653. void CExtAnimationClient::AnimationClient_OnProgressStop(
  654. INT eAPT // __EAPT_*** animation type
  655. )
  656. {
  657. ASSERT( this != NULL );
  658. AnimationClient_StepNumberSet( AnimationClient_OnStepCountGet( eAPT ) );
  659. //  AnimationClient_StateGet( true ).Empty();
  660. //  AnimationClient_StateGet( false ).Empty();
  661. }
  662. INT CExtAnimationClient::AnimationClient_OnStepCountGet(
  663. INT eAPT // __EAPT_*** animation type
  664. ) const
  665. {
  666. ASSERT( this != NULL );
  667. const CExtAnimationParameters * pAnimationParameters =
  668. AnimationClient_OnQueryAnimationParameters( eAPT );
  669. if( pAnimationParameters != NULL )
  670. {
  671. INT nAcStepCount =
  672. pAnimationParameters ->
  673. AnimationClient_StepCountGet();
  674. return nAcStepCount;
  675. } // if( pAnimationParameters != NULL )
  676. INT nAcStepCount =
  677. AnimationClient_StepCountGet();
  678. return nAcStepCount;
  679. }
  680. UINT CExtAnimationClient::AnimationClient_OnTimerElapseGet(
  681. INT eAPT // __EAPT_*** animation type
  682. ) const
  683. {
  684. ASSERT( this != NULL );
  685. const CExtAnimationParameters * pAnimationParameters =
  686. AnimationClient_OnQueryAnimationParameters( eAPT );
  687. if( pAnimationParameters != NULL )
  688. {
  689. UINT nAcTimerElapse =
  690. pAnimationParameters ->
  691. AnimationClient_TimerElapseGet();
  692. return nAcTimerElapse;
  693. } // if( pAnimationParameters != NULL )
  694. UINT nAcTimerElapse =
  695. AnimationClient_TimerElapseGet();
  696. return nAcTimerElapse;
  697. }
  698. const CExtAnimationParameters *
  699. CExtAnimationClient::AnimationClient_OnQueryAnimationParameters(
  700. INT eAPT // __EAPT_*** animation type
  701. ) const
  702. {
  703. ASSERT( this != NULL );
  704. const CExtAnimationParameters * pAnimationParameters =
  705. g_PaintManager->Animation_GetParameters(
  706. eAPT,
  707. NULL,
  708. this
  709. );
  710. return pAnimationParameters;
  711. }
  712. INT CExtAnimationClient::AnimationClient_LastAnimationTypeGet() const
  713. {
  714. ASSERT( this != NULL );
  715. return m_eAPT_Last;
  716. }
  717. void CExtAnimationClient::AnimationClient_LastAnimationTypeSet(
  718. INT eAPT // __EAPT_*** animation type
  719. )
  720. {
  721. ASSERT( this != NULL );
  722. m_eAPT_Last = eAPT;
  723. }
  724. /////////////////////////////////////////////////////////////////////////////
  725. // CExtAnimationSite
  726. IMPLEMENT_CExtPmBridge_MEMBERS_GENERIC( CExtAnimationSite );
  727. CExtAnimationSite::CExtAnimationSite(
  728. bool bAsEnabled // = true
  729. )
  730. : m_bAsEnabled( bAsEnabled )
  731. {
  732. // AnimationSite_Init( false );
  733. // m_AcHS.AnimationSiteSet( this, false );
  734. PmBridge_Install();
  735. }
  736. CExtAnimationSite::~CExtAnimationSite()
  737. {
  738. PmBridge_Uninstall();
  739. AnimationSite_Done();
  740. AnimationSite_ClientRemove();
  741. }
  742. HWND CExtAnimationSite::PmBridge_GetSafeHwnd() const
  743. {
  744. ASSERT( this != NULL );
  745. return AnimationSite_GetSafeHWND();
  746. }
  747. void CExtAnimationSite::PmBridge_OnPaintManagerChanged(
  748. CExtPaintManager * pGlobalPM
  749. )
  750. {
  751. ASSERT( this != NULL );
  752. INT nIndex, nCount = AnimationSite_ClientGetCount();
  753. for( nIndex = 0; nIndex < nCount; nIndex ++ )
  754. {
  755. CExtAnimationClient * pAC = AnimationSite_ClientGetAt( nIndex );
  756. ASSERT( pAC != NULL );
  757. AnimationSite_ClientProgressStop( pAC );
  758. pAC->AnimationClient_StateGet( false ).Empty();
  759. pAC->AnimationClient_StateGet( true ).Empty();
  760. } // for( nIndex = 0; nIndex < nCount; nIndex ++ )
  761. CExtPmBridge::PmBridge_OnPaintManagerChanged(
  762. pGlobalPM
  763. );
  764. }
  765. bool CExtAnimationSite::AnimationSite_EnabledGet() const
  766. {
  767. ASSERT( this != NULL );
  768. return m_bAsEnabled;
  769. }
  770. void CExtAnimationSite::AnimationSite_EnabledSet(
  771. bool bAsEnabled // = true
  772. )
  773. {
  774. ASSERT( this != NULL );
  775. m_bAsEnabled = bAsEnabled;
  776. }
  777. bool CExtAnimationSite::AnimationSite_OnQueryEnabledState() const
  778. {
  779. ASSERT( this != NULL );
  780. if( ! AnimationSite_EnabledGet() )
  781. return false;
  782. HWND hWnd = AnimationSite_GetSafeHWND();
  783. if( hWnd == NULL )
  784. return false;
  785. ASSERT( ::IsWindow( hWnd ) );
  786. return true;
  787. }
  788. INT CExtAnimationSite::AnimationSite_ClientGetCount(
  789. bool bAsIncludeClientArea, // = true
  790. bool bAsIncludeNonClientArea // = true
  791. ) const
  792. {
  793. ASSERT( this != NULL );
  794. INT nCount = INT( m_arrAsAnimationClients.GetSize() );
  795. if( nCount == 0 )
  796. return 0;
  797. if( bAsIncludeClientArea )
  798. {
  799. if( bAsIncludeNonClientArea )
  800. return nCount;
  801. nCount = 0;
  802. INT nIndex;
  803. for( nIndex = 0; nIndex < nCount; nIndex ++ )
  804. {
  805. const CExtAnimationClient * pAC = m_arrAsAnimationClients.GetAt( nIndex );
  806. ASSERT( pAC != NULL );
  807. if( pAC->AnimationClient_NonClientModeGet() )
  808. continue;
  809. nCount ++;
  810. } // for( nIndex = 0; nIndex < nCount; nIndex ++ )
  811. return nCount;
  812. } // if( bAsIncludeClientArea )
  813. else
  814. {
  815. if( bAsIncludeNonClientArea )
  816. {
  817. nCount = 0;
  818. INT nIndex;
  819. for( nIndex = 0; nIndex < nCount; nIndex ++ )
  820. {
  821. const CExtAnimationClient * pAC = m_arrAsAnimationClients.GetAt( nIndex );
  822. ASSERT( pAC != NULL );
  823. if( ! pAC->AnimationClient_NonClientModeGet() )
  824. continue;
  825. nCount ++;
  826. } // for( nIndex = 0; nIndex < nCount; nIndex ++ )
  827. return nCount;
  828. } // if( bAsIncludeNonClientArea )
  829. return 0;
  830. } // else from if( bAsIncludeClientArea )
  831. }
  832. CExtAnimationClient * CExtAnimationSite::AnimationSite_ClientGetAt( INT nAcIndex )
  833. {
  834. ASSERT( this != NULL );
  835. if( nAcIndex < 0 )
  836. return NULL;
  837. INT nCount = INT( m_arrAsAnimationClients.GetSize() );
  838. if( nAcIndex >= nCount )
  839. return NULL;
  840. CExtAnimationClient * pAC = m_arrAsAnimationClients.GetAt( nAcIndex );
  841. ASSERT( pAC != NULL );
  842. return pAC;
  843. }
  844. const CExtAnimationClient * CExtAnimationSite::AnimationSite_ClientGetAt( INT nAcIndex ) const
  845. {
  846. ASSERT( this != NULL );
  847. return
  848. ( const_cast < CExtAnimationSite * > ( this ) )
  849. -> AnimationSite_ClientGetAt( nAcIndex );
  850. }
  851. bool CExtAnimationSite::AnimationSite_ClientInsertAt( INT nAcIndex, CExtAnimationClient * pAC )
  852. {
  853. ASSERT( this != NULL );
  854. if( pAC == NULL )
  855. return false;
  856. if( nAcIndex < 0 )
  857. return false;
  858. INT nCount = INT( m_arrAsAnimationClients.GetSize() );
  859. if( nAcIndex > nCount )
  860. return false;
  861. if( AnimationSite_ClientGetIndexOf( pAC ) >= 0 )
  862. return false;
  863. m_arrAsAnimationClients.InsertAt( nAcIndex, pAC );
  864. return true;
  865. }
  866. bool CExtAnimationSite::AnimationSite_ClientAdd( CExtAnimationClient * pAC )
  867. {
  868. ASSERT( this != NULL );
  869. return AnimationSite_ClientInsertAt( AnimationSite_ClientGetCount(), pAC );
  870. }
  871. INT CExtAnimationSite::AnimationSite_ClientGetIndexOf( const CExtAnimationClient * pAC ) const
  872. {
  873. ASSERT( this != NULL );
  874. if( pAC == NULL )
  875. return -1;
  876. INT nIndex, nCount = AnimationSite_ClientGetCount();
  877. if( nCount == 0 )
  878. return -1;
  879. for( nIndex = 0; nIndex < nCount; nIndex ++ )
  880. {
  881. const CExtAnimationClient * pOwnAC = AnimationSite_ClientGetAt( nIndex );
  882. ASSERT( pOwnAC != NULL );
  883. if( pOwnAC == pAC )
  884. return nIndex;
  885. } // for( nIndex = 0; nIndex < nCount; nIndex ++ )
  886. return -1;
  887. }
  888. INT CExtAnimationSite::AnimationSite_ClientRemove(
  889. INT nAcIndex, // = 0
  890. INT nAcCount, // = -1
  891. bool bDelete // = true
  892. )
  893. {
  894. ASSERT( this != NULL );
  895. if( nAcIndex < 0 || nAcCount == 0 )
  896. return 0;
  897. INT nCount = INT( m_arrAsAnimationClients.GetSize() );
  898. if( nAcIndex >= nCount )
  899. return 0;
  900. if( nAcCount < 0 )
  901. nAcCount = nCount;
  902. INT nIndex = nAcIndex, nCountRemoved = 0;
  903. for( ; nIndex < nCount && nCountRemoved < nAcCount; )
  904. {
  905. CExtAnimationClient * pAC = m_arrAsAnimationClients.GetAt( nIndex );
  906. ASSERT( pAC != NULL );
  907. m_arrAsAnimationClients.RemoveAt( nIndex, 1 );
  908. nCount --;
  909. nCountRemoved ++;
  910. AnimationSite_ClientProgressStop( pAC );
  911. if( bDelete )
  912. delete pAC;
  913. } // for( ; nIndex < nCount && nCountRemoved < nAcCount; )
  914. return nCountRemoved;
  915. }
  916. bool CExtAnimationSite::AnimationSite_ClientRemove(
  917. CExtAnimationClient * pAC,
  918. bool bDelete // = true
  919. )
  920. {
  921. ASSERT( this != NULL );
  922. INT nAcIndex = AnimationSite_ClientGetIndexOf( pAC );
  923. if( nAcIndex < 0 )
  924. return false;
  925. if( AnimationSite_ClientRemove( nAcIndex, 1, bDelete ) != 1 )
  926. return false;
  927. return true;
  928. }
  929. WORD CExtAnimationSite::AnimationSite_TimerGetBaseID()
  930. {
  931. ASSERT( this != NULL );
  932. return __EXT_MFC_DEF_ANIMATION_TIMER_BASE_TIMER_ID;
  933. }
  934. WORD CExtAnimationSite::AnimationSite_TimerGetMaxID()
  935. {
  936. ASSERT( this != NULL );
  937. return __EXT_MFC_DEF_ANIMATION_TIMER_MAX_TIMER_ID;
  938. }
  939. bool CExtAnimationSite::AnimationSite_ClientProgressStart(
  940. CExtAnimationClient * pAC,
  941. INT eAPT // __EAPT_*** animation type
  942. )
  943. {
  944. ASSERT( this != NULL );
  945. if( pAC == NULL )
  946. return false;
  947. AnimationSite_ClientProgressStop( pAC );
  948. pAC->AnimationClient_LastAnimationTypeSet( eAPT );
  949. HWND hWnd = AnimationSite_GetSafeHWND();
  950. if( hWnd == NULL )
  951. return false;
  952. ASSERT( ::IsWindow( hWnd ) );
  953. WORD wElapse = (WORD)pAC->AnimationClient_OnTimerElapseGet( pAC->AnimationClient_LastAnimationTypeGet() );
  954. WORD wTimerID = __EXT_MFC_DEF_ANIMATION_TIMER_INVALID_ID;
  955. if( ! m_mapAsAnimationTimers.Lookup( wElapse, wTimerID ) )
  956. {
  957. wTimerID = AnimationSite_TimerGetBaseID();
  958. WORD wLastTimerID = AnimationSite_TimerGetMaxID();
  959. ASSERT( wTimerID <= wLastTimerID );
  960. for( ; wTimerID <= wLastTimerID; wTimerID ++ )
  961. {
  962. bool bFreeTimerID = true;
  963. POSITION pos = m_mapAsAnimationTimers.GetStartPosition();
  964. for( ; pos != NULL; )
  965. {
  966. WORD wCheckTimerID, wCheckElapse;
  967. m_mapAsAnimationTimers.GetNextAssoc( pos, wCheckElapse, wCheckTimerID );
  968. if( wTimerID == wCheckTimerID )
  969. {
  970. bFreeTimerID = false;
  971. break;
  972. }
  973. } // for( ; pos != NULL; )
  974. if( bFreeTimerID )
  975. break;
  976. else
  977. continue;
  978. } // for( ; wTimerID <= wLastTimerID; wTimerID ++ )
  979. ASSERT( wTimerID != __EXT_MFC_DEF_ANIMATION_TIMER_INVALID_ID );
  980. if( wTimerID > wLastTimerID )
  981. return false;
  982. m_mapAsAnimationTimers.SetAt( wElapse, wTimerID );
  983. ::SetTimer( hWnd, UINT(wTimerID), UINT(wElapse), NULL );
  984. } // if( ! m_mapAsAnimationTimers.Lookup( wElapse, wTimerID ) )
  985. m_mapAsAnimationClients.SetAt( pAC, wTimerID );
  986. pAC->AnimationClient_OnProgressStart( pAC->AnimationClient_LastAnimationTypeGet() );
  987. return true;
  988. }
  989. void CExtAnimationSite::AnimationSite_ClientProgressStop(
  990. CExtAnimationClient * pAC
  991. )
  992. {
  993. ASSERT( this != NULL );
  994. if( pAC == NULL )
  995. return;
  996. WORD wTimerID = __EXT_MFC_DEF_ANIMATION_TIMER_INVALID_ID;
  997. if( ! m_mapAsAnimationClients.Lookup( pAC, wTimerID ) )
  998. return;
  999. ASSERT( wTimerID != __EXT_MFC_DEF_ANIMATION_TIMER_INVALID_ID );
  1000. m_mapAsAnimationClients.RemoveKey( pAC );
  1001. // pAC->AnimationClient_Empty();
  1002. CRect _rcAcAnimationTarget = pAC->AnimationClient_TargetRectGet();
  1003. bool bKillTimer = true;
  1004. POSITION pos = m_mapAsAnimationClients.GetStartPosition();
  1005. for( ; pos != NULL; )
  1006. {
  1007. CExtAnimationClient * pOtherAC = NULL;
  1008. WORD wOtherTimerID = __EXT_MFC_DEF_ANIMATION_TIMER_INVALID_ID;
  1009. m_mapAsAnimationClients.GetNextAssoc( pos, pOtherAC, wOtherTimerID );
  1010. ASSERT( pOtherAC != NULL );
  1011. ASSERT( wOtherTimerID != __EXT_MFC_DEF_ANIMATION_TIMER_INVALID_ID );
  1012. if( wOtherTimerID == wTimerID )
  1013. bKillTimer = false;
  1014. } // for( ; pos != NULL; )
  1015. HWND hWnd = AnimationSite_GetSafeHWND();
  1016. ASSERT( hWnd == NULL || ::IsWindow( hWnd ) );
  1017. if( bKillTimer )
  1018. {
  1019. WORD wElapse = (WORD)pAC->AnimationClient_OnTimerElapseGet( pAC->AnimationClient_LastAnimationTypeGet() );
  1020. m_mapAsAnimationTimers.RemoveKey( wElapse );
  1021. if( hWnd != NULL )
  1022. {
  1023. ASSERT( ::IsWindow( hWnd ) );
  1024. ::KillTimer( hWnd, UINT(wTimerID) );
  1025. }
  1026. } // if( bKillTimer )
  1027. if( hWnd != NULL )
  1028. {
  1029. ASSERT( ::IsWindow( hWnd ) );
  1030. ::InvalidateRect( hWnd, &_rcAcAnimationTarget, TRUE );
  1031. }
  1032. pAC->AnimationClient_OnProgressStop( pAC->AnimationClient_LastAnimationTypeGet() );
  1033. if( bKillTimer )
  1034. AnimationSite_OnProgressShutdownTimer( UINT(wTimerID) );
  1035. }
  1036. CExtAnimationSite::AnimationHookSink::AnimationHookSink(
  1037. CExtAnimationSite * pAS // = NULL
  1038. )
  1039. : m_pAS( pAS )
  1040. , m_bHookEnabled( false )
  1041. {
  1042. AnimationInit( false );
  1043. }
  1044. CExtAnimationSite::AnimationHookSink::~AnimationHookSink()
  1045. {
  1046. AnimationDone();
  1047. }
  1048. CExtAnimationSite * CExtAnimationSite::AnimationHookSink::AnimationSiteGet()
  1049. {
  1050. ASSERT( this != NULL );
  1051. return m_pAS;
  1052. }
  1053. const CExtAnimationSite * CExtAnimationSite::AnimationHookSink::AnimationSiteGet() const
  1054. {
  1055. ASSERT( this != NULL );
  1056. return 
  1057. ( const_cast < AnimationHookSink * > ( this ) )
  1058. -> AnimationSiteGet();
  1059. }
  1060. void CExtAnimationSite::AnimationHookSink::AnimationSiteSet( CExtAnimationSite * pAS, bool bHookEnabled )
  1061. {
  1062. ASSERT( this != NULL );
  1063. if( m_pAS == pAS )
  1064. return;
  1065. AnimationDone();
  1066. m_pAS = pAS;
  1067. AnimationInit( bHookEnabled );
  1068. }
  1069. bool CExtAnimationSite::AnimationHookSink::AnimationInit( bool bHookEnabled )
  1070. {
  1071. ASSERT( this != NULL );
  1072. CExtAnimationSite * pAS = AnimationSiteGet();
  1073. if( pAS == NULL )
  1074. return false;
  1075. HWND hWnd = pAS->AnimationSite_GetSafeHWND();
  1076. if( hWnd == NULL )
  1077. return false;
  1078. ASSERT( ::IsWindow( hWnd ) );
  1079. m_bHookEnabled = bHookEnabled;
  1080. if( bHookEnabled )
  1081. SetupHookWndSink( hWnd );
  1082. pAS->AnimationSite_OnAnimationHookInit();
  1083. return true;
  1084. }
  1085. void CExtAnimationSite::AnimationHookSink::AnimationDone()
  1086. {
  1087. ASSERT( this != NULL );
  1088. // if( bHookEnabled )
  1089. // RemoveAllWndHooks();
  1090. CExtAnimationSite * pAS = AnimationSiteGet();
  1091. if( pAS != NULL )
  1092. {
  1093. // if( m_bHookEnabled )
  1094. // {
  1095. // HWND hWnd = pAS->AnimationSite_GetSafeHWND();
  1096. // if( hWnd != NULL )
  1097. // {
  1098. // ASSERT( ::IsWindow( hWnd ) );
  1099. // if( IsHookedWindow( hWnd ) )
  1100. // SetupHookWndSink( hWnd, true );
  1101. // }
  1102. // } // if( m_bHookEnabled )
  1103. pAS->AnimationSite_OnAnimationHookDone();
  1104. }
  1105. }
  1106. bool CExtAnimationSite::AnimationHookSink::OnHookWndMsg(
  1107. LRESULT & lResult,
  1108. HWND hWndHooked,
  1109. UINT nMessage,
  1110. WPARAM & wParam,
  1111. LPARAM & lParam
  1112. )
  1113. {
  1114. __PROF_UIS_MANAGE_STATE;
  1115. ASSERT( this != NULL );
  1116. CExtAnimationSite * pAS = AnimationSiteGet();
  1117. if( pAS != NULL
  1118. && hWndHooked == pAS->AnimationSite_GetSafeHWND()
  1119. )
  1120. {
  1121. if( nMessage == WM_DESTROY
  1122. || nMessage == WM_NCDESTROY
  1123. )
  1124. AnimationDone();
  1125. else if(
  1126. pAS->AnimationSite_OnHookWndMsg(
  1127. lResult,
  1128. hWndHooked,
  1129. nMessage,
  1130. wParam,
  1131. lParam
  1132. )
  1133. )
  1134. return true;
  1135. }
  1136. return 
  1137. CExtHookSink::OnHookWndMsg(
  1138. lResult,
  1139. hWndHooked,
  1140. nMessage,
  1141. wParam,
  1142. lParam
  1143. );
  1144. }
  1145. void CExtAnimationSite::AnimationSite_OnAnimationHookInit()
  1146. {
  1147. ASSERT( this != NULL );
  1148. }
  1149. void CExtAnimationSite::AnimationSite_OnAnimationHookDone()
  1150. {
  1151. ASSERT( this != NULL );
  1152. }
  1153. bool CExtAnimationSite::AnimationSite_OnHookWndMsg(
  1154. LRESULT & lResult,
  1155. HWND hWndHooked,
  1156. UINT nMessage,
  1157. WPARAM & wParam,
  1158. LPARAM & lParam
  1159. )
  1160. {
  1161. ASSERT( this != NULL );
  1162. lParam;
  1163. if( nMessage == WM_TIMER
  1164. && hWndHooked == AnimationSite_GetSafeHWND()
  1165. )
  1166. {
  1167. if( CExtAnimationSite::AnimationSite_OnHookTimer( UINT(wParam) ) )
  1168. {
  1169. lResult = 0;
  1170. return true;
  1171. }
  1172. } // if( nMessage == WM_TIMER ...
  1173. return false;
  1174. }
  1175. bool CExtAnimationSite::AnimationSite_OnHookTimer(
  1176. UINT nTimerID
  1177. )
  1178. {
  1179. ASSERT( this != NULL );
  1180. HWND hWnd = AnimationSite_GetSafeHWND();
  1181. if( hWnd == NULL )
  1182. return false;
  1183. ASSERT( ::IsWindow( hWnd ) );
  1184. bool bTimerHandled = false;
  1185. POSITION pos = m_mapAsAnimationTimers.GetStartPosition();
  1186. for( ; pos != NULL; )
  1187. {
  1188. WORD wTimerID, wElapse;
  1189. m_mapAsAnimationTimers.GetNextAssoc( pos, wElapse, wTimerID );
  1190. if( wTimerID == WORD(nTimerID) )
  1191. {
  1192. bTimerHandled = true;
  1193. break;
  1194. }
  1195. } // for( ; pos != NULL; )
  1196. if( ! bTimerHandled )
  1197. return false;
  1198. INT nIndex, nCount = AnimationSite_ClientGetCount();
  1199. INT nCountAnimatedCurrent = 0, nCountAnimatedMax = 10;
  1200. for( nIndex = 0; nIndex < nCount; nIndex ++ )
  1201. {
  1202. CExtAnimationClient * pAC =
  1203. AnimationSite_ClientGetAt(
  1204. nCount - nIndex - 1
  1205. );
  1206. ASSERT( pAC != NULL );
  1207. WORD wTimerID = __EXT_MFC_DEF_ANIMATION_TIMER_INVALID_ID;
  1208. if( ! m_mapAsAnimationClients.Lookup( pAC, wTimerID ) )
  1209. continue;
  1210. ASSERT( wTimerID != __EXT_MFC_DEF_ANIMATION_TIMER_INVALID_ID );
  1211. if( ! pAC->AnimationClient_OnQueryEnabledState( pAC->AnimationClient_LastAnimationTypeGet() ) )
  1212. {
  1213. AnimationSite_ClientProgressStop( pAC );
  1214. continue;
  1215. }
  1216. //CRect _rcAcAnimationTarget = pAC->AnimationClient_TargetRectGet();
  1217. if( wTimerID == WORD(nTimerID) )
  1218. {
  1219. INT nAcStepNumber = pAC->AnimationClient_StepNumberGet();
  1220. nAcStepNumber ++;
  1221. pAC->AnimationClient_StepNumberSet( nAcStepNumber );
  1222. if( (! pAC->AnimationClient_OnQueryEnabledState( pAC->AnimationClient_LastAnimationTypeGet() ) )
  1223. || nCountAnimatedCurrent > nCountAnimatedMax
  1224. )
  1225. AnimationSite_ClientProgressStop( pAC );
  1226. else
  1227. {
  1228. pAC->AnimationClient_StateDoStep();
  1229. nCountAnimatedCurrent ++;
  1230. }
  1231. } // if( wTimerID == WORD(nTimerID) )
  1232. //::InvalidateRect( hWnd, &_rcAcAnimationTarget, TRUE );
  1233. // pAC->AnimationClient_StateDoStep();
  1234. } // for( nIndex = 0; nIndex < nCount; nIndex ++ )
  1235. //   if( nCountAnimatedCurrent == 0 )
  1236. //   ::InvalidateRect( hWnd, NULL, TRUE );
  1237. // ::UpdateWindow( hWnd );
  1238. return true;
  1239. }
  1240. bool CExtAnimationSite::AnimationSite_Init( bool bHookEnabled )
  1241. {
  1242. ASSERT( this != NULL );
  1243. m_AcHS.AnimationSiteSet( NULL, false );
  1244. HWND hWnd = AnimationSite_GetSafeHWND();
  1245. if( hWnd == NULL )
  1246. return false;
  1247. ASSERT( ::IsWindow( hWnd ) );
  1248. m_AcHS.AnimationSiteSet( this, bHookEnabled );
  1249. if( ! m_AcHS.IsHookedWindow( hWnd ) )
  1250. return false;
  1251. return true;
  1252. }
  1253. void CExtAnimationSite::AnimationSite_Done()
  1254. {
  1255. ASSERT( this != NULL );
  1256. m_AcHS.AnimationSiteSet( NULL, false );
  1257. }
  1258. void CExtAnimationSite::AnimationSite_OnClientStateChanged(
  1259. CExtAnimationClient * pAC,
  1260. INT eAPT // __EAPT_*** animation type
  1261. )
  1262. {
  1263. ASSERT( this != NULL );
  1264. ASSERT( pAC != NULL );
  1265. AnimationSite_ClientProgressStart( pAC, eAPT );
  1266. }
  1267. void CExtAnimationSite::AnimationSite_PassAnimationEvents()
  1268. {
  1269. ASSERT( this != NULL );
  1270. if( ! AnimationSite_EnabledGet() )
  1271. return;
  1272. HWND hWnd = AnimationSite_GetSafeHWND();
  1273. // Pass timers first for animation issues
  1274. bool bTimersFound = false;
  1275. MSG msg;
  1276. for( ; ::PeekMessage( &msg, hWnd, WM_TIMER, WM_TIMER, PM_NOREMOVE );  )
  1277. {
  1278. if( ! ::GetMessage( &msg, hWnd, WM_TIMER, WM_TIMER ) )
  1279. break;
  1280. ::DispatchMessage( &msg );
  1281. bTimersFound = true;
  1282. }
  1283. for( ; ::PeekMessage( &msg, hWnd, __EXT_MFC_WM_MOUSEFIRST, __EXT_MFC_WM_MOUSELAST, PM_NOREMOVE );  )
  1284. {
  1285. if( ! ::GetMessage( &msg, hWnd, __EXT_MFC_WM_MOUSEFIRST, __EXT_MFC_WM_MOUSELAST ) )
  1286. break;
  1287. ::DispatchMessage( &msg );
  1288. bTimersFound = true;
  1289. }
  1290. if( bTimersFound )
  1291. {
  1292. CExtPaintManager::stat_PassPaintMessages();
  1293. // if( hWnd != NULL )
  1294. // UpdateWindow( hWnd );
  1295. }
  1296. }
  1297. void CExtAnimationSite::AnimationSite_OnProgressShutdownTimer( UINT nTimerID )
  1298. {
  1299. ASSERT( this != NULL );
  1300. ASSERT( nTimerID != __EXT_MFC_DEF_ANIMATION_TIMER_INVALID_ID );
  1301. nTimerID;
  1302. }
  1303. /////////////////////////////////////////////////////////////////////////////
  1304. // CExtAnimationSingleton
  1305. CExtAnimationSingleton::CExtAnimationSingleton(
  1306. bool bAsEnabled, // = true
  1307. INT nAcStepNumber, //  = 0
  1308. INT nAcStepCount, //  = __EXT_MFC_DEF_ANIMATION_STEP_COUNT
  1309. UINT nAcTimerElapse, //  = __EXT_MFC_DEF_ANIMATION_TIMER_ELAPSE
  1310. const RECT * pAcRcAnimationTarget //  = NULL
  1311. )
  1312. : CExtAnimationSite(
  1313. bAsEnabled
  1314. )
  1315. , CExtAnimationClient(
  1316. NULL,
  1317. bAsEnabled,
  1318. false,
  1319. nAcStepNumber,
  1320. nAcStepCount,
  1321. nAcTimerElapse,
  1322. pAcRcAnimationTarget
  1323. )
  1324. {
  1325. AnimationClient_SiteSet( this );
  1326. AnimationSite_ClientAdd( this );
  1327. }
  1328. CExtAnimationSingleton::~CExtAnimationSingleton()
  1329. {
  1330. CExtAnimationSite * pAcAS = AnimationClient_SiteGet();
  1331. if( pAcAS != NULL )
  1332. pAcAS->AnimationSite_ClientRemove( this );
  1333. }
  1334. /////////////////////////////////////////////////////////////////////////////
  1335. #define __TIMER_ID_DRAGGING_START 4100
  1336. #define __TIMER_ID_DRELAYED_REPAINT_FAKE 4101
  1337. //#define __TIMER_ID_DELAYED_UPDATE 4102
  1338. #define __DOCKSITE_DCX_FLAGS 
  1339. ( DCX_WINDOW 
  1340. |DCX_CACHE 
  1341. |DCX_LOCKWINDOWUPDATE 
  1342. |DCX_CLIPSIBLINGS 
  1343. )
  1344. #define __BAR_NC_GAP_X 1 //afxData.cxBorder2
  1345. #define __BAR_NC_GAP_Y 1 //afxData.cyBorder2
  1346. #define __DOCKING_SIDE_GAP 10
  1347. static HCURSOR g_hCursorArrow = ::LoadCursor( NULL, IDC_ARROW );
  1348. static HCURSOR g_hCursorDrag = ::LoadCursor( NULL, IDC_SIZEALL );
  1349. static HCURSOR g_hCursorResizeV = ::LoadCursor( NULL, IDC_SIZENS );
  1350. static HCURSOR g_hCursorResizeH = ::LoadCursor( NULL, IDC_SIZEWE );
  1351. /////////////////////////////////////////////////////////////////////////////
  1352. // CExtControlBar::FriendlyDockBarHack
  1353. class CExtControlBar::FriendlyDockBarHack
  1354. : CDockBar
  1355. {
  1356. public:
  1357. friend class CExtControlBar;
  1358. friend class CExtControlBar::InternalDraggingState_t;
  1359. INT GetCalcExtentMax( BOOL bHorz )
  1360. {
  1361. ASSERT( this != NULL );
  1362. ASSERT_VALID( this );
  1363. ASSERT( m_pDockSite != NULL );
  1364. ASSERT_VALID( m_pDockSite );
  1365. ASSERT_KINDOF( CDockBar, this );
  1366. INT nCalcExtentMax = bHorz
  1367. ? m_rectLayout.Width()
  1368. : m_rectLayout.Height();
  1369. ASSERT( nCalcExtentMax >= 0 );
  1370. if( nCalcExtentMax == 0
  1371. || m_rectLayout.IsRectEmpty()
  1372. )
  1373. {
  1374. CRect rcDock;
  1375. GetClientRect( &rcDock );
  1376. nCalcExtentMax = bHorz
  1377. ? rcDock.Width()  // + 2
  1378. : rcDock.Height() // - 2
  1379. ;
  1380. if( nCalcExtentMax <= 0 )
  1381. return 3; // dummy choice
  1382. } // if( nCalcExtentMax == 0 )
  1383. return nCalcExtentMax;
  1384. }
  1385. void _InsertBar( INT nPos, CControlBar * pBar )
  1386. {
  1387. ASSERT_VALID( this );
  1388. ASSERT( nPos >= 0 && nPos < m_arrBars.GetSize() );
  1389. m_arrBars.InsertAt( nPos, pBar );
  1390. ASSERT_VALID( this );
  1391. #ifdef _DEBUG
  1392. if( pBar != NULL )
  1393. {
  1394. ASSERT_BAR_LOCATION_IN_ROW( this, pBar );
  1395. }
  1396. #endif // _DEBUG
  1397. }
  1398. void _InsertRowSplitter( INT nPos )
  1399. {
  1400. ASSERT_VALID( this );
  1401. _InsertBar( nPos, NULL );
  1402. ASSERT_VALID( this );
  1403. }
  1404. }; // class CExtControlBar::FriendlyDockBarHack
  1405. /////////////////////////////////////////////////////////////////////////////
  1406. // CExtControlBar::POPUP_MENU_EVENT_DATA
  1407. CExtControlBar::POPUP_MENU_EVENT_DATA::POPUP_MENU_EVENT_DATA(
  1408. SHORT nHelperNotificationType,
  1409. CExtPopupMenuWnd * pPopupMenuWnd,
  1410. CWnd * pWndEventSrc,
  1411. const POINT & ptScreen,
  1412. UINT nMsgID, // = WM_NULL
  1413. CObject * pObjectSrc // = NULL
  1414. )
  1415. : m_nHelperNotificationType( nHelperNotificationType )
  1416. , m_pPopupMenuWnd( pPopupMenuWnd )
  1417. , m_pWndEventSrc( pWndEventSrc )
  1418. , m_ptScreen( ptScreen )
  1419. , m_nMsgID( nMsgID )
  1420. , m_pObjectSrc( pObjectSrc )
  1421. , m_pWndInitialTarget( NULL )
  1422. , m_bPostNotification( false )
  1423. {
  1424. ASSERT_VALID( m_pPopupMenuWnd );
  1425. ASSERT_VALID( m_pWndEventSrc );
  1426. ASSERT( m_pWndEventSrc->GetSafeHwnd() != NULL );
  1427. ASSERT( ::IsWindow(m_pWndEventSrc->GetSafeHwnd()) );
  1428. if( m_ptScreen.x < 0 || m_ptScreen.y < 0 )
  1429. {
  1430. if( ! ::GetCursorPos( &m_ptScreen ) )
  1431. m_ptScreen.x = m_ptScreen.y = 0;
  1432. }
  1433. }
  1434. CExtControlBar::POPUP_MENU_EVENT_DATA::~POPUP_MENU_EVENT_DATA()
  1435. {
  1436. }
  1437. bool CExtControlBar::POPUP_MENU_EVENT_DATA::IsControlBarMenuListNotification() const
  1438. {
  1439. switch( m_nHelperNotificationType )
  1440. {
  1441. case __PMED_DOCKBAR_CTX:
  1442. case __PMED_CONTROLBAR_CTX:
  1443. case __PMED_CONTROLBAR_NC_CTX:
  1444. case __PMED_STATUSBAR_CTX:
  1445. case __PMED_AUTOHIDESLIDER_CTX:
  1446. case __PMED_MINIFRAME_NC_CTX:
  1447. case __PMED_MDICLIAREA_CTX:
  1448. case __PMED_CONTROLBAR_NCBTNMENU_BARS:
  1449. case __PMED_CTXEXPBTN_BARS:
  1450. return true;
  1451. } // switch( m_nHelperNotificationType )
  1452. return false;
  1453. }
  1454. CExtControlBar::POPUP_MENU_EVENT_DATA::operator WPARAM() const
  1455. {
  1456. return ( (WPARAM) this );
  1457. }
  1458. CExtControlBar::POPUP_MENU_EVENT_DATA *
  1459. CExtControlBar::POPUP_MENU_EVENT_DATA::FromWParam( WPARAM wParam )
  1460. {
  1461. return ( (POPUP_MENU_EVENT_DATA *) wParam );
  1462. }
  1463. CExtControlBar::POPUP_MENU_EVENT_DATA *
  1464. CExtControlBar::POPUP_MENU_EVENT_DATA::FromMSG( MSG * pMSG )
  1465. {
  1466. ASSERT( pMSG != NULL );
  1467. ASSERT( pMSG->message == CExtControlBar::g_nMsgConstructPopupMenu );
  1468. return FromWParam( pMSG->wParam );
  1469. }
  1470. bool CExtControlBar::POPUP_MENU_EVENT_DATA::NotifyTarget(
  1471. bool bPostNotification
  1472. )
  1473. {
  1474. ASSERT_VALID( m_pPopupMenuWnd );
  1475. ASSERT_VALID( m_pWndEventSrc );
  1476. ASSERT( m_pWndEventSrc->GetSafeHwnd() != NULL );
  1477. ASSERT( ::IsWindow(m_pWndEventSrc->GetSafeHwnd()) );
  1478. m_bPostNotification = bPostNotification;
  1479. CControlBar * pBar = DYNAMIC_DOWNCAST( CControlBar, m_pWndEventSrc );
  1480. if( pBar != NULL )
  1481. m_pWndInitialTarget = pBar->m_pDockSite;
  1482. if( m_pWndInitialTarget == NULL )
  1483. {
  1484. m_pWndInitialTarget =  m_pWndEventSrc->GetParentFrame();
  1485. if( m_pWndInitialTarget == NULL )
  1486. {
  1487. m_pWndInitialTarget = m_pWndEventSrc->GetParent();
  1488. ASSERT_VALID( m_pWndInitialTarget );
  1489. }
  1490. else if( m_pWndInitialTarget->IsKindOf(RUNTIME_CLASS(CMiniDockFrameWnd)) )
  1491. {
  1492. m_pWndInitialTarget = m_pWndInitialTarget->GetParentFrame();
  1493. ASSERT_VALID( m_pWndInitialTarget );
  1494. ASSERT( ! m_pWndInitialTarget->IsKindOf(RUNTIME_CLASS(CMiniDockFrameWnd)) );
  1495. }
  1496. }
  1497. ASSERT_VALID( m_pWndInitialTarget );
  1498. ASSERT( m_pWndInitialTarget->GetSafeHwnd() != NULL );
  1499. ASSERT( ::IsWindow(m_pWndInitialTarget->GetSafeHwnd()) );
  1500. LRESULT lResult =
  1501. m_pWndInitialTarget->SendMessage(
  1502. CExtControlBar::g_nMsgConstructPopupMenu,
  1503. *this
  1504. );
  1505. return (lResult != 0) ? true : false;
  1506. }
  1507. /////////////////////////////////////////////////////////////////////////////
  1508. // CExtControlBar
  1509. IMPLEMENT_DYNCREATE( CExtControlBar, CControlBar );
  1510. void CExtControlBar::PmBridge_OnPaintManagerChanged(
  1511. CExtPaintManager * pGlobalPM
  1512. )
  1513. {
  1514. ASSERT_VALID( this );
  1515. if( GetSafeHwnd() != NULL )
  1516. {
  1517. CUSTOM_NC_AREA_QUERY_DATA _cnaqd( this );
  1518. _cnaqd.Notify();
  1519. } // if( GetSafeHwnd() != NULL )
  1520. CExtAnimationSite::PmBridge_OnPaintManagerChanged(
  1521. pGlobalPM
  1522. );
  1523. }
  1524. //CCriticalSection CExtControlBar::g_csCB;
  1525. ExtControlBarVector_t CExtControlBar::g_AllBars;
  1526. CExtControlBar::InternalDockBarInfo_t CExtControlBar::g_DockBarInfo;
  1527. bool CExtControlBar::g_bEnableOnIdleCalls = false;
  1528. bool CExtControlBar::g_bUseAdvancedToolTips = true;
  1529. #if (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  1530. bool CExtControlBar::g_bUseMouseClickOnlyInAutoHideTabs = false; // (+ v.2.82) 
  1531. bool CExtControlBar::g_bUseMouseClickOnOffStyleAutoHideTabs = false; // (+ v.2.83) 
  1532. bool CExtControlBar::g_bAllowAutohideTabsOleDropTarget = true; // (+ v.2.23)
  1533. bool CExtControlBar::g_bAllowDynamicTabsOleDropTarget = true; // (+ v.2.23)
  1534. bool CExtControlBar::g_bAllowKeyboardTabSwitch = true; // (+ v.2.24)
  1535. bool CExtControlBar::g_bAllowKeyboardAutohideSwitch = true; // (+ v.2.24)
  1536. bool CExtControlBar::g_bCloseOnlyOneBarInTabGroup = false; // (+ v.2.40)
  1537. bool CExtControlBar::g_bTabsAtTop = false; // (+ v.2.43)
  1538. DWORD CExtControlBar::g_dwTabContainerTabsStyle = __ETWS_EQUAL_WIDTHS; // | __ETWS_MULTI_ROW_COLUMN | __ETWS_FULL_WIDTH
  1539. #endif // (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  1540. CExtControlBar::eResizablePanelDockingType_t CExtControlBar::g_eResizablePanelDockingType
  1541. = CExtControlBar::__RESIZABLE_DOCKING_TYPE_BY_THEME;
  1542. #if (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  1543. CExtControlBar::eAutoHideTabsType_t CExtControlBar::g_eAutoHideTabsType
  1544. = CExtControlBar::__AUTOHIDE_TABS_TYPE_BY_THEME;
  1545. #endif // (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  1546. const UINT CExtControlBar::g_nMsgQueryFocusChangingEnabled =
  1547. ::RegisterWindowMessage(
  1548. _T("CExtControlBar::g_nMsgQueryFocusChangingEnabled")
  1549. );
  1550. const UINT CExtControlBar::g_nMsgQueryRepositionCalcEffect =
  1551. ::RegisterWindowMessage(
  1552. _T("CExtControlBar::g_nMsgQueryRepositionCalcEffect")
  1553. );
  1554. const UINT CExtControlBar::g_nMsgQueryIcon =
  1555. ::RegisterWindowMessage(
  1556. _T("CExtControlBar::g_nMsgQueryIcon")
  1557. );
  1558. const UINT CExtControlBar::g_nMsgPutToPopupMenu =
  1559. ::RegisterWindowMessage(
  1560. _T("CExtControlBar::g_nMsgPutToPopupMenu")
  1561. );
  1562. const UINT CExtControlBar::g_nMsgConstructPopupMenu =
  1563. ::RegisterWindowMessage(
  1564. _T("CExtControlBar::g_nMsgConstructPopupMenu")
  1565. );
  1566. #if (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  1567. int CExtControlBar::g_nTabDrarDropSelectionDelay = 500;
  1568. const UINT CExtControlBar::g_nMsgCreateTabbedBar =
  1569. ::RegisterWindowMessage(
  1570. _T("CExtControlBar::g_nMsgCreateTabbedBar")
  1571. );
  1572. bool CExtControlBar::g_bDisableAutoHideAnimationExpanding = false;
  1573. bool CExtControlBar::g_bDisableAutoHideAnimationCollapsing = false;
  1574. INT CExtControlBar::g_nAutoHideAnimationStepCount = 5;
  1575. INT CExtControlBar::g_nAutoHideAnimationStepTime = 10;
  1576. const int CExtControlBar::g_nTabShapeMaxHeight = 18;
  1577. const int CExtControlBar::g_nTabShapeBottomLeftAreaWidth = 8;
  1578. const int CExtControlBar::g_nTabShapeBottomMiddleAreaWidth = 36;
  1579. #endif // (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  1580. const UINT CExtControlBar::g_nMsgDrawTrackedArea =
  1581. ::RegisterWindowMessage(
  1582. _T("CExtControlBar::g_nMsgDrawTrackedArea")
  1583. );
  1584. CExtControlBar * CExtControlBar::g_pBarToggleFloatingState = NULL;
  1585. CExtControlBar * CExtControlBar::_GetBarToggleFloatingState()
  1586. {
  1587. return g_pBarToggleFloatingState;
  1588. }
  1589. CExtControlBar::QueryFocusChangingEnabled_t::QueryFocusChangingEnabled_t(
  1590. CWnd * pWndQueryOwner,
  1591. HWND hWndNewFocusOwner
  1592. )
  1593. : m_bFocusChangingEnabled( true )
  1594. , m_pWndQueryOwner( pWndQueryOwner )
  1595. , m_hWndNewFocusOwner( hWndNewFocusOwner )
  1596. {
  1597. ASSERT_VALID( m_pWndQueryOwner );
  1598. ASSERT( m_pWndQueryOwner->GetSafeHwnd() != NULL );
  1599. ASSERT( m_hWndNewFocusOwner != NULL && ::IsWindow( m_hWndNewFocusOwner ) );
  1600. }
  1601. bool CExtControlBar::stat_QueryFocusChangingEnabled(
  1602. HWND hWndNotifyTarget,
  1603. CWnd * pWndQueryOwner,
  1604. HWND hWndNewFocusOwner
  1605. )
  1606. {
  1607. ASSERT( hWndNotifyTarget != NULL && ::IsWindow( hWndNotifyTarget ) );
  1608. ASSERT_VALID( pWndQueryOwner );
  1609. ASSERT( pWndQueryOwner->GetSafeHwnd() != NULL );
  1610. ASSERT( hWndNewFocusOwner != NULL && ::IsWindow( hWndNewFocusOwner ) );
  1611. CExtControlBar * pBar = DYNAMIC_DOWNCAST( CExtControlBar, pWndQueryOwner );
  1612. if( pBar != NULL
  1613. && pBar->IsFixedMode()
  1614. )
  1615. return false;
  1616. QueryFocusChangingEnabled_t _QFCE( pWndQueryOwner, hWndNewFocusOwner );
  1617. ::SendMessage( hWndNotifyTarget, g_nMsgQueryFocusChangingEnabled, _QFCE, 0 );
  1618. return _QFCE.m_bFocusChangingEnabled;
  1619. }
  1620. bool CExtControlBar::stat_QueryFocusChangingEnabled(
  1621. CExtControlBar * pWndQueryOwner,
  1622. HWND hWndNewFocusOwner
  1623. )
  1624. {
  1625. ASSERT_VALID( pWndQueryOwner );
  1626. ASSERT( pWndQueryOwner->GetSafeHwnd() != NULL );
  1627. ASSERT( hWndNewFocusOwner != NULL && ::IsWindow( hWndNewFocusOwner ) );
  1628. HWND hWndNotifyTarget = pWndQueryOwner->m_pDockSite->GetSafeHwnd();
  1629. if( hWndNotifyTarget == NULL )
  1630. hWndNotifyTarget = ::GetParent( pWndQueryOwner->m_hWnd );
  1631. return
  1632. stat_QueryFocusChangingEnabled(
  1633. hWndNotifyTarget,
  1634. pWndQueryOwner,
  1635. hWndNewFocusOwner
  1636. );
  1637. }
  1638. bool CExtControlBar::stat_DragDetect_ImplStep(
  1639. HWND hWnd,
  1640. POINT pt,
  1641. UINT nUpMessage // = WM_LBUTTONUP
  1642. )
  1643. {
  1644. if( hWnd == NULL || (! ::IsWindow( hWnd ) ) )
  1645. return false;
  1646. CSize sizeDrag( ::GetSystemMetrics( SM_CXDRAG ), ::GetSystemMetrics( SM_CYDRAG ) );
  1647. CRect rc( pt.x - sizeDrag.cx, pt.y - sizeDrag.cy, pt.x + sizeDrag.cx, pt.y + sizeDrag.cy );
  1648. ::SetCapture( hWnd );
  1649. for( MSG _msg; ::IsWindow( hWnd ) ; )
  1650.     {
  1651.         for( ;
  1652. ::IsWindow( hWnd )
  1653. && ( ::PeekMessage( &_msg, hWnd, WM_MOUSEFIRST, WM_MOUSELAST, PM_NOREMOVE )
  1654. || ::PeekMessage( &_msg, 0, WM_CANCELMODE, WM_CANCELMODE, PM_NOREMOVE )
  1655. || ::PeekMessage( &_msg, 0, WM_ACTIVATEAPP, WM_ACTIVATEAPP, PM_NOREMOVE )
  1656. )
  1657. ;
  1658. )
  1659.         {
  1660.             if( _msg.message == nUpMessage
  1661. || _msg.message == WM_CANCELMODE
  1662. || _msg.message == WM_ACTIVATEAPP
  1663. )
  1664.             {
  1665.                 ::ReleaseCapture();
  1666.                 return false;
  1667.             }
  1668. ::PeekMessage( &_msg, hWnd, _msg.message, _msg.message, PM_REMOVE );
  1669.             if( _msg.message == WM_MOUSEMOVE )
  1670.             {
  1671.                 CPoint ptMessage( LOWORD( _msg.lParam ), HIWORD( _msg.lParam ) );
  1672.                 if( ! rc.PtInRect( ptMessage ) )
  1673.                 {
  1674.                     ReleaseCapture();
  1675.                     return true;
  1676.                 }
  1677.             }
  1678.        }
  1679.         ::WaitMessage();
  1680.     }
  1681.     return false;
  1682. }
  1683. bool CExtControlBar::stat_DoDragDetect(
  1684. HWND hWnd,
  1685. const POINT & ptWndClient,
  1686. UINT nUpMessage // = WM_LBUTTONUP
  1687. )
  1688. {
  1689. if( hWnd == NULL || (! ::IsWindow( hWnd ) ) )
  1690. return false;
  1691. CPoint ptScreen = ptWndClient;
  1692. ::ClientToScreen( hWnd, &ptScreen );
  1693. for( ; stat_DragDetect_ImplStep( hWnd, ptScreen, nUpMessage ) ; )
  1694. {
  1695. POINT ptCursorPos = { -32767, -32767 };
  1696. if( ! ::GetCursorPos( &ptCursorPos ) )
  1697. return false;
  1698. if(  ptScreen == ptCursorPos )
  1699. continue; //only drag time elapsed but mouse is not moved
  1700. return true;
  1701. }
  1702. return false;
  1703. }
  1704. static CExtSafeString productsection2regkeypath(
  1705. __EXT_MFC_SAFE_LPCTSTR sProfileName,
  1706. __EXT_MFC_SAFE_LPCTSTR sSectionNameCompany, // under HKEY_CURRENT_USERSoftware
  1707. __EXT_MFC_SAFE_LPCTSTR sSectionNameProduct // under HKEY_CURRENT_USERSoftware%sSectionNameCompany%
  1708. )
  1709. {
  1710. return CExtCmdManager::GetSubSystemRegKeyPath(
  1711. __PROF_UIS_REG_CONTROL_BAR,
  1712. sProfileName,
  1713. sSectionNameCompany,
  1714. sSectionNameProduct
  1715. );
  1716. }
  1717. CExtControlBar::InternalDockBarInfo_t::InternalDockBarInfo_t()
  1718. {
  1719. m_mapDockBarInfo.SetAt(
  1720. AFX_IDW_DOCKBAR_TOP,
  1721. CBRS_TOP
  1722. );
  1723. m_mapDockBarInfo.SetAt(
  1724. AFX_IDW_DOCKBAR_BOTTOM,
  1725. CBRS_BOTTOM
  1726. );
  1727. m_mapDockBarInfo.SetAt(
  1728. AFX_IDW_DOCKBAR_LEFT,
  1729. CBRS_LEFT
  1730. );
  1731. m_mapDockBarInfo.SetAt(
  1732. AFX_IDW_DOCKBAR_RIGHT,
  1733. CBRS_RIGHT
  1734. );
  1735. }
  1736. DWORD CExtControlBar::InternalDockBarInfo_t::operator [] ( UINT nDockBarID )
  1737. {
  1738. DWORD dwStyle = 0;
  1739. VERIFY( m_mapDockBarInfo.Lookup(nDockBarID,dwStyle) );
  1740. return dwStyle;
  1741. }
  1742. bool CExtControlBar::InternalDockBarInfo_t::ReplaceFrameDockBar(
  1743. UINT nDockBarID,
  1744. DWORD dwDockStyle,
  1745. CFrameWnd * pFrame
  1746. )
  1747. {
  1748. ASSERT_VALID(pFrame);
  1749. ASSERT((dwDockStyle & ~(CBRS_ALIGN_ANY|CBRS_FLOAT_MULTI)) == 0);
  1750. DWORD dwDockBarStyle = (*this)[nDockBarID];
  1751. if( (dwDockBarStyle&dwDockStyle&CBRS_ALIGN_ANY) == 0 )
  1752. return false;
  1753. CDockBar * pDockBar = (CDockBar*)
  1754. pFrame->GetControlBar(nDockBarID);
  1755. ASSERT_VALID( pDockBar );
  1756. ASSERT_KINDOF( CDockBar, pDockBar );
  1757. if( pDockBar->IsKindOf(
  1758. RUNTIME_CLASS(CExtDockOuterBar)
  1759. )
  1760. )
  1761. return true;
  1762. BOOL bExplicitDelete = !pDockBar->m_bAutoDelete;
  1763. pDockBar->m_pDockSite->RemoveControlBar( pDockBar );
  1764. pDockBar->m_pDockSite = NULL;
  1765. pDockBar->DestroyWindow();
  1766. if( bExplicitDelete )
  1767. delete pDockBar;
  1768. CExtDockBar * pDockBarEx = new CExtDockOuterBar();
  1769. DWORD dwStyle =
  1770. WS_CHILD|WS_VISIBLE
  1771. |WS_CLIPSIBLINGS|WS_CLIPCHILDREN
  1772. |dwDockBarStyle
  1773. ;
  1774. if( ! pDockBarEx->Create(
  1775. pFrame,
  1776. dwStyle,
  1777. nDockBarID
  1778. )
  1779. )
  1780. {
  1781. ASSERT( FALSE );
  1782. return false;
  1783. }
  1784. return true;
  1785. }
  1786. CExtControlBar::CExtControlBar()
  1787. : m_bGripperStaticallyAtTop( true )
  1788. //, m_bAllowContractExpand( false ) // (- v.2.24)
  1789. , m_bDoNotEraseClientBackground( false )
  1790. , m_bPresubclassDialogMode( false )
  1791. , m_bReflectParentSizing( true )
  1792. , m_bInCustomModeUpdateCmdUI( false )
  1793. , m_bFixedMode( false )
  1794. , m_bNoForcedRecalcMetrics( false )
  1795. , m_bAppearInDockSiteControlBarPopupMenu( true )
  1796. , m_nGripHeightAtTop( ::GetSystemMetrics(SM_CYSMCAPTION)+1 )
  1797. , m_nGripWidthAtLeft( ::GetSystemMetrics(SM_CYSMCAPTION)+1 )
  1798. , m_nSeparatorHeight( min( 4, ::GetSystemMetrics(SM_CYSIZEFRAME) ) )
  1799. , m_nSeparatorWidth(  min( 4, ::GetSystemMetrics(SM_CXSIZEFRAME) ) )
  1800. , m_nTrackerOffset( 0 )
  1801. , m_nMetricOffset( 0 )
  1802. , m_sizeDockedH( 200, 150 )
  1803. , m_sizeDockedV( 150, 200 )
  1804. , m_sizeFloated( 200, 200 )
  1805. , m_bRowResizing( false )
  1806. , m_bRowRecalcing( false )
  1807. , m_bDragging( false )
  1808. , m_bReposSingleChildMode( true )
  1809. , m_ptHelperDragOffsetFloated( 0, 0 )
  1810. , m_ptHelperDragOffsetDockedH( 0, 0 )
  1811. , m_ptHelperDragOffsetDockedV( 0, 0 )
  1812. , m_ptFloatHelper( 0, 0 )
  1813. , m_bWindowActive( false )
  1814. , m_bTopRecalcing( false )
  1815. , m_bNcAreaBtnTracking( false )
  1816. #if (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  1817. , m_bAutoHideDeactivateOnEsc( false )
  1818. , m_bAutoHideMode( false )
  1819. #endif // (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  1820. , m_ptDraggingLast( -1, -1 )
  1821. , m_bUpdatingChain( false )
  1822. , m_nDelayedRowUpdateMetric( 0 )
  1823. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1824. , m_bVisibleInCustomizeListBox( false )
  1825. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  1826. , m_nTearOffCmdID( 0 )
  1827. , m_bSuspendTips( false )
  1828. , m_bDelelayRepaintNcButtons( false )
  1829. , m_bHelperSuppressDestruction( false )
  1830. #if (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  1831. , m_nAutoHideWidth( -1 )
  1832. , m_nAutoHideHeight( -1 )
  1833. #endif // (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  1834. , m_bDisplaying( false )
  1835. , m_bVisCheckFlag( false )
  1836. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  1837. , m_pNotifiedCustomizeSite( NULL )
  1838. #endif
  1839. , m_bUseInvisibleCmdUI( false )
  1840. , m_eCBPC( CExtControlBar::__ECBPC_EMPTY )
  1841. , m_nFlashCaptionCounter( 0 )
  1842. , m_nFlashCaptionStepMilliseconds( 0 )
  1843. , m_nFlashCaptionTimerID( 99 )
  1844. , m_clrFlashCaptionText( COLORREF(-1L) )
  1845. , m_clrFlashCaptionBackground( COLORREF(-1L) )
  1846. , m_bFlashCaptionHighlightedState( false )
  1847. , m_bDelayShowInvoked( false )
  1848. , m_bDelayShowFlag( false )
  1849. {
  1850. VERIFY( RegisterControlBarClass() );
  1851. m_nMinHW = ::GetSystemMetrics( SM_CYSMCAPTION ) + 1 + m_nSeparatorWidth;
  1852. m_nMinVH = ::GetSystemMetrics( SM_CYSMCAPTION ) + 1 + m_nSeparatorHeight;
  1853. m_rcGrip.SetRectEmpty();
  1854. m_rcRowResize.SetRectEmpty();
  1855. m_rcRowRecalc.SetRectEmpty();
  1856. m_rcRowRecalcUp.SetRectEmpty();
  1857. //CSingleLock _slCsCB( &g_csCB );
  1858. // _slCsCB.Lock();
  1859. g_AllBars.Add( this );
  1860. // _slCsCB.Unlock();
  1861. }
  1862. CExtControlBar::~CExtControlBar()
  1863. {
  1864. AnimationSite_ClientRemove( 0, -1, false );
  1865. //CSingleLock _slCsCB( &g_csCB );
  1866. // _slCsCB.Lock();
  1867. INT nCountOfExtBars = (INT)g_AllBars.GetSize();
  1868. for( INT nExtBar = 0; nExtBar < nCountOfExtBars; nExtBar++ )
  1869. {
  1870. CExtControlBar * pBar = g_AllBars[ nExtBar ];
  1871. ASSERT( pBar != NULL );
  1872. if( pBar == this )
  1873. {
  1874. g_AllBars.RemoveAt( nExtBar );
  1875. break;
  1876. }
  1877. } // for( INT nExtBar = 0; nExtBar < nCountOfExtBars; nExtBar++ )
  1878. // _slCsCB.Unlock();
  1879. NcButtons_RemoveAll();
  1880. }
  1881. BEGIN_MESSAGE_MAP(CExtControlBar, CControlBar)
  1882. //{{AFX_MSG_MAP(CExtControlBar)
  1883. ON_WM_NCCALCSIZE()
  1884. ON_WM_NCPAINT()
  1885. ON_WM_CANCELMODE()
  1886. ON_WM_CAPTURECHANGED()
  1887. ON_WM_MOUSEMOVE()
  1888. ON_WM_NCLBUTTONDOWN()
  1889. ON_WM_NCLBUTTONUP()
  1890.     ON_WM_RBUTTONDOWN()
  1891.     ON_WM_MBUTTONDOWN()
  1892.     ON_WM_LBUTTONDOWN()
  1893. ON_WM_LBUTTONUP()
  1894.     ON_WM_LBUTTONDBLCLK()
  1895. ON_WM_RBUTTONUP()
  1896. ON_WM_SIZE()
  1897. ON_WM_NCLBUTTONDBLCLK()
  1898. ON_WM_NCRBUTTONUP()
  1899. ON_WM_NCLBUTTONDOWN()
  1900. ON_WM_NCMBUTTONDOWN()
  1901. ON_WM_NCRBUTTONDOWN()
  1902. ON_WM_SHOWWINDOW()
  1903. ON_WM_SETFOCUS()
  1904. ON_WM_CONTEXTMENU()
  1905. ON_WM_TIMER()
  1906. //}}AFX_MSG_MAP
  1907.     ON_MESSAGE( WM_SETTEXT, OnSetText )
  1908. ON_MESSAGE( WM_SIZEPARENT, OnSizeParent )
  1909. ON_MESSAGE( WM_HELPHITTEST, OnHelpHitTest )
  1910. ON_WM_SYSCOLORCHANGE()
  1911. __EXT_MFC_SAFE_ON_WM_SETTINGCHANGE()
  1912. ON_MESSAGE( WM_DISPLAYCHANGE, OnDisplayChange )
  1913. ON_MESSAGE( __ExtMfc_WM_THEMECHANGED, OnThemeChanged )
  1914. __EXT_MFC_ON_WM_NCHITTEST()
  1915. ON_MESSAGE_VOID( WM_INITIALUPDATE, OnInitialUpdate )
  1916. ON_MESSAGE( WM_IDLEUPDATECMDUI, OnIdleUpdateCmdUI )
  1917. END_MESSAGE_MAP()
  1918. BOOL CExtControlBar::Create(
  1919. __EXT_MFC_SAFE_LPCTSTR lpszWindowName,
  1920. CWnd * pParentWnd,
  1921.     UINT nID, // = AFX_IDW_DIALOGBAR
  1922. DWORD dwStyle // =
  1923. //WS_CHILD|WS_VISIBLE|WS_CLIPCHILDREN|WS_CLIPSIBLINGS
  1924. //|CBRS_TOP|CBRS_GRIPPER|CBRS_TOOLTIPS
  1925. //|CBRS_FLYBY|CBRS_SIZE_DYNAMIC
  1926. //|CBRS_HIDE_INPLACE
  1927. )
  1928. {
  1929.     ASSERT_VALID( pParentWnd );
  1930.  
  1931. if( !RegisterControlBarClass() )
  1932. {
  1933. ASSERT( FALSE );
  1934. return FALSE;
  1935. }
  1936. ASSERT(
  1937. !((dwStyle & CBRS_SIZE_FIXED)
  1938. &&
  1939.         (dwStyle & CBRS_SIZE_DYNAMIC))
  1940. );
  1941.     m_dwStyle = dwStyle & CBRS_ALL;
  1942. CExtSafeString sWindowName( (LPCTSTR(lpszWindowName) != NULL) ? LPCTSTR(lpszWindowName) : _T("") );
  1943. if( lpszWindowName == NULL && nID != 0 && nID != UINT(-1) )
  1944. {
  1945. CExtCmdItem * pCmdItem =
  1946. g_CmdManager->CmdGetPtr(
  1947. g_CmdManager->ProfileNameFromWnd( pParentWnd->GetSafeHwnd() ),
  1948. nID
  1949. );
  1950. if( pCmdItem != NULL )
  1951. {
  1952. sWindowName = pCmdItem->m_sMenuText;
  1953. sWindowName.Replace( _T("&"), _T("") );
  1954. }
  1955. else
  1956. {
  1957. if( ! g_ResourceManager->LoadString( sWindowName, nID ) )
  1958. sWindowName = _T("");
  1959. }
  1960. }
  1961. if( ! sWindowName.IsEmpty() )
  1962. {
  1963. int nNlPos = sWindowName.Find( _T('n') );
  1964. if( nNlPos >= 0 )
  1965. sWindowName = sWindowName.Left( nNlPos );
  1966. }
  1967.     
  1968. dwStyle &= ~CBRS_ALL;
  1969.     dwStyle |= WS_CLIPCHILDREN;
  1970. CExtSafeString sWndClassName(
  1971. ::AfxRegisterWndClass(
  1972. CS_DBLCLKS,
  1973. g_hCursorArrow,
  1974. PmBridge_GetPM()->GetBrush( COLOR_BTNFACE ),
  1975. 0
  1976. )
  1977. );
  1978. if( ! CWnd::Create(
  1979. sWndClassName,
  1980. sWindowName.IsEmpty() ? _T("") : sWindowName,
  1981. dwStyle,
  1982. CRect( 0, 0, 0, 0 ),
  1983. pParentWnd,
  1984. nID
  1985. )
  1986. )
  1987. {
  1988. ASSERT( FALSE );
  1989.         return FALSE;
  1990. }
  1991. if( ( (CWnd::GetExStyle()&(WS_EX_LAYOUTRTL|WS_EX_RTLREADING)) != 0 ) )
  1992. {
  1993. CWnd::ModifyStyleEx(
  1994. WS_EX_LAYOUTRTL|WS_EX_RTLREADING,
  1995. 0,
  1996. SWP_FRAMECHANGED
  1997. );
  1998. ASSERT( (CWnd::GetExStyle()&(WS_EX_LAYOUTRTL|WS_EX_RTLREADING)) == 0 );
  1999. } // if( ( (CWnd::GetExStyle()&(WS_EX_LAYOUTRTL|WS_EX_RTLREADING)) != 0 ) )
  2000.     return TRUE;
  2001. }
  2002. bool CExtControlBar::_SetupFloatingFrameWndImpl(
  2003. CFrameWnd * pFrame
  2004. )
  2005. {
  2006. ASSERT( pFrame != NULL );
  2007. return
  2008. ((CExtControlBar::InternalFriendlyFrameWnd *)pFrame)->
  2009. SetupSmilyFrameWnd();
  2010. }
  2011. bool CExtControlBar::_FrameEnableDockingImpl(
  2012. CFrameWnd * pFrame,
  2013. DWORD dwDockStyle, // = CBRS_ALIGN_ANY
  2014. bool bReplaceFloatingWnd // = true
  2015. {
  2016. // NOTE: this rule is specific for current implementation
  2017. ASSERT( dwDockStyle == CBRS_ALIGN_ANY );
  2018. ASSERT_VALID(pFrame);
  2019. ASSERT((dwDockStyle & ~(CBRS_ALIGN_ANY|CBRS_FLOAT_MULTI)) == 0);
  2020. pFrame->EnableDocking( dwDockStyle );
  2021. if( !g_DockBarInfo.ReplaceFrameDockBar(
  2022. AFX_IDW_DOCKBAR_TOP,
  2023. dwDockStyle,
  2024. pFrame
  2025. )
  2026. )
  2027. {
  2028. ASSERT( FALSE );
  2029. return false;
  2030. }
  2031. if( !g_DockBarInfo.ReplaceFrameDockBar(
  2032. AFX_IDW_DOCKBAR_BOTTOM,
  2033. dwDockStyle,
  2034. pFrame
  2035. )
  2036. )
  2037. {
  2038. ASSERT( FALSE );
  2039. return false;
  2040. }
  2041. if( !g_DockBarInfo.ReplaceFrameDockBar(
  2042. AFX_IDW_DOCKBAR_LEFT,
  2043. dwDockStyle,
  2044. pFrame
  2045. )
  2046. )
  2047. {
  2048. ASSERT( FALSE );
  2049. return false;
  2050. }
  2051. if( !g_DockBarInfo.ReplaceFrameDockBar(
  2052. AFX_IDW_DOCKBAR_RIGHT,
  2053. dwDockStyle,
  2054. pFrame
  2055. )
  2056. )
  2057. {
  2058. ASSERT( FALSE );
  2059. return false;
  2060. }
  2061. if( bReplaceFloatingWnd )
  2062. {
  2063. if( !_SetupFloatingFrameWndImpl( pFrame ) )
  2064. {
  2065. ASSERT( FALSE );
  2066. return false;
  2067. }
  2068. }
  2069. return true;
  2070. }
  2071. const CRect & CExtControlBar::_RectGripGet() const
  2072. {
  2073. ASSERT_VALID( this );
  2074. return m_rcGrip;
  2075. }
  2076. void CExtControlBar::_RectGripSet( const RECT & rcGrip )
  2077. {
  2078. ASSERT_VALID( this );
  2079. m_rcGrip = rcGrip;
  2080. }
  2081. const CRect & CExtControlBar::_RectRowResizeGet() const
  2082. {
  2083. ASSERT_VALID( this );
  2084. return m_rcRowResize;
  2085. }
  2086. void CExtControlBar::_RectRowResizeSet( const RECT & rcRowResize )
  2087. {
  2088. ASSERT_VALID( this );
  2089. m_rcRowResize = rcRowResize;
  2090. }
  2091. const CRect & CExtControlBar::_RectRowRecalcGet() const
  2092. {
  2093. ASSERT_VALID( this );
  2094. return m_rcRowRecalc;
  2095. }
  2096. void CExtControlBar::_RectRowRecalcSet( const RECT & rcRowRecalc )
  2097. {
  2098. ASSERT_VALID( this );
  2099. m_rcRowRecalc = rcRowRecalc;
  2100. }
  2101. const CRect & CExtControlBar::_RectRowRecalcUpGet() const
  2102. {
  2103. ASSERT_VALID( this );
  2104. return m_rcRowRecalcUp;
  2105. }
  2106. void CExtControlBar::_RectRowRecalcUpSet( const RECT & rcRowRecalcUp )
  2107. {
  2108. ASSERT_VALID( this );
  2109. m_rcRowRecalcUp = rcRowRecalcUp;
  2110. }
  2111. INT CExtControlBar::_GripperWidthAtLeftGet() const
  2112. {
  2113. ASSERT_VALID( this );
  2114. ASSERT( m_nGripWidthAtLeft >= 0 );
  2115. return m_nGripWidthAtLeft;
  2116. }
  2117. void CExtControlBar::_GripperWidthAtLeftSet( INT nGripWidthAtLeft )
  2118. {
  2119. ASSERT_VALID( this );
  2120. ASSERT( nGripWidthAtLeft >= 0 );
  2121. m_nGripWidthAtLeft = nGripWidthAtLeft;
  2122. }
  2123. INT CExtControlBar::_GripperHeightAtTopGet() const
  2124. {
  2125. ASSERT_VALID( this );
  2126. ASSERT( m_nGripHeightAtTop >= 0 );
  2127. return m_nGripHeightAtTop;
  2128. }
  2129. void CExtControlBar::_GripperHeightAtTopSet( INT nGripHeightAtTop )
  2130. {
  2131. ASSERT_VALID( this );
  2132. ASSERT( nGripHeightAtTop >= 0 );
  2133. m_nGripHeightAtTop = nGripHeightAtTop;
  2134. }
  2135. INT CExtControlBar::_SeparatorWidthGet() const
  2136. {
  2137. ASSERT_VALID( this );
  2138. ASSERT( m_nSeparatorWidth >= 0 );
  2139. return m_nSeparatorWidth;
  2140. }
  2141. void CExtControlBar::_SeparatorWidthSet( INT nSeparatorWidth )
  2142. {
  2143. ASSERT_VALID( this );
  2144. ASSERT( nSeparatorWidth >= 0 );
  2145. m_nSeparatorWidth = nSeparatorWidth;
  2146. }
  2147. INT CExtControlBar::_SeparatorHeightGet() const
  2148. {
  2149. ASSERT_VALID( this );
  2150. return m_nSeparatorHeight;
  2151. }
  2152. void CExtControlBar::_SeparatorHeightSet( INT nSeparatorHeight )
  2153. {
  2154. ASSERT_VALID( this );
  2155. ASSERT( nSeparatorHeight >= 0 );
  2156. m_nSeparatorHeight = nSeparatorHeight;
  2157. }
  2158. bool CExtControlBar::_IsCustomNcArea() const
  2159. {
  2160. ASSERT_VALID( this );
  2161. return g_bUseCustomNcArea;
  2162. }
  2163. bool CExtControlBar::g_bUseCustomNcArea = false;
  2164. const UINT CExtControlBar::g_nMsgCustomNcAreaQuery =
  2165. ::RegisterWindowMessage(
  2166. _T("CExtControlBar::g_nMsgCustomNcAreaQuery")
  2167. );
  2168. CExtControlBar::CUSTOM_NC_AREA_QUERY_DATA::CUSTOM_NC_AREA_QUERY_DATA(
  2169. CExtControlBar * pBar,
  2170. HDC hDcDraw // = NULL
  2171. )
  2172. : m_pBar( pBar )
  2173. , m_hDcDraw( hDcDraw )
  2174. , m_bQueryHandled( false )
  2175. {
  2176. ASSERT_VALID( m_pBar );
  2177. }
  2178. bool CExtControlBar::CUSTOM_NC_AREA_QUERY_DATA::Notify()
  2179. {
  2180. ASSERT_VALID( m_pBar );
  2181. m_bQueryHandled = false;
  2182. if( m_pBar->_IsCustomNcArea() )
  2183. {
  2184. CWnd * pWndNotifyTarget = m_pBar->m_pDockSite;
  2185. if( pWndNotifyTarget->GetSafeHwnd() == NULL )
  2186. {
  2187. pWndNotifyTarget = m_pBar->GetOwner();
  2188. if( pWndNotifyTarget->GetSafeHwnd() == NULL )
  2189. {
  2190. pWndNotifyTarget = m_pBar->GetParent();
  2191. }
  2192. }
  2193. if( pWndNotifyTarget->GetSafeHwnd() != NULL )
  2194. pWndNotifyTarget->SendMessage(
  2195. CExtControlBar::g_nMsgCustomNcAreaQuery,
  2196. *this
  2197. );
  2198. } // if( m_pBar->_IsCustomNcArea() )
  2199. if( ! m_bQueryHandled )
  2200. {
  2201. INT nSeparatorWidth =
  2202. m_pBar->PmBridge_GetPM()->Bar_SeparatorWidthGet( m_pBar );
  2203. INT nSeparatorHeight =
  2204. m_pBar->PmBridge_GetPM()->Bar_SeparatorHeightGet( m_pBar );
  2205. if( nSeparatorWidth < 0 )
  2206. nSeparatorWidth =  min( 4, ::GetSystemMetrics(SM_CXSIZEFRAME) );
  2207. if( nSeparatorHeight < 0 )
  2208. nSeparatorHeight = min( 4, ::GetSystemMetrics(SM_CYSIZEFRAME) );
  2209. m_pBar->_SeparatorWidthSet( nSeparatorWidth );
  2210. m_pBar->_SeparatorHeightSet( nSeparatorHeight );
  2211. if( (m_pBar->GetBarStyle()&CBRS_GRIPPER) != 0
  2212. && (! m_pBar->IsFixedMode() )
  2213. )
  2214. {
  2215. INT nGripWidthAtLeft =
  2216. m_pBar->PmBridge_GetPM()->Bar_GripperWidthAtLeftGet( m_pBar );
  2217. INT nGripHeightAtTop =
  2218. m_pBar->PmBridge_GetPM()->Bar_GripperHeightAtTopGet( m_pBar );
  2219. if( nGripWidthAtLeft < 0 )
  2220. nGripWidthAtLeft = ::GetSystemMetrics(SM_CYSMCAPTION)+1;
  2221. if( nGripHeightAtTop < 0 )
  2222. nGripHeightAtTop = ::GetSystemMetrics(SM_CYSMCAPTION)+1;
  2223. m_pBar->_GripperWidthAtLeftSet( nGripWidthAtLeft );
  2224. m_pBar->_GripperHeightAtTopSet( nGripHeightAtTop );
  2225. }
  2226. } // if( ! m_bQueryHandled )
  2227. return m_bQueryHandled;
  2228. }
  2229. CExtControlBar::CUSTOM_NC_AREA_QUERY_DATA::operator WPARAM() const
  2230. {
  2231. return WPARAM( this );
  2232. }
  2233. CExtControlBar::CUSTOM_NC_AREA_QUERY_DATA *
  2234. CExtControlBar::CUSTOM_NC_AREA_QUERY_DATA::FromWPARAM( WPARAM wParam )
  2235. {
  2236. CUSTOM_NC_AREA_QUERY_DATA * pCNAQD =
  2237. reinterpret_cast < CUSTOM_NC_AREA_QUERY_DATA * > ( wParam );
  2238. ASSERT( pCNAQD != NULL );
  2239. return pCNAQD;
  2240. }
  2241. bool CExtControlBar::FrameEnableDocking(
  2242. CFrameWnd * pFrame,
  2243. DWORD dwDockStyle, // = CBRS_ALIGN_ANY
  2244. bool bReplaceFloatingWnd // = true
  2245. {
  2246. return
  2247. _FrameEnableDockingImpl(
  2248. pFrame,
  2249. dwDockStyle,
  2250. bReplaceFloatingWnd
  2251. );
  2252. }
  2253. #if (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  2254. bool CExtControlBar::FrameInjectAutoHideAreas(
  2255. CFrameWnd * pFrame
  2256. {
  2257. return _FrameInjectAutoHideAreasImpl( pFrame );
  2258. }
  2259. bool CExtControlBar::_FrameInjectAutoHideAreasImpl(
  2260. CFrameWnd * pFrame
  2261. {
  2262. ASSERT_VALID( pFrame );
  2263. ASSERT( pFrame->GetSafeHwnd() != NULL );
  2264. ASSERT( ::IsWindow(pFrame->GetSafeHwnd()) );
  2265. CExtDynAutoHideSlider * pWndSlider = new CExtDynAutoHideSlider;
  2266. if( ! pWndSlider->Create( pFrame ) )
  2267. {
  2268. ASSERT( FALSE );
  2269. return false;
  2270. }
  2271. CExtDynAutoHideArea * pWndAutoHideArea =
  2272. new CExtDynAutoHideArea();
  2273. if( ! pWndAutoHideArea->Create(
  2274. pFrame,
  2275. pWndSlider,
  2276. AFX_IDW_DOCKBAR_TOP
  2277. )
  2278. )
  2279. {
  2280. ASSERT( FALSE );
  2281. return false;
  2282. }
  2283. pWndAutoHideArea =
  2284. new CExtDynAutoHideArea();
  2285. if( ! pWndAutoHideArea->Create(
  2286. pFrame,
  2287. pWndSlider,
  2288. AFX_IDW_DOCKBAR_BOTTOM
  2289. )
  2290. )
  2291. {
  2292. ASSERT( FALSE );
  2293. return false;
  2294. }
  2295. pWndAutoHideArea =
  2296. new CExtDynAutoHideArea();
  2297. if( ! pWndAutoHideArea->Create(
  2298. pFrame,
  2299. pWndSlider,
  2300. AFX_IDW_DOCKBAR_LEFT
  2301. )
  2302. )
  2303. {
  2304. ASSERT( FALSE );
  2305. return false;
  2306. }
  2307. pWndAutoHideArea =
  2308. new CExtDynAutoHideArea();
  2309. if( ! pWndAutoHideArea->Create(
  2310. pFrame,
  2311. pWndSlider,
  2312. AFX_IDW_DOCKBAR_RIGHT
  2313. )
  2314. )
  2315. {
  2316. ASSERT( FALSE );
  2317. return false;
  2318. }
  2319. pFrame->DelayRecalcLayout();
  2320. return true;
  2321. }
  2322. #endif // (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  2323. bool CExtControlBar::IsFixedMode() const
  2324. {
  2325. return m_bFixedMode;
  2326. }
  2327. bool CExtControlBar::IsFixedDockStyle() const
  2328. {
  2329. return IsFixedMode();
  2330. }
  2331. bool CExtControlBar::ProfileBarStateLoad(
  2332. CFrameWnd * pFrame,
  2333. __EXT_MFC_SAFE_LPCTSTR sSectionNameCompany, // under HKEY_CURRENT_USERSoftware
  2334. __EXT_MFC_SAFE_LPCTSTR sSectionNameProduct, // under HKEY_CURRENT_USERSoftware%sSectionNameCompany%
  2335. __EXT_MFC_SAFE_LPCTSTR sSectionNameProfile, // under HKEY_CURRENT_USERSoftware%sSectionNameCompany%%sSectionNameProfile%
  2336. LPWINDOWPLACEMENT pFrameWp, // = NULL // need serialize frame's WP
  2337. bool bSerializeFixedBarsState, // = true,
  2338. bool bSerializeResizableBarsState, // = true
  2339. HKEY hKeyRoot, // HKEY_CURRENT_USER
  2340. bool bEnableThrowExceptions // = false
  2341. )
  2342. {
  2343. ASSERT( sSectionNameCompany != NULL );
  2344. ASSERT( sSectionNameProduct != NULL );
  2345. ASSERT( sSectionNameProfile != NULL );
  2346. ASSERT_VALID( pFrame );
  2347. __EXT_MFC_SAFE_LPCTSTR strProfileName =
  2348. g_CmdManager->ProfileNameFromWnd(
  2349. pFrame->GetSafeHwnd()
  2350. );
  2351. if( pFrame == NULL
  2352. || strProfileName == NULL
  2353. || strProfileName[0] == _T('')
  2354. )
  2355. {
  2356. //ASSERT( FALSE );
  2357. TRACE0( "Prof-UIS: CExtControlBar::ProfileBarStateLoad() failed to load bar staten" );
  2358. if( bEnableThrowExceptions )
  2359. ::AfxThrowUserException();
  2360. return false;
  2361. }
  2362. ASSERT_VALID( pFrame );
  2363. CExtSafeString sRegKeyPath=
  2364. productsection2regkeypath(
  2365. sSectionNameProfile,
  2366. sSectionNameCompany,
  2367. sSectionNameProduct
  2368. );
  2369. try
  2370. {
  2371. // prepare memory file and archive,
  2372. // get information from registry
  2373. CMemFile _file;
  2374. if( ! CExtCmdManager::FileObjFromRegistry(
  2375. _file,
  2376. sRegKeyPath,
  2377. hKeyRoot,
  2378. bEnableThrowExceptions
  2379. )
  2380. )
  2381. {
  2382. ASSERT( ! bEnableThrowExceptions );
  2383. TRACE0( "Prof-UIS: CExtControlBar::ProfileBarStateLoad() failed to load bar staten" );
  2384. // Windows XP fix - begin
  2385. WINDOWPLACEMENT _wpf;
  2386. ::memset( &_wpf, 0, sizeof(WINDOWPLACEMENT) );
  2387. _wpf.length = sizeof(WINDOWPLACEMENT);
  2388. CWnd * pWndPlacement = stat_GetWndForPlacement( pFrame );
  2389. ASSERT_VALID( pWndPlacement );
  2390. //if( pWndPlacement->GetWindowPlacement(&_wpf) )
  2391. if( CExtControlBar::stat_GetWindowPlacement( pWndPlacement->m_hWnd, _wpf ) )
  2392. {
  2393. _wpf.ptMinPosition.x = _wpf.ptMinPosition.y = 0;
  2394. _wpf.ptMaxPosition.x = _wpf.ptMaxPosition.y = 0;
  2395. _wpf.showCmd = 
  2396. (pWndPlacement->GetStyle() & WS_VISIBLE)
  2397. ? SW_SHOWNA
  2398. : SW_HIDE;
  2399. //pWndPlacement->SetWindowPlacement(&_wpf);
  2400. CExtControlBar::stat_SetWindowPlacement( pWndPlacement->m_hWnd, _wpf );
  2401. }
  2402. // Windows XP fix - end
  2403. return false;
  2404. }
  2405. CArchive ar(
  2406. &_file,
  2407. CArchive::load
  2408. );
  2409. // do serialization
  2410. if( ! ProfileBarStateSerialize(
  2411. ar,
  2412. pFrame,
  2413. pFrameWp,
  2414. bSerializeFixedBarsState,
  2415. bSerializeResizableBarsState,
  2416. bEnableThrowExceptions
  2417. )
  2418. )
  2419. {
  2420. //ASSERT( FALSE );
  2421. TRACE0( "Prof-UIS: CExtControlBar::ProfileBarStateLoad() failed to load bar staten" );
  2422. return false;
  2423. }
  2424. return true;
  2425. } // try
  2426. catch( CException * pXept )
  2427. {
  2428. if( bEnableThrowExceptions )
  2429. throw;
  2430. pXept->Delete();
  2431. //ASSERT( FALSE );
  2432. } // catch( CException * pXept )
  2433. catch( ... )
  2434. {
  2435. if( bEnableThrowExceptions )
  2436. throw;
  2437. //ASSERT( FALSE );
  2438. } // catch( ... )
  2439. TRACE0( "Prof-UIS: CExtControlBar::ProfileBarStateLoad() failed to load bar staten" );
  2440. return false;
  2441. }
  2442. bool CExtControlBar::ProfileBarStateSave(
  2443. CFrameWnd * pFrame,
  2444. __EXT_MFC_SAFE_LPCTSTR sSectionNameCompany, // under HKEY_CURRENT_USERSoftware
  2445. __EXT_MFC_SAFE_LPCTSTR sSectionNameProduct, // under HKEY_CURRENT_USERSoftware%sSectionNameCompany%
  2446. __EXT_MFC_SAFE_LPCTSTR sSectionNameProfile, // under HKEY_CURRENT_USERSoftware%sSectionNameCompany%%sSectionNameProfile%%sSectionNameProfile%
  2447. LPWINDOWPLACEMENT pFrameWp, // = NULL // need serialize frame's WP
  2448. bool bSerializeFixedBarsState, // = true,
  2449. bool bSerializeResizableBarsState, // = true
  2450. HKEY hKeyRoot, // HKEY_CURRENT_USER
  2451. bool bEnableThrowExceptions // = false
  2452. )
  2453. {
  2454. ASSERT( sSectionNameCompany != NULL );
  2455. ASSERT( sSectionNameProduct != NULL );
  2456. ASSERT( sSectionNameProfile != NULL );
  2457. ASSERT_VALID( pFrame );
  2458. __EXT_MFC_SAFE_LPCTSTR strProfileName =
  2459. g_CmdManager->ProfileNameFromWnd(
  2460. pFrame->GetSafeHwnd()
  2461. );
  2462. if( pFrame == NULL
  2463. || strProfileName == NULL
  2464. || strProfileName[0] == _T('')
  2465. )
  2466. {
  2467. //ASSERT( FALSE );
  2468. TRACE0( "Prof-UIS: CExtControlBar::ProfileBarStateSave() failed to save bar staten" );
  2469. if( bEnableThrowExceptions )
  2470. ::AfxThrowUserException();
  2471. return false;
  2472. }
  2473. ASSERT_VALID( pFrame );
  2474. CExtSafeString sRegKeyPath =
  2475. productsection2regkeypath(
  2476. sSectionNameProfile,
  2477. sSectionNameCompany,
  2478. sSectionNameProduct
  2479. );
  2480. try
  2481. {
  2482. // prepare memory file and archive
  2483. CMemFile _file;
  2484. CArchive ar(
  2485. &_file,
  2486. CArchive::store
  2487. );
  2488. // do serialization
  2489. ProfileBarStateSerialize(
  2490. ar,
  2491. pFrame,
  2492. pFrameWp,
  2493. bSerializeFixedBarsState,
  2494. bSerializeResizableBarsState,
  2495. bEnableThrowExceptions
  2496. );
  2497. // OK, serialization passed
  2498. ar.Flush();
  2499. ar.Close();
  2500. // put information to registry
  2501. if( ! CExtCmdManager::FileObjToRegistry(
  2502. _file,
  2503. sRegKeyPath,
  2504. hKeyRoot,
  2505. bEnableThrowExceptions
  2506. )
  2507. )
  2508. {
  2509. ASSERT( ! bEnableThrowExceptions );
  2510. //ASSERT( FALSE );
  2511. TRACE0( "Prof-UIS: CExtControlBar::ProfileBarStateSave() failed to save bar staten" );
  2512. return false;
  2513. }
  2514. return true;
  2515. } // try
  2516. catch( CException * pXept )
  2517. {
  2518. if( bEnableThrowExceptions )
  2519. throw;
  2520. pXept->Delete();
  2521. //ASSERT( FALSE );
  2522. } // catch( CException * pXept )
  2523. catch( ... )
  2524. {
  2525. if( bEnableThrowExceptions )
  2526. throw;
  2527. //ASSERT( FALSE );
  2528. } // catch( ... )
  2529. TRACE0( "Prof-UIS: CExtControlBar::ProfileBarStateSave() failed to save bar staten" );
  2530. return false;
  2531. }
  2532. bool CExtControlBar::InternalFriendlyFrameWnd::SetupSmilyFrameWnd(void)
  2533. {
  2534. m_pFloatingFrameClass =
  2535. RUNTIME_CLASS(CExtMiniDockFrameWnd);
  2536. return true;
  2537. }
  2538. //
  2539. //static CString __DEBUG_get_step_string( int nCharStep )
  2540. //{
  2541. //CString s = _T("");
  2542. // for( int i = 0; i < nCharStep; i++ )
  2543. // s += "    ";
  2544. // return s;
  2545. //}
  2546. //static CString __DEBUG_get_bar_info_string(
  2547. // LPCTSTR strPrefix,
  2548. // CControlBarInfo * pInfo,
  2549. // int nCharStep = 1
  2550. // )
  2551. //{
  2552. // ASSERT( pInfo != NULL );
  2553. // ASSERT_VALID( pInfo->m_pBar );
  2554. //CString s, sWndText;
  2555. // pInfo->m_pBar->GetWindowText( sWndText );
  2556. // s.Format(
  2557. // _T("%s%sID = %d ="%s" (%s)n"),
  2558. // strPrefix,
  2559. // LPCTSTR( __DEBUG_get_step_string( nCharStep ) ),
  2560. // int(pInfo->m_nBarID),
  2561. // LPCTSTR(sWndText),
  2562. // pInfo->m_pBar->GetRuntimeClass()->m_lpszClassName
  2563. // );
  2564. //int nChildrenCount = int( pInfo->m_arrBarID.GetSize() );
  2565. // if( nChildrenCount > 0 )
  2566. // {
  2567. // CString sTmp;
  2568. // sTmp.Format(
  2569. // _T("%s%s%d children:n"),
  2570. // strPrefix,
  2571. // LPCTSTR( __DEBUG_get_step_string( nCharStep + 1 ) ),
  2572. // nChildrenCount
  2573. // );
  2574. // s += sTmp;
  2575. // for( int i = 0; i < nChildrenCount; i++ )
  2576. // {
  2577. // sTmp.Format(
  2578. // _T("%s%sID = %dn"),
  2579. // strPrefix,
  2580. // LPCTSTR( __DEBUG_get_step_string( nCharStep + 2 ) ),
  2581. // int( pInfo->m_arrBarID[i] )
  2582. // );
  2583. // s += sTmp;
  2584. // }
  2585. // }
  2586. // return s;
  2587. //}
  2588. //static void __DEBUG_trace_bar_info(
  2589. // LPCTSTR strPrefix,
  2590. // CControlBarInfo * pInfo,
  2591. // int nCharStep = 1
  2592. // )
  2593. //{
  2594. // afxDump << __DEBUG_get_bar_info_string( strPrefix, pInfo, nCharStep );
  2595. //}
  2596. //
  2597. void CExtControlBar::InternalFriendlyFrameWnd::SetOuterDockState(
  2598. const CDockState & state,
  2599. const CExtControlBar::OuterPropsArr_t & arrOuterProps,
  2600. bool bSerializeFixedBarsState,
  2601. bool bSerializeResizableBarsState
  2602. )
  2603. {
  2604. // first pass through barinfo's sets the m_pBar member correctly
  2605. // creating floating frames if necessary
  2606. //CMapPtrToWord _mapCFV;
  2607. int i = 0;
  2608. for( i = 0; i < state.m_arrBarInfo.GetSize(); i++ )
  2609. {
  2610. CControlBarInfo * pInfo = (CControlBarInfo *)
  2611. state.m_arrBarInfo[i];
  2612. ASSERT( pInfo != NULL );
  2613. CControlBar * pExistingBar = GetControlBar( pInfo->m_nBarID );
  2614. if( pExistingBar != NULL )
  2615. {
  2616. //
  2617. //CControlBar * pOld = pInfo->m_pBar;
  2618. //pInfo->m_pBar = pExistingBar;
  2619. //__DEBUG_trace_bar_info( _T("-LOAD-"), pInfo, 4 );
  2620. //pInfo->m_pBar = pOld;
  2621. //
  2622. if( (! pExistingBar->IsKindOf(RUNTIME_CLASS(CExtControlBar)) )
  2623. || ( ((CExtControlBar*)pExistingBar)->IsFixedMode() )
  2624. || ( ((CExtControlBar*)pExistingBar)->IsFixedDockStyle() )
  2625. )
  2626. {
  2627. if( ! bSerializeFixedBarsState )
  2628. continue;
  2629. }
  2630. else
  2631. {
  2632. if( ! bSerializeResizableBarsState )
  2633. continue;
  2634. }
  2635. }
  2636. if( pInfo->m_bFloating )
  2637. {
  2638. // need to create floating frame to match
  2639. CMiniDockFrameWnd * pDockFrame =
  2640. CreateFloatingFrame(
  2641. pInfo->m_bHorz ?
  2642. CBRS_ALIGN_TOP : CBRS_ALIGN_LEFT
  2643. );
  2644. ASSERT( pDockFrame != NULL) ;
  2645. CRect rcWnd( pInfo->m_pointPos, CSize(10, 10) );
  2646. pDockFrame->CalcWindowRect( &rcWnd );
  2647. pDockFrame->SetWindowPos(
  2648. NULL,
  2649. rcWnd.left, rcWnd.top, 0, 0,
  2650. SWP_NOSIZE|SWP_NOZORDER|SWP_NOACTIVATE
  2651. );
  2652. CDockBar * pDockBar = (CDockBar *)
  2653. pDockFrame->GetDlgItem( AFX_IDW_DOCKBAR_FLOAT );
  2654. ASSERT( pDockBar != NULL );
  2655. ASSERT_KINDOF( CDockBar, pDockBar );
  2656. pInfo->m_pBar = pDockBar;
  2657. //  if( pInfo->m_bVisible )
  2658. //  _mapCFV.SetAt( pDockFrame, 0 );
  2659. } // if( pInfo->m_bFloating )
  2660. else // regular dock bar or toolbar
  2661. {
  2662. pInfo->m_pBar =
  2663. pExistingBar; // GetControlBar( pInfo->m_nBarID );
  2664. if( pInfo->m_pBar == NULL )
  2665. continue;
  2666. } // else from if( pInfo->m_bFloating )
  2667. pInfo->m_pBar->m_nMRUWidth = pInfo->m_nMRUWidth;
  2668. } // for( i = 0; i < state.m_arrBarInfo.GetSize(); i++ )
  2669. // update new outer props
  2670. for( i = 0; i < arrOuterProps.GetSize(); i++ )
  2671. {
  2672. OuterItemData_t _oid = arrOuterProps[i];
  2673. CControlBar * pBarTmp = GetControlBar( _oid.m_nBarID );
  2674. if( pBarTmp == NULL )
  2675. continue;
  2676. CExtControlBar * pExtBar = DYNAMIC_DOWNCAST( CExtControlBar, pBarTmp );
  2677. if( pExtBar == NULL )
  2678. continue;
  2679. if( ( pExtBar->IsFixedMode() )
  2680. || ( pExtBar->IsFixedDockStyle() )
  2681. )
  2682. {
  2683. if( ! bSerializeFixedBarsState )
  2684. continue;
  2685. }
  2686. else
  2687. {
  2688. if( ! bSerializeResizableBarsState )
  2689. continue;
  2690. }
  2691. pExtBar->m_ptFloatHelper = _oid.m_ptFloatHelper;
  2692. pExtBar->m_sizeDockedH = _oid.m_sizeDockedH;
  2693. pExtBar->m_sizeDockedV = _oid.m_sizeDockedV;
  2694. pExtBar->m_sizeFloated = _oid.m_sizeFloated;
  2695. pExtBar->_AffixmentSetOuter( &_oid.m_AffixmentData );
  2696. } // for( i = 0; i < arrOuterProps.GetSize(); i++ )
  2697. // the second pass will actually dock all of the control bars and
  2698. // set everything correctly
  2699. for( i = 0; i < state.m_arrBarInfo.GetSize(); i++ )
  2700. {
  2701. CControlBarInfo * pInfo = (CControlBarInfo *)
  2702. state.m_arrBarInfo[i];
  2703. ASSERT( pInfo != NULL );
  2704. if( pInfo->m_pBar == NULL )
  2705. continue;
  2706. if( (! pInfo->m_pBar->IsKindOf(RUNTIME_CLASS(CExtControlBar)) )
  2707. || ( ((CExtControlBar*)pInfo->m_pBar)->IsFixedMode() )
  2708. || ( ((CExtControlBar*)pInfo->m_pBar)->IsFixedDockStyle() )
  2709. )
  2710. {
  2711. if( ! bSerializeFixedBarsState )
  2712. continue;
  2713. }
  2714. else
  2715. {
  2716. if( ! bSerializeResizableBarsState )
  2717. continue;
  2718. }
  2719. if( pInfo->m_pBar->m_pDockContext != NULL
  2720. && pInfo->m_pBar->IsKindOf(RUNTIME_CLASS(CExtControlBar))
  2721. )
  2722. ((CExtControlBar*)(pInfo->m_pBar))->m_ptFloatHelper
  2723. = pInfo->m_ptMRUFloatPos;
  2724. pInfo->m_pBar->SetBarInfo( pInfo, this );
  2725. } // for( i = 0; i < state.m_arrBarInfo.GetSize(); i++ )
  2726. // the third pass will move independent floating bars
  2727. // into valid positions
  2728. for( i = 0; i < arrOuterProps.GetSize(); i++ )
  2729. {
  2730. OuterItemData_t _oid = arrOuterProps[i];
  2731. CControlBar * pBarTmp = GetControlBar( _oid.m_nBarID );
  2732. if( pBarTmp == NULL )
  2733. continue;
  2734. CExtControlBar * pExtBar = DYNAMIC_DOWNCAST( CExtControlBar, pBarTmp );
  2735. if( pExtBar == NULL )
  2736. continue;
  2737. if( ( pExtBar->IsFixedMode() )
  2738. || ( pExtBar->IsFixedDockStyle() )
  2739. )
  2740. {
  2741. if( ! bSerializeFixedBarsState )
  2742. continue;
  2743. }
  2744. else
  2745. {
  2746. if( ! bSerializeResizableBarsState )
  2747. continue;
  2748. }
  2749. if( ! _oid.m_bFloating )
  2750. continue;
  2751. CSize _sizeFloating = _oid.m_sizeFloated;
  2752. CRect rcFrameInitial( _oid.m_ptFloatHelper, _sizeFloating /*_oid.m_sizeFloated*/ );
  2753. CExtMiniDockFrameWnd * pMiniFrame =
  2754. DYNAMIC_DOWNCAST(
  2755. CExtMiniDockFrameWnd,
  2756. pExtBar->GetParentFrame()
  2757. );
  2758. //  if( pMiniFrame != NULL )
  2759. //  {
  2760. //  CRect rcClientFrame, rcWndFrame;
  2761. //  pMiniFrame->GetClientRect( &rcClientFrame );
  2762. //  pMiniFrame->GetWindowRect( &rcWndFrame );
  2763. //  _sizeFloating += rcWndFrame.Size() - rcClientFrame.Size();
  2764. //  rcFrameInitial.right += rcWndFrame.Width() - rcClientFrame.Width();
  2765. //  rcFrameInitial.bottom += rcWndFrame.Height() - rcClientFrame.Height();
  2766. //  }
  2767. CRect rcFrameNew =
  2768. CExtPaintManager::stat_AlignWndRectToMonitor(
  2769. rcFrameInitial
  2770. );
  2771. //  CExtMiniDockFrameWnd * pMiniFrame =
  2772. //  DYNAMIC_DOWNCAST(
  2773. //  CExtMiniDockFrameWnd,
  2774. //  pExtBar->GetParentFrame()
  2775. //  );
  2776. if( pMiniFrame != NULL )
  2777. {
  2778. ASSERT_VALID( pMiniFrame );
  2779. CRect rcFrameReal;
  2780. pMiniFrame->GetWindowRect( rcFrameReal );
  2781. //if( rcFrameReal == rcFrameNew )
  2782. if( rcFrameReal.TopLeft() == rcFrameNew.TopLeft() )
  2783. {
  2784. pExtBar->DelayShow( _oid.m_bVisible ? TRUE : FALSE );
  2785. pMiniFrame->RecalcLayout();
  2786. continue;
  2787. }
  2788. pExtBar->OnNcAreaButtonsReinitialize();
  2789. if( ! pExtBar->IsFixedMode() )
  2790. pMiniFrame->ModifyStyle( FWS_SNAPTOBARS, 0 );
  2791. //((InternalFriendlyFrameWnd *)pMiniFrame)->m_bInRecalcLayout = TRUE;
  2792. pMiniFrame->MoveWindow( &rcFrameNew, FALSE );
  2793. //((InternalFriendlyFrameWnd *)pMiniFrame)->m_bInRecalcLayout = FALSE;
  2794. pMiniFrame->DelayRecalcLayout();
  2795. //WORD tmp;
  2796. //if( _mapCFV.Lookup( pMiniFrame, tmp )
  2797. // && ( pMiniFrame->GetStyle()&WS_VISIBLE ) == 0
  2798. // && ( ! pExtBar->IsFixedMode() )
  2799. // )
  2800. if( _oid.m_bVisible )
  2801. {
  2802. pExtBar->DelayShow( TRUE );
  2803. CSize _size = rcFrameNew.Size();
  2804. pExtBar->SetInitDesiredSizeFloating( _size );
  2805. pExtBar->m_pDockContext->m_sizeLast = _size;
  2806. pMiniFrame->ShowWindow( SW_SHOWNOACTIVATE );
  2807. //  ((InternalFriendlyFrameWnd *)pMiniFrame)->m_bInRecalcLayout = TRUE;
  2808.   pMiniFrame->MoveWindow( &rcFrameNew, FALSE );
  2809. //  ((InternalFriendlyFrameWnd *)pMiniFrame)->m_bInRecalcLayout = FALSE;
  2810. pMiniFrame->RecalcLayout();
  2811. CRect rcClientFrame, rcWndFrame;
  2812.   pMiniFrame->GetClientRect( &rcClientFrame );
  2813.   pMiniFrame->GetWindowRect( &rcWndFrame );
  2814. CRect rcClientBar, rcWndBar;
  2815. pExtBar->GetClientRect( &rcClientBar );
  2816. pExtBar->GetWindowRect( &rcWndBar );
  2817. CSize _sizeBar =
  2818. _sizeFloating // _oid.m_sizeFloated
  2819. - rcClientFrame.Size()
  2820. + rcWndFrame.Size()
  2821. - rcClientBar.Size()
  2822. + rcWndBar.Size()
  2823. ;
  2824. pExtBar->OnRepositionSingleChild(
  2825. _sizeBar.cx,
  2826. _sizeBar.cy,
  2827. true
  2828. );
  2829. }
  2830. } // if( pMiniFrame != NULL )
  2831. else
  2832. pExtBar->FloatControlBar( rcFrameNew.TopLeft() );
  2833. } // for( i = 0; i < arrOuterProps.GetSize(); i++ )
  2834. // last pass shows all the floating windows that were previously shown
  2835. for( i = 0; i < state.m_arrBarInfo.GetSize(); i++ )
  2836. {
  2837. CControlBarInfo * pInfo = (CControlBarInfo *)
  2838. state.m_arrBarInfo[i];
  2839. ASSERT( pInfo != NULL );
  2840. if( pInfo->m_pBar == NULL )
  2841. continue;
  2842. if( (! pInfo->m_pBar->IsKindOf(RUNTIME_CLASS(CExtControlBar)) )
  2843. || ( ((CExtControlBar*)pInfo->m_pBar)->IsFixedMode() )
  2844. || ( ((CExtControlBar*)pInfo->m_pBar)->IsFixedDockStyle() )
  2845. )
  2846. {
  2847. if( ! bSerializeFixedBarsState )
  2848. continue;
  2849. }
  2850. else
  2851. {
  2852. if( ! bSerializeResizableBarsState )
  2853. continue;
  2854. }
  2855. if( ! pInfo->m_bFloating )
  2856. continue;
  2857. CFrameWnd * pFrameWnd =
  2858. pInfo->m_pBar->GetParentFrame();
  2859. CDockBar * pDockBar = (CDockBar *) pInfo->m_pBar;
  2860. ASSERT_KINDOF( CDockBar, pDockBar );
  2861. if( pDockBar->GetDockedVisibleCount() > 0 )
  2862. {
  2863. pFrameWnd->RecalcLayout();
  2864. pFrameWnd->ShowWindow( SW_SHOWNA );
  2865. for( INT nBar = 1; nBar < pDockBar->m_arrBars.GetSize(); nBar ++ )
  2866. {
  2867. ASSERT( pDockBar->m_arrBars[0] == NULL );
  2868. CControlBar * pBar = (CControlBar *)
  2869. pDockBar->m_arrBars[nBar];
  2870. if( pBar == NULL )
  2871. continue;
  2872. if( __PLACEHODLER_BAR_PTR(pBar) )
  2873. continue;
  2874. CExtControlBar * pExtBar =
  2875. DYNAMIC_DOWNCAST(
  2876. CExtControlBar,
  2877. pBar
  2878. );
  2879. if( pExtBar == NULL
  2880. || pExtBar->IsFixedMode()
  2881. )
  2882. continue;
  2883. pExtBar->_RecalcNcArea();
  2884. }
  2885. } // if( pDockBar->GetDockedVisibleCount() > 0 )
  2886. } // for( i = 0; i < state.m_arrBarInfo.GetSize(); i++ )
  2887. }
  2888. void CExtControlBar::InternalFriendlyFrameWnd::GetOuterDockState(
  2889. CDockState & state,
  2890. CExtControlBar::OuterPropsArr_t & arrOuterProps
  2891. ) const
  2892. {
  2893. for( POSITION pos = m_listControlBars.GetHeadPosition();
  2894. pos != NULL;
  2895. )
  2896. { // get state info for each bar
  2897. CControlBar * pBar = (CControlBar *)
  2898. m_listControlBars.GetNext( pos );
  2899. ASSERT( pBar != NULL );
  2900. if( pBar->IsKindOf(RUNTIME_CLASS(CExtDynControlBar))
  2901. || pBar->IsKindOf(RUNTIME_CLASS(CExtDockDynBar))
  2902. )
  2903. continue;
  2904. if( pBar->m_pDockBar != NULL
  2905. && pBar->m_pDockBar->IsKindOf(RUNTIME_CLASS(CExtDockDynBar))
  2906. )
  2907. continue;
  2908. if( pBar->IsDockBar() )
  2909. {
  2910. UINT nID = pBar->GetDlgCtrlID();
  2911. ASSERT_DOCKBAR_DLGCTRLID( nID );
  2912. if( nID == AFX_IDW_DOCKBAR_FLOAT )
  2913. {
  2914. CWnd * pWnd = pBar->GetWindow(GW_CHILD);
  2915. if( pWnd->GetSafeHwnd() == NULL )
  2916. continue;
  2917. CControlBar * pBarChild =
  2918. STATIC_DOWNCAST(
  2919. CControlBar,
  2920. pWnd
  2921. );
  2922. if( pBarChild->IsKindOf(RUNTIME_CLASS(CExtDynControlBar)) )
  2923. continue;
  2924. }
  2925. if( pBar->IsKindOf(RUNTIME_CLASS(CExtDockBar))
  2926. && ((CExtDockBar *)pBar)->_GetCircleNo() != 0
  2927. )
  2928. continue;
  2929. } // if( pBar->IsDockBar() )
  2930. #ifdef _DEBUG
  2931. else
  2932. {
  2933. ASSERT( !pBar->IsKindOf(RUNTIME_CLASS(CDockBar)) );
  2934. } // else from if( pBar->IsDockBar() )
  2935. #endif // _DEBUG
  2936. CSize sizeReset( -1, -1 );
  2937. if( pBar->IsKindOf(RUNTIME_CLASS(CExtControlBar)) )
  2938. {
  2939. if( pBar->IsKindOf(RUNTIME_CLASS(CExtDynControlBar)) )
  2940. continue;
  2941. if( (! ((CExtControlBar*)pBar)->IsFixedMode() )
  2942. && (! pBar->IsFloating() )
  2943. )
  2944. {
  2945. if( pBar->m_pDockBar == NULL )
  2946. continue;
  2947. CExtDockBar * pDockBar =
  2948. STATIC_DOWNCAST(
  2949. CExtDockBar,
  2950. pBar->m_pDockBar
  2951. );
  2952. ASSERT( !pDockBar->IsKindOf(RUNTIME_CLASS(CExtDockDynBar)) );
  2953. if( pDockBar->_GetCircleNo() > 0 )
  2954. continue;
  2955. }
  2956. OuterItemData_t _oid;
  2957. _oid.m_nBarID = pBar->GetDlgCtrlID();
  2958. _oid.m_ptFloatHelper = ((CExtControlBar*)pBar)->m_ptFloatHelper;
  2959. _oid.m_sizeDockedH = ((CExtControlBar*)pBar)->m_sizeDockedH;
  2960. _oid.m_sizeDockedV = ((CExtControlBar*)pBar)->m_sizeDockedV;
  2961. _oid.m_sizeFloated = ((CExtControlBar*)pBar)->m_sizeFloated;
  2962. ASSERT( _oid.m_AffixmentData.IsEmpty() );
  2963. InternalAffixmentData * pAffixmentData =
  2964. ((CExtControlBar*)pBar)->_AffixmentGetOuter();
  2965. if( pAffixmentData != NULL )
  2966. _oid.m_AffixmentData = *pAffixmentData;
  2967. _oid.m_bVisible = pBar->IsVisible() ? true : false;
  2968. ASSERT( !_oid.m_bFloating );
  2969. if( pBar->IsFloating() )
  2970. {
  2971. CRect rcBarWnd;
  2972. CRect rcFraweWnd;
  2973. pBar->GetWindowRect( &rcBarWnd );
  2974. CExtMiniDockFrameWnd * pMiniFrame =
  2975. STATIC_DOWNCAST(
  2976. CExtMiniDockFrameWnd,
  2977. pBar->GetParentFrame()
  2978. );
  2979. pMiniFrame->GetWindowRect( &rcFraweWnd );
  2980. CSize sizeBarWnd = rcBarWnd.Size();
  2981. CSize sizeFraweWnd = rcFraweWnd.Size();
  2982. CSize sizeDiff = sizeFraweWnd - sizeBarWnd;
  2983. _oid.m_ptFloatHelper = rcFraweWnd.TopLeft();
  2984. if( ((CExtControlBar*)pBar)->IsFixedMode() )
  2985. {
  2986. _oid.m_sizeFloated += sizeDiff;
  2987. sizeReset = _oid.m_sizeFloated;
  2988. } // if( ((CExtControlBar*)pBar)->IsFixedMode() )
  2989. _oid.m_bFloating = true;
  2990. } // if( pBar->IsFloating() )
  2991. arrOuterProps.Add( _oid );
  2992. } // if( pBar->IsKindOf(RUNTIME_CLASS(CExtControlBar)) )
  2993. CControlBarInfo* pInfo = new CControlBarInfo;
  2994. pBar->GetBarInfo( pInfo );
  2995. if( pInfo->m_pBar == NULL )
  2996. continue;
  2997. //
  2998. //__DEBUG_trace_bar_info( _T("-SAVE-"), pInfo, 4 );
  2999. //
  3000. if( sizeReset.cx > 0 && sizeReset.cy > 0 )
  3001. pInfo->m_nMRUWidth = sizeReset.cx;
  3002. state.m_arrBarInfo.Add(pInfo);
  3003. } // get state info for each bar
  3004. }
  3005. void CExtControlBar::InternalFriendlyFrameWnd::SetDockState(
  3006. const CExtControlBar::InternalDockStateSite & state,
  3007. bool bPresetWP
  3008. )
  3009. {
  3010. state.StateSet( bPresetWP );
  3011. }
  3012. void CExtControlBar::InternalFriendlyFrameWnd::GetDockState(
  3013. CExtControlBar::InternalDockStateSite & state
  3014. ) const
  3015. {
  3016. state.StateGet();
  3017. }
  3018. CExtControlBar::InternalDockStateSite::InternalDockStateSite(
  3019. CFrameWnd * pDockSite,
  3020. bool bSerializeFixedBarsState, // = true,
  3021. bool bSerializeResizableBarsState // = true
  3022. )
  3023. : m_pDockSite( pDockSite )
  3024. , m_pOuterState( NULL )
  3025. , m_bSerializeFixedBarsState( bSerializeFixedBarsState )
  3026. , m_bSerializeResizableBarsState( bSerializeResizableBarsState )
  3027. {
  3028. ASSERT_VALID( m_pDockSite );
  3029. ASSERT_KINDOF( CFrameWnd, m_pDockSite );
  3030. ASSERT( !m_pDockSite->IsKindOf(RUNTIME_CLASS(CMiniFrameWnd)) );
  3031. ::memset( &m_wp, 0, sizeof(WINDOWPLACEMENT) );
  3032. m_pOuterState = new CDockState;
  3033. }
  3034. CExtControlBar::InternalDockStateSite::~InternalDockStateSite()
  3035. {
  3036. Clear();
  3037. if( m_pOuterState != NULL )
  3038. delete m_pOuterState;
  3039. }
  3040. void CExtControlBar::InternalDockStateSite::Clear()
  3041. {
  3042. ASSERT_VALID( this );
  3043. ASSERT( m_pOuterState != NULL );
  3044. ::memset( &m_wp, 0, sizeof(WINDOWPLACEMENT) );
  3045. m_wp.length = sizeof(WINDOWPLACEMENT);
  3046. m_pOuterState->Clear();
  3047. INT nCount = (INT)m_arrBarStates.GetSize();
  3048. for( INT i = 0; i < nCount; i++ )
  3049. {
  3050. InternalDockStateBar * pState =
  3051. m_arrBarStates[i];
  3052. ASSERT_VALID( pState );
  3053. pState->Clear();
  3054. delete pState;
  3055. }
  3056. m_arrBarStates.RemoveAll();
  3057. #if (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  3058. m_arrAutoHideOrder.RemoveAll();
  3059. #endif // (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  3060. m_arrOuterProps.RemoveAll();
  3061. }
  3062. void CExtControlBar::InternalDockStateSite::Serialize( CArchive & ar )
  3063. {
  3064. ASSERT_VALID( this );
  3065. //bool bSerializeFixedBarsState = m_bSerializeFixedBarsState;
  3066. bool bSerializeResizableBarsState = m_bSerializeResizableBarsState;
  3067. INT i, nCount;
  3068. DWORD dwApiVer0 = g_CmdManager.GetVersionDWORD( false );
  3069. DWORD dwApiVer1 = g_CmdManager.GetVersionDWORD( true );
  3070. DWORD dwReserved = 0;
  3071. if( ar.IsStoring() )
  3072. {
  3073. // serialize version info
  3074. CExtSafeString sTmpBuffer;
  3075. CExtSafeString sFriendlyVer;
  3076. sFriendlyVer.Format(
  3077. _T("Prof-UIS (v. %s) control bar state"),
  3078. g_CmdManager.GetVersionString( sTmpBuffer )
  3079. );
  3080. ar << sFriendlyVer;
  3081. ar << dwApiVer0;
  3082. ar << dwApiVer1;
  3083. ar << dwReserved;
  3084. ar << dwReserved;
  3085. ar << dwReserved;
  3086. ar << dwReserved;
  3087. // serialize frame position
  3088. CExtSafeString sFrameWp;
  3089. sFrameWp.Format(
  3090. _T("%d,%d,%d,%d,%d,%d"),
  3091. m_wp.rcNormalPosition.left,
  3092. m_wp.rcNormalPosition.top,
  3093. m_wp.rcNormalPosition.right,
  3094. m_wp.rcNormalPosition.bottom,
  3095. m_wp.showCmd,
  3096. m_wp.flags
  3097. );
  3098. ar << sFrameWp;
  3099. //if( bSerializeFixedBarsState )
  3100. { // BLOCK BEGIN (+2.52): replacement of CDockState::Serialize() method
  3101. //
  3102. // this block fixes bug in MFC 8.0 which causes 32<-->64 bit
  3103. // version incompatibility of the CControlBarInfo::Serialize() method
  3104. // invoked from the CDockState::Serialize() method
  3105. //
  3106. // the CDockState::Serialize() methods body also expanded into
  3107. // this code block
  3108. //
  3109. // the InternalFriendlyDockState class defined locally is needed
  3110. // for accessing the CDockState::m_dwVersion protected property
  3111. //
  3112. ////// m_pOuterState->Serialize( ar );
  3113. class InternalFriendlyDockState : public CDockState
  3114. {
  3115. public:
  3116. friend class CExtControlBar::InternalDockStateSite;
  3117. };
  3118. InternalFriendlyDockState * pDockState =
  3119. (InternalFriendlyDockState *)m_pOuterState;
  3120. ar << pDockState->m_dwVersion;
  3121. if( pDockState->m_dwVersion > 1 )
  3122. ar << pDockState->GetScreenSize();
  3123. WORD wBarInfoIndex, wBarInfoCount = WORD(pDockState->m_arrBarInfo.GetSize());
  3124. ar << wBarInfoCount;
  3125. for( wBarInfoIndex = 0; wBarInfoIndex < wBarInfoCount; wBarInfoIndex++ )
  3126. {
  3127. ////// ((CControlBarInfo*)m_arrBarInfo[i])->Serialize(ar, this);
  3128. CControlBarInfo * pCBI =
  3129. (CControlBarInfo*)pDockState->m_arrBarInfo[wBarInfoIndex];
  3130. ar << (DWORD)pCBI->m_nBarID;
  3131. ar << (DWORD)pCBI->m_bVisible;
  3132. ar << (DWORD)pCBI->m_bFloating;
  3133. ar << (DWORD)pCBI->m_bHorz;
  3134. ar << pCBI->m_pointPos;
  3135. if( pDockState->GetVersion() > 1 )
  3136. {
  3137. ar << (DWORD)pCBI->m_nMRUWidth;
  3138. ar << (DWORD)pCBI->m_bDocking;
  3139. if( pCBI->m_bDocking )
  3140. {
  3141. ar << (DWORD)pCBI->m_uMRUDockID;
  3142. ar << pCBI->m_rectMRUDockPos;
  3143. ar << pCBI->m_dwMRUFloatStyle;
  3144. ar << pCBI->m_ptMRUFloatPos;
  3145. } // if( pCBI->m_bDocking )
  3146. } // if( pDockState->GetVersion() > 1 )
  3147. WORD wIdIndex, wIdCount = WORD(pCBI->m_arrBarID.GetSize());
  3148. ar << wIdCount;
  3149. for( wIdIndex = 0; wIdIndex < wIdCount; wIdIndex++ )
  3150. {
  3151. DWORD dw = DWORD(__EXT_MFC_DWORD_PTR(pCBI->m_arrBarID[wIdIndex]));
  3152. ar << dw;
  3153. } // for( wIdIndex = 0; wIdIndex < wIdCount; wIdIndex++ )
  3154. } // for( wBarInfoIndex = 0; wBarInfoIndex < wBarInfoCount; wBarInfoIndex++ )
  3155. //
  3156. // the final block is added to serialize the Prof-UIS specific
  3157. // properties of the fixed sized control bars located in the
  3158. // outer dock bar windows (CExtDockOuterBar)
  3159. //
  3160. nCount = (INT)m_arrOuterProps.GetSize();
  3161. ar << DWORD(nCount);
  3162. for( i = 0; i < nCount; i++ )
  3163. m_arrOuterProps.ElementAt(i).Serialize( ar );
  3164. } // BLOCK END (+2.52): replacement of CDockState::Serialize() method
  3165. if( bSerializeResizableBarsState )
  3166. {
  3167. nCount = (INT)m_arrBarStates.GetSize();
  3168. ar << DWORD(nCount);
  3169. for( i = 0; i < nCount; i++ )
  3170. {
  3171. InternalDockStateBar * pState =
  3172. m_arrBarStates[i];
  3173. ASSERT_VALID( pState );
  3174. pState->Serialize( ar );
  3175. } // for( i = 0; i < nCount; i++ )
  3176. #if (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  3177. nCount = (INT)m_arrAutoHideOrder.GetSize();
  3178. ar << DWORD(nCount);
  3179. for( i = 0; i < nCount; i++ )
  3180. {
  3181. UINT nBarID = m_arrAutoHideOrder[ i ];
  3182. ar << DWORD(nBarID);
  3183. } // for( i = 0; i < nCount; i++ )
  3184. #endif // (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  3185. } // if( bSerializeResizableBarsState )
  3186. } // if( ar.IsStoring() )
  3187. else
  3188. {
  3189. Clear();
  3190. // serialize version info
  3191. DWORD dwApiVer0a = 0, dwApiVer1a = 0, dwTmp;
  3192. CExtSafeString sFriendlyVer;
  3193. ar >> sFriendlyVer;
  3194. ar >> dwApiVer0a;
  3195. ar >> dwApiVer1a;
  3196. ar >> dwReserved;
  3197. ar >> dwReserved;
  3198. ar >> dwReserved;
  3199. ar >> dwReserved;
  3200. // if( dwApiVer1 != dwApiVer1a )
  3201. if( dwApiVer1 < dwApiVer1a )
  3202. {
  3203. ASSERT( FALSE );
  3204. #if _MFC_VER >= 0x0800
  3205. ::AfxThrowArchiveException( CArchiveException::genericException, NULL );
  3206. #else
  3207. ::AfxThrowArchiveException( CArchiveException::generic, NULL );
  3208. #endif
  3209. }
  3210. CExtSafeString sFrameWp;
  3211. ar >> sFrameWp;
  3212. ASSERT( !sFrameWp.IsEmpty() );
  3213. ::memset( &m_wp, 0, sizeof(WINDOWPLACEMENT) );
  3214. m_wp.length = sizeof(WINDOWPLACEMENT);
  3215. CWnd * pWndPlacement = stat_GetWndForPlacement( m_pDockSite );
  3216. ASSERT_VALID( pWndPlacement );
  3217. // VERIFY( pWndPlacement->GetWindowPlacement(&m_wp)  );
  3218. VERIFY( CExtControlBar::stat_GetWindowPlacement( pWndPlacement->m_hWnd, m_wp ) );
  3219. m_wp.ptMinPosition.x = m_wp.ptMinPosition.y = 0;
  3220. m_wp.ptMaxPosition.x = m_wp.ptMaxPosition.y = 0;
  3221. if( __EXT_MFC_STSCANF(
  3222. sFrameWp,
  3223. _T("%d,%d,%d,%d,%d,%d"),
  3224. &m_wp.rcNormalPosition.left,
  3225. &m_wp.rcNormalPosition.top,
  3226. &m_wp.rcNormalPosition.right,
  3227. &m_wp.rcNormalPosition.bottom,
  3228. &m_wp.showCmd,
  3229. &m_wp.flags
  3230. ) != 6
  3231. )
  3232. {
  3233. ASSERT( FALSE );
  3234. ::memset( &m_wp, 0, sizeof(WINDOWPLACEMENT) );
  3235. m_wp.length = sizeof(WINDOWPLACEMENT);
  3236. m_wp.showCmd = SW_HIDE;
  3237. //return false;
  3238. #if _MFC_VER >= 0x0800
  3239. ::AfxThrowArchiveException( CArchiveException::genericException, NULL );
  3240. #else
  3241. ::AfxThrowArchiveException( CArchiveException::generic, NULL );
  3242. #endif
  3243. }
  3244. //if( bSerializeFixedBarsState )
  3245. { // BLOCK BEGIN (+2.52): replacement of CDockState::Serialize() method
  3246. //
  3247. // this block fixes bug in MFC 8.0 which causes 32<-->64 bit
  3248. // version incompatibility of the CControlBarInfo::Serialize() method
  3249. // invoked from the CDockState::Serialize() method
  3250. //
  3251. // the CDockState::Serialize() methods body also expanded into
  3252. // this code block
  3253. //
  3254. // the InternalFriendlyDockState class defined locally is needed
  3255. // for accessing the CDockState::m_dwVersion protected property
  3256. //
  3257. ////// m_pOuterState->Serialize( ar );
  3258. class InternalFriendlyDockState : public CDockState
  3259. {
  3260. public:
  3261. friend class CExtControlBar::InternalDockStateSite;
  3262. };
  3263. InternalFriendlyDockState * pDockState =
  3264. (InternalFriendlyDockState *)m_pOuterState;
  3265. pDockState->Clear();
  3266. ar >> pDockState->m_dwVersion;
  3267. ASSERT( pDockState->m_dwVersion == 1 || pDockState->m_dwVersion == 2 );
  3268. if( pDockState->m_dwVersion > 1 )
  3269. {
  3270. CSize size;
  3271. ar >> size;
  3272. pDockState->SetScreenSize(size);
  3273. } // if( pDockState->m_dwVersion > 1 )
  3274. WORD nOldSize;
  3275. ar >> nOldSize;
  3276. pDockState->m_arrBarInfo.SetSize( nOldSize );
  3277. WORD wBarInfoIndex, wBarInfoCount = WORD(pDockState->m_arrBarInfo.GetSize());
  3278. for( wBarInfoIndex = 0; wBarInfoIndex < wBarInfoCount; wBarInfoIndex++ )
  3279. {
  3280. ////// m_arrBarInfo[i] = new CControlBarInfo;
  3281. ////// ((CControlBarInfo*)m_arrBarInfo[i])->Serialize(ar, this);
  3282. CControlBarInfo * pCBI = new CControlBarInfo;
  3283. pDockState->m_arrBarInfo.SetAt( wBarInfoIndex, pCBI );
  3284. DWORD dw;
  3285. ar >> dw;
  3286. pCBI->m_nBarID = (int)dw;
  3287. ar >> dw;
  3288. pCBI->m_bVisible = (BOOL)dw;
  3289. ar >> dw;
  3290. pCBI->m_bFloating = (BOOL)dw;
  3291. ar >> dw;
  3292. pCBI->m_bHorz = (BOOL)dw;
  3293. ar >> pCBI->m_pointPos;
  3294. if( pDockState->GetVersion() > 1 )
  3295. {
  3296. pDockState->ScalePoint( pCBI->m_pointPos );
  3297. ar >> dw;
  3298. pCBI->m_nMRUWidth = (int)dw;
  3299. ar >> dw;
  3300. pCBI->m_bDocking = (BOOL)dw;
  3301. if( pCBI->m_bDocking )
  3302. {
  3303. ar >> dw;
  3304. pCBI->m_uMRUDockID = (DWORD)dw;
  3305. ar >> pCBI->m_rectMRUDockPos;
  3306. pDockState->ScaleRectPos( pCBI->m_rectMRUDockPos );
  3307. ar >> pCBI->m_dwMRUFloatStyle;
  3308. ar >> pCBI->m_ptMRUFloatPos;
  3309. pDockState->ScalePoint( pCBI->m_ptMRUFloatPos );
  3310. } // if( pCBI->m_bDocking )
  3311. } // if( pDockState->GetVersion() > 1 )
  3312. WORD wIdIndex, wIdCount;
  3313. ar >> wIdCount;
  3314. pCBI->m_arrBarID.SetSize( wIdCount );
  3315. for( wIdIndex = 0; wIdIndex < wIdCount; wIdIndex++ )
  3316. {
  3317. DWORD dw;
  3318. ar >> dw;
  3319. #if (_MFC_VER >= 0x900)
  3320. pCBI->m_arrBarID.SetAt( wIdIndex, (UINT)dw );
  3321. #else
  3322. pCBI->m_arrBarID.SetAt( wIdIndex, (LPVOID)(__EXT_MFC_DWORD_PTR)dw );
  3323. #endif
  3324. } // for( wIdIndex = 0; wIdIndex < wIdCount; wIdIndex++ )
  3325. } // for( wBarInfoIndex = 0; wBarInfoIndex < wBarInfoCount; wBarInfoIndex++ )
  3326. pDockState->m_dwVersion = 2;
  3327. //
  3328. // the final block is added to serialize the Prof-UIS specific
  3329. // properties of the fixed sized control bars located in the
  3330. // outer dock bar windows (CExtDockOuterBar)
  3331. //
  3332. ar >> dwTmp;
  3333. nCount = INT(dwTmp);
  3334. for( i = 0; i < nCount; i++ )
  3335. {
  3336. OuterItemData_t _oid;
  3337. _oid.Serialize( ar );
  3338. m_arrOuterProps.Add( _oid );
  3339. } // for( i = 0; i < nCount; i++ )
  3340. } // BLOCK END (+2.52): replacement of CDockState::Serialize() method
  3341. if( bSerializeResizableBarsState )
  3342. {
  3343. ar >> dwTmp;
  3344. nCount = INT(dwTmp);
  3345. for( i = 0; i < nCount; i++ )
  3346. {
  3347. InternalDockStateBar * pState =
  3348. new InternalDockStateBar;
  3349. pState->Serialize( ar );
  3350. ASSERT_VALID( pState );
  3351. m_arrBarStates.Add( pState );
  3352. } // for( i = 0; i < nCount; i++ )
  3353. #if (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  3354. ar >> dwTmp;
  3355. nCount = INT(dwTmp);
  3356. for( i = 0; i < nCount; i++ )
  3357. {
  3358. UINT nBarID;
  3359. ar >> dwTmp;
  3360. nBarID = UINT(dwTmp);
  3361. m_arrAutoHideOrder.Add( nBarID );
  3362. } // for( i = 0; i < nCount; i++ )
  3363. #endif // (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  3364. } // if( bSerializeResizableBarsState )
  3365. } // else from if( ar.IsStoring() )
  3366. }
  3367. void CExtControlBar::InternalDockStateSite::StateGet()
  3368. {
  3369. ASSERT_VALID( this );
  3370. ASSERT( m_pOuterState != NULL );
  3371. ASSERT_VALID( m_pDockSite );
  3372. Clear();
  3373. CExtDockBar::_OptimizeCircles( m_pDockSite );
  3374. CWnd * pWndPlacement = stat_GetWndForPlacement( m_pDockSite );
  3375. ASSERT_VALID( pWndPlacement );
  3376. ::memset( &m_wp, 0, sizeof(WINDOWPLACEMENT) );
  3377. m_wp.length = sizeof(WINDOWPLACEMENT);
  3378. // VERIFY( pWndPlacement->GetWindowPlacement( &m_wp ) );
  3379. VERIFY( CExtControlBar::stat_GetWindowPlacement( pWndPlacement->m_hWnd, m_wp ) );
  3380. POSITION pos = m_pDockSite->m_listControlBars.GetHeadPosition();
  3381. for( ; pos != NULL; )
  3382. {
  3383. CControlBar * pBar = (CControlBar *)
  3384. m_pDockSite->m_listControlBars.GetNext( pos );
  3385. ASSERT_VALID( pBar );
  3386. if( pBar->IsFloating() )
  3387. {
  3388. if( pBar->IsDockBar() )
  3389. continue;
  3390. if( pBar->IsKindOf(RUNTIME_CLASS(CExtDynControlBar)) )
  3391. {
  3392. CExtMiniDockFrameWnd * pFrame =
  3393. STATIC_DOWNCAST(
  3394. CExtMiniDockFrameWnd,
  3395. pBar->GetParentFrame()
  3396. );
  3397. ASSERT_VALID( pBar->m_pDockBar );
  3398. ASSERT_KINDOF( CDockBar, pBar->m_pDockBar );
  3399. ASSERT( !pBar->m_pDockBar->IsKindOf(RUNTIME_CLASS(CExtDockBar)) );
  3400. ASSERT( pBar->m_pDockBar->GetDlgCtrlID() == AFX_IDW_DOCKBAR_FLOAT );
  3401. ASSERT( pBar->m_pDockBar->GetParent() == pFrame );
  3402. AppendFloatingLayout(
  3403. STATIC_DOWNCAST(
  3404. CExtMiniDockFrameWnd,
  3405. pFrame
  3406. )
  3407. );
  3408. } // if( pBar->IsKindOf(RUNTIME_CLASS(CExtDynControlBar)) )
  3409. continue;
  3410. } // if( pBar->IsFloating() )
  3411. if( !pBar->IsDockBar() )
  3412. continue;
  3413. ASSERT_KINDOF( CDockBar, pBar );
  3414. if( !pBar->IsKindOf(RUNTIME_CLASS(CExtDockBar)) )
  3415. continue;
  3416. CFrameWnd * pFrame = pBar->GetParentFrame();
  3417. ASSERT_VALID( pFrame );
  3418. if( pFrame->IsKindOf(RUNTIME_CLASS(CMiniFrameWnd)) )
  3419. {
  3420. ASSERT_KINDOF( CExtMiniDockFrameWnd, pFrame );
  3421. continue;
  3422. }
  3423. ASSERT(
  3424. !pBar->GetParentFrame()->IsKindOf(
  3425. RUNTIME_CLASS( CMiniFrameWnd )
  3426. )
  3427. );
  3428. CExtDockBar * pDockBar =
  3429. STATIC_DOWNCAST(
  3430. CExtDockBar,
  3431. pBar
  3432. );
  3433. UINT nCircleNo = pDockBar->_GetCircleNo();
  3434. if( nCircleNo == 0 )
  3435. continue;
  3436. AppendDockBarAtSideLayout( pDockBar );
  3437. }
  3438. #if (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  3439. CExtDynAutoHideArea * arrAutoHiders[4] =
  3440. {
  3441. NULL, NULL, NULL, NULL
  3442. };
  3443. static const UINT arrSideMap[4] =
  3444. {
  3445. AFX_IDW_DOCKBAR_TOP,
  3446. AFX_IDW_DOCKBAR_BOTTOM,
  3447. AFX_IDW_DOCKBAR_LEFT,
  3448. AFX_IDW_DOCKBAR_RIGHT,
  3449. };
  3450. for( INT nSide = 0; nSide < 4; nSide++ )
  3451. {
  3452. UINT nDockBarID = arrSideMap[ nSide ];
  3453. CExtDockBar * pDockBar = (CExtDockBar *)
  3454. m_pDockSite->GetControlBar( nDockBarID );
  3455. if( pDockBar == NULL )
  3456. continue;
  3457. ASSERT_VALID( pDockBar );
  3458. ASSERT_KINDOF( CExtDockBar, pDockBar );
  3459. ASSERT( pDockBar->_GetCircleNo() == 0 );
  3460. arrAutoHiders[ nSide ] = pDockBar->_GetAutoHideArea();
  3461. if( arrAutoHiders[ nSide ] == NULL )
  3462. {
  3463. ASSERT( nSide == 0 );
  3464. break;
  3465. }
  3466. ASSERT_VALID( arrAutoHiders[ nSide ] );
  3467. ASSERT(
  3468. UINT( arrAutoHiders[ nSide ]->GetDlgCtrlID() )
  3469. == arrSideMap[nSide]
  3470. );
  3471. } // for( INT nSide = 0; nSide < 4; nSide++ )
  3472. if( arrAutoHiders[0] != NULL )
  3473. {
  3474. for( INT nSide = 0; nSide < 4; nSide++ )
  3475. {
  3476. ASSERT_VALID( arrAutoHiders[nSide] );
  3477. INT nCount = arrAutoHiders[nSide]->ItemGetCount();
  3478. for( INT nItem = 0; nItem < nCount; nItem++ )
  3479. {
  3480. CExtTabWnd::TAB_ITEM_INFO * pTII =
  3481. arrAutoHiders[nSide]->ItemGet( nItem );
  3482. ASSERT_VALID( pTII );
  3483. if( (pTII->GetItemStyle() & __ETWI_IN_GROUP_ACTIVE) == 0 )
  3484. continue;
  3485. CExtControlBar * pBar =
  3486. reinterpret_cast < CExtControlBar * >
  3487. ( pTII->LParamGet() );
  3488. ASSERT_VALID( pBar );
  3489. ASSERT_KINDOF( CExtControlBar, pBar );
  3490. ASSERT( !pBar->IsKindOf(RUNTIME_CLASS(CExtDynControlBar)) );
  3491. ASSERT( !pBar->IsFixedMode() );
  3492. ASSERT( m_pDockSite->m_listControlBars.Find(pBar) != NULL );
  3493. ASSERT( pBar->AutoHideModeGet() );
  3494. UINT nBarID = (UINT) pBar->GetDlgCtrlID();
  3495. m_arrAutoHideOrder.Add( nBarID );
  3496. } // for( INT nItem = 0; nItem < nCount; nItem++ )
  3497. } // for( nSide = 0; nSide < 4; nSide++ )
  3498. } // if( arrAutoHiders[0] != NULL )
  3499. #endif // (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  3500. ((InternalFriendlyFrameWnd *)m_pDockSite)->GetOuterDockState(
  3501. *m_pOuterState,
  3502. m_arrOuterProps
  3503. );
  3504. }
  3505. CExtControlBar::InternalAffixmentData::InternalAffixmentData()
  3506. : m_nAffixmentWeight( 0 )
  3507. , m_rcAffixment( 0, 0, 0, 0 )
  3508. , m_sizeCompressed( 0, 0 )
  3509. , m_dwAffixmentFlags( __EAFF_FIXED_MODE_INITIAL_RECALC )
  3510. {
  3511. }
  3512. CExtControlBar::InternalAffixmentData::InternalAffixmentData(
  3513. const CExtControlBar::InternalAffixmentData & other
  3514. )
  3515. {
  3516. _AssignFromOther( other );
  3517. }
  3518. CExtControlBar::InternalAffixmentData::~InternalAffixmentData()
  3519. {
  3520. }
  3521. void CExtControlBar::InternalAffixmentData::_AssignFromOther(
  3522. const CExtControlBar::InternalAffixmentData & other
  3523. )
  3524. {
  3525. m_nAffixmentWeight = other.m_nAffixmentWeight;
  3526. m_rcAffixment = other.m_rcAffixment;
  3527. m_sizeCompressed = other.m_sizeCompressed;
  3528. m_dwAffixmentFlags = other.m_dwAffixmentFlags;
  3529. }
  3530. bool CExtControlBar::InternalAffixmentData::IsEmpty() const
  3531. {
  3532. return (m_nAffixmentWeight==0) ? true : false;
  3533. }
  3534. void CExtControlBar::InternalAffixmentData::Empty()
  3535. {
  3536. m_nAffixmentWeight = 0;
  3537. m_rcAffixment.SetRectEmpty();
  3538. ASSERT(
  3539. m_rcAffixment.left == 0
  3540. && m_rcAffixment.right == 0
  3541. && m_rcAffixment.top == 0
  3542. && m_rcAffixment.bottom == 0
  3543. );
  3544. m_sizeCompressed.cx = m_sizeCompressed.cy = 0;
  3545. m_dwAffixmentFlags = __EAFF_FIXED_MODE_INITIAL_RECALC;
  3546. }
  3547. int CExtControlBar::InternalAffixmentData::CompareAffixment(
  3548. const CExtControlBar::InternalAffixmentData & other
  3549. ) const
  3550. {
  3551. if( !IsEmpty() )
  3552. {
  3553. if( other.IsEmpty() )
  3554. return 1;
  3555. if( m_nAffixmentWeight > other.m_nAffixmentWeight )
  3556. return 1;
  3557. if( m_nAffixmentWeight < other.m_nAffixmentWeight )
  3558. return -1;
  3559. } // if( !IsEmpty() )
  3560. else
  3561. {
  3562. if( !other.IsEmpty() )
  3563. return -1;
  3564. } // else from if( !IsEmpty() )
  3565. return 0;
  3566. }
  3567. void CExtControlBar::InternalAffixmentData::Serialize( CArchive & ar )
  3568. {
  3569. DWORD dwHelperFlags = 0;
  3570. if( ar.IsStoring() )
  3571. {
  3572. if( IsEmpty() )
  3573. dwHelperFlags |= 0x01;
  3574. ar << dwHelperFlags;
  3575. if( dwHelperFlags & 0x01 )
  3576. return;
  3577. ar << DWORD(m_nAffixmentWeight);
  3578. ar << m_rcAffixment;
  3579. ar << m_sizeCompressed;
  3580. ar << m_dwAffixmentFlags;
  3581. } // if( ar.IsStoring() )
  3582. else
  3583. {
  3584. Empty();
  3585. ar >> dwHelperFlags;
  3586. if( dwHelperFlags & 0x01 )
  3587. return;
  3588. DWORD dwTmp;
  3589. ar >> dwTmp;
  3590. m_nAffixmentWeight = UINT(dwTmp);
  3591. ar >> m_rcAffixment;
  3592. ar >> m_sizeCompressed;
  3593. ar >> m_dwAffixmentFlags;
  3594. } // else from if( ar.IsStoring() )
  3595. }
  3596. CExtControlBar::InternalDockStateBar *
  3597. CExtControlBar::InternalDockStateSite::AppendFloatingLayout(
  3598. CExtMiniDockFrameWnd * pMiniFrame
  3599. )
  3600. {
  3601. ASSERT_VALID( this );
  3602. ASSERT_VALID( pMiniFrame );
  3603. ASSERT_KINDOF( CExtMiniDockFrameWnd, pMiniFrame );
  3604. CDockBar * pFloatDocker =
  3605. STATIC_DOWNCAST(
  3606. CDockBar,
  3607. pMiniFrame->GetWindow( GW_CHILD )
  3608. );
  3609. ASSERT_VALID( pFloatDocker );
  3610. ASSERT( pFloatDocker->IsDockBar() );
  3611. ASSERT_KINDOF( CDockBar, pFloatDocker );
  3612. ASSERT( !pFloatDocker->IsKindOf(RUNTIME_CLASS(CExtDockBar)) );
  3613. ASSERT( pFloatDocker->GetDlgCtrlID() == AFX_IDW_DOCKBAR_FLOAT );
  3614. CExtDynControlBar * pDynDocker =
  3615. STATIC_DOWNCAST(
  3616. CExtDynControlBar,
  3617. pFloatDocker->GetWindow( GW_CHILD )
  3618. );
  3619. ASSERT_VALID( pDynDocker );
  3620. InternalDockStateBar * _idsb =
  3621. new InternalDockStateBar;
  3622. _idsb->StateGet( pDynDocker, NULL );
  3623. ASSERT( _idsb->m_dwDockStateFlags & InternalDockStateBar::__STATE_FLOATING );
  3624. m_arrBarStates.Add( _idsb );
  3625. return _idsb;
  3626. }
  3627. CExtControlBar::InternalDockStateBar *
  3628. CExtControlBar::InternalDockStateSite::AppendDockBarAtSideLayout(
  3629. CExtDockBar * pDockBar
  3630. )
  3631. {
  3632. ASSERT_VALID( this );
  3633. ASSERT_VALID( pDockBar );
  3634. ASSERT_KINDOF( CExtDockBar, pDockBar );
  3635. ASSERT( !pDockBar->IsKindOf(RUNTIME_CLASS(CExtDockDynBar)) );
  3636. ASSERT( pDockBar->_GetCircleNo() > 0 );
  3637. ASSERT( pDockBar->m_arrBars[0] == NULL );
  3638. bool bNewRow = false;
  3639. INT nCount = (INT)pDockBar->m_arrBars.GetSize();
  3640. InternalDockStateBar * pLastState = NULL;
  3641. for( INT nBar = 1; nBar < nCount; nBar ++ )
  3642. {
  3643. CExtControlBar * pBar = (CExtControlBar *)
  3644. pDockBar->m_arrBars[nBar];
  3645. if( pBar == NULL )
  3646. {
  3647. bNewRow = true;
  3648. continue;
  3649. }
  3650. if( __PLACEHODLER_BAR_PTR(pBar) )
  3651. continue;
  3652. ASSERT_KINDOF( CExtControlBar, pBar );
  3653. ASSERT( !pBar->IsFixedMode() );
  3654. InternalDockStateBar * _idsb =
  3655. new InternalDockStateBar;
  3656. _idsb->StateGet( pBar, NULL );
  3657. if( bNewRow )
  3658. _idsb->m_dwDockStateFlags |= InternalDockStateBar::__STATE_NEW_ROW;
  3659. m_arrBarStates.Add( _idsb );
  3660. bNewRow = false;
  3661. pLastState = _idsb;
  3662. }
  3663. return pLastState;
  3664. }
  3665. void CExtControlBar::InternalDockStateSite::StateSet( bool bPresetWP ) const
  3666. {
  3667. ASSERT_VALID( this );
  3668. ASSERT( m_pOuterState != NULL );
  3669. ASSERT_VALID( m_pDockSite );
  3670. if( bPresetWP )
  3671. {
  3672. CRect rcDockSiteWnd;
  3673. if( m_wp.showCmd == SW_SHOWMAXIMIZED
  3674. || m_wp.showCmd == SW_SHOWMINIMIZED
  3675. || m_wp.showCmd == SW_SHOWMINNOACTIVE
  3676. || m_wp.showCmd == SW_HIDE
  3677. || m_wp.showCmd == SW_FORCEMINIMIZE
  3678. )
  3679. {
  3680. CExtPaintManager::monitor_parms_t _mp;
  3681. CExtPaintManager::stat_GetMonitorParms( _mp, m_wp.rcNormalPosition );
  3682. rcDockSiteWnd = _mp.m_rcWorkArea;
  3683. }
  3684. else
  3685. {
  3686. rcDockSiteWnd =  m_wp.rcNormalPosition;
  3687. }
  3688. CWnd * pWndPlacement = CExtControlBar::stat_GetWndForPlacement( m_pDockSite );
  3689. ASSERT_VALID( pWndPlacement );
  3690. if( pWndPlacement != m_pDockSite )
  3691. {
  3692. m_pDockSite->SetWindowPos(
  3693. NULL,
  3694. 0, 0,
  3695. rcDockSiteWnd.Width(), rcDockSiteWnd.Height(),
  3696. SWP_NOZORDER|SWP_NOOWNERZORDER|SWP_NOACTIVATE
  3697. |SWP_NOREDRAW ////|SWP_NOSENDCHANGING 
  3698. |SWP_NOMOVE
  3699. );
  3700. pWndPlacement->SetWindowPos(
  3701. NULL,
  3702. rcDockSiteWnd.left, rcDockSiteWnd.top,
  3703. rcDockSiteWnd.Width(), rcDockSiteWnd.Height(),
  3704. SWP_NOZORDER|SWP_NOOWNERZORDER|SWP_NOACTIVATE
  3705. //|SWP_NOREDRAW
  3706. ////|SWP_NOSENDCHANGING
  3707. );
  3708. }
  3709. else
  3710. pWndPlacement->SetWindowPos(
  3711. NULL,
  3712. rcDockSiteWnd.left, rcDockSiteWnd.top,
  3713. rcDockSiteWnd.Width(), rcDockSiteWnd.Height(),
  3714. SWP_NOZORDER|SWP_NOOWNERZORDER|SWP_NOACTIVATE
  3715. |SWP_NOREDRAW ////|SWP_NOSENDCHANGING 
  3716. );
  3717. } // if( bPresetWP )
  3718. POSITION pos;
  3719. INT i, nCount;
  3720. ExtControlBarVector_t vRedockBars;
  3721. for( pos = m_pDockSite->m_listControlBars.GetHeadPosition();
  3722. pos != NULL;
  3723. )
  3724. {
  3725. CControlBar * pBar = (CControlBar *)
  3726. m_pDockSite->m_listControlBars.GetNext( pos );
  3727. ASSERT_VALID( pBar );
  3728. if( (! pBar->IsKindOf(RUNTIME_CLASS(CExtControlBar)) )
  3729. || ( ((CExtControlBar*)pBar)->IsFixedMode() )
  3730. || ( ((CExtControlBar*)pBar)->IsFixedDockStyle() )
  3731. )
  3732. {
  3733. if( ! m_bSerializeFixedBarsState )
  3734. continue;
  3735. }
  3736. else
  3737. {
  3738. if( ! m_bSerializeResizableBarsState )
  3739. continue;
  3740. }
  3741. if( pBar->GetParentFrame()->IsKindOf(RUNTIME_CLASS(CMiniFrameWnd)) )
  3742. {
  3743. if( pBar->IsKindOf(RUNTIME_CLASS(CExtControlBar))
  3744. && (! pBar->IsKindOf(RUNTIME_CLASS(CExtDynControlBar)) )
  3745. )
  3746. vRedockBars.Add( (CExtControlBar *)pBar );
  3747. continue;
  3748. }
  3749. if( pBar->IsDockBar() )
  3750. continue;
  3751. if( pBar->m_pDockSite == NULL
  3752. || pBar->m_pDockContext == NULL
  3753. )
  3754. continue;
  3755. if( pBar->m_pDockBar == NULL )
  3756. {
  3757. m_pDockSite->DockControlBar( pBar );
  3758. m_pDockSite->ShowControlBar( pBar, FALSE, TRUE );
  3759. continue;
  3760. }
  3761. if( (! pBar->IsKindOf(RUNTIME_CLASS(CExtControlBar)) )
  3762. || pBar->IsKindOf(RUNTIME_CLASS(CExtDynControlBar))
  3763. || ((CExtControlBar *)pBar)->IsFixedMode()
  3764. )
  3765. continue;
  3766. ASSERT_KINDOF( CExtDockBar, pBar->m_pDockBar );
  3767. if( ((CExtDockBar*)pBar->m_pDockBar)->_GetCircleNo() == 0
  3768. && (! pBar->m_pDockBar->IsKindOf(RUNTIME_CLASS(CExtDockDynBar)) )
  3769. )
  3770. continue;
  3771. #if (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  3772. if( m_bSerializeResizableBarsState
  3773. && ((CExtControlBar *)pBar)->AutoHideModeGet()
  3774. )
  3775. ((CExtControlBar *)pBar)->AutoHideModeSet(
  3776. false, false, false, true );
  3777. #endif // (!defined __EXT_MFC_NO_TAB_CONTROLBARS)
  3778. m_pDockSite->ShowControlBar( pBar, FALSE, TRUE );
  3779. }
  3780. nCount = (INT)vRedockBars.GetSize();
  3781. for( i = 0; i < nCount; i++ )
  3782. {
  3783. CExtControlBar * pBar = vRedockBars[i];
  3784. DWORD dwBarStyle = pBar->GetBarStyle();
  3785. UINT nBarDockerID = AFX_IDW_DOCKBAR_TOP;
  3786. if( dwBarStyle & CBRS_ALIGN_BOTTOM )
  3787. nBarDockerID = AFX_IDW_DOCKBAR_BOTTOM;
  3788. else if( dwBarStyle & CBRS_ALIGN_LEFT )
  3789. nBarDockerID = AFX_IDW_DOCKBAR_LEFT;
  3790. else if( dwBarStyle & CBRS_ALIGN_RIGHT )
  3791. nBarDockerID = AFX_IDW_DOCKBAR_RIGHT;
  3792. if( pBar->IsFixedMode() )
  3793. {
  3794. bool bFloating = pBar->IsFloating();
  3795. if( bFloating )
  3796. m_pDockSite->ShowControlBar( pBar, FALSE, FALSE );
  3797. m_pDockSite->DockControlBar(
  3798. pBar,
  3799. nBarDockerID
  3800. );
  3801. m_pDockSite->ShowControlBar( pBar, FALSE, TRUE );
  3802. } // if( pBar->IsFixedMode() )
  3803. else
  3804. {
  3805. ((CExtControlBar *)pBar)->DockControlBar(
  3806. nBarDockerID,
  3807. 1,
  3808. m_pDockSite,
  3809. false
  3810. );
  3811. m_pDockSite->ShowControlBar( pBar, FALSE, TRUE );
  3812. } // else from if( pBar->IsFixedMode() )
  3813. } // for( i = 0; i < nCount; i++ )
  3814. CExtDockBar::_OptimizeCircles( m_pDockSite );
  3815. m_pDockSite->RecalcLayout();
  3816. if( m_bSerializeResizableBarsState )
  3817. {
  3818. ASSERT( ! ((InternalFriendlyFrameWnd*)m_pDockSite)->m_bInRecalcLayout );
  3819. ((InternalFriendlyFrameWnd*)m_pDockSite)->m_bInRecalcLayout = TRUE;
  3820. nCount = (INT)m_arrBarStates.GetSize();
  3821. for( i = 0; i < nCount; i++ )