pie.h

来自「linux qt资料」· C头文件 代码 · 共 24 行

H
24
字号
#ifndef PIE_H#define PIE_H#include <qwindow.h>class PieView : public QWindow{//    Q_OBJECTpublic:    PieView( int *, const char ** = 0 );    void restart( int *, const char ** = 0 );protected:    void   paintEvent( QPaintEvent * );    void   drawPies(  QPainter * );private:    int *nums;    const char **strs;    int n;    int sum;};#endif

⌨️ 快捷键说明

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