diff options
Diffstat (limited to 'pictureviewer2.h')
-rw-r--r-- | pictureviewer2.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/pictureviewer2.h b/pictureviewer2.h index 3c57005..3813d93 100644 --- a/pictureviewer2.h +++ b/pictureviewer2.h @@ -58,7 +58,6 @@ class PictureViewer2 : public QGraphicsView { void setShowMappingItem(bool show) { mShowMappingItem = show; } void setShowMarkItem(bool show) { mShowMarkItem = show; } void setCurrentDir(const QString &curDir) { mCurrentDir = curDir; } - const PicDataList marked() { return mMarkedFiles; } PicData picData(const QString &fullPath, int fileId = -1); public slots: @@ -70,12 +69,9 @@ class PictureViewer2 : public QGraphicsView { void startSlide(); void readSettings(); void writeSettings(); - void initActions(); - void copyCurrent(); void deleteCurrent(); void showNewPicsDialog(); void addToNewPics(); - void markCurrent(); void clearMarks(); void showSlide(); void doSlide(); @@ -84,8 +80,6 @@ class PictureViewer2 : public QGraphicsView { virtual void wheelEvent(QWheelEvent *event); virtual void contextMenuEvent(QContextMenuEvent *e); virtual void keyPressEvent(QKeyEvent *e); - virtual void showEvent(QShowEvent *e); - virtual void hideEvent(QHideEvent *e); virtual void resizeEvent(QResizeEvent *event); private slots: @@ -126,9 +120,6 @@ class PictureViewer2 : public QGraphicsView { QPointF mInfoPos; QPointF mMappingPos; QPointF mBoundingPos; - QAction *mHideA; - QAction *mMarkA; - QAction *mDeleteA; PicFilesModel *mPicFilesModel; PicData mCurPicData; NewPicsDialog *mNewPicsDlg; |