diff options
Diffstat (limited to 'filesystemwidget.h')
-rw-r--r-- | filesystemwidget.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/filesystemwidget.h b/filesystemwidget.h index cef32c4..916ca83 100644 --- a/filesystemwidget.h +++ b/filesystemwidget.h @@ -25,6 +25,9 @@ class FilesystemWidget : public QWidget { ~FilesystemWidget() {}; FileView *fileView() { return mFileView; }; + signals: + void windowTitle(const QString &); + public slots: void directoryChanged(const QModelIndex &selected, const QModelIndex &); void directoryEdited(); @@ -32,6 +35,7 @@ class FilesystemWidget : public QWidget { void parentDir(); private: + void setWindowTitle(const QString &dir); QDirModel *mModel; QTreeView *mDirView; FileView *mFileView; |