mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-16 06:02:52 +00:00
24 lines
582 B
C++
24 lines
582 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "app/common/UI/Controls/UIControl_Base.h"
|
|
#include "app/common/UI/Controls/UIControl_Touch.h"
|
|
#include "app/common/UI/UIScene.h"
|
|
#include "app/linux/Iggy/include/iggy.h"
|
|
#ifndef _ENABLEIGGY
|
|
#include "app/linux/Stubs/iggy_stubs.h"
|
|
#endif
|
|
#include "UIControl_Base.h"
|
|
|
|
class UIControl_Touch : public UIControl_Base {
|
|
private:
|
|
public:
|
|
UIControl_Touch();
|
|
|
|
virtual bool setupControl(UIScene* scene, IggyValuePath* parent,
|
|
const std::string& controlName);
|
|
|
|
void init(int id);
|
|
virtual void ReInit();
|
|
}; |