aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/dialogs.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-08-28 17:52:56 -0400
committerPaul Gilbert2016-08-28 17:52:56 -0400
commitfd2d4622966d36299129b3f1654484b49ee0c996 (patch)
tree6ab885a971901877f3500f3f49a96690c1b1d4e5 /engines/xeen/dialogs.h
parentdffa696b7beea02782579a004862f4aa86e8f3e6 (diff)
downloadscummvm-rg350-fd2d4622966d36299129b3f1654484b49ee0c996.tar.gz
scummvm-rg350-fd2d4622966d36299129b3f1654484b49ee0c996.tar.bz2
scummvm-rg350-fd2d4622966d36299129b3f1654484b49ee0c996.zip
XEEN: Moved method comments from CPP to header files
Diffstat (limited to 'engines/xeen/dialogs.h')
-rw-r--r--engines/xeen/dialogs.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/engines/xeen/dialogs.h b/engines/xeen/dialogs.h
index 6e809ba2dc..51eafa5f54 100644
--- a/engines/xeen/dialogs.h
+++ b/engines/xeen/dialogs.h
@@ -53,12 +53,18 @@ protected:
Common::Array<UIButton> _buttons;
int _buttonValue;
+ /**
+ * Draws the scroll in the background
+ */
void doScroll(XeenEngine *vm, bool drawFlag, bool doFade);
bool checkEvents(XeenEngine *vm);
public:
ButtonContainer() : _buttonValue(0) {}
+ /**
+ * Saves the current list of buttons
+ */
void saveButtons();
void clearButtons();
@@ -71,6 +77,9 @@ public:
void addPartyButtons(XeenEngine *vm);
+ /**
+ * Draws the buttons onto the passed surface
+ */
void drawButtons(XSurface *surface);
};