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
|
|
|
|
// RCS-ID: $Id$
|
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_
|
|
|
|
|
2007-07-09 10:09:52 +00:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxInputHandler;
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
#include "wx/bitmap.h"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// the actions supported by this control
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
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();
|
|
|
|
|
2007-04-08 22:18:35 +00:00
|
|
|
virtual wxWindow *SetDefault();
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
virtual bool IsPressed() const { return m_isPressed; }
|
|
|
|
virtual bool IsDefault() const { return m_isDefault; }
|
|
|
|
|
|
|
|
// wxButton actions
|
2006-05-24 17:17:27 +00:00
|
|
|
virtual void Toggle();
|
2001-06-26 20:59:19 +00:00
|
|
|
virtual void Press();
|
|
|
|
virtual void Release();
|
|
|
|
virtual void Click();
|
|
|
|
|
|
|
|
virtual bool PerformAction(const wxControlAction& action,
|
|
|
|
long numArg = -1,
|
|
|
|
const wxString& strArg = wxEmptyString);
|
2006-02-08 21:47:09 +00:00
|
|
|
|
|
|
|
virtual bool CanBeHighlighted() const { return true; }
|
|
|
|
|
2006-09-14 19:36:47 +00:00
|
|
|
static wxInputHandler *GetStdInputHandler(wxInputHandler *handlerDef);
|
|
|
|
virtual wxInputHandler *DoGetStdInputHandler(wxInputHandler *handlerDef)
|
|
|
|
{
|
|
|
|
return GetStdInputHandler(handlerDef);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-02-08 21:47:09 +00:00
|
|
|
protected:
|
2001-06-26 20:59:19 +00:00
|
|
|
virtual wxSize DoGetBestClientSize() const;
|
2006-09-14 19:36:47 +00:00
|
|
|
|
2002-04-14 14:42:43 +00:00
|
|
|
virtual bool DoDrawBackground(wxDC& dc);
|
2001-06-26 20:59:19 +00:00
|
|
|
virtual void DoDraw(wxControlRenderer *renderer);
|
|
|
|
|
2009-06-14 22:55:24 +00:00
|
|
|
virtual void DoSetBitmap(const wxBitmap& bitmap, State which);
|
|
|
|
virtual void DoSetBitmapMargins(wxCoord x, wxCoord y);
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
// common part of all ctors
|
|
|
|
void Init();
|
|
|
|
|
|
|
|
// current state
|
|
|
|
bool m_isPressed,
|
|
|
|
m_isDefault;
|
|
|
|
|
|
|
|
// the (optional) image to show and the margins around it
|
|
|
|
wxBitmap m_bitmap;
|
|
|
|
wxCoord m_marginBmpX,
|
|
|
|
m_marginBmpY;
|
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxButton)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_UNIV_BUTTON_H_
|
|
|
|
|