add history widget
[mdictionary] / src / plugins / xdxf / XdxfDictDownloadProgressDialog.h
index 2a1efc3..a103de6 100644 (file)
@@ -30,6 +30,7 @@
 
 #include <QDialog>
 #include <QtGui>
+#include <QDeclarativeView>
 
 /*!
     Shows downloading progress bar. Currently it displays "busy bar".
@@ -56,10 +57,19 @@ public Q_SLOTS:
     void show();
 
 Q_SIGNALS:
+    void setMaximumValue(QVariant value);
+    void setTextt(QVariant text);
+    void setValue(QVariant value);
+
     //! signal emitted when user cancels downloading of a dictionary
     void cancelDownloading();
 
 private:
+    QVBoxLayout* mainLayout;
+    QDeclarativeView *view;
+    int maximumValue;
+
+
     QLabel* downloadLabel;
     QProgressBar* downloadProgressBar;
     QPushButton* cancelButton;