• 7567阅读
  • 28回复

Qt编写云台仪表盘控件 [复制链接]

上一主题 下一主题
离线liudianwu
 

图酷模式  只看楼主 倒序阅读 楼主  发表于: 2018-09-04
做过安防视频监控的同学都清楚,在视频监控系统软件上都可以看到一个云台控制区域,可以对球机进行下下左右等八个方位的运动控制,还可以进行复位,一般都是美工作图好,然后贴图的形式加入到软件中,好处是程序简单,界面美工,主要取决于美工的美图能力,缺点是对于各种分辨率的适应性稍微差点,需要不同的图片切图贴图,除非默认做好的是大图自适应看不出差别,可能大部分人所在的公司都是小公司,一般美工人员比较少甚至没有,都需要程序员一人负责,甚至一开始就要考虑到各种分辨率的应用场景以及后期可能的换肤换色等。
之前做过很多自定义控件,大部分都采用了qpainter的形式绘制,有个好处就是自适应任意分辨率,所以思考着这个云台控制仪表盘也采用纯painter绘制的形式,据说纯painter绘制还可以轻松移植到qml中,这又坚定了我用qpainter绘制的决心。所谓心中有坐标系,万物皆painter。
观察云台仪表盘下来,基本上就这几部分组成,圆形底盘,八个角,中间部分按钮,整个的控件的难点就在于八个角的定位,中间部分很好定位,而且八个角不是绝对的位置,都是相对于界面的宽高按照等比例自适应排列的。八个角的鼠标按下要做出对应的反应,发送出对应型号,网上大部分人都是切图或者放置label或者按钮来贴图实现,绑定事件过滤器过滤鼠标按下然后再发出信号。我这里为了提升逼格,直接采用位置坐标计算法。
设计师designer完整源码(仅限Qt4):https://pan.baidu.com/s/1t9uKOgi7PW34Kdj7rgTlrA
设计师designer可执行文件https://pan.baidu.com/s/1h3oUjqBun2_YD68gry84wQ
自定义控件Qt4封装版本:https://pan.baidu.com/s/1JnpCwIW5sY9VtViqHSCi1g
自定义控件Qt5封装版本:https://pan.baidu.com/s/1xMGlK0PN-5yckLJI8koSmQ
自定义控件属性设计器:https://pan.baidu.com/s/1iZvQe7L0Dfif_p50qodZ8Q


