aboutsummaryrefslogtreecommitdiff
path: root/scumm/dialogs.h
diff options
context:
space:
mode:
authorTorbjörn Andersson2005-05-27 13:14:39 +0000
committerTorbjörn Andersson2005-05-27 13:14:39 +0000
commitd51198e2b4489ac19cde5f673dee396dcf3034a0 (patch)
treeb2a6c861070ded3d146d8d8522d5b23da4efb62c /scumm/dialogs.h
parenteeab93cf0904734ccaffb0d79ce8f657b9846b4a (diff)
downloadscummvm-rg350-d51198e2b4489ac19cde5f673dee396dcf3034a0.tar.gz
scummvm-rg350-d51198e2b4489ac19cde5f673dee396dcf3034a0.tar.bz2
scummvm-rg350-d51198e2b4489ac19cde5f673dee396dcf3034a0.zip
Made ValueDisplayDialog scale itself.
svn-id: r18274
Diffstat (limited to 'scumm/dialogs.h')
-rw-r--r--scumm/dialogs.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/scumm/dialogs.h b/scumm/dialogs.h
index b973f81883..3d7dc90a66 100644
--- a/scumm/dialogs.h
+++ b/scumm/dialogs.h
@@ -198,11 +198,14 @@ public:
protected:
enum {
kPercentBarWidth = 50,
+ kBigPercentBarWidth = 75,
kDisplayDelay = 1500
};
Common::String _label;
+ const Graphics::Font *_font;
const int _min, _max;
const uint16 _incKey, _decKey;
+ int _percentBarWidth;
int _value;
uint32 _timer;
};