在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例Qt 图形界面开发 → 使用QtGraphicsView框架实现的矢量图形编辑软件

使用QtGraphicsView框架实现的矢量图形编辑软件

Qt 图形界面开发

下载此实例
  • 开发语言:C/C++
  • 实例大小:39.67M
  • 下载次数:40
  • 浏览次数:263
  • 发布时间:2022-10-26
  • 实例类别:Qt 图形界面开发
  • 发 布 人:wangxuejun1972
  • 文件格式:.rar
  • 所需积分:4
 相关标签: graphics graph view csv 矢量图

实例介绍

【实例简介】使用QtGraphicsView框架实现的矢量图形编辑软件

    是一个使用QtGraphicsView框架实现的矢量图形编辑软件。具备绘制直线、圆形、矩形、折线、弧线等图元对象,图元可缩放、移动、拷贝删除、图元组合等功能。

   本项目在Qt5.9.8及以上版本可编译,本次编译Qt5.15.2 MinGW64下编译通过。

【实例截图】

    from clipboard

【核心代码】

.
├── Vector_DRAWING
│   ├── DrawingUI
│   │   ├── DrawingUI.pro
│   │   ├── RibbonStyMenu
│   │   │   ├── Resource
│   │   │   │   └── icon
│   │   │   │       ├── add_bottom.png
│   │   │   │       ├── add_left.png
│   │   │   │       ├── add_right.png
│   │   │   │       ├── add_top.png
│   │   │   │       ├── arrowBottom.png
│   │   │   │       ├── branch-closed.png
│   │   │   │       ├── branch-end.png
│   │   │   │       ├── branch-more.png
│   │   │   │       ├── branch-open.png
│   │   │   │       ├── branch_close.png
│   │   │   │       ├── branch_open.png
│   │   │   │       ├── calendar_nextmonth.png
│   │   │   │       ├── calendar_prevmonth.png
│   │   │   │       ├── checkbox_checked.png
│   │   │   │       ├── checkbox_checked_disable.png
│   │   │   │       ├── checkbox_parcial.png
│   │   │   │       ├── checkbox_parcial_disable.png
│   │   │   │       ├── checkbox_unchecked.png
│   │   │   │       ├── checkbox_unchecked_disable.png
│   │   │   │       ├── downarrow.png
│   │   │   │       ├── eye.png
│   │   │   │       ├── eyeClosed.png
│   │   │   │       ├── eyeClosed0.png
│   │   │   │       ├── radiobutton_checked.png
│   │   │   │       ├── radiobutton_checked_disable.png
│   │   │   │       ├── radiobutton_unchecked.png
│   │   │   │       ├── radiobutton_unchecked_disable.png
│   │   │   │       ├── unknow.png
│   │   │   │       ├── uparrow.png
│   │   │   │       └── vline.png
│   │   │   ├── ribbonsty.cpp
│   │   │   ├── ribbonsty.h
│   │   │   ├── ribbonsty.qrc
│   │   │   └── ribbonsty.ui
│   │   ├── createnodedialog.cpp
│   │   ├── createnodedialog.h
│   │   ├── createnodedialog.ui
│   │   ├── devicelistdialog.cpp
│   │   ├── devicelistdialog.h
│   │   ├── devicelistdialog.ui
│   │   ├── devicemodeltree.cpp
│   │   ├── devicemodeltree.h
│   │   ├── devicemodeltree.ui
│   │   ├── icon.qrc
│   │   ├── image_Icon
│   │   │   ├── Arcline.png
│   │   │   ├── ArrowConnector.png
│   │   │   ├── BezierCurve.png
│   │   │   ├── BinaryRouter.png
│   │   │   ├── BreakArraw.png
│   │   │   ├── Circle.png
│   │   │   ├── Gif.png
│   │   │   ├── ID.png
│   │   │   ├── Line.png
│   │   │   ├── MultilineText.png
│   │   │   ├── Name.png
│   │   │   ├── Picture.png
│   │   │   ├── Polyline.png
│   │   │   ├── Rectangle.png
│   │   │   ├── RegularPolygon.png
│   │   │   ├── Text.png
│   │   │   ├── TopologyBrokenline.png
│   │   │   ├── TopologyGraph.png
│   │   │   ├── TopologyLine.png
│   │   │   ├── background.png
│   │   │   ├── cabnet.png
│   │   │   ├── group.png
│   │   │   ├── ied2.png
│   │   │   ├── logo 4.png
│   │   │   ├── station.png
│   │   │   └── topology_graph.png
│   │   ├── images
│   │   │   ├── dance.gif
│   │   │   ├── default_image.png
│   │   │   ├── floor.gif
│   │   │   ├── fwc.gif
│   │   │   ├── perfect.gif
│   │   │   ├── scene.gif
│   │   │   ├── stream.gif
│   │   │   └── zui.gif
│   │   ├── impl_callback_graphoperator.cpp
│   │   ├── impl_callback_graphoperator.h
│   │   ├── main.cpp
│   │   ├── mainwindow.cpp
│   │   ├── mainwindow.h
│   │   ├── mainwindow.ui
│   │   ├── modeltree.cpp
│   │   ├── modeltree.h
│   │   ├── modeltree.ui
│   │   ├── shapecolordialog.cpp
│   │   ├── shapecolordialog.h
│   │   └── shapecolordialog.ui
│   ├── ZKHX_DRAWING.pro
│   ├── ZKHX_DRAWING.pro.user
│   ├── ZKHX_DRAWING.pro.user.a060d09
│   ├── bin
│   │   ├── config
│   │   │   └── devicecfg
│   │   │       ├── TopologyGraph.svg
│   │   │       ├── color_set.xml
│   │   │       ├── devices.xml
│   │   │       ├── points
│   │   │       │   ├── ACU-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── Center_Graph
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── Center_Information
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── Center_Monitor_Control
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── Center_Task
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── Center_Test
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── DAS-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── DEM-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints-old.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── DEM-MC-Type2
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── DIRVOT-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── DNDS-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── DORVOT-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── DPS3-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── IFSW-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── JZJK-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── MOD-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── PM-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── RFSW-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── SA-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── SDC-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── SPHA-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── SRECV-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── SRIRVOT-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── SSORVOT-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── TIME-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── WS-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── XDC-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── XPHA-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── XRECV-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── XRIRVOT-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── XRORVOT-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── XSIRVOT-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── XSORVOT-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   ├── XUC-MC-Type1
│   │   │       │   │   ├── Sequence.xml
│   │   │       │   │   ├── command.xml
│   │   │       │   │   ├── constraints.xml
│   │   │       │   │   ├── controlPoints.xml
│   │   │       │   │   ├── resultPoints.xml
│   │   │       │   │   └── statePoints.xml
│   │   │       │   └── dataTemplates.xml
│   │   │       ├── staticmacros
│   │   │       │   ├── staticmacrotree.xml
│   │   │       │   └── testClient.svg
│   │   │       └── station_model.xml
│   │   └── images
│   │       ├── dance.gif
│   │       ├── default_image.png
│   │       ├── floor.gif
│   │       ├── fwc.gif
│   │       ├── perfect.gif
│   │       ├── scene.gif
│   │       ├── stream.gif
│   │       ├── zui.gif
│   │       └── 跳舞.gif
│   ├── graphface
│   │   ├── graphbasedef_hx.cpp
│   │   ├── graphbasedef_hx.h
│   │   ├── graphface.pro
│   │   ├── graphface_global.h
│   │   ├── graphface_hx.cpp
│   │   ├── graphface_hx.h
│   │   ├── graphscene_client.cpp
│   │   ├── graphscene_client.h
│   │   ├── graphscene_hx.cpp
│   │   ├── graphscene_hx.h
│   │   ├── graphview_hx.cpp
│   │   ├── graphview_hx.h
│   │   ├── icallback_graphoperator.cpp
│   │   ├── icallback_graphoperator.h
│   │   ├── icallback_graphoperator_cient.cpp
│   │   └── icallback_graphoperator_cient.h
│   ├── images
│   │   ├── dance.gif
│   │   ├── default_image.png
│   │   ├── floor.gif
│   │   ├── fwc.gif
│   │   ├── perfect.gif
│   │   ├── scene.gif
│   │   ├── stream.gif
│   │   └── zui.gif
│   ├── property
│   │   ├── icallback_property_hx.h
│   │   ├── property.pro
│   │   ├── property_global.h
│   │   ├── propertybasedef_hx.h
│   │   ├── propertydelegate_hx.cpp
│   │   ├── propertydelegate_hx.h
│   │   ├── propertyitem_hx.cpp
│   │   ├── propertyitem_hx.h
│   │   ├── propertymodel_hx.cpp
│   │   ├── propertymodel_hx.h
│   │   ├── propertytreeview_hx.cpp
│   │   ├── propertytreeview_hx.h
│   │   ├── propertywidget_hx.cpp
│   │   ├── propertywidget_hx.h
│   │   └── range_hx.h
│   └── shape
│       ├── drawmath_hx.cpp
│       ├── drawmath_hx.h
│       ├── factory_protype_hx.h
│       ├── gnotify_hx.cpp
│       ├── gnotify_hx.h
│       ├── gvarsdataset_hx.cpp
│       ├── gvarsdataset_hx.h
│       ├── icallback_property_hx.h
│       ├── movielabel.cpp
│       ├── movielabel.h
│       ├── range_hx.h
│       ├── shape.pro
│       ├── shape_global.h
│       ├── shapearc_hx.cpp
│       ├── shapearc_hx.h
│       ├── shapearrowline.cpp
│       ├── shapearrowline.h
│       ├── shapebase_def_hx.h
│       ├── shapebase_hx.cpp
│       ├── shapebase_hx.h
│       ├── shapebezier_hx.cpp
│       ├── shapebezier_hx.h
│       ├── shapebrokenarrawline_hx.cpp
│       ├── shapebrokenarrawline_hx.h
│       ├── shapeellipse_hx.cpp
│       ├── shapeellipse_hx.h
│       ├── shapefactory_hx.cpp
│       ├── shapefactory_hx.h
│       ├── shapegif_hx.cpp
│       ├── shapegif_hx.h
│       ├── shapegroup_hx.cpp
│       ├── shapegroup_hx.h
│       ├── shapeimage_hx.cpp
│       ├── shapeimage_hx.h
│       ├── shapeline_hx.cpp
│       ├── shapeline_hx.h
│       ├── shapemultitext_hx.cpp
│       ├── shapemultitext_hx.h
│       ├── shapepicturedialog.cpp
│       ├── shapepicturedialog.h
│       ├── shapepicturedialog.ui
│       ├── shapepolygon_hx.cpp
│       ├── shapepolygon_hx.h
│       ├── shapepolyline_hx.cpp
│       ├── shapepolyline_hx.h
│       ├── shaperect_hx.cpp
│       ├── shaperect_hx.h
│       ├── shapetext_hx.cpp
│       ├── shapetext_hx.h
│       ├── shapetopology_hx.cpp
│       ├── shapetopology_hx.h
│       ├── shapetopologybrokenline_hx.cpp
│       ├── shapetopologybrokenline_hx.h
│       ├── shapetopologyline_hx.cpp
│       ├── shapetopologyline_hx.h
│       ├── shapetwowaychoice_hx.cpp
│       └── shapetwowaychoice_hx.h
└── 使用QtGraphicsView框架实现的矢量图形编辑软件_Vector_DRAWING.rar

51 directories, 411 files


实例下载地址

使用QtGraphicsView框架实现的矢量图形编辑软件

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

第 1 楼 hxl751268298 发表于: 2023-09-02 16:06 03
能联系到作者吗?

支持(0) 盖楼(回复)

发表评论

(您的评论需要经过审核才能显示)

查看所有1条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警