00001
00002
00003
00004
00005
00006
00007
00008 #ifndef BLOBPREVIEWDIALOG_H
00009 #define BLOBPREVIEWDIALOG_H
00010
00011 #include "ui_blobpreviewwidget.h"
00012
00013
00019 class BlobPreviewWidget : public QWidget, public Ui::BlobPreviewWidget
00020 {
00021 Q_OBJECT
00022
00023 public:
00024 BlobPreviewWidget(QWidget * parent = 0);
00025 void setBlobData(QVariant data);
00026 void setBlobFromFile(const QString & fileName);
00027
00028 private:
00029 QByteArray m_data;
00030
00031 void resizeEvent(QResizeEvent * event);
00032 void createPreview();
00033
00037 QString formatSize(qulonglong size);
00038 };
00039
00040 #endif