mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-04 05:06:58 -04:00
40 lines
865 B
C++
40 lines
865 B
C++
/*
|
|
* @file CalendarMainWindow.cpp
|
|
* @author Robert Borzecki (robert.borzecki@mudita.com)
|
|
* @date 3 cze 2019
|
|
* @brief
|
|
* @copyright Copyright (C) 2019 mudita.com
|
|
* @details
|
|
*/
|
|
#include "gui/widgets/Window.hpp"
|
|
#include "gui/widgets/Label.hpp"
|
|
#include "gui/widgets/Item.hpp"
|
|
#include "gui/widgets/BoxLayout.hpp"
|
|
#include "CalendarMainWindow.hpp"
|
|
|
|
namespace app
|
|
{
|
|
|
|
CalendarMainWindow::CalendarMainWindow(app::Application *app, std::string name) : AppWindow(app, name)
|
|
{
|
|
buildInterface();
|
|
}
|
|
|
|
void CalendarMainWindow::rebuild()
|
|
{}
|
|
void CalendarMainWindow::buildInterface()
|
|
{
|
|
AppWindow::buildInterface();
|
|
}
|
|
void CalendarMainWindow::destroyInterface()
|
|
{
|
|
AppWindow::destroyInterface();
|
|
}
|
|
|
|
CalendarMainWindow::~CalendarMainWindow()
|
|
{
|
|
destroyInterface();
|
|
}
|
|
|
|
} /* namespace app */
|