Added an "Event" tab with a BiddingRoundControl class in it. No connections of signals and slots yet.
This commit is contained in:
@ -19,6 +19,7 @@ class TableModel;
|
||||
class GeneralSortFilterModel;
|
||||
class NewItemDialog;
|
||||
class EditItemDialog;
|
||||
class BiddingRoundControl;
|
||||
|
||||
using namespace std;
|
||||
|
||||
@ -44,8 +45,6 @@ class MainWindow : public QMainWindow {
|
||||
void onAboutClicked();
|
||||
void on_actionCheck_for_update_triggered();
|
||||
|
||||
void on_pushButton_clicked();
|
||||
|
||||
/// slots for menu actions
|
||||
void openNewItemDialog();
|
||||
void openEditItemDialog();
|
||||
@ -78,7 +77,7 @@ class MainWindow : public QMainWindow {
|
||||
shared_ptr<GeneralSortFilterModel> m_proxyModel;
|
||||
QUndoStack* m_modelUndoStack;
|
||||
unique_ptr<QUndoView> m_modelUndoView;
|
||||
|
||||
unique_ptr<BiddingRoundControl> m_biddingRoundControl;
|
||||
/// File actions
|
||||
unique_ptr<QAction> m_newFileAct;
|
||||
unique_ptr<QAction> m_openAct;
|
||||
@ -119,5 +118,7 @@ class MainWindow : public QMainWindow {
|
||||
void createToolsActions();
|
||||
void createHelpMenu();
|
||||
void createGuiDialogs();
|
||||
|
||||
void setupEventTab();
|
||||
};
|
||||
#endif // MAINWINDOW_H
|
||||
|
||||
Reference in New Issue
Block a user