Last change
on this file since 10518 was 8252, checked in by stoecker, 7 years ago |
see #105 - reenable Qt4 build options, drop generic version dependend includes, replace by direct requirements, remaining QtCore lines should also be replaced
|
File size:
935 bytes
|
Line | |
---|
1 | #ifndef BNCCUSTOMTRAFO_H
|
---|
2 | #define BNCCUSTOMTRAFO_H
|
---|
3 |
|
---|
4 | #include <QDialog>
|
---|
5 | #include <QLineEdit>
|
---|
6 | #include <QPushButton>
|
---|
7 | #include <QWhatsThis>
|
---|
8 |
|
---|
9 | class bncCustomTrafo : public QDialog {
|
---|
10 | Q_OBJECT
|
---|
11 |
|
---|
12 | public:
|
---|
13 | bncCustomTrafo(QWidget* parent);
|
---|
14 | ~bncCustomTrafo();
|
---|
15 |
|
---|
16 | private slots:
|
---|
17 | virtual void accept();
|
---|
18 | void slotWhatsThis();
|
---|
19 |
|
---|
20 | private:
|
---|
21 | QLineEdit* _dxLineEdit;
|
---|
22 | QLineEdit* _dyLineEdit;
|
---|
23 | QLineEdit* _dzLineEdit;
|
---|
24 | QLineEdit* _dxrLineEdit;
|
---|
25 | QLineEdit* _dyrLineEdit;
|
---|
26 | QLineEdit* _dzrLineEdit;
|
---|
27 | QLineEdit* _oxLineEdit;
|
---|
28 | QLineEdit* _oyLineEdit;
|
---|
29 | QLineEdit* _ozLineEdit;
|
---|
30 | QLineEdit* _oxrLineEdit;
|
---|
31 | QLineEdit* _oyrLineEdit;
|
---|
32 | QLineEdit* _ozrLineEdit;
|
---|
33 | QLineEdit* _scLineEdit;
|
---|
34 | QLineEdit* _scrLineEdit;
|
---|
35 | QLineEdit* _t0LineEdit;
|
---|
36 |
|
---|
37 | QPushButton* _buttonGet;
|
---|
38 | QPushButton* _buttonCancel;
|
---|
39 | QPushButton* _buttonOK;
|
---|
40 | QPushButton* _buttonWhatsThis;
|
---|
41 | };
|
---|
42 |
|
---|
43 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.