头文件代码:
  1. #ifndef GAUGECLOUD_H
  2. #define GAUGECLOUD_H
  3. /**
  4. * 云台仪表盘控件 作者:feiyangqingyun(QQ:517216493) 2018-9-2
  5. * 1:可设置背景颜色
  6. * 2:可设置基准颜色
  7. * 3:可设置边框颜色
  8. * 4:可设置文本颜色
  9. * 5:可识别每个角度+中间 鼠标按下并发出信号
  10. * 6:可设置八个角的图标和中间图标,随便换
  11. * 7:内置4种云台风格 黑色+白色+蓝色+紫色
  12. * 8:支持拓展鼠标进入离开时的切换
  13. */
  14. #include <QWidget>
  15. #ifdef quc
  16. #if (QT_VERSION < QT_VERSION_CHECK(5,7,0))
  17. #include <QtDesigner/QDesignerExportWidget>
  18. #else
  19. #include <QtUiPlugin/QDesignerExportWidget>
  20. #endif
  21. class QDESIGNER_WIDGET_EXPORT GaugeCloud : public QWidget
  22. #else
  23. class GaugeCloud : public QWidget
  24. #endif
  25. {
  26.     Q_OBJECT
  27.     Q_ENUMS(CloudStyle)
  28.     Q_PROPERTY(QColor baseColor READ getBaseColor WRITE setBaseColor)
  29.     Q_PROPERTY(QColor bgColor READ getBgColor WRITE setBgColor)
  30.     Q_PROPERTY(QColor arcColor READ getArcColor WRITE setArcColor)
  31.     Q_PROPERTY(QColor borderColor READ getBorderColor WRITE setBorderColor)
  32.     Q_PROPERTY(QColor textColor READ getTextColor WRITE setTextColor)
  33.     Q_PROPERTY(QColor pressColor READ getPressColor WRITE setPressColor)
  34.     Q_PROPERTY(QString iconText READ getIconText WRITE setIconText)
  35.     Q_PROPERTY(QString centerText READ getCenterText WRITE setCenterText)
  36.     Q_PROPERTY(CloudStyle cloudStyle READ getCloudStyle WRITE setCloudStyle)
  37. public:
  38.     enum CloudStyle {
  39.         CloudStyle_Black = 0,   //黑色风格
  40.         CloudStyle_White = 1,   //白色风格
  41.         CloudStyle_Blue = 2,    //蓝色风格
  42.         CloudStyle_Purple = 3   //紫色风格
  43.     };
  44.     explicit GaugeCloud(QWidget *parent = 0);
  45.     ~GaugeCloud();
  46. protected:
  47.     void enterEvent(QEvent *);
  48.     void leaveEvent(QEvent *);
  49.     void mousePressEvent(QMouseEvent *);
  50.     void mouseReleaseEvent(QMouseEvent *);
  51.     void paintEvent(QPaintEvent *);
  52.     void drawCircle(QPainter *painter, int radius, const QBrush &brush);
  53.     void drawArc(QPainter *painter);
  54.     void drawText(QPainter *painter);
  55. private:
  56.     QColor bgColor;                 //背景颜色
  57.     QColor baseColor;               //基准颜色
  58.     QColor arcColor;                //圆弧颜色
  59.     QColor borderColor;             //边框颜色
  60.     QColor textColor;               //文字颜色
  61.     QColor pressColor;              //按下文字颜色
  62.     QString iconText;               //八个角图标
  63.     QString centerText;             //中间图标
  64.     CloudStyle cloudStyle;          //云台样式
  65.     bool enter;                     //鼠标是否进入
  66.     bool pressed;                   //鼠标是否按下
  67.     QPoint lastPoint;               //鼠标按下处的坐标
  68.     QRectF centerRect;              //中间区域
  69.     QRectF leftRect;                //左侧图标区域
  70.     QRectF topRect;                 //上侧图标区域
  71.     QRectF rightRect;               //右侧图标区域
  72.     QRectF bottomRect;              //下侧图标区域
  73.     QRectF leftTopRect;             //左上角图标区域
  74.     QRectF rightTopRect;            //右上角图标区域
  75.     QRectF leftBottomRect;          //左下角图标区域
  76.     QRectF rightBottomRect;         //右下角图标区域
  77.     QFont iconFont;                 //图形字体
  78. public:
  79.     QColor getBgColor()             const;
  80.     QColor getBaseColor()           const;
  81.     QColor getArcColor()            const;
  82.     QColor getBorderColor()         const;
  83.     QColor getTextColor()           const;
  84.     QColor getPressColor()          const;
  85.     QString getIconText()           const;
  86.     QString getCenterText()         const;
  87.     CloudStyle getCloudStyle()      const;
  88.     QSize sizeHint()                const;
  89.     QSize minimumSizeHint()         const;
  90. public Q_SLOTS:
  91.     //设置背景颜色
  92.     void setBgColor(const QColor &bgColor);
  93.     //设置基准颜色
  94.     void setBaseColor(const QColor &baseColor);
  95.     //设置圆弧颜色
  96.     void setArcColor(const QColor &arcColor);
  97.     //设置边框颜色
  98.     void setBorderColor(const QColor &borderColor);
  99.     //设置文本颜色
  100.     void setTextColor(const QColor &textColor);
  101.     //设置按下文本颜色
  102.     void setPressColor(const QColor &pressColor);
  103.     //设置八个角图标
  104.     void setIconText(const QString &iconText);
  105.     //设置中间图标
  106.     void setCenterText(const QString ¢erText);
  107.     //设置云台样式
  108.     void setCloudStyle(const CloudStyle &cloudStyle);
  109. Q_SIGNALS:
  110.     //鼠标按下的区域,共9个,从0-8依次表示底部/左下角/左侧/左上角/顶部/右上角/右侧/右下角/中间
  111.     void mousePressed(int position);
  112. };
  113. #endif //GAUGECLOUD_H

