wxLayoutConstraints *c;
+ // Top-left listbox
c = new wxLayoutConstraints;
c->left.SameAs (this, wxLeft);
c->top.SameAs (this, wxTop);
c->height.PercentOf(this, wxHeight, 40);
m_ctrlFile->SetConstraints(c);
+ // Top-right listbox
c = new wxLayoutConstraints;
c->left.SameAs (m_ctrlFile, wxRight);
c->top.SameAs (this, wxTop);
c->height.PercentOf(this, wxHeight, 40);
m_ctrlText->SetConstraints(c);
+ // Lower text control
c = new wxLayoutConstraints;
c->left.SameAs (this, wxLeft);
c->right.SameAs (this, wxRight);