Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

Qt 3 Support Members for QMenu

The following class members are part of the Qt 3 support layer. They are provided to help you port old code to Qt 4. We advise against using them in new code.

Public Functions

  • QKeySequence accel ( int id ) const
  • void activateItemAt ( int index )
  • void changeItem ( int id, const QString & text )
  • void changeItem ( int id, const QPixmap & pixmap )
  • void changeItem ( int id, const QIcon & icon, const QString & text )
  • bool connectItem ( int id, const QObject * receiver, const char * member )
  • uint count () const
  • bool disconnectItem ( int id, const QObject * receiver, const char * member )
  • QMenuItem * findItem ( int id ) const
  • QMenuItem * findPopup ( QMenu * popup, int * index )
  • int frameWidth () const
  • QIcon iconSet ( int id ) const
  • int idAt ( int index ) const
  • int indexOf ( int id ) const
  • int insertItem ( const QString & text, const QObject * receiver, const char * member, const QKeySequence & shortcut = 0, int id = -1, int index = -1 )
  • int insertItem ( const QIcon & icon, const QString & text, const QObject * receiver, const char * member, const QKeySequence & shortcut = 0, int id = -1, int index = -1 )
  • int insertItem ( const QPixmap & pixmap, const QObject * receiver, const char * member, const QKeySequence & shortcut = 0, int id = -1, int index = -1 )
  • int insertItem ( const QString & text, int id = -1, int index = -1 )
  • int insertItem ( const QIcon & icon, const QString & text, int id = -1, int index = -1 )
  • int insertItem ( const QString & text, QMenu * popup, int id = -1, int index = -1 )
  • int insertItem ( const QIcon & icon, const QString & text, QMenu * popup, int id = -1, int index = -1 )
  • int insertItem ( const QPixmap & pixmap, int id = -1, int index = -1 )
  • int insertItem ( const QPixmap & pixmap, QMenu * popup, int id = -1, int index = -1 )
  • int insertItem ( QMenuItem * item, int id = -1, int index = -1 )
  • int insertSeparator ( int index = -1 )
  • int insertTearOffHandle ( int a = 0, int b = 0 )
  • bool isCheckable () const
  • bool isItemActive ( int id ) const
  • bool isItemChecked ( int id ) const
  • bool isItemEnabled ( int id ) const
  • bool isItemVisible ( int id ) const
  • QFont itemFont ( int id ) const
  • QRect itemGeometry ( int index )
  • int itemParameter ( int id ) const
  • QPixmap pixmap ( int id ) const
  • void popup ( const QPoint & pos, int indexAtPoint )
  • void removeItem ( int id )
  • void removeItemAt ( int index )
  • void setAccel ( const QKeySequence & key, int id )
  • void setActiveItem ( int id )
  • void setCheckable ( bool checkable )
  • void setId ( int index, int id )
  • void setItemChecked ( int id, bool check )
  • void setItemEnabled ( int id, bool enable )
  • void setItemFont ( int id, const QFont & font )
  • bool setItemParameter ( int id, int param )
  • void setItemVisible ( int id, bool visible )
  • void setWhatsThis ( int id, const QString & w )
  • QString text ( int id ) const
  • QString whatsThis ( int id ) const
  • 60 public functions inherited from QWidget
  • 8 public functions inherited from QObject
  • 8 public functions inherited from QPaintDevice

Signals

Protected Functions

  • 1 protected function inherited from QObject

Member Function Documentation

QKeySequence QMenu::accel ( int id ) const

Use shortcut() on the relevant QAction instead.

See also setAccel().

void QMenu::activateItemAt ( int index )

Use activate() on the relevant QAction instead.

void QMenu::activated ( int itemId )   [signal]

Use triggered() instead.

void QMenu::changeItem ( int id, const QString & text )

Use setText() on the relevant QAction instead.

void QMenu::changeItem ( int id, const QPixmap & pixmap )

This is an overloaded member function, provided for convenience.

Use setText() on the relevant QAction instead.

void QMenu::changeItem ( int id, const QIcon & icon, const QString & text )

This is an overloaded member function, provided for convenience.

Use setIcon() and setText() on the relevant QAction instead.

int QMenu::columns () const   [protected]

Use columnCount() instead.

bool QMenu::connectItem ( int id, const QObject * receiver, const char * member )

Use connect() on the relevant QAction instead.

uint QMenu::count () const

Use actions().count() instead.

bool QMenu::disconnectItem ( int id, const QObject * receiver, const char * member )

Use disconnect() on the relevant QAction instead.

QMenuItem * QMenu::findItem ( int id ) const

Use actions instead.

QMenuItem * QMenu::findPopup ( QMenu * popup, int * index )

Use QAction and actions() instead.

int QMenu::frameWidth () const

Use style()->pixelMetric(QStyle::PM_MenuPanelWidth, this) instead.

void QMenu::highlighted ( int itemId )   [signal]

Use hovered() instead.

QIcon QMenu::iconSet ( int id ) const

Use icon() on the relevant QAction instead.

int QMenu::idAt ( int index ) const

Use actions instead.

int QMenu::indexOf ( int id ) const

Use actions().indexOf(action) on the relevant QAction instead.

int QMenu::insertItem ( const QString & text, const QObject * receiver, const char * member, const QKeySequence & shortcut = 0, int id = -1, int index = -1 )

Use insertAction() or one of the addAction() overloads instead.

