]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/motif/button.h
fixed wxImage->wxBitmap conversion for images with alpha channel
[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 wxButton(wxWindow *parent, wxWindowID id, wxStockItemID stock,
38 const wxString& descriptiveLabel = wxEmptyString,
39 const wxPoint& pos = wxDefaultPosition,
40 long style = 0,
41 const wxValidator& validator = wxDefaultValidator,
42 const wxString& name = wxButtonNameStr)
43 {
44 Create(parent, id, stock, descriptiveLabel, pos, style, validator, name);
45 }
46
47 bool Create(wxWindow *parent, wxWindowID id, const wxString& label,
48 const wxPoint& pos = wxDefaultPosition,
49 const wxSize& size = wxDefaultSize, long style = 0,
50 const wxValidator& validator = wxDefaultValidator,
51 const wxString& name = wxButtonNameStr);
52
53 bool Create(wxWindow *parent, wxWindowID id, wxStockItemID stock,
54 const wxString& descriptiveLabel = wxEmptyString,
55 const wxPoint& pos = wxDefaultPosition,
56 long style = 0,
57 const wxValidator& validator = wxDefaultValidator,
58 const wxString& name = wxButtonNameStr)
59 {
60 return CreateStock(parent, id, stock, descriptiveLabel,
61 pos, style, validator, name);
62 }
63
64 virtual void SetDefault();
65 virtual void Command(wxCommandEvent& event);
66
67 static wxSize GetDefaultSize();
68
69 // Implementation
70private:
71 virtual wxSize DoGetBestSize() const;
72 wxSize OldGetBestSize() const;
73 void SetDefaultShadowThicknessAndResize();
74};
75
76#endif
77// _WX_BUTTON_H_