summaryrefslogtreecommitdiffstats
path: root/src/widgets/qpopupmenu.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-11-01 22:50:23 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-11-01 22:50:23 -0500
commit180abfff4d31bc8db66fea92cf070ff21b7a5e2f (patch)
tree4f999f42be0434280c65a9f3945e7a06c9b63739 /src/widgets/qpopupmenu.cpp
parent294ec2ee1fca27847ba0e913a3b11f7382e0492e (diff)
downloadqt3-180abfff4d31bc8db66fea92cf070ff21b7a5e2f.tar.gz
qt3-180abfff4d31bc8db66fea92cf070ff21b7a5e2f.zip
Add accessor methods to list view items and popup menus for styling
Diffstat (limited to 'src/widgets/qpopupmenu.cpp')
-rw-r--r--src/widgets/qpopupmenu.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/widgets/qpopupmenu.cpp b/src/widgets/qpopupmenu.cpp
index f20cbfc..086c423 100644
--- a/src/widgets/qpopupmenu.cpp
+++ b/src/widgets/qpopupmenu.cpp
@@ -2882,5 +2882,32 @@ QPopupMenu::updateScrollerState()
d->scroll.topScrollableIndex++;
}
+/*!
+ Calculates the height in pixels of the menu item \a mi.
+*/
+int QPopupMenu::menuItemHeight( QMenuItem *mi, QFontMetrics fm )
+{
+ if ( mi->widget() )
+ return mi->widget()->height();
+ if ( mi->custom() && mi->custom()->fullSpan() )
+ return mi->custom()->sizeHint().height();
+
+ int h = 0;
+ if ( mi->isSeparator() ) // separator height
+ h = 2;
+ else if ( mi->pixmap() ) // pixmap height
+ h = mi->pixmap()->height();
+ else // text height
+ h = fm.height();
+
+ if ( !mi->isSeparator() && mi->iconSet() != 0 )
+ h = QMAX(h, mi->iconSet()->pixmap( QIconSet::Small,
+ QIconSet::Normal ).height());
+ if ( mi->custom() )
+ h = QMAX(h, mi->custom()->sizeHint().height());
+
+ return h;
+}
+
#endif // QT_NO_POPUPMENU