comparison gui/src/editor/FileEditorInterface.h @ 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
children 66ff321cb62e
comparison
equal deleted inserted replaced
14674:252a86f8fe62 14676:35512b788af2
1 /* OctaveGUI - A graphical user interface for Octave
2 * Copyright (C) 2011 Jacob Dawid (jacob.dawid@googlemail.com)
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation, either version 3 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 #ifndef FILEEDITORINTERFACE_H
19 #define FILEEDITORINTERFACE_H
20
21 #include <QWidget>
22
23 class QTerminal;
24 class MainWindow;
25
26 class FileEditorInterface : public QWidget
27 {
28 Q_OBJECT
29
30 public:
31 FileEditorInterface (QTerminal *terminal, MainWindow *mainWindow)
32 : QWidget ()
33 {
34 m_terminal = terminal;
35 m_mainWindow = mainWindow;
36 }
37
38 virtual ~FileEditorInterface () { }
39 public slots:
40 virtual void requestNewFile () = 0;
41 virtual void requestOpenFile () = 0;
42 virtual void requestOpenFile (QString fileName) = 0;
43
44 protected:
45 QTerminal* m_terminal;
46 MainWindow* m_mainWindow;
47 };
48
49 #endif // FILEEDITORINTERFACE_H