mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-02-06 20:33:00 -05:00
Load APNs from service cellular. Add ApnSettings model. Connect ApnOptionWindow with ApnSettingsWindow.
89 lines
3.1 KiB
C++
89 lines
3.1 KiB
C++
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#include "QuotesMainWindow.hpp"
|
|
#include "application-settings-new/models/QuotesRepository.hpp"
|
|
#include "application-settings-new/models/QuotesModel.hpp"
|
|
#include "application-settings-new/ApplicationSettings.hpp"
|
|
#include "application-settings-new/widgets/SettingsStyle.hpp"
|
|
#include "OptionSetting.hpp"
|
|
|
|
#include <InputEvent.hpp>
|
|
#include <i18n/i18n.hpp>
|
|
#include <json/json11.hpp>
|
|
#include <utility>
|
|
|
|
namespace style::quotes
|
|
{
|
|
namespace list
|
|
{
|
|
constexpr auto X = style::window::default_left_margin;
|
|
constexpr auto Y = style::header::height;
|
|
constexpr auto Width = style::listview::body_width_with_scroll;
|
|
constexpr auto Height = style::window_height - Y - style::footer::height;
|
|
} // namespace list
|
|
|
|
inline constexpr auto cross_x = 48;
|
|
inline constexpr auto cross_y = 55;
|
|
inline constexpr auto arrow_x = 30;
|
|
inline constexpr auto arrow_y = 62;
|
|
|
|
} // namespace style::quotes
|
|
|
|
namespace gui
|
|
{
|
|
QuotesMainWindow::QuotesMainWindow(app::Application *app, std::shared_ptr<app::QuotesModel> model)
|
|
: AppWindow(app, gui::window::name::quotes), quotesModel(std::move(model))
|
|
{
|
|
buildInterface();
|
|
}
|
|
|
|
void QuotesMainWindow::buildInterface()
|
|
{
|
|
AppWindow::buildInterface();
|
|
|
|
setTitle(utils::localize.get("app_settings_display_wallpaper_quotes"));
|
|
|
|
bottomBar->setText(BottomBar::Side::CENTER, utils::localize.get(style::strings::common::check));
|
|
bottomBar->setText(BottomBar::Side::RIGHT, utils::localize.get(style::strings::common::back));
|
|
bottomBar->setText(BottomBar::Side::LEFT, utils::localize.get(style::strings::common::options));
|
|
|
|
new gui::Image(this, style::quotes::arrow_x, style::quotes::arrow_y, 0, 0, "arrow_left");
|
|
new gui::Image(this, style::quotes::cross_x, style::quotes::cross_y, 0, 0, "cross");
|
|
|
|
list = new gui::ListView(this,
|
|
style::quotes::list::X,
|
|
style::quotes::list::Y,
|
|
style::quotes::list::Width,
|
|
style::quotes::list::Height,
|
|
quotesModel);
|
|
|
|
setFocusItem(list);
|
|
}
|
|
|
|
auto QuotesMainWindow::onInput(const InputEvent &inputEvent) -> bool
|
|
{
|
|
// check if any of the lower inheritance onInput methods catch the event
|
|
if (AppWindow::onInput(inputEvent)) {
|
|
return true;
|
|
}
|
|
|
|
if (inputEvent.isShortPress()) {
|
|
switch (inputEvent.keyCode) {
|
|
case gui::KeyCode::KEY_LEFT:
|
|
application->switchWindow(gui::window::name::new_quote,
|
|
std::make_unique<QuoteSwitchData>(QuoteAction::Add));
|
|
return true;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void QuotesMainWindow::onBeforeShow(ShowMode mode, SwitchData *data)
|
|
{
|
|
quotesModel->rebuild();
|
|
}
|
|
} // namespace gui
|