%rename(SPLASH_NO_TIMEOUT) wxSPLASH_NO_TIMEOUT;
%rename(SplashScreenWindow) wxSplashScreenWindow;
%rename(SplashScreen) wxSplashScreen;
+%rename(SB_NORMAL) wxSB_NORMAL;
+%rename(SB_FLAT) wxSB_FLAT;
+%rename(SB_RAISED) wxSB_RAISED;
%rename(StatusBar) wxStatusBar;
%rename(SP_NOBORDER) wxSP_NOBORDER;
%rename(SP_NOSASH) wxSP_NOSASH;
DocDeclStr(
virtual bool , ChangeMode(const wxVideoMode& mode = wxDefaultVideoMode),
- "Change current mode, return true if succeeded, false otherwise", "");
+ "Changes the video mode of this display to the mode specified in the
+mode parameter.
+
+If wx.DefaultVideoMode is passed in as the mode parameter, the defined
+behaviour is that wx.Display will reset the video mode to the default
+mode used by the display. On Windows, the behavior is normal.
+However, there are differences on other platforms. On Unix variations
+using X11 extensions it should behave as defined, but some
+irregularities may occur.
+
+On wxMac passing in wx.DefaultVideoMode as the mode parameter does
+nothing. This happens because Carbon no longer has access to
+DMUseScreenPrefs, an undocumented function that changed the video mode
+to the system default by using the system's 'scrn' resource.
+
+Returns True if succeeded, False otherwise", "");
DocDeclStr(
%name(RegionFromBitmapColour)wxRegion(const wxBitmap& bmp,
const wxColour& transColour,
int tolerance = 0);
-#ifndef __WXMAC__
%name(RegionFromPoints)wxRegion(int points, wxPoint* points_array,
int fillStyle = wxWINDING_RULE);
-#else
- %extend {
- %name(RegionFromPoints)wxRegion(int points, wxPoint* points_array,
- int fillStyle = wxWINDING_RULE) {
- wxPyRaiseNotImplemented();
- return NULL;
- }
- }
-#endif
~wxRegion();
proportion, flag, border, data);
}
+// virtual void AddSpacer(int size);
+// virtual void AddStretchSpacer(int prop = 1);
DocAStr(Insert,
"Insert(self, int before, item, int proportion=0, int flag=0, int border=0,
}
+// virtual void InsertSpacer(size_t index, int size);
+// virtual void InsertStretchSpacer(size_t index, int prop = 1);
DocAStr(Prepend,
"Prepend(self, item, int proportion=0, int flag=0, int border=0,
proportion, flag, border, data);
}
+// virtual void PrependSpacer(int size);
+// virtual void PrependStretchSpacer(int prop = 1);
DocAStr(Remove,
"Remove(self, item) -> bool",
%newgroup;
+enum {
+ wxSB_NORMAL,
+ wxSB_FLAT,
+ wxSB_RAISED
+};
+
+
+
// wxStatusBar: a window near the bottom of the frame used for status info
MustHaveApp(wxStatusBar);
class wxStatusBar : public wxWindow
// minus the sum of fixed width fields) is divided between the fields with
// negative width according to the abs value of the width (field with width
// -2 grows twice as much as one with width -1 &c)
- virtual void SetStatusWidths(int widths, const int* widths_field); // uses typemap in _toplvl.i
+ virtual void SetStatusWidths(int widths, const int* widths_field);
+
+ // Set the field style. Use either wxSB_NORMAL (default) for a standard 3D
+ // border around a field, wxSB_FLAT for no border around a field, so that it
+ // appears flat or wxSB_POPOUT to make the field appear raised.
+ // Setting field styles only works on wxMSW
+ virtual void SetStatusStyles(int styles, const int* styles_field);
+
+
// Get the position and size of the field's internal bounding rectangle
%extend {
wxRect GetFieldRect(int i) {
};
-
-%typemap(in) (int widths, int* widths_field) {
- $1 = PyList_Size($input);
- $2 = int_LIST_helper($input);
- if ($2 == NULL) SWIG_fail;
-}
-
-%typemap(freearg) (int widths, int* widths_field) {
- if ($2) delete [] $2;
-}
-
-
//---------------------------------------------------------------------------
class wxTopLevelWindow : public wxWindow
- %nokwargs SetSizeHints;
DocStr(SetSizeHints,
"Allows specification of minimum and maximum window sizes, and window
size increments. If a pair of values is not set (or set to -1), the
:see: `GetMinSize`, `GetMaxSize`, `SetMinSize`, `SetMaxSize`
");
- void SetSizeHints( const wxSize& minSize,
- const wxSize& maxSize=wxDefaultSize,
- const wxSize& incSize=wxDefaultSize);
virtual void SetSizeHints( int minW, int minH,
int maxW = -1, int maxH = -1,
int incW = -1, int incH = -1 );
+ %name(SetSizeHintsSz) void SetSizeHints( const wxSize& minSize,
+ const wxSize& maxSize=wxDefaultSize,
+ const wxSize& incSize=wxDefaultSize);
- %nokwargs SetVirtualSizeHints;
DocStr(SetVirtualSizeHints,
"Allows specification of minimum and maximum virtual window sizes. If a
pair of values is not set (or set to -1), the default values will be
used. If this function is called, the user will not be able to size
the virtual area of the window outside the given bounds.", "");
- void SetVirtualSizeHints( const wxSize& minSize,
- const wxSize& maxSize=wxDefaultSize);
virtual void SetVirtualSizeHints( int minW, int minH,
int maxW = -1, int maxH = -1 );
+ %name(SetVirtualSizeHintsSz)void SetVirtualSizeHints(
+ const wxSize& minSize, const wxSize& maxSize=wxDefaultSize);
+
+
DocDeclStr(
virtual wxSize , GetMaxSize() const,
//----------------------------------------------------------------------
// Typemaps to convert a list of items to an int (size) and an array
+%define MAKE_INT_ARRAY_TYPEMAPS(NAME, ARR_NAME)
+ %typemap(in) (int NAME, int* ARR_NAME) {
+ $1 = PyList_Size($input);
+ $2 = int_LIST_helper($input);
+ if ($2 == NULL) SWIG_fail;
+ }
+
+ %typemap(freearg) (int NAME, int* ARR_NAME) {
+ if ($2) delete [] $2;
+ }
+%enddef
+
+MAKE_INT_ARRAY_TYPEMAPS(widths, widths_field)
+MAKE_INT_ARRAY_TYPEMAPS(styles, styles_field)
+
+
+
+// Same things for a wxString
%typemap(in) (int choices, wxString* choices_array ) {
$1 = PyList_Size($input);
$2 = wxString_LIST_helper($input);
}
+
//---------------------------------------------------------------------------
// wxString typemaps