⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 skin.h

📁 linux下 minigui用的 qvfb 1.1插件
💻 H
字号:
#include <qwidget.h>class QVFb;class QVFbView;class Skin : public QWidget{public:    Skin( QVFb *p, const QString &skinFile, int &viewW, int &viewH );    ~Skin( );    void setView( QVFbView *v );protected:    virtual void paintEvent( QPaintEvent * );    virtual void mousePressEvent( QMouseEvent *e );    virtual void mouseMoveEvent( QMouseEvent *e );    virtual void mouseReleaseEvent( QMouseEvent * );private:    QVFb *parent;    QVFbView *view;    QPoint clickPos;    bool buttonPressed;    int buttonCode;    int buttonIndex;    QString skinImageUpFileName;    QString skinImageDownFileName;    QPixmap *skinImageUp;    QPixmap *skinImageDown;    int viewX1, viewY1;    int numberOfAreas;    typedef struct {	QString	name;        int	keyCode;        int	x1, y1;        int	x2, y2;    } ButtonAreas;    ButtonAreas *areas;};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -