- // Set layout constraints here
-
- // Control bar constraints
- wxLayoutConstraints *c1 = new wxLayoutConstraints;
- // int w, h;
- // m_controlBar->GetSize(&w, &h);
- int h;
-#if (defined(__WXMSW__) || defined(__WXGTK__))
- h = 40;
-#else
- h = 60;
-#endif
-
- c1->left.SameAs (this, wxLeft);
- c1->top.SameAs (this, wxTop);
- c1->right.SameAs (this, wxRight);
- c1->height.Absolute (h);