aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/gui/gui.cpp
diff options
context:
space:
mode:
authorMartin Kiewitz2009-10-11 14:28:20 +0000
committerMartin Kiewitz2009-10-11 14:28:20 +0000
commitefcfae742b63ca01abca64cbbfa5aa71b2dae527 (patch)
tree4d55f71da15376cf2caccafb0c320bf095ca89e6 /engines/sci/gui/gui.cpp
parent7b493e9a60d4e8e08f19772d793f8f1a36c19a42 (diff)
downloadscummvm-rg350-efcfae742b63ca01abca64cbbfa5aa71b2dae527.tar.gz
scummvm-rg350-efcfae742b63ca01abca64cbbfa5aa71b2dae527.tar.bz2
scummvm-rg350-efcfae742b63ca01abca64cbbfa5aa71b2dae527.zip
SCI: kDrawControl for list and textedit controls also using gui class
svn-id: r44925
Diffstat (limited to 'engines/sci/gui/gui.cpp')
-rw-r--r--engines/sci/gui/gui.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/sci/gui/gui.cpp b/engines/sci/gui/gui.cpp
index 8e379cdb6e..22eff9b7fb 100644
--- a/engines/sci/gui/gui.cpp
+++ b/engines/sci/gui/gui.cpp
@@ -345,6 +345,9 @@ void SciGui::drawControlText(Common::Rect rect, reg_t obj, const char *text, int
_screen->copyToScreen();
}
+void SciGui::drawControlTextEdit(Common::Rect rect, reg_t obj, const char *text, int16 fontId, int16 mode, int16 style, int16 cursorPos, int16 maxChars, bool hilite) {
+}
+
void SciGui::drawControlIcon(Common::Rect rect, reg_t obj, GuiResourceId viewId, GuiViewLoopNo loopNo, GuiViewCelNo celNo, int16 style, bool hilite) {
if (!hilite) {
_gfx->drawCel(viewId, loopNo, celNo, rect.left, rect.top, 255, 0);
@@ -357,7 +360,7 @@ void SciGui::drawControlIcon(Common::Rect rect, reg_t obj, GuiResourceId viewId,
_screen->copyToScreen();
}
-void SciGui::drawControl(reg_t controlObject, bool highlight) {
+void SciGui::drawControlList(Common::Rect rect, reg_t obj, int16 count, const char **entries, GuiResourceId fontId, int16 upperPos, int16 cursorPos, bool hilite) {
}
void SciGui::editControl(reg_t controlObject, reg_t eventObject) {