-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.h
57 lines (33 loc) · 951 Bytes
/
user.h
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
48
49
50
51
52
53
54
55
56
57
#ifndef USER_H
#define USER_H
#include <QDialog>
#include "mainwindow.h"
namespace Ui {
class User;
}
class User : public QDialog
{
Q_OBJECT
public:
explicit User(QWidget *parent = nullptr,QString username="");
~User();
private slots:
void on_group_activated(int index);
void on_searchButton_clicked();
void on_product_list_clicked(const QModelIndex &index);
void on_available_stateChanged(int arg1);
void on_available_clicked();
void on_search_textChanged(const QString &arg1);
void on_addtocart_clicked();
void on_cart_clicked();
void on_tabWidget_currentChanged(int index);
void on_tabWidget_tabCloseRequested(int index);
void on_product_list_cart_clicked(const QModelIndex &index);
void on_deleteButton_clicked();
void on_purchase_clicked();
void on_editprofile_button_clicked();
void on_exit_clicked();
private:
Ui::User *ui;
};
#endif // USER_H