mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 11:33:36 +00:00
21 lines
610 B
C++
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;
|
|
}
|