1998-05-20 10:12:05 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2001-06-26 16:59:19 -04:00
|
|
|
// Name: wx/msw/button.h
|
1998-05-20 10:12:05 -04:00
|
|
|
// Purpose: wxButton class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
1998-08-07 19:52:45 -04:00
|
|
|
// Copyright: (c) Julian Smart
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:12:05 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-07 19:52:45 -04:00
|
|
|
#ifndef _WX_BUTTON_H_
|
|
|
|
#define _WX_BUTTON_H_
|
1998-05-20 10:12:05 -04:00
|
|
|
|
1999-06-17 17:21:52 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 10:12:05 -04:00
|
|
|
// Pushbutton
|
1999-06-17 17:21:52 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxButton : public wxButtonBase
|
1998-05-20 10:12:05 -04:00
|
|
|
{
|
1999-02-22 06:01:13 -05:00
|
|
|
public:
|
2009-06-15 00:23:54 -04:00
|
|
|
wxButton() { m_imageData = NULL; }
|
2001-06-26 16:59:19 -04:00
|
|
|
wxButton(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
2004-08-30 10:42:51 -04:00
|
|
|
const wxString& label = wxEmptyString,
|
2001-06-26 16:59:19 -04:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxButtonNameStr)
|
1999-02-22 06:01:13 -05:00
|
|
|
{
|
2009-06-15 00:23:54 -04:00
|
|
|
m_imageData = NULL;
|
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
Create(parent, id, label, pos, size, style, validator, name);
|
|
|
|
}
|
2004-08-19 13:39:28 -04:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
2004-08-30 10:42:51 -04:00
|
|
|
const wxString& label = wxEmptyString,
|
2001-06-26 16:59:19 -04:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxButtonNameStr);
|
1999-02-22 06:01:13 -05:00
|
|
|
|
1999-06-17 17:21:52 -04:00
|
|
|
virtual ~wxButton();
|
|
|
|
|
2007-04-08 18:18:35 -04:00
|
|
|
virtual wxWindow *SetDefault();
|
1999-06-17 17:21:52 -04:00
|
|
|
|
2007-07-29 09:38:34 -04:00
|
|
|
// overridden base class methods
|
|
|
|
virtual void SetLabel(const wxString& label);
|
|
|
|
virtual bool SetBackgroundColour(const wxColour &colour);
|
|
|
|
virtual bool SetForegroundColour(const wxColour &colour);
|
|
|
|
|
1999-06-17 17:21:52 -04:00
|
|
|
// implementation from now on
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual void Command(wxCommandEvent& event);
|
2004-02-25 05:45:02 -05:00
|
|
|
virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual bool MSWCommand(WXUINT param, WXWORD id);
|
|
|
|
|
1999-12-20 20:44:45 -05:00
|
|
|
virtual bool MSWOnDraw(WXDRAWITEMSTRUCT *item);
|
2006-02-08 16:47:09 -05:00
|
|
|
virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
|
1999-12-20 20:44:45 -05:00
|
|
|
|
2007-08-07 15:22:43 -04:00
|
|
|
// returns true if the platform should explicitly apply a theme border
|
|
|
|
virtual bool CanApplyThemeBorder() const { return false; }
|
|
|
|
|
1999-12-20 20:44:45 -05:00
|
|
|
private:
|
|
|
|
void MakeOwnerDrawn();
|
|
|
|
|
1999-02-22 06:01:13 -05:00
|
|
|
protected:
|
2004-08-19 13:39:28 -04:00
|
|
|
// send a notification event, return true if processed
|
1999-06-17 17:21:52 -04:00
|
|
|
bool SendClickEvent();
|
|
|
|
|
2002-05-11 18:31:05 -04:00
|
|
|
// default button handling
|
|
|
|
void SetTmpDefault();
|
|
|
|
void UnsetTmpDefault();
|
|
|
|
|
2002-08-22 16:34:29 -04:00
|
|
|
// set or unset BS_DEFPUSHBUTTON style
|
|
|
|
static void SetDefaultStyle(wxButton *btn, bool on);
|
2002-05-11 18:31:05 -04:00
|
|
|
|
2002-02-19 19:02:51 -05:00
|
|
|
// usually overridden base class virtuals
|
1999-11-19 16:01:20 -05:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
2001-06-26 16:59:19 -04:00
|
|
|
|
2009-06-15 00:23:54 -04:00
|
|
|
virtual wxBitmap DoGetBitmap(State which) const;
|
|
|
|
virtual void DoSetBitmap(const wxBitmap& bitmap, State which);
|
2009-06-15 19:10:16 -04:00
|
|
|
virtual wxSize DoGetBitmapMargins() const;
|
2009-06-15 00:23:54 -04:00
|
|
|
virtual void DoSetBitmapMargins(wxCoord x, wxCoord y);
|
|
|
|
virtual void DoSetBitmapPosition(wxDirection dir);
|
|
|
|
|
|
|
|
class wxButtonImageData *m_imageData;
|
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
private:
|
2003-07-21 20:24:07 -04:00
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxButton)
|
1998-05-20 10:12:05 -04:00
|
|
|
};
|
|
|
|
|
2007-07-29 09:38:34 -04:00
|
|
|
#endif // _WX_BUTTON_H_
|