1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: button.h
|
|
|
|
// Purpose: wxButton class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
1998-08-07 23:52:45 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
1999-06-17 21:21:52 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-07 23:52:45 +00:00
|
|
|
#ifndef _WX_BUTTON_H_
|
|
|
|
#define _WX_BUTTON_H_
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "button.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/control.h"
|
|
|
|
|
1999-06-10 18:12:13 +00:00
|
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxButtonNameStr;
|
1998-05-20 14:12:05 +00:00
|
|
|
|
1999-06-17 21:21:52 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:12:05 +00:00
|
|
|
// Pushbutton
|
1999-06-17 21:21:52 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
class WXDLLEXPORT wxButton : public wxControl
|
1998-05-20 14:12:05 +00:00
|
|
|
{
|
1999-02-22 11:01:13 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxButton)
|
|
|
|
|
|
|
|
public:
|
|
|
|
wxButton() { }
|
|
|
|
wxButton(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)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
1999-06-17 21:21:52 +00:00
|
|
|
virtual ~wxButton();
|
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
virtual void SetDefault();
|
1999-06-17 21:21:52 +00:00
|
|
|
|
1999-07-10 21:51:58 +00:00
|
|
|
static wxSize GetDefaultSize();
|
|
|
|
|
1999-06-17 21:21:52 +00:00
|
|
|
// implementation from now on
|
1999-02-22 11:01:13 +00:00
|
|
|
virtual void Command(wxCommandEvent& event);
|
1999-10-28 01:17:35 +00:00
|
|
|
virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
|
1999-02-22 11:01:13 +00:00
|
|
|
virtual bool MSWCommand(WXUINT param, WXWORD id);
|
|
|
|
|
1999-12-21 01:44:45 +00:00
|
|
|
#ifdef __WIN32__
|
|
|
|
// coloured buttons support
|
|
|
|
virtual bool SetBackgroundColour(const wxColour &colour);
|
|
|
|
virtual bool SetForegroundColour(const wxColour &colour);
|
|
|
|
|
|
|
|
virtual bool MSWOnDraw(WXDRAWITEMSTRUCT *item);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void MakeOwnerDrawn();
|
|
|
|
#endif // __WIN32__
|
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
protected:
|
1999-06-17 21:21:52 +00:00
|
|
|
// send a notification event, return TRUE if processed
|
|
|
|
bool SendClickEvent();
|
|
|
|
|
1999-11-19 21:01:20 +00:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
1998-05-20 14:12:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-08-07 23:52:45 +00:00
|
|
|
// _WX_BUTTON_H_
|