QCursor Class Reference |
Shape | Qt::CursorShape Value | Cursor Name | Shape | Qt::CursorShape Value | Cursor Name |
---|---|---|---|---|---|
Qt::ArrowCursor | left_ptr | Qt::SizeVerCursor | size_ver | ||
Qt::UpArrowCursor | up_arrow | Qt::SizeHorCursor | size_hor | ||
Qt::CrossCursor | cross | Qt::SizeBDiagCursor | size_bdiag | ||
Qt::IBeamCursor | ibeam | Qt::SizeFDiagCursor | size_fdiag | ||
Qt::WaitCursor | wait | Qt::SizeAllCursor | size_all | ||
Qt::BusyCursor | left_ptr_watch | Qt::SplitVCursor | split_v | ||
Qt::ForbiddenCursor | forbidden | Qt::SplitHCursor | split_h | ||
Qt::PointingHandCursor | pointing_hand | Qt::OpenHandCursor | openhand | ||
Qt::WhatsThisCursor | whats_this | Qt::ClosedHandCursor | closedhand |
See also QWidget and GUI Design Handbook: Cursors.
Constructs a cursor with the default arrow shape.
Constructs a cursor with the specified shape.
See Qt::CursorShape for a list of shapes.
See also setShape().
Constructs a custom bitmap cursor.
bitmap and mask make up the bitmap. hotX and hotY define the cursor's hot spot.
If hotX is negative, it is set to the bitmap().width()/2. If hotY is negative, it is set to the bitmap().height()/2.
The cursor bitmap (B) and mask (M) bits are combined like this:
Use the global Qt color Qt::color0 to draw 0-pixels and Qt::color1 to draw 1-pixels in the bitmaps.
Valid cursor sizes depend on the display hardware (or the underlying window system). We recommend using 32 x 32 cursors, because this size is supported on all platforms. Some platforms also support 16 x 16, 48 x 48, and 64 x 64 cursors.
See also QBitmap::QBitmap() and QBitmap::setMask().
Constructs a custom pixmap cursor.
pixmap is the image. It is usual to give it a mask (set using QPixmap::setMask()). hotX and hotY define the cursor's hot spot.
If hotX is negative, it is set to the pixmap().width()/2. If hotY is negative, it is set to the pixmap().height()/2.
Valid cursor sizes depend on the display hardware (or the underlying window system). We recommend using 32 x 32 cursors, because this size is supported on all platforms. Some platforms also support 16 x 16, 48 x 48, and 64 x 64 cursors.
See also QPixmap::QPixmap() and QPixmap::setMask().
Constructs a copy of the cursor c.
Constructs a Qt cursor from the given Windows cursor.
Warning: This function is only available on Windows.
See also handle().
Constructs a Qt cursor from the given handle.
Warning: This function is only available on X11.
See also handle().
Destroys the cursor.
Returns the cursor bitmap, or 0 if it is one of the standard cursors.
Returns a platform-specific cursor handle. The HCURSOR_or_HANDLE type is HCURSOR on Windows and Qt::HANDLE on X11 and Mac OS X. On Qtopia Core it is an integer.
Warning: Using the value returned by this function is not portable.
Returns the cursor hot spot, or (0, 0) if it is one of the standard cursors.
Returns the cursor bitmap mask, or 0 if it is one of the standard cursors.
Returns the cursor pixmap. This is only valid if the cursor is a pixmap cursor.
Returns the position of the cursor (hot spot) in global screen coordinates.
You can call QWidget::mapFromGlobal() to translate it to widget coordinates.
See also setPos(), QWidget::mapFromGlobal(), and QWidget::mapToGlobal().
Moves the cursor (hot spot) to the global screen position (x, y).
You can call QWidget::mapToGlobal() to translate widget coordinates to global screen coordinates.
See also pos(), QWidget::mapFromGlobal(), and QWidget::mapToGlobal().
This is an overloaded member function, provided for convenience.
Moves the cursor (hot spot) to the global screen position at point p.
Sets the cursor to the shape identified by shape.
See Qt::CursorShape for the list of cursor shapes.
See also shape().
Returns the cursor shape identifier. The return value is one of the Qt::CursorShape enum values (cast to an int).
See also setShape().
Returns the cursor as a QVariant.
Assigns c to this cursor and returns a reference to this cursor.
This is an overloaded member function, provided for convenience.
Writes the cursor to the stream.
See also Format of the QDataStream operators.
This is an overloaded member function, provided for convenience.
Reads the cursor from the stream.
See also Format of the QDataStream operators.
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.3 | |
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 ! |
Copyright © 2000-2012 - www.developpez.com