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:
Robert Roebling
1999-08-13 17:32:30 +00:00
parent 4cb122de97
commit 27ea1d8aae
7 changed files with 217 additions and 90 deletions

View File

@@ -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__