mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
f45c5186ca
Instead of being a popup. This should make it easier to make sure things work normally, and avoids some of the strange overrides of PopupScreen it previously had.
41 lines
1.1 KiB
C++
41 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include "ppsspp_config.h"
|
|
#include "Common/UI/UIScreen.h"
|
|
|
|
class ChatMenu : public UI::AnchorLayout {
|
|
public:
|
|
ChatMenu(const Bounds &screenBounds, UI::LayoutParams *lp = nullptr): UI::AnchorLayout(lp) {
|
|
CreateSubviews(screenBounds);
|
|
}
|
|
~ChatMenu();
|
|
void Update() override;
|
|
|
|
bool Contains(float x, float y) const {
|
|
if (box_)
|
|
return box_->GetBounds().Contains(x, y);
|
|
return false;
|
|
}
|
|
|
|
private:
|
|
void CreateSubviews(const Bounds &screenBounds);
|
|
void CreateContents(UI::ViewGroup *parent);
|
|
void UpdateChat();
|
|
|
|
UI::EventReturn OnSubmit(UI::EventParams &e);
|
|
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);
|
|
|
|
#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;
|
|
|
|
bool toBottom_ = true;
|
|
};
|