Added wxStaticBoxSizer,
Makefile updates, Improved look of wxGenericPageSetupDialog git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3369 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -26,9 +26,12 @@
|
||||
// classes
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
class wxStaticBox;
|
||||
|
||||
class wxSizerItem;
|
||||
class wxSizer;
|
||||
class wxBoxSizer;
|
||||
class wxStaticBoxSizer;
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
// wxSizerItem
|
||||
@@ -138,5 +141,24 @@ protected:
|
||||
int m_fixedHeight;
|
||||
};
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
// wxStaticBoxSizer
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
class WXDLLEXPORT wxStaticBoxSizer: public wxBoxSizer
|
||||
{
|
||||
public:
|
||||
wxStaticBoxSizer( wxStaticBox *box, int orient );
|
||||
|
||||
void RecalcSizes();
|
||||
wxSize CalcMin();
|
||||
|
||||
wxStaticBox *GetStaticBox()
|
||||
{ return m_staticBox; }
|
||||
|
||||
protected:
|
||||
wxStaticBox *m_staticBox;
|
||||
};
|
||||
|
||||
#endif
|
||||
// __WXSIZER_H__
|
||||
|
Reference in New Issue
Block a user