]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Make the search box more compact
authorIsmael Asensio <isma.af@gmail.com>
Thu, 7 Nov 2019 00:34:19 +0000 (01:34 +0100)
committerIsmael Asensio <isma.af@gmail.com>
Thu, 7 Nov 2019 00:51:25 +0000 (01:51 +0100)
Summary:
Reduce the spacing between widgets and remove the content margins on the extended search options to have a more compact and space-saving layout.
Currently, some widgets are not even aligned.
This will be even more important if we remove the toggle button for 'More Options'.

CCBUG: 386754

Test Plan:
BEFORE: {F7681182}
AFTER: {F7681184}

Reviewers: elvisangelaccio, ngraham, #dolphin, #vdg

Reviewed By: elvisangelaccio, ngraham, #dolphin, #vdg

Subscribers: kfm-devel

Tags: #dolphin

Differential Revision: https://phabricator.kde.org/D25028

src/global.h
src/search/dolphinfacetswidget.cpp
src/search/dolphinsearchbox.cpp

index fb58036afcc4d96d541186c94bf264c995f9cb43..d1a3f4f52cccf0299002d57884874abbd7a4346b 100644 (file)
@@ -52,6 +52,7 @@ namespace Dolphin {
      * TODO: Move this somewhere global to all KDE apps, not just Dolphin
      */
     const int VERTICAL_SPACER_HEIGHT = 18;
+    const int LAYOUT_SPACING_SMALL = 2;
 }
 
 #endif //GLOBAL_H
index 1b87e7c3d3bb4c975769cc75149ef0fc51d8dafc..1827192259dcd4e6afa1fbe6aff2db1eae594e94 100644 (file)
@@ -64,6 +64,7 @@ DolphinFacetsWidget::DolphinFacetsWidget(QWidget* parent) :
     initComboBox(m_ratingSelector);
 
     QHBoxLayout* topLayout = new QHBoxLayout(this);
+    topLayout->setContentsMargins(0, 0, 0, 0);
     topLayout->addWidget(m_typeSelector);
     topLayout->addWidget(m_dateSelector);
     topLayout->addWidget(m_ratingSelector);
index f31d739b42d38493477162907383e8b74124fea6..20f767cbca9ee56f59c315c97dbf6dd3c047a636 100644 (file)
@@ -17,6 +17,7 @@
 *    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA           *
 * **************************************************************************/
 
+#include "global.h"
 #include "dolphinsearchbox.h"
 
 #include "dolphin_searchsettings.h"
@@ -417,11 +418,13 @@ void DolphinSearchBox::init()
     m_facetsWidget = new DolphinFacetsWidget(this);
     m_facetsWidget->installEventFilter(this);
     m_facetsWidget->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Maximum);
+    m_facetsWidget->layout()->setSpacing(Dolphin::LAYOUT_SPACING_SMALL);
     connect(m_facetsWidget, &DolphinFacetsWidget::facetChanged, this, &DolphinSearchBox::slotFacetChanged);
 
     // Apply layout for the options
     QHBoxLayout* optionsLayout = new QHBoxLayout();
     optionsLayout->setContentsMargins(0, 0, 0, 0);
+    optionsLayout->setSpacing(Dolphin::LAYOUT_SPACING_SMALL);
     optionsLayout->addWidget(m_fileNameButton);
     optionsLayout->addWidget(m_contentButton);
     optionsLayout->addWidget(m_separator);
@@ -447,6 +450,7 @@ void DolphinSearchBox::init()
 
     m_topLayout = new QVBoxLayout(this);
     m_topLayout->setContentsMargins(0, 0, 0, 0);
+    m_topLayout->setSpacing(Dolphin::LAYOUT_SPACING_SMALL);
     m_topLayout->addLayout(searchInputLayout);
     m_topLayout->addWidget(m_optionsScrollArea);
     m_topLayout->addWidget(m_facetsWidget);