int QMenu::insertItem ( const QIcon & icon, const QString & text, const QObject * receiver, const char * member, const QKeySequence & shortcut = 0, int id = -1, int index = -1 )

This is an overloaded member function, provided for convenience.

Use insertAction() or one of the addAction() overloads instead.

int QMenu::insertItem ( const QPixmap & pixmap, const QObject * receiver, const char * member, const QKeySequence & shortcut = 0, int id = -1, int index = -1 )

This is an overloaded member function, provided for convenience.

Use insertAction() or one of the addAction() overloads instead.

int QMenu::insertItem ( const QString & text, int id = -1, int index = -1 )

This is an overloaded member function, provided for convenience.

Use insertAction() or one of the addAction() overloads instead.

int QMenu::insertItem ( const QIcon & icon, const QString & text, int id = -1, int index = -1 )

This is an overloaded member function, provided for convenience.

Use insertAction() or one of the addAction() overloads instead.

int QMenu::insertItem ( const QString & text, QMenu * popup, int id = -1, int index = -1 )

This is an overloaded member function, provided for convenience.

Use insertMenu() or one of the addMenu() overloads instead.

int QMenu::insertItem ( const QIcon & icon, const QString & text, QMenu * popup, int id = -1, int index = -1 )

This is an overloaded member function, provided for convenience.

Use insertMenu() or one of the addMenu() overloads instead.

int QMenu::insertItem ( const QPixmap & pixmap, int id = -1, int index = -1 )

This is an overloaded member function, provided for convenience.

Use insertAction() or one of the addAction() overloads instead.

int QMenu::insertItem ( const QPixmap & pixmap, QMenu * popup, int id = -1, int index = -1 )

This is an overloaded member function, provided for convenience.

Use insertMenu() or one of the addMenu() overloads instead.

int QMenu::insertItem ( QMenuItem * item, int id = -1, int index = -1 )

This is an overloaded member function, provided for convenience.

Use insertAction() or one of the addAction() overloads instead.

int QMenu::insertSeparator ( int index = -1 )

This is an overloaded member function, provided for convenience.

Use the insertSeparator() overload that takes a QAction * parameter instead.

int QMenu::insertTearOffHandle ( int a = 0, int b = 0 )

Use setTearOffEnabled() instead.

bool QMenu::isCheckable () const

Not necessary anymore. Always returns true.

bool QMenu::isItemActive ( int id ) const

Use activeAction() instead.

bool QMenu::isItemChecked ( int id ) const

Use isChecked() on the relevant QAction instead.

bool QMenu::isItemEnabled ( int id ) const

Use isEnabled() on the relevant QAction instead.

bool QMenu::isItemVisible ( int id ) const

Use isVisible() on the relevant QAction instead.

int QMenu::itemAtPos ( const QPoint & p, bool ignoreSeparator = true )   [protected]

Use actions instead.

QFont QMenu::itemFont ( int id ) const

Use font() on the relevant QAction instead.

See also setItemFont().

QRect QMenu::itemGeometry ( int index )

Use actionGeometry() on the relevant QAction instead.

int QMenu::itemHeight ( int index )   [protected]

Use actionGeometry(actions().value(index)).height() instead.

int QMenu::itemHeight ( QMenuItem * mi )   [protected]

This is an overloaded member function, provided for convenience.

Use actionGeometry() instead.

int QMenu::itemParameter ( int id ) const

Use QAction::data() instead.

See also setItemParameter().

QPixmap QMenu::pixmap ( int id ) const

Use QPixmap(icon()) on the relevant QAction instead.

void QMenu::popup ( const QPoint & pos, int indexAtPoint )

This is an overloaded member function, provided for convenience.

Use popup() on the relevant QAction instead.

void QMenu::removeItem ( int id )

Use removeAction() instead.

void QMenu::removeItemAt ( int index )

Use removeAction() instead.

void QMenu::setAccel ( const QKeySequence & key, int id )

Use setShortcut() on the relevant QAction instead.

See also accel().

void QMenu::setActiveItem ( int id )

Use setActiveAction() instead.

void QMenu::setCheckable ( bool checkable )

Not necessary anymore. The checkable parameter is ignored.

See also isCheckable().

void QMenu::setId ( int index, int id )

Use actions instead.

void QMenu::setItemChecked ( int id, bool check )

Use setChecked() on the relevant QAction instead.

See also isItemChecked().

void QMenu::setItemEnabled ( int id, bool enable )

Use setEnabled() on the relevant QAction instead.

See also isItemEnabled().

void QMenu::setItemFont ( int id, const QFont & font )

Use setFont() on the relevant QAction instead.

See also itemFont().

bool QMenu::setItemParameter ( int id, int param )

Use QAction::setData() instead.

See also itemParameter().

void QMenu::setItemVisible ( int id, bool visible )

Use setVisible() on the relevant QAction instead.

See also isItemVisible().

void QMenu::setWhatsThis ( int id, const QString & w )

Use setWhatsThis() on the relevant QAction instead.

See also whatsThis().

QString QMenu::text ( int id ) const

Use text() on the relevant QAction instead.

QString QMenu::whatsThis ( int id ) const

Use whatsThis() on the relevant QAction instead.

See also setWhatsThis().

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 64
  2. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  3. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  5. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  6. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
  7. La rubrique Qt a besoin de vous ! 1
Page suivante

Le Qt Developer Network au hasard

Logo

Comment fermer une application

Le Qt Developer Network est un réseau de développeurs Qt anglophone, où ils peuvent partager leur expérience sur le framework. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 4.2
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web