Mercurial > hg > octave-lyh
annotate gui/src/VariablesDockWidget.h @ 13504:13e3d60aff2d
Replaced Quint with OctaveGUI.
author | Jacob Dawid <jacob.dawid@googlemail.com> |
---|---|
date | Sun, 17 Jul 2011 20:27:03 +0200 |
parents | 86d6c3b90ad7 |
children | c70511cf64ee |
rev | line source |
---|---|
13504
13e3d60aff2d
Replaced Quint with OctaveGUI.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
13501
diff
changeset
|
1 /* OctaveGUI - A graphical user interface for Octave |
13501 | 2 * Copyright (C) 2011 Jacob Dawid |
3 * jacob.dawid@googlemail.com | |
4 * | |
5 * This program is free software: you can redistribute it and/or modify | |
6 * it under the terms of the GNU General Public License as published by | |
7 * the Free Software Foundation, either version 3 of the License, or | |
8 * (at your option) any later version. | |
9 * | |
10 * This program is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 * GNU General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU General Public License | |
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 */ | |
18 | |
19 #ifndef VARIABLESDOCKWIDGET_H | |
20 #define VARIABLESDOCKWIDGET_H | |
21 | |
22 #include <QDockWidget> | |
23 #include <QTreeWidget> | |
24 #include <QSemaphore> | |
25 #include "OctaveLink.h" | |
26 | |
27 class VariablesDockWidget : public QDockWidget | |
28 { | |
29 Q_OBJECT | |
30 public: | |
31 VariablesDockWidget(QWidget *parent = 0); | |
32 void setVariablesList(QList<SymbolRecord> symbolTable); | |
33 | |
34 signals: | |
35 void saveWorkspace(); | |
36 void loadWorkspace(); | |
37 void clearWorkspace(); | |
38 | |
39 private slots: | |
40 void emitSaveWorkspace(); | |
41 void emitLoadWorkspace(); | |
42 void emitClearWorkspace(); | |
43 | |
44 private: | |
45 void construct(); | |
46 void updateTreeEntry(QTreeWidgetItem *treeItem, SymbolRecord symbolRecord); | |
47 void updateScope(int topLevelItemIndex, QList<SymbolRecord> symbolTable); | |
48 QTreeWidget *m_variablesTreeWidget; | |
49 QSemaphore *m_updateSemaphore; | |
50 }; | |
51 | |
52 #endif // VARIABLESDOCKWIDGET_H |