Eneboo - Documentación para desarrolladores
Métodos públicos
Referencia de la Clase QCustomMenuItem

The QCustomMenuItem class is an abstract base class for custom menu items in popup menus. Más...

#include <qmenudata.h>

Diagrama de herencias de QCustomMenuItem
Qt Qt QComboBoxPopupItem QTearOffMenuItem

Lista de todos los miembros.

Métodos públicos

 QCustomMenuItem ()
virtual ~QCustomMenuItem ()
virtual bool fullSpan () const
virtual bool isSeparator () const
virtual void setFont (const QFont &font)
virtual void paint (QPainter *p, const QColorGroup &cg, bool act, bool enabled, int x, int y, int w, int h)=0
virtual QSize sizeHint ()=0
 QCustomMenuItem ()
virtual ~QCustomMenuItem ()
virtual bool fullSpan () const
virtual bool isSeparator () const
virtual void setFont (const QFont &font)
virtual void paint (QPainter *p, const QColorGroup &cg, bool act, bool enabled, int x, int y, int w, int h)=0
virtual QSize sizeHint ()=0

Descripción detallada

The QCustomMenuItem class is an abstract base class for custom menu items in popup menus.

A custom menu item is a menu item that is defined by two pure virtual functions, paint() and sizeHint(). The size hint tells the menu how much space it needs to reserve for this item, and paint is called whenever the item needs painting.

This simple mechanism allows you to create all kinds of application specific menu items. Examples are items showing different fonts in a word processor or menus that allow the selection of drawing utilities in a vector drawing program.

A custom item is inserted into a popup menu with QPopupMenu::insertItem().

By default, a custom item can also have an icon and a keyboard accelerator. You can reimplement fullSpan() to return TRUE if you want the item to span the entire popup menu width. This is particularly useful for labels.

If you want the custom item to be treated just as a separator, reimplement isSeparator() to return TRUE.

Note that you can insert pixmaps or bitmaps as items into a popup menu without needing to create a QCustomMenuItem. However, custom menu items offer more flexibility, and -- especially important with Windows style -- provide the possibility of drawing the item with a different color when it is highlighted.

menu/menu.cpp shows a simple example how custom menu items can be used.

Note: the current implementation of QCustomMenuItem will not recognize shortcut keys that are from text with ampersands. Normal accelerators work though.

qpopmenu-fancy.png
Ver también:
QMenuData, QPopupMenu

Documentación del constructor y destructor

QCustomMenuItem::QCustomMenuItem ( )

Constructs a QCustomMenuItem

QCustomMenuItem::~QCustomMenuItem ( ) [virtual]

Destroys a QCustomMenuItem

QCustomMenuItem::QCustomMenuItem ( )
virtual QCustomMenuItem::~QCustomMenuItem ( ) [virtual]

Documentación de las funciones miembro

bool QCustomMenuItem::fullSpan ( ) const [virtual]

Returns TRUE if this item wants to span the entire popup menu width; otherwise returns FALSE. The default is FALSE, meaning that the menu may show an icon and an accelerator key for this item as well.

Reimplementado en QComboBoxPopupItem y QTearOffMenuItem.

virtual bool QCustomMenuItem::fullSpan ( ) const [virtual]

Reimplementado en QComboBoxPopupItem y QTearOffMenuItem.

bool QCustomMenuItem::isSeparator ( ) const [virtual]

Returns TRUE if this item is just a separator; otherwise returns FALSE.

virtual bool QCustomMenuItem::isSeparator ( ) const [virtual]
virtual void QCustomMenuItem::paint ( QPainter p,
const QColorGroup cg,
bool  act,
bool  enabled,
int  x,
int  y,
int  w,
int  h 
) [pure virtual]
void QCustomMenuItem::paint ( QPainter p,
const QColorGroup cg,
bool  act,
bool  enabled,
int  x,
int  y,
int  w,
int  h 
) [pure virtual]

Paints this item. When this function is invoked, the painter p is set to a font and foreground color suitable for a menu item text using color group cg. The item is active if act is TRUE and enabled if enabled is TRUE. The geometry values x, y, w and h specify where to draw the item.

Do not draw any background, this has already been done by the popup menu according to the current GUI style.

Implementado en QComboBoxPopupItem y QTearOffMenuItem.

void QCustomMenuItem::setFont ( const QFont font) [virtual]

Sets the font of the custom menu item to font.

This function is called whenever the font in the popup menu changes. For menu items that show their own individual font entry, you want to ignore this.

virtual void QCustomMenuItem::setFont ( const QFont font) [virtual]
virtual QSize QCustomMenuItem::sizeHint ( ) [pure virtual]
QSize QCustomMenuItem::sizeHint ( ) [pure virtual]

Returns the item's size hint.

Implementado en QComboBoxPopupItem y QTearOffMenuItem.


La documentación para esta clase fue generada a partir de los siguientes ficheros:
 Todo Clases Namespaces Archivos Funciones Variables 'typedefs' Enumeraciones Valores de enumeraciones Propiedades Amigas 'defines'