-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadminmaintenance.h
More file actions
47 lines (28 loc) · 961 Bytes
/
adminmaintenance.h
File metadata and controls
47 lines (28 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#ifndef ADMINMAINTENANCE_H
#define ADMINMAINTENANCE_H
#include <QMainWindow>
namespace Ui {
class AdminMaintenance;
}
class AdminMaintenance : public QMainWindow
{
Q_OBJECT
public:
explicit AdminMaintenance(QWidget *parent = nullptr);
~AdminMaintenance();
private slots:
void on_add_city_button_clicked();
void on_remove_city_button_clicked();
void on_update_food_button_clicked();
void on_comboBoxUpdateFoods_currentIndexChanged(int index);
void on_tableWidget_update_food_cellDoubleClicked(int row, int column);
void on_remove_food_button_clicked();
void on_tableWidget_remove_food_cellDoubleClicked(int row, int column);
void on_add_food_button_clicked();
void on_tableWidget_add_food_cellDoubleClicked(int row, int column);
void on_delete_purchase_history_button_clicked();
void on_RefreshpushButton_clicked();
private:
Ui::AdminMaintenance *ui;
};
#endif // ADMINMAINTENANCE_H