Added big editable text widget, and removed some cruft. I think this means

that all our widgets are able to scale themselves now, but I could be
mistaken.

svn-id: r18192
This commit is contained in:
Torbjörn Andersson 2005-05-20 15:03:26 +00:00
parent 5eaedacce6
commit 801db4a515
15 changed files with 66 additions and 73 deletions

View file

@ -39,8 +39,8 @@ ChooserDialog::ChooserDialog(const String &title, const String &buttonLabel, int
_list->setNumberingMode(kListNumberingOff);
// Buttons
addButton(_w - 2 * (kButtonWidth + 10), _h - 24, "Cancel", kCloseCmd, 0);
_chooseButton = addButton(_w-(kButtonWidth + 10), _h - 24, buttonLabel, kChooseCmd, 0);
addButton(this, _w - 2 * (kButtonWidth + 10), _h - 24, "Cancel", kCloseCmd, 0);
_chooseButton = addButton(this, _w-(kButtonWidth + 10), _h - 24, buttonLabel, kChooseCmd, 0);
_chooseButton->setEnabled(false);
}