4jcraft/targets/app/common/UI/Controls/UIControl_Cursor.cpp

21 lines
610 B
C++

#include "UIControl_Cursor.h"
#include "app/common/UI/Controls/UIControl.h"
#include "app/common/UI/Controls/UIControl_Base.h"
#include "app/linux/Iggy/include/iggy.h"
#ifndef _ENABLEIGGY
#include "app/linux/Stubs/iggy_stubs.h"
#endif
UIControl_Cursor::UIControl_Cursor() {}
bool UIControl_Cursor::setupControl(UIScene* scene, IggyValuePath* parent,
const std::string& controlName) {
UIControl::setControlType(UIControl::eCursor);
bool success = UIControl_Base::setupControl(scene, parent, controlName);
// Label specific initialisers
return success;
}