diff options
author | Arno <arno@disconnect.de> | 2016-09-04 12:18:36 +0200 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2016-09-04 12:18:36 +0200 |
commit | da7af051e0e4c296ded3b6c7dd3d3beb20055c60 (patch) | |
tree | d5f96af0e174068f8261782f4ea32dd30402b7fa /filewidget.cpp | |
parent | 6faf839f511102c6daa69ffb9d8d7231656d7c09 (diff) | |
download | ShemovCleaner-da7af051e0e4c296ded3b6c7dd3d3beb20055c60.tar.gz ShemovCleaner-da7af051e0e4c296ded3b6c7dd3d3beb20055c60.tar.bz2 ShemovCleaner-da7af051e0e4c296ded3b6c7dd3d3beb20055c60.zip |
Add toolbar to FileWidget
Diffstat (limited to 'filewidget.cpp')
-rw-r--r-- | filewidget.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/filewidget.cpp b/filewidget.cpp index f1972cf..2d6acac 100644 --- a/filewidget.cpp +++ b/filewidget.cpp @@ -97,9 +97,12 @@ void FileWidget::setupGui(){ mFileDisplay = new FileDisplay(this); mMenuBar = new QMenuBar; + mToolBar = new QToolBar; + mToolBar->setIconSize(QSize(16, 16)); QVBoxLayout *mainLayout = new QVBoxLayout; mainLayout->addWidget(mMenuBar); + mainLayout->addWidget(mToolBar); mainLayout->addWidget(dirGB); mainLayout->addWidget(filterGB); mainLayout->addWidget(filesGB); |