2017-03-29 10:18:37 +00:00
|
|
|
#ifndef SYMBOLSWIDGET_H
|
|
|
|
#define SYMBOLSWIDGET_H
|
|
|
|
|
|
|
|
#include <QDockWidget>
|
|
|
|
#include <QTreeWidget>
|
|
|
|
|
|
|
|
class MainWindow;
|
|
|
|
|
2017-04-09 19:55:06 +00:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class SymbolsWidget;
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class SymbolsWidget : public QDockWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit SymbolsWidget(MainWindow *main, QWidget *parent = 0);
|
|
|
|
~SymbolsWidget();
|
|
|
|
|
|
|
|
QTreeWidget *symbolsTreeWidget;
|
|
|
|
void fillSymbols();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_symbolsTreeWidget_itemDoubleClicked(QTreeWidgetItem *item, int column);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::SymbolsWidget *ui;
|
|
|
|
|
|
|
|
MainWindow *main;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SYMBOLSWIDGET_H
|