XTPControlButton.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
- // XTPControlButton.cpp : implementation of the CXTPControlButton class.
- //
- // This file is a part of the XTREME COMMANDBARS MFC class library.
- // (c)1998-2008 Codejock Software, All Rights Reserved.
- //
- // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
- // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
- // CONSENT OF CODEJOCK SOFTWARE.
- //
- // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
- // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
- // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
- // SINGLE COMPUTER.
- //
- // CONTACT INFORMATION:
- // support@codejock.com
- // http://www.codejock.com
- //
- /////////////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "XTPControlButton.h"
- #include "XTPCommandBar.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CXTPControlButton
- IMPLEMENT_XTP_CONTROL(CXTPControlButton, CXTPControl)
- CXTPControlButton::CXTPControlButton()
- {
- EnableAutomation();
- m_controlType = xtpControlButton;
- }
- CXTPControlButton::~CXTPControlButton()
- {
- }
- void CXTPControlButton::OnLButtonUp(CPoint /*point*/)
- {
- if (GetEnabled() && (m_pParent->GetType() == xtpBarTypePopup || m_pParent->GetPosition() == xtpBarPopup))
- {
- OnExecute();
- }
- }
- void CXTPControlButton::OnClick(BOOL bKeyboard, CPoint pt)
- {
- if (!GetEnabled()) return;
- if (IsCustomizeMode())
- {
- m_pParent->SetPopuped(-1);
- m_pParent->SetSelected(-1);
- CustomizeStartDrag(pt);
- return;
- }
- if (!bKeyboard)
- {
- if (m_pParent->GetType() != xtpBarTypePopup)
- ClickToolBarButton();
- }
- else
- {
- OnExecute();
- }
- }
- void CXTPControlButton::Copy(CXTPControl* pControl, BOOL bRecursive)
- {
- ASSERT(DYNAMIC_DOWNCAST(CXTPControlButton, pControl));
- CXTPControl::Copy(pControl, bRecursive);
- }