核心代码:
  1. void GaugeCloud::paintEvent(QPaintEvent *)
  2. {
  3.     int width = this->width();
  4.     int height = this->height();
  5.     int side = qMin(width, height);
  6.     //以中心点为基准,分别计算八方位区域和中间区域
  7.     QPointF center = this->rect().center();
  8.     double centerSize = (double)side / ((double)100 / 30);
  9.     double iconSize = (double)side / ((double)100 / 10);
  10.     double offset1 = 3.6;
  11.     double offset2 = 2.65;
  12.     //中间区域
  13.     centerRect = QRectF(center.x() - centerSize / 2, center.y() - centerSize / 2, centerSize, centerSize);
  14.     //左侧图标区域
  15.     leftRect = QRectF(center.x() - iconSize * offset1, center.y() - iconSize / 2, iconSize, iconSize);
  16.     //上侧图标区域
  17.     topRect = QRectF(center.x() - iconSize / 2, center.y() - iconSize * offset1, iconSize, iconSize);
  18.     //右侧图标区域
  19.     rightRect = QRectF(center.x() + iconSize * (offset1 - 1), center.y() - iconSize / 2, iconSize, iconSize);
  20.     //下侧图标区域
  21.     bottomRect = QRectF(center.x() - iconSize / 2, center.y() + iconSize * (offset1 - 1), iconSize, iconSize);
  22.     //左上角图标区域
  23.     leftTopRect = QRectF(center.x() - iconSize * offset2, center.y() - iconSize * offset2, iconSize, iconSize);
  24.     //右上角图标区域
  25.     rightTopRect = QRectF(center.x() + iconSize * (offset2 - 1), center.y() - iconSize * offset2, iconSize, iconSize);
  26.     //左下角图标区域
  27.     leftBottomRect = QRectF(center.x() - iconSize * offset2, center.y() + iconSize * (offset2 - 1), iconSize, iconSize);
  28.     //右下角图标区域
  29.     rightBottomRect = QRectF(center.x() + iconSize * (offset2 - 1), center.y() + iconSize * (offset2 - 1), iconSize, iconSize);
  30.     //绘制准备工作,启用反锯齿,平移坐标轴中心,等比例缩放
  31.     QPainter painter(this);
  32.     painter.setRenderHints(QPainter::Antialiasing | QPainter::TextAntialiasing);
  33.     painter.translate(width / 2, height / 2);
  34.     painter.scale(side / 200.0, side / 200.0);
  35.     if (cloudStyle == CloudStyle_Black) {
  36.         //绘制外圆背景
  37.         drawCircle(&painter, 99, bgColor);
  38.         //绘制圆弧
  39.         drawArc(&painter);
  40.         //绘制中间圆盘背景
  41.         drawCircle(&painter, 83, baseColor);
  42.         //绘制内圆背景
  43.         drawCircle(&painter, 40, arcColor);
  44.         //绘制内圆边框
  45.         drawCircle(&painter, 33, borderColor);
  46.         //绘制内圆
  47.         drawCircle(&painter, 30, (pressed && centerRect.contains(lastPoint)) ? bgColor : baseColor);
  48.     } else if (cloudStyle == CloudStyle_White) {
  49.         //绘制外圆背景
  50.         drawCircle(&painter, 99, QColor(249, 249, 249));
  51.         //设置圆锥渐变
  52.         QConicalGradient gradient(0, 0, 100);
  53.         gradient.setColorAt(0, QColor(34, 163, 169));
  54.         gradient.setColorAt(0.4, QColor(240, 201, 136));
  55.         gradient.setColorAt(0.7, QColor(211, 77, 37));
  56.         gradient.setColorAt(1, QColor(34, 163, 169));
  57.         //绘制彩色外圆
  58.         drawCircle(&painter, 90, gradient);
  59.         //绘制中间圆盘背景
  60.         drawCircle(&painter, 83, QColor(245, 245, 245));
  61.         //绘制内圆背景
  62.         drawCircle(&painter, 33, QColor(208, 208, 208));
  63.         //绘制内圆边框
  64.         drawCircle(&painter, 32, QColor(208, 208, 208));
  65.         //绘制内圆
  66.         drawCircle(&painter, 30, (pressed && centerRect.contains(lastPoint)) ? QColor(255, 255, 255) : QColor(245, 245, 245));
  67.     } else if (cloudStyle == CloudStyle_Blue) {
  68.         //设置圆锥渐变
  69.         QConicalGradient gradient(0, 0, 100);
  70.         gradient.setColorAt(0, QColor(34, 163, 169));
  71.         gradient.setColorAt(0.4, QColor(240, 201, 136));
  72.         gradient.setColorAt(0.7, QColor(211, 77, 37));
  73.         gradient.setColorAt(1, QColor(34, 163, 169));
  74.         //绘制色彩外圆
  75.         drawCircle(&painter, 99, gradient);
  76.         //绘制中间圆盘背景
  77.         drawCircle(&painter, 91, QColor(31, 66, 98));
  78.         //绘制内圆背景
  79.         drawCircle(&painter, 33, QColor(23, 54, 81));
  80.         //绘制内圆边框
  81.         drawCircle(&painter, 30, QColor(150, 150, 150));
  82.         //绘制内圆
  83.         drawCircle(&painter, 30, (pressed && centerRect.contains(lastPoint)) ? QColor(35, 82, 133) : QColor(34, 73, 115));
  84.     } else if (cloudStyle == CloudStyle_Purple) {
  85.         //设置圆锥渐变
  86.         QConicalGradient gradient(0, 0, 100);
  87.         gradient.setColorAt(0, QColor(87, 87, 155));
  88.         gradient.setColorAt(0.4, QColor(129, 82, 130));
  89.         gradient.setColorAt(0.7, QColor(54, 89, 166));
  90.         gradient.setColorAt(1, QColor(87, 87, 155));
  91.         //绘制色彩外圆
  92.         drawCircle(&painter, 99, gradient);
  93.         //绘制中间圆盘背景
  94.         drawCircle(&painter, 91, QColor(55, 55, 92));
  95.         //绘制内圆背景
  96.         drawCircle(&painter, 33, QColor(49, 48, 82));
  97.         //绘制内圆边框
  98.         drawCircle(&painter, 30, QColor(82, 78, 131));
  99.         //绘制内圆
  100.         drawCircle(&painter, 30, (pressed && centerRect.contains(lastPoint)) ? QColor(85, 81, 137) : QColor(62, 59, 103));
  101.     }
  102.     //绘制八方位+中间图标
  103.     drawText(&painter);
  104. #if 0
  105.     //重置坐标系,并绘制八方位区域及中间区域,判断是否正确
  106.     painter.resetMatrix();
  107.     painter.resetTransform();
  108.     painter.setPen(Qt::white);
  109.     painter.drawRect(centerRect);
  110.     painter.drawRect(leftRect);
  111.     painter.drawRect(topRect);
  112.     painter.drawRect(rightRect);
  113.     painter.drawRect(bottomRect);
  114.     painter.drawRect(leftTopRect);
  115.     painter.drawRect(rightTopRect);
  116.     painter.drawRect(leftBottomRect);
  117.     painter.drawRect(rightBottomRect);
  118. #endif
  119. }
  120. void GaugeCloud::drawCircle(QPainter *painter, int radius, const QBrush &brush)
  121. {
  122.     painter->save();
  123.     painter->setPen(Qt::NoPen);
  124.     painter->setBrush(brush);
  125.     //绘制圆
  126.     painter->drawEllipse(-radius, -radius, radius * 2, radius * 2);
  127.     painter->restore();
  128. }
  129. void GaugeCloud::drawArc(QPainter *painter)
  130. {
  131.     int radius = 91;
  132.     painter->save();
  133.     painter->setBrush(Qt::NoBrush);
  134.     QPen pen;
  135.     pen.setWidthF(10);
  136.     pen.setColor(arcColor);
  137.     painter->setPen(pen);
  138.     QRectF rect = QRectF(-radius, -radius, radius * 2, radius * 2);
  139.     painter->drawArc(rect, 0 * 16, 360 * 16);
  140.     painter->restore();
  141. }
  142. void GaugeCloud::drawText(QPainter *painter)
  143. {
  144.     bool ok;
  145.     int radius = 100;
  146.     painter->save();
  147.     //判断当前按下坐标是否在中心区域,按下则文本不同颜色
  148.     if (pressed && centerRect.contains(lastPoint)) {
  149.         emit mousePressed(8);
  150.         painter->setPen(pressColor);
  151.     } else {
  152.         painter->setPen(textColor);
  153.     }
  154.     QFont font;
  155.     font.setPixelSize(25);
  156. #if (QT_VERSION >= QT_VERSION_CHECK(4,8,0))
  157.     font.setHintingPreference(QFont::PreferNoHinting);
  158. #endif
  159.     painter->setFont(font);
  160.     //绘制中间图标
  161.     QRectF centerRect(-radius, -radius, radius * 2, radius * 2);
  162.     QString centerText = this->centerText.replace("0x", "");
  163.     QChar centerChar = QChar(centerText.toInt(&ok, 16));
  164.     painter->drawText(centerRect, Qt::AlignCenter, centerChar);
  165.     //绘制八方位图标
  166.     radius = 70;
  167.     int offset = 15;
  168.     int steps = 8;
  169.     double angleStep = 360.0 / steps;
  170.     font.setPixelSize(20);
  171.     painter->setFont(font);
  172.     //从下侧图标开始绘制,顺时针旋转
  173.     QRect iconRect(-offset / 2, radius - offset, offset, offset);
  174.     QString iconText = this->iconText.replace("0x", "");
  175.     QChar iconChar = QChar(iconText.toInt(&ok, 16));
  176.     for (int i = 0; i < steps; i++) {
  177.         //判断鼠标按下的是哪个区域
  178.         if (pressed) {
  179.             bool contains = false;
  180.             if (bottomRect.contains(lastPoint) && i == 0) {
  181.                 contains = true;
  182.             } else if (leftBottomRect.contains(lastPoint) && i == 1) {
  183.                 contains = true;
  184.             } else if (leftRect.contains(lastPoint) && i == 2) {
  185.                 contains = true;
  186.             } else if (leftTopRect.contains(lastPoint) && i == 3) {
  187.                 contains = true;
  188.             } else if (topRect.contains(lastPoint) && i == 4) {
  189.                 contains = true;
  190.             } else if (rightTopRect.contains(lastPoint) && i == 5) {
  191.                 contains = true;
  192.             } else if (rightRect.contains(lastPoint) && i == 6) {
  193.                 contains = true;
  194.             } else if (rightBottomRect.contains(lastPoint) && i == 7) {
  195.                 contains = true;
  196.             }
  197.             if (contains) {
  198.                 painter->setPen(pressColor);
  199.                 emit mousePressed(i);
  200.             } else {
  201.                 painter->setPen(textColor);
  202.             }
  203.         } else {
  204.             painter->setPen(textColor);
  205.         }
  206.         painter->drawText(iconRect, Qt::AlignCenter, iconChar);
  207.         painter->rotate(angleStep);
  208.     }
  209.     painter->restore();
  210. }

