diff options
author | Arno <am@disconnect.de> | 2013-09-14 12:18:39 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2013-09-14 12:18:39 +0200 |
commit | ab474b97614825636831a81c7ea8097ef7b14af9 (patch) | |
tree | f5c2dd2e1e29ffe3f7d2704ad05dcee39c8a0a03 /filesystemwidget.h | |
parent | 361a5c3fbd2a693440491e3720e77a6245ac48d6 (diff) | |
download | SheMov-ab474b97614825636831a81c7ea8097ef7b14af9.tar.gz SheMov-ab474b97614825636831a81c7ea8097ef7b14af9.tar.bz2 SheMov-ab474b97614825636831a81c7ea8097ef7b14af9.zip |
Add toolbars to tabs
Remove global toolbar and add a toolbar to each tab instead.
Diffstat (limited to 'filesystemwidget.h')
-rw-r--r-- | filesystemwidget.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/filesystemwidget.h b/filesystemwidget.h index 751a805..6df9ce7 100644 --- a/filesystemwidget.h +++ b/filesystemwidget.h @@ -22,6 +22,7 @@ class PictureViewer2; class FileSystemModel; class SheMovIconProvider; class SmDirModel; +class QToolBar; class FilesystemWidget : public QWidget { Q_OBJECT @@ -34,6 +35,7 @@ class FilesystemWidget : public QWidget { SmDirModel *fileModel() { return mFileModel; } const QString windowTitle() const { return mWindowTitle; } PictureViewer2 *pictureViewer() { return mPicViewer; } + QToolBar *toolBar() { return mToolBar; } bool isMounted(); signals: @@ -82,6 +84,7 @@ class FilesystemWidget : public QWidget { FileView *mFileView; FilesystemDirProxy *mDirProxy; FilesystemFileProxy *mFileProxy; + QToolBar *mToolBar; QLineEdit *mDirEdit; QString mWindowTitle; QString mTemplate; |