-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTDBClopesAdmin.h
More file actions
45 lines (34 loc) · 846 Bytes
/
TDBClopesAdmin.h
File metadata and controls
45 lines (34 loc) · 846 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
#ifndef TDBCLOPESADMIN_H
#define TDBCLOPESADMIN_H
#include <iostream>
#include <QLabel>
#include <QPushButton>
#include <QSqlQuery>
#include <QSqlRecord>
#include <QDialog>
#include <QVBoxLayout>
#include "TDBApplication.h"
#include "TDBDatabase.h"
#include "TDBClopesModification.h"
#include "TDBClopesCreation.h"
#include "TDBClopesList.h"
class TDBClopesAdmin : public QDialog
{
Q_OBJECT
TDBClopesList* clopes_list;
private:
QPushButton* ok_button;
QPushButton* mod_clopes_button;
QPushButton* create_clopes_button;
QPushButton* delete_clopes_button;
QVBoxLayout* vlayout;
public:
TDBClopesAdmin(QWidget* parent);
~TDBClopesAdmin();
private slots:
void ok_pressed();
void mod_clopes_pressed();
void create_clopes_pressed();
void delete_clopes_pressed();
};
#endif