欢迎关注微信公众号:Qt实战 (各种开源作品、经验整理、项目实战技巧,专注Qt/C++软件开发,视频监控、物联网、工业控制、嵌入式软件、国产化系统应用软件开发)QQ:517216493  WX:feiyangqingyun  QQ群:751439350

只看该作者 1楼 发表于: 2018-09-04
个人觉得最好的一个控件实用
离线liudianwu

只看该作者 2楼 发表于: 2018-09-05
回 青春的年代 的帖子
青春的年代:个人觉得最好的一个控件实用 (2018-09-04 23:11) 

哎呦不错,这马屁拍的很舒服哦!
欢迎关注微信公众号:Qt实战 (各种开源作品、经验整理、项目实战技巧,专注Qt/C++软件开发,视频监控、物联网、工业控制、嵌入式软件、国产化系统应用软件开发)QQ:517216493  WX:feiyangqingyun  QQ群:751439350
离线yyzq

只看该作者 3楼 发表于: 2018-09-05
心中有坐标系,万物皆painter
离线liuchangyin

只看该作者 4楼 发表于: 2018-09-05

只看该作者 5楼 发表于: 2018-09-05
离线九重水

只看该作者 6楼 发表于: 2018-09-05
具体的技术细节发了很多了。
有没有一个可以形成产品的点子?(我不是说商品,商品要求更高)

