Add missing wxPropertySheetDialog methods and fix a typo.
This commit is contained in:
@@ -106,7 +106,7 @@ public:
|
||||
virtual wxWindow* GetContentWindow() const wxOVERRIDE;
|
||||
|
||||
// Set and get the inner sizer
|
||||
void SetInnerSize(wxSizer* sizer) { m_innerSizer = sizer; }
|
||||
void SetInnerSizer(wxSizer* sizer) { m_innerSizer = sizer; }
|
||||
wxSizer* GetInnerSizer() const { return m_innerSizer ; }
|
||||
|
||||
// Set and get the book style
|
||||
|
@@ -107,6 +107,11 @@ enum wxPropertySheetDialogFlags
|
||||
class wxPropertySheetDialog : public wxDialog
|
||||
{
|
||||
public:
|
||||
/**
|
||||
Default constructor. Call Create if using this form of constructor.
|
||||
*/
|
||||
wxPropertySheetDialog();
|
||||
|
||||
/**
|
||||
Constructor.
|
||||
*/
|
||||
@@ -159,6 +164,11 @@ public:
|
||||
*/
|
||||
wxSizer* GetInnerSizer() const;
|
||||
|
||||
/**
|
||||
Set the inner sizer that contains the book control and button sizer.
|
||||
*/
|
||||
void SetInnerSizer(wxSizer* sizer);
|
||||
|
||||
/**
|
||||
Returns the sheet style.
|
||||
|
||||
@@ -186,5 +196,31 @@ public:
|
||||
It is a bit list of the ::wxPropertySheetDialogFlags values.
|
||||
*/
|
||||
void SetSheetStyle(long style);
|
||||
|
||||
|
||||
/**
|
||||
Set the border around the whole dialog
|
||||
*/
|
||||
void SetSheetOuterBorder(int border);
|
||||
|
||||
/**
|
||||
Returns the border around the whole dialog
|
||||
*/
|
||||
int GetSheetOuterBorder() const;
|
||||
|
||||
|
||||
/**
|
||||
Set the border around the book control only.
|
||||
*/
|
||||
void SetSheetInnerBorder(int border);
|
||||
|
||||
/**
|
||||
Returns the border around the book control only.
|
||||
*/
|
||||
int GetSheetInnerBorder() const;
|
||||
|
||||
|
||||
virtual wxWindow* GetContentWindow() const;
|
||||
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user