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

📄 qdrawutil.cpp

📁 PIXIL is a small footprint operating environment, complete with PDA PIM applications, a browser and
💻 CPP
字号:
#include "qpainter.h"#include "qdrawutil.h"#include "fl_draw.H"void qDrawShadePanel( QPainter *p, int x, int y, int w, int h,		      const QColorGroup & cg, bool sunken,		      int lineWidth, const QBrush *fill ) {  p->qDrawShadePanel(x,y,w,h,cg,sunken,lineWidth,fill);}void qDrawShadeLine( QPainter *p, int x1, int y1, int x2, int y2,			    const QColorGroup &g, bool sunken,			    int lineWidth, int midLineWidth ){   p->qDrawShadeLine(x1,y1,x2,y2,g,sunken,lineWidth, midLineWidth);}void qDrawShadeLine( QPainter *p, const QPoint &p1, const QPoint &p2,		     const QColorGroup &g, bool sunken,		     int lineWidth, int midLineWidth ){   qDrawShadeLine(p,p1.x(),p1.y(),p2.x(),p2.y(),g,		 sunken,lineWidth,midLineWidth);}

⌨️ 快捷键说明

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