📄 qgfxsnap_qws.h
字号:
/****************************************************************************** $Id: qt/src/3rdparty/kernel/qgfxsnap_qws.h 2.3.10 edited 2005-01-24 $**** Definition of QSNAPScreen and QGfxSNAP classes for Embedded Qt**** Copyright (C) SciTech Software, Inc. All rights reserved.**** Author: Kendall Bennett**** This file is part of the kernel module of the Qt GUI Toolkit.**** This file may be distributed and/or modified under the terms of the** GNU General Public License version 2 as published by the Free Software** Foundation and appearing in the file LICENSE.GPL included in the** packaging of this file.**** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition** licenses for Qt/Embedded may use this file in accordance with the** Qt Embedded Commercial License Agreement provided with the Software.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.**** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for** information about Qt Commercial License Agreements.** See http://www.trolltech.com/gpl/ for GPL licensing information.**** Contact info@trolltech.com if any conditions of this licensing are** not clear to you.**** This module requires the SciTech SNAP SDK to build and also requires** the SciTech SNAP runtime device driver modules to be present in order** to run.**** See http://www.scitechsoft.com or email sales@scitechsoft.com for** information about SciTech SNAP Commercial License Agreements.************************************************************************/#ifndef QGFXSNAP_QWS_H#define QGFXSNAP_QWS_H#ifndef QT_NO_QWS_SNAP#include "qgfx_qws.h"#include "snap/graphics.h"#include "snap/ref2d.h"/* Forward reference */struct QGfxSNAP_State;/*!\class QSNAPScreen\ingroup qws\brief The QSNAPScreen class manages the SciTech SNAP Graphics device driver.QSNAPScreen is a descendant of QScreen; there is precisely one per Qt/Embeddedapplication.*/class QSNAPScreen : public QScreen{public: QSNAPScreen( int display_id ); virtual ~QSNAPScreen(); virtual void setMode(int,int,int); virtual bool connect( const QString &displaySpec ); virtual bool initDevice(); virtual int initCursor(void *end_of_location,bool init); virtual void disconnect(); virtual void shutdownDevice(); virtual QGfx * createGfx(unsigned char *,int,int,int,int); virtual void save(); virtual void restore(); virtual void blank(bool on); virtual void set(unsigned int,unsigned int,unsigned int,unsigned int); virtual uchar * cache(int,int); virtual void uncache(uchar *);protected: // Note: These values are reported in *bits* rather than the expected *bytes*!! virtual int pixmapOffsetAlignment() { return modeInfo.BitmapStartAlign * 8; } virtual int pixmapLinestepAlignment() { return modeInfo.BitmapStridePad * 8; }private: void fatalCleanup(); N_uint16 findMode(int x,int y,int bits); int initSoftwareRasterizer(); void delete_entry(int); void insert_entry(int,uint,uint); void setupOffScreen();private: PM_HWND hwndConsole; void *stateBuf; int isServer; int useOffscreen; ulong cacheStart; GA_devCtx *dc; GA_initFuncs init; GA_driverFuncs driver; GA_DPMSFuncs dpms; GA_2DStateFuncs hwState2d; GA_2DRenderFuncs hwDraw2d; GA_2DStateFuncs state2d; GA_2DRenderFuncs draw2d; QGfxSNAP_State *cntState; REF2D_driver *ref2d; int unloadRef2d; N_uint16 prevMode; N_uint16 cntMode; N_int32 maxMem; GA_modeInfo modeInfo; N_int16 DPMSStates;};#endif // QT_NO_QWS_SNAP#endif // QGFXSNAP_QWS_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -