Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
215 lines
7.1 KiB
C++
215 lines
7.1 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
** Contact: http://www.qt.io/licensing/
|
|
**
|
|
** This file is part of the tools applications of the Qt Toolkit.
|
|
**
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
** Commercial License Usage
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
** accordance with the commercial license agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
** and conditions see http://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at http://www.qt.io/contact-us.
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
** following information to ensure the GNU Lesser General Public License
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
**
|
|
** As a special exception, The Qt Company gives you certain additional
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
** GNU General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
** General Public License version 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 the GNU General Public License version 3.0 requirements will be
|
|
** met: http://www.gnu.org/copyleft/gpl.html.
|
|
**
|
|
** $QT_END_LICENSE$
|
|
**
|
|
****************************************************************************/
|
|
|
|
#ifndef QVFBVIEW_H
|
|
#define QVFBVIEW_H
|
|
|
|
//#ifdef QT_NO_OPENGL
|
|
#include <QWidget>
|
|
//#else
|
|
//#define QVFB_USE_GLWIDGET
|
|
//#include <QGLWidget>
|
|
//#endif
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QImage;
|
|
class QTimer;
|
|
class QAnimationWriter;
|
|
struct QVFbHeader;
|
|
class QVFbViewProtocol;
|
|
class QX11EmbedContainer;
|
|
|
|
class QVFbAbstractView :
|
|
#ifdef QVFB_USE_GLWIDGET
|
|
public QGLWidget
|
|
#else
|
|
public QWidget
|
|
#endif
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum Rotation { Rot0, Rot90, Rot180, Rot270 };
|
|
enum PixelFormat { DefaultFormat, GrayscaleFormat, RGBFormat, ARGBFormat };
|
|
QVFbAbstractView( QWidget *parent = 0);
|
|
virtual ~QVFbAbstractView();
|
|
|
|
virtual int displayId() const = 0;
|
|
virtual int displayWidth() const = 0;
|
|
virtual int displayHeight() const = 0;
|
|
virtual int displayDepth() const = 0;
|
|
virtual PixelFormat displayFormat() const { return DefaultFormat; }
|
|
virtual bool rgbSwapped() const { return false; }
|
|
virtual Rotation displayRotation() const = 0;
|
|
|
|
virtual void setGamma(double gr, double gg, double gb) = 0;
|
|
virtual double gammaRed() const = 0;
|
|
virtual double gammaGreen() const = 0;
|
|
virtual double gammaBlue() const = 0;
|
|
virtual void getGamma(int i, QRgb& rgb) = 0;
|
|
|
|
virtual bool touchScreenEmulation() const = 0;
|
|
virtual bool lcdScreenEmulation() const = 0;
|
|
virtual int rate() = 0;
|
|
virtual bool animating() const = 0;
|
|
virtual QImage image() const = 0;
|
|
virtual void setRate(int) = 0;
|
|
|
|
virtual double zoomH() const = 0;
|
|
virtual double zoomV() const = 0;
|
|
|
|
public slots:
|
|
virtual void setTouchscreenEmulation( bool ) = 0;
|
|
virtual void setLcdScreenEmulation( bool ) = 0;
|
|
virtual void setZoom( double, double ) = 0;
|
|
virtual void setRotation(Rotation) = 0;
|
|
virtual void startAnimation( const QString& ) = 0;
|
|
virtual void stopAnimation() = 0;
|
|
virtual void skinKeyPressEvent( int code, const QString& text, bool autorep=FALSE ) = 0;
|
|
virtual void skinKeyReleaseEvent( int code, const QString& text, bool autorep=FALSE ) = 0;
|
|
virtual void setViewFormat(PixelFormat) {}
|
|
virtual void setRgbSwapped( bool ) {};
|
|
virtual void embedDisplay(WId) {}
|
|
};
|
|
|
|
class QVFbView : public QVFbAbstractView
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
QVFbView(int id, int w, int h, int d, Rotation r, QWidget *parent = 0);
|
|
virtual ~QVFbView();
|
|
|
|
int displayId() const;
|
|
int displayWidth() const;
|
|
int displayHeight() const;
|
|
int displayDepth() const;
|
|
PixelFormat displayFormat() const;
|
|
bool rgbSwapped() const { return rgb_swapped; }
|
|
Rotation displayRotation() const;
|
|
|
|
bool touchScreenEmulation() const { return emulateTouchscreen; }
|
|
bool lcdScreenEmulation() const { return emulateLcdScreen; }
|
|
int rate() { return refreshRate; }
|
|
bool animating() const { return !!animation; }
|
|
QImage image() const;
|
|
|
|
void setGamma(double gr, double gg, double gb);
|
|
double gammaRed() const { return gred; }
|
|
double gammaGreen() const { return ggreen; }
|
|
double gammaBlue() const { return gblue; }
|
|
void getGamma(int i, QRgb& rgb);
|
|
void skinMouseEvent(QMouseEvent *e);
|
|
|
|
double zoomH() const { return hzm; }
|
|
double zoomV() const { return vzm; }
|
|
|
|
QSize sizeHint() const;
|
|
void setRate(int);
|
|
|
|
public slots:
|
|
void setTouchscreenEmulation(bool);
|
|
void setLcdScreenEmulation(bool);
|
|
void setZoom(double, double);
|
|
void setRotation(Rotation);
|
|
void startAnimation(const QString&);
|
|
void stopAnimation();
|
|
void skinKeyPressEvent(int code, const QString& text, bool autorep=FALSE);
|
|
void skinKeyReleaseEvent(int code, const QString& text, bool autorep=FALSE);
|
|
void setViewFormat(PixelFormat);
|
|
void setRgbSwapped(bool b) { rgb_swapped = b; }
|
|
#ifdef Q_WS_X11
|
|
void embedDisplay(WId id);
|
|
#endif
|
|
|
|
protected slots:
|
|
void refreshDisplay(const QRect &);
|
|
|
|
protected:
|
|
QImage getBuffer(const QRect &r, int &leading) const;
|
|
void drawScreen(const QRect &r);
|
|
void sendMouseData(const QPoint &pos, int buttons, int wheel);
|
|
void sendKeyboardData(QString unicode, int keycode, int modifiers,
|
|
bool press, bool repeat);
|
|
//virtual bool eventFilter(QObject *obj, QEvent *e);
|
|
virtual void paintEvent(QPaintEvent *pe);
|
|
virtual void contextMenuEvent(QContextMenuEvent *e);
|
|
virtual void mousePressEvent(QMouseEvent *e);
|
|
virtual void mouseDoubleClickEvent(QMouseEvent *e);
|
|
virtual void mouseReleaseEvent(QMouseEvent *e);
|
|
virtual void mouseMoveEvent(QMouseEvent *e);
|
|
virtual void wheelEvent(QWheelEvent *e);
|
|
virtual void keyPressEvent(QKeyEvent *e);
|
|
virtual void keyReleaseEvent(QKeyEvent *e);
|
|
virtual bool event(QEvent *event);
|
|
|
|
private:
|
|
void setDirty(const QRect&);
|
|
int viewdepth; // "faked" depth
|
|
PixelFormat viewFormat;
|
|
bool rgb_swapped;
|
|
int rsh;
|
|
int gsh;
|
|
int bsh;
|
|
int rmax;
|
|
int gmax;
|
|
int bmax;
|
|
int contentsWidth;
|
|
int contentsHeight;
|
|
double gred, ggreen, gblue;
|
|
QRgb* gammatable;
|
|
|
|
int refreshRate;
|
|
QAnimationWriter *animation;
|
|
double hzm,vzm;
|
|
QVFbViewProtocol *mView;
|
|
bool emulateTouchscreen;
|
|
bool emulateLcdScreen;
|
|
Rotation rotation;
|
|
|
|
#ifdef Q_WS_X11
|
|
QX11EmbedContainer *embedContainer;
|
|
#endif
|
|
};
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif
|