2013-06-03 19:57:40 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
2023-05-01 14:23:47 +02:00
|
|
|
#include <mutex>
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <deque>
|
2016-02-25 15:39:17 +01:00
|
|
|
|
2020-10-04 00:25:21 +02:00
|
|
|
#include "Common/Math/lin/vec3.h"
|
2020-10-04 20:48:47 +02:00
|
|
|
#include "Common/UI/Screen.h"
|
|
|
|
|
#include "Common/UI/ViewGroup.h"
|
2013-06-03 19:57:40 +02:00
|
|
|
|
2019-10-22 22:58:10 +02:00
|
|
|
using namespace Lin;
|
|
|
|
|
|
2013-09-07 13:38:12 +02:00
|
|
|
class I18NCategory;
|
2016-12-25 18:18:19 +01:00
|
|
|
namespace Draw {
|
2016-12-25 21:01:57 +01:00
|
|
|
class DrawContext;
|
2016-12-25 18:18:19 +01:00
|
|
|
}
|
2013-09-07 13:38:12 +02:00
|
|
|
|
2023-05-01 14:23:47 +02:00
|
|
|
enum class QueuedEventType : u8 {
|
|
|
|
|
KEY,
|
|
|
|
|
AXIS,
|
|
|
|
|
TOUCH,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct QueuedEvent {
|
|
|
|
|
QueuedEventType type;
|
|
|
|
|
union {
|
|
|
|
|
TouchInput touch;
|
|
|
|
|
KeyInput key;
|
|
|
|
|
AxisInput axis;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2013-06-03 19:57:40 +02:00
|
|
|
class UIScreen : public Screen {
|
|
|
|
|
public:
|
2013-06-08 22:41:17 +02:00
|
|
|
UIScreen();
|
2013-11-26 13:56:56 +01:00
|
|
|
~UIScreen();
|
2013-06-03 19:57:40 +02:00
|
|
|
|
2018-03-27 23:10:33 +02:00
|
|
|
void update() override;
|
|
|
|
|
void preRender() override;
|
|
|
|
|
void render() override;
|
|
|
|
|
void postRender() override;
|
|
|
|
|
void deviceLost() override;
|
|
|
|
|
void deviceRestored() override;
|
2014-06-15 13:04:10 +02:00
|
|
|
|
2023-05-26 11:49:50 +02:00
|
|
|
virtual void touch(const TouchInput &touch);
|
2023-07-06 11:48:25 +02:00
|
|
|
virtual bool key(const KeyInput &key);
|
|
|
|
|
virtual void axis(const AxisInput &axis);
|
2023-05-26 11:49:50 +02:00
|
|
|
|
2023-09-04 10:58:11 +02:00
|
|
|
bool UnsyncTouch(const TouchInput &touch) override;
|
2023-07-06 11:48:25 +02:00
|
|
|
bool UnsyncKey(const KeyInput &key) override;
|
|
|
|
|
void UnsyncAxis(const AxisInput &axis) override;
|
2013-06-03 19:57:40 +02:00
|
|
|
|
2018-03-27 23:10:33 +02:00
|
|
|
TouchInput transformTouch(const TouchInput &touch) override;
|
2017-03-19 14:28:24 -07:00
|
|
|
|
2017-03-19 17:43:03 -07:00
|
|
|
virtual void TriggerFinish(DialogResult result);
|
|
|
|
|
|
2013-06-03 19:57:40 +02:00
|
|
|
// Some useful default event handlers
|
2013-12-05 14:15:18 +01:00
|
|
|
UI::EventReturn OnOK(UI::EventParams &e);
|
|
|
|
|
UI::EventReturn OnCancel(UI::EventParams &e);
|
2013-06-03 19:57:40 +02:00
|
|
|
UI::EventReturn OnBack(UI::EventParams &e);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
virtual void CreateViews() = 0;
|
2013-06-09 11:18:57 +02:00
|
|
|
virtual void DrawBackground(UIContext &dc) {}
|
2013-06-03 19:57:40 +02:00
|
|
|
|
2022-12-08 16:04:20 +01:00
|
|
|
void RecreateViews() override { recreateViews_ = true; }
|
|
|
|
|
bool UseVerticalLayout() const;
|
2013-06-08 22:41:17 +02:00
|
|
|
|
2020-03-23 07:58:24 -07:00
|
|
|
UI::ViewGroup *root_ = nullptr;
|
|
|
|
|
Vec3 translation_ = Vec3(0.0f);
|
|
|
|
|
Vec3 scale_ = Vec3(1.0f);
|
2017-03-19 14:28:24 -07:00
|
|
|
float alpha_ = 1.0f;
|
2020-05-31 23:20:13 +02:00
|
|
|
bool ignoreInsets_ = false;
|
2023-05-06 15:09:12 +02:00
|
|
|
bool ignoreInput_ = false;
|
2013-06-08 22:41:17 +02:00
|
|
|
|
2023-09-05 16:43:45 +02:00
|
|
|
protected:
|
2013-07-21 13:30:47 +02:00
|
|
|
void DoRecreateViews();
|
2014-08-17 12:17:59 +02:00
|
|
|
|
2020-03-23 07:58:24 -07:00
|
|
|
bool recreateViews_ = true;
|
2022-12-08 16:04:20 +01:00
|
|
|
bool lastVertical_;
|
2023-05-01 14:23:47 +02:00
|
|
|
|
2023-09-05 16:43:45 +02:00
|
|
|
private:
|
2023-05-01 14:23:47 +02:00
|
|
|
std::mutex eventQueueLock_;
|
|
|
|
|
std::deque<QueuedEvent> eventQueue_;
|
2013-06-03 19:57:40 +02:00
|
|
|
};
|
2013-07-16 00:25:08 +02:00
|
|
|
|
2013-08-17 12:06:08 +02:00
|
|
|
class UIDialogScreen : public UIScreen {
|
2013-08-13 00:06:23 +02:00
|
|
|
public:
|
2013-10-28 16:05:21 +01:00
|
|
|
UIDialogScreen() : UIScreen(), finished_(false) {}
|
2017-12-02 11:07:27 -08:00
|
|
|
bool key(const KeyInput &key) override;
|
|
|
|
|
void sendMessage(const char *msg, const char *value) override;
|
2013-10-28 16:05:21 +01:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
bool finished_;
|
2013-08-13 00:06:23 +02:00
|
|
|
};
|
|
|
|
|
|
2013-08-17 12:06:08 +02:00
|
|
|
class PopupScreen : public UIDialogScreen {
|
2013-07-16 00:25:08 +02:00
|
|
|
public:
|
2013-08-16 12:51:57 +02:00
|
|
|
PopupScreen(std::string title, std::string button1 = "", std::string button2 = "");
|
2013-07-16 00:25:08 +02:00
|
|
|
|
|
|
|
|
virtual void CreatePopupContents(UI::ViewGroup *parent) = 0;
|
2022-12-10 20:32:12 -08:00
|
|
|
void CreateViews() override;
|
|
|
|
|
bool isTransparent() const override { return true; }
|
2022-12-31 21:41:32 +01:00
|
|
|
void touch(const TouchInput &touch) override;
|
2022-12-10 20:32:12 -08:00
|
|
|
bool key(const KeyInput &key) override;
|
2013-07-16 00:25:08 +02:00
|
|
|
|
2022-12-10 20:32:12 -08:00
|
|
|
void TriggerFinish(DialogResult result) override;
|
2017-03-19 17:45:39 -07:00
|
|
|
|
2017-03-21 18:27:57 -07:00
|
|
|
void SetPopupOrigin(const UI::View *view);
|
2021-08-28 15:23:46 -07:00
|
|
|
void SetPopupOffset(float y);
|
2017-03-21 18:27:57 -07:00
|
|
|
|
2022-02-11 18:23:56 +01:00
|
|
|
void SetHasDropShadow(bool has) { hasDropShadow_ = has; }
|
|
|
|
|
|
2013-07-16 00:25:08 +02:00
|
|
|
protected:
|
2013-09-04 10:50:00 +02:00
|
|
|
virtual bool FillVertical() const { return false; }
|
2016-04-24 11:51:06 -07:00
|
|
|
virtual UI::Size PopupWidth() const { return 550; }
|
2013-09-04 10:50:00 +02:00
|
|
|
virtual bool ShowButtons() const { return true; }
|
2019-08-17 18:24:57 -07:00
|
|
|
virtual bool CanComplete(DialogResult result) { return true; }
|
2013-08-16 12:51:57 +02:00
|
|
|
virtual void OnCompleted(DialogResult result) {}
|
2022-12-07 01:09:44 +01:00
|
|
|
virtual bool HasTitleBar() const { return true; }
|
2021-02-21 16:38:02 -08:00
|
|
|
const std::string &Title() { return title_; }
|
2013-07-16 00:25:08 +02:00
|
|
|
|
2022-12-10 20:32:12 -08:00
|
|
|
void update() override;
|
2017-03-19 15:41:48 -07:00
|
|
|
|
2013-07-16 00:25:08 +02:00
|
|
|
private:
|
2023-01-31 20:38:09 +01:00
|
|
|
UI::LinearLayout *box_ = nullptr;
|
2023-01-30 18:31:49 +01:00
|
|
|
UI::Button *defaultButton_ = nullptr;
|
2013-07-16 00:25:08 +02:00
|
|
|
std::string title_;
|
2013-08-16 12:51:57 +02:00
|
|
|
std::string button1_;
|
|
|
|
|
std::string button2_;
|
2017-03-19 15:41:48 -07:00
|
|
|
|
2017-03-26 08:58:04 -07:00
|
|
|
enum {
|
|
|
|
|
FRAMES_LEAD_IN = 6,
|
|
|
|
|
FRAMES_LEAD_OUT = 4,
|
|
|
|
|
};
|
|
|
|
|
|
2017-03-19 15:41:48 -07:00
|
|
|
int frames_ = 0;
|
2017-03-26 08:58:04 -07:00
|
|
|
int finishFrame_ = -1;
|
2023-01-30 18:31:49 +01:00
|
|
|
DialogResult finishResult_ = DR_CANCEL;
|
2017-03-21 18:27:57 -07:00
|
|
|
bool hasPopupOrigin_ = false;
|
|
|
|
|
Point popupOrigin_;
|
2021-08-28 15:23:46 -07:00
|
|
|
float offsetY_ = 0.0f;
|
2022-02-11 18:23:56 +01:00
|
|
|
|
|
|
|
|
bool hasDropShadow_ = true;
|
2013-07-16 00:25:08 +02:00
|
|
|
};
|