- // 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);
-
- m_controlBar->SetConstraints(c1);
-
- // Canvas constraints
- wxLayoutConstraints *c2 = new wxLayoutConstraints;
-
- c2->left.SameAs (this, wxLeft);
- c2->top.Below (m_controlBar);
- c2->right.SameAs (this, wxRight);
- c2->bottom.SameAs (this, wxBottom);
+ item0->Add( m_controlBar, 0, wxGROW|wxALIGN_CENTER_VERTICAL, 5 );
+ item0->Add( m_previewCanvas, 1, wxGROW|wxALIGN_CENTER_VERTICAL, 5 );