]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/_statctrls.i
Do not check for Xinerama when building wxCocoa
[wxWidgets.git] / wxPython / src / _statctrls.i
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: _statctrls.i
3 // Purpose: SWIG interface defs for wxStaticBox, wxStaticLine,
4 // wxStaticText, wxStaticBitmap
5 //
6 // Author: Robin Dunn
7 //
8 // Created: 10-June-1998
9 // RCS-ID: $Id$
10 // Copyright: (c) 2003 by Total Control Software
11 // Licence: wxWindows license
12 /////////////////////////////////////////////////////////////////////////////
13
14 // Not a %module
15
16
17 //---------------------------------------------------------------------------
18
19 MAKE_CONST_WXSTRING(StaticBitmapNameStr);
20 MAKE_CONST_WXSTRING(StaticBoxNameStr);
21 MAKE_CONST_WXSTRING(StaticTextNameStr);
22
23 //---------------------------------------------------------------------------
24 %newgroup
25
26 MustHaveApp(wxStaticBox);
27
28 class wxStaticBox : public wxControl {
29 public:
30 %pythonAppend wxStaticBox "self._setOORInfo(self)"
31 %pythonAppend wxStaticBox() ""
32
33 wxStaticBox(wxWindow* parent, wxWindowID id, const wxString& label,
34 const wxPoint& pos = wxDefaultPosition,
35 const wxSize& size = wxDefaultSize,
36 long style = 0,
37 const wxString& name = wxPyStaticBoxNameStr);
38 %name(PreStaticBox)wxStaticBox();
39
40 bool Create(wxWindow* parent, wxWindowID id, const wxString& label,
41 const wxPoint& pos = wxDefaultPosition,
42 const wxSize& size = wxDefaultSize,
43 long style = 0,
44 const wxString& name = wxPyStaticBoxNameStr);
45
46 static wxVisualAttributes
47 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
48 };
49
50
51 //---------------------------------------------------------------------------
52 %newgroup
53
54
55 MustHaveApp(wxStaticLine);
56
57 class wxStaticLine : public wxControl {
58 public:
59 %pythonAppend wxStaticLine "self._setOORInfo(self)"
60 %pythonAppend wxStaticLine() ""
61
62 wxStaticLine( wxWindow *parent, wxWindowID id,
63 const wxPoint &pos = wxDefaultPosition,
64 const wxSize &size = wxDefaultSize,
65 long style = wxLI_HORIZONTAL,
66 const wxString& name = wxPyStaticTextNameStr);
67 %name(PreStaticLine)wxStaticLine();
68
69 bool Create( wxWindow *parent, wxWindowID id,
70 const wxPoint &pos = wxDefaultPosition,
71 const wxSize &size = wxDefaultSize,
72 long style = wxLI_HORIZONTAL,
73 const wxString& name = wxPyStaticTextNameStr);
74
75 // is the line vertical?
76 bool IsVertical() const;
77
78 // get the default size for the "lesser" dimension of the static line
79 static int GetDefaultSize();
80
81 static wxVisualAttributes
82 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
83 };
84
85
86 //---------------------------------------------------------------------------
87 %newgroup
88
89 MustHaveApp(wxStaticText);
90
91 class wxStaticText : public wxControl {
92 public:
93 %pythonAppend wxStaticText "self._setOORInfo(self)"
94 %pythonAppend wxStaticText() ""
95
96 wxStaticText(wxWindow* parent, wxWindowID id, const wxString& label,
97 const wxPoint& pos = wxDefaultPosition,
98 const wxSize& size = wxDefaultSize,
99 long style = 0,
100 const wxString& name = wxPyStaticTextNameStr);
101 %name(PreStaticText)wxStaticText();
102
103 bool Create(wxWindow* parent, wxWindowID id, const wxString& label,
104 const wxPoint& pos = wxDefaultPosition,
105 const wxSize& size = wxDefaultSize,
106 long style = 0,
107 const wxString& name = wxPyStaticTextNameStr);
108
109 static wxVisualAttributes
110 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
111 };
112
113 //---------------------------------------------------------------------------
114 %newgroup
115
116 MustHaveApp(wxStaticBitmap);
117
118 class wxStaticBitmap : public wxControl {
119 public:
120 %pythonAppend wxStaticBitmap "self._setOORInfo(self)"
121 %pythonAppend wxStaticBitmap() ""
122
123 wxStaticBitmap(wxWindow* parent, wxWindowID id,
124 const wxBitmap& bitmap,
125 const wxPoint& pos = wxDefaultPosition,
126 const wxSize& size = wxDefaultSize,
127 long style = 0,
128 const wxString& name = wxPyStaticBitmapNameStr);
129 %name(PreStaticBitmap)wxStaticBitmap();
130
131 bool Create(wxWindow* parent, wxWindowID id,
132 const wxBitmap& bitmap,
133 const wxPoint& pos = wxDefaultPosition,
134 const wxSize& size = wxDefaultSize,
135 long style = 0,
136 const wxString& name = wxPyStaticBitmapNameStr);
137
138 wxBitmap GetBitmap();
139 void SetBitmap(const wxBitmap& bitmap);
140 void SetIcon(const wxIcon& icon);
141
142 static wxVisualAttributes
143 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
144 };
145
146 //---------------------------------------------------------------------------
147 //---------------------------------------------------------------------------