diff gui/src/src.pro @ 14676:35512b788af2 gui

Editor can now handle multiple files in tabs. * FileEditorInterface (new class): Interface class fpr the file editor. * FileEditorTab (new class): File editor unit for editing a single file. * MainWindow: Adjusted includes and method calls. * FileEditor: Replaced code that allowed editing a file with code that manages tabs and delegates button clicks. * src.pro: Added new files.
author Jacob Dawid <jacob.dawid@googlemail.com>
date Wed, 23 May 2012 20:25:07 +0200
parents 252a86f8fe62
children d6d250812c01
line wrap: on
line diff
--- a/gui/src/src.pro	Wed May 23 10:50:08 2012 +0200
+++ b/gui/src/src.pro	Wed May 23 20:25:07 2012 +0200
@@ -86,7 +86,8 @@
     backend/OctaveMainThread.cpp \
     WelcomeWizard.cpp \
     editor/FileEditor.cpp \
-    WorkspaceModel.cpp
+    WorkspaceModel.cpp \
+    editor/FileEditorTab.cpp
 
 HEADERS += \
     editor/lexeroctavegui.h \
@@ -100,7 +101,9 @@
     backend/OctaveMainThread.h \
     WelcomeWizard.h \
     editor/FileEditor.h \
-    WorkspaceModel.h
+    WorkspaceModel.h \
+    editor/FileEditorInterface.h \
+    editor/FileEditorTab.h
 
 FORMS += \
     SettingsDialog.ui \