Qt-demo-basicdrawing
Posted COCO_PEAK_NOODLE
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Qt-demo-basicdrawing相关的知识,希望对你有一定的参考价值。
就是使用QPen和QBrush绘制图形,如图
主要使用的类
1-QPen
2-QBrush
3-QSpinBox
4-QComboBox
知识点
QComboBox添加可以这样,把实际类型也添加进去
penStyleComboBox = new QComboBox;
penStyleComboBox->addItem(tr("Solid"), static_cast<int>(Qt::SolidLine));
penStyleComboBox->addItem(tr("Dash"), static_cast<int>(Qt::DashLine));
penStyleComboBox->addItem(tr("Dot"), static_cast<int>(Qt::DotLine));
penStyleComboBox->addItem(tr("Dash Dot"), static_cast<int>(Qt::DashDotLine));
penStyleComboBox->addItem(tr("Dash Dot Dot"), static_cast<int>(Qt::DashDotDotLine));
penStyleComboBox->addItem(tr("None"), static_cast<int>(Qt::NoPen));
这里为什么static_cast一下,注释一下就知道了,结果如下
error: 'QVariant::QVariant(Qt::PenStyle)' is private
根据原理我把static_cast<int> 改成static_cast<double>也可以用。
看下如何使用
Qt::PenStyle style = Qt::PenStyle(penStyleComboBox->itemData(
penStyleComboBox->currentIndex(), IdRole).toInt());
它的函数定义是
QVariant itemData(int index, int role = Qt::UserRole) const;
所以不一定要传给IdRole这个参数,这个参数是干啥用的呢?可以深挖一下,这里掠过。
其他没有什么了。
以上是关于Qt-demo-basicdrawing的主要内容,如果未能解决你的问题,请参考以下文章