ppsspp/UI/ChatScreen.h

45 lines
1.2 KiB
C
Raw Normal View History

2016-10-21 10:35:54 +00:00
#pragma once
#include "ppsspp_config.h"
#include "Common/UI/UIScreen.h"
2016-10-21 10:35:54 +00:00
class ChatMenu : public UI::AnchorLayout {
2016-10-21 10:35:54 +00:00
public:
ChatMenu(const Bounds &screenBounds, UI::LayoutParams *lp = nullptr): UI::AnchorLayout(lp) {
CreateSubviews(screenBounds);
}
void Update() override;
2021-09-13 03:16:05 +00:00
bool SubviewFocused(UI::View *view) override;
void Close();
bool Contains(float x, float y) const {
if (box_)
return box_->GetBounds().Contains(x, y);
return false;
}
2016-10-21 10:35:54 +00:00
private:
void CreateSubviews(const Bounds &screenBounds);
void CreateContents(UI::ViewGroup *parent);
void UpdateChat();
2016-10-21 10:35:54 +00:00
UI::EventReturn OnSubmit(UI::EventParams &e);
2017-07-06 13:43:39 +00:00
UI::EventReturn OnQuickChat1(UI::EventParams &e);
UI::EventReturn OnQuickChat2(UI::EventParams &e);
UI::EventReturn OnQuickChat3(UI::EventParams &e);
UI::EventReturn OnQuickChat4(UI::EventParams &e);
UI::EventReturn OnQuickChat5(UI::EventParams &e);
2020-03-08 22:51:23 +00:00
#if PPSSPP_PLATFORM(WINDOWS) || defined(USING_QT_UI) || defined(SDL)
UI::TextEdit *chatEdit_ = nullptr;
#endif
UI::ScrollView *scroll_ = nullptr;
UI::LinearLayout *chatVert_ = nullptr;
UI::ViewGroup *box_ = nullptr;
int chatChangeID_ = 0;
bool toBottom_ = true;
2021-09-13 03:16:05 +00:00
bool promptInput_ = false;
};