mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-02-07 12:52:15 -05:00
In settings add “System” window with all main menu items (items are just menu positions not connected to actual windows)
19 lines
439 B
C++
19 lines
439 B
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include "BaseSettingsWindow.hpp"
|
|
|
|
namespace gui
|
|
{
|
|
class SystemMainWindow : public BaseSettingsWindow
|
|
{
|
|
public:
|
|
explicit SystemMainWindow(app::Application *app);
|
|
|
|
private:
|
|
auto buildOptionsList() -> std::list<Option> override;
|
|
};
|
|
} // namespace gui
|