mirror of
https://github.com/YACReader/yacreader
synced 2025-07-22 15:04:40 -04:00
commit inicial en mercurial
This commit is contained in:
29
YACReaderLibrary/properties_dialog.h
Normal file
29
YACReaderLibrary/properties_dialog.h
Normal file
@ -0,0 +1,29 @@
|
||||
#ifndef __PROPERTIES_DIALOG_H
|
||||
#define __PROPERTIES_DIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
#include <QLabel>
|
||||
#include <QLineEdit>
|
||||
#include <QPushButton>
|
||||
#include <QScrollArea>
|
||||
|
||||
class PropertiesDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
private:
|
||||
QLabel * _cover;
|
||||
QLabel * _name;
|
||||
QLabel * _pages;
|
||||
QLabel * _size;
|
||||
QScrollArea * sa;
|
||||
|
||||
public:
|
||||
PropertiesDialog(QWidget * parent = 0);
|
||||
public slots:
|
||||
void setCover(const QPixmap & cover);
|
||||
void setFilename(const QString & name);
|
||||
void setNumpages(int pages);
|
||||
void setSize(float size);
|
||||
};
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user