只看该作者 7楼 发表于: 2018-09-05
回 liudianwu 的帖子
liudianwu:哎呦不错,这马屁拍的很舒服哦![表情] (2018-09-05 09:02) 

刘大哥这个云台我之前用过 之前贴图搞死了 所以才觉得好 拍你马屁又没好处我才不拍
离线liudianwu

只看该作者 8楼 发表于: 2018-09-05
回 九重水 的帖子
九重水:具体的技术细节发了很多了。
有没有一个可以形成产品的点子?(我不是说商品,商品要求更高)[表情]  (2018-09-05 11:11) 

你可以帮我想想,卖钱了一起分钱!
欢迎关注微信公众号:Qt实战 (各种开源作品、经验整理、项目实战技巧,专注Qt/C++软件开发,视频监控、物联网、工业控制、嵌入式软件、国产化系统应用软件开发)QQ:517216493  WX:feiyangqingyun  QQ群:751439350
离线toby520

只看该作者 9楼 发表于: 2018-09-05
刘总从今儿起 开始搞商业推广了
QtQML多多指教开发社区 http://qtclub.heilqt.com
将QtCoding进行到底
关注移动互联网,关注金融
开发跨平台客户端,服务于金融行业
专业定制界面
群号:312125701   373955953(qml控件定做)
离线liudianwu

