2004-10-19 13:40:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/palmos/button.h
|
|
|
|
// Purpose: wxButton class
|
2005-01-18 21:14:27 +00:00
|
|
|
// Author: William Osborne - minimal working wxPalmOS port
|
2005-01-24 07:38:52 +00:00
|
|
|
// Modified by: Wlodzimierz ABX Skiba - native wxButton implementation
|
2004-10-19 13:40:30 +00:00
|
|
|
// Created: 10/13/04
|
2005-01-18 21:14:27 +00:00
|
|
|
// RCS-ID: $Id$
|
2005-01-24 07:38:52 +00:00
|
|
|
// Copyright: (c) William Osborne, Wlodzimierz Skiba
|
2004-10-19 13:40:30 +00:00
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_BUTTON_H_
|
|
|
|
#define _WX_BUTTON_H_
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Pushbutton
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxButton : public wxButtonBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxButton() { }
|
|
|
|
wxButton(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
2005-01-24 07:38:52 +00:00
|
|
|
const wxString& label = wxEmptyString,
|
2004-10-19 13:40:30 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxButtonNameStr)
|
|
|
|
{
|
|
|
|
Create(parent, id, label, pos, size, style, validator, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString& label,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxButtonNameStr);
|
|
|
|
|
|
|
|
virtual ~wxButton();
|
|
|
|
|
2007-04-08 22:18:35 +00:00
|
|
|
virtual wxWindow *SetDefault();
|
2004-10-19 13:40:30 +00:00
|
|
|
|
|
|
|
// implementation from now on
|
|
|
|
virtual void Command(wxCommandEvent& event);
|
|
|
|
|
2005-01-31 08:04:44 +00:00
|
|
|
// send a notification event, return true if processed
|
|
|
|
bool SendClickEvent();
|
|
|
|
|
2004-10-19 13:40:30 +00:00
|
|
|
protected:
|
|
|
|
|
|
|
|
// default button handling
|
|
|
|
void SetTmpDefault();
|
|
|
|
void UnsetTmpDefault();
|
|
|
|
|
|
|
|
// set or unset BS_DEFPUSHBUTTON style
|
|
|
|
static void SetDefaultStyle(wxButton *btn, bool on);
|
|
|
|
|
|
|
|
// usually overridden base class virtuals
|
|
|
|
virtual wxSize DoGetBestSize() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxButton)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_BUTTON_H_
|