mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
47 lines
1.1 KiB
C++
47 lines
1.1 KiB
C++
/* Copyright 2003-2005 ROBLOX Corporation, All Rights Reserved */
|
|
|
|
#pragma once
|
|
|
|
#include "Gui/GUI.h"
|
|
#include "V8Tree/Verb.h"
|
|
#include "V8DataModel/GuiCore.h"
|
|
#include "v8datamodel/InputObject.h"
|
|
|
|
namespace RBX {
|
|
|
|
class Widget : public GuiItem
|
|
{
|
|
private:
|
|
typedef GuiItem Super;
|
|
GuiResponse processMouse(const shared_ptr<InputObject>& event);
|
|
GuiResponse processKey(const shared_ptr<InputObject>& event);
|
|
|
|
protected:
|
|
Gui::WidgetState widgetState;
|
|
|
|
// This should be standard for all widgets, verb widets, etc.
|
|
/*override*/ GuiResponse process(const shared_ptr<InputObject>& event);
|
|
/*override*/ void onLoseFocus() {
|
|
widgetState = Gui::NOTHING;
|
|
Super::onLoseFocus();
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////
|
|
//
|
|
// Override these to make new widgets
|
|
|
|
// GUI ITEM
|
|
/*override*/ void render2d(Adorn* adorn);
|
|
|
|
// WIDGET
|
|
virtual void onClick(const shared_ptr<InputObject>& event) {}
|
|
virtual int getFontSize() const {return 10;}
|
|
virtual G3D::Color4 getFontColor() {return G3D::Color3::white();}
|
|
virtual bool isEnabled() {return isVisible();}
|
|
|
|
public:
|
|
Widget();
|
|
};
|
|
|
|
|
|
} // namespace
|