mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
33 lines
1,011 B
C++
33 lines
1,011 B
C++
#pragma once
|
|
|
|
#include "MDTextArea.hpp"
|
|
#include "Popup.hpp"
|
|
|
|
namespace geode {
|
|
/**
|
|
* FLAlertLayer with support for Markdown. See <Geode/ui/MDTextArea.hpp>
|
|
* for details on what features of MD are supported.
|
|
*/
|
|
class MDPopup :
|
|
public Popup<
|
|
std::string const&, std::string const&, char const*, char const*,
|
|
std::function<void(bool)>> {
|
|
protected:
|
|
std::function<void(bool)> m_onClick = nullptr;
|
|
|
|
bool setup(
|
|
std::string const& title, std::string const& info, char const* btn1, char const* btn2,
|
|
std::function<void(bool)> onClick
|
|
) override;
|
|
|
|
void onBtn(CCObject*);
|
|
|
|
static float estimateHeight(std::string const& content);
|
|
|
|
public:
|
|
static MDPopup* create(
|
|
std::string const& title, std::string const& content, char const* btn1,
|
|
char const* btn2 = nullptr, std::function<void(bool)> onClick = nullptr
|
|
);
|
|
};
|
|
}
|