diff options
author | Eugene Sandulenko | 2006-03-07 05:39:52 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2006-03-07 05:39:52 +0000 |
commit | 018c93b14a9f2b3eda3bdfafcf9b90ee9ac0f8f2 (patch) | |
tree | ce773d203cb6e24aa2a3f206a7eaf2547bef5762 /gui/themes | |
parent | 02bdcc45c9aaca4ab98b27eccd21ae00731aa2f8 (diff) | |
download | scummvm-rg350-018c93b14a9f2b3eda3bdfafcf9b90ee9ac0f8f2.tar.gz scummvm-rg350-018c93b14a9f2b3eda3bdfafcf9b90ee9ac0f8f2.tar.bz2 scummvm-rg350-018c93b14a9f2b3eda3bdfafcf9b90ee9ac0f8f2.zip |
More work on customizable GUI.
o Implemented special alias 'prev'
o Added new calling scheme to several widgets
o Partially converted launcher dialog to new scheme
o Converted couple widgets of chooser dialog
svn-id: r21118
Diffstat (limited to 'gui/themes')
-rw-r--r-- | gui/themes/default-theme.ini | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gui/themes/default-theme.ini b/gui/themes/default-theme.ini index 71f9d59891..ef467846cc 100644 --- a/gui/themes/default-theme.ini +++ b/gui/themes/default-theme.ini @@ -133,3 +133,21 @@ def_buttonHeight=kBigButtonHeight def_kLineHeight=16 chooser_headline=10 6 (w - 2 * 16) (kLineHeight) chooser_list=10 (6 + kLineHeight + 2) (w - 2 * 16) (h - self.y - buttonHeight - 12) +hBorder=10 +launcher_version=hBorder 8 (w - 2 * hBorder) kLineHeight +top=(h - 8 - buttonHeight) +numButtons=4 +space=8 +buttonWidth=((w - 2 * hBorder - space * (numButtons - 1)) / numButtons) +launcher_quit_button=hBorder top buttonWidth buttonHeight +launcher_about_button=(prev.x2 + space) top buttonWidth buttonHeight +launcher_options_button=(prev.x2 + space) top buttonWidth buttonHeight +launcher_start_button=(prev.x2 + space) top buttonWidth buttonHeight +top=(top - buttonHeight * 2) +numButtons=3 +space=10 +buttonWidth=((w - 2 * hBorder - space * (numButtons - 1)) / numButtons) +launcher_addGame_button=hBorder top buttonWidth buttonHeight +launcher_editGame_button=(prev.x2 + space) top buttonWidth buttonHeight +launcher_removeGame_button=(prev.x2 + space) top buttonWidth buttonHeight +launcher_list=hBorder (kLineHeight + 16) (w - 2 * hBorder) (top - kLineHeight - 20) |