-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathfileinfo.h
More file actions
40 lines (33 loc) · 685 Bytes
/
fileinfo.h
File metadata and controls
40 lines (33 loc) · 685 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
#ifndef FILEINFO_H
#define FILEINFO_H
#include <QLabel>
#include <QPushButton>
#include <QVBoxLayout>
#include <QWidget>
class fileInfo : public QWidget {
Q_OBJECT
public:
explicit fileInfo(QWidget *parent = 0);
void setName(QString name);
void setSize(int size);
void setType(QString type);
void setResolution(int width, int height);
~fileInfo();
signals:
public slots:
private:
QString commonName;
QString commonSize;
QString commonSizeEnd;
QString fontSize;
QString width;
QString height;
QString fileType;
QLabel *labelWidth;
QLabel *labelHeight;
QLabel *name;
QLabel *type;
QLabel *size;
QVBoxLayout *layout;
};
#endif // FILEINFO_H