Files
MuditaOS/module-apps/windows/OptionWindow.hpp
Adam Dobrowolski 560dda54da [EGD-2475] PR review applied
- made options window name better and single instanced it
- added comments to hardcoded values explaining why
- fixed reloading SMS'es
2020-01-22 13:18:59 +01:00

54 lines
1.7 KiB
C++

#pragma once
#include "../Application.hpp"
#include "AppWindow.hpp"
#include "PageLayout.hpp"
#include <functional>
#include <log/log.hpp>
namespace gui
{
struct Option
{
const UTF8 text = "";
std::function<bool(Item &)> activatedCallback = nullptr;
Option(const UTF8 &text, std::function<bool(Item &)> cb) : text(text), activatedCallback(cb) {
LOG_INFO("text: %s", text.c_str());
}
};
/// creates new `option` label on heap with text description and on activated callback connected
Item *newOptionLabel(const UTF8 &text, std::function<bool(Item &)> activatedCallback);
Item *newOptionLabel(const Option &option);
class OptionWindow : public AppWindow
{
protected:
PageLayout *body = nullptr;
public:
OptionWindow(app::Application *app, const std::string &name);
virtual ~OptionWindow();
void addOptionLabel(const UTF8 &text, std::function<bool(Item &)> activatedCallback);
/// add options as {text, on click callback }
void addOptions(std::list<Option> options);
/// add options as list of items on heap
/// [!] ovnership on item will be moved to OptionWindow (so it will clean created kids on heap)
void addOptions(std::list<Item *> items);
void clearOptions();
void onBeforeShow(ShowMode mode, SwitchData *data) override;
void rebuild() override;
void buildInterface() override;
void destroyInterface() override;
};
/// default name will set name to Options from i18
OptionWindow *newOptionWindow(app::Application *app, std::string name = "", std::list<Option> options = {});
}; // namespace gui