只看该作者 10楼 发表于: 2018-09-05
回 toby520 的帖子
toby520:[表情] 刘总从今儿起 开始搞商业推广了 (2018-09-05 13:00) 

是的,要开始努力挣奶粉钱了!
欢迎关注微信公众号:Qt实战 (各种开源作品、经验整理、项目实战技巧,专注Qt/C++软件开发,视频监控、物联网、工业控制、嵌入式软件、国产化系统应用软件开发)QQ:517216493  WX:feiyangqingyun  QQ群:751439350
在线往事纯白

只看该作者 11楼 发表于: 2018-09-05
同样是腰椎间盘,为什么你的这么突出

只看该作者 12楼 发表于: 2018-09-05
回 liudianwu 的帖子
liudianwu:是的,要开始努力挣奶粉钱了![表情] (2018-09-05 15:08) 

生二宝了?
离线九重水

只看该作者 13楼 发表于: 2018-09-06
回 liudianwu 的帖子
liudianwu:你可以帮我想想,卖钱了一起分钱![表情] (2018-09-05 11:42) 

我上次不是说了吗?我有一个项目,自己做着玩的(主要是我没钱将它做成实际项目),问你要不要一起做做,没钱付给你的。你说不做。。。

只看该作者 14楼 发表于: 2018-09-06
回 九重水 的帖子
九重水:我上次不是说了吗?我有一个项目,自己做着玩的(主要是我没钱将它做成实际项目),问你要不要一起做做,没钱付给你的。你说不做。。。[表情] (2018-09-06 13:41) 

