summaryrefslogtreecommitdiffstats
path: root/propertiesdialog.h
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2011-08-22 16:31:05 +0200
committerArno <am@disconnect.de>2011-08-22 16:31:05 +0200
commitf427305bb038ab3af27fb8a1a17827732c3713f3 (patch)
treee1f505f9ce23aeaecedb7a3815e35c37ca06ffc8 /propertiesdialog.h
parent6ccb1884dd9e9a57f7b25239097951d77103d331 (diff)
downloadSheMov-f427305bb038ab3af27fb8a1a17827732c3713f3.tar.gz
SheMov-f427305bb038ab3af27fb8a1a17827732c3713f3.tar.bz2
SheMov-f427305bb038ab3af27fb8a1a17827732c3713f3.zip
First draft of PropertiesDialog
Kinda mock-up of new PropertiesDialog. The caption label works, though for some reason I can't set a background image via Stylesheets. It also shows the files belonging to the SeriesPart.
Diffstat (limited to 'propertiesdialog.h')
-rw-r--r--propertiesdialog.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/propertiesdialog.h b/propertiesdialog.h
new file mode 100644
index 0000000..d881ec7
--- /dev/null
+++ b/propertiesdialog.h
@@ -0,0 +1,44 @@
+/*
+ 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 PROPERTIESDIALOG_H
+#define PROPERTIESDIALOG_H
+
+#include "smdialog.h"
+
+class SmTreeModel;
+class FilesTreeModel;
+class SeriesTreeModel;
+class QLabel;
+class QSplitter;
+class QTreeView;
+class QTabWidget;
+class QPushButton;
+
+class PropertiesDialog : public SmDialog {
+ Q_OBJECT
+ public:
+ enum NodeType { PictureFileNode, MovieFileNode, ScreenshotNode, DummyNode };
+ explicit PropertiesDialog(QWidget *parent = 0, Qt::WindowFlags f = 0);
+ virtual ~PropertiesDialog();
+ void populate(int seriesPartId);
+
+ private:
+ void setupGui();
+ SmTreeModel *mDisplayModel;
+ FilesTreeModel *mFilesModel;
+ SeriesTreeModel *mSeriesModel;
+ int mCurrentId;
+ QLabel *mCaption;
+ QSplitter *mSplitter;
+ QTreeView *mFileView;
+ QTabWidget *mTab;
+ QPushButton *mOk;
+ QPushButton *mCancel;
+};
+
+#endif // PROPERTIESDIALOG_H