mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-24 13:58:00 -05:00
* [EGD-3078] fixed layout of sms thread delet window * [EGD-3078] missing font * [EGD-3078] fixed Dialog layout * [EGD-3078] added contact name in thread delete dialog * [EGD-3078] fix style
110 lines
3.7 KiB
C++
110 lines
3.7 KiB
C++
#include "Dialog.hpp"
|
|
#include "service-appmgr/ApplicationManager.hpp"
|
|
#include <i18/i18.hpp>
|
|
|
|
using namespace gui;
|
|
|
|
namespace style
|
|
{
|
|
namespace image
|
|
{
|
|
constexpr uint32_t x = 176;
|
|
constexpr uint32_t y = 135;
|
|
} // namespace image
|
|
namespace text
|
|
{
|
|
constexpr uint32_t x = 45;
|
|
constexpr uint32_t y = 293;
|
|
constexpr uint32_t w = 400;
|
|
constexpr uint32_t h = 66;
|
|
} // namespace text
|
|
namespace no
|
|
{
|
|
constexpr uint32_t x = 75;
|
|
constexpr uint32_t y = 415;
|
|
constexpr uint32_t w = 150;
|
|
constexpr uint32_t h = 75;
|
|
} // namespace no
|
|
namespace yes
|
|
{
|
|
constexpr uint32_t x = 255;
|
|
constexpr uint32_t y = 415;
|
|
constexpr uint32_t w = 150;
|
|
constexpr uint32_t h = 75;
|
|
} // namespace yes
|
|
|
|
} // namespace style
|
|
|
|
Dialog::Dialog(app::Application *app, const std::string &name, const Dialog::Meta &meta)
|
|
: gui::AppWindow(app, name), meta(meta)
|
|
{
|
|
AppWindow::buildInterface();
|
|
// TODO fix elements positioning with styles ready, right now copied from Phonebook as it is
|
|
|
|
topBar->setActive(TopBar::Elements::TIME, true);
|
|
bottomBar->setActive(BottomBar::Side::LEFT, false);
|
|
bottomBar->setActive(BottomBar::Side::CENTER, true);
|
|
bottomBar->setActive(BottomBar::Side::RIGHT, true);
|
|
bottomBar->setText(BottomBar::Side::CENTER, utils::localize.get("app_phonebook_confirm"));
|
|
bottomBar->setText(BottomBar::Side::RIGHT, utils::localize.get("app_phonebook_back"));
|
|
|
|
setTitle(meta.title);
|
|
|
|
icon = new Image(this, style::image::x, style::image::y, meta.icon);
|
|
|
|
text = new Text(this, style::text::x, style::text::y, style::text::w, style::text::h);
|
|
text->setText(meta.text);
|
|
text->setTextType(Text::TextType::MULTI_LINE);
|
|
text->setEditMode(Text::EditMode::BROWSE);
|
|
text->setEdges(RectangleEdgeFlags::GUI_RECT_EDGE_NO_EDGES);
|
|
text->setFont(style::window::font::medium);
|
|
text->setAlignment(gui::Alignment(gui::Alignment::ALIGN_HORIZONTAL_CENTER, gui::Alignment::ALIGN_VERTICAL_CENTER));
|
|
|
|
no = new Label(this, style::no::x, style::no::y, style::no::w, style::no::h, utils::localize.get("common_no"));
|
|
no->setPenWidth(0);
|
|
no->setPenFocusWidth(3);
|
|
no->setFilled(false);
|
|
no->setBorderColor(ColorFullBlack);
|
|
no->setEdges(RectangleEdgeFlags::GUI_RECT_EDGE_BOTTOM | RectangleEdgeFlags::GUI_RECT_EDGE_TOP);
|
|
no->setFont(style::window::font::big);
|
|
no->setAlignement(Alignment(Alignment::ALIGN_HORIZONTAL_CENTER, Alignment::ALIGN_VERTICAL_CENTER));
|
|
no->activatedCallback = [=](Item &) -> bool { return returnToPreviousView(); };
|
|
|
|
yes =
|
|
new Label(this, style::yes::x, style::yes::y, style::yes::w, style::yes::h, utils::localize.get("common_yes"));
|
|
yes->setPenWidth(0);
|
|
yes->setPenFocusWidth(3);
|
|
yes->setFilled(false);
|
|
yes->setBorderColor(ColorFullBlack);
|
|
yes->setEdges(RectangleEdgeFlags::GUI_RECT_EDGE_BOTTOM | RectangleEdgeFlags::GUI_RECT_EDGE_TOP);
|
|
yes->setFont(style::window::font::big);
|
|
yes->setAlignement(Alignment(Alignment::ALIGN_HORIZONTAL_CENTER, Alignment::ALIGN_VERTICAL_CENTER));
|
|
|
|
no->setNavigationItem(NavigationDirection::RIGHT, yes);
|
|
yes->setNavigationItem(NavigationDirection::LEFT, no);
|
|
no->setNavigationItem(NavigationDirection::LEFT, yes);
|
|
yes->setNavigationItem(NavigationDirection::RIGHT, no);
|
|
setFocusItem(no);
|
|
}
|
|
|
|
bool Dialog::onInput(const InputEvent &inputEvent)
|
|
{
|
|
return AppWindow::onInput(inputEvent);
|
|
}
|
|
|
|
void Dialog::buildInterface()
|
|
{}
|
|
|
|
void Dialog::update(const Meta &meta)
|
|
{
|
|
this->meta = meta;
|
|
setTitle(meta.title);
|
|
text->setText(meta.text);
|
|
yes->activatedCallback = [=](Item &) -> bool { return meta.action(); };
|
|
}
|
|
|
|
void Dialog::onBeforeShow(ShowMode mode, SwitchData *data)
|
|
{
|
|
setFocusItem(no);
|
|
}
|