diff options
author | Arno <arno@disconnect.de> | 2018-07-14 14:30:47 +0200 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-07-14 14:30:47 +0200 |
commit | f6eb9eb58568b5fde537cc8119914dc77b25b46a (patch) | |
tree | 6705b4a8648d1ff495d968f239336a6f41bc2672 /picturelistview.h | |
parent | d82fb61156a3addbd798d07f944e9f5a8b51ae5d (diff) | |
download | SheMov-f6eb9eb58568b5fde537cc8119914dc77b25b46a.tar.gz SheMov-f6eb9eb58568b5fde537cc8119914dc77b25b46a.tar.bz2 SheMov-f6eb9eb58568b5fde537cc8119914dc77b25b46a.zip |
Rename PictureView to PictureListView
Rename it to make clear(er) that it is a TreeView, not a picture viewer.
Also, remove it from pictureswidget.{h,cpp} into a separate file.
Diffstat (limited to 'picturelistview.h')
-rw-r--r-- | picturelistview.h | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/picturelistview.h b/picturelistview.h new file mode 100644 index 0000000..9e86372 --- /dev/null +++ b/picturelistview.h @@ -0,0 +1,62 @@ +/* + 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 PICTURELISTVIEW_H +#define PICTURELISTVIEW_H + +#include <QList> +#include <QSortFilterProxyModel> + +#include "smtreeview.h" +#include "picfilesmodel.h" +#include "pictureviewer2.h" +#include "hoverwindow.h" + +class PictureListView : public SmTreeView { + Q_OBJECT + public: + explicit PictureListView(QWidget *parent = 0); + QList<int> fileMappings() { return mFilesMappings; } + PicFilesModel *filesModel() { return mModel; } + QSortFilterProxyModel *proxy() { return mProxy; } + void setPV(PictureViewer2 *pv) { mPV = pv; } + PictureViewer2 *PV() { return mPV; } + + public slots: + void mappingChanged(int pMapId); + void deletePics(); + void refresh(); + void setPVData(int replace = false); + void setPVAll(); + void setHoverWinVisible(bool visible) const; + + protected: + virtual void hideEvent(QHideEvent *); + virtual bool event(QEvent *e); + virtual void contextMenuEvent(QContextMenuEvent *e); + + private slots: + void selectedFilesChanged(); + + signals: + void newMappings(QString); + void numSelected(int); + void selectedSize(qint64); + void editPicsMappings(); + + private: + HoverWindow *mHoverWin; + QModelIndex mCurHover; + QSortFilterProxyModel *mProxy; + PicFilesModel *mModel; + int mCursorOffset; + QList<int> mFilesMappings; + PictureViewer2 *mPV; + MappingTreeModel *mMappingTreeModel; +}; + +#endif // PICTURELISTVIEW_H |