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  · 

QDirectPainter Class Reference
[QtGui module]

The QDirectPainter class provides direct access to the underlying hardware in Qtopia Core. More...

 #include <QDirectPainter>

This class is under development and is subject to change.

Inherits QObject.

Public Types

Public Functions

  • 29 public functions inherited from QObject

Static Public Members

  • 5 static public members inherited from QObject

Additional Inherited Members

  • 1 property inherited from QObject
  • 1 public slot inherited from QObject
  • 1 signal inherited from QObject
  • 7 protected functions inherited from QObject

Detailed Description

The QDirectPainter class provides direct access to the underlying hardware in Qtopia Core.

Note that this class is only available in Qtopia Core.

QDirectPainter allows a client application to reserve a region of the framebuffer and render directly onto the screen. There are two ways of using the QDirectPainter class: You can either reserve a region using the provided static functions, or you can instantiate an object and make use of its more dynamic API.

Static Allocation

Using the static approach, the client application gets the complete control over the reserved region, i.e. the affected region will never be modified by the screen driver.

The reserveRegion() function attempts to reserve the given region and returns the region actually reserved. The reserved region can also be retrieved using the reservedRegion() function.

Dynamic Allocation

By instantiating a QDirectPainter object using the default QDirectPainter::NonReserved surface flag, the client application only gets some control over the reserved region, i.e., it can still render directly onto the screen but the allocated region may change (for example, if a window with a higher focus requests parts of the same region). The currently allocated region can be retrieved using the allocatedRegion() function, while the requestedRegion() function returns the originally reserved region.

Note that it is straight forward to gain complete control over the region when instantiating a QDirectPainter object as well. All you have to do is to pass the QDirectPainter::Reserved surface flag to the constructor.

Rendering

To draw on a given region, the application must first get hold of a pointer to the framebuffer. In most cases, this pointer can be retrieved using the QDirectPainter::frameBuffer() function. But note that if the current screen has subscreens, you must query the screen driver instead to identify the correct subscreen. A pointer to the current screen driver can always be retrieved using the static QScreen::instance() function. Then use QScreen's subScreenIndexAt() and subScreens() functions to access the correct subscreen, and the subscreen's base() function to retrieve a pointer to the framebuffer.

Depending on the hardware, it might be necessary to lock the framebuffer for exclusive use while writing to it. This is possible using the lock() and unlock() functions. Note that calling lock() will prevent all other applications from working until unlock() is called.

In addition, QDirectPainter provides several functions returning information about the framebuffer: the linestep() function returns the length (in bytes) of each scanline of the framebuffer while the screenDepth(), screenWidth() and screenHeight() function return the screen metrics.

See also QScreen, QWSEmbedWidget, and Qtopia Core Architecture.


Member Type Documentation

enum QDirectPainter::SurfaceFlag

This enum describes the behavior of the region reserved by this QDirectPainter object.

ConstantValueDescription
QDirectPainter::NonReserved0The allocated region may change, e.g., if a window with a higher focus requests parts of the same region. See also Dynamic Allocation.
QDirectPainter::Reserved1The allocated region will never change. See also Static Allocation.

See also reservedRegion() and allocatedRegion().


Member Function Documentation

QDirectPainter::QDirectPainter ( QObject * parent = 0, SurfaceFlag flag = NonReserved )

Constructs a QDirectPainter object with the given parent and surface flag.

QDirectPainter::~QDirectPainter ()

Destroys this QDirectPainter object, releasing the reserved region.

See also allocatedRegion().

QRegion QDirectPainter::allocatedRegion () const

Returns the currently reserved region.

Note that if the QDirectPainter::Reserved flag is set, the region returned by this function will always be equivalent to the region returned by the requestedRegion() function. Otherwise they might differ (see Dynamic Allocation for details).

This function was introduced in Qt 4.2.

See also requestedRegion() and geometry().

void QDirectPainter::endPainting ()

This function is under development and is subject to change.

The current implementation does nothing.

This function was introduced in Qt 4.2.

uchar * QDirectPainter::frameBuffer ()   [static]

Returns a pointer to the beginning of the display memory.

Note that it is the application's responsibility to limit itself to modifying only the reserved region.

