Start adding some properties for getter/setter methods

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40964 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-09-02 19:46:44 +00:00
parent 5b5d4ef2dd
commit 0eae5d0999
29 changed files with 292 additions and 5 deletions

View File

@@ -166,6 +166,19 @@ wx.NB_HITTEST flags.", "");
static wxVisualAttributes
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
%property(ControlMargin, GetControlMargin, SetControlMargin, doc="See `GetControlMargin` and `SetControlMargin`");
%property(ControlSizer, GetControlSizer, doc="See `GetControlSizer`");
%property(CurrentPage, GetCurrentPage, doc="See `GetCurrentPage`");
%property(FitToCurrentPage, GetFitToCurrentPage, SetFitToCurrentPage, doc="See `GetFitToCurrentPage` and `SetFitToCurrentPage`");
%property(ImageList, GetImageList, SetImageList, doc="See `GetImageList` and `SetImageList`");
%property(InternalBorder, GetInternalBorder, SetInternalBorder, doc="See `GetInternalBorder` and `SetInternalBorder`");
%property(Page, GetPage, doc="See `GetPage`");
%property(PageCount, GetPageCount, doc="See `GetPageCount`");
%property(PageImage, GetPageImage, SetPageImage, doc="See `GetPageImage` and `SetPageImage`");
%property(PageText, GetPageText, SetPageText, doc="See `GetPageText` and `SetPageText`");
%property(Selection, GetSelection, SetSelection, doc="See `GetSelection` and `SetSelection`");
};
@@ -182,6 +195,10 @@ public:
// the page that was selected before the change (-1 if none)
int GetOldSelection() const;
void SetOldSelection(int nOldSel);
%property(OldSelection, GetOldSelection, SetOldSelection, doc="See `GetOldSelection` and `SetOldSelection`");
%property(Selection, GetSelection, SetSelection, doc="See `GetSelection` and `SetSelection`");
};
@@ -423,6 +440,9 @@ public:
wxChoice* GetChoiceCtrl() const;
virtual bool DeleteAllPages();
%property(ChoiceCtrl, GetChoiceCtrl, doc="See `GetChoiceCtrl`");
};