-
Notifications
You must be signed in to change notification settings - Fork 0
/
projektpflege.h
45 lines (36 loc) · 910 Bytes
/
projektpflege.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
#ifndef PROJEKTPFLEGE_H
#define PROJEKTPFLEGE_H
#include <QDialog>
#include <QComboBox>
#include <QPushButton>
#include <QCheckBox>
#include <QLineEdit>
#include <QGridLayout>
#include <QLabel>
#include <QtSql/QSqlQuery>
#include <QtSql/QSqlError>
#include <QDate>
#include <QDebug>
#include <QTextEdit>
#include "global.h"
class ProjektPflege : public QDialog
{
Q_OBJECT
public:
explicit ProjektPflege(QWidget *parent = 0);
protected:
QPushButton* okButton{nullptr};
QPushButton* abbrechenButton{nullptr};
QComboBox* bearbeiter{nullptr};
QComboBox* projektWaehler{nullptr};
QLineEdit* titel{nullptr};
QTextEdit* beschreibung{nullptr};
QCheckBox* aktiv{nullptr};
protected slots:
void inDatenbankSchreiben();
void gewaehltesProjektGeaendert(int);
signals:
void aenderungen();
public slots:
};
#endif // PROJEKTPFLEGE_H