Do not use this pointer if the current screen has subscreens, query the screen driver instead: A pointer to the current screen driver can always be retrieved using the static QScreen::instance() function. Then use QScreen's subScreenIndexAt() and subScreens() functions to access the correct subscreen, and the subscreen's base() function to retrieve a pointer to the framebuffer.

See also requestedRegion(), allocatedRegion(), and linestep().

QRect QDirectPainter::geometry () const

Returns the bounding rectangle of the requested region.

This function was introduced in Qt 4.2.

See also setGeometry() and requestedRegion().

int QDirectPainter::linestep ()   [static]

Returns the length (in bytes) of each scanline of the framebuffer.

See also frameBuffer().

void QDirectPainter::lock ()   [static]

Locks access to the framebuffer.

Note that calling this function will prevent all other applications from working until unlock() is called.

See also unlock().

void QDirectPainter::lower ()

Lowers the reserved region to the bottom of the widget stack.

After this call the reserved region will be visually behind (and therefore obscured by) any overlapping widgets.

This function was introduced in Qt 4.2.

See also raise() and requestedRegion().

void QDirectPainter::raise ()

Raises the reserved region to the top of the widget stack.

After this call the reserved region will be visually in front of any overlapping widgets.

This function was introduced in Qt 4.2.

See also lower() and requestedRegion().

void QDirectPainter::regionChanged ( const QRegion & newRegion )   [virtual]

This function is called whenever the allocated region changes.

Note that the default implementation does nothing; reimplement this function to adjust the currently running processes according to the given newRegion.

This function was introduced in Qt 4.2.

See also allocatedRegion() and Dynamic Allocation.

QRegion QDirectPainter::requestedRegion () const

Returns the region requested by this QDirectPainter.

Note that if the QDirectPainter::Reserved flag is set, the region returned by this function will always be equivalent to the region returned by the allocatedRegion() function. Otherwise they might differ (see Dynamic Allocation for details).

This function was introduced in Qt 4.2.

See also geometry() and setRegion().

QRegion QDirectPainter::reserveRegion ( const QRegion & region )   [static]

Attempts to reserve the given region, and returns the region that is actually reserved.

This function also releases the previously reserved region if any. If not released explicitly, the region will be released on application exit.

See also reservedRegion() and Static Allocation.

QRegion QDirectPainter::reservedRegion ()   [static]

Returns the reserved region.

This function was introduced in Qt 4.2.

See also reserveRegion() and frameBuffer().

int QDirectPainter::screenDepth ()   [static]

Returns the bit depth of the display.

See also screenHeight() and screenWidth().

int QDirectPainter::screenHeight ()   [static]

Returns the height of the display in pixels.

See also screenWidth() and screenDepth().

int QDirectPainter::screenWidth ()   [static]

Returns the width of the display in pixels.

See also screenHeight() and screenDepth().

void QDirectPainter::setGeometry ( const QRect & rectangle )

Request to reserve the given rectangle of the framebuffer.

Note that the actually allocated region might differ from the requested one, e.g., if the given region overlaps with the region of another QDirectPainter object.

This function was introduced in Qt 4.2.

See also geometry(), allocatedRegion(), and setRegion().

void QDirectPainter::setRegion ( const QRegion & region )

Requests to reserve the given region of the framebuffer.

Note that the actually allocated region might differ from the requested one, e.g., if the given region overlaps with the region of another QDirectPainter object.

This function was introduced in Qt 4.2.

See also region(), requestedRegion(), allocatedRegion(), and Dynamic Allocation.

void QDirectPainter::startPainting ( bool lockDisplay = false )

This function is under development and is subject to change.

The current implementation does nothing.

This function was introduced in Qt 4.2.

void QDirectPainter::unlock ()   [static]

Unlocks the lock on the framebuffer (set using the lock() function), allowing other applications to access the screen.

See also lock().

WId QDirectPainter::winId () const

Returns the window system identifier of the widget.

This function was introduced in Qt 4.2.

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année

Le Qt Quarterly au hasard

Logo

Des apparences personnalisées utilisant les feuilles de style

Qt Quarterly est la revue trimestrielle proposée par Nokia et à destination des développeurs Qt. Ces articles d'une grande qualité technique sont rédigés par des experts Qt. 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