Added line feature for label widget.

This commit is contained in:
Robert Borzecki
2019-08-30 10:25:57 +02:00
parent 884705a716
commit cc76e4f278
6 changed files with 75 additions and 21 deletions

View File

@@ -145,22 +145,11 @@ int main() {
//vector with launchers to applications
std::vector<std::unique_ptr<app::ApplicationLauncher> > applications;
//launcher for viewer
applications.push_back(std::unique_ptr<app::ApplicationViewerLauncher>(new app::ApplicationViewerLauncher()));
//launcher for desktop application
applications.push_back(std::unique_ptr<app::ApplicationDesktopLauncher>(new app::ApplicationDesktopLauncher()));
//launcher for call application
applications.push_back(std::unique_ptr<app::ApplicationCallLauncher>(new app::ApplicationCallLauncher()));
//launcher for settings application
applications.push_back(std::unique_ptr<app::ApplicationSettingsLauncher>(new app::ApplicationSettingsLauncher()));
//launcher for notes application
applications.push_back(std::unique_ptr<app::ApplicationNotesLauncher>(new app::ApplicationNotesLauncher()));
// create launcher for phonebook, all launchers could be created like that
applications.push_back(app::CreateLauncher<app::ApplicationPhonebook>("ApplicationPhonebook"));
//start application manager