2001-06-26 20:59:19 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/univ/button.h
|
|
|
|
// Purpose: wxButton for wxUniversal
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 15.08.00
|
2001-07-02 19:42:27 +00:00
|
|
|
// Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2001-06-26 20:59:19 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_UNIV_BUTTON_H_
|
|
|
|
#define _WX_UNIV_BUTTON_H_
|
|
|
|
|
|
|
|
#include "wx/bitmap.h"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// the actions supported by this control
|
|
|
|
// ----------------------------------------------------------------------------
|
2014-09-23 17:38:47 +00:00
|
|
|
//checkbox.cpp needed it, so not move it to anybutton.h
|
2009-07-23 20:30:22 +00:00
|
|
|
#define wxACTION_BUTTON_TOGGLE wxT("toggle") // press/release the button
|
|
|
|
#define wxACTION_BUTTON_PRESS wxT("press") // press the button
|
|
|
|
#define wxACTION_BUTTON_RELEASE wxT("release") // release the button
|
|
|
|
#define wxACTION_BUTTON_CLICK wxT("click") // generate button click event
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxButton: a push button
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxButton : public wxButtonBase
|
2001-06-26 20:59:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2004-01-15 13:49:22 +00:00
|
|
|
wxButton() { Init(); }
|
2001-06-26 20:59:19 +00:00
|
|
|
wxButton(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxBitmap& bitmap,
|
2004-08-30 14:42:51 +00:00
|
|
|
const wxString& label = wxEmptyString,
|
2001-06-26 20:59:19 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
2004-01-15 13:49:22 +00:00
|
|
|
const wxString& name = wxButtonNameStr)
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
|
|
|
|
Create(parent, id, bitmap, label, pos, size, style, validator, name);
|
|
|
|
}
|
2006-09-14 19:36:47 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
wxButton(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
2004-08-30 14:42:51 +00:00
|
|
|
const wxString& label = wxEmptyString,
|
2001-06-26 20:59:19 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
2004-01-15 13:49:22 +00:00
|
|
|
const wxString& name = wxButtonNameStr)
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
|
|
|
|
Create(parent, id, label, pos, size, style, validator, name);
|
|
|
|
}
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
2004-08-30 14:42:51 +00:00
|
|
|
const wxString& label = wxEmptyString,
|
2001-06-26 20:59:19 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxButtonNameStr)
|
|
|
|
{
|
|
|
|
return Create(parent, id, wxNullBitmap, label,
|
|
|
|
pos, size, style, validator, name);
|
|
|
|
}
|
2006-09-14 19:36:47 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxBitmap& bitmap,
|
2004-08-30 14:42:51 +00:00
|
|
|
const wxString& label = wxEmptyString,
|
2001-06-26 20:59:19 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxButtonNameStr);
|
|
|
|
|
|
|
|
virtual ~wxButton();
|
|
|
|
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual wxWindow *SetDefault() wxOVERRIDE;
|
2001-06-26 20:59:19 +00:00
|
|
|
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual bool IsPressed() const wxOVERRIDE { return m_isPressed; }
|
|
|
|
virtual bool IsDefault() const wxOVERRIDE { return m_isDefault; }
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
// wxButton actions
|
2014-09-23 17:38:47 +00:00
|
|
|
virtual void Click() wxOVERRIDE;
|
2006-02-08 21:47:09 +00:00
|
|
|
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual bool CanBeHighlighted() const wxOVERRIDE { return true; }
|
2006-02-08 21:47:09 +00:00
|
|
|
|
2006-09-14 19:36:47 +00:00
|
|
|
|
|
|
|
|
2006-02-08 21:47:09 +00:00
|
|
|
protected:
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual void DoSetBitmap(const wxBitmap& bitmap, State which) wxOVERRIDE;
|
2014-09-23 17:40:22 +00:00
|
|
|
virtual wxBitmap DoGetBitmap(State which) const wxOVERRIDE;
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual void DoSetBitmapMargins(wxCoord x, wxCoord y) wxOVERRIDE;
|
2009-06-14 22:55:24 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
// common part of all ctors
|
|
|
|
void Init();
|
|
|
|
|
|
|
|
private:
|
2015-04-23 11:49:01 +00:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxButton);
|
2001-06-26 20:59:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_UNIV_BUTTON_H_
|
|
|
|
|