git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54650 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			97 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /////////////////////////////////////////////////////////////////////////////
 | |
| // Name:        wx/msw/bmpbuttn.h
 | |
| // Purpose:     wxBitmapButton class
 | |
| // Author:      Julian Smart
 | |
| // Modified by:
 | |
| // Created:     01/02/97
 | |
| // RCS-ID:      $Id$
 | |
| // Copyright:   (c) Julian Smart
 | |
| // Licence:     wxWindows licence
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| #ifndef _WX_BMPBUTTN_H_
 | |
| #define _WX_BMPBUTTN_H_
 | |
| 
 | |
| #include "wx/button.h"
 | |
| #include "wx/bitmap.h"
 | |
| #include "wx/brush.h"
 | |
| 
 | |
| class WXDLLIMPEXP_CORE wxBitmapButton : public wxBitmapButtonBase
 | |
| {
 | |
| public:
 | |
|     wxBitmapButton() { Init(); }
 | |
| 
 | |
|     wxBitmapButton(wxWindow *parent,
 | |
|                    wxWindowID id,
 | |
|                    const wxBitmap& bitmap,
 | |
|                    const wxPoint& pos = wxDefaultPosition,
 | |
|                    const wxSize& size = wxDefaultSize,
 | |
|                    long style = wxBU_AUTODRAW,
 | |
|                    const wxValidator& validator = wxDefaultValidator,
 | |
|                    const wxString& name = wxButtonNameStr)
 | |
|     {
 | |
|         Init();
 | |
| 
 | |
|         Create(parent, id, bitmap, pos, size, style, validator, name);
 | |
|     }
 | |
| 
 | |
|     bool Create(wxWindow *parent,
 | |
|                 wxWindowID id,
 | |
|                 const wxBitmap& bitmap,
 | |
|                 const wxPoint& pos = wxDefaultPosition,
 | |
|                 const wxSize& size = wxDefaultSize,
 | |
|                 long style = wxBU_AUTODRAW,
 | |
|                 const wxValidator& validator = wxDefaultValidator,
 | |
|                 const wxString& name = wxButtonNameStr);
 | |
| 
 | |
|     // override some base class methods to automatically synthesize the
 | |
|     // disabled bitmap if it wasn't set by the user
 | |
|     virtual void SetBitmapLabel(const wxBitmap& bitmap);
 | |
|     virtual void SetBitmapFocus(const wxBitmap& focus);
 | |
|     virtual void SetBitmapDisabled(const wxBitmap& disabled);
 | |
|     virtual void SetBitmapHover(const wxBitmap& hover);
 | |
| 
 | |
|     // Implementation
 | |
|     virtual bool SetBackgroundColour(const wxColour& colour);
 | |
|     virtual bool MSWOnDraw(WXDRAWITEMSTRUCT *item);
 | |
|     virtual void DrawFace( WXHDC dc, int left, int top, int right, int bottom, bool sel );
 | |
|     virtual void DrawButtonFocus( WXHDC dc, int left, int top, int right, int bottom, bool sel );
 | |
|     virtual void DrawButtonDisable( WXHDC dc, int left, int top, int right, int bottom, bool with_marg );
 | |
| 
 | |
| protected:
 | |
|     // common part of all ctors
 | |
|     void Init()
 | |
|     {
 | |
|         m_disabledSetByUser =
 | |
|         m_hoverSetByUser = false;
 | |
|     }
 | |
| 
 | |
|     // reimplement some base class virtuals
 | |
|     virtual wxSize DoGetBestSize() const;
 | |
|     virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
 | |
| 
 | |
| 
 | |
|     // invalidate m_brushDisabled when system colours change
 | |
|     void OnSysColourChanged(wxSysColourChangedEvent& event);
 | |
| 
 | |
|     // change the currently bitmap if we have a hover one
 | |
|     void OnMouseEnterOrLeave(wxMouseEvent& event);
 | |
| 
 | |
| 
 | |
|     // the brush we use to draw disabled buttons
 | |
|     wxBrush m_brushDisabled;
 | |
| 
 | |
|     // true if m_bmpDisabled was set by user, false if we created it ourselves
 | |
|     // from m_bmpNormal
 | |
|     bool m_disabledSetByUser;
 | |
| 
 | |
|     // true if m_bmpHover was set by user, false if it was set from m_bmpFocus
 | |
|     bool m_hoverSetByUser;
 | |
| 
 | |
| 
 | |
|     DECLARE_EVENT_TABLE()
 | |
|     DECLARE_DYNAMIC_CLASS_NO_COPY(wxBitmapButton)
 | |
| };
 | |
| 
 | |
| #endif // _WX_BMPBUTTN_H_
 |