diff options
Diffstat (limited to 'filesystemwidget.h')
-rw-r--r-- | filesystemwidget.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/filesystemwidget.h b/filesystemwidget.h index cf8774e..b04feca 100644 --- a/filesystemwidget.h +++ b/filesystemwidget.h @@ -35,11 +35,13 @@ class FilesystemWidget : public QWidget { QFileSystemModel *dirModel() { return mModel; }; const QString windowTitle() const { return mWindowTitle; }; PictureViewer *pictureViewer() { return mPicViewer; }; + bool isMounted(); signals: void windowTitle(const QString &); void statusbarMessage(const QString &); void newTemplate(const QString &); + void mounted(bool); public slots: void directoryChanged(const QModelIndex &selected, const QModelIndex &); @@ -56,6 +58,7 @@ class FilesystemWidget : public QWidget { void playSelected(const QString &player = QString()); void readSettings(); void writeSettings(); + void dvdMount(); private slots: void doRenameFile(); @@ -79,7 +82,6 @@ class FilesystemWidget : public QWidget { MessageDialog *mRenameDialog; QString mTemplate; qint64 mSize; - QAction *mRefreshAction; PictureViewer *mPicViewer; QString mLastDir; }; |