src/RelpipeChartMainWindow.h
branchv_0
changeset 45 50461b01e30d
parent 42 707a6734f364
child 50 9008fd23fc17
equal deleted inserted replaced
44:334a114407cd 45:50461b01e30d
    41 public slots:
    41 public slots:
    42 	void startRelation(const string_t name, std::vector<AttributeMetadata> attributes);
    42 	void startRelation(const string_t name, std::vector<AttributeMetadata> attributes);
    43 	void attribute(const string_t value);
    43 	void attribute(const string_t value);
    44 	void endOfPipe();
    44 	void endOfPipe();
    45 	void setStatusMessage(string_t message);
    45 	void setStatusMessage(string_t message);
       
    46 	void selectNextTab();
       
    47 	void selectPreviousTab();
    46 private:
    48 private:
    47 	Ui::RelpipeChartMainWindow widget;
    49 	Ui::RelpipeChartMainWindow widget;
    48 	QTabWidget* tabs = new QTabWidget(this);
    50 	QTabWidget* tabs = new QTabWidget(this);
    49 	QSplitter* splitter;
    51 	QSplitter* splitter;
    50 	RelpipeTableModel* currentModel;
    52 	RelpipeTableModel* currentModel;
    51 	RelpipeChartWidget* currentChartWidget;
    53 	RelpipeChartWidget* currentChartWidget;
    52 	QLabel* status = new QLabel();
    54 	QLabel* status = new QLabel();
       
    55 	void setupKeyboardShortcuts();
    53 };
    56 };