aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/parser.h
diff options
context:
space:
mode:
authoruruk2013-09-07 18:03:36 +0200
committeruruk2013-09-07 18:03:36 +0200
commit00a963b840c7d0cbb227cc4ac9f8e3ddaa2e9d42 (patch)
treebea34788745edb3f594e044926c3ace7fdee80c1 /engines/avalanche/parser.h
parent467a7b1cce55680bddbae18fe655b386a4f3d051 (diff)
downloadscummvm-rg350-00a963b840c7d0cbb227cc4ac9f8e3ddaa2e9d42.tar.gz
scummvm-rg350-00a963b840c7d0cbb227cc4ac9f8e3ddaa2e9d42.tar.bz2
scummvm-rg350-00a963b840c7d0cbb227cc4ac9f8e3ddaa2e9d42.zip
AVALANCHE: Do renaming/refactoring in Parser.
Diffstat (limited to 'engines/avalanche/parser.h')
-rw-r--r--engines/avalanche/parser.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/engines/avalanche/parser.h b/engines/avalanche/parser.h
index 70a87b6ea7..b6ee0466ae 100644
--- a/engines/avalanche/parser.h
+++ b/engines/avalanche/parser.h
@@ -42,35 +42,23 @@ public:
byte _leftMargin;
bool _cursorState;
-
-
Parser(AvalancheEngine *vm);
void init();
-
void handleInputText(const Common::Event &event);
-
void handleBackspace();
-
void handleReturn();
-
void handleFunctionKey(const Common::Event &event);
-
void plotText();
-
void cursorOn();
-
void cursorOff();
-
void tryDropdown(); // This asks the parsekey proc in Dropdown if it knows it.
-
int16 pos(const Common::String &crit, const Common::String &src); // Returns the index of the first appearance of crit in src.
private:
AvalancheEngine *_vm;
void drawCursor();
-
void wipeText();
};