diff options
author | Arno <am@disconnect.de> | 2010-06-12 11:36:22 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2010-06-12 11:36:22 +0200 |
commit | b7b3abf2bb11dc823dd7d1f68c6ebd279bc8a8dc (patch) | |
tree | a059f18743742678dd3fb2dd1f05cb4780ce1c76 /archivetreeview.h | |
parent | ed20c95fff998cb25457e5b9d95bce312816ebd9 (diff) | |
download | SheMov-b7b3abf2bb11dc823dd7d1f68c6ebd279bc8a8dc.tar.gz SheMov-b7b3abf2bb11dc823dd7d1f68c6ebd279bc8a8dc.tar.bz2 SheMov-b7b3abf2bb11dc823dd7d1f68c6ebd279bc8a8dc.zip |
Created basic ArchiveTreeView
Implemented Widget for archive tree view. It's very basic and does
nothing.
Diffstat (limited to 'archivetreeview.h')
-rw-r--r-- | archivetreeview.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/archivetreeview.h b/archivetreeview.h new file mode 100644 index 0000000..d03319b --- /dev/null +++ b/archivetreeview.h @@ -0,0 +1,31 @@ +/* + 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 ARCHIVETREEVIEW_H +#define ARCHIVETREEVIEW_H + +#include <QWidget> + +class SmUberModel; +class QTreeView; + +class ArchiveTreeView : public QWidget +{ + Q_OBJECT + public: + explicit ArchiveTreeView(QWidget *parent = 0); + + private: + //widgets + QTreeView *mSeriesView; + QTreeView *mFilesView; + + //models + SmUberModel *mUberModel; +}; + +#endif |