-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfodlg.h
47 lines (34 loc) · 842 Bytes
/
infodlg.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
/*
Program : kshow
Author : Ralf Berger
E-Mail : [email protected]
infodlg.h
*/
#ifndef INFODLG_H
#define INFODLG_H
// QT
#include <qdialog.h>
#include <qlabel.h>
#include <qwidget.h>
#include <qlined.h>
#include <qstring.h>
#include <qfileinf.h>
#include <qpushbt.h>
// KDE
#include <kapp.h>
class InfoDialog : public QDialog {
Q_OBJECT
public:
InfoDialog( const char *filename, QWidget *parent );
~InfoDialog() {};
private slots:
private:
QString image_name, image_path, image_width, image_height, image_format;
QString image_length, image_comment;
QPushButton *ok_bt;
QLabel *fenster;
QLabel *lb_name, *lb_path, *lb_format, *lb_width, *lb_height, *lb_length, *lb_comment;
QLabel *tx_name, *tx_path, *tx_format, *tx_width, *tx_height, *tx_length;
QLineEdit *tx_comment;
};
#endif // INFODLG_H