Files
MuditaOS/module-apps/application-calendar/windows/CalendarMainWindow.hpp
Radoslaw Wicik a8573a404c Apply new style
2020-03-17 10:03:16 +01:00

37 lines
914 B
C++

/*
* @file CalendarMainWindow.hpp
* @author Robert Borzecki (robert.borzecki@mudita.com)
* @date 3 cze 2019
* @brief
* @copyright Copyright (C) 2019 mudita.com
* @details
*/
#ifndef MODULE_APPS_APPLICATION_CALENDAR_WINDOWS_CALENDARMAINWINDOW_HPP_
#define MODULE_APPS_APPLICATION_CALENDAR_WINDOWS_CALENDARMAINWINDOW_HPP_
#include "windows/AppWindow.hpp"
#include "Application.hpp"
namespace app
{
/*
*
*/
class CalendarMainWindow : public gui::AppWindow
{
protected:
// labels with names of the days
// gui::Label days;
public:
CalendarMainWindow(Application *app, std::string name);
virtual ~CalendarMainWindow();
void rebuild() override;
void buildInterface() override;
void destroyInterface() override;
};
} /* namespace app */
#endif /* MODULE_APPS_APPLICATION_CALENDAR_WINDOWS_CALENDARMAINWINDOW_HPP_ */