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  ·  Toutes les fonctions  ·  Vues d'ensemble  · 

QGraphicsObject Class Reference
[QtGui module]

The QGraphicsObject class provides a base class for all graphics items that require signals, slots and properties. More...

 #include <QGraphicsObject>

Inherits QObject and QGraphicsItem.

Inherited by QGraphicsSvgItem, QGraphicsTextItem, and QGraphicsWidget.

This class was introduced in Qt 4.6.


Properties

  • 1 property inherited from QObject

Public Functions

QGraphicsObject ( QGraphicsItem * parent = 0 )
void grabGesture ( Qt::GestureType gesture, Qt::GestureFlags flags = Qt::GestureFlags() )
void ungrabGesture ( Qt::GestureType gesture )

Signals

void enabledChanged ()
void opacityChanged ()
void parentChanged ()
void rotationChanged ()
void scaleChanged ()
void visibleChanged ()
void xChanged ()
void yChanged ()
void zChanged ()

Additional Inherited Members

  • 1 public slot inherited from QObject
  • 5 static public members inherited from QObject
  • 2 static public members inherited from QGraphicsItem
  • 7 protected functions inherited from QObject
  • 23 protected functions inherited from QGraphicsItem

Detailed Description

The QGraphicsObject class provides a base class for all graphics items that require signals, slots and properties.

The class extends a QGraphicsItem with QObject's signal/slot and property mechanisms. It maps many of QGraphicsItem's basic setters and getters to properties and adds notification signals for many of them.

Parents and Children

Each graphics object can be constructed with a parent item. This ensures that the item will be destroyed when its parent item is destroyed. Although QGraphicsObject inherits from both QObject and QGraphicsItem, you should use the functions provided by QGraphicsItem, not QObject, to manage the relationships between parent and child items.

The relationships between items can be explored using the parentItem() and childItems() functions. In the hierarchy of items in a scene, the parentObject() and parentWidget() functions are the equivalent of the QWidget::parent() and QWidget::parentWidget() functions for QWidget subclasses.

See also QGraphicsWidget.


Property Documentation

enabled : const bool

This property holds whether the item is enabled or not.

This property is declared in QGraphicsItem.

By default, this property is true.

Notifier signal:

void enabledChanged ()

See also QGraphicsItem::isEnabled(), QGraphicsItem::setEnabled(), and QGraphicsObject::enabledChanged().

opacity : const qreal

This property holds the opacity of the item.

Notifier signal:

void opacityChanged ()

See also QGraphicsItem::setOpacity() and QGraphicsItem::opacity().

parent : QGraphicsObject * const

This property holds the parent of the item.

Note: The item's parent is set independently of the parent object returned by QObject::parent().

Notifier signal:

void parentChanged ()

See also QGraphicsItem::setParentItem() and QGraphicsItem::parentObject().

pos : const QPointF

This property holds the position of the item.

Describes the items position.

See also QGraphicsItem::setPos() and QGraphicsItem::pos().

rotation : const qreal

This property holds the rotation of the item in degrees.

This specifies how many degrees to rotate the item around its transformOrigin. The default rotation is 0 degrees (i.e. not rotated at all).

Notifier signal:

void rotationChanged ()

scale : const qreal

This property holds the scale of the item.

A scale of less than 1 means the item will be displayed smaller than normal, and a scale of greater than 1 means the item will be displayed larger than normal. A negative scale means the item will be mirrored.

By default, items are displayed at a scale of 1 (i.e. at their normal size).

Scaling is from the item's transformOrigin.

Notifier signal:

void scaleChanged ()

transformOriginPoint : const QPointF

This property holds the transformation origin.

This property sets a specific point in the items coordiante system as the origin for scale and rotation.

See also scale, rotation, and QGraphicsItem::transformOriginPoint().

visible : const bool

This property holds whether the item is visible or not.

This property is declared in QGraphicsItem.

By default, this property is true.

Notifier signal:

void visibleChanged ()

See also QGraphicsItem::isVisible(), QGraphicsItem::setVisible(), and visibleChanged().

x : const qreal

This property holds the x position of the item.

Describes the items x position.

Notifier signal:

void xChanged ()

See also QGraphicsItem::setX(), setPos(), and xChanged().

y : const qreal

This property holds the y position of the item.

Describes the items y position.

Notifier signal:

void yChanged ()

See also QGraphicsItem::setY(), setPos(), and yChanged().

z : const qreal

This property holds the z value of the item.

Describes the items z value.

Notifier signal:

void zChanged ()

See also QGraphicsItem::setZValue(), zValue(), and zChanged().


Member Function Documentation

QGraphicsObject::QGraphicsObject ( QGraphicsItem * parent = 0 )

Constructs a QGraphicsObject with parent.

void QGraphicsObject::enabledChanged ()   [signal]

This signal gets emitted whenever the item get's enabled or disabled.

See also isEnabled().

void QGraphicsObject::grabGesture ( Qt::GestureType gesture, Qt::GestureFlags flags = Qt::GestureFlags() )

Subscribes the graphics object to the given gesture with specific flags.

See also ungrabGesture() and QGestureEvent.

void QGraphicsObject::opacityChanged ()   [signal]

This signal gets emitted whenever the opacity of the item changes

See also QGraphicsItem::opacity().

void QGraphicsObject::parentChanged ()   [signal]

This signal gets emitted whenever the parent of the item changes

void QGraphicsObject::rotationChanged ()   [signal]

This signal gets emitted whenever the roation of the item changes.

void QGraphicsObject::scaleChanged ()   [signal]

This signal is emitted when the scale of the item changes.

void QGraphicsObject::ungrabGesture ( Qt::GestureType gesture )

Unsubscribes the graphics object from the given gesture.

See also grabGesture() and QGestureEvent.

void QGraphicsObject::visibleChanged ()   [signal]

This signal gets emitted whenever the visibility of the item changes

See also visible.

void QGraphicsObject::xChanged ()   [signal]

This signal gets emitted whenever the x position of the item changes

See also pos().

void QGraphicsObject::yChanged ()   [signal]

This signal gets emitted whenever the y position of the item changes.

See also pos().

void QGraphicsObject::zChanged ()   [signal]

This signal gets emitted whenever the z value of the item changes.

See also pos().

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 103
  2. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 56
  3. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 90
  4. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 31
  5. Qt Commercial : Digia organise un webinar gratuit le 27 mars sur la conception d'interfaces utilisateur et d'applications avec le framework 0
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. 2017 : un quinquennat pour une nouvelle version du C++ ? Possible, selon Herb Sutter 11
Page suivante
  1. Linus Torvalds : le "C++ est un langage horrible", en justifiant le choix du C pour le système de gestion de version Git 100
  2. Comment prendre en compte l'utilisateur dans vos applications ? Pour un développeur, « 90 % des utilisateurs sont des idiots » 231
  3. Quel est LE livre que tout développeur doit lire absolument ? Celui qui vous a le plus marqué et inspiré 96
  4. Apple cède et s'engage à payer des droits à Nokia, le conflit des brevets entre les deux firmes s'achève 158
  5. Nokia porte à nouveau plainte contre Apple pour violation de sept nouveaux brevets 158
  6. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 103
  7. Quel est le code dont vous êtes le plus fier ? Pourquoi l'avez-vous écrit ? Et pourquoi vous a-t-il donné autant de satisfaction ? 83
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.6-snapshot
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