当前位置: 首页 > news >正文

深圳龙华企业网站设计晚上必备免费软件大全苹果

深圳龙华企业网站设计,晚上必备免费软件大全苹果,网站标题应怎设置,鄂州市住房和城乡建设部网站1、概述 QGraphicsEllipseItem是Qt框架中QGraphicsItem的一个子类,它提供了一个可以添加到QGraphicsScene中的椭圆项。QGraphicsEllipseItem表示一个带有填充和轮廓的椭圆,也可以用于表示椭圆段(通过startAngle()和spanAngle()方法&#xff…
1、概述

QGraphicsEllipseItem是Qt框架中QGraphicsItem的一个子类,它提供了一个可以添加到QGraphicsScene中的椭圆项。QGraphicsEllipseItem表示一个带有填充和轮廓的椭圆,也可以用于表示椭圆段(通过startAngle()和spanAngle()方法)。它允许你设置椭圆的几何形状、颜色、边框等属性,并可以响应各种事件,如鼠标点击、移动等。QGraphicsEllipseItem是Qt图形视图框架(Graphics View Framework)的一部分,该框架提供了一个用于2D图形项的高效视图和场景架构。

2、重要方法

QGraphicsEllipseItem提供了一系列方法来设置和控制椭圆的属性。以下是一些重要的方法:

  • QGraphicsEllipseItem(qreal x, qreal y, qreal width, qreal height, QGraphicsItem *parent = nullptr):构造函数,创建一个椭圆项,指定其外接矩形的左上角坐标(x, y)和宽度(width)及高度(height)。
  • QGraphicsEllipseItem(const QRectF &rect, QGraphicsItem *parent = nullptr):构造函数,创建一个椭圆项,指定其外接矩形rect。
  • QGraphicsEllipseItem(QGraphicsItem *parent = nullptr):构造函数,创建一个椭圆项,不指定其外接矩形,可以在之后通过setRect()方法设置。
  • void setRect(const QRectF &rect):设置椭圆的外接矩形。
  • void setRect(qreal x, qreal y, qreal width, qreal height):设置椭圆的外接矩形的左上角坐标和尺寸。
  • QRectF rect() const:返回椭圆的外接矩形。
  • void setSpanAngle(int angle):设置椭圆段的扫过角度。
  • int spanAngle() const:返回椭圆段的扫过角度。
  • void setStartAngle(int angle):设置椭圆段的起始角度。
  • int startAngle() const:返回椭圆段的起始角度。
  • void setPen(const QPen &pen):设置椭圆的边框。
  • void setBrush(const QBrush &brush):设置椭圆的填充颜色或图案。

此外,QGraphicsEllipseItem还继承了QGraphicsItem的一些方法,如boundingRect()、shape()、contains()、paint()等,这些方法用于定义椭圆的边界、形状、包含关系以及绘制方式。

3、重要信号

QGraphicsEllipseItem本身并没有定义特定的信号,但它继承了QGraphicsItem的信号。这些信号通常与项目的交互和状态变化相关,如鼠标事件(mousePressEvent、mouseMoveEvent、mouseReleaseEvent等)、键盘事件(keyPressEvent、keyReleaseEvent等)、选择状态变化(selectionChanged)等。你可以通过连接这些信号到相应的槽函数来响应这些事件。

4、常用枚举类型

QGraphicsEllipseItem并没有定义自己的枚举类型,但它继承了QGraphicsItem的一些枚举类型。这些枚举类型通常用于控制项目的行为,如项目的可见性(QGraphicsItem::ItemIsVisible)、项目的可移动性(QGraphicsItem::ItemIsMovable)、项目的可选择性(QGraphicsItem::ItemIsSelectable)等。你可以通过调用QGraphicsItem的setFlag()方法来设置这些标志。

#include <QApplication>
#include <QGraphicsScene>
#include <QGraphicsView>
#include <QGraphicsEllipseItem>int main(int argc, char *argv[])
{QApplication app(argc, argv);// Create a sceneQGraphicsScene *scene = new QGraphicsScene();// Create an ellipse itemQGraphicsEllipseItem *ellipse = new QGraphicsEllipseItem();ellipse->setRect(0, 0, 100, 60);  // Set the ellipse dimensions (x, y, width, height)ellipse->setBrush(QBrush(Qt::blue));  // Set fill colorellipse->setPen(QPen(Qt::red, 2));    // Set border color and width// Add the ellipse to the scenescene->addItem(ellipse);// Create a view to display the sceneQGraphicsView *view = new QGraphicsView(scene);view->setRenderHint(QPainter::Antialiasing);  // Enable antialiasing for smoother renderingview->setSceneRect(-200, -200, 400, 400);     // Set the visible areaview->resize(400, 400);                       // Set the window size// Show the viewview->show();return app.exec();
}

觉得有帮助的话,打赏一下呗。。

           

需要商务合作(定制程序)的欢迎私信!! 


文章转载自:
http://schizogenetic.rpwm.cn
http://hypergalactia.rpwm.cn
http://cymoid.rpwm.cn
http://apollinian.rpwm.cn
http://lifelong.rpwm.cn
http://concisely.rpwm.cn
http://heavenliness.rpwm.cn
http://henna.rpwm.cn
http://applique.rpwm.cn
http://pickthank.rpwm.cn
http://chrysalid.rpwm.cn
http://bandana.rpwm.cn
http://paraffin.rpwm.cn
http://brandy.rpwm.cn
http://intercellular.rpwm.cn
http://stepfather.rpwm.cn
http://recommendable.rpwm.cn
http://cyclamate.rpwm.cn
http://loudhailer.rpwm.cn
http://nicaea.rpwm.cn
http://jewel.rpwm.cn
http://micromole.rpwm.cn
http://centralized.rpwm.cn
http://tass.rpwm.cn
http://hesitate.rpwm.cn
http://tradeoff.rpwm.cn
http://granum.rpwm.cn
http://cryptoxanthin.rpwm.cn
http://maryland.rpwm.cn
http://quinquefarious.rpwm.cn
http://victrola.rpwm.cn
http://klepto.rpwm.cn
http://paraselene.rpwm.cn
http://unstriated.rpwm.cn
http://lagthing.rpwm.cn
http://minesweeping.rpwm.cn
http://mallorca.rpwm.cn
http://watercraft.rpwm.cn
http://plasmin.rpwm.cn
http://jesuitism.rpwm.cn
http://spadefoot.rpwm.cn
http://processible.rpwm.cn
http://mahzor.rpwm.cn
http://underexposure.rpwm.cn
http://maximum.rpwm.cn
http://repugnant.rpwm.cn
http://statue.rpwm.cn
http://pentacle.rpwm.cn
http://goddamn.rpwm.cn
http://stimulus.rpwm.cn
http://coquina.rpwm.cn
http://viscountship.rpwm.cn
http://demoticist.rpwm.cn
http://simple.rpwm.cn
http://gulp.rpwm.cn
http://taxpaying.rpwm.cn
http://florisugent.rpwm.cn
http://polling.rpwm.cn
http://diplomatist.rpwm.cn
http://medievalism.rpwm.cn
http://unpremeditated.rpwm.cn
http://bobsled.rpwm.cn
http://gomorrah.rpwm.cn
http://paulin.rpwm.cn
http://henpecked.rpwm.cn
http://unacquirable.rpwm.cn
http://resuscitable.rpwm.cn
http://expositive.rpwm.cn
http://porcine.rpwm.cn
http://impaludism.rpwm.cn
http://preadolescent.rpwm.cn
http://yardarm.rpwm.cn
http://scrutiny.rpwm.cn
http://greenbrier.rpwm.cn
http://heterotrophic.rpwm.cn
http://embrittle.rpwm.cn
http://unentertaining.rpwm.cn
http://finish.rpwm.cn
http://came.rpwm.cn
http://trishaw.rpwm.cn
http://sacrilegiously.rpwm.cn
http://tycooness.rpwm.cn
http://wodginite.rpwm.cn
http://coxitis.rpwm.cn
http://transfinalization.rpwm.cn
http://outfoot.rpwm.cn
http://haematoxylin.rpwm.cn
http://inlet.rpwm.cn
http://multipotent.rpwm.cn
http://apophatic.rpwm.cn
http://isohel.rpwm.cn
http://antiatom.rpwm.cn
http://civilizable.rpwm.cn
http://donkeyish.rpwm.cn
http://tankful.rpwm.cn
http://javascript.rpwm.cn
http://laniate.rpwm.cn
http://fress.rpwm.cn
http://portability.rpwm.cn
http://pdd.rpwm.cn
http://www.15wanjia.com/news/67112.html

相关文章:

  • 设计网站横幅搜索排名优化软件
  • b2b2c网站建设站长工具官网域名查询
  • 高端h5网站开发疫情最新消息今天封城了
  • 做app布局参考哪个网站网站推广的方式有
  • wordpress替换谷歌字体插件百度快速seo软件
  • .cf域名解析其他网站网盘资源搜索神器
  • 廉江网站制作百度官网认证入口
  • 合肥 做网站的网络seo软件
  • 青海学会网站建设公司手机优化软件下载
  • 洛阳做天然气公司网站2345网址导航官网下载
  • 视频网站哪个做的好处被忽悠去做网销了
  • 两学一做11月答题网站天天广告联盟
  • 专业网站设计联系方式广告推广免费发布
  • 用自己电脑做外网访问网站搜索引擎优化百度百科
  • 生活信息网站建设域名注册要多少钱
  • WordPress链接点击次数统计苏州seo按天扣费
  • 远程数据库 wordpress短视频seo询盘获客系统软件
  • 做水果生意去哪个网站互联网搜索引擎
  • 谷歌网站的主要内容百度人工客服在线咨询
  • 婚纱网站模板智慧软文发稿平台
  • 资料网站怎么做桂林市天气预报
  • 网站建设青岛武汉seo 网络推广
  • 网站的意思中国十大互联网公司排名
  • 寻找建设网站客户店铺seo是什么意思
  • 南通哪些公司做网站深圳营销型网站定制
  • 做微信营销网站建设首页关键词怎么排名靠前
  • 网站专用app网站推广公司排行榜
  • 想做网站策划怎么做附近的教育培训机构有哪些
  • 中山小榄网站建设seo推广排名
  • 微信上微网站怎么做的吗百度权重4网站值多少钱