From 0c80bdbf5ee8ee1b29d2e6c6e8956cac10dea569 Mon Sep 17 00:00:00 2001 From: nds Date: Mon, 7 May 2018 15:40:18 +0300 Subject: [PATCH] 0029741: Samples - Inspector tool - wide icon size in table of TNamingNamedShape attribute in DFBrowser plugin --- .../DFBrowserPane_ItemDelegateButton.cxx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/tools/DFBrowserPane/DFBrowserPane_ItemDelegateButton.cxx b/tools/DFBrowserPane/DFBrowserPane_ItemDelegateButton.cxx index 39ede2c602..0cc2e2c715 100644 --- a/tools/DFBrowserPane/DFBrowserPane_ItemDelegateButton.cxx +++ b/tools/DFBrowserPane/DFBrowserPane_ItemDelegateButton.cxx @@ -21,6 +21,8 @@ #include #include +const int ICON_SIZE = 20; + // ======================================================================= // function : Constructor // purpose : @@ -38,8 +40,14 @@ DFBrowserPane_ItemDelegateButton::DFBrowserPane_ItemDelegateButton (QObject* the void DFBrowserPane_ItemDelegateButton::paint (QPainter* thePainter, const QStyleOptionViewItem& theOption, const QModelIndex& theIndex) const { - if (!myFreeRows.contains (theIndex.row())) - thePainter->drawPixmap (theOption.rect, myIcon.pixmap (20,20)); + if (myFreeRows.contains (theIndex.row())) + return; + + int aWidth = std::min (theOption.rect.width(), ICON_SIZE); + int aHeight = std::min (theOption.rect.height(), ICON_SIZE); + QPoint aTopLeft = theOption.rect.topLeft(); + thePainter->drawPixmap (QRect (theOption.rect.topLeft(), QPoint (aTopLeft.x() + aWidth, aTopLeft.y() + aHeight)), + myIcon.pixmap (ICON_SIZE, ICON_SIZE)); } // =======================================================================