mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-06-14 03:25:25 -04:00
* changed all fonts to follow one `Style.hpp` include * Moved title to AppWindow from all the places in code * added logging on font selection - when not found * minor fixes
37 lines
671 B
C++
37 lines
671 B
C++
/*
|
|
* @file CallMainWindow.cpp
|
|
* @author Robert Borzecki (robert.borzecki@mudita.com)
|
|
* @date 1 lip 2019
|
|
* @brief
|
|
* @copyright Copyright (C) 2019 mudita.com
|
|
* @details
|
|
*/
|
|
|
|
#include <Label.hpp>
|
|
#include "CallMainWindow.hpp"
|
|
#include <Style.hpp>
|
|
|
|
namespace gui {
|
|
|
|
CallMainWindow::CallMainWindow( app::Application* app ) : AppWindow(app,"MainWindow"){
|
|
setSize( 480, 600 );
|
|
|
|
buildInterface();
|
|
}
|
|
|
|
void CallMainWindow::rebuild() {
|
|
}
|
|
void CallMainWindow::buildInterface() {
|
|
AppWindow::buildInterface();
|
|
setTitle(getName());
|
|
}
|
|
void CallMainWindow::destroyInterface() {
|
|
AppWindow::destroyInterface();
|
|
}
|
|
|
|
|
|
CallMainWindow::~CallMainWindow() {
|
|
}
|
|
|
|
} /* namespace gui */
|