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  ·  Fonctions  · 

Qt Motif Extension

Introduction

The Qt Motif Extension assists the migration of old Xt and Motif based applications to the more comfortable Qt toolkit. This extension replaces the older Xt/Motif Support Extension included with earlier versions of Qt.

The Qt Motif Extension consists of the following classes:

  • QMotif - Provides the basis of the Qt Motif Extension.
  • QMotifWidget - Provides the QWidget API for Motif widgets.
  • QMotifDialog - Provides the QDialog API for Motif dialogs.
  • QXtWidget - The Xt/Motif integration widget from the previous Xt/Motif extension. This class is unsupported and has many known problems and limitations. It is provided only to keep existing source working; it should not be used in new code.

Additional Documentation

Common Problems

Incorrect CDE Color Scheme

QMotifWidget and QMotifDialog will use the same Visual, Colormap and color depth that QApplication uses. When using CDE, the color scheme may be incorrect when using a Visual, Colormap and color depth that is not the default. To work around this problem, add the following resource string to your startup files (for example, $HOME/.dt/sessions/current/dt.resources):

    *userColorObj: false

X11 Header Conflicts

The X11 headers define some constants that conflict with the Qt headers. The solution is to include all Qt headers first, followed by headers from this extension, and all Xt/Motif and X11 headers last. For example:

    // Qt headers first
    #include <qapplication.h>
    #include <qpushbutton.h>
    #include <qsocket.h>
    ...

    // QMotif* headers next
    #include <qmotif.h>
    #include <qmotifdialog.h>
    #include <qmotifwidget.h>

    // Xt/Motif and X11 headers last
    #include <X11/Xlib.h>
    #include <Xt/Intrinsic.h>
    #include <Xm/Xm.h>
    ...

Multiple Screen Support

QMotifWidget can be used together with QDesktopWidget to create top-level windows on multiple screens. A common mistake is to create a QMotifWidget on a non-default screen while the Xt/Motif widgets are created on the default screen. The solution is to specify the screen to both QMotifWidget and the Xt/Motif child. For example:

    Display *dpy = QApplication::desktop()->x11Display();
    Arg args[1];

    // make sure both QMotifWidget and the XmMainWindow are on screen 1
    XtSetArg(args[0], XtNscreen, ScreenOfDisplay(dpy, 1));
    QMotifWidget *toplevel =
        new QMotifWidget(QApplication::desktop()->screen(1),
                         xmMainWindowWidgetClass, args, 1, "mainwindow");

Known Problems and Limitations

Clipboard Transfers between Motif and Qt

In some situations, clipboard transfers between Motif and Qt widgets will fail, and neither Motif nor Qt seem to recover. This will occur when Motif and Qt are using the same X11 display connection. This typically happens in 2 situations:

  1. QApplication was created with a foreign display, or
  2. QMotifWidget is used in the widget heirarchy.

The only way to work around this problem is to ensure that Motif and Qt use a different X11 connection. However, this solution will not work when using QMotifWidget in the widget heirarchy (since QMotifWidget uses the same X11 display connection that Qt does).

This problem will be fixed in a future release.

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 94
  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. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 48
  4. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  5. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 13
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. Qt Commercial : Digia organise un webinar gratuit le 27 mars sur la conception d'interfaces utilisateur et d'applications avec le framework 0
Page suivante

Le Qt Labs au hasard

Logo

Améliorer les performances de Qt lors du rendu avec plus de SIMD

Les Qt Labs sont les laboratoires des développeurs de Qt, où ils peuvent partager des impressions sur le framework, son utilisation, ce que pourrait être son futur. 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 3.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