Added wxSizerFlags::Top() and Bottom()
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44331 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -75,8 +75,10 @@ public:
|
||||
// some shortcuts for Align()
|
||||
wxSizerFlags& Centre() { return Align(wxCENTRE); }
|
||||
wxSizerFlags& Center() { return Centre(); }
|
||||
wxSizerFlags& Top() { return Align(wxALIGN_TOP); }
|
||||
wxSizerFlags& Left() { return Align(wxALIGN_LEFT); }
|
||||
wxSizerFlags& Right() { return Align(wxALIGN_RIGHT); }
|
||||
wxSizerFlags& Bottom() { return Align(wxALIGN_BOTTOM); }
|
||||
|
||||
// default border size used by Border() below
|
||||
static int GetDefaultBorder()
|
||||
|
Reference in New Issue
Block a user