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

界面编程

开发平台:

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. #include "stdafx.h"
  22. #if (!defined __EXT_BUTTON_H)
  23. #include <ExtButton.h>
  24. #endif
  25. #if (!defined __ExtCmdManager_H)
  26. #include <ExtCmdManager.h>
  27. #endif
  28. #if (!defined __EXT_PAINT_MANAGER_H)
  29. #include <ExtPaintManager.h>
  30. #endif
  31. #if (!defined __EXT_MEMORY_DC_H)
  32. #include <../Src/ExtMemoryDC.h>
  33. #endif
  34. #if (!defined __EXT_POPUP_MENU_WND_H)
  35. #include <ExtPopupMenuWnd.h>
  36. #endif
  37. #if (!defined __EXTCOLORDLG_H)
  38. #include <ExtColorDlg.h>
  39. #endif
  40. #if (!defined __EXT_TOOLCONTROLBAR_H)
  41. #include <ExtToolControlBar.h>
  42. #endif
  43. #if (!defined __EXT_MENUCONTROLBAR_H)
  44. #include <ExtMenuControlBar.h>
  45. #endif
  46. #if (!defined __EXT_CONTROLS_COMMON_H)
  47. #include <ExtControlsCommon.h>
  48. #endif
  49. #if (!defined __AFXPRIV_H__)
  50. #include <AfxPriv.h>
  51. #endif
  52. #include <intshcut.h>
  53. #include <Resources/Resource.h>
  54. #ifdef _DEBUG
  55. #define new DEBUG_NEW
  56. #undef THIS_FILE
  57. static char THIS_FILE[] = __FILE__;
  58. #endif
  59. IMPLEMENT_DYNCREATE( CExtButton, CButton );
  60. CExtButton::CExtButton()
  61. : m_nButtonType( BS_PUSHBUTTON )
  62. , m_nCheck( BST_UNCHECKED )
  63. , m_hCursor( NULL )
  64. , m_bDrawBorder( true )
  65. , m_bDrawFocusRect( true )
  66. , m_bSeparatedDropDown( false )
  67. , m_bAutoChangeID( false )
  68. , m_bAutoChangeCmdIcon( false )
  69. , m_bMouseOver( false )
  70. , m_bPushed( false )
  71. , m_bState( false )
  72. , m_bPushTracking( false )
  73. , m_bKeyTracking( false )
  74. , m_bDefaultButton( false )
  75. , m_nTrackingHT( 0 )
  76. , m_nIconAlignment( -1 )
  77. , m_rcIconMargins( 3, 3, 3, 3 )
  78. , m_rcTextMargins( 3, 3, 3, 3 )
  79. , m_bNoRefToCmdMngr( false )
  80. , m_dwMenuOpt( TPMX_TOPALIGN )
  81. , m_nMenuLeftAreaWidth( 0 )
  82. , m_clrTextDisabled( ((COLORREF)-1L) )
  83. , m_clrTextNormal( ((COLORREF)-1L) )
  84. , m_clrTextHover( ((COLORREF)-1L) )
  85. , m_clrTextPressed( ((COLORREF)-1L) )
  86. , m_clrBackground( ((COLORREF)-1L) )
  87. , m_bQuickActivationEnabled( true )
  88. , m_bQuickActivationSeparatedDropDown( true )
  89. , m_bQuickActivationCancelNearest( false )
  90. , m_nAdvancedTipStyle( INT(CExtPopupMenuTipWnd::__ETS_RECTANGLE_NO_ICON) )
  91. , m_bToolTipActive( false )
  92. , m_nFocusMode( CExtPaintManager::__EBFM_CAPTION_AREA )
  93.    , m_bIconOnly( false ) // STAR - icon only 
  94. {
  95. EnableToolTips();
  96. }
  97. CExtButton::~CExtButton()
  98. {
  99. CExtAnimationSite * pAcAS = AnimationClient_SiteGet();
  100. if( pAcAS != NULL )
  101. pAcAS->AnimationSite_ClientRemove( this );
  102. }
  103. BEGIN_MESSAGE_MAP(CExtButton, CButton)
  104.     //{{AFX_MSG_MAP(CExtButton)
  105. ON_WM_CAPTURECHANGED()
  106. ON_WM_SETCURSOR()
  107. ON_WM_KILLFOCUS()
  108. ON_WM_MOUSEMOVE()
  109. ON_WM_LBUTTONDOWN()
  110. ON_WM_LBUTTONDBLCLK()
  111. ON_WM_LBUTTONUP()
  112. ON_WM_PAINT()
  113. ON_WM_ERASEBKGND()
  114. ON_WM_ENABLE()
  115. ON_WM_CANCELMODE()
  116. ON_WM_SIZE()
  117. //}}AFX_MSG_MAP
  118. ON_WM_ACTIVATEAPP()
  119. ON_REGISTERED_MESSAGE(
  120. CExtToolControlBar::g_nMsgPutToPopupMenu,
  121. _OnPutToPopupMenuImpl
  122. )
  123. ON_WM_SYSCOLORCHANGE()
  124. __EXT_MFC_SAFE_ON_WM_SETTINGCHANGE()
  125. ON_MESSAGE(WM_DISPLAYCHANGE, OnDisplayChange)
  126. ON_MESSAGE(__ExtMfc_WM_THEMECHANGED, OnThemeChanged)
  127. END_MESSAGE_MAP()
  128. LRESULT CExtButton::_OnPutToPopupMenuImpl(WPARAM wParam, LPARAM lParam)
  129. {
  130. lParam;
  131. CExtPopupMenuWnd * pPopup = reinterpret_cast < CExtPopupMenuWnd * > (wParam);
  132. ASSERT_VALID( pPopup );
  133. return OnPutToPopupMenu( pPopup ) ? TRUE : FALSE;
  134. }
  135. void CExtButton::OnSize(UINT nType, int cx, int cy) 
  136. {
  137. AnimationSite_ClientProgressStop( this );
  138. AnimationClient_StateGet( false ).Empty();
  139. AnimationClient_StateGet( true ).Empty();
  140. CRect rectButton;
  141. GetClientRect( &rectButton );
  142. AnimationClient_TargetRectSet( rectButton );
  143. CButton::OnSize( nType, cx, cy );
  144. }
  145. bool CExtButton::OnPutToPopupMenu( CExtPopupMenuWnd * pPopup )
  146. {
  147. ASSERT_VALID( pPopup );
  148. //bool bInBar = false;
  149. //CWnd * pWnd = GetParent();
  150. // ASSERT_VALID( pWnd );
  151. // if( pWnd->IsKindOf(RUNTIME_CLASS(CControlBar)) )
  152. // {
  153. // bInBar = true;
  154. // pWnd = pWnd->GetParentFrame();
  155. // ASSERT_VALID( pWnd );
  156. // if( pWnd->IsKindOf(RUNTIME_CLASS(CMiniFrameWnd)) )
  157. // {
  158. // pWnd = pWnd->GetParentFrame();
  159. // ASSERT_VALID( pWnd );
  160. // }
  161. // }
  162. if( m_menu.GetSafeHmenu() != NULL )
  163. {
  164. ASSERT( ::IsMenu( m_menu.GetSafeHmenu() ) );
  165. CExtPopupMenuWnd * pPopupIns =
  166. CExtPopupMenuWnd::InstantiatePopupMenu(
  167. m_hWnd,
  168. RUNTIME_CLASS(CExtPopupMenuWnd),
  169. this
  170. );
  171. VERIFY(
  172. pPopupIns->CreatePopupMenu(
  173. //pWnd->GetSafeHwnd()
  174. pPopup->GetCmdReceiverHWND()
  175. )
  176. );
  177. VERIFY(
  178. pPopupIns->UpdateFromMenu(
  179. pPopup->GetCmdReceiverHWND(),
  180. &m_menu
  181. )
  182. );
  183. CExtSafeString sPopupText( _T("") );
  184. CExtCmdItem * pCmdItem =
  185. g_CmdManager->CmdGetPtr(
  186. g_CmdManager->ProfileNameFromWnd( GetSafeHwnd() ),
  187. GetDlgCtrlID()
  188. );
  189. if( pCmdItem != NULL )
  190. sPopupText = pCmdItem->m_sMenuText;
  191. if( sPopupText.IsEmpty() )
  192. OnQueryWindowText( sPopupText );
  193. VERIFY(
  194. pPopup->ItemInsertSpecPopup(
  195. pPopupIns,
  196. -1,
  197. (LPCTSTR)sPopupText,
  198. m_icon
  199. )
  200. );
  201. return true;
  202. }
  203. return false;
  204. }
  205. // for back compatibility
  206. void CExtButton::SetIcon(
  207. __EXT_MFC_SAFE_LPCTSTR sResourceIconInID,
  208. __EXT_MFC_SAFE_LPCTSTR sResourceIconOutID, // = NULL
  209. __EXT_MFC_SAFE_LPCTSTR sResourceIconDisabledID, // = NULL
  210. __EXT_MFC_SAFE_LPCTSTR sResourceIconPressedID, // = NULL
  211. INT nWidth, // = 0
  212. INT nHeight // = 0
  213. )
  214. {
  215. if( nWidth < 0 )
  216. nWidth = 0;
  217. if( nHeight < 0 )
  218. nHeight = 0;
  219. HICON hIconIn = NULL;
  220. HICON hIconOut = NULL;
  221. HICON hIconDisabled = NULL;
  222. HICON hIconPressed = NULL;
  223. if( sResourceIconInID != NULL )
  224. {
  225. HINSTANCE hInstResource =
  226. ::AfxFindResourceHandle(
  227. sResourceIconInID,
  228. RT_GROUP_ICON
  229. );
  230. if( hInstResource != NULL )
  231. hIconIn = (HICON)
  232. ::LoadImage(
  233. hInstResource,
  234. sResourceIconInID,
  235. IMAGE_ICON,
  236. nWidth,
  237. nHeight,
  238. 0
  239. );
  240. }
  241. if( sResourceIconOutID != NULL )
  242. {
  243. HINSTANCE hInstResource =
  244. AfxFindResourceHandle(
  245. sResourceIconOutID,
  246. RT_GROUP_ICON
  247. );
  248. if( hInstResource != NULL )
  249. hIconOut = (HICON)
  250. ::LoadImage(
  251. hInstResource,
  252. sResourceIconOutID,
  253. IMAGE_ICON,
  254. nWidth,
  255. nHeight,
  256. 0
  257. );
  258. }
  259. if( sResourceIconDisabledID != NULL )
  260. {
  261. HINSTANCE hInstResource =
  262. AfxFindResourceHandle(
  263. sResourceIconDisabledID,
  264. RT_GROUP_ICON
  265. );
  266. if( hInstResource != NULL )
  267. hIconDisabled = (HICON)
  268. ::LoadImage(
  269. hInstResource,
  270. sResourceIconDisabledID,
  271. IMAGE_ICON,
  272. nWidth,
  273. nHeight,
  274. 0
  275. );
  276. }
  277. if( sResourceIconPressedID != NULL )
  278. {
  279. HINSTANCE hInstResource =
  280. AfxFindResourceHandle(
  281. sResourceIconPressedID,
  282. RT_GROUP_ICON
  283. );
  284. if( hInstResource != NULL )
  285. hIconPressed = (HICON)
  286. ::LoadImage(
  287. hInstResource,
  288. sResourceIconPressedID,
  289. IMAGE_ICON,
  290. nWidth,
  291. nHeight,
  292. 0
  293. );
  294. } // if( hInstResource != NULL )
  295. SetIcon(
  296. hIconIn,
  297. hIconOut,
  298. hIconDisabled,
  299. hIconPressed
  300. );
  301. }
  302. // for back compatibility
  303. void CExtButton::SetIcon(
  304. UINT nResourceIconInID,
  305. UINT nResourceIconOutID, // = 0
  306. UINT nResourceIconDisabledID, // = 0
  307. UINT nResourceIconPressedID, // = 0
  308. INT nWidth, // = 0
  309. INT nHeight // = 0
  310. )
  311. {
  312. SetIcon(
  313. ( nResourceIconInID != 0 )
  314. ? __EXT_MFC_SAFE_LPCTSTR( MAKEINTRESOURCE(nResourceIconInID) )
  315. : __EXT_MFC_SAFE_LPCTSTR( NULL ),
  316. ( nResourceIconOutID != 0 )
  317. ? __EXT_MFC_SAFE_LPCTSTR( MAKEINTRESOURCE(nResourceIconOutID) )
  318. : __EXT_MFC_SAFE_LPCTSTR( NULL ),
  319. ( nResourceIconDisabledID != 0 )
  320. ? __EXT_MFC_SAFE_LPCTSTR( MAKEINTRESOURCE(nResourceIconDisabledID) )
  321. : __EXT_MFC_SAFE_LPCTSTR( NULL ),
  322. ( nResourceIconPressedID != 0 )
  323. ? __EXT_MFC_SAFE_LPCTSTR( MAKEINTRESOURCE(nResourceIconPressedID) )
  324. : __EXT_MFC_SAFE_LPCTSTR( NULL ),
  325. nWidth,
  326. nHeight
  327. );
  328. }
  329. // for back compatibility
  330. void CExtButton::SetIcon(
  331. HICON hIconIn,
  332. HICON hIconOut, // = NULL
  333. HICON hIconDisabled, // = NULL
  334. HICON hIconPressed // = NULL
  335. )
  336. {
  337. m_icon.Empty();
  338. if( hIconIn == NULL
  339. && hIconOut == NULL
  340. && hIconDisabled == NULL
  341. && hIconPressed == NULL
  342. )
  343. return;
  344. if( hIconIn != NULL && hIconOut != NULL )
  345. {
  346. m_icon.m_bmpHover.AssignFromHICON( hIconIn );
  347. m_icon.m_dwFlags |= __EXT_ICON_PERSISTENT_BITMAP_HOVER;
  348. } // if( hIconIn != NULL && hIconOut != NULL )
  349. if( hIconOut != NULL || hIconIn != NULL )
  350. {
  351. m_icon.m_bmpNormal.AssignFromHICON(
  352. ( hIconOut != NULL ) ? hIconOut : hIconIn
  353. );
  354. } // if( hIconOut != NULL || hIconIn != NULL )
  355. if( hIconIn != NULL )
  356. ::DestroyIcon( hIconIn );
  357. if( hIconOut != NULL )
  358. ::DestroyIcon( hIconOut );
  359. if( hIconDisabled != NULL )
  360. {
  361. m_icon.m_bmpDisabled.AssignFromHICON( hIconDisabled );
  362. m_icon.m_dwFlags |= __EXT_ICON_PERSISTENT_BITMAP_DISABLED;
  363. ::DestroyIcon( hIconDisabled );
  364. } // if( hIconDisabled != NULL )
  365. if( hIconPressed != NULL )
  366. {
  367. m_icon.m_bmpPressed.AssignFromHICON( hIconPressed );
  368. m_icon.m_dwFlags |= __EXT_ICON_PERSISTENT_BITMAP_PRESSED;
  369. ::DestroyIcon( hIconPressed );
  370. } // if( hIconPressed != NULL )
  371. if( GetSafeHwnd() != NULL
  372. && ::IsWindow( GetSafeHwnd() )
  373. )
  374. Invalidate();
  375. BOOL CExtButton::SetBtnCursor(int nCursorId)
  376. {
  377. HINSTANCE hInstResource;
  378. if( m_hCursor != NULL )
  379. {
  380. ::DestroyCursor( m_hCursor );
  381. m_hCursor = NULL;
  382. }
  383. if( nCursorId != -1 )
  384. {
  385. hInstResource =
  386. ::AfxFindResourceHandle(
  387. MAKEINTRESOURCE( nCursorId ),
  388. RT_GROUP_CURSOR
  389. );
  390. m_hCursor = (HCURSOR)
  391. ::LoadImage(
  392. hInstResource,
  393. MAKEINTRESOURCE( nCursorId ),
  394. IMAGE_CURSOR,
  395. 0,
  396. 0,
  397. 0
  398. );
  399. if( m_hCursor == NULL )
  400. {
  401. m_hCursor =
  402. ::LoadCursor(
  403. NULL,
  404. MAKEINTRESOURCE( nCursorId )
  405. );
  406. if( m_hCursor == NULL )
  407. return FALSE;
  408. }
  409. }
  410. return TRUE;
  411. }
  412. void CExtButton::SetFlat( BOOL bState )
  413. {
  414. if( GetSafeHwnd() != NULL
  415. && ::IsWindow( GetSafeHwnd() )
  416. )
  417. {
  418. ModifyStyle(
  419. bState ? 0 : BS_FLAT,
  420. bState ? BS_FLAT : 0,
  421. SWP_FRAMECHANGED
  422. );
  423. Invalidate();
  424. }
  425. }
  426. BOOL CExtButton::GetFlat() const
  427. {
  428. return ( (GetStyle()&BS_FLAT) != 0 ) ? TRUE : FALSE;
  429. }
  430. BOOL CExtButton::GetDrawBorder() const
  431. {
  432. return m_bDrawBorder ? TRUE : FALSE;
  433. }
  434. void CExtButton::SetDrawBorder( BOOL bEnable )
  435. {
  436. m_bDrawBorder = bEnable ? true : false;
  437. if( GetSafeHwnd() != NULL
  438. && ::IsWindow( GetSafeHwnd() )
  439. )
  440. Invalidate();
  441. }
  442. BOOL CExtButton::GetDrawFocusRect() const
  443. {
  444. return m_bDrawFocusRect ? TRUE : FALSE;
  445. }
  446. void CExtButton::SetDrawFocusRect( BOOL bEnable )
  447. {
  448. m_bDrawFocusRect = bEnable ? true : false;
  449. if( GetSafeHwnd() != NULL
  450. && ::IsWindow( GetSafeHwnd() )
  451. )
  452. Invalidate();
  453. }
  454. BOOL CExtButton::GetSeparatedDropDown() const
  455. {
  456. return m_bSeparatedDropDown ? TRUE : FALSE;
  457. }
  458. void CExtButton::SetSeparatedDropDown(
  459. BOOL bSeparatedDropDown // = TRUE
  460. )
  461. {
  462. m_bSeparatedDropDown = bSeparatedDropDown ? true : false;
  463. if( GetSafeHwnd() != NULL
  464. && ::IsWindow( GetSafeHwnd() )
  465. )
  466. Invalidate();
  467. }
  468. BOOL CExtButton::GetAutoChangeID() const
  469. {
  470. return m_bAutoChangeID;
  471. }
  472. void CExtButton::SetAutoChangeID(
  473. BOOL bAutoChangeID // = TRUE
  474. )
  475. {
  476. m_bAutoChangeID = bAutoChangeID ? true : false;
  477. if( GetSafeHwnd() != NULL
  478. && ::IsWindow( GetSafeHwnd() )
  479. )
  480. Invalidate();
  481. }
  482. BOOL CExtButton::GetAutoChangeCmdIcon() const
  483. {
  484. return m_bAutoChangeCmdIcon ? TRUE : FALSE;
  485. }
  486. void CExtButton::SetAutoChangeCmdIcon(
  487. BOOL bAutoChangeCmdIcon // = TRUE
  488. )
  489. {
  490. m_bAutoChangeCmdIcon = bAutoChangeCmdIcon ? true : false;
  491. }
  492. void CExtButton::SetTextColorDisabled( COLORREF clrText )
  493. ASSERT_VALID( this );
  494. m_clrTextDisabled = clrText; 
  495. if( GetSafeHwnd() != NULL
  496. && ::IsWindow( m_hWnd )
  497. )
  498. Invalidate();
  499. }
  500. void CExtButton::SetTextColorNormal( COLORREF clrText )
  501. ASSERT_VALID( this );
  502. m_clrTextNormal = clrText; 
  503. if( GetSafeHwnd() != NULL
  504. && ::IsWindow( m_hWnd )
  505. )
  506. Invalidate();
  507. }
  508. void CExtButton::SetTextColorHover( COLORREF clrText )
  509. ASSERT_VALID( this );
  510. m_clrTextHover = clrText; 
  511. if( GetSafeHwnd() != NULL
  512. && ::IsWindow( m_hWnd )
  513. )
  514. Invalidate();
  515. }
  516. void CExtButton::SetTextColorPressed( COLORREF clrText )
  517. ASSERT_VALID( this );
  518. m_clrTextPressed = clrText; 
  519. if( GetSafeHwnd() != NULL
  520. && ::IsWindow( m_hWnd )
  521. )
  522. Invalidate();
  523. }
  524. void CExtButton::SetBkColor( COLORREF clrBk )
  525. ASSERT_VALID( this );
  526. m_clrBackground = clrBk; 
  527. if( GetSafeHwnd() != NULL
  528. && ::IsWindow( m_hWnd )
  529. )
  530. Invalidate();
  531. }
  532. COLORREF CExtButton::GetTextColorDisabled() const
  533. {
  534. ASSERT_VALID( this );
  535. return m_clrTextDisabled; 
  536. }
  537. COLORREF CExtButton::GetTextColorNormal() const
  538. ASSERT_VALID( this );
  539. return m_clrTextNormal; 
  540. }
  541. COLORREF CExtButton::GetTextColorHover() const
  542. {
  543. ASSERT_VALID( this );
  544. return m_clrTextHover; 
  545. }
  546. COLORREF CExtButton::GetTextColorPressed() const
  547. ASSERT_VALID( this );
  548. return m_clrTextPressed; 
  549. }
  550. COLORREF CExtButton::GetBkColor() const
  551. ASSERT_VALID( this );
  552. return m_clrBackground; 
  553. }
  554. void CExtButton::SetTextAlignment( 
  555. INT nAlignment 
  556. )
  557. {
  558. ASSERT_VALID( this );
  559. if( GetSafeHwnd() == NULL
  560. || (!::IsWindow( m_hWnd ))
  561. )
  562. return;
  563. DWORD dwStyle = 0;
  564. if( (nAlignment&CExtPaintManager::__ALIGN_HORIZ_MASK) == CExtPaintManager::__ALIGN_HORIZ_RIGHT )
  565. dwStyle |= BS_RIGHT;
  566. else if( (nAlignment&CExtPaintManager::__ALIGN_HORIZ_MASK) == CExtPaintManager::__ALIGN_HORIZ_CENTER )
  567. dwStyle |= BS_CENTER;
  568. else  if( (nAlignment&CExtPaintManager::__ALIGN_HORIZ_MASK) == CExtPaintManager::__ALIGN_HORIZ_LEFT )
  569. dwStyle |= BS_LEFT;
  570. if( (nAlignment&CExtPaintManager::__ALIGN_VERT_MASK) == CExtPaintManager::__ALIGN_VERT_BOTTOM )
  571. dwStyle |= BS_BOTTOM;
  572. else if( (nAlignment&CExtPaintManager::__ALIGN_VERT_MASK) == CExtPaintManager::__ALIGN_VERT_TOP )
  573. dwStyle |= BS_TOP;
  574. else
  575. dwStyle |= BS_VCENTER;
  576. const DWORD __BS_H_MASK = (BS_LEFT|BS_CENTER|BS_RIGHT);
  577. const DWORD __BS_V_MASK = (BS_TOP|BS_VCENTER|BS_BOTTOM);
  578. ModifyStyle( 
  579. __BS_H_MASK | __BS_V_MASK, 
  580. dwStyle
  581. );
  582. Invalidate();
  583. }
  584. INT CExtButton::GetTextAlignment() const
  585. {
  586. ASSERT_VALID( this );
  587. return OnQueryAlignmentText();
  588. }
  589. void CExtButton::SetIconAlignment( 
  590. INT nAlignment 
  591. )
  592. {
  593. ASSERT_VALID( this );
  594. m_nIconAlignment = nAlignment;
  595. if( GetSafeHwnd() != NULL
  596. && ::IsWindow( GetSafeHwnd() )
  597. )
  598. Invalidate();
  599. }
  600. INT CExtButton::GetIconAlignment() const
  601. {
  602. ASSERT_VALID( this );
  603. return OnQueryAlignmentIcon();
  604. }
  605. void CExtButton::SetTextMargins(
  606. INT nLeft,
  607. INT nTop,
  608. INT nRight,
  609. INT nBottom
  610. )
  611. {
  612. ASSERT_VALID( this );
  613. m_rcTextMargins.SetRect(
  614. nLeft,
  615. nTop,
  616. nRight,
  617. nBottom
  618. );
  619. if( GetSafeHwnd() != NULL
  620. && ::IsWindow( m_hWnd )
  621. )
  622. Invalidate();
  623. }
  624. void CExtButton::SetTextMargins(
  625. const RECT & rcMargins
  626. )
  627. {
  628. ASSERT_VALID( this );
  629. SetTextMargins(
  630. rcMargins.left,
  631. rcMargins.top,
  632. rcMargins.right,
  633. rcMargins.bottom
  634. );
  635. }
  636. void CExtButton::SetTextMargins(
  637. LPCRECT lprcMargins
  638. )
  639. {
  640. ASSERT_VALID( this );
  641. if( lprcMargins == NULL )
  642. {
  643. ASSERT( FALSE );
  644. return;
  645. }
  646. SetTextMargins(
  647. lprcMargins->left,
  648. lprcMargins->top,
  649. lprcMargins->right,
  650. lprcMargins->bottom
  651. );
  652. }
  653. void CExtButton::SetIconMargins(
  654. INT nLeft,
  655. INT nTop,
  656. INT nRight,
  657. INT nBottom
  658. )
  659. {
  660. ASSERT_VALID( this );
  661. m_rcIconMargins.SetRect(
  662. nLeft,
  663. nTop,
  664. nRight,
  665. nBottom
  666. );
  667. if( GetSafeHwnd() != NULL
  668. && ::IsWindow( m_hWnd )
  669. )
  670. Invalidate();
  671. }
  672. void CExtButton::SetIconMargins(
  673. const RECT & rcMargins
  674. )
  675. {
  676. ASSERT_VALID( this );
  677. SetIconMargins(
  678. rcMargins.left,
  679. rcMargins.top,
  680. rcMargins.right,
  681. rcMargins.bottom
  682. );
  683. }
  684. void CExtButton::SetIconMargins(
  685. LPCRECT lprcMargins
  686. )
  687. {
  688. ASSERT_VALID( this );
  689. if( lprcMargins == NULL )
  690. {
  691. ASSERT( FALSE );
  692. return;
  693. }
  694. SetIconMargins(
  695. lprcMargins->left,
  696. lprcMargins->top,
  697. lprcMargins->right,
  698. lprcMargins->bottom
  699. );
  700. }
  701. void CExtButton::GetTextMargins(
  702. INT & nLeft,
  703. INT & nTop,
  704. INT & nRight,
  705. INT & nBottom
  706. ) const
  707. {
  708. ASSERT_VALID( this );
  709. CRect rcTextMargins = GetTextMargins();
  710. nLeft = rcTextMargins.left;
  711. nTop = rcTextMargins.top;
  712. nRight = rcTextMargins.right;
  713. nBottom = rcTextMargins.bottom;
  714. }
  715. CRect CExtButton::GetTextMargins() const
  716. {
  717. ASSERT_VALID( this );
  718. return m_rcTextMargins;
  719. }
  720. void CExtButton::GetIconMargins(
  721. INT & nLeft,
  722. INT & nTop,
  723. INT & nRight,
  724. INT & nBottom
  725. ) const
  726. {
  727. ASSERT_VALID( this );
  728. CRect rcIconMargins = GetTextMargins();
  729. nLeft = rcIconMargins.left;
  730. nTop = rcIconMargins.top;
  731. nRight = rcIconMargins.right;
  732. nBottom = rcIconMargins.bottom;
  733. }
  734. CRect CExtButton::GetIconMargins() const
  735. {
  736. ASSERT_VALID( this );
  737. return m_rcIconMargins;
  738. }
  739. INT CExtButton::GetFocusMode() const
  740. {
  741. ASSERT_VALID( this );
  742. return m_nFocusMode;
  743. }
  744. INT CExtButton::SetFocusMode( 
  745. INT nFocusMode 
  746. )
  747. {
  748. ASSERT_VALID( this );
  749. INT nFocusModeOld = m_nFocusMode;
  750. m_nFocusMode = nFocusMode;
  751. if( GetSafeHwnd() != NULL
  752. && ::IsWindow( m_hWnd )
  753. )
  754. Invalidate();
  755. return nFocusModeOld;
  756. }
  757. void CExtButton::_CalcClientRects(
  758. CRect & rcMainArea,
  759. CRect & rcDropDown
  760. ) const
  761. {
  762. GetClientRect( &rcMainArea );
  763. rcDropDown = rcMainArea;
  764. rcDropDown.left = rcDropDown.right;
  765. if( !m_bSeparatedDropDown )
  766. return;
  767. rcDropDown.left -= 
  768. __DROPDOWN_ARROW_GAP*2
  769. + CExtPaintManager::g_glyph_btn_expand_bottom.Size().cx
  770. ;
  771. rcMainArea.right = rcDropDown.left;
  772. }
  773. INT CExtButton::_HtMouseOnButton( const POINT & ptClient ) const // 0 - not, 1-main area, 2-dropdown area
  774. {
  775. CRect rcMainArea, rcDropDown;
  776. _CalcClientRects( rcMainArea, rcDropDown );
  777. if( rcMainArea.PtInRect(ptClient) )
  778. return 1;
  779. if( !m_bSeparatedDropDown )
  780. return 0;
  781. if( rcDropDown.PtInRect(ptClient) )
  782. return 2;
  783. return 0;
  784. }
  785. INT CExtButton::_HtMouseOnButton() const // 0 - not, 1-main area, 2-dropdown area
  786. {
  787. POINT point;
  788. if( ! ::GetCursorPos( &point ) )
  789. return 0;
  790. HWND hWndUnderMouse = ::WindowFromPoint( point );
  791. if( hWndUnderMouse == NULL || hWndUnderMouse != m_hWnd )
  792. return false;
  793. if( !m_bSeparatedDropDown )
  794. return 1;
  795. ScreenToClient( &point );
  796. return _HtMouseOnButton( point );
  797. }
  798. void CExtButton::OnMouseMove(UINT nFlags, CPoint point)
  799. {
  800. if( m_bKeyTracking )
  801. return;
  802. CButton::OnMouseMove(nFlags, point);
  803. bool bAnimationLocked = AnimationClient_CacheGeneratorIsLocked();
  804. INT nTrackingHT = _HtMouseOnButton();
  805. if( ( ((!m_bPushTracking) && nTrackingHT!=0)
  806. || ( m_bPushTracking && nTrackingHT==m_nTrackingHT )
  807. )
  808. && CExtPopupMenuWnd::TestHoverEnabledFromActiveHWND( GetSafeHwnd() )
  809. )
  810. { // if mouse is really on button
  811. if( CExtMouseCaptureSink::GetCapture() != GetSafeHwnd() )
  812. CExtMouseCaptureSink::SetCapture( GetSafeHwnd() );
  813. if( m_bMouseOver )
  814. return;
  815. if( ! bAnimationLocked )
  816. {
  817. AnimationClient_CacheGeneratorLock();
  818. // if( AnimationClient_StateGet(true).IsEmpty() )
  819.   AnimationClient_CacheNextStateMinInfo(
  820. false,
  821. __EAPT_BY_HOVERED_STATE_TURNED_ON
  822. );
  823. }
  824. m_bMouseOver = true;
  825. m_bPushed =
  826. ((nFlags & MK_LBUTTON) && m_bPushTracking )
  827. ? true : false;
  828. if( ! bAnimationLocked )
  829. {
  830.   AnimationClient_CacheNextStateMinInfo(
  831. true,
  832. m_bPushed ? __EAPT_BY_PRESSED_STATE_TURNED_ON : __EAPT_BY_HOVERED_STATE_TURNED_ON
  833. );
  834. AnimationClient_CacheGeneratorUnlock();
  835. }
  836. Invalidate();
  837. } // if mouse is really on button
  838. else
  839. { // if mouse is really NOT on button
  840. if( ! bAnimationLocked )
  841. {
  842. AnimationClient_CacheGeneratorLock();
  843. // if( AnimationClient_StateGet(true).IsEmpty() )
  844.   AnimationClient_CacheNextStateMinInfo(
  845. false,
  846. __EAPT_BY_HOVERED_STATE_TURNED_OFF
  847. );
  848. }
  849. if( CExtMouseCaptureSink::GetCapture() == GetSafeHwnd() && ( !m_bPushTracking ) )
  850. CExtMouseCaptureSink::ReleaseCapture();
  851. // if( ! m_bMouseOver )
  852. // return;
  853. bool bWasPushed = m_bPushed;
  854. m_bMouseOver = m_bPushed = false;
  855. if( ! bAnimationLocked )
  856. {
  857.   AnimationClient_CacheNextStateMinInfo(
  858. true,
  859. bWasPushed ? __EAPT_BY_PRESSED_STATE_TURNED_OFF : __EAPT_BY_HOVERED_STATE_TURNED_OFF
  860. );
  861. AnimationClient_CacheGeneratorUnlock();
  862. }
  863. Invalidate();
  864. } // if mouse is really NOT on button
  865. if( m_nAdvancedTipStyle != INT(CExtPopupMenuTipWnd::__ETS_NONE)
  866. && m_bToolTipActive
  867. && ( ! m_strToolTipText.IsEmpty() )
  868. && (! CExtPopupMenuWnd::IsMenuTracking() )
  869. )
  870. {
  871. CExtPopupMenuTipWnd * pATTW =
  872. OnAdvancedPopupMenuTipWndGet();
  873. if( pATTW != NULL )
  874. {
  875. CRect rcArea;
  876. GetWindowRect( &rcArea );
  877. OnAdvancedPopupMenuTipWndDisplay(
  878. *pATTW,
  879. rcArea
  880. );
  881. } // if( pATTW != NULL )
  882. }
  883. }
  884. void CExtButton::OnKillFocus(CWnd * pNewWnd)
  885. {
  886. CButton::OnKillFocus(pNewWnd);
  887. SendMessage( WM_CANCELMODE );
  888. m_bState = false;
  889. }
  890. #if _MFC_VER < 0x700
  891. void CExtButton::OnActivateApp(BOOL bActive, HTASK hTask) 
  892. #else
  893. void CExtButton::OnActivateApp(BOOL bActive, DWORD hTask) 
  894. #endif
  895. {
  896. CButton::OnActivateApp(bActive, hTask);
  897. if( ! bActive )
  898. SendMessage( WM_CANCELMODE );
  899. }
  900. void CExtButton::OnCancelMode() 
  901. {
  902. CButton::OnCancelMode();
  903. bool bExitingPushedState = ( m_bPushed || m_bPushTracking ) ? true : false;
  904. bool bAnimationLocked = AnimationClient_CacheGeneratorIsLocked();
  905. if( ! bAnimationLocked )
  906. {
  907. AnimationClient_CacheGeneratorLock();
  908. // if( AnimationClient_StateGet(true).IsEmpty() )
  909.   AnimationClient_CacheNextStateMinInfo(
  910. false,
  911. bExitingPushedState ? __EAPT_BY_PRESSED_STATE_TURNED_OFF : __EAPT_BY_HOVERED_STATE_TURNED_OFF
  912. );
  913. }
  914. if( CExtMouseCaptureSink::GetCapture() == GetSafeHwnd() )
  915. CExtMouseCaptureSink::ReleaseCapture();
  916. m_bMouseOver = false;
  917. m_bPushed = false;
  918. m_bPushTracking = false;
  919. m_bKeyTracking = false;
  920. if( ! bAnimationLocked )
  921. {
  922.   AnimationClient_CacheNextStateMinInfo(
  923. true,
  924. bExitingPushedState ? __EAPT_BY_PRESSED_STATE_TURNED_OFF : __EAPT_BY_HOVERED_STATE_TURNED_OFF
  925. );
  926. AnimationClient_CacheGeneratorUnlock();
  927. }
  928. Invalidate();
  929. }
  930. void CExtButton::OnCaptureChanged(CWnd *pWnd) 
  931. {
  932. CButton::OnCaptureChanged( pWnd );
  933. if( CExtMouseCaptureSink::GetCapture() != m_hWnd )
  934. SendMessage( WM_CANCELMODE );
  935. }
  936. void CExtButton::PreSubclassWindow() 
  937. {
  938. CButton::PreSubclassWindow();
  939. DWORD dwWndStyle = GetStyle();
  940. DWORD dwWndType = dwWndStyle&0x0F;
  941. m_nButtonType = INT(dwWndType);
  942. m_bIconOnly = ( ( dwWndStyle & BS_ICON ) != 0 ) ? true : false;  // STAR - icon only
  943. if( m_bIconOnly ) // STAR
  944. m_nFocusMode = CExtPaintManager::__EBFM_CLIENT_AREA; // STAR
  945. SetButtonStyle( BS_OWNERDRAW );
  946. m_bDefaultButton = ( m_nButtonType == BS_DEFPUSHBUTTON ) ? true : false;
  947. m_nCheck = GetCheck();
  948. bool bEnabled = OnQueryWindowEnabledState();
  949. PostMessage( // delayed repainting
  950. WM_ENABLE,
  951. (WPARAM) bEnabled ? TRUE : FALSE
  952. );
  953. AnimationSite_ClientProgressStop( this );
  954. AnimationClient_StateGet( false ).Empty();
  955. AnimationClient_StateGet( true ).Empty();
  956. CRect rcClient;
  957. GetClientRect( &rcClient );
  958. AnimationClient_TargetRectSet( rcClient );
  959. ModifyStyle( 0, WS_CLIPSIBLINGS|WS_CLIPCHILDREN );
  960. m_bQuickActivationCancelNearest = false;
  961. if( m_bQuickActivationEnabled )
  962. {
  963. CString strText;
  964. GetWindowText( strText );
  965. if( ! strText.IsEmpty() )
  966. {
  967. int nAmpPos = strText.Find( _T('&') );
  968. if( ! ( nAmpPos < 0 || nAmpPos == (strText.GetLength()-1) ) )
  969. {
  970. TCHAR nCharOwn = strText.GetAt( nAmpPos + 1 );
  971. DWORD dwCharOwn = (DWORD)_totupper( nCharOwn );
  972. // BYTE lpKeyState[256];
  973. // ::GetKeyboardState( lpKeyState );
  974. UINT wScanCode = ::MapVirtualKey( (UINT)dwCharOwn, 2 );
  975. // HKL hKeyboardLayout = ::GetKeyboardLayout( ( ::AfxGetThread() ) -> m_nThreadID );
  976. //#if (defined _UNICODE)
  977. // TCHAR szChar[2] = { _T(''), _T('') };
  978. // ::ToUnicodeEx( nCharOwn, wScanCode, lpKeyState, szChar, 1, 1, hKeyboardLayout );
  979. // WORD nMapped = WORD( szChar[0] );
  980. //#else
  981. // WORD nMapped = 0;
  982. // ::ToAsciiEx( nCharOwn, wScanCode, lpKeyState, &nMapped, 1, hKeyboardLayout );
  983. // //TCHAR szChar[2] = { (TCHAR)nMapped, _T('') };
  984. //#endif
  985. if( CExtPopupMenuWnd::IsKeyPressed( wScanCode ) )
  986. m_bQuickActivationCancelNearest = true;
  987. } // if( ! ( nAmpPos < 0 || nAmpPos == (strText.GetLength()-1) ) )
  988. } // if( ! strText.IsEmpty() )
  989. } // if( m_bQuickActivationEnabled )
  990. }
  991. void CExtButton::PmBridge_OnPaintManagerChanged(
  992. CExtPaintManager * pGlobalPM
  993. )
  994. {
  995. ASSERT_VALID( this );
  996. m_icon.OnEmptyGeneratedBitmaps();
  997. CExtAnimationSingleton::PmBridge_OnPaintManagerChanged( pGlobalPM );
  998. }
  999. void CExtButton::AnimationSite_OnProgressShutdownTimer( UINT nTimerID )
  1000. {
  1001. ASSERT_VALID( this );
  1002. CExtAnimationSingleton::AnimationSite_OnProgressShutdownTimer( nTimerID );
  1003. }
  1004. HWND CExtButton::AnimationSite_GetSafeHWND() const
  1005. {
  1006. __PROF_UIS_MANAGE_STATE;
  1007. HWND hWnd = GetSafeHwnd();
  1008. return hWnd;
  1009. }
  1010. const CExtAnimationParameters *
  1011. CExtButton::AnimationClient_OnQueryAnimationParameters(
  1012. INT eAPT // __EAPT_*** animation type
  1013. ) const
  1014. {
  1015. ASSERT_VALID( this );
  1016. //return (&PmBridge_GetPM()->g_DefAnimationParametersVerySlow);
  1017. const CExtAnimationParameters * pAnimationParameters =
  1018. PmBridge_GetPM()->Animation_GetParameters(
  1019. eAPT,
  1020. (CObject*)this,
  1021. this
  1022. );
  1023. return pAnimationParameters;
  1024. }
  1025. bool CExtButton::AnimationClient_CacheNextState(
  1026. CDC & dc,
  1027. const RECT & rcAcAnimationTarget,
  1028. bool bAnimate,
  1029. INT eAPT // __EAPT_*** animation type
  1030. )
  1031. {
  1032. ASSERT_VALID( this );
  1033. ASSERT_VALID( (&dc) );
  1034. ASSERT( dc.GetSafeHdc() != NULL );
  1035. ASSERT( AnimationClient_CacheGeneratorIsLocked() );
  1036. _RenderImpl( dc );
  1037. return
  1038. CExtAnimationSingleton::AnimationClient_CacheNextState(
  1039. dc,
  1040. rcAcAnimationTarget,
  1041. bAnimate,
  1042. eAPT
  1043. );
  1044. }
  1045. BOOL CExtButton::PreTranslateMessage(MSG* pMsg) 
  1046. {
  1047. if( (! CExtPopupMenuWnd::IsMenuTracking() )
  1048. && OnAdvancedPopupMenuTipWndGet() == NULL
  1049. )
  1050. {
  1051. InitToolTip();
  1052. m_wndToolTip.RelayEvent( pMsg );
  1053. }
  1054. if( ( pMsg->message == WM_KEYDOWN || pMsg->message == WM_KEYUP )
  1055. && ( pMsg->wParam == VK_RETURN || pMsg->wParam == VK_SPACE )
  1056. )
  1057. {
  1058. bool bEnabled = OnQueryWindowEnabledState();
  1059. if( bEnabled
  1060. && IsWindowVisible()
  1061.     )
  1062. {
  1063. if( pMsg->message == WM_KEYDOWN && pMsg->wParam == VK_RETURN )
  1064. {
  1065. HWND hWndFocus = ::GetFocus();
  1066. if( hWndFocus != NULL && hWndFocus == m_hWnd )
  1067. {
  1068. _OnClick( true, false );
  1069. return TRUE;
  1070. }
  1071. __EXT_MFC_LONG_PTR dwWndStyle = ::__EXT_MFC_GetWindowLong( m_hWnd, GWL_STYLE );
  1072. #ifdef BS_TYPEMASK
  1073. ASSERT( BS_TYPEMASK == 0x0000000FL );
  1074. #endif
  1075. __EXT_MFC_LONG_PTR dwWndType = ( dwWndStyle & 0x0000000FL );
  1076. if( GetFocus() == this 
  1077. && dwWndType != BS_DEFPUSHBUTTON 
  1078. )
  1079. {
  1080. HWND hWndParent = ::GetParent( m_hWnd ); 
  1081. HWND hWnd = ::GetWindow( hWndParent, GW_CHILD ); 
  1082. while( hWnd != NULL )  
  1083. {
  1084. TCHAR szCompare[512] = _T("");
  1085. ::GetClassName(
  1086. hWnd,
  1087. szCompare,
  1088. sizeof( szCompare )/sizeof( szCompare[0] )
  1089. );
  1090. if( _tcsicmp( szCompare, _T("BUTTON") ) == 0 )
  1091. {
  1092. bool bDefault = false;
  1093. CWnd * pWnd = CWnd::FromHandlePermanent( hWnd ); 
  1094. if( pWnd->GetSafeHwnd() != NULL 
  1095. && pWnd->IsKindOf( RUNTIME_CLASS( CExtButton ) ) 
  1096. )
  1097. {
  1098. CExtButton * pBtn = STATIC_DOWNCAST( CExtButton, pWnd );
  1099. ASSERT_VALID( pBtn );
  1100. bDefault = pBtn->GetDefault( false ) ? true : false;
  1101. }
  1102. else
  1103. {
  1104. bDefault = ( ( ::__EXT_MFC_GetWindowLong( hWnd, GWL_STYLE ) & 0x0000000FL ) == BS_DEFPUSHBUTTON ) ? true : false;
  1105. }
  1106. if( bDefault )
  1107. {
  1108. int nDlgCtrlID = ::GetDlgCtrlID( hWnd );
  1109. ::SendMessage(
  1110. hWndParent,
  1111. WM_COMMAND,
  1112. MAKEWPARAM( nDlgCtrlID, BN_CLICKED ),
  1113. (LPARAM)hWnd
  1114. );
  1115. return TRUE;
  1116. }
  1117. }
  1118. hWnd = ::GetWindow( hWnd, GW_HWNDNEXT );  
  1119. }
  1120. }
  1121. _OnClick( true, false );
  1122. return TRUE;
  1123. }
  1124. if( pMsg->message == WM_KEYDOWN && pMsg->wParam == VK_SPACE 
  1125. && (!m_bPushTracking)
  1126. )
  1127. {
  1128. bool bAnimationLocked = AnimationClient_CacheGeneratorIsLocked();
  1129. if( ! bAnimationLocked )
  1130. {
  1131. AnimationClient_CacheGeneratorLock();
  1132. // if( AnimationClient_StateGet(true).IsEmpty() )
  1133.   AnimationClient_CacheNextStateMinInfo(
  1134. false,
  1135. __EAPT_BY_PRESSED_STATE_TURNED_ON
  1136. );
  1137. }
  1138. m_bPushed = m_bPushTracking = m_bKeyTracking = true;
  1139. if( ! bAnimationLocked )
  1140. {
  1141.   AnimationClient_CacheNextStateMinInfo(
  1142. true,
  1143. __EAPT_BY_PRESSED_STATE_TURNED_ON
  1144. );
  1145. AnimationClient_CacheGeneratorUnlock();
  1146. }
  1147. Invalidate();
  1148. return TRUE;
  1149. }
  1150. if( pMsg->message == WM_KEYUP && pMsg->wParam == VK_SPACE )
  1151. {
  1152. bool bAnimationLocked = AnimationClient_CacheGeneratorIsLocked();
  1153. if( ! bAnimationLocked )
  1154. {
  1155. AnimationClient_CacheGeneratorLock();
  1156. // if( AnimationClient_StateGet(true).IsEmpty() )
  1157.   AnimationClient_CacheNextStateMinInfo(
  1158. false,
  1159. __EAPT_BY_PRESSED_STATE_TURNED_OFF
  1160. );
  1161. }
  1162. m_bPushed = m_bPushTracking = m_bKeyTracking = m_bMouseOver = false;
  1163. if( ! bAnimationLocked )
  1164. {
  1165.   AnimationClient_CacheNextStateMinInfo(
  1166. true,
  1167. __EAPT_BY_PRESSED_STATE_TURNED_OFF
  1168. );
  1169. AnimationClient_CacheGeneratorUnlock();
  1170. }
  1171. _OnClick( true, false );
  1172. return TRUE;
  1173. }
  1174. }
  1175. return TRUE;
  1176. }
  1177. if( m_bQuickActivationEnabled
  1178. && ( pMsg->message == WM_KEYUP
  1179. || pMsg->message == WM_SYSKEYUP
  1180. )
  1181. )
  1182. {
  1183. if( _QuickActivationCheck( DWORD(pMsg->wParam) ) )
  1184. {
  1185. if( _QuickActivationHandle() )
  1186. return TRUE;
  1187. }
  1188. }
  1189. return CButton::PreTranslateMessage(pMsg);
  1190. }
  1191. bool CExtButton::_QuickActivationHandle(
  1192. bool bCheckWindowState // = true
  1193. )
  1194. {
  1195. ASSERT_VALID( this );
  1196. if( m_bQuickActivationCancelNearest )
  1197. {
  1198. m_bQuickActivationCancelNearest = false;
  1199. return true;
  1200. }
  1201. HWND hWndOwn = GetSafeHwnd();
  1202. ASSERT( hWndOwn != NULL );
  1203. if( bCheckWindowState )
  1204. {
  1205. CWnd * pWnd = GetParent();
  1206. for( ; pWnd != NULL; pWnd = pWnd->GetParent() )
  1207. {
  1208. DWORD dwWndStyle = GetStyle();
  1209. if( ( dwWndStyle & ( WS_VISIBLE|WS_DISABLED ) ) != WS_VISIBLE )
  1210. return false;
  1211. if( ( dwWndStyle & WS_CHILD ) == 0 )
  1212. break;
  1213. }
  1214. }
  1215. bool bAnimationLocked = AnimationClient_CacheGeneratorIsLocked();
  1216. if( ! bAnimationLocked )
  1217. {
  1218. m_bPushed = true;
  1219. AnimationClient_CacheGeneratorLock();
  1220. // if( AnimationClient_StateGet(true).IsEmpty() )
  1221.   AnimationClient_CacheNextStateMinInfo(
  1222. false,
  1223. __EAPT_BY_PRESSED_STATE_TURNED_ON
  1224. );
  1225. Invalidate();
  1226. UpdateWindow();
  1227. m_bPushed = false;
  1228. }
  1229. _OnClick( true, m_bQuickActivationSeparatedDropDown );
  1230. if( hWndOwn == NULL
  1231. || (! ::IsWindow( hWndOwn ) )
  1232. )
  1233. return true;
  1234. if( ! bAnimationLocked )
  1235. {
  1236.   AnimationClient_CacheNextStateMinInfo(
  1237. true,
  1238. __EAPT_BY_HOVERED_STATE_TURNED_ON
  1239. );
  1240. AnimationClient_CacheGeneratorUnlock();
  1241. }
  1242. if( CExtPopupMenuWnd::IsKeyPressed( VK_MENU ) )
  1243. CExtMenuControlBar::g_bCancelNearestAltUp = true;
  1244. else
  1245. CExtMenuControlBar::g_bCancelNearestAltUp = false;
  1246. return true;
  1247. }
  1248. bool CExtButton::_QuickActivationCheck(
  1249. DWORD dwChar,
  1250. bool bCheckWindowState // = true
  1251. )
  1252. {
  1253. ASSERT_VALID( this );
  1254. if( (! m_bQuickActivationEnabled )
  1255. || GetSafeHwnd() == NULL
  1256. || ( bCheckWindowState && ( GetStyle() & ( WS_VISIBLE|WS_DISABLED ) ) != WS_VISIBLE )
  1257. )
  1258. return false;
  1259. if( CExtPopupMenuWnd::IsKeyPressed( VK_SHIFT )
  1260. || CExtPopupMenuWnd::IsKeyPressed( VK_CONTROL )
  1261. )
  1262. return false;
  1263. CExtSafeString strText;
  1264. OnQueryWindowText( strText );
  1265. if( strText.IsEmpty() )
  1266. return false;
  1267. int nAmpPos = strText.Find( _T('&') );
  1268. if( nAmpPos < 0 || nAmpPos == (strText.GetLength()-1) )
  1269. return false;
  1270. TCHAR nCharOwn = strText.GetAt( nAmpPos + 1 );
  1271. DWORD dwCharOwn = (DWORD)_totupper( nCharOwn );
  1272. if( dwCharOwn != dwChar )
  1273. return false;
  1274. if( bCheckWindowState )
  1275. {
  1276. CWnd * pWnd = GetParent();
  1277. for( ; pWnd != NULL; pWnd = pWnd->GetParent() )
  1278. {
  1279. DWORD dwWndStyle = GetStyle();
  1280. if( ( dwWndStyle & ( WS_VISIBLE|WS_DISABLED ) ) != WS_VISIBLE )
  1281. return false;
  1282. if( ( dwWndStyle & WS_CHILD ) == 0 )
  1283. break;
  1284. }
  1285. }
  1286. return true;
  1287. }
  1288. LRESULT CExtButton::DefWindowProc(UINT message, WPARAM wParam, LPARAM lParam) 
  1289. {
  1290. bool bInvalidate = false;
  1291. switch( message )
  1292. {
  1293. case WM_SETTEXT:
  1294. m_bQuickActivationCancelNearest = false;
  1295. // continue falling ...
  1296. case BM_SETCHECK:
  1297. case BM_SETSTATE:
  1298. case BM_SETSTYLE:
  1299. #if (WINVER >= 0x0400)
  1300. case BM_CLICK:
  1301. case BM_SETIMAGE:
  1302. #endif
  1303. case WM_SIZE:
  1304. case WM_WINDOWPOSCHANGED:
  1305. bInvalidate = true;
  1306. break;
  1307. } // switch( message )
  1308. LRESULT lResult =
  1309. CButton::DefWindowProc(message, wParam, lParam);
  1310. if( bInvalidate )
  1311. Invalidate();
  1312. return lResult;
  1313. }
  1314. BOOL CExtButton::OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message) 
  1315. {
  1316. if( m_hCursor != NULL )
  1317. {
  1318. ::SetCursor( m_hCursor );
  1319. return TRUE;
  1320. }
  1321. return CButton::OnSetCursor(pWnd, nHitTest, message);
  1322. }
  1323. void CExtButton::SetTooltipText(
  1324. CExtSafeString * spText,
  1325. BOOL bActivate // = TRUE
  1326. )
  1327. {
  1328. if( spText == NULL )
  1329. return;
  1330. SetTooltipText( *spText, bActivate );
  1331. }
  1332. void CExtButton::SetTooltipText(
  1333. CExtSafeString & sText,
  1334. BOOL bActivate // = TRUE
  1335. )
  1336. {
  1337. SetTooltipText(
  1338. __EXT_MFC_SAFE_LPCTSTR(
  1339. sText.IsEmpty() ? LPCTSTR( NULL ) : LPCTSTR( sText )
  1340. ),
  1341. bActivate
  1342. );
  1343. }
  1344. void CExtButton::SetTooltipText(
  1345. int nId,
  1346. BOOL bActivate // = TRUE
  1347. )
  1348. {
  1349. CExtSafeString sText;
  1350. g_ResourceManager->LoadString( sText, nId );
  1351. SetTooltipText( &sText, bActivate );
  1352. }
  1353. void CExtButton::SetTooltipText(
  1354. __EXT_MFC_SAFE_LPCTSTR sText,
  1355. BOOL bActivate // = TRUE
  1356. )
  1357. {
  1358. if( sText == NULL )
  1359. sText = _T("");
  1360. CWnd::CancelToolTips();
  1361. CExtPopupMenuTipWnd * pATTW =
  1362. OnAdvancedPopupMenuTipWndGet();
  1363. m_strToolTipText = sText;
  1364. if( pATTW != NULL )
  1365. {
  1366. //pATTW->SetText( sText );
  1367. m_bToolTipActive = bActivate ? true : false;
  1368. } // if( pATTW != NULL )
  1369. else
  1370. {
  1371. InitToolTip();
  1372. if( m_wndToolTip.GetToolCount() == 0 )
  1373. {
  1374. CRect rectBtn; 
  1375. GetClientRect(rectBtn);
  1376. m_wndToolTip.AddTool(this,sText,rectBtn,1);
  1377. }
  1378. m_wndToolTip.UpdateTipText(sText,this,1);
  1379. m_wndToolTip.SetMaxTipWidth( -1 );
  1380. CString strText( sText );
  1381. if( strText.Find( _T("r") ) >= 0 )
  1382. m_wndToolTip.SetMaxTipWidth( OnQueryMaxTipWidth( sText ) );
  1383. m_wndToolTip.Activate( bActivate );
  1384. } // else from if( pATTW != NULL )
  1385. }
  1386. int CExtButton::OnQueryMaxTipWidth( 
  1387. __EXT_MFC_SAFE_LPCTSTR lpszText 
  1388. )
  1389. {
  1390. lpszText;
  1391. return 250;
  1392. }
  1393. void CExtButton::ActivateTooltip( BOOL bActivate )
  1394. {
  1395. m_bToolTipActive = bActivate ? true : false;
  1396. if( OnAdvancedPopupMenuTipWndGet() != NULL )
  1397. return;
  1398. if( m_wndToolTip.GetToolCount() == 0 )
  1399. return;
  1400. m_wndToolTip.Activate(bActivate);
  1401. }
  1402. __EXT_MFC_INT_PTR CExtButton::OnToolHitTest(
  1403. CPoint point,
  1404. TOOLINFO * pTI
  1405. ) const
  1406. {
  1407. __PROF_UIS_MANAGE_STATE;
  1408. __EXT_MFC_IMPLEMENT_TT_REDIR_OnToolHitTest( CExtButton, CExtToolControlBar );
  1409. return CButton::OnToolHitTest( point, pTI );
  1410. }
  1411. BOOL CExtButton::GetDefault(
  1412. bool bInitial // = true
  1413. ) const
  1414. {
  1415. return 
  1416. bInitial 
  1417. ? m_bDefaultButton ? TRUE : FALSE
  1418. : ( m_nButtonType == BS_DEFPUSHBUTTON ) ? TRUE : FALSE;
  1419. }
  1420. BOOL CExtButton::SupportsCommand() const
  1421. {
  1422. if( m_nButtonType == BS_PUSHBUTTON
  1423. || m_nButtonType == BS_DEFPUSHBUTTON
  1424. || m_nButtonType == BS_USERBUTTON
  1425. || m_nButtonType == BS_OWNERDRAW
  1426. )
  1427. return TRUE;
  1428. return FALSE;
  1429. }
  1430. BOOL CExtButton::SupportsCheck() const
  1431. {
  1432. if( m_nButtonType == BS_CHECKBOX
  1433. || m_nButtonType == BS_3STATE
  1434. || m_nButtonType == BS_RADIOBUTTON
  1435. || m_nButtonType == BS_AUTOCHECKBOX
  1436. || m_nButtonType == BS_AUTO3STATE
  1437. || m_nButtonType == BS_AUTORADIOBUTTON 
  1438. )
  1439. return TRUE;
  1440. return FALSE;
  1441. }
  1442. BOOL CExtButton::SupportsAutoCheck() const
  1443. {
  1444. if( m_nButtonType == BS_AUTOCHECKBOX
  1445. || m_nButtonType == BS_AUTO3STATE
  1446. || m_nButtonType == BS_AUTORADIOBUTTON 
  1447. )
  1448. return TRUE;
  1449. return FALSE;
  1450. }
  1451. INT CExtButton::GetType() const
  1452. {
  1453. return m_nButtonType;
  1454. }
  1455. BOOL CExtButton::Is3StateType() const
  1456. {
  1457. INT nType = GetType();
  1458. BOOL bIs3State = ( nType == BS_AUTO3STATE || nType == BS_3STATE ) ? TRUE : FALSE;
  1459. return bIs3State;
  1460. }
  1461. void CExtButton::InitToolTip()
  1462. {
  1463. //if( OnAdvancedPopupMenuTipWndGet() != NULL )
  1464. // return;
  1465. if( m_wndToolTip.m_hWnd == NULL )
  1466. {
  1467. m_wndToolTip.Create(this);
  1468. m_wndToolTip.Activate(FALSE);
  1469. }
  1470. }
  1471. void CExtButton::OnQueryWindowText(
  1472. CExtSafeString & strWindowText
  1473. ) const
  1474. {
  1475. ASSERT_VALID( this );
  1476. strWindowText.Empty();
  1477. // STAR - icon only
  1478.    if( m_bIconOnly && ( ! m_icon.IsEmpty() ) )
  1479.       return;
  1480. // STAR - icon only - END
  1481. int nTextLen = GetWindowTextLength();
  1482. if( nTextLen > 0 )
  1483. {
  1484. GetWindowText( strWindowText.GetBuffer( nTextLen+2 ), nTextLen+1 );
  1485. strWindowText.ReleaseBuffer();
  1486. } // if( nTextLen > 0 )
  1487. }
  1488. HFONT CExtButton::OnQueryFont() const
  1489. {
  1490. ASSERT_VALID( this );
  1491. HFONT hFont = (HFONT)
  1492. ::SendMessage( m_hWnd, WM_GETFONT, 0L, 0L );
  1493. if( hFont == NULL )
  1494. {
  1495. HWND hWndParent = ::GetParent( m_hWnd );
  1496. if( hWndParent != NULL )
  1497. hFont = (HFONT)
  1498. ::SendMessage( hWndParent, WM_GETFONT, 0L, 0L );
  1499. } // if( hFont == NULL )
  1500. if( hFont == NULL )
  1501. {
  1502. hFont = (HFONT)::GetStockObject( DEFAULT_GUI_FONT );
  1503. if( hFont == NULL )
  1504. hFont = (HFONT)::GetStockObject( SYSTEM_FONT );
  1505. } // if( hFont == NULL )
  1506. return hFont;
  1507. }
  1508. void CExtButton::OnSysColorChange() 
  1509. {
  1510. CButton::OnSysColorChange();
  1511. //CExtPaintManager * pPM = PmBridge_GetPM();
  1512. // g_PaintManager.OnSysColorChange( this );
  1513. // g_CmdManager.OnSysColorChange( pPM, this );
  1514. }
  1515. void CExtButton::OnSettingChange(UINT uFlags, __EXT_MFC_SAFE_LPCTSTR lpszSection) 
  1516. {
  1517. CButton::OnSettingChange( uFlags, lpszSection );
  1518. //CExtPaintManager * pPM = PmBridge_GetPM();
  1519. // g_PaintManager.OnSettingChange( this, uFlags, lpszSection );
  1520. // g_CmdManager.OnSettingChange( pPM, this, uFlags, lpszSection );
  1521. }
  1522. LRESULT CExtButton::OnDisplayChange( WPARAM wParam, LPARAM lParam )
  1523. {
  1524. LRESULT lResult = CButton::OnDisplayChange( wParam, lParam );
  1525. //CExtPaintManager * pPM = PmBridge_GetPM();
  1526. // g_PaintManager.OnDisplayChange( this, (INT)wParam, CPoint(lParam) );
  1527. // g_CmdManager.OnDisplayChange( pPM, this, (INT)wParam, CPoint(lParam) );
  1528. return lResult;
  1529. }
  1530. LRESULT CExtButton::OnThemeChanged( WPARAM wParam, LPARAM lParam )
  1531. {
  1532. wParam;
  1533. lParam;
  1534. LRESULT lResult = Default();
  1535. //CExtPaintManager * pPM = PmBridge_GetPM();
  1536. // g_PaintManager.OnThemeChanged( this, wParam, lParam );
  1537. // g_CmdManager.OnThemeChanged( pPM, this, wParam, lParam );
  1538. return lResult;
  1539. }
  1540. void CExtButton::_DoClick()
  1541. {
  1542. m_nTrackingHT = _HtMouseOnButton();
  1543. if( m_nTrackingHT == 0 )
  1544. return;
  1545. bool bAnimationLocked = AnimationClient_CacheGeneratorIsLocked();
  1546. if( ! bAnimationLocked )
  1547. {
  1548. AnimationClient_CacheGeneratorLock();
  1549. // if( AnimationClient_StateGet(true).IsEmpty() )
  1550.   AnimationClient_CacheNextStateMinInfo(
  1551. false,
  1552. __EAPT_BY_PRESSED_STATE_TURNED_ON
  1553. );
  1554. }
  1555. m_bMouseOver = m_bPushed = m_bPushTracking = true;
  1556. if( CExtMouseCaptureSink::GetCapture() != GetSafeHwnd() )
  1557. CExtMouseCaptureSink::SetCapture( GetSafeHwnd() );
  1558. if( ! bAnimationLocked )
  1559. {
  1560.   AnimationClient_CacheNextStateMinInfo(
  1561. true,
  1562. __EAPT_BY_PRESSED_STATE_TURNED_ON
  1563. );
  1564. AnimationClient_CacheGeneratorUnlock();
  1565. }
  1566. Invalidate();
  1567. }
  1568. void CExtButton::OnLButtonDown(UINT nFlags, CPoint point) 
  1569. {
  1570. if( m_bKeyTracking )
  1571. return;
  1572. CButton::OnLButtonDown( nFlags, point );
  1573. HWND hWndOwn = m_hWnd;
  1574. if( IsWindowEnabled() )
  1575. {
  1576. CFrameWnd * pParentFrame = GetParentFrame();
  1577. if( pParentFrame != NULL
  1578. && pParentFrame->IsKindOf( RUNTIME_CLASS(CMDIChildWnd) )
  1579. )
  1580. {
  1581. CFrameWnd * pMDIFrame = pParentFrame->GetParentFrame();
  1582. if( pMDIFrame != NULL
  1583. && pMDIFrame->IsKindOf( RUNTIME_CLASS(CMDIFrameWnd) )
  1584. )
  1585. {
  1586. CMDIChildWnd * pActive = ((CMDIFrameWnd*)pMDIFrame)->MDIGetActive();
  1587. if( LPVOID(pParentFrame) != LPVOID(pActive) )
  1588. ((CMDIChildWnd*)pParentFrame)->MDIActivate();
  1589. }
  1590. }
  1591. if( ! ::IsWindow( hWndOwn ) )
  1592. return;
  1593. HWND hWndFocus = ::GetFocus();
  1594. if( hWndFocus != hWndOwn )
  1595. {
  1596. /// ::SetFocus( hWndOwn );
  1597. // return; // DDX validation failed
  1598. }
  1599. } // if( IsWindowEnabled() )
  1600. if( ! ::IsWindow( hWndOwn ) )
  1601. return;
  1602. _DoClick();
  1603. }
  1604. void CExtButton::OnLButtonDblClk(UINT nFlags, CPoint point) 
  1605. {
  1606. if( m_bKeyTracking )
  1607. return;
  1608. CButton::OnLButtonDblClk(nFlags, point);
  1609. _DoClick();
  1610. }
  1611. void CExtButton::OnLButtonUp(UINT nFlags, CPoint point) 
  1612. {
  1613. nFlags;
  1614. point;
  1615. if( m_bKeyTracking )
  1616. return;
  1617. bool bExitingPushedState = ( m_bPushed || m_bPushTracking ) ? true : false;
  1618. bool bAnimationLocked = AnimationClient_CacheGeneratorIsLocked();
  1619. if( ! bAnimationLocked )
  1620. {
  1621. AnimationClient_CacheGeneratorLock();
  1622. // if( AnimationClient_StateGet(true).IsEmpty() )
  1623.   AnimationClient_CacheNextStateMinInfo(
  1624. false,
  1625. bExitingPushedState ? __EAPT_BY_PRESSED_STATE_TURNED_OFF : __EAPT_BY_HOVERED_STATE_TURNED_OFF
  1626. );
  1627. }
  1628. INT nTrackingHT = _HtMouseOnButton();
  1629. BOOL bWasPushed = m_bPushed && m_bPushTracking && (nTrackingHT == m_nTrackingHT);
  1630. m_bMouseOver = m_bPushed = m_bPushTracking = false;
  1631. m_nTrackingHT = 0;
  1632. if( CExtMouseCaptureSink::GetCapture() == GetSafeHwnd() )
  1633. CExtMouseCaptureSink::ReleaseCapture();
  1634. if( ! bAnimationLocked )
  1635. {
  1636.   AnimationClient_CacheNextStateMinInfo(
  1637. true,
  1638. bExitingPushedState ? __EAPT_BY_PRESSED_STATE_TURNED_OFF : __EAPT_BY_HOVERED_STATE_TURNED_OFF
  1639. );
  1640. AnimationClient_CacheGeneratorUnlock();
  1641. }
  1642. Invalidate();
  1643. if( !bWasPushed )
  1644. return;
  1645. bool bEnabled = OnQueryWindowEnabledState();
  1646. if( bEnabled
  1647. && IsWindowVisible()
  1648. )
  1649. _OnClick(
  1650. false,
  1651. (m_bSeparatedDropDown && nTrackingHT == 2) ? true : false
  1652. );
  1653. }
  1654. void CExtButton::_OnClick(
  1655. bool bSelectAny,
  1656. bool bSeparatedDropDownClicked
  1657. )
  1658. {
  1659. CWnd * pWnd = GetParent();
  1660. if( pWnd->GetSafeHwnd() == NULL )
  1661. return;
  1662. ASSERT_VALID( pWnd );
  1663. if( SupportsCheck() )
  1664. {
  1665. if( SupportsAutoCheck() )
  1666. {
  1667. INT nCheck = GetCheck();
  1668. nCheck = ( ( nCheck + 1 ) % ( Is3StateType() ? 3 : 2 ) );
  1669. SetCheck( nCheck );
  1670. }
  1671. else
  1672. SetCheck( ( GetCheck() == 0 ) ? 1 : 0 );
  1673. HWND hWndThis = GetSafeHwnd();
  1674. int nDlgCtrlID = GetDlgCtrlID();
  1675. pWnd->SendMessage(
  1676. WM_COMMAND,
  1677. MAKEWPARAM(nDlgCtrlID,BN_CLICKED),
  1678. (LPARAM)m_hWnd
  1679. );
  1680. if( ::IsWindow( hWndThis ) )
  1681. Invalidate();
  1682. return;
  1683. } // if( SupportsCheck() )
  1684. if( ! SupportsCommand() )
  1685. return;
  1686. if( (!m_bSeparatedDropDown)
  1687. || bSeparatedDropDownClicked
  1688. )
  1689. {
  1690. if( _OnTrackPopup( bSelectAny ) )
  1691. return;
  1692. }
  1693. if( m_menu.GetSafeHmenu() == NULL
  1694. || (m_bSeparatedDropDown && (!bSeparatedDropDownClicked))
  1695. )
  1696. {
  1697. HWND hWndThis = GetSafeHwnd();
  1698. int nDlgCtrlID = GetDlgCtrlID();
  1699. pWnd->SendMessage(
  1700. WM_COMMAND,
  1701. MAKEWPARAM(nDlgCtrlID,BN_CLICKED),
  1702. (LPARAM)hWndThis
  1703. );
  1704. if( ::IsWindow( hWndThis ) )
  1705. Invalidate();
  1706. return;
  1707. }
  1708. }
  1709. bool CExtButton::_IsMenuAvail()
  1710. {
  1711. if( m_menu.GetSafeHmenu() == NULL )
  1712. return false;
  1713. return true;
  1714. }
  1715. bool CExtButton::_OnTrackPopup(
  1716. bool bSelectAny
  1717. )
  1718. {
  1719. if( m_menu.GetSafeHmenu() == NULL )
  1720. return false;
  1721. ASSERT( ::IsMenu(m_menu.GetSafeHmenu()) );
  1722. VERIFY(
  1723. g_CmdManager->UpdateFromMenu(
  1724. g_CmdManager->ProfileNameFromWnd( GetSafeHwnd() ),
  1725. m_menu.GetSafeHmenu()
  1726. )
  1727. );
  1728. CExtPopupMenuWnd * pPopup =
  1729. CExtPopupMenuWnd::InstantiatePopupMenu(
  1730. m_hWnd,
  1731. RUNTIME_CLASS(CExtPopupMenuWnd),
  1732. this
  1733. );
  1734. pPopup->SetLeftAreaWidth( m_nMenuLeftAreaWidth );
  1735. CWnd * pWnd = GetParent();
  1736. ASSERT_VALID( pWnd );
  1737. DWORD nAlignOpt = 0;
  1738. DWORD dwMenuOpt = m_dwMenuOpt;
  1739. while( pWnd->IsKindOf(RUNTIME_CLASS(CControlBar)) )
  1740. {
  1741. if( nAlignOpt == 0 && ((CControlBar *)pWnd)->m_pDockBar != NULL )
  1742. {
  1743. ASSERT_VALID( ((CControlBar *)pWnd)->m_pDockBar );
  1744. dwMenuOpt &= ~TPMX_ALIGN_MASK;
  1745. UINT nDockBarID = ((CControlBar *)pWnd)->m_pDockBar->GetDlgCtrlID();
  1746. switch( nDockBarID )
  1747. {
  1748. case AFX_IDW_DOCKBAR_TOP:
  1749. nAlignOpt = TPMX_TOPALIGN;
  1750. break;
  1751. case AFX_IDW_DOCKBAR_BOTTOM:
  1752. nAlignOpt = TPMX_BOTTOMALIGN;
  1753. break;
  1754. case AFX_IDW_DOCKBAR_LEFT:
  1755. nAlignOpt = TPMX_LEFTALIGN;
  1756. break;
  1757. case AFX_IDW_DOCKBAR_RIGHT:
  1758. nAlignOpt = TPMX_RIGHTALIGN;
  1759. break;
  1760. case AFX_IDW_DOCKBAR_FLOAT:
  1761. nAlignOpt = TPMX_TOPALIGN;
  1762. break;
  1763. #ifdef _DEBUG
  1764. default:
  1765. ASSERT( FALSE );
  1766. break;
  1767. #endif // _DEBUG
  1768. } // switch( nDockBarID )
  1769. } // if( nAlignOpt == 0 && ((CControlBar *)pWnd)->m_pDockBar != NULL )
  1770. pWnd = pWnd->GetParent();
  1771. if( pWnd->IsKindOf(RUNTIME_CLASS(CMiniFrameWnd)) )
  1772. {
  1773. pWnd = pWnd->GetParentFrame();
  1774. ASSERT_VALID( pWnd );
  1775. break;
  1776. }
  1777. }
  1778. ASSERT( pWnd != NULL );
  1779. ASSERT_VALID( pWnd );
  1780. VERIFY(
  1781. pPopup->UpdateFromMenu( 
  1782. pWnd->GetSafeHwnd(), 
  1783. &m_menu, 
  1784. true,
  1785. true,
  1786. m_bNoRefToCmdMngr
  1787. )
  1788. );
  1789. CRect wr;
  1790. GetWindowRect( &wr );
  1791. CPoint pt = wr.CenterPoint();
  1792. SetFocus();
  1793. if( m_bAutoChangeID )
  1794. {
  1795. UINT nResultCmdID = 0;
  1796. HWND hWndOwn = m_hWnd;
  1797. if( ! pPopup->TrackPopupMenu(
  1798. dwMenuOpt
  1799. | nAlignOpt
  1800. | ( (bSelectAny) ? TPMX_SELECT_ANY : 0 )
  1801. | TPMX_DO_MESSAGE_LOOP | TPMX_NO_WM_COMMAND
  1802. | TPMX_COMBINE_DEFAULT,
  1803. pt.x,
  1804. pt.y,
  1805. &wr,
  1806. this,
  1807. _CbPaintCombinedContent,
  1808. & nResultCmdID,
  1809. true
  1810. )
  1811. )
  1812. {
  1813. //delete pPopup;
  1814. ASSERT( FALSE );
  1815. if( ! ::IsWindow( hWndOwn ) )
  1816. return true;
  1817. }
  1818. else
  1819. {
  1820. if( ! ::IsWindow( hWndOwn ) )
  1821. return true;
  1822. if( nResultCmdID != 0 )
  1823. {
  1824. SetDlgCtrlID( nResultCmdID );
  1825. if( m_bAutoChangeCmdIcon )
  1826. {
  1827. __EXT_MFC_SAFE_LPCTSTR sProfileName =
  1828. g_CmdManager->ProfileNameFromWnd(m_hWnd);
  1829. if( sProfileName != NULL )
  1830. {
  1831. CExtCmdItem * pCmdItem =
  1832. g_CmdManager->CmdGetPtr(
  1833. sProfileName,
  1834. nResultCmdID
  1835. );
  1836. if( pCmdItem != NULL )
  1837. {
  1838. CExtSafeString sText =
  1839. pCmdItem->m_sToolbarText.IsEmpty()
  1840. ? pCmdItem->m_sMenuText
  1841. : pCmdItem->m_sToolbarText
  1842. ;
  1843. SetWindowText( sText );
  1844. CExtCmdIcon * pIcon = 
  1845. g_CmdManager->CmdGetIconPtr(
  1846. sProfileName,
  1847. nResultCmdID
  1848. );
  1849. if( pIcon == NULL
  1850. || pIcon->IsEmpty()
  1851. )
  1852. SetIcon( (HICON)NULL );
  1853. else
  1854. SetIcon( pIcon->ExtractHICON() );
  1855. }
  1856. }
  1857. }
  1858. CWnd * pWnd = GetParent();
  1859. ASSERT( pWnd != NULL );
  1860. ASSERT_VALID( pWnd );
  1861. HWND hWndThis = GetSafeHwnd();
  1862. pWnd->SendMessage(
  1863. WM_COMMAND,
  1864. MAKEWPARAM(nResultCmdID,BN_CLICKED),
  1865. (LPARAM)hWndThis
  1866. );
  1867. if( ::IsWindow(hWndThis) )
  1868. Invalidate();
  1869. }
  1870. }
  1871. } // if( m_bAutoChangeID )
  1872. else
  1873. {
  1874. if( !pPopup->TrackPopupMenu(
  1875. dwMenuOpt
  1876. | nAlignOpt
  1877. | ( (bSelectAny) ? TPMX_SELECT_ANY : 0 )
  1878. | TPMX_COMBINE_DEFAULT,
  1879. pt.x,
  1880. pt.y,
  1881. &wr,
  1882. this,
  1883. _CbPaintCombinedContent,
  1884. NULL,
  1885. true
  1886. )
  1887. )
  1888. {
  1889. //delete pPopup;
  1890. ASSERT( FALSE );
  1891. }
  1892. } // else from if( m_bAutoChangeID )
  1893. return true;
  1894. }
  1895. void CExtButton::_CbPaintCombinedContent(
  1896. LPVOID pCookie,
  1897. CDC & dc,
  1898. const CWnd & refWndMenu,
  1899. const CRect & rcExcludeArea, // in screen coords
  1900. int eCombineAlign // CExtPopupMenuWnd::e_combine_align_t values
  1901. )
  1902. {
  1903. pCookie;
  1904. dc;
  1905. refWndMenu;
  1906. rcExcludeArea;
  1907. eCombineAlign;
  1908. ASSERT( dc.GetSafeHdc() != NULL );
  1909. ASSERT( refWndMenu.GetSafeHwnd() != NULL );
  1910. CExtButton * pBtn = (CExtButton *)pCookie;
  1911. ASSERT( pBtn != NULL );
  1912. ASSERT_VALID( pBtn );
  1913. ASSERT( pBtn->IsKindOf(RUNTIME_CLASS(CExtButton)) );
  1914. ASSERT( eCombineAlign != CExtPopupMenuWnd::__CMBA_NONE );
  1915. if( rcExcludeArea.IsRectEmpty() )
  1916. return;
  1917. CRect rcClientBar,rcClientExcludeArea;
  1918. pBtn->GetClientRect( &rcClientBar );
  1919. pBtn->ClientToScreen( &rcClientBar );
  1920. refWndMenu.GetClientRect( &rcClientExcludeArea );
  1921. refWndMenu.ClientToScreen( &rcClientExcludeArea );
  1922. CPoint ptOffset =
  1923. rcClientBar.TopLeft()
  1924. - rcClientExcludeArea.TopLeft()
  1925. ;
  1926. CPoint ptViewportOrg = dc.GetViewportOrg();
  1927. dc.SetViewportOrg( ptOffset );
  1928. CExtPopupMenuWnd::g_pCombinedHelper = pBtn;
  1929. pBtn->_RenderImpl( dc, true, true );
  1930. CExtPopupMenuWnd::g_pCombinedHelper = NULL;
  1931. dc.SetViewportOrg( ptViewportOrg );
  1932. }
  1933. void CExtButton::_RenderImpl(
  1934. CDC & dc,
  1935. bool bTransparent, // = false
  1936. bool bCombinedContent // = false
  1937. )
  1938. {
  1939. ASSERT_VALID( this );
  1940. ///PmBridge_GetPM()->PaintDockerBkgnd( true, dc, this );
  1941. CRect rcClient;
  1942. GetClientRect( &rcClient );
  1943. CExtSafeString sWindowText( _T("") );
  1944. OnQueryWindowText( sWindowText );
  1945. bool bPB = true;
  1946. bool bDrawFocusRect = (GetFocus() == this && m_bDrawFocusRect) ? true : false;
  1947. bool bDefault = GetDefault() ? true : false;
  1948. bool bPushed = m_bPushed ? true : false;
  1949. //bool bPushed = ( m_bPushed || m_bState ) ? true : false;
  1950. //bool bEnabled = IsWindowEnabled() ? true : false;
  1951. bool bEnabled = OnQueryWindowEnabledState();
  1952. bool bFlat = GetFlat() ? true : false;
  1953. bool bHover =
  1954. ( m_bMouseOver && !CExtPopupMenuWnd::IsMenuTracking() ) ? true : false;
  1955. // HICON hIcon = (bHover) ? m_hIconIn : m_hIconOut;
  1956. // CExtCmdIcon icon;
  1957. //  icon.AssignFromHICON( hIcon, true );
  1958. bool bCleanIcon = false;
  1959. CExtCmdIcon & icon = m_icon;
  1960. bool bSupportsCheck = SupportsCheck() ? true : false;
  1961. INT nCheckedStateNo = 0;
  1962. if( bSupportsCheck )
  1963. {
  1964. nCheckedStateNo = GetCheck();
  1965. if( (GetStyle()&BS_PUSHLIKE) == 0 )
  1966. bPB = false;
  1967. if( ! bPB )
  1968. {
  1969. bDrawFocusRect = false;
  1970. if( icon.IsEmpty() )
  1971. {
  1972. if( nCheckedStateNo != 0 )
  1973. {
  1974. if( m_nButtonType == BS_RADIOBUTTON
  1975. || m_nButtonType == BS_AUTORADIOBUTTON 
  1976. )
  1977. {
  1978. VERIFY( icon.CreateRadioMarkIcon( PmBridge_GetPM(), COLORREF(-1L), COLORREF(-1L), CSize(24,16) ) );
  1979. bCleanIcon = true;
  1980. }
  1981. else
  1982. {
  1983. if( nCheckedStateNo == 2 )
  1984. {
  1985. VERIFY( icon.CreateIndeterminatedSquareIcon( PmBridge_GetPM(), COLORREF(-1L), COLORREF(-1L), CSize(24,16) ) );
  1986. bCleanIcon = true;
  1987. }
  1988. else
  1989. {
  1990. VERIFY( icon.CreateCheckMarkIcon( PmBridge_GetPM(), COLORREF(-1L), COLORREF(-1L), CSize(24,16) ) );
  1991. bCleanIcon = true;
  1992. }
  1993. }
  1994. } // if( nCheckedStateNo != 0 )
  1995. else
  1996. {
  1997. VERIFY( icon.CreateEmptyIcon( PmBridge_GetPM(), COLORREF(-1L), CSize(24,16) ) );
  1998. } // else from if( nCheckedStateNo != 0 )
  1999. } // if( icon.IsEmpty() )
  2000. else if( nCheckedStateNo != 0 )
  2001. bPushed = true;
  2002. bFlat = true;
  2003. } // if( ! bPB )
  2004. else
  2005. {
  2006. if( nCheckedStateNo != 0 )
  2007. bPushed = true;
  2008. } // if( ! bPB )
  2009. } // if( bSupportsCheck )
  2010. if( GetParent()->IsKindOf(RUNTIME_CLASS(CControlBar)) )
  2011. {
  2012. bDrawFocusRect = false;
  2013. bFlat = true;
  2014. }
  2015. bool _bTransparentBk = false;
  2016. COLORREF clrBackground = GetBkColor();
  2017. if( (! (bHover || bPushed) )
  2018. && PmBridge_GetPM()->GetCb2DbTransparentMode(this)
  2019. && ( clrBackground == COLORREF(-1L) )
  2020. )
  2021. {
  2022. CExtPaintManager::stat_ExcludeChildAreas(
  2023. dc,
  2024. GetSafeHwnd(),
  2025. CExtPaintManager::stat_DefExcludeChildAreaCallback
  2026. );
  2027. if( PmBridge_GetPM()->PaintDockerBkgnd( true, dc, this ) )
  2028. _bTransparentBk = true;
  2029. }
  2030. if( ! _bTransparentBk )
  2031. dc.FillSolidRect( 
  2032. &rcClient, 
  2033. (clrBackground != COLORREF(-1L)) 
  2034. ? clrBackground 
  2035. : PmBridge_GetPM()->GetColor( CExtPaintManager::CLR_3DFACE_OUT, this ) 
  2036. );
  2037. HFONT hFont = OnQueryFont();
  2038. if( ! PmBridge_GetPM()->AdjustControlFont(
  2039. hFont,
  2040. this
  2041. )
  2042. )
  2043. {
  2044. LOGFONT _lf;
  2045. ::memset( &_lf, 0, sizeof(LOGFONT) );
  2046. ::GetObject( (HGDIOBJ)hFont, sizeof(LOGFONT), (LPVOID) &_lf );
  2047. if( GetDefault() )
  2048. _lf.lfWeight = 
  2049. (_lf.lfWeight > FW_BOLD) 
  2050. ? _lf.lfWeight 
  2051. : FW_BOLD;
  2052. hFont = ::CreateFontIndirect( &_lf );
  2053. }
  2054. ASSERT( hFont != NULL );
  2055. CFont _fontDestructor;
  2056. _fontDestructor.Attach( hFont );
  2057. CExtPaintManager::PAINTPUSHBUTTONDATA _ppbd(
  2058. this,    
  2059. true, 
  2060. rcClient, 
  2061. (LPCTSTR)sWindowText,
  2062. &icon, 
  2063. bFlat, 
  2064. bHover, 
  2065. bPushed,
  2066. false, 
  2067. bEnabled,
  2068. m_bDrawBorder ? true : false,
  2069. bDrawFocusRect, 
  2070. bDefault, 
  2071. OnQueryAlignmentText(),
  2072. hFont, 
  2073. _IsMenuAvail(), 
  2074. 0, 
  2075. bTransparent
  2076. );
  2077. _ppbd.m_rcBorderSizes = OnQueryBorderSizes();
  2078. _ppbd.m_nIconAlignment = OnQueryAlignmentIcon();
  2079. _ppbd.m_rcIconMargins = OnQueryMarginsIcon();
  2080. _ppbd.m_rcTextMargins = OnQueryMarginsText();
  2081. _ppbd.m_nFocusMode = m_nFocusMode;
  2082. _ppbd.m_bSeparatedDropDown = m_bSeparatedDropDown;
  2083. if( _ppbd.m_bSeparatedDropDown
  2084. && m_nTrackingHT == 2
  2085. && _ppbd.m_bPushed
  2086. )
  2087. {
  2088. _ppbd.m_bPushed = false;
  2089. _ppbd.m_bPushedDropDown = true;
  2090. // _ppbd.m_bHover = false;
  2091. }
  2092. _ppbd.m_bChecked = ( nCheckedStateNo != 0 ) ? true : false;
  2093. _ppbd.m_clrForceBk = GetBkColor();
  2094. _ppbd.m_clrForceTextDisabled = GetTextColorDisabled();
  2095. _ppbd.m_clrForceTextNormal = GetTextColorNormal();
  2096. _ppbd.m_clrForceTextHover = GetTextColorHover();
  2097. _ppbd.m_clrForceTextPressed = GetTextColorPressed();
  2098. if( bCombinedContent && (GetExStyle()&WS_EX_LAYOUTRTL) != 0 )
  2099. _ppbd.m_bForceRtlLayout = true;
  2100. if( (GetStyle()&BS_MULTILINE) != 0 )
  2101. _ppbd.m_bWordBreak = true;
  2102. PmBridge_GetPM()->PaintPushButton( dc, _ppbd );
  2103. if( bCleanIcon )
  2104. icon.Empty();
  2105. }
  2106. void CExtButton::_DrawImpl(
  2107. CDC & dc,
  2108. bool bTransparent, // = false
  2109. bool bCombinedContent // = false
  2110. )
  2111. {
  2112. if( AnimationClient_StatePaint( dc ) )
  2113. return;
  2114. CRect rcClient;
  2115. GetClientRect( &rcClient );
  2116. CExtMemoryDC dcmm( &dc, &rcClient );
  2117. _RenderImpl( dcmm, bTransparent, bCombinedContent );
  2118. }
  2119. void CExtButton::OnPaint()
  2120. {
  2121. DWORD dwWndStyle = GetStyle();
  2122. DWORD dwWndType = dwWndStyle&0x0F;
  2123. bool bOwnerDraw =
  2124. (dwWndType == BS_OWNERDRAW || dwWndType == BS_USERBUTTON)
  2125. ? true : false;
  2126. if( bOwnerDraw )
  2127. {
  2128. CButton::OnPaint();
  2129. return;
  2130. } // if( bOwnerDraw )
  2131. CPaintDC dcPaint( this );
  2132. _DrawImpl( dcPaint );
  2133. }
  2134. BOOL CExtButton::OnEraseBkgnd(CDC* pDC) 
  2135. {
  2136. //DWORD dwWndStyle = GetStyle();
  2137. //DWORD dwWndType = dwWndStyle&0x0F;
  2138. //bool bOwnerDraw =
  2139. // (dwWndType == BS_OWNERDRAW || dwWndType == BS_USERBUTTON)
  2140. // ? true : false;
  2141. // if( bOwnerDraw )
  2142. // return CButton::OnEraseBkgnd(pDC);
  2143. // return FALSE;
  2144. pDC;
  2145. return TRUE;
  2146. }
  2147. void CExtButton::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct)
  2148. {
  2149. ASSERT( lpDrawItemStruct != NULL );
  2150. ASSERT( lpDrawItemStruct->hDC != NULL );
  2151. _DrawImpl( * CDC::FromHandle(lpDrawItemStruct->hDC) );
  2152. }
  2153. void CExtButton::OnEnable(BOOL bEnable) 
  2154. {
  2155. CButton::OnEnable(bEnable);
  2156. AnimationSite_ClientProgressStop( this );
  2157. CClientDC dc( this );
  2158. _DrawImpl( dc );
  2159. }
  2160. CRect CExtButton::OnQueryBorderSizes() const
  2161. {
  2162. ASSERT_VALID( this );
  2163. return CRect( 1, 1, 1, 1 );
  2164. }
  2165. INT CExtButton::OnQueryAlignmentText() const
  2166. {
  2167. ASSERT_VALID( this );
  2168. DWORD dwStyle = GetStyle();
  2169. INT nAlign = 0;
  2170. const UINT __BS_H_MASK = (BS_LEFT|BS_CENTER|BS_RIGHT);
  2171. const UINT __BS_V_MASK = (BS_TOP|BS_VCENTER|BS_BOTTOM);
  2172. if( (dwStyle&__BS_H_MASK) == BS_RIGHT )
  2173. nAlign |= CExtPaintManager::__ALIGN_HORIZ_RIGHT;
  2174. else if( (dwStyle&__BS_H_MASK) == BS_LEFT )
  2175. nAlign |= CExtPaintManager::__ALIGN_HORIZ_LEFT;
  2176. else
  2177. nAlign |= CExtPaintManager::__ALIGN_HORIZ_CENTER;
  2178. if( (dwStyle&__BS_V_MASK) == BS_BOTTOM )
  2179. nAlign |= CExtPaintManager::__ALIGN_VERT_BOTTOM;
  2180. else if( (dwStyle&__BS_V_MASK) == BS_TOP )
  2181. nAlign |= CExtPaintManager::__ALIGN_VERT_TOP;
  2182. else
  2183. nAlign |= CExtPaintManager::__ALIGN_VERT_CENTER;
  2184. return nAlign;
  2185. }
  2186. INT CExtButton::OnQueryAlignmentIcon() const
  2187. {
  2188. ASSERT_VALID( this );
  2189. CExtSafeString sWindowText( _T("") );
  2190. OnQueryWindowText( sWindowText );
  2191. return 
  2192. m_nIconAlignment >= 0 
  2193. ? m_nIconAlignment
  2194. : sWindowText.IsEmpty()
  2195. ? CExtPaintManager::__ALIGN_HORIZ_CENTER | CExtPaintManager::__ALIGN_VERT_CENTER
  2196. : CExtPaintManager::__ALIGN_HORIZ_LEFT | CExtPaintManager::__ALIGN_VERT_CENTER;
  2197. }
  2198. CRect CExtButton::OnQueryMarginsText() const
  2199. {
  2200. ASSERT_VALID( this );
  2201. return m_rcTextMargins;
  2202. }
  2203. CRect CExtButton::OnQueryMarginsIcon() const
  2204. {
  2205. ASSERT_VALID( this );
  2206. return m_rcIconMargins;
  2207. }
  2208. CExtPopupMenuTipWnd * CExtButton::OnAdvancedPopupMenuTipWndGet() const
  2209. {
  2210. if( m_nAdvancedTipStyle == INT(CExtPopupMenuTipWnd::__ETS_NONE) )
  2211. return NULL;
  2212. return (&( CExtPopupMenuSite::g_DefPopupMenuSite.GetTip() ));
  2213. }
  2214. void CExtButton::OnAdvancedPopupMenuTipWndDisplay(
  2215. CExtPopupMenuTipWnd & _ATTW,
  2216. const RECT & rcExcludeArea
  2217. ) const
  2218. {
  2219. ASSERT_VALID( this );
  2220. if( ! m_bToolTipActive )
  2221. return;
  2222. if( m_strToolTipText.IsEmpty() )
  2223. return;
  2224. _ATTW.SetText( LPCTSTR(m_strToolTipText) );
  2225. _ATTW.SetTipStyle( (CExtPopupMenuTipWnd::e_tip_style_t)m_nAdvancedTipStyle );
  2226. _ATTW.Show( (CWnd*)this, rcExcludeArea );
  2227. }
  2228. CExtColorButton::CExtColorButton()
  2229. {
  2230. m_bUseStdColorDlg = false;
  2231. m_bEnableBtnColorDefault = true;
  2232. m_bEnableBtnColorCustom = true;
  2233. m_clrDefault = (COLORREF)(-1); // unexisting
  2234. m_clrSelected = RGB(0,0,0);
  2235. m_clrLastHover = (COLORREF)(-1); // unexisting
  2236. m_bTrackColorPickerSelection = true;
  2237. m_lParamCookie = 0;
  2238. m_sBtnTextColorDefault = _T("");
  2239. m_sBtnTextColorCustom = _T("");
  2240. }
  2241. CExtColorButton::~CExtColorButton()
  2242. {
  2243. }
  2244. IMPLEMENT_DYNCREATE(CExtColorButton, CExtButton);
  2245. BEGIN_MESSAGE_MAP(CExtColorButton, CExtButton)
  2246.     //{{AFX_MSG_MAP(CExtColorButton)
  2247. //}}AFX_MSG_MAP
  2248. ON_REGISTERED_MESSAGE(
  2249. CExtPopupColorMenuWnd::g_nMsgNotifyColorChanged,
  2250. OnColorChanged
  2251. )
  2252. ON_REGISTERED_MESSAGE(
  2253. CExtPopupColorMenuWnd::g_nMsgNotifyColorChangedFinally,
  2254. OnColorChangedFinally
  2255. )
  2256. ON_REGISTERED_MESSAGE(
  2257. CExtPopupColorMenuWnd::g_nMsgNotifyCustColor,
  2258. OnColorSelectCustom
  2259. )
  2260. END_MESSAGE_MAP()
  2261. bool CExtColorButton::_IsMenuAvail()
  2262. {
  2263. return true;
  2264. }
  2265. bool CExtColorButton::_OnTrackPopup(
  2266. bool bSelectAny
  2267. )
  2268. {
  2269. HWND hWndOwn = GetSafeHwnd();
  2270. if( hWndOwn == NULL )
  2271. return false;
  2272. m_clrLastHover = (COLORREF)(-1); // unexisting
  2273. bool bInBar = false;
  2274. CWnd * pWnd = GetParent();
  2275. ASSERT_VALID( pWnd );
  2276. DWORD nAlignOpt = 0;
  2277. DWORD dwMenuOpt = m_dwMenuOpt;
  2278. while( pWnd->IsKindOf(RUNTIME_CLASS(CControlBar)) )
  2279. {
  2280. bInBar = true;
  2281. if( nAlignOpt == 0 && ((CControlBar *)pWnd)->m_pDockBar != NULL )
  2282. {
  2283. ASSERT_VALID( ((CControlBar *)pWnd)->m_pDockBar );
  2284. dwMenuOpt &= ~TPMX_ALIGN_MASK;
  2285. UINT nDockBarID = ((CControlBar *)pWnd)->m_pDockBar->GetDlgCtrlID();
  2286. switch( nDockBarID )
  2287. {
  2288. case AFX_IDW_DOCKBAR_TOP:
  2289. nAlignOpt = TPMX_TOPALIGN;
  2290. break;
  2291. case AFX_IDW_DOCKBAR_BOTTOM:
  2292. nAlignOpt = TPMX_BOTTOMALIGN;
  2293. break;
  2294. case AFX_IDW_DOCKBAR_LEFT:
  2295. nAlignOpt = TPMX_LEFTALIGN;
  2296. break;
  2297. case AFX_IDW_DOCKBAR_RIGHT:
  2298. nAlignOpt = TPMX_RIGHTALIGN;
  2299. break;
  2300. case AFX_IDW_DOCKBAR_FLOAT:
  2301. nAlignOpt = TPMX_TOPALIGN;
  2302. break;
  2303. #ifdef _DEBUG
  2304. default:
  2305. ASSERT( FALSE );
  2306. break;
  2307. #endif // _DEBUG
  2308. } // switch( nDockBarID )
  2309. } // if( nAlignOpt == 0 && ((CControlBar *)pWnd)->m_pDockBar != NULL )
  2310. pWnd = pWnd->GetParent();
  2311. if( pWnd->IsKindOf(RUNTIME_CLASS(CMiniFrameWnd)) )
  2312. {
  2313. pWnd = pWnd->GetParentFrame();
  2314. ASSERT_VALID( pWnd );
  2315. break;
  2316. }
  2317. }
  2318. // if( ! ( CExtPopupMenuSite ::g_DefPopupMenuSite.IsEmpty()
  2319. // || CExtPopupMenuSite ::g_DefPopupMenuSite.IsShutdownMode()
  2320. // )
  2321. // )
  2322. // {
  2323. // CExtPopupMenuWnd * pPopupCurr =
  2324. // CExtPopupMenuSite ::g_DefPopupMenuSite.GetInstance();
  2325. // ASSERT_VALID( pPopupCurr );
  2326. // if( pPopupCurr->GetSafeHwnd() != NULL
  2327. // && ( ::IsWindow(pPopupCurr->GetSafeHwnd()) )
  2328. // && pPopupCurr->GetParent()->GetSafeHwnd() ==
  2329. // ( bInBar ? pWnd->GetSafeHwnd() : GetSafeHwnd() )
  2330. // )
  2331. // return true;
  2332. // }
  2333. CExtPopupColorMenuWnd * pPopup =
  2334. STATIC_DOWNCAST(
  2335. CExtPopupColorMenuWnd,
  2336. CExtPopupMenuWnd::InstantiatePopupMenu(
  2337. GetSafeHwnd(),
  2338. RUNTIME_CLASS(CExtPopupColorMenuWnd),
  2339. this
  2340. )
  2341. );
  2342. pPopup->SetLeftAreaWidth( m_nMenuLeftAreaWidth );
  2343. pPopup->m_lParamCookie = m_lParamCookie;
  2344. VERIFY(
  2345. pPopup->CreatePopupMenu(
  2346. bInBar ? pWnd->GetSafeHwnd() : GetSafeHwnd()
  2347. )
  2348. );
  2349. pPopup->m_bEnableBtnColorDefault =
  2350. m_bEnableBtnColorDefault;
  2351. pPopup->m_bEnableBtnColorCustom =
  2352. m_bEnableBtnColorCustom;
  2353. pPopup->m_clrDefault =
  2354. m_clrDefault;
  2355. pPopup->m_clrInitial =
  2356. m_clrSelected;
  2357. if( !m_sBtnTextColorDefault.IsEmpty() )
  2358. pPopup->m_sBtnTextColorDefault = m_sBtnTextColorDefault;
  2359. if( !m_sBtnTextColorCustom.IsEmpty() )
  2360. pPopup->m_sBtnTextColorCustom = m_sBtnTextColorCustom;
  2361. CRect wr;
  2362. GetWindowRect( &wr );
  2363. CPoint pt = wr.CenterPoint();
  2364. if( bInBar)
  2365. pWnd->SetFocus();
  2366. else
  2367. SetFocus();
  2368. bool bToolMenuTracking = false;
  2369. if( bInBar )
  2370. {
  2371. CExtToolControlBar::_CloseTrackingMenus();
  2372. bToolMenuTracking = true;
  2373. }
  2374. if( ! pPopup->TrackPopupMenu(
  2375. dwMenuOpt
  2376. | nAlignOpt
  2377. | ( (bSelectAny) ? TPMX_SELECT_ANY : 0 )
  2378. | TPMX_COMBINE_DEFAULT
  2379. | TPMX_DO_MESSAGE_LOOP
  2380. ,
  2381. pt.x,
  2382. pt.y,
  2383. &wr,
  2384. this,
  2385. _CbPaintCombinedContent,
  2386. NULL,
  2387. true
  2388. )
  2389. )
  2390. {
  2391. //delete pPopup;
  2392. ASSERT( FALSE );
  2393. }
  2394. else
  2395. {
  2396. if( bToolMenuTracking )
  2397. CExtToolControlBar::g_bMenuTracking = true;
  2398. }
  2399. if( ! ::IsWindow( hWndOwn ) )
  2400. return true;
  2401. if( m_clrLastHover != COLORREF(-1L) )
  2402. {
  2403. m_clrLastHover = COLORREF(-1L);
  2404. Invalidate();
  2405. }
  2406. return true;
  2407. }
  2408. void CExtColorButton::OnGenerateColorBtnIcon(
  2409. CExtCmdIcon & icon
  2410. )
  2411. {
  2412. icon.Empty();
  2413. COLORREF clrIcon = m_clrSelected;
  2414. if( m_bTrackColorPickerSelection
  2415. && m_clrLastHover != COLORREF(-1L)
  2416. )
  2417. clrIcon = m_clrLastHover;
  2418. if( clrIcon == COLORREF(-1L) )
  2419. {
  2420. VERIFY( icon.m_bmpNormal.FromColor( RGB(0,0,0), CSize(16,16), BYTE(0) ) );
  2421. return;
  2422. }
  2423. //TRACE1(" .... color .... %06Xrn", clrIcon );
  2424. HICON hIcon = CExtPaintManager::stat_GenerateColorIconBox( clrIcon );
  2425. //ASSERT( hIcon != NULL );
  2426. if( hIcon == NULL )
  2427. return;
  2428. icon.AssignFromHICON( hIcon, false );
  2429. }
  2430. void CExtColorButton::_RenderImpl( // non-buffered paint
  2431. CDC & dc,
  2432. bool bTransparent, // = false
  2433. bool bCombinedContent // = false
  2434. )
  2435. {
  2436. OnGenerateColorBtnIcon( m_icon );
  2437. CRect rcClient;
  2438. GetClientRect( &rcClient );
  2439. CExtSafeString sWindowText( _T("") );
  2440. OnQueryWindowText( sWindowText );
  2441. bool bDrawFocusRect = (GetFocus() == this && m_bDrawFocusRect) ? true : false;
  2442. bool bDefault = GetDefault() ? true : false;
  2443. bool bPushed = m_bPushed;
  2444. //bool bEnabled = IsWindowEnabled() ? true : false;
  2445. bool bEnabled = OnQueryWindowEnabledState();
  2446. bool bFlat = GetFlat() ? true : false;
  2447. bool bHover =
  2448. ( m_bMouseOver && !CExtPopupMenuWnd::IsMenuTracking() ) ? true : false;
  2449. if( GetParent()->IsKindOf(RUNTIME_CLASS(CControlBar)) )
  2450. {
  2451. bDrawFocusRect = false;
  2452. bFlat = true;
  2453. }
  2454. COLORREF clrBackground = GetBkColor();
  2455. bool _bTransparentBk = false;
  2456. if( (! (bHover || bPushed) )
  2457. && PmBridge_GetPM()->GetCb2DbTransparentMode(this)
  2458. && ( clrBackground == COLORREF(-1L) )
  2459. )
  2460. {
  2461. CExtPaintManager::stat_ExcludeChildAreas(
  2462. dc,
  2463. GetSafeHwnd(),
  2464. CExtPaintManager::stat_DefExcludeChildAreaCallback
  2465. );
  2466. if( PmBridge_GetPM()->PaintDockerBkgnd( true, dc, this ) )
  2467. _bTransparentBk = true;
  2468. }
  2469. if( ! _bTransparentBk )
  2470. dc.FillSolidRect( 
  2471. &rcClient, 
  2472. (clrBackground != COLORREF(-1L)) 
  2473. ? clrBackground 
  2474. : PmBridge_GetPM()->GetColor( CExtPaintManager::CLR_3DFACE_OUT, this ) 
  2475. );
  2476. HFONT hFont = OnQueryFont();
  2477. if( ! PmBridge_GetPM()->AdjustControlFont(
  2478. hFont,
  2479. this
  2480. )
  2481. )
  2482. {
  2483. LOGFONT _lf;
  2484. ::memset( &_lf, 0, sizeof(LOGFONT) );
  2485. ::GetObject( (HGDIOBJ)hFont, sizeof(LOGFONT), (LPVOID) &_lf );
  2486. if( GetDefault() )
  2487. _lf.lfWeight = 
  2488. (_lf.lfWeight > FW_BOLD) 
  2489. ? _lf.lfWeight 
  2490. : FW_BOLD;
  2491. hFont = ::CreateFontIndirect( &_lf );
  2492. }
  2493. ASSERT( hFont != NULL );
  2494. CFont _fontDestructor;
  2495. _fontDestructor.Attach( hFont );
  2496. CExtPaintManager::PAINTPUSHBUTTONDATA _ppbd(
  2497. this,
  2498. true, 
  2499. rcClient, 
  2500. (LPCTSTR)sWindowText,
  2501. &m_icon, 
  2502. bFlat, 
  2503. bHover, 
  2504. bPushed,
  2505. false, 
  2506. bEnabled,
  2507. ( m_bDrawBorder && (!CExtPopupMenuWnd::IsMenuTracking()) )
  2508. ? true : false,
  2509. ( bDrawFocusRect && (!CExtPopupMenuWnd::IsMenuTracking()) && (!sWindowText.IsEmpty()) )
  2510. ? true : false,
  2511. bDefault, 
  2512. 0,
  2513. hFont, 
  2514. _IsMenuAvail(), 
  2515. 0, 
  2516. bTransparent
  2517. );
  2518. _ppbd.m_rcBorderSizes = OnQueryBorderSizes();
  2519. _ppbd.m_nIconAlignment = OnQueryAlignmentIcon();
  2520. _ppbd.m_nTextAlignment = OnQueryAlignmentText();
  2521. _ppbd.m_rcIconMargins = OnQueryMarginsIcon();
  2522. _ppbd.m_rcTextMargins = OnQueryMarginsText();
  2523. _ppbd.m_nFocusMode = m_nFocusMode;
  2524. _ppbd.m_bSeparatedDropDown = m_bSeparatedDropDown ? true : false;
  2525. if( _ppbd.m_bSeparatedDropDown
  2526. && m_nTrackingHT == 2
  2527. && _ppbd.m_bPushed
  2528. )
  2529. {
  2530. _ppbd.m_bPushed = false;
  2531. _ppbd.m_bPushedDropDown = true;
  2532. // _ppbd.m_bHover = false;
  2533. }
  2534. _ppbd.m_bChecked = ( SupportsCheck() && GetCheck() != 0 ) ? true : false;
  2535. _ppbd.m_clrForceBk = GetBkColor();
  2536. _ppbd.m_clrForceTextDisabled = GetTextColorDisabled();
  2537. _ppbd.m_clrForceTextNormal = GetTextColorNormal();
  2538. _ppbd.m_clrForceTextHover = GetTextColorHover();
  2539. _ppbd.m_clrForceTextPressed = GetTextColorPressed();
  2540. if( bCombinedContent && (GetExStyle()&WS_EX_LAYOUTRTL) != 0 )
  2541. _ppbd.m_bForceRtlLayout = true;
  2542. if( (GetStyle()&BS_MULTILINE) != 0 )
  2543. _ppbd.m_bWordBreak = true;
  2544. PmBridge_GetPM()->PaintPushButton( dc, _ppbd );
  2545. }
  2546. LRESULT CExtColorButton::OnColorChanged(WPARAM wParam, LPARAM lParam)
  2547. {
  2548. wParam;
  2549. lParam;
  2550. if( m_bTrackColorPickerSelection )
  2551. {
  2552. m_clrLastHover = (COLORREF)wParam;
  2553. Invalidate();
  2554. CExtPopupMenuWnd * pPopup =
  2555. CExtPopupMenuWnd::GetTrackingMenu();
  2556. if( pPopup != NULL
  2557. && pPopup->GetSafeHwnd() != NULL
  2558. )
  2559. {
  2560. pPopup->Invalidate();
  2561. pPopup->UpdateWindow();
  2562. }
  2563. } // if( m_bTrackColorPickerSelection )
  2564. return
  2565. GetParent()->SendMessage(
  2566. CExtPopupColorMenuWnd::g_nMsgNotifyColorChanged,
  2567. wParam,
  2568. lParam
  2569. );
  2570. }
  2571. LRESULT CExtColorButton::OnColorChangedFinally(WPARAM wParam, LPARAM lParam)
  2572. {
  2573. lParam;
  2574. COLORREF clr = (COLORREF)wParam;
  2575. // m_clrSelected = (clr == ((COLORREF)(-1))) ? RGB(0,0,0) : clr;
  2576. m_clrSelected = clr;
  2577. Invalidate();
  2578. return
  2579. GetParent()->SendMessage(
  2580. CExtPopupColorMenuWnd::g_nMsgNotifyColorChangedFinally,
  2581. wParam,
  2582. lParam
  2583. );
  2584. }
  2585. LRESULT CExtColorButton::OnColorSelectCustom(WPARAM wParam, LPARAM lParam)
  2586. {
  2587. wParam;
  2588. lParam;
  2589. if( m_bUseStdColorDlg )
  2590. {
  2591. CColorDialog dlgSysColor(m_clrSelected,CC_FULLOPEN,this);
  2592. if( dlgSysColor.DoModal() != IDOK )
  2593. return 0;
  2594. m_clrSelected = dlgSysColor.m_cc.rgbResult;
  2595. } // if( m_bUseStdColorDlg )
  2596. else
  2597. {
  2598. CExtColorDlg dlgColor( m_clrSelected,m_clrSelected,this );
  2599. if( dlgColor.DoModal() != IDOK )
  2600. return 0;
  2601. m_clrSelected = dlgColor.m_clrNew;
  2602. } // else from if( m_bUseStdColorDlg )
  2603. GetParent()->SendMessage(
  2604. CExtPopupColorMenuWnd::g_nMsgNotifyColorChangedFinally,
  2605. WPARAM( m_clrSelected ),
  2606. lParam
  2607. );
  2608. Invalidate();
  2609. return 0;
  2610. }
  2611. LRESULT CExtButton::WindowProc(UINT message, WPARAM wParam, LPARAM lParam) 
  2612. {
  2613. #if (defined WM_UPDATEUISTATE)
  2614. ASSERT( WM_UPDATEUISTATE == 0x0128 );
  2615. #endif
  2616. // WM_UPDATEUISTATE causes repaint without WM_PAINT, so we eat it
  2617. if( message == 0x0128 )
  2618. return 0;
  2619. if( message == WM_SETTEXT 
  2620. || message == WM_ENABLE
  2621. )
  2622. {
  2623. LRESULT lResult = CButton::WindowProc(message, wParam, lParam);
  2624. Invalidate();
  2625. return lResult;
  2626. }
  2627. if( message == BM_GETCHECK )
  2628. return m_nCheck;
  2629. if( message == BM_SETCHECK )
  2630. {
  2631. m_nCheck = (INT)wParam;
  2632. Invalidate();
  2633. return 0L;
  2634. }
  2635. if( message == BM_SETSTYLE )
  2636. {
  2637. m_nButtonType = (INT)wParam;
  2638. m_nButtonType &= 0x0F;
  2639. Invalidate();
  2640. return 0L;
  2641. }
  2642. if( message == CExtToolControlBar::g_nMsgContinueTrackMenu )
  2643. {
  2644. _OnTrackPopup( lParam ? true : false );
  2645. return (!0L);
  2646. }
  2647. if( OnAdvancedPopupMenuTipWndGet() == NULL
  2648. && message == WM_NOTIFY
  2649. && m_wndToolTip.GetSafeHwnd() != NULL
  2650. && IsWindow( m_wndToolTip.GetSafeHwnd() )
  2651. && ((LPNMHDR)lParam) != NULL
  2652. && ((LPNMHDR)lParam)->hwndFrom == m_wndToolTip.GetSafeHwnd()
  2653. && ((LPNMHDR)lParam)->code == TTN_SHOW
  2654. )
  2655. ::SetWindowPos(
  2656. m_wndToolTip.GetSafeHwnd(),
  2657. HWND_TOP,
  2658. 0,0,0,0,
  2659. SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE
  2660. );
  2661. if( message == CExtPopupMenuWnd::g_nMsgPrepareMenu
  2662. || message == CExtPopupMenuWnd::g_nMsgPrepareOneMenuLevel
  2663. || message == CExtPopupMenuWnd::g_nMsgPopupNext
  2664. || message == CExtPopupMenuWnd::g_nMsgPopupPrev
  2665. || message == CExtPopupMenuWnd::g_nMsgNotifyMenuExpanded
  2666. || message == CExtPopupMenuWnd::g_nMsgNotifyMenuClosed
  2667. || message == CExtPopupMenuWnd::g_nMsgPopupDrawItem
  2668. || message == CExtPopupMenuWnd::g_nMsgPopupDrawLeftArea
  2669. )
  2670. {
  2671. CWnd * pParent = GetParent();
  2672. if( pParent )
  2673. return pParent->SendMessage( message, wParam, lParam );
  2674. else
  2675. return 0L;
  2676. }
  2677. bool bInvalidate = false;
  2678. switch( message )
  2679. {
  2680. case WM_GETDLGCODE:
  2681. if( GetDefault( false ) )
  2682. return DLGC_DEFPUSHBUTTON;
  2683. else
  2684. return ( ( SupportsCheck() ? 0 : DLGC_UNDEFPUSHBUTTON ) | DLGC_BUTTON );
  2685. case WM_MOUSEMOVE:
  2686. if( CExtToolControlBar::g_bMenuTracking )
  2687. {
  2688. CWnd * pWndParent = GetParent();
  2689. if( pWndParent != NULL
  2690. && pWndParent->IsKindOf(RUNTIME_CLASS(CExtToolControlBar))
  2691. )
  2692. {
  2693. _OnTrackPopup( false );
  2694. return 0L;
  2695. }
  2696. }
  2697. break;
  2698. case WM_LBUTTONDBLCLK:
  2699. case BM_SETSTATE:
  2700. m_bState = (wParam > 0L) ? true : false;
  2701. case BM_SETSTYLE:
  2702. #if (WINVER >= 0x0400)
  2703. case BM_CLICK:
  2704. case BM_SETIMAGE:
  2705. #endif
  2706. case WM_SIZE:
  2707. case WM_WINDOWPOSCHANGED:
  2708. bInvalidate = true;
  2709. break;
  2710. case WM_TIMER:
  2711. if( AnimationSite_OnHookTimer( UINT(wParam) ) )
  2712. return 0L;
  2713. break;
  2714. } // switch( message )
  2715. if( message == WM_PRINT || message == WM_PRINTCLIENT )
  2716. {
  2717. CDC * pDC = CDC::FromHandle( (HDC)wParam );
  2718. _DrawImpl( *pDC );
  2719. return (!0);
  2720. }
  2721. LRESULT lResult =
  2722. CButton::WindowProc( message, wParam, lParam );
  2723. // if(
  2724. // CExtPopupColorMenuWnd::g_nMsgNotifyColorChanged
  2725. // || CExtPopupColorMenuWnd::g_nMsgNotifyColorChangedFinally
  2726. // || CExtPopupColorMenuWnd::g_nMsgNotifyCustColor
  2727. // )
  2728. // {
  2729. // CWnd * pParent = GetParent();
  2730. // if( pParent )
  2731. // pParent->SendMessage( message, wParam, lParam );
  2732. // }
  2733. if( bInvalidate )
  2734. Invalidate();
  2735. return lResult;
  2736. }
  2737. void CExtColorButton::_OnClick(
  2738. bool bSelectAny,
  2739. bool bSeparatedDropDownClicked
  2740. )
  2741. {
  2742. if( (!m_bSeparatedDropDown)
  2743. || bSeparatedDropDownClicked
  2744. )
  2745. {
  2746. if( _OnTrackPopup( bSelectAny ) )
  2747. return;
  2748. }
  2749. CWnd * pWnd = GetParent();
  2750. ASSERT( pWnd != NULL );
  2751. ASSERT_VALID( pWnd );
  2752. pWnd->SendMessage(
  2753. CExtPopupColorMenuWnd::g_nMsgNotifyColorChangedFinally,
  2754. (WPARAM)m_clrSelected,
  2755. m_lParamCookie
  2756. );
  2757. }
  2758. void AFXAPI __EXT_MFC_DDX_ColorButton( CDataExchange * pDX, INT nIDC, COLORREF & value )
  2759. {
  2760. HWND hWndCtrl = pDX->PrepareCtrl( nIDC );
  2761. ASSERT( hWndCtrl != NULL );
  2762. ASSERT( ::IsWindow( hWndCtrl ) );
  2763. CExtColorButton * pWnd = 
  2764. DYNAMIC_DOWNCAST( CExtColorButton, CWnd::FromHandle( hWndCtrl ) );
  2765. if( pWnd != NULL )
  2766. {
  2767. ASSERT_VALID( pWnd );
  2768. if( pDX->m_bSaveAndValidate )
  2769. value = pWnd->m_clrSelected;
  2770. else
  2771. {
  2772. pWnd->m_clrSelected = value;
  2773. pWnd->Invalidate();
  2774. }
  2775. }
  2776. }
  2777. /////////////////////////////////////////////////////////////////////////////
  2778. // CExtCheckBox
  2779. IMPLEMENT_DYNCREATE( CExtCheckBox, CExtButton );
  2780. CExtCheckBox::CExtCheckBox()
  2781. {
  2782. m_rcTextMargins = CRect( 1, 1, 1, 1 );
  2783. }
  2784. CExtCheckBox::~CExtCheckBox()
  2785. {
  2786. }
  2787. BEGIN_MESSAGE_MAP(CExtCheckBox, CExtButton)
  2788. //{{AFX_MSG_MAP(CExtCheckBox)
  2789. //}}AFX_MSG_MAP
  2790. END_MESSAGE_MAP()
  2791. void CExtCheckBox::_OnClick(
  2792. bool bSelectAny,
  2793. bool bSeparatedDropDownClicked
  2794. )
  2795. {
  2796. ASSERT_VALID( this );
  2797. if( !SupportsCheck() )
  2798. {
  2799. CExtButton::_OnClick(
  2800. bSelectAny,
  2801. bSeparatedDropDownClicked
  2802. );
  2803. return;
  2804. } // if( ! SupportsCheck() )
  2805. if( SupportsAutoCheck() )
  2806. {
  2807. INT nCheck = GetCheck();
  2808. nCheck = ( ( nCheck + 1 ) % ( Is3StateType() ? 3 : 2 ) );
  2809. SetCheck( nCheck );
  2810. }
  2811. CWnd * pWnd = GetParent();
  2812. if( pWnd->GetSafeHwnd() == NULL )
  2813. return;
  2814. ASSERT_VALID( pWnd );
  2815. HWND hWndThis = GetSafeHwnd();
  2816. int nDlgCtrlID = GetDlgCtrlID();
  2817. pWnd->SendMessage(
  2818. WM_COMMAND,
  2819. MAKEWPARAM(nDlgCtrlID,BN_CLICKED),
  2820. (LPARAM)hWndThis
  2821. );
  2822. if( ::IsWindow( hWndThis ) )
  2823. Invalidate();
  2824. }
  2825. void CExtCheckBox::_RenderImpl(
  2826. CDC & dc,
  2827. bool bTransparent, // = false
  2828. bool bCombinedContent // = false
  2829. )
  2830. {
  2831. ASSERT_VALID( this );
  2832. if( (GetStyle()&BS_PUSHLIKE) != 0 )
  2833. {
  2834. CExtButton::_RenderImpl( dc, bTransparent, bCombinedContent );
  2835. return;
  2836. }
  2837. CRect rcClient;
  2838. GetClientRect( &rcClient );
  2839. CExtSafeString sWindowText( _T("") );
  2840. OnQueryWindowText( sWindowText );
  2841. bool bDrawFocusRect = (GetFocus() == this && m_bDrawFocusRect) ? true : false;
  2842. bool bPushed = (m_bPushed || GetCheck()) ? true : false;
  2843. // bool bEnabled = IsWindowEnabled() ? true : false;
  2844. bool bEnabled = OnQueryWindowEnabledState();
  2845. bool bHover =
  2846. ( m_bMouseOver && !CExtPopupMenuWnd::IsMenuTracking() ) ? true : false;
  2847. if( GetParent()->IsKindOf(RUNTIME_CLASS(CControlBar)) )
  2848. bDrawFocusRect = false;
  2849. COLORREF clrBackground = GetBkColor();
  2850. bool _bTransparentBk = false;
  2851. if( PmBridge_GetPM()->GetCb2DbTransparentMode(this)
  2852. && ( clrBackground == COLORREF(-1L) )
  2853. )
  2854. {
  2855. CExtPaintManager::stat_ExcludeChildAreas(
  2856. dc,
  2857. GetSafeHwnd(),
  2858. CExtPaintManager::stat_DefExcludeChildAreaCallback
  2859. );
  2860. if( PmBridge_GetPM()->PaintDockerBkgnd( true, dc, this ) )
  2861. _bTransparentBk = true;
  2862. }
  2863. if( ! _bTransparentBk )
  2864. dc.FillSolidRect( 
  2865. &rcClient, 
  2866. (clrBackground != COLORREF(-1L)) 
  2867. ? clrBackground 
  2868. : PmBridge_GetPM()->GetColor( CExtPaintManager::CLR_3DFACE_OUT, this ) 
  2869. );
  2870. HFONT hFont = OnQueryFont();
  2871. if( ! PmBridge_GetPM()->AdjustControlFont(
  2872. hFont,
  2873. this
  2874. )
  2875. )
  2876. {
  2877. LOGFONT _lf;
  2878. ::memset( &_lf, 0, sizeof(LOGFONT) );
  2879. ::GetObject( (HGDIOBJ)hFont, sizeof(LOGFONT), (LPVOID) &_lf );
  2880. if( GetDefault() )
  2881. _lf.lfWeight = 
  2882. (_lf.lfWeight > FW_BOLD) 
  2883. ? _lf.lfWeight 
  2884. : FW_BOLD;
  2885. hFont = ::CreateFontIndirect( &_lf );
  2886. }
  2887. ASSERT( hFont != NULL );
  2888. CFont _fontDestructor;
  2889. _fontDestructor.Attach( hFont );
  2890. bool bLeftText = false;
  2891. DWORD dwStyle = GetStyle();
  2892. DWORD dwExStyle = GetExStyle();
  2893. if( (dwStyle&BS_LEFTTEXT) != 0
  2894. || (dwStyle&BS_RIGHTBUTTON) != 0
  2895. || (dwExStyle&WS_EX_RIGHT) != 0
  2896. )
  2897. bLeftText = true;
  2898. bool bMultiline = (dwStyle&BS_MULTILINE) != 0 ? true : false;
  2899. INT nCheck = GetCheck();
  2900. CExtPaintManager::eBoxState_t eState = CExtPaintManager::BOX_UNCHECKED;
  2901. switch( nCheck ) 
  2902. {
  2903. case BST_UNCHECKED:
  2904. if( bEnabled )
  2905. {
  2906. if( ( bHover && !m_bPushTracking) 
  2907. ||  (!bHover &&  m_bPushTracking && !m_bKeyTracking) 
  2908. )
  2909. eState = CExtPaintManager::BOX_MOUSE_HOVER_UNCHECKED;
  2910. else if( (bHover && m_bPushTracking) || m_bKeyTracking )
  2911. eState = CExtPaintManager::BOX_LDOWN_UNCHECKED;
  2912. else
  2913. eState = CExtPaintManager::BOX_UNCHECKED;
  2914. }
  2915. else
  2916. eState = CExtPaintManager::BOX_DISABLED_UNCHECKED;
  2917. break;
  2918. case BST_CHECKED:
  2919. if( bEnabled )
  2920. {
  2921. if( ( bHover && !m_bPushTracking) 
  2922. ||  (!bHover &&  m_bPushTracking && !m_bKeyTracking) 
  2923. )
  2924. eState = CExtPaintManager::BOX_MOUSE_HOVER_CHECKED;
  2925. else if( (bHover && m_bPushTracking) || m_bKeyTracking )
  2926. eState = CExtPaintManager::BOX_LDOWN_CHECKED;
  2927. else
  2928. eState = CExtPaintManager::BOX_CHECKED;
  2929. }
  2930. else
  2931. eState = CExtPaintManager::BOX_DISABLED_CHECKED;
  2932. break;
  2933. case BST_INDETERMINATE:
  2934. if( bEnabled )
  2935. {
  2936. if( ( bHover && !m_bPushTracking) 
  2937. ||  (!bHover &&  m_bPushTracking && !m_bKeyTracking ) 
  2938. )
  2939. eState = CExtPaintManager::BOX_MOUSE_HOVER_INDETERMINATE;
  2940. else if( (bHover && m_bPushTracking) || m_bKeyTracking )
  2941. eState = CExtPaintManager::BOX_LDOWN_INDETERMINATE;
  2942. else
  2943. eState = CExtPaintManager::BOX_INDETERMINATE;
  2944. }
  2945. else
  2946. eState = CExtPaintManager::BOX_DISABLED_INDETERMINATE;
  2947. break;
  2948. }
  2949. CExtPaintManager::PAINTCHECKRADIOBUTTONDATA _pcrbd(
  2950. this,
  2951. eState,
  2952. bLeftText,
  2953. bMultiline,
  2954. rcClient,
  2955. (LPCTSTR) sWindowText,
  2956. bHover,
  2957. bPushed,
  2958. bEnabled,
  2959. bDrawFocusRect, 
  2960. OnQueryAlignmentText(),
  2961. hFont,
  2962. bTransparent
  2963. );
  2964. _pcrbd.m_rcTextMargins = OnQueryMarginsText();
  2965. _pcrbd.m_clrForceBk = GetBkColor();
  2966. _pcrbd.m_clrForceTextDisabled = GetTextColorDisabled();
  2967. _pcrbd.m_clrForceTextNormal = GetTextColorNormal();
  2968. _pcrbd.m_clrForceTextHover = GetTextColorHover();
  2969. _pcrbd.m_clrForceTextPressed = GetTextColorPressed();
  2970. PmBridge_GetPM()->PaintCheckButton( dc, _pcrbd );
  2971. // by default this method does nothing
  2972. OnPaintBox( 
  2973. dc, 
  2974. _pcrbd.m_rcBox, 
  2975. _pcrbd.m_eState 
  2976. );
  2977. PmBridge_GetPM()->OnPaintSessionComplete( this );
  2978. }
  2979. bool CExtCheckBox::OnPaintBox(
  2980. CDC & dc,
  2981. CRect & rcBox,
  2982. CExtPaintManager::eBoxState_t eState
  2983. )
  2984. {
  2985. ASSERT_VALID( this );
  2986. ASSERT( dc.GetSafeHdc() != NULL );
  2987. dc;
  2988. rcBox;
  2989. eState;
  2990. return false;
  2991. }
  2992. INT CExtCheckBox::OnQueryAlignmentText() const
  2993. {
  2994. ASSERT_VALID( this );
  2995. DWORD dwStyle = GetStyle();
  2996. if( (dwStyle&BS_PUSHLIKE) != 0 )
  2997. return CExtButton::OnQueryAlignmentText();
  2998. INT nAlign = 0;
  2999. const UINT __BS_H_MASK = (BS_LEFT|BS_CENTER|BS_RIGHT);
  3000. const UINT __BS_V_MASK = (BS_TOP|BS_VCENTER|BS_BOTTOM);
  3001. if( (dwStyle&__BS_H_MASK) == BS_RIGHT )
  3002. nAlign |= CExtPaintManager::__ALIGN_HORIZ_RIGHT;
  3003. else if( (dwStyle&__BS_H_MASK) == BS_CENTER )
  3004. nAlign |= CExtPaintManager::__ALIGN_HORIZ_CENTER;
  3005. else
  3006. nAlign |= CExtPaintManager::__ALIGN_HORIZ_LEFT;
  3007. if( (dwStyle&__BS_V_MASK) == BS_BOTTOM )
  3008. nAlign |= CExtPaintManager::__ALIGN_VERT_BOTTOM;
  3009. else if( (dwStyle&__BS_V_MASK) == BS_TOP )
  3010. nAlign |= CExtPaintManager::__ALIGN_VERT_TOP;
  3011. else
  3012. nAlign |= CExtPaintManager::__ALIGN_VERT_CENTER;
  3013. return nAlign;
  3014. }
  3015. /////////////////////////////////////////////////////////////////////////////
  3016. // CExtRadioButton
  3017. IMPLEMENT_DYNCREATE( CExtRadioButton, CExtCheckBox );
  3018. CExtRadioButton::CExtRadioButton()
  3019. {
  3020. }
  3021. CExtRadioButton::~CExtRadioButton()
  3022. {
  3023. }
  3024. BEGIN_MESSAGE_MAP(CExtRadioButton, CExtCheckBox)
  3025. //{{AFX_MSG_MAP(CExtRadioButton)
  3026. //}}AFX_MSG_MAP
  3027. END_MESSAGE_MAP()
  3028. //////////////////////////////////////////////////////////////////////////
  3029. BOOL CExtRadioButton::PreTranslateMessage(MSG* pMsg) 
  3030. {
  3031. if( pMsg->hwnd == m_hWnd && GetParent() != NULL 
  3032. && pMsg->message == WM_KEYDOWN
  3033. )
  3034. {
  3035. switch(pMsg->wParam) 
  3036. {
  3037. case VK_UP:
  3038. case VK_LEFT:
  3039. if( _CheckNextPrevRadioButton( false ) )
  3040. return TRUE;
  3041. break;
  3042. case VK_DOWN:
  3043. case VK_RIGHT:
  3044. if( _CheckNextPrevRadioButton( true ) )
  3045. return TRUE;
  3046. break;
  3047. }
  3048. } // if( pMsg->hwnd == m_hWnd )
  3049. return CExtCheckBox::PreTranslateMessage(pMsg);
  3050. }
  3051. LRESULT CExtRadioButton::WindowProc(UINT message, WPARAM wParam, LPARAM lParam) 
  3052. {
  3053. if( message == WM_GETDLGCODE )
  3054. return (DLGC_BUTTON | DLGC_RADIOBUTTON);
  3055. if( message == BM_SETCHECK 
  3056. && IsWindowEnabled()
  3057. && IsWindowVisible()
  3058. )
  3059. {
  3060. LRESULT lRes = CExtCheckBox::WindowProc( message, wParam, lParam );
  3061. CWnd * pWndParent = GetParent();
  3062. ASSERT_VALID( pWndParent );
  3063. CWnd * pWnd = pWndParent->GetNextDlgGroupItem( this, TRUE );
  3064. while( pWnd != NULL && pWnd != this ) 
  3065. {
  3066. if( ( pWnd->SendMessage( WM_GETDLGCODE ) & DLGC_RADIOBUTTON ) != 0 
  3067. && pWnd->SendMessage( BM_GETCHECK ) == BST_UNCHECKED
  3068. )
  3069. pWnd->ModifyStyle( WS_TABSTOP, 0 );
  3070. pWnd = pWndParent->GetNextDlgGroupItem( pWnd, TRUE );
  3071. }
  3072. pWnd = pWndParent->GetNextDlgGroupItem( this, FALSE );
  3073. while( pWnd != NULL && pWnd != this ) 
  3074. {
  3075. if( ( pWnd->SendMessage( WM_GETDLGCODE ) & DLGC_RADIOBUTTON ) != 0 
  3076. && pWnd->SendMessage( BM_GETCHECK ) == BST_UNCHECKED
  3077. )
  3078. pWnd->ModifyStyle( WS_TABSTOP, 0 );
  3079. pWnd = pWndParent->GetNextDlgGroupItem( pWnd, FALSE );
  3080. }
  3081. bool bCheck = 
  3082. ( wParam != BST_UNCHECKED ) ? true : false;
  3083. this->ModifyStyle( 
  3084. bCheck ? 0 : WS_TABSTOP, 
  3085. bCheck ? WS_TABSTOP : 0
  3086. );
  3087. return lRes;
  3088. }
  3089. return
  3090. CExtCheckBox::WindowProc( message, wParam, lParam );
  3091. }
  3092. bool CExtRadioButton::_CheckNextPrevRadioButton( bool bNext )
  3093. {
  3094. ASSERT_VALID (this);
  3095. CWnd * pWndParent = GetParent();
  3096. ASSERT_VALID( pWndParent );
  3097. CWnd * pWnd = pWndParent->GetNextDlgGroupItem( this, !bNext );
  3098. for( ; pWnd != this; pWnd = pWndParent->GetNextDlgGroupItem( pWnd, !bNext ) )
  3099. {
  3100. if( ( pWnd->SendMessage( WM_GETDLGCODE ) & DLGC_RADIOBUTTON ) == 0 
  3101. || (pWnd->GetStyle()&(WS_DISABLED|WS_VISIBLE)) != WS_VISIBLE
  3102. )
  3103. continue;
  3104. break;
  3105. }
  3106. if( pWnd != NULL 
  3107. && pWnd != this 
  3108. && pWnd->SendMessage( BM_GETCHECK ) == BST_UNCHECKED 
  3109. )
  3110. {
  3111. ASSERT_VALID( pWnd );
  3112. _UncheckRadioButtonsInGroup();
  3113. SetCheck( BST_UNCHECKED );
  3114. pWnd->SendMessage( BM_SETCHECK, BST_CHECKED );
  3115. pWnd->SetFocus();
  3116. ::SendMessage(
  3117. pWnd->GetParent()->GetSafeHwnd(), 
  3118. WM_COMMAND,
  3119. MAKELONG( ::__EXT_MFC_GetWindowLong( pWnd->GetSafeHwnd(), GWL_ID ), BN_CLICKED ),
  3120. (LPARAM) pWnd->GetSafeHwnd()
  3121. );
  3122. return true;
  3123. }
  3124. return false;
  3125. }
  3126. void CExtRadioButton::_UncheckRadioButtonsInGroup()
  3127. {
  3128. ASSERT_VALID (this);
  3129. CWnd * pWndParent = GetParent();
  3130. if( pWndParent == NULL )
  3131. return;
  3132. ASSERT_VALID( pWndParent );
  3133. bool bEnabled = OnQueryWindowEnabledState();
  3134. if( !bEnabled )
  3135. return;
  3136. CWnd * pWnd = pWndParent->GetNextDlgGroupItem( this, TRUE );
  3137. while( pWnd != NULL && pWnd != this ) 
  3138. {
  3139. if( ( pWnd->SendMessage( WM_GETDLGCODE ) & DLGC_RADIOBUTTON ) != 0 
  3140. && pWnd->SendMessage( BM_GETCHECK ) != BST_UNCHECKED
  3141. )
  3142. pWnd->SendMessage( BM_SETCHECK, BST_UNCHECKED );
  3143. pWnd = pWndParent->GetNextDlgGroupItem( pWnd, TRUE );
  3144. }
  3145. pWnd = pWndParent->GetNextDlgGroupItem( this, FALSE );
  3146. while( pWnd != NULL && pWnd != this ) 
  3147. {
  3148. if( ( pWnd->SendMessage( WM_GETDLGCODE ) & DLGC_RADIOBUTTON ) != 0 
  3149. && pWnd->SendMessage( BM_GETCHECK ) != BST_UNCHECKED
  3150. )
  3151. pWnd->SendMessage( BM_SETCHECK, BST_UNCHECKED );
  3152. pWnd = pWndParent->GetNextDlgGroupItem( pWnd, FALSE );
  3153. }
  3154. }
  3155. void CExtRadioButton::_OnClick(
  3156. bool bSelectAny,
  3157. bool bSeparatedDropDownClicked
  3158. )
  3159. {
  3160.   ASSERT_VALID( this );
  3161. if( ! SupportsCheck() )
  3162. {
  3163. CExtCheckBox::_OnClick(
  3164. bSelectAny,
  3165. bSeparatedDropDownClicked
  3166. );
  3167. return;
  3168. } // if( ! SupportsCheck() )
  3169. if( SupportsAutoCheck() )
  3170. {
  3171. INT nCheck = GetCheck();
  3172. if( !nCheck )
  3173. {
  3174. nCheck = !nCheck;
  3175. _UncheckRadioButtonsInGroup();
  3176. }
  3177. SetCheck( nCheck );
  3178. }
  3179. CWnd * pWnd = GetParent();
  3180. if( pWnd->GetSafeHwnd() == NULL )
  3181. return;
  3182. ASSERT_VALID( pWnd );
  3183. HWND hWndThis = GetSafeHwnd();
  3184. int nDlgCtrlID = GetDlgCtrlID();
  3185. pWnd->SendMessage(
  3186. WM_COMMAND,
  3187. MAKEWPARAM(nDlgCtrlID,BN_CLICKED),
  3188. (LPARAM)m_hWnd
  3189. );
  3190. if( ::IsWindow( hWndThis ) )
  3191. Invalidate();
  3192. }
  3193. void CExtRadioButton::_RenderImpl(
  3194. CDC & dc,
  3195. bool bTransparent, // = false
  3196. bool bCombinedContent // = false
  3197. )
  3198. {
  3199. ASSERT_VALID( this );
  3200. bCombinedContent;
  3201. if( (GetStyle()&BS_PUSHLIKE) != 0 )
  3202. {
  3203. CExtButton::_RenderImpl( dc, bTransparent, bCombinedContent );
  3204. return;
  3205. }
  3206. CRect rcClient;
  3207. GetClientRect( &rcClient );
  3208. CExtSafeString sWindowText( _T("") );
  3209. OnQueryWindowText( sWindowText );
  3210. bool bDrawFocusRect = (GetFocus() == this && m_bDrawFocusRect) ? true : false;
  3211. bool bPushed = (m_bPushed || GetCheck()) ? true : false;
  3212. // bool bEnabled = IsWindowEnabled() ? true : false;
  3213. bool bEnabled = OnQueryWindowEnabledState();
  3214. bool bHover =
  3215. ( m_bMouseOver && !CExtPopupMenuWnd::IsMenuTracking() ) ? true : false;
  3216. if( GetParent()->IsKindOf(RUNTIME_CLASS(CControlBar)) )
  3217. bDrawFocusRect = false;
  3218. COLORREF clrBackground = GetBkColor();
  3219. bool _bTransparentBk = false;
  3220. if( PmBridge_GetPM()->GetCb2DbTransparentMode(this)
  3221. && ( clrBackground == COLORREF(-1L) )
  3222. )
  3223. {
  3224. CExtPaintManager::stat_ExcludeChildAreas(
  3225. dc,
  3226. GetSafeHwnd(),
  3227. CExtPaintManager::stat_DefExcludeChildAreaCallback
  3228. );
  3229. if( PmBridge_GetPM()->PaintDockerBkgnd( true, dc, this ) )
  3230. _bTransparentBk = true;
  3231. }
  3232. if( ! _bTransparentBk )
  3233. dc.FillSolidRect( 
  3234. &rcClient, 
  3235. (clrBackground != COLORREF(-1L)) 
  3236. ? clrBackground 
  3237. : PmBridge_GetPM()->GetColor( CExtPaintManager::CLR_3DFACE_OUT, this ) 
  3238. );
  3239. HFONT hFont = OnQueryFont();
  3240. if( ! PmBridge_GetPM()->AdjustControlFont(
  3241. hFont,
  3242. this
  3243. )
  3244. )
  3245. {
  3246. LOGFONT _lf;
  3247. ::memset( &_lf, 0, sizeof(LOGFONT) );
  3248. ::GetObject( (HGDIOBJ)hFont, sizeof(LOGFONT), (LPVOID) &_lf );
  3249. if( GetDefault() )
  3250. _lf.lfWeight = 
  3251. (_lf.lfWeight > FW_BOLD) 
  3252. ? _lf.lfWeight 
  3253. : FW_BOLD;
  3254. hFont = ::CreateFontIndirect( &_lf );
  3255. }
  3256. ASSERT( hFont != NULL );
  3257. CFont _fontDestructor;
  3258. _fontDestructor.Attach( hFont );
  3259. bool bLeftText = false;
  3260. DWORD dwStyle = GetStyle();
  3261. DWORD dwExStyle = GetExStyle();
  3262. if( (dwStyle&BS_LEFTTEXT) != 0
  3263. || (dwStyle&BS_RIGHTBUTTON) != 0
  3264. || (dwExStyle&WS_EX_RIGHT) != 0
  3265. )
  3266. bLeftText = true;
  3267. bool bMultiline = (dwStyle&BS_MULTILINE) != 0 ? true : false;
  3268. INT nCheck = GetCheck();
  3269. CExtPaintManager::eBoxState_t eState =
  3270. CExtPaintManager::BOX_UNCHECKED;
  3271. switch( nCheck ) 
  3272. {
  3273. case BST_UNCHECKED:
  3274. if( bEnabled )
  3275. {
  3276. if( ( bHover && !m_bPushTracking) 
  3277. ||  (!bHover &&  m_bPushTracking && !m_bKeyTracking) 
  3278. )
  3279. eState = CExtPaintManager::BOX_MOUSE_HOVER_UNCHECKED;
  3280. else if( (bHover && m_bPushTracking) || m_bKeyTracking )
  3281. eState = CExtPaintManager::BOX_LDOWN_UNCHECKED;
  3282. else
  3283. eState = CExtPaintManager::BOX_UNCHECKED;
  3284. }
  3285. else
  3286. eState = CExtPaintManager::BOX_DISABLED_UNCHECKED;
  3287. break;
  3288. case BST_CHECKED:
  3289. if( bEnabled )
  3290. {
  3291. if( ( bHover && !m_bPushTracking) 
  3292. ||  (!bHover &&  m_bPushTracking && !m_bKeyTracking) 
  3293. )
  3294. eState = CExtPaintManager::BOX_MOUSE_HOVER_CHECKED;
  3295. else if( (bHover && m_bPushTracking) || m_bKeyTracking )
  3296. eState = CExtPaintManager::BOX_LDOWN_CHECKED;
  3297. else
  3298. eState = CExtPaintManager::BOX_CHECKED;
  3299. }
  3300. else
  3301. eState = CExtPaintManager::BOX_DISABLED_CHECKED;
  3302. break;
  3303. }
  3304. CExtPaintManager::PAINTCHECKRADIOBUTTONDATA _pcrbd(
  3305. this,
  3306. eState,
  3307. bLeftText,
  3308. bMultiline,
  3309. rcClient,
  3310. (LPCTSTR) sWindowText,
  3311. bHover,
  3312. bPushed,
  3313. bEnabled,
  3314. bDrawFocusRect, 
  3315. OnQueryAlignmentText(),
  3316. hFont,
  3317. bTransparent
  3318. );
  3319. _pcrbd.m_rcTextMargins = OnQueryMarginsText();
  3320. _pcrbd.m_clrForceBk = GetBkColor();
  3321. _pcrbd.m_clrForceTextDisabled = GetTextColorDisabled();
  3322. _pcrbd.m_clrForceTextNormal = GetTextColorNormal();
  3323. _pcrbd.m_clrForceTextHover = GetTextColorHover();
  3324. _pcrbd.m_clrForceTextPressed = GetTextColorPressed();
  3325. PmBridge_GetPM()->PaintRadioButton( dc, _pcrbd );
  3326. // by default this method does nothing
  3327. OnPaintBox( 
  3328. dc, 
  3329. _pcrbd.m_rcBox, 
  3330. _pcrbd.m_eState 
  3331. );
  3332. PmBridge_GetPM()->OnPaintSessionComplete( this );
  3333. }
  3334. bool CExtRadioButton::OnPaintBox(
  3335. CDC & dc,
  3336. CRect & rcBox,
  3337. CExtPaintManager::eBoxState_t eState
  3338. )
  3339. {
  3340. ASSERT_VALID( this );
  3341. ASSERT( dc.GetSafeHdc() != NULL );
  3342. dc;
  3343. rcBox;
  3344. eState;
  3345. return false;
  3346. }
  3347. /////////////////////////////////////////////////////////////////////////////
  3348. // CExtHyperLinkButton
  3349. IMPLEMENT_DYNCREATE( CExtHyperLinkButton, CExtButton );
  3350. CExtHyperLinkButton::CExtHyperLinkButton()
  3351. : m_bUseStdCommandNotification( false )
  3352. , m_bAllowVisited( true )
  3353. , m_bVisited( false )
  3354. , m_clrTextVisited( RGB( 128, 0, 128 ) )
  3355. , m_bTextUnderline( false )
  3356. {
  3357. m_rcTextMargins = CRect( 2, 2, 2, 2 );
  3358. m_bQuickActivationEnabled = false;
  3359. m_clrTextNormal = RGB( 0, 0, 255 );
  3360. m_clrTextHover = RGB( 255, 0, 0 );
  3361. SetBtnCursor( IDC_EXT_HAND );
  3362. }
  3363. CExtHyperLinkButton::~CExtHyperLinkButton()
  3364. {
  3365. }
  3366. BEGIN_MESSAGE_MAP(CExtHyperLinkButton, CExtButton)
  3367. //{{AFX_MSG_MAP(CExtHyperLinkButton)
  3368. //}}AFX_MSG_MAP
  3369. END_MESSAGE_MAP()
  3370. void CExtHyperLinkButton::_OnClick(
  3371. bool bSelectAny,
  3372. bool bSeparatedDropDownClicked
  3373. )
  3374. {
  3375. ASSERT_VALID( this );
  3376. if( m_bUseStdCommandNotification )
  3377. {
  3378. CExtButton::_OnClick(
  3379. bSelectAny,
  3380. bSeparatedDropDownClicked
  3381. );
  3382. m_bVisited = true;
  3383. Invalidate();
  3384. return;
  3385. } // if( m_bUseStdCommandNotification )
  3386. if( m_strURL.IsEmpty() )
  3387. {
  3388. CExtSafeString strURL;
  3389. OnQueryWindowText( strURL );
  3390. strURL.TrimLeft();
  3391. strURL.TrimRight();
  3392. VERIFY( OnHyperLinkOpen( LPCTSTR(strURL) ) );
  3393. } // if( m_strURL.IsEmpty() )
  3394. else
  3395. VERIFY( OnHyperLinkOpen( LPCTSTR(m_strURL) ) );
  3396. }
  3397. void CExtHyperLinkButton::_RenderImpl( // non-buffered paint
  3398. CDC & dc,
  3399. bool bTransparent, // = false
  3400. bool bCombinedContent // = false
  3401. )
  3402. {
  3403. ASSERT_VALID( this );
  3404. ASSERT( dc.GetSafeHdc() != NULL );
  3405. bTransparent;
  3406. bCombinedContent;
  3407. CRect rcClient;
  3408. GetClientRect( &rcClient );
  3409. COLORREF clrBackground = GetBkColor();
  3410. bool _bTransparentBk = false;
  3411. if( PmBridge_GetPM()->GetCb2DbTransparentMode(this)
  3412. && ( clrBackground == COLORREF(-1L) )
  3413. )
  3414. {
  3415. CExtPaintManager::stat_ExcludeChildAreas(
  3416. dc,
  3417. GetSafeHwnd(),
  3418. CExtPaintManager::stat_DefExcludeChildAreaCallback
  3419. );
  3420. if( PmBridge_GetPM()->PaintDockerBkgnd( true, dc, this ) )
  3421. _bTransparentBk = true;
  3422. }
  3423. if( ! _bTransparentBk )
  3424. dc.FillSolidRect( 
  3425. &rcClient, 
  3426. (clrBackground != COLORREF(-1L)) 
  3427. ? clrBackground 
  3428. : PmBridge_GetPM()->GetColor( CExtPaintManager::CLR_3DFACE_OUT, this ) 
  3429. );
  3430. bool bFocus = (GetFocus() == this) ? true : false;
  3431. bool bPushed = m_bPushed ? true : false;
  3432. //bool bEnabled = IsWindowEnabled() ? true : false;
  3433. bool bEnabled = OnQueryWindowEnabledState();
  3434. bool bHover =
  3435. ( m_bMouseOver && !CExtPopupMenuWnd::IsMenuTracking() ) ? true : false;
  3436. bool bVisited = (m_bVisited && m_bAllowVisited) ? true : false;
  3437. OnPaintHyperLink(
  3438. dc,
  3439. rcClient,
  3440. bVisited,
  3441. bEnabled,
  3442. m_bDrawFocusRect,
  3443. bFocus,
  3444. bHover,
  3445. bPushed
  3446. );
  3447. }
  3448. COLORREF CExtHyperLinkButton::OnQueryHyperLinkTextColor(
  3449. bool bVisited,
  3450. bool bEnabled,
  3451. bool bDrawFocusRect,
  3452. bool bFocus,
  3453. bool bHover,
  3454. bool bPushed
  3455. ) const
  3456. {
  3457. ASSERT_VALID( this );
  3458. bDrawFocusRect;
  3459. CWindowDC dcFake( NULL );
  3460. COLORREF clrText =
  3461. PmBridge_GetPM()->QueryObjectTextColor(
  3462. dcFake,
  3463. bEnabled,
  3464. bFocus,
  3465. bHover,
  3466. bPushed,
  3467. (CObject*)this
  3468. );
  3469. if( clrText != COLORREF(-1L) )
  3470. return clrText;
  3471. clrText = m_clrTextNormal;
  3472. if( bEnabled )
  3473. {
  3474. if( bHover || bPushed || bFocus )
  3475. clrText = m_clrTextHover;
  3476. else if( bVisited )
  3477. clrText = m_clrTextVisited;
  3478. if( clrText == COLORREF(-1L) )
  3479. clrText =
  3480. PmBridge_GetPM()->GetColor(
  3481. COLOR_BTNTEXT, (CObject*)this
  3482. );
  3483. } // if( bEnabled )
  3484. else
  3485. {
  3486. if( m_clrTextDisabled == COLORREF(-1L) )
  3487. clrText =
  3488. PmBridge_GetPM()->GetColor( 
  3489. CExtPaintManager::CLR_TEXT_DISABLED, 
  3490. (CObject*)this
  3491. );
  3492. else
  3493. clrText = m_clrTextDisabled;
  3494. } // else from if( bEnabled )
  3495. return clrText;
  3496. }
  3497. void CExtHyperLinkButton::OnPaintHyperLink(
  3498. CDC & dc,
  3499. CRect rcText,
  3500. bool bVisited,
  3501. bool bEnabled,
  3502. bool bDrawFocusRect,
  3503. bool bFocus,
  3504. bool bHover,
  3505. bool bPushed
  3506. ) const
  3507. {
  3508. ASSERT_VALID( this );
  3509. ASSERT( dc.GetSafeHdc() != NULL );
  3510. CExtSafeString strHyperLinkURL = OnQueryHyperLinkURL( true );
  3511. if( strHyperLinkURL.IsEmpty() )
  3512. return;
  3513. CRect rcInitial( rcText );
  3514. int nOldBkMode = dc.SetBkMode( TRANSPARENT );
  3515. HFONT hFont = OnQueryFont();
  3516. if( ! PmBridge_GetPM()->AdjustControlFont(
  3517. hFont,
  3518. (CObject*)this
  3519. )
  3520. )
  3521. {
  3522. LOGFONT _lf;
  3523. ::memset( &_lf, 0, sizeof(LOGFONT) );
  3524. ::GetObject( (HGDIOBJ)hFont, sizeof(LOGFONT), (LPVOID) &_lf );
  3525. if( GetDefault() )
  3526. _lf.lfWeight = 
  3527. (_lf.lfWeight > FW_BOLD) 
  3528. ? _lf.lfWeight 
  3529. : FW_BOLD;
  3530. if( ( bHover /*|| bFocus*/ || bPushed )
  3531. && GetTextUnderline()
  3532. )
  3533. _lf.lfUnderline = 1;
  3534. hFont = ::CreateFontIndirect( &_lf );
  3535. }
  3536. ASSERT( hFont != NULL );
  3537. CFont _fontDestructor;
  3538. _fontDestructor.Attach( hFont );
  3539. CFont * pFont = CFont::FromHandle( hFont );
  3540. CFont * pFontOld = dc.SelectObject( pFont );
  3541. COLORREF clrText =
  3542. OnQueryHyperLinkTextColor(
  3543. bVisited,
  3544. bEnabled,
  3545. bDrawFocusRect,
  3546. bFocus,
  3547. bHover,
  3548. bPushed
  3549. );
  3550. COLORREF clrTextOld = dc.SetTextColor( clrText );
  3551. INT nTextLength = strHyperLinkURL.GetLength();
  3552. CRect rcTextMargins = OnQueryMarginsText();
  3553. CRect rcTextLocation( 0, 0, 0, 0);
  3554. rcText.DeflateRect( rcTextMargins );
  3555. DWORD dwStyle = GetStyle();
  3556. bool bMultiline = (dwStyle&BS_MULTILINE) != 0 ? true : false;
  3557. UINT nDtMeasureFlags =
  3558. DT_LEFT|DT_TOP|DT_CALCRECT;
  3559. if( bMultiline )
  3560. {
  3561. rcTextLocation = rcText;
  3562. rcTextLocation.OffsetRect( -rcTextLocation.TopLeft() );
  3563. rcTextLocation.bottom = rcTextLocation.top;
  3564. nDtMeasureFlags |= DT_WORDBREAK;
  3565. }
  3566. else
  3567. nDtMeasureFlags |= DT_SINGLELINE;
  3568. dc.DrawText(
  3569. LPCTSTR( strHyperLinkURL ), 
  3570. nTextLength,
  3571. rcTextLocation,
  3572. nDtMeasureFlags
  3573. );
  3574. rcTextLocation.OffsetRect(
  3575. rcText.TopLeft() - rcTextLocation.TopLeft()
  3576. );
  3577. INT nAlign = OnQueryAlignmentText();
  3578. UINT nDtDrawFlags = 0;
  3579. if( (nAlign&CExtPaintManager::__ALIGN_HORIZ_MASK) == CExtPaintManager::__ALIGN_HORIZ_RIGHT )
  3580. {
  3581. nDtDrawFlags |= DT_RIGHT;
  3582. rcTextLocation.OffsetRect(
  3583. rcText.Width() - rcTextLocation.Width(),
  3584. 0
  3585. );
  3586. }
  3587. else if( (nAlign&CExtPaintManager::__ALIGN_HORIZ_MASK) == CExtPaintManager::__ALIGN_HORIZ_CENTER )
  3588. {
  3589. nDtDrawFlags |= DT_CENTER;
  3590. rcTextLocation.OffsetRect(
  3591. ( rcText.Width() - rcTextLocation.Width() ) / 2,
  3592. 0
  3593. );
  3594. }
  3595. else
  3596. nDtDrawFlags |= DT_LEFT;
  3597. if( (nAlign&CExtPaintManager::__ALIGN_VERT_MASK) == CExtPaintManager::__ALIGN_VERT_BOTTOM )
  3598. {
  3599. nDtDrawFlags |= DT_BOTTOM;
  3600. rcTextLocation.OffsetRect(
  3601. 0,
  3602. rcText.Height() - rcTextLocation.Height()
  3603. );
  3604. }
  3605. else if( (nAlign&CExtPaintManager::__ALIGN_VERT_MASK) == CExtPaintManager::__ALIGN_VERT_TOP )
  3606. {
  3607. nDtDrawFlags |= DT_TOP;
  3608. }
  3609. else
  3610. {
  3611. nDtDrawFlags |= DT_VCENTER;
  3612. rcTextLocation.OffsetRect(
  3613. 0,
  3614. ( rcText.Height() - rcTextLocation.Height() ) / 2
  3615. );
  3616. }
  3617. if( bMultiline )
  3618. nDtDrawFlags |= DT_WORDBREAK;
  3619. else
  3620. nDtDrawFlags |= DT_SINGLELINE;
  3621. dc.DrawText(
  3622. LPCTSTR( strHyperLinkURL ),
  3623. nTextLength,
  3624. rcTextLocation,
  3625. nDtDrawFlags
  3626. );
  3627. CRect rcFocus( rcTextLocation );
  3628. rcFocus.InflateRect( 2, 2, 2, 1 );
  3629. dc.SetTextColor( clrTextOld );
  3630. dc.SelectObject( pFontOld );
  3631. dc.SetBkMode( nOldBkMode );
  3632. if( bDrawFocusRect && bFocus )
  3633. dc.DrawFocusRect( &rcFocus );
  3634. }
  3635. CExtSafeString CExtHyperLinkButton::OnQueryHyperLinkURL(
  3636. bool bDisplayURL // true - display URL, false - navigate URL
  3637. ) const
  3638. {
  3639. ASSERT_VALID( this );
  3640. bDisplayURL;
  3641. CExtSafeString strHyperLinkURL;
  3642. OnQueryWindowText( strHyperLinkURL );
  3643. return strHyperLinkURL;
  3644. }
  3645. bool CExtHyperLinkButton::OnHyperLinkOpen(
  3646. __EXT_MFC_SAFE_LPCTSTR strURL,
  3647. CExtHyperLinkButton::e_OpenMode_t eOM, // = CExtHyperLinkButton::__EOM_OPEN
  3648. bool bAllowErrorAlert // = false
  3649. ) const
  3650. {
  3651. if( _tcsnicmp( strURL, _T("http:////"), 7 ) == 0
  3652. || _tcsnicmp( strURL, _T("file:////"), 7 ) == 0
  3653. || _tcsnicmp( strURL, _T("www."), 4 ) == 0
  3654. || _tcsnicmp( strURL, _T("web."), 4 ) == 0
  3655. )
  3656. {
  3657. if( ! _OpenVia_RegInfo( strURL, eOM, bAllowErrorAlert ) )
  3658. {
  3659. if( ! _OpenVia_COM( strURL, eOM, bAllowErrorAlert ) )
  3660. {
  3661. if( ! _OpenVia_Shell( strURL, eOM, bAllowErrorAlert ) )
  3662. {
  3663. TRACE0( "*** Failed to open hyper link (CExtHyperLinkButton::OnHyperLinkOpen) ***n" );
  3664. return false;
  3665. }
  3666. }
  3667. }
  3668. }
  3669. else
  3670. {
  3671. int nLen = int( _tcslen( LPCTSTR(strURL) ) );
  3672. if( nLen > 4 )
  3673. { // open .LNK shortcuts in a special way
  3674. LPCTSTR strExtLookup = LPCTSTR(strURL) + nLen - 4;
  3675. if( _tcsnicmp( strExtLookup, _T(".lnk"), 4 ) == 0
  3676. || _tcsnicmp( strExtLookup, _T(".cpl"), 4 ) == 0
  3677. )
  3678. {
  3679. HINSTANCE hInstance =
  3680. ::ShellExecute(
  3681. ::GetDesktopWindow(), // GetParent()->GetSafeHwnd(),
  3682. g_PaintManager.m_bIsWin2000orLater ? LPCTSTR(NULL) : _T("open"),
  3683. LPCTSTR(strURL),
  3684. NULL,
  3685. NULL,
  3686. SW_SHOW
  3687. );
  3688. if( __EXT_MFC_LONG_PTR(hInstance) <= __EXT_MFC_LONG_PTR(HINSTANCE_ERROR) )
  3689. return false;
  3690. return true;
  3691. }
  3692. } // open .LNK shortcuts in a special way
  3693. if( ! _OpenVia_COM( strURL, eOM ) )
  3694. {
  3695. if( ! _OpenVia_Shell( strURL, eOM ) )
  3696. {
  3697. if( ! _OpenVia_RegInfo( strURL, eOM ) )
  3698. {
  3699. TRACE0( "*** Failed to open hyper link (CExtHyperLinkButton::OnHyperLinkOpen) ***n" );
  3700. return false;
  3701. }
  3702. }
  3703. }
  3704. }
  3705. m_bVisited = true;
  3706. ((CWnd *)this)->Invalidate();
  3707. return true;
  3708. }
  3709. bool CExtHyperLinkButton::stat_HyperLinkOpen(
  3710. __EXT_MFC_SAFE_LPCTSTR strURL,
  3711. CExtHyperLinkButton::e_OpenMode_t eOM, // = CExtHyperLinkButton::__EOM_OPEN
  3712. bool bAllowErrorAlert // = false
  3713. )
  3714. {
  3715. if( _tcsnicmp( strURL, _T("http:////"), 7 ) == 0
  3716. || _tcsnicmp( strURL, _T("file:////"), 7 ) == 0
  3717. || _tcsnicmp( strURL, _T("www."), 4 ) == 0
  3718. || _tcsnicmp( strURL, _T("web."), 4 ) == 0
  3719. )
  3720. {
  3721. if( ! stat_OpenVia_RegInfo( strURL, eOM, bAllowErrorAlert ) )
  3722. {
  3723. if( ! stat_OpenVia_COM( strURL, eOM, bAllowErrorAlert ) )
  3724. {
  3725. if( ! stat_OpenVia_Shell( strURL, eOM, bAllowErrorAlert ) )
  3726. {
  3727. TRACE0( "*** Failed to open hyper link (CExtHyperLinkButton::stat_HyperLinkOpen) ***n" );
  3728. return false;
  3729. }
  3730. }
  3731. }
  3732. }
  3733. else
  3734. {
  3735. int nLen = int( _tcslen( LPCTSTR(strURL) ) );
  3736. if( nLen > 4 )
  3737. { // open .LNK shortcuts in a special way
  3738. LPCTSTR strExtLookup = LPCTSTR(strURL) + nLen - 4;
  3739. if( _tcsnicmp( strExtLookup, _T(".lnk"), 4 ) == 0
  3740. || _tcsnicmp( strExtLookup, _T(".cpl"), 4 ) == 0
  3741. )
  3742. {
  3743. HINSTANCE hInstance =
  3744. ::ShellExecute(
  3745. ::GetDesktopWindow(), // GetParent()->GetSafeHwnd(),
  3746. g_PaintManager.m_bIsWin2000orLater ? LPCTSTR(NULL) : _T("open"),
  3747. LPCTSTR(strURL),
  3748. NULL,
  3749. NULL,
  3750. SW_SHOW
  3751. );
  3752. if( __EXT_MFC_LONG_PTR(hInstance) <= __EXT_MFC_LONG_PTR(HINSTANCE_ERROR) )
  3753. return false;
  3754. return true;
  3755. }
  3756. } // open .LNK shortcuts in a special way
  3757. if( ! stat_OpenVia_COM( strURL, eOM ) )
  3758. {
  3759. if( ! stat_OpenVia_Shell( strURL, eOM ) )
  3760. {
  3761. if( ! stat_OpenVia_RegInfo( strURL, eOM ) )
  3762. {
  3763. TRACE0( "*** Failed to open hyper link (CExtHyperLinkButton::stat_HyperLinkOpen) ***n" );
  3764. return false;
  3765. }
  3766. }
  3767. }
  3768. }
  3769. return true;
  3770. }
  3771. bool CExtHyperLinkButton::_OpenVia_COM(
  3772. __EXT_MFC_SAFE_LPCTSTR strURL,
  3773. CExtHyperLinkButton::e_OpenMode_t eOM, // = CExtHyperLinkButton::__EOM_OPEN
  3774. bool bAllowErrorAlert // = false
  3775. ) const
  3776. {
  3777. ASSERT_VALID( this );
  3778. return stat_OpenVia_COM( strURL, eOM, bAllowErrorAlert );
  3779. }
  3780. bool CExtHyperLinkButton::stat_OpenVia_COM(
  3781. __EXT_MFC_SAFE_LPCTSTR strURL,
  3782. CExtHyperLinkButton::e_OpenMode_t eOM, // = CExtHyperLinkButton::__EOM_OPEN
  3783. bool bAllowErrorAlert // = false
  3784. )
  3785. {
  3786. ASSERT( strURL != NULL );
  3787. ASSERT( _tcslen( strURL ) > 0 );
  3788. bAllowErrorAlert;
  3789. IUniformResourceLocator *pURL;
  3790. HRESULT hr =
  3791. ::CoCreateInstance(
  3792. CLSID_InternetShortcut,
  3793. NULL,
  3794. CLSCTX_INPROC_SERVER,
  3795. IID_IUniformResourceLocator,
  3796. (LPVOID*)&pURL
  3797. );
  3798. if( FAILED(hr) )
  3799. {
  3800. //ASSERT( FALSE );
  3801. return false;
  3802. }
  3803. hr =
  3804. pURL->SetURL(
  3805. LPCTSTR(strURL),
  3806. IURL_SETURL_FL_GUESS_PROTOCOL
  3807. );
  3808. if( FAILED(hr) )
  3809. {
  3810. //ASSERT( FALSE );
  3811. pURL->Release();
  3812. return false;
  3813. }
  3814. URLINVOKECOMMANDINFO _uici;
  3815. ::memset( &_uici, 0, sizeof(URLINVOKECOMMANDINFO) );
  3816. _uici.dwcbSize = sizeof(URLINVOKECOMMANDINFO);
  3817. _uici.dwFlags = IURL_INVOKECOMMAND_FL_ALLOW_UI;
  3818. _uici.hwndParent = ::GetDesktopWindow(); // GetParent()->GetSafeHwnd();
  3819. switch( eOM )
  3820. {
  3821. case __EOM_OPEN:
  3822. _uici.pcszVerb = _T("open");
  3823. break;
  3824. case __EOM_EDIT:
  3825. _uici.pcszVerb = _T("edit");
  3826. break;
  3827. case __EOM_PRINT:
  3828. _uici.pcszVerb = _T("print");
  3829. break;
  3830. #ifdef _DEBUG
  3831. default:
  3832. ASSERT( FALSE );
  3833. break;
  3834. #endif // _DEBUG
  3835. } // switch( eOM )
  3836. hr = pURL->InvokeCommand(&_uici);
  3837. if( FAILED(hr) )
  3838. {
  3839. //ASSERT( FALSE );
  3840. pURL->Release();
  3841. return false;
  3842. }
  3843. pURL->Release();
  3844. return true;
  3845. }
  3846. bool CExtHyperLinkButton::_OpenVia_Shell(
  3847. __EXT_MFC_SAFE_LPCTSTR strURL,
  3848. CExtHyperLinkButton::e_OpenMode_t eOM, // = CExtHyperLinkButton::__EOM_OPEN
  3849. bool bAllowErrorAlert // = false
  3850. ) const
  3851. {
  3852. ASSERT_VALID( this );
  3853. return stat_OpenVia_Shell( strURL, eOM, bAllowErrorAlert );
  3854. }
  3855. bool CExtHyperLinkButton::stat_OpenVia_Shell(
  3856. __EXT_MFC_SAFE_LPCTSTR strURL,
  3857. CExtHyperLinkButton::e_OpenMode_t eOM, // = CExtHyperLinkButton::__EOM_OPEN
  3858. bool bAllowErrorAlert // = false
  3859. )
  3860. {
  3861. ASSERT( strURL != NULL );
  3862. ASSERT( _tcslen( strURL ) > 0 );
  3863. LPCTSTR strOpenMode = NULL;
  3864. switch( eOM )
  3865. {
  3866. case __EOM_OPEN:
  3867. strOpenMode = _T("open");
  3868. break;
  3869. case __EOM_EDIT:
  3870. strOpenMode = _T("edit");
  3871. break;
  3872. case __EOM_PRINT:
  3873. strOpenMode = _T("print");
  3874. break;
  3875. #ifdef _DEBUG
  3876. default:
  3877. ASSERT( FALSE );
  3878. break;
  3879. #endif // _DEBUG
  3880. } // switch( eOM )
  3881. ASSERT( strOpenMode != NULL );
  3882. HINSTANCE hInstance =
  3883. ::ShellExecute(
  3884. ::GetDesktopWindow(), // GetParent()->GetSafeHwnd(),
  3885. strOpenMode,
  3886. LPCTSTR(strURL),
  3887. NULL,
  3888. NULL,
  3889. SW_SHOW
  3890. );
  3891. if( __EXT_MFC_LONG_PTR(hInstance) <= __EXT_MFC_LONG_PTR(HINSTANCE_ERROR) )
  3892. {
  3893. if( bAllowErrorAlert )
  3894. {
  3895. CExtSafeString strErrorDescription;
  3896. switch( __EXT_MFC_LONG_PTR(hInstance) )
  3897. {
  3898. case 0:
  3899. strErrorDescription =
  3900. _T("OS is out of memory or resources.");
  3901. break;
  3902. case SE_ERR_PNF:
  3903. strErrorDescription = _T("Path was not found.");
  3904. break;
  3905. case SE_ERR_FNF:
  3906. strErrorDescription =
  3907. _T("File was not found.");
  3908. break;
  3909. case ERROR_BAD_FORMAT:
  3910. strErrorDescription =
  3911. _T("EXE file is invalid (must run on other platform or error in its image).");
  3912. break;
  3913. case SE_ERR_ACCESSDENIED:
  3914. strErrorDescription =
  3915. _T("OS denied access to the file.");
  3916. break;
  3917. case SE_ERR_ASSOCINCOMPLETE:
  3918. strErrorDescription =
  3919. _T("The filename association is incomplete or invalid.");
  3920. break;
  3921. case SE_ERR_DDEBUSY:
  3922. strErrorDescription =
  3923. _T("DDE transaction was not completed due to other DDE transactions.");
  3924. break;
  3925. case SE_ERR_DDEFAIL:
  3926. strErrorDescription =
  3927. _T("DDE transaction failed.");
  3928. break;
  3929. case SE_ERR_DDETIMEOUT:
  3930. strErrorDescription =
  3931. _T("DDE transaction could not be completed due to request timed out.");
  3932. break;
  3933. case SE_ERR_DLLNOTFOUND:
  3934. strErrorDescription =
  3935. _T("DLL was not found.");
  3936. break;
  3937. case SE_ERR_NOASSOC:
  3938. strErrorDescription =
  3939. _T("There is no application associated with the given filename extension.");
  3940. break;
  3941. case SE_ERR_OOM:
  3942. strErrorDescription =
  3943. _T("Not enough memory.");
  3944. break;
  3945. case SE_ERR_SHARE:
  3946. strErrorDescription =
  3947. _T("A sharing violation occurred.");
  3948. break;
  3949. default:
  3950. strErrorDescription.Format(
  3951. _T("Unknown Error (%d=0x%X) occurred."), __EXT_MFC_LONG_PTR(hInstance), __EXT_MFC_LONG_PTR(hInstance) );
  3952. break;
  3953. } // switch( LONG(hInstance) )
  3954. CExtSafeString strErrorMessage;
  3955. strErrorMessage.Format(
  3956. _T("Unable to open hyper link:n%s"),
  3957. LPCTSTR(strErrorDescription)
  3958. );
  3959. UINT nType = MB_OK|MB_ICONERROR;
  3960. if( (g_ResourceManager->OnQueryLangLayout()&LAYOUT_RTL) != 0 )
  3961. nType |= MB_RTLREADING;
  3962. #if (! defined __EXT_MFC_NO_MSG_BOX )
  3963. ::ProfUISMsgBox( NULL, LPCTSTR(strErrorDescription), NULL, nType );
  3964. #else
  3965. ::AfxMessageBox( LPCTSTR(strErrorDescription), nType );
  3966. #endif
  3967. } // if( bAllowErrorAlert )
  3968. return false;
  3969. } // if( LONG(hInstance) <= LONG(HINSTANCE_ERROR) )
  3970. return true;
  3971. }
  3972. bool CExtHyperLinkButton::_OpenVia_RegInfo(
  3973. __EXT_MFC_SAFE_LPCTSTR strURL,
  3974. CExtHyperLinkButton::e_OpenMode_t eOM, // = CExtHyperLinkButton::__EOM_OPEN
  3975. bool bAllowErrorAlert // = false
  3976. ) const
  3977. {
  3978. ASSERT_VALID( this );
  3979. return stat_OpenVia_RegInfo( strURL, eOM, bAllowErrorAlert );
  3980. }
  3981. bool CExtHyperLinkButton::stat_OpenVia_RegInfo(
  3982. __EXT_MFC_SAFE_LPCTSTR strURL,
  3983. CExtHyperLinkButton::e_OpenMode_t eOM, // = CExtHyperLinkButton::__EOM_OPEN
  3984. bool bAllowErrorAlert // = false
  3985. )
  3986. {
  3987. ASSERT( strURL != NULL );
  3988. ASSERT( _tcslen( strURL ) > 0 );
  3989. TCHAR strKey[ MAX_PATH + MAX_PATH + 2];
  3990. HINSTANCE hInstance = NULL;
  3991. LPTSTR strExt = _T(".htm");
  3992. HKEY hRegKey;
  3993. // if( GetRegKey(HKEY_CLASSES_ROOT, strExt, strKey) != ERROR_SUCCESS )
  3994. // return false;
  3995. if( ::RegOpenKeyEx( HKEY_CLASSES_ROOT, strExt, 0, KEY_QUERY_VALUE, &hRegKey ) != ERROR_SUCCESS )
  3996. return false;
  3997. { // BLOCK
  3998. long nSize = MAX_PATH;
  3999. TCHAR strData[MAX_PATH];
  4000. ::RegQueryValue( hRegKey, NULL, strData, &nSize );
  4001. __EXT_MFC_STRCPY( strKey, sizeof(strKey)/sizeof(strKey[0]), strData );
  4002. ::RegCloseKey( hRegKey );
  4003. } // BLOCK
  4004. LPCTSTR strOpenMode = NULL;
  4005. switch( eOM )
  4006. {
  4007. case __EOM_OPEN:
  4008. strOpenMode = _T("\shell\open\command");
  4009. break;
  4010. case __EOM_EDIT:
  4011. strOpenMode = _T("\shell\edit\command");
  4012. break;
  4013. case __EOM_PRINT:
  4014. strOpenMode = _T("\shell\print\command");
  4015. break;
  4016. #ifdef _DEBUG
  4017. default:
  4018. ASSERT( FALSE );
  4019. break;
  4020. #endif // _DEBUG
  4021. } // switch( eOM )
  4022. ASSERT( strOpenMode != NULL );
  4023. __EXT_MFC_STRCAT( strKey, sizeof(strKey)/sizeof(strKey[0]), strOpenMode );
  4024. // if( GetRegKey(HKEY_CLASSES_ROOT, strKey, strKey) != ERROR_SUCCESS )
  4025. // return false;
  4026. if( ::RegOpenKeyEx( HKEY_CLASSES_ROOT, strKey, 0, KEY_QUERY_VALUE, &hRegKey ) != ERROR_SUCCESS )
  4027. return false;
  4028. { // BLOCK
  4029. long nSize = MAX_PATH;
  4030. TCHAR strData[MAX_PATH];
  4031. ::RegQueryValue( hRegKey, NULL, strData, &nSize );
  4032. __EXT_MFC_STRCPY( strKey, MAX_PATH, strData );
  4033. ::RegCloseKey( hRegKey );
  4034. } // BLOCK
  4035. LPTSTR strPos = _tcsstr( strKey, _T(""%1"") );
  4036. if( strPos == NULL )
  4037. strPos = _tcsstr( strKey, _T("%1") );
  4038. if( strPos != NULL )
  4039. *strPos = _T('');
  4040. __EXT_MFC_STRCAT( strKey, sizeof(strKey)/sizeof(strKey[0]), _T(" ") );
  4041. __EXT_MFC_STRCAT( strKey, sizeof(strKey)/sizeof(strKey[0]), LPCTSTR(strURL) );
  4042. USES_CONVERSION;
  4043. hInstance = (HINSTANCE)(__EXT_MFC_UINT_PTR)::WinExec(T2A(strKey), SW_SHOW);
  4044. if( __EXT_MFC_LONG_PTR(hInstance) <= __EXT_MFC_LONG_PTR(HINSTANCE_ERROR) )
  4045. {
  4046. if( bAllowErrorAlert )
  4047. {
  4048. CExtSafeString strErrorDescription;
  4049. switch( __EXT_MFC_LONG_PTR(hInstance) )
  4050. {
  4051. case 0:
  4052. strErrorDescription =
  4053. _T("OS is out of memory or resources.");
  4054. break;
  4055. case SE_ERR_PNF:
  4056. strErrorDescription = _T("Path was not found.");
  4057. break;
  4058. case SE_ERR_FNF:
  4059. strErrorDescription =
  4060. _T("File was not found.");
  4061. break;
  4062. case ERROR_BAD_FORMAT:
  4063. strErrorDescription =
  4064. _T("EXE file is invalid (must run on other platform or error in its image).");
  4065. break;
  4066. case SE_ERR_ACCESSDENIED:
  4067. strErrorDescription =
  4068. _T("OS denied access to the file.");
  4069. break;
  4070. case SE_ERR_ASSOCINCOMPLETE:
  4071. strErrorDescription =
  4072. _T("The filename association is incomplete or invalid.");
  4073. break;
  4074. case SE_ERR_DDEBUSY:
  4075. strErrorDescription =
  4076. _T("DDE transaction was not completed due to other DDE transactions.");
  4077. break;
  4078. case SE_ERR_DDEFAIL:
  4079. strErrorDescription =
  4080. _T("DDE transaction failed.");
  4081. break;
  4082. case SE_ERR_DDETIMEOUT:
  4083. strErrorDescription =
  4084. _T("DDE transaction could not be completed due to request timed out.");
  4085. break;
  4086. case SE_ERR_DLLNOTFOUND:
  4087. strErrorDescription =
  4088. _T("DLL was not found.");
  4089. break;
  4090. case SE_ERR_NOASSOC:
  4091. strErrorDescription =
  4092. _T("There is no application associated with the given filename extension.");
  4093. break;
  4094. case SE_ERR_OOM:
  4095. strErrorDescription =
  4096. _T("Not enough memory.");
  4097. break;
  4098. case SE_ERR_SHARE:
  4099. strErrorDescription =
  4100. _T("A sharing violation occurred.");
  4101. break;
  4102. default:
  4103. strErrorDescription.Format(
  4104. _T("Unknown Error (%d=0x%X) occurred."), __EXT_MFC_LONG_PTR(hInstance), __EXT_MFC_LONG_PTR(hInstance) );
  4105. break;
  4106. } // switch( LONG(hInstance) )
  4107. CExtSafeString strErrorMessage;
  4108. strErrorMessage.Format(
  4109. _T("Unable to open hyper link:n%s"),
  4110. LPCTSTR(strErrorDescription)
  4111. );
  4112. UINT nType = MB_OK|MB_ICONERROR;
  4113. if( (g_ResourceManager->OnQueryLangLayout()&LAYOUT_RTL) != 0 )
  4114. nType |= MB_RTLREADING;
  4115. #if (!defined __EXT_MFC_NO_MSG_BOX)
  4116. ::ProfUISMsgBox( NULL, LPCTSTR(strErrorDescription), NULL, nType );
  4117. #else
  4118. ::AfxMessageBox( LPCTSTR(strErrorDescription), nType );
  4119. #endif
  4120. } // if( bAllowErrorAlert )
  4121. return false;
  4122. } // if( LONG(hInstance) <= LONG(HINSTANCE_ERROR) )
  4123. return true;
  4124. }
  4125. void CExtHyperLinkButton::SetTextColorVisited( 
  4126. COLORREF clrText 
  4127. )
  4128. ASSERT_VALID( this );
  4129. m_clrTextVisited = clrText; 
  4130. Invalidate();
  4131. }
  4132. COLORREF CExtHyperLinkButton::GetTextColorVisited()
  4133. {
  4134. ASSERT_VALID( this );
  4135. return m_clrTextVisited; 
  4136. }
  4137. void CExtHyperLinkButton::SetTextUnderline( 
  4138. bool bTextUnderline 
  4139. )
  4140. ASSERT_VALID( this );
  4141. m_bTextUnderline = bTextUnderline; 
  4142. Invalidate();
  4143. }
  4144. bool CExtHyperLinkButton::GetTextUnderline() const
  4145. {
  4146. ASSERT_VALID( this );
  4147. return m_bTextUnderline; 
  4148. }
  4149. /////////////////////////////////////////////////////////////////////////////
  4150. // CExtIconButton
  4151. IMPLEMENT_DYNCREATE( CExtIconButton, CExtButton );
  4152. CExtIconButton::CExtIconButton()
  4153. : m_rcFocusRectPadding( 1, 1, 1, 1 )
  4154. {
  4155. }
  4156. CExtIconButton::~CExtIconButton()
  4157. {
  4158. }
  4159. BEGIN_MESSAGE_MAP( CExtIconButton, CExtButton )
  4160. //{{AFX_MSG_MAP(CExtIconButton)
  4161. //}}AFX_MSG_MAP
  4162. END_MESSAGE_MAP()
  4163. void CExtIconButton::_RenderImpl(
  4164. CDC & dc,
  4165. bool bTransparent, // = false
  4166. bool bCombinedContent // = false
  4167. )
  4168. {
  4169. bTransparent;
  4170. ASSERT_VALID( this );
  4171. m_bSeparatedDropDown = false; // should never become a split button
  4172. CExtPaintManager * pPM = PmBridge_GetPM();
  4173. ASSERT_VALID( pPM );
  4174. CRect rcClient;
  4175. GetClientRect( &rcClient );
  4176. COLORREF clrBackground = GetBkColor();
  4177. bool _bTransparentBk = false;
  4178. if( pPM->GetCb2DbTransparentMode(this)
  4179. && ( clrBackground == COLORREF(-1L) )
  4180. )
  4181. {
  4182. CExtPaintManager::stat_ExcludeChildAreas(
  4183. dc,
  4184. GetSafeHwnd(),
  4185. CExtPaintManager::stat_DefExcludeChildAreaCallback
  4186. );
  4187. if( pPM->PaintDockerBkgnd( true, dc, this ) )
  4188. _bTransparentBk = true;
  4189. }
  4190. if( ! _bTransparentBk )
  4191. dc.FillSolidRect( 
  4192. &rcClient, 
  4193. (clrBackground != COLORREF(-1L)) 
  4194. ? clrBackground 
  4195. : pPM->GetColor( CExtPaintManager::CLR_3DFACE_OUT, this ) 
  4196. );
  4197. if( ! m_icon.IsEmpty() )
  4198. {
  4199. //bool bDefault = GetDefault() ? true : false;
  4200. bool bPushed = m_bPushed ? true : false;
  4201. bool bEnabled = OnQueryWindowEnabledState();
  4202. //bool bFlat = GetFlat() ? true : false;
  4203. bool bHover = ( m_bMouseOver && !CExtPopupMenuWnd::IsMenuTracking() ) ? true : false;
  4204. CExtCmdIcon::e_paint_type_t ePT =
  4205. bEnabled
  4206. ? ( bPushed
  4207. ? CExtCmdIcon::__PAINT_PRESSED
  4208. : ( bHover
  4209. ? CExtCmdIcon::__PAINT_HOVER
  4210. : CExtCmdIcon::__PAINT_NORMAL
  4211. )
  4212. )
  4213. : CExtCmdIcon::__PAINT_DISABLED
  4214. ;
  4215. CSize _sizeClient = rcClient.Size();
  4216. CSize _sizeIcon = m_icon.GetSize();
  4217. CRect rcIcon(
  4218. rcClient.left,
  4219. rcClient.top,
  4220. rcClient.left + _sizeIcon.cx,
  4221. rcClient.top + _sizeIcon.cy
  4222. );
  4223. if( _sizeClient != _sizeIcon )
  4224. rcIcon.OffsetRect(
  4225. ( _sizeClient.cx - _sizeIcon.cx ) / 2,
  4226. ( _sizeClient.cy - _sizeIcon.cy ) / 2
  4227. );
  4228. m_icon.Paint( pPM, dc.m_hDC, rcIcon, ePT );
  4229. } // if( ! m_icon.IsEmpty() )
  4230. bool bDrawFocusRect = ( (!bCombinedContent) && GetFocus() == this && m_bDrawFocusRect ) ? true : false;
  4231. if( GetParent()->IsKindOf(RUNTIME_CLASS(CControlBar)) )
  4232. {
  4233. bDrawFocusRect = false;
  4234. //bFlat = true;
  4235. }
  4236. if( bDrawFocusRect )
  4237. {
  4238. CRect rcFocus( rcClient );
  4239. rcFocus.DeflateRect( &m_rcFocusRectPadding );
  4240. dc.DrawFocusRect( &rcClient );
  4241. }
  4242. }
  4243. /////////////////////////////////////////////////////////////////////////////