mirror of
https://github.com/tribes2/engine.git
synced 2026-01-20 11:44:46 +00:00
33 lines
687 B
C
33 lines
687 B
C
|
|
//-----------------------------------------------------------------------------
|
||
|
|
// V12 Engine
|
||
|
|
//
|
||
|
|
// Copyright (c) 2001 GarageGames.Com
|
||
|
|
// Portions Copyright (c) 2001 by Sierra Online, Inc.
|
||
|
|
//-----------------------------------------------------------------------------
|
||
|
|
|
||
|
|
#ifndef _GUIINPUTCTRL_H_
|
||
|
|
#define _GUIINPUTCTRL_H_
|
||
|
|
|
||
|
|
#ifndef _GUICONTROL_H_
|
||
|
|
#include "GUI/guiControl.h"
|
||
|
|
#endif
|
||
|
|
#ifndef _EVENT_H_
|
||
|
|
#include "Platform/event.h"
|
||
|
|
#endif
|
||
|
|
|
||
|
|
class GuiInputCtrl : public GuiControl
|
||
|
|
{
|
||
|
|
private:
|
||
|
|
typedef GuiControl Parent;
|
||
|
|
|
||
|
|
public:
|
||
|
|
DECLARE_CONOBJECT(GuiInputCtrl);
|
||
|
|
|
||
|
|
bool onWake();
|
||
|
|
void onSleep();
|
||
|
|
|
||
|
|
bool onInputEvent( const InputEvent &event );
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // _GUI_INPUTCTRL_H
|