XTPControlButton.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:4k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // XTPControlButton.h : interface for the CXTPControlButton class.
  2. //
  3. // This file is a part of the XTREME COMMANDBARS MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. //{{AFX_CODEJOCK_PRIVATE
  21. #if !defined(__XTPCONTROLBUTTON_H__)
  22. #define __XTPCONTROLBUTTON_H__
  23. //}}AFX_CODEJOCK_PRIVATE
  24. #if _MSC_VER >= 1000
  25. #pragma once
  26. #endif // _MSC_VER >= 1000
  27. #include "XTPControl.h"
  28. //===========================================================================
  29. // Summary:
  30. //     CXTPControlButton is a CXTPControl derived class.
  31. //     It represents a button control.
  32. //===========================================================================
  33. class _XTP_EXT_CLASS CXTPControlButton : public CXTPControl
  34. {
  35. public:
  36. //-----------------------------------------------------------------------
  37. // Summary:
  38. //     Constructs a CXTPControlButton object
  39. //-----------------------------------------------------------------------
  40. CXTPControlButton();
  41. //-----------------------------------------------------------------------
  42. // Summary:
  43. //     Destroys a CXTPControlButton object, handles cleanup and deallocation
  44. //-----------------------------------------------------------------------
  45. virtual ~CXTPControlButton();
  46. public:
  47. //-----------------------------------------------------------------------
  48. // Summary:
  49. //     Reads or writes this object from or to an archive.
  50. // Parameters:
  51. //     pPX - A CXTPPropExchange object to serialize to or from.
  52. //----------------------------------------------------------------------
  53. void DoPropExchange(CXTPPropExchange* pPX);
  54. protected:
  55. //-----------------------------------------------------------------------
  56. // Summary:
  57. //     This method is called when the user clicks the control.
  58. // Parameters:
  59. //     bKeyboard - TRUE if the control is selected using the keyboard.
  60. //     pt        - Mouse cursor position.
  61. //-----------------------------------------------------------------------
  62. virtual void OnClick(BOOL bKeyboard = FALSE, CPoint pt = CPoint(0, 0));
  63. //-----------------------------------------------------------------------
  64. // Summary:
  65. //     This member is called when the user releases the left mouse button.
  66. // Parameters:
  67. //     point - Specifies the x- and y-coordinate of the cursor.
  68. //-----------------------------------------------------------------------
  69. virtual void OnLButtonUp(CPoint point);
  70. //-----------------------------------------------------------------------
  71. // Summary:
  72. //     This method is called to copy the control.
  73. // Parameters:
  74. //     pControl - Points to a source CXTPControl object
  75. //     bRecursive - TRUE to copy recursively.
  76. //-----------------------------------------------------------------------
  77. virtual void Copy(CXTPControl* pControl, BOOL bRecursive = FALSE);
  78. private:
  79. DECLARE_XTP_CONTROL(CXTPControlButton)
  80. };
  81. //////////////////////////////////////////////////////////////////////////
  82. #endif // #if !defined(__XTPCONTROLBUTTON_H__)