added wxSizerFlags::GetDefaultBorder()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41831 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-10-09 19:32:46 +00:00
parent 62637495c9
commit 2be7beda2d
3 changed files with 31 additions and 10 deletions

View File

@@ -69,6 +69,19 @@ public:
wxSizerFlags& Left() { return Align(wxALIGN_LEFT); }
wxSizerFlags& Right() { return Align(wxALIGN_RIGHT); }
// default border size used by Border() below
static int GetDefaultBorder()
{
#ifdef __SMARTPHONE__
// no borders by default on limited size screen
return 0;
#else // !__SMARTPHONE__
// FIXME: default border size shouldn't be hardcoded and at the very
// least they should depend on the current font size
return 5;
#endif // __SMARTPHONE__/!__SMARTPHONE__
}
wxSizerFlags& Border(int direction, int borderInPixels)
{
@@ -82,14 +95,13 @@ public:
wxSizerFlags& Border(int direction = wxALL)
{
// FIXME: default border size shouldn't be hardcoded
#ifdef __SMARTPHONE__
// no borders by default on limited size screen
wxUnusedVar(direction);
return *this;
#else
return Border(direction, 5);
return Border(direction, GetDefaultBorder());
#endif
}