]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/selectionmanager.cpp
move statusbar code into the directory "statusbar"
[dolphin.git] / src / selectionmanager.cpp
index 129e7e2ca7407cf16f70f02297b0fb68be073a29..0d3efae09b6aaa081d1bfd8f325cd29cb947f29a 100644 (file)
@@ -79,23 +79,28 @@ void SelectionManager::slotEntered(const QModelIndex& index)
             m_connected = true;
         }
 
-        const QRect rect = m_view->visualRect(index);
-
-        // align the toggle on the bottom left of the item
-        const int gap = 2;
-        const int x = rect.left() + gap;
-        const int y = rect.top() + gap;
-        m_toggle->move(QPoint(x, y));
-
         // increase the size of the toggle for large items
-        if (rect.height() >= KIconLoader::SizeEnormous) {
+        const int height = m_view->iconSize().height();
+        if (height >= KIconLoader::SizeEnormous) {
             m_toggle->resize(KIconLoader::SizeMedium, KIconLoader::SizeMedium);
-        } else if (rect.height() >= KIconLoader::SizeHuge) {
+        } else if (height >= KIconLoader::SizeLarge) {
             m_toggle->resize(KIconLoader::SizeSmallMedium, KIconLoader::SizeSmallMedium);
         } else {
             m_toggle->resize(KIconLoader::SizeSmall, KIconLoader::SizeSmall);
         }
 
+        const QRect rect = m_view->visualRect(index);
+        int x = rect.left();
+        int y = rect.top();
+        if (height < KIconLoader::SizeSmallMedium) {
+            // The height is nearly equal to the smallest toggle height.
+            // Assure that the toggle is vertically centered instead
+            // of aligned on the top and gets more horizontal gap.
+            x += 2;
+            y += (rect.height() - m_toggle->height()) / 2;
+        }
+        m_toggle->move(QPoint(x, y));
+
         QItemSelectionModel* selModel = m_view->selectionModel();
         m_toggle->setChecked(selModel->isSelected(index));
         m_toggle->show();