没钱的东西刘大佬是不会研究的
离线liudianwu

只看该作者 15楼 发表于: 2018-09-07
回 青春的年代 的帖子
青春的年代:没钱的东西刘大佬是不会研究的 (2018-09-06 22:37) 

说的好像我只认钱似的!除了钱,我对其他东西也是有感情的好吧!
欢迎关注微信公众号:Qt实战 (各种开源作品、经验整理、项目实战技巧,专注Qt/C++软件开发,视频监控、物联网、工业控制、嵌入式软件、国产化系统应用软件开发)QQ:517216493  WX:feiyangqingyun  QQ群:751439350

只看该作者 16楼 发表于: 2018-09-07
回 liudianwu 的帖子
liudianwu:说的好像我只认钱似的!除了钱,我对其他东西也是有感情的好吧![表情] (2018-09-07 08:23) 

比如对我的感情
离线clickto

只看该作者 17楼 发表于: 2018-09-07
回 青春的年代 的帖子
青春的年代:比如对我的感情
 (2018-09-07 08:38) 

好浓的腐味啊!!!
离线liudianwu

只看该作者 18楼 发表于: 2018-09-07
回 clickto 的帖子
clickto:好浓的腐味啊!!![表情] (2018-09-07 09:17) 

那家伙想要搞基!
欢迎关注微信公众号:Qt实战 (各种开源作品、经验整理、项目实战技巧,专注Qt/C++软件开发,视频监控、物联网、工业控制、嵌入式软件、国产化系统应用软件开发)QQ:517216493  WX:feiyangqingyun  QQ群:751439350
离线九重水

只看该作者 19楼 发表于: 2018-09-08
回 liudianwu 的帖子
liudianwu:说的好像我只认钱似的!除了钱,我对其他东西也是有感情的好吧![表情] (2018-09-07 08:23) 

真的,我有个东西,想做一下,不过没有钱的。做不做?
离线liudianwu

只看该作者 20楼 发表于: 2018-09-08
回 九重水 的帖子
九重水:真的,我有个东西,想做一下,不过没有钱的。做不做?[表情] (2018-09-08 10:19) 

你过来,我保证不打你!
欢迎关注微信公众号:Qt实战 (各种开源作品、经验整理、项目实战技巧,专注Qt/C++软件开发,视频监控、物联网、工业控制、嵌入式软件、国产化系统应用软件开发)QQ:517216493  WX:feiyangqingyun  QQ群:751439350
离线octdream

只看该作者 21楼 发表于: 2018-09-08
大侠,我关心的是,可以免费更新吗?
离线liudianwu

只看该作者 22楼 发表于: 2018-09-08
回 octdream 的帖子
octdream:大侠,我关心的是,可以免费更新吗? (2018-09-08 21:38) 

买过的可以私聊!
欢迎关注微信公众号:Qt实战 (各种开源作品、经验整理、项目实战技巧,专注Qt/C++软件开发,视频监控、物联网、工业控制、嵌入式软件、国产化系统应用软件开发)QQ:517216493  WX:feiyangqingyun  QQ群:751439350
离线九重水

只看该作者 23楼 发表于: 2018-09-09
没钱不做,被青春年代说准了
离线九重水

只看该作者 24楼 发表于: 2018-09-09
离线crazy

只看该作者 25楼 发表于: 2018-09-09
帮顶
C/C++/Qt爱好者
邮箱: kevinlq0912@163.com
公众号: devstone
博客:http://kevinlq.com/
离线xiongj2

只看该作者 26楼 发表于: 2018-09-30
在刘大师的基础上略做改动,提供原码在Qt 5.7+VS2013上编译通过。
描述:云台控制控件原码
附件: xcloudpanel.zip (5 K) 下载次数:81
离线hanheyfon

只看该作者 27楼 发表于: 2018-10-13
参观学习收藏
离线xgslym

只看该作者 28楼 发表于: 2018-12-12
好东东,感谢大神。
快速回复
限100 字节
 
上一个 下一个