wxControl *, GetPickerCtrl(),
"", "");
+
+ %property(InternalMargin, GetInternalMargin, SetInternalMargin, doc="See `GetInternalMargin` and `SetInternalMargin`");
+ %property(PickerCtrl, GetPickerCtrl, doc="See `GetPickerCtrl`");
+ %property(PickerCtrlProportion, GetPickerCtrlProportion, SetPickerCtrlProportion, doc="See `GetPickerCtrlProportion` and `SetPickerCtrlProportion`");
+ %property(TextCtrl, GetTextCtrl, doc="See `GetTextCtrl`");
+ %property(TextCtrlProportion, GetTextCtrlProportion, SetTextCtrlProportion, doc="See `GetTextCtrlProportion` and `SetTextCtrlProportion`");
+
+ %property(TextCtrlGrowable, IsTextCtrlGrowable, SetTextCtrlGrowable, doc="See `IsTextCtrlGrowable` and `SetTextCtrlGrowable`");
+ %property(PickerCtrlGrowable, IsPickerCtrlGrowable, SetPickerCtrlGrowable, doc="See `IsPickerCtrlGrowable` and `SetPickerCtrlGrowable`");
+
};
//---------------------------------------------------------------------------
"
Window Styles
-------------
+
====================== ============================================
wx.CLRP_DEFAULT Default style.
wx.CLRP_USE_TEXTCTRL Creates a text control to the left of the
Events
------
+
======================== ==========================================
EVT_COLOURPICKER_CHANGED The user changed the colour selected in the
control either using the button or using the
void , SetColour(const wxColour& col),
"Set the displayed colour.", "");
+ %property(Colour, GetColour, SetColour, doc="See `GetColour` and `SetColour`");
};
wxColour GetColour() const;
void SetColour(const wxColour &c);
+
+ %property(Colour, GetColour, SetColour, doc="See `GetColour` and `SetColour`");
};
// Returns the filtered value currently placed in the text control (if present).
wxString GetTextCtrlValue() const;
+ %property(Path, GetPath, SetPath, doc="See `GetPath` and `SetPath`");
+ %property(TextCtrlValue, GetTextCtrlValue, doc="See `GetTextCtrlValue`");
};
// Returns the filtered value currently placed in the text control (if present).
wxString GetTextCtrlValue() const;
+
+ %property(Path, GetPath, SetPath, doc="See `GetPath` and `SetPath`");
+ %property(TextCtrlValue, GetTextCtrlValue, doc="See `GetTextCtrlValue`");
+
};
wxString GetPath() const { return m_path; }
void SetPath(const wxString &p) { m_path = p; }
+
+ %property(Path, GetPath, SetPath, doc="See `GetPath` and `SetPath`");
};
wxFontPickerCtrl(wxWindow *parent,
wxWindowID id=-1,
- const wxFont& initial = *wxNORMAL_FONT,
+ const wxFont& initial = wxNullFont,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxFNTP_DEFAULT_STYLE,
bool Create(wxWindow *parent,
wxWindowID id=-1,
- const wxFont& initial = *wxNORMAL_FONT,
+ const wxFont& initial = wxNullFont,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxFNTP_DEFAULT_STYLE,
// set/get the max pointsize
void SetMaxPointSize(unsigned int max);
unsigned int GetMaxPointSize() const;
+
+ %property(MaxPointSize, GetMaxPointSize, SetMaxPointSize, doc="See `GetMaxPointSize` and `SetMaxPointSize`");
+ %property(SelectedFont, GetSelectedFont, SetSelectedFont, doc="See `GetSelectedFont` and `SetSelectedFont`");
};
wxFont GetFont() const;
void SetFont(const wxFont &c);
+
+ %property(Font, GetFont, SetFont, doc="See `GetFont` and `SetFont`");
};
//---------------------------------------------------------------------------