diff options
| author | Krzysztof Starecki <krzysztof.starecki@gmail.com> | 2018-12-31 20:29:03 +0100 |
|---|---|---|
| committer | Krzysztof Starecki <krzysztof.starecki@gmail.com> | 2018-12-31 20:29:03 +0100 |
| commit | fd6345cd4e49a135dd833e8567cb5bbe6887ebb9 (patch) | |
| tree | 12027bdf3c766e1ec2ec8dbbd4b6763b8f31d106 /src/downloadlistwidget.h | |
| parent | f3ee7a0566a92037223c8528340d697a6ef2499e (diff) | |
Add 'download meta information' support to download tab
Diffstat (limited to 'src/downloadlistwidget.h')
| -rw-r--r-- | src/downloadlistwidget.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/downloadlistwidget.h b/src/downloadlistwidget.h index 93ece07a..c8d4fe6e 100644 --- a/src/downloadlistwidget.h +++ b/src/downloadlistwidget.h @@ -21,6 +21,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #define DOWNLOADLISTWIDGET_H
#include "downloadmanager.h"
+#include "downloadlist.h"
#include "downloadlistsortproxy.h"
#include <QWidget>
#include <QItemDelegate>
@@ -58,6 +59,8 @@ public: ~DownloadListWidget();
void setManager(DownloadManager *manager);
+ void setSourceModel(DownloadList *sourceModel);
+ void setMetaDisplay(bool metaDisplay);
signals:
void installDownload(int index);
@@ -95,6 +98,7 @@ private slots: private:
DownloadManager *m_Manager;
+ DownloadList *m_SourceModel;
int m_ContextRow;
};
|
