aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/UI/UIWindow.h
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-06-26 01:11:52 +0200
committerEinar Johan Trøan Sømåen2012-06-26 01:11:52 +0200
commitc2239512909eae01f6fa4ad3ed2c34de9cc9343f (patch)
tree6a53802d89d62f341daf04b34517e2d472fef6d7 /engines/wintermute/UI/UIWindow.h
parent37079a633591c386731c6287800a09cb093ae78b (diff)
downloadscummvm-rg350-c2239512909eae01f6fa4ad3ed2c34de9cc9343f.tar.gz
scummvm-rg350-c2239512909eae01f6fa4ad3ed2c34de9cc9343f.tar.bz2
scummvm-rg350-c2239512909eae01f6fa4ad3ed2c34de9cc9343f.zip
WINTERMUTE: Rename FuncName -> funcName in BObject
Diffstat (limited to 'engines/wintermute/UI/UIWindow.h')
-rw-r--r--engines/wintermute/UI/UIWindow.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/wintermute/UI/UIWindow.h b/engines/wintermute/UI/UIWindow.h
index 53d52d55fc..ed81ef9d06 100644
--- a/engines/wintermute/UI/UIWindow.h
+++ b/engines/wintermute/UI/UIWindow.h
@@ -50,7 +50,7 @@ public:
bool _isMenu;
bool _fadeBackground;
uint32 _fadeColor;
- virtual bool HandleMouseWheel(int Delta);
+ virtual bool handleMouseWheel(int Delta);
CUIWindow *_shieldWindow;
CUIButton *_shieldButton;
HRESULT Close();
@@ -58,7 +58,7 @@ public:
HRESULT GoExclusive();
TWindowMode _mode;
HRESULT MoveFocus(bool Forward = true);
- virtual HRESULT HandleMouse(TMouseEvent Event, TMouseButton Button);
+ virtual HRESULT handleMouse(TMouseEvent Event, TMouseButton Button);
POINT _dragFrom;
bool _dragging;
DECLARE_PERSISTENT(CUIWindow, CUIObject)
@@ -67,10 +67,10 @@ public:
HRESULT EnableWidget(const char *Name, bool Enable = true);
RECT _titleRect;
RECT _dragRect;
- virtual HRESULT Display(int OffsetX = 0, int OffsetY = 0);
+ virtual HRESULT display(int OffsetX = 0, int OffsetY = 0);
CUIWindow(CBGame *inGame);
virtual ~CUIWindow();
- virtual bool HandleKeypress(Common::Event *event, bool printable = false);
+ virtual bool handleKeypress(Common::Event *event, bool printable = false);
CBArray<CUIObject *, CUIObject *> _widgets;
TTextAlign _titleAlign;
HRESULT LoadFile(const char *Filename);