Added new window for text editing.

This commit is contained in:
Robert Borzecki
2019-08-14 13:59:24 +02:00
parent 0208d065c3
commit ffa538944c
8 changed files with 167 additions and 3 deletions

View File

@@ -8,6 +8,7 @@
*/
#include "MessageType.hpp"
#include "windows/NotesMainWindow.hpp"
#include "windows/NotesEditWindow.hpp"
#include "service-db/messages/DBMessage.hpp"
#include "ApplicationNotes.hpp"
@@ -83,6 +84,9 @@ void ApplicationNotes::createUserInterface() {
window = new gui::NotesMainWindow(this);
windows.insert(std::pair<std::string,gui::AppWindow*>(window->getName(), window));
window = new gui::NotesEditWindow(this);
windows.insert(std::pair<std::string,gui::AppWindow*>(window->getName(), window));
}
void ApplicationNotes::destroyUserInterface() {