]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/motif/button.h
implemented IsModified() and DiscardEdits()
[wxWidgets.git] / include / wx / motif / button.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: button.h
3// Purpose: wxButton class
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_BUTTON_H_
13#define _WX_BUTTON_H_
14
15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16#pragma interface "button.h"
17#endif
18
19// Pushbutton
20class WXDLLEXPORT wxButton: public wxButtonBase
21{
22 DECLARE_DYNAMIC_CLASS(wxButton)
23
24public:
25 wxButton() { }
26 wxButton(wxWindow *parent,
27 wxWindowID id,
28 const wxString& label,
29 const wxPoint& pos = wxDefaultPosition,
30 const wxSize& size = wxDefaultSize, long style = 0,
31 const wxValidator& validator = wxDefaultValidator,
32 const wxString& name = wxButtonNameStr)
33 {
34 Create(parent, id, label, pos, size, style, validator, name);
35 }
36
37 bool Create(wxWindow *parent, wxWindowID id, const wxString& label,
38 const wxPoint& pos = wxDefaultPosition,
39 const wxSize& size = wxDefaultSize, long style = 0,
40 const wxValidator& validator = wxDefaultValidator,
41 const wxString& name = wxButtonNameStr);
42
43 virtual void SetDefault();
44 virtual void Command(wxCommandEvent& event);
45
46 static wxSize GetDefaultSize();
47
48 // Implementation
49private:
50 virtual wxSize DoGetBestSize() const;
51 void SetDefaultShadowThicknessAndResize();
52};
53
54#endif
55// _WX_BUTTON_H_