1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0029741: Samples - Inspector tool - wide icon size in table of TNamingNamedShape attribute in DFBrowser plugin

This commit is contained in:
nds 2018-05-07 15:40:18 +03:00 committed by abv
parent 72e4db54e7
commit 0c80bdbf5e

View File

@ -21,6 +21,8 @@
#include <QPainter>
#include <Standard_WarningsRestore.hxx>
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));
}
// =======================================================================