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  · 

svgalibscreen.cpp Example File
qws/svgalib/svgalibscreen.cpp

 /****************************************************************************
 **
 ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
 ** Contact: Qt Software Information (qt-info@nokia.com)
 **
 ** This file is part of the example classes of the Qt Toolkit.
 **
 ** Commercial Usage
 ** Licensees holding valid Qt Commercial licenses may use this file in
 ** accordance with the Qt Commercial License Agreement provided with the
 ** Software or, alternatively, in accordance with the terms contained in
 ** a written agreement between you and Nokia.
 **
 **
 ** GNU General Public License Usage
 ** Alternatively, this file may be used under the terms of the GNU
 ** General Public License versions 2.0 or 3.0 as published by the Free
 ** Software Foundation and appearing in the file LICENSE.GPL included in
 ** the packaging of this file.  Please review the following information
 ** to ensure GNU General Public Licensing requirements will be met:
 ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
 ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
 ** exception, Nokia gives you certain additional rights. These rights
 ** are described in the Nokia Qt GPL Exception version 1.3, included in
 ** the file GPL_EXCEPTION.txt in this package.
 **
 ** Qt for Windows(R) Licensees
 ** As a special exception, Nokia, as the sole copyright holder for Qt
 ** Designer, grants users of the Qt/Eclipse Integration plug-in the
 ** right for the Qt/Eclipse Integration to link to functionality
 ** provided by Qt Designer and its related libraries.
 **
 ** If you are unsure which license is appropriate for your use, please
 ** contact the sales department at qt-sales@nokia.com.
 **
 ****************************************************************************/

 #include "svgalibscreen.h"
 #include "svgalibsurface.h"

 #include <QVector>
 #include <QApplication>
 #include <QColor>
 #include <QWidget>

 #include <math.h>

 static int getModeDepth(vga_modeinfo *mode)
 {
     const int bits = int(log2(mode->colors));
     if (bits == 24 && mode->bytesperpixel == 4)
         return 32;
     return bits;
 }

 bool SvgalibScreen::connect(const QString &displaySpec)
 {
     int mode = vga_getdefaultmode();
     if (mode <= 0) {
         qCritical("SvgalibScreen::connect(): invalid vga mode");
         return false;
     }

     vga_modeinfo *modeinfo = vga_getmodeinfo(mode);

     QScreen::lstep = modeinfo->linewidth;
     QScreen::dw = QScreen::w = modeinfo->width;
     QScreen::dh = QScreen::h = modeinfo->height;
     QScreen::d = getModeDepth(modeinfo);
     QScreen::size = QScreen::lstep * dh;
     QScreen::data = 0;

     switch (depth()) {
     case 32:
         setPixelFormat(QImage::Format_ARGB32_Premultiplied);
         break;
     case 24:
         setPixelFormat(QImage::Format_RGB888);
         break;
     case 16:
         setPixelFormat(QImage::Format_RGB16);
         break;
     case 15:
         setPixelFormat(QImage::Format_RGB555);
         break;
     default:
         break;
     }

     const int dpi = 72;
     QScreen::physWidth = qRound(QScreen::dw * 25.4 / dpi);
     QScreen::physHeight = qRound(QScreen::dh * 25.4 / dpi);

     const QStringList args = displaySpec.split(QLatin1Char(':'),
                                                QString::SkipEmptyParts);
     grayscale = args.contains(QLatin1String("grayscale"), Qt::CaseInsensitive);

     return true;
 }

 void SvgalibScreen::initColorMap()
 {
     const int numColors = vga_getcolors();
     if (numColors == 2 || numColors > 256) {
         screencols = 0;
         return; // not a palette based mode
     }

     if (numColors == 16) {
         if (grayscale) {
             for (int i = 0; i < 256; ++i) {
                 const int c = i * 16 / 256;
                 vga_setpalette(i, c, c, c);
             }
             screencols = 256; // XXX: takes advantage of optimization in alloc()
         } else { // read in EGA palette
             int r, g, b;
             for (int i = 0; i < 16; ++i) {
                 vga_getpalette(i, &r, &g, &b);
                 screenclut[i] = qRgb(r, g, b);
             }
             screencols = 16;
         }

         return;
     }

     Q_ASSERT(numColors == 256);

     if (grayscale) {
         for (int i = 0; i < 256; ++i) {
             const int c = i * 64 / 256;
             vga_setpalette(i, c, c, c);
         }
     } else {
         int i = 0;

 #if 0
         // read in EGA palette
         while (i < 16) {
             int r, g, b;
             vga_getpalette(i, &r, &g, &b);
             screenclut[i] = qRgb(r, g, b);
             ++i;
         }
         screencols = 16;
 #endif

         // 6 * 6 * 6 color cube
         for (int r = 0; r < 6; ++r) {
             for (int g = 0; g < 6; ++g) {
                 for (int b = 0; b < 6; ++b) {
                     vga_setpalette(i, r * 64/6, g * 64/6, b * 64/6);
                     screenclut[i] = qRgb(r * 256/6, g * 256/6, b * 256/6);
                     ++i;
                 }
             }
         }
         screencols = i;

         while (i < 256) {
             screenclut[i] = qRgb(0, 0, 0);
             ++i;
         }
     }
 }

 bool SvgalibScreen::initDevice()
 {
     if (vga_init() != 0) {
         qCritical("SvgalibScreen::initDevice(): unable to initialize svgalib");
         return false;
     }

     int mode = vga_getdefaultmode();
     if (vga_setmode(mode) == -1) {
         qCritical("SvgalibScreen::initialize(): unable to set graphics mode");
         return false;
     }

     if (gl_setcontextvga(mode) != 0) {
         qCritical("SvgalibScreen::initDevice(): unable to set vga context");
         return false;
     }
     context = gl_allocatecontext();
     gl_getcontext(context);

     vga_modeinfo *modeinfo = vga_getmodeinfo(mode);
     if (modeinfo->flags & IS_LINEAR)
         QScreen::data = vga_getgraphmem();

     initColorMap();

     QScreenCursor::initSoftwareCursor();
     return true;
 }

 void SvgalibScreen::shutdownDevice()
 {
     gl_freecontext(context);
     vga_setmode(TEXT);
 }

 void SvgalibScreen::disconnect()
 {
 }

 void SvgalibScreen::solidFill(const QColor &color, const QRegion &reg)
 {
     int c;
     if (depth() == 4 || depth() == 8)
         c = alloc(color.red(), color.green(), color.blue());
     else
         c = gl_rgbcolor(color.red(), color.green(), color.blue());

     const QVector<QRect> rects = (reg & region()).rects();
     for (int i = 0; i < rects.size(); ++i) {
         const QRect r = rects.at(i);
         gl_fillbox(r.left(), r.top(), r.width(), r.height(), c);
     }
 }

 void SvgalibScreen::blit16To8(const QImage &image,
                               const QPoint &topLeft, const QRegion &region)
 {
     const int imageStride = image.bytesPerLine() / 2;
     const QVector<QRect> rects = region.rects();

     for (int i = 0; i < rects.size(); ++i) {
         const QRect r = rects.at(i).translated(-topLeft);
         int y = r.y();
         const quint16 *s = reinterpret_cast<const quint16*>(image.scanLine(y));

         while (y <= r.bottom()) {
             int x1 = r.x();
             while (x1 <= r.right()) {
                 const quint16 c = s[x1];
                 int x2 = x1;
                 // find span length
                 while ((x2+1 < r.right()) && (s[x2+1] == c))
                     ++x2;
                 gl_hline(x1 + topLeft.x(), y + topLeft.y(), x2 + topLeft.x(),
                          qt_colorConvert<quint8, quint16>(c, 0));
                 x1 = x2 + 1;
             }
             s += imageStride;
             ++y;
         }
     }
 }

 void SvgalibScreen::blit32To8(const QImage &image,
                               const QPoint &topLeft, const QRegion &region)
 {
     const int imageStride = image.bytesPerLine() / 2;
     const QVector<QRect> rects = region.rects();

     for (int i = 0; i < rects.size(); ++i) {
         const QRect r = rects.at(i).translated(-topLeft);
         int y = r.y();
         const quint32 *s = reinterpret_cast<const quint32*>(image.scanLine(y));

         while (y <= r.bottom()) {
             int x1 = r.x();
             while (x1 <= r.right()) {
                 const quint32 c = s[x1];
                 int x2 = x1;
                 // find span length
                 while ((x2+1 < r.right()) && (s[x2+1] == c))
                     ++x2;
                 gl_hline(x1 + topLeft.x(), y + topLeft.y(), x2 + topLeft.x(),
                          qt_colorConvert<quint8, quint32>(c, 0));
                 x1 = x2 + 1;
             }
             s += imageStride;
             ++y;
         }
     }
 }

 void SvgalibScreen::blit(const QImage &img, const QPoint &topLeft,
                          const QRegion &reg)
 {
     if (depth() == 8) {
         switch (img.format()) {
         case QImage::Format_RGB16:
             blit16To8(img, topLeft, reg);
             return;
         case QImage::Format_RGB32:
         case QImage::Format_ARGB32:
         case QImage::Format_ARGB32_Premultiplied:
             blit32To8(img, topLeft, reg);
             return;
         default:
             break;
         }
     }

     if (img.format() != pixelFormat()) {
         if (base())
             QScreen::blit(img, topLeft, reg);
         return;
     }

     const QVector<QRect> rects = (reg & region()).rects();

     for (int i = 0; i < rects.size(); ++i) {
         const QRect r = rects.at(i);
         gl_putboxpart(r.x(), r.y(), r.width(), r.height(),
                       img.width(), img.height(),
                       static_cast<void*>(const_cast<uchar*>(img.bits())),
                       r.x() - topLeft.x(), r.y() - topLeft.y());
     }
 }

 QWSWindowSurface* SvgalibScreen::createSurface(QWidget *widget) const
 {
     if (base()) {
         static int onScreenPaint = -1;
         if (onScreenPaint == -1)
             onScreenPaint = qgetenv("QT_ONSCREEN_PAINT").toInt();

         if (onScreenPaint > 0 || widget->testAttribute(Qt::WA_PaintOnScreen))
             return new SvgalibSurface(widget);
     }
     return QScreen::createSurface(widget);
 }

 QWSWindowSurface* SvgalibScreen::createSurface(const QString &key) const
 {
     if (key == QLatin1String("svgalib"))
         return new SvgalibSurface;
     return QScreen::createSurface(key);
 }

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. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 42
  5. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  6. 2017 : un quinquennat pour une nouvelle version du C++ ? Possible, selon Herb Sutter 9
  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 blog Digia au hasard

Logo

Une nouvelle ère d'IHM 3D pour les automobiles

Le blog Digia est l'endroit privilégié pour la communication sur l'édition commerciale de Qt, où des réponses publiques sont apportées aux questions les plus posées au support. 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 qtextended4.4
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