aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/scalpel/scalpel_user_interface.h
diff options
context:
space:
mode:
authorPaul Gilbert2015-05-30 12:56:07 -0400
committerPaul Gilbert2015-05-30 12:56:07 -0400
commit442fb847683aa789ae75dcf990040a13691293b6 (patch)
tree90fd54ef50c056693124eb48b655375446eaea42 /engines/sherlock/scalpel/scalpel_user_interface.h
parent25551111491e216ac4b46741beea13cbaa511b66 (diff)
downloadscummvm-rg350-442fb847683aa789ae75dcf990040a13691293b6.tar.gz
scummvm-rg350-442fb847683aa789ae75dcf990040a13691293b6.tar.bz2
scummvm-rg350-442fb847683aa789ae75dcf990040a13691293b6.zip
SHERLOCK: Make some of the scalpel user interface fields public
Diffstat (limited to 'engines/sherlock/scalpel/scalpel_user_interface.h')
-rw-r--r--engines/sherlock/scalpel/scalpel_user_interface.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/sherlock/scalpel/scalpel_user_interface.h b/engines/sherlock/scalpel/scalpel_user_interface.h
index 262cd291ed..dbc3945582 100644
--- a/engines/sherlock/scalpel/scalpel_user_interface.h
+++ b/engines/sherlock/scalpel/scalpel_user_interface.h
@@ -44,12 +44,9 @@ extern const char *const PRESS_KEY_TO_CONTINUE;
class Settings;
class ScalpelUserInterface: public UserInterface {
- friend class Sherlock::Inventory;
friend class Settings;
friend class Talk;
private:
- ImageFile *_controlPanel;
- ImageFile *_controls;
char _keyPress;
int _lookHelp;
int _bgFound, _oldBgFound;
@@ -63,7 +60,6 @@ private:
Common::String _cAnimStr;
Common::String _descStr;
int _find;
- int _oldUse;
private:
/**
* Draws the image for a user interface button in the down/pressed state.
@@ -159,6 +155,10 @@ private:
*/
void printObjectDesc(const Common::String &str, bool firstTime);
public:
+ ImageFile *_controlPanel;
+ ImageFile *_controls;
+ int _oldUse;
+public:
ScalpelUserInterface(SherlockEngine *vm);
virtual ~ScalpelUserInterface();