forgot to add some files :)

This commit is contained in:
Max-Wilhelm Bruker 2010-06-18 21:15:19 +02:00
parent df4af668a5
commit ae41194e4b
2 changed files with 113 additions and 0 deletions

View file

@ -0,0 +1,28 @@
#ifndef DLG_CREATETOKEN_H
#define DLG_CREATETOKEN_H
#include <QDialog>
#include <QLineEdit>
class QLabel;
class QComboBox;
class QPushButton;
class DlgCreateToken : public QDialog {
Q_OBJECT
public:
DlgCreateToken(QWidget *parent = 0);
QString getName() const;
QString getColor() const;
QString getPT() const;
QString getAnnotation() const;
private slots:
void actOk();
private:
QLabel *nameLabel, *colorLabel, *ptLabel, *annotationLabel;
QComboBox *colorEdit;
QLineEdit *nameEdit, *ptEdit, *annotationEdit;
QPushButton *okButton, *cancelButton;
};
#endif