diff options
author | Arno <am@disconnect.de> | 2014-02-06 18:53:53 +0100 |
---|---|---|
committer | Arno <am@disconnect.de> | 2014-02-06 18:53:53 +0100 |
commit | e0b8f04b18ababa819e2e0f019c76dcca971b51a (patch) | |
tree | 58a1b0143fc6f06111cf21717fa9b43f932114cd /archivebrowser.h | |
parent | e07de4e0a1bd56aab8f4ee81d6db252e442c3d7a (diff) | |
download | SheMov-e0b8f04b18ababa819e2e0f019c76dcca971b51a.tar.gz SheMov-e0b8f04b18ababa819e2e0f019c76dcca971b51a.tar.bz2 SheMov-e0b8f04b18ababa819e2e0f019c76dcca971b51a.zip |
First version of Archive Browser
First try to reimplement "Move to archive" in another way.
Implement an archive browser showing only Series with local parts in
another tab. This part works for now :)
Diffstat (limited to 'archivebrowser.h')
-rw-r--r-- | archivebrowser.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/archivebrowser.h b/archivebrowser.h new file mode 100644 index 0000000..cd43415 --- /dev/null +++ b/archivebrowser.h @@ -0,0 +1,34 @@ +/* + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version + 2 of the License, or (at your option) any later version. +*/ + +#ifndef ARCHIVEBROWSER_H +#define ARCHIVEBROWSER_H + +#include <QWidget> + +#include "smtreeview.h" + +class ArchiveBrowserModel; +class SmTreeView; +class QSortFilterProxyModel; + +class ArchiveBrowser : public QWidget { + Q_OBJECT + public: + explicit ArchiveBrowser(QWidget *parent = 0); + + signals: + + public slots: + + private: + SmTreeView *mTree; + ArchiveBrowserModel *mModel; + QSortFilterProxyModel *mProxy; +}; + +#endif // ARCHIVEBROWSER_H |