├── LICENSE ├── README.md ├── bin ├── D3Dcompiler_47.dll ├── Qt5Core.dll ├── Qt5Gui.dll ├── Qt5Network.dll ├── Qt5PrintSupport.dll ├── Qt5Svg.dll ├── Qt5Widgets.dll ├── Qt5Xml.dll ├── QtSVGEditor.exe ├── api-ms-win-core-console-l1-1-0.dll ├── api-ms-win-core-datetime-l1-1-0.dll ├── api-ms-win-core-debug-l1-1-0.dll ├── api-ms-win-core-errorhandling-l1-1-0.dll ├── api-ms-win-core-file-l1-1-0.dll ├── api-ms-win-core-file-l1-2-0.dll ├── api-ms-win-core-file-l2-1-0.dll ├── api-ms-win-core-handle-l1-1-0.dll ├── api-ms-win-core-heap-l1-1-0.dll ├── api-ms-win-core-interlocked-l1-1-0.dll ├── api-ms-win-core-libraryloader-l1-1-0.dll ├── api-ms-win-core-localization-l1-2-0.dll ├── api-ms-win-core-memory-l1-1-0.dll ├── api-ms-win-core-namedpipe-l1-1-0.dll ├── api-ms-win-core-processenvironment-l1-1-0.dll ├── api-ms-win-core-processthreads-l1-1-0.dll ├── api-ms-win-core-processthreads-l1-1-1.dll ├── api-ms-win-core-profile-l1-1-0.dll ├── api-ms-win-core-rtlsupport-l1-1-0.dll ├── api-ms-win-core-string-l1-1-0.dll ├── api-ms-win-core-synch-l1-1-0.dll ├── api-ms-win-core-synch-l1-2-0.dll ├── api-ms-win-core-sysinfo-l1-1-0.dll ├── api-ms-win-core-timezone-l1-1-0.dll ├── api-ms-win-core-util-l1-1-0.dll ├── api-ms-win-crt-conio-l1-1-0.dll ├── api-ms-win-crt-convert-l1-1-0.dll ├── api-ms-win-crt-environment-l1-1-0.dll ├── api-ms-win-crt-filesystem-l1-1-0.dll ├── api-ms-win-crt-heap-l1-1-0.dll ├── api-ms-win-crt-locale-l1-1-0.dll ├── api-ms-win-crt-math-l1-1-0.dll ├── api-ms-win-crt-multibyte-l1-1-0.dll ├── api-ms-win-crt-private-l1-1-0.dll ├── api-ms-win-crt-process-l1-1-0.dll ├── api-ms-win-crt-runtime-l1-1-0.dll ├── api-ms-win-crt-stdio-l1-1-0.dll ├── api-ms-win-crt-string-l1-1-0.dll ├── api-ms-win-crt-time-l1-1-0.dll ├── api-ms-win-crt-utility-l1-1-0.dll ├── iconengines │ └── qsvgicon.dll ├── imageformats │ ├── qdds.dll │ ├── qgif.dll │ ├── qicns.dll │ ├── qico.dll │ ├── qjpeg.dll │ ├── qsvg.dll │ ├── qtga.dll │ ├── qtiff.dll │ ├── qwbmp.dll │ └── qwebp.dll ├── msvcp140.dll ├── opengl32sw.dll ├── platforms │ └── qwindows.dll ├── printsupport │ └── windowsprintersupport.dll ├── qt_zh_CN.qm ├── slm_runtime.dll ├── ucrtbase.dll └── vcruntime140.dll └── src ├── ActionHistory.cpp ├── ActionHistory.h ├── BasetypeDef.h ├── DlgAbout.cpp ├── DlgAbout.h ├── DlgGradient.cpp ├── DlgGradient.h ├── DlgInputName.cpp ├── DlgInputName.h ├── DlgPattern.cpp ├── DlgPattern.h ├── DlgRotateSlider.cpp ├── DlgRotateSlider.h ├── ElementMaker.cpp ├── ElementMaker.h ├── ExportMarco.h ├── FocusForElement.cpp ├── FocusForElement.h ├── FocusManager.cpp ├── FocusManager.h ├── GeneratedFiles ├── Debug │ ├── moc_DlgAbout.cpp │ ├── moc_DlgGradient.cpp │ ├── moc_DlgInputName.cpp │ ├── moc_DlgPattern.cpp │ ├── moc_DlgRotateSlider.cpp │ ├── moc_LineEditEX.cpp │ ├── moc_MainFrame.cpp │ ├── moc_MenuColor.cpp │ ├── moc_MenuCombox.cpp │ ├── moc_MenuRotate.cpp │ ├── moc_NewFileView.cpp │ ├── moc_PanePropertyTableView.cpp │ ├── moc_SVGView.cpp │ ├── moc_TabWidgetEx.cpp │ ├── moc_TableWidgetEx.cpp │ ├── moc_ToolButtonColorMenu.cpp │ └── moc_ToolButtonComboxMenu.cpp ├── Release │ ├── moc_DlgAbout.cpp │ ├── moc_DlgGradient.cpp │ ├── moc_DlgInputName.cpp │ ├── moc_DlgPattern.cpp │ ├── moc_DlgRotateSlider.cpp │ ├── moc_LineEditEX.cpp │ ├── moc_MainFrame.cpp │ ├── moc_MenuColor.cpp │ ├── moc_MenuCombox.cpp │ ├── moc_MenuRotate.cpp │ ├── moc_NewFileView.cpp │ ├── moc_PanePropertyTableView.cpp │ ├── moc_TabWidgetEx.cpp │ ├── moc_TableWidgetEx.cpp │ ├── moc_ToolButtonColorMenu.cpp │ └── moc_ToolButtonComboxMenu.cpp ├── moc_MainFrame.cpp ├── qrc_QtSVGEditor.cpp ├── ui_UIAbout.h ├── ui_UIGradient.h ├── ui_UIInputName.h ├── ui_UIPattern.h └── ui_UIRotateSlider.h ├── LineEditEX.cpp ├── LineEditEX.h ├── MainFrame.cpp ├── MainFrame.h ├── MenuColor.cpp ├── MenuColor.h ├── MenuCombox.cpp ├── MenuCombox.h ├── MenuRotate.cpp ├── MenuRotate.h ├── NewFileView.cpp ├── NewFileView.h ├── PanePropertyTableView.cpp ├── PanePropertyTableView.h ├── QtSVGEditor.pri ├── QtSVGEditor.pro ├── QtSVGEditor.qrc ├── SVGDef.h ├── SVGDocument.cpp ├── SVGDocument.h ├── SVGEditBase.cpp ├── SVGEditBase.h ├── SVGEditEllipse.cpp ├── SVGEditEllipse.h ├── SVGEditImage.cpp ├── SVGEditImage.h ├── SVGEditLine.cpp ├── SVGEditLine.h ├── SVGEditMove.cpp ├── SVGEditMove.h ├── SVGEditPath.cpp ├── SVGEditPath.h ├── SVGEditPolyline.cpp ├── SVGEditPolyline.h ├── SVGEditRect.cpp ├── SVGEditRect.h ├── SVGEditSelect.cpp ├── SVGEditSelect.h ├── SVGEditText.cpp ├── SVGEditText.h ├── SVGEditTool.cpp ├── SVGEditTool.h ├── SVGEditZoom.cpp ├── SVGEditZoom.h ├── SVGEditor.aps ├── SVGEditor.rc ├── SVGElement.cpp ├── SVGElement.h ├── SVGElementA.cpp ├── SVGElementA.h ├── SVGElementCircle.cpp ├── SVGElementCircle.h ├── SVGElementClipPath.cpp ├── SVGElementClipPath.h ├── SVGElementComment.cpp ├── SVGElementComment.h ├── SVGElementDataSection.cpp ├── SVGElementDataSection.h ├── SVGElementDefs.cpp ├── SVGElementDefs.h ├── SVGElementDoctype.cpp ├── SVGElementDoctype.h ├── SVGElementEllipse.cpp ├── SVGElementEllipse.h ├── SVGElementG.cpp ├── SVGElementG.h ├── SVGElementGTemp.cpp ├── SVGElementGTemp.h ├── SVGElementGVirtual.cpp ├── SVGElementGVirtual.h ├── SVGElementGradient.cpp ├── SVGElementGradient.h ├── SVGElementImage.cpp ├── SVGElementImage.h ├── SVGElementLine.cpp ├── SVGElementLine.h ├── SVGElementLinearGradient.cpp ├── SVGElementLinearGradient.h ├── SVGElementMask.cpp ├── SVGElementMask.h ├── SVGElementPath.cpp ├── SVGElementPath.h ├── SVGElementPattern.cpp ├── SVGElementPattern.h ├── SVGElementPolygon.cpp ├── SVGElementPolygon.h ├── SVGElementPolyline.cpp ├── SVGElementPolyline.h ├── SVGElementRadialGradient.cpp ├── SVGElementRadialGradient.h ├── SVGElementRect.cpp ├── SVGElementRect.h ├── SVGElementSVG.cpp ├── SVGElementSVG.h ├── SVGElementScript.cpp ├── SVGElementScript.h ├── SVGElementShape.cpp ├── SVGElementShape.h ├── SVGElementStop.cpp ├── SVGElementStop.h ├── SVGElementStyle.cpp ├── SVGElementStyle.h ├── SVGElementStyleClass.cpp ├── SVGElementStyleClass.h ├── SVGElementStyleable.cpp ├── SVGElementStyleable.h ├── SVGElementSwitch.cpp ├── SVGElementSwitch.h ├── SVGElementSymbol.cpp ├── SVGElementSymbol.h ├── SVGElementText.cpp ├── SVGElementText.h ├── SVGElementTextContent.cpp ├── SVGElementTextContent.h ├── SVGElementTspan.cpp ├── SVGElementTspan.h ├── SVGElementUse.cpp ├── SVGElementUse.h ├── SVGFocusShape.cpp ├── SVGFocusShape.h ├── SVGGDIPath.cpp ├── SVGGDIPath.h ├── SVGGlobal.cpp ├── SVGGlobal.h ├── SVGLineF.cpp ├── SVGLineF.h ├── SVGMatrix.cpp ├── SVGMatrix.h ├── SVGPathSeg.cpp ├── SVGPathSeg.h ├── SVGPointF.cpp ├── SVGPointF.h ├── SVGRectF.cpp ├── SVGRectF.h ├── SVGToolSelect.cpp ├── SVGToolSelect.h ├── SVGToolShape.cpp ├── SVGToolShape.h ├── SVGView.cpp ├── SVGView.h ├── StringHash.cpp ├── StringHash.h ├── TabWidgetEx.cpp ├── TabWidgetEx.h ├── TableWidgetEx.cpp ├── TableWidgetEx.h ├── TextDraw.cpp ├── TextDraw.h ├── ToolButtonColorMenu.cpp ├── ToolButtonColorMenu.h ├── ToolButtonComboxMenu.cpp ├── ToolButtonComboxMenu.h ├── ToolFun.cpp ├── ToolFun.h ├── images ├── SVGEditor.ico ├── adjustsize.png ├── alignbottom.png ├── alignleft.png ├── alignmidhor.png ├── alignmidver.png ├── alignright.png ├── alignsameheight.png ├── alignsamesize.png ├── alignsamespacehor.png ├── alignsamespacever.png ├── alignsamewidth.png ├── aligntop.png ├── arrow.png ├── arrowmatrix.png ├── back.png ├── closefile.png ├── defaultimage.png ├── delete.png ├── drawaaa.png ├── drawarc.png ├── drawcircle.png ├── drawcontinue.png ├── drawcopy.png ├── drawcursor.png ├── drawellipse.png ├── drawimage.png ├── drawline.png ├── drawpath.png ├── drawpolygon.png ├── drawpolyline.png ├── drawrect.png ├── drawtext.png ├── drawtextv.png ├── dropdown.png ├── editcopy.png ├── editcut.png ├── editfile.png ├── editpaste.png ├── editredo.png ├── editundo.png ├── exportpdf.png ├── fast.png ├── filenew.png ├── filenewhtml.png ├── fileopen.png ├── fileopenhtml.png ├── fileprint.png ├── filesave.png ├── fillcolor.png ├── gradienttype.png ├── graphicbase.png ├── graphicelement.png ├── group.png ├── hand_close.png ├── hand_open.png ├── htmlfile.png ├── iconlinetype.png ├── iconlinewidth.png ├── layerbottom.png ├── layerdown.png ├── layertop.png ├── layerup.png ├── linecolor.png ├── linetype.png ├── linewidth.png ├── lock.png ├── lookfor.png ├── move.png ├── movecursor.png ├── newproperty.png ├── openfolder.png ├── pageset.png ├── pattern.png ├── refresh.png ├── rename.png ├── rotate.png ├── saveall.png ├── saveas.png ├── select.png ├── showgrid.png ├── showrule.png ├── svgfile.png ├── taggif.png ├── taggifselect.png ├── tagjpg.png ├── tagpng.png ├── tagsvg.png ├── tagtiff.png ├── textbold.png ├── textcolor.png ├── textitalic.png ├── textunder.png ├── turnleft.png ├── turnoverhor.png ├── turnoverver.png ├── turnright.png ├── ungroup.png ├── unlock.png ├── windows16.png ├── zoomin.png ├── zoomout.png └── zoomrestore.png ├── main.cpp ├── main.h ├── qzipreader_p.h ├── qzipwriter_p.h └── ui ├── UIAbout.ui ├── UIGradient.ui ├── UIInputName.ui ├── UIPattern.ui └── UIRotateSlider.ui /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/README.md -------------------------------------------------------------------------------- /bin/D3Dcompiler_47.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/D3Dcompiler_47.dll -------------------------------------------------------------------------------- /bin/Qt5Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/Qt5Core.dll -------------------------------------------------------------------------------- /bin/Qt5Gui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/Qt5Gui.dll -------------------------------------------------------------------------------- /bin/Qt5Network.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/Qt5Network.dll -------------------------------------------------------------------------------- /bin/Qt5PrintSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/Qt5PrintSupport.dll -------------------------------------------------------------------------------- /bin/Qt5Svg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/Qt5Svg.dll -------------------------------------------------------------------------------- /bin/Qt5Widgets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/Qt5Widgets.dll -------------------------------------------------------------------------------- /bin/Qt5Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/Qt5Xml.dll -------------------------------------------------------------------------------- /bin/QtSVGEditor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/QtSVGEditor.exe -------------------------------------------------------------------------------- /bin/api-ms-win-core-console-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-console-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-datetime-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-datetime-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-debug-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-debug-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-errorhandling-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-errorhandling-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-file-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-file-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-file-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-file-l1-2-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-file-l2-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-file-l2-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-handle-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-handle-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-heap-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-heap-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-interlocked-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-interlocked-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-libraryloader-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-libraryloader-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-localization-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-localization-l1-2-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-memory-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-memory-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-namedpipe-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-namedpipe-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-processenvironment-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-processenvironment-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-processthreads-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-processthreads-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-processthreads-l1-1-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-processthreads-l1-1-1.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-profile-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-profile-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-rtlsupport-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-rtlsupport-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-string-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-string-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-synch-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-synch-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-synch-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-synch-l1-2-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-sysinfo-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-sysinfo-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-timezone-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-timezone-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-core-util-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-core-util-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-crt-conio-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-crt-conio-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-crt-convert-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-crt-convert-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-crt-environment-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-crt-environment-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-crt-filesystem-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-crt-filesystem-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-crt-heap-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-crt-heap-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-crt-locale-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-crt-locale-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-crt-math-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-crt-math-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-crt-multibyte-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-crt-multibyte-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-crt-private-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-crt-private-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-crt-process-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-crt-process-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-crt-runtime-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-crt-runtime-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-crt-stdio-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-crt-stdio-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-crt-string-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-crt-string-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-crt-time-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-crt-time-l1-1-0.dll -------------------------------------------------------------------------------- /bin/api-ms-win-crt-utility-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/api-ms-win-crt-utility-l1-1-0.dll -------------------------------------------------------------------------------- /bin/iconengines/qsvgicon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/iconengines/qsvgicon.dll -------------------------------------------------------------------------------- /bin/imageformats/qdds.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/imageformats/qdds.dll -------------------------------------------------------------------------------- /bin/imageformats/qgif.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/imageformats/qgif.dll -------------------------------------------------------------------------------- /bin/imageformats/qicns.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/imageformats/qicns.dll -------------------------------------------------------------------------------- /bin/imageformats/qico.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/imageformats/qico.dll -------------------------------------------------------------------------------- /bin/imageformats/qjpeg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/imageformats/qjpeg.dll -------------------------------------------------------------------------------- /bin/imageformats/qsvg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/imageformats/qsvg.dll -------------------------------------------------------------------------------- /bin/imageformats/qtga.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/imageformats/qtga.dll -------------------------------------------------------------------------------- /bin/imageformats/qtiff.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/imageformats/qtiff.dll -------------------------------------------------------------------------------- /bin/imageformats/qwbmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/imageformats/qwbmp.dll -------------------------------------------------------------------------------- /bin/imageformats/qwebp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/imageformats/qwebp.dll -------------------------------------------------------------------------------- /bin/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/msvcp140.dll -------------------------------------------------------------------------------- /bin/opengl32sw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/opengl32sw.dll -------------------------------------------------------------------------------- /bin/platforms/qwindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/platforms/qwindows.dll -------------------------------------------------------------------------------- /bin/printsupport/windowsprintersupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/printsupport/windowsprintersupport.dll -------------------------------------------------------------------------------- /bin/qt_zh_CN.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/qt_zh_CN.qm -------------------------------------------------------------------------------- /bin/slm_runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/slm_runtime.dll -------------------------------------------------------------------------------- /bin/ucrtbase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/ucrtbase.dll -------------------------------------------------------------------------------- /bin/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/bin/vcruntime140.dll -------------------------------------------------------------------------------- /src/ActionHistory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/ActionHistory.cpp -------------------------------------------------------------------------------- /src/ActionHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/ActionHistory.h -------------------------------------------------------------------------------- /src/BasetypeDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/BasetypeDef.h -------------------------------------------------------------------------------- /src/DlgAbout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/DlgAbout.cpp -------------------------------------------------------------------------------- /src/DlgAbout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/DlgAbout.h -------------------------------------------------------------------------------- /src/DlgGradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/DlgGradient.cpp -------------------------------------------------------------------------------- /src/DlgGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/DlgGradient.h -------------------------------------------------------------------------------- /src/DlgInputName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/DlgInputName.cpp -------------------------------------------------------------------------------- /src/DlgInputName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/DlgInputName.h -------------------------------------------------------------------------------- /src/DlgPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/DlgPattern.cpp -------------------------------------------------------------------------------- /src/DlgPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/DlgPattern.h -------------------------------------------------------------------------------- /src/DlgRotateSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/DlgRotateSlider.cpp -------------------------------------------------------------------------------- /src/DlgRotateSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/DlgRotateSlider.h -------------------------------------------------------------------------------- /src/ElementMaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/ElementMaker.cpp -------------------------------------------------------------------------------- /src/ElementMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/ElementMaker.h -------------------------------------------------------------------------------- /src/ExportMarco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/ExportMarco.h -------------------------------------------------------------------------------- /src/FocusForElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/FocusForElement.cpp -------------------------------------------------------------------------------- /src/FocusForElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/FocusForElement.h -------------------------------------------------------------------------------- /src/FocusManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/FocusManager.cpp -------------------------------------------------------------------------------- /src/FocusManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/FocusManager.h -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_DlgAbout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Debug/moc_DlgAbout.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_DlgGradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Debug/moc_DlgGradient.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_DlgInputName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Debug/moc_DlgInputName.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_DlgPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Debug/moc_DlgPattern.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_DlgRotateSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Debug/moc_DlgRotateSlider.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_LineEditEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Debug/moc_LineEditEX.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_MainFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Debug/moc_MainFrame.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_MenuColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Debug/moc_MenuColor.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_MenuCombox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Debug/moc_MenuCombox.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_MenuRotate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Debug/moc_MenuRotate.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_NewFileView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Debug/moc_NewFileView.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_PanePropertyTableView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Debug/moc_PanePropertyTableView.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_SVGView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Debug/moc_SVGView.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_TabWidgetEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Debug/moc_TabWidgetEx.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_TableWidgetEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Debug/moc_TableWidgetEx.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_ToolButtonColorMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Debug/moc_ToolButtonColorMenu.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Debug/moc_ToolButtonComboxMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Debug/moc_ToolButtonComboxMenu.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_DlgAbout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Release/moc_DlgAbout.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_DlgGradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Release/moc_DlgGradient.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_DlgInputName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Release/moc_DlgInputName.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_DlgPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Release/moc_DlgPattern.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_DlgRotateSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Release/moc_DlgRotateSlider.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_LineEditEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Release/moc_LineEditEX.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_MainFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Release/moc_MainFrame.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_MenuColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Release/moc_MenuColor.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_MenuCombox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Release/moc_MenuCombox.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_MenuRotate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Release/moc_MenuRotate.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_NewFileView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Release/moc_NewFileView.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_PanePropertyTableView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Release/moc_PanePropertyTableView.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_TabWidgetEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Release/moc_TabWidgetEx.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_TableWidgetEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Release/moc_TableWidgetEx.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_ToolButtonColorMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Release/moc_ToolButtonColorMenu.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/Release/moc_ToolButtonComboxMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/Release/moc_ToolButtonComboxMenu.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/moc_MainFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/moc_MainFrame.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/qrc_QtSVGEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/qrc_QtSVGEditor.cpp -------------------------------------------------------------------------------- /src/GeneratedFiles/ui_UIAbout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/ui_UIAbout.h -------------------------------------------------------------------------------- /src/GeneratedFiles/ui_UIGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/ui_UIGradient.h -------------------------------------------------------------------------------- /src/GeneratedFiles/ui_UIInputName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/ui_UIInputName.h -------------------------------------------------------------------------------- /src/GeneratedFiles/ui_UIPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/ui_UIPattern.h -------------------------------------------------------------------------------- /src/GeneratedFiles/ui_UIRotateSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/GeneratedFiles/ui_UIRotateSlider.h -------------------------------------------------------------------------------- /src/LineEditEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/LineEditEX.cpp -------------------------------------------------------------------------------- /src/LineEditEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/LineEditEX.h -------------------------------------------------------------------------------- /src/MainFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/MainFrame.cpp -------------------------------------------------------------------------------- /src/MainFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/MainFrame.h -------------------------------------------------------------------------------- /src/MenuColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/MenuColor.cpp -------------------------------------------------------------------------------- /src/MenuColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/MenuColor.h -------------------------------------------------------------------------------- /src/MenuCombox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/MenuCombox.cpp -------------------------------------------------------------------------------- /src/MenuCombox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/MenuCombox.h -------------------------------------------------------------------------------- /src/MenuRotate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/MenuRotate.cpp -------------------------------------------------------------------------------- /src/MenuRotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/MenuRotate.h -------------------------------------------------------------------------------- /src/NewFileView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/NewFileView.cpp -------------------------------------------------------------------------------- /src/NewFileView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/NewFileView.h -------------------------------------------------------------------------------- /src/PanePropertyTableView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/PanePropertyTableView.cpp -------------------------------------------------------------------------------- /src/PanePropertyTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/PanePropertyTableView.h -------------------------------------------------------------------------------- /src/QtSVGEditor.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/QtSVGEditor.pri -------------------------------------------------------------------------------- /src/QtSVGEditor.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/QtSVGEditor.pro -------------------------------------------------------------------------------- /src/QtSVGEditor.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/QtSVGEditor.qrc -------------------------------------------------------------------------------- /src/SVGDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGDef.h -------------------------------------------------------------------------------- /src/SVGDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGDocument.cpp -------------------------------------------------------------------------------- /src/SVGDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGDocument.h -------------------------------------------------------------------------------- /src/SVGEditBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditBase.cpp -------------------------------------------------------------------------------- /src/SVGEditBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditBase.h -------------------------------------------------------------------------------- /src/SVGEditEllipse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditEllipse.cpp -------------------------------------------------------------------------------- /src/SVGEditEllipse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditEllipse.h -------------------------------------------------------------------------------- /src/SVGEditImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditImage.cpp -------------------------------------------------------------------------------- /src/SVGEditImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditImage.h -------------------------------------------------------------------------------- /src/SVGEditLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditLine.cpp -------------------------------------------------------------------------------- /src/SVGEditLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditLine.h -------------------------------------------------------------------------------- /src/SVGEditMove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditMove.cpp -------------------------------------------------------------------------------- /src/SVGEditMove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditMove.h -------------------------------------------------------------------------------- /src/SVGEditPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditPath.cpp -------------------------------------------------------------------------------- /src/SVGEditPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditPath.h -------------------------------------------------------------------------------- /src/SVGEditPolyline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditPolyline.cpp -------------------------------------------------------------------------------- /src/SVGEditPolyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditPolyline.h -------------------------------------------------------------------------------- /src/SVGEditRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditRect.cpp -------------------------------------------------------------------------------- /src/SVGEditRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditRect.h -------------------------------------------------------------------------------- /src/SVGEditSelect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditSelect.cpp -------------------------------------------------------------------------------- /src/SVGEditSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditSelect.h -------------------------------------------------------------------------------- /src/SVGEditText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditText.cpp -------------------------------------------------------------------------------- /src/SVGEditText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditText.h -------------------------------------------------------------------------------- /src/SVGEditTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditTool.cpp -------------------------------------------------------------------------------- /src/SVGEditTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditTool.h -------------------------------------------------------------------------------- /src/SVGEditZoom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditZoom.cpp -------------------------------------------------------------------------------- /src/SVGEditZoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditZoom.h -------------------------------------------------------------------------------- /src/SVGEditor.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditor.aps -------------------------------------------------------------------------------- /src/SVGEditor.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGEditor.rc -------------------------------------------------------------------------------- /src/SVGElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElement.cpp -------------------------------------------------------------------------------- /src/SVGElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElement.h -------------------------------------------------------------------------------- /src/SVGElementA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementA.cpp -------------------------------------------------------------------------------- /src/SVGElementA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementA.h -------------------------------------------------------------------------------- /src/SVGElementCircle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementCircle.cpp -------------------------------------------------------------------------------- /src/SVGElementCircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementCircle.h -------------------------------------------------------------------------------- /src/SVGElementClipPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementClipPath.cpp -------------------------------------------------------------------------------- /src/SVGElementClipPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementClipPath.h -------------------------------------------------------------------------------- /src/SVGElementComment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementComment.cpp -------------------------------------------------------------------------------- /src/SVGElementComment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementComment.h -------------------------------------------------------------------------------- /src/SVGElementDataSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementDataSection.cpp -------------------------------------------------------------------------------- /src/SVGElementDataSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementDataSection.h -------------------------------------------------------------------------------- /src/SVGElementDefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementDefs.cpp -------------------------------------------------------------------------------- /src/SVGElementDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementDefs.h -------------------------------------------------------------------------------- /src/SVGElementDoctype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementDoctype.cpp -------------------------------------------------------------------------------- /src/SVGElementDoctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementDoctype.h -------------------------------------------------------------------------------- /src/SVGElementEllipse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementEllipse.cpp -------------------------------------------------------------------------------- /src/SVGElementEllipse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementEllipse.h -------------------------------------------------------------------------------- /src/SVGElementG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementG.cpp -------------------------------------------------------------------------------- /src/SVGElementG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementG.h -------------------------------------------------------------------------------- /src/SVGElementGTemp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementGTemp.cpp -------------------------------------------------------------------------------- /src/SVGElementGTemp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementGTemp.h -------------------------------------------------------------------------------- /src/SVGElementGVirtual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementGVirtual.cpp -------------------------------------------------------------------------------- /src/SVGElementGVirtual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementGVirtual.h -------------------------------------------------------------------------------- /src/SVGElementGradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementGradient.cpp -------------------------------------------------------------------------------- /src/SVGElementGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementGradient.h -------------------------------------------------------------------------------- /src/SVGElementImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementImage.cpp -------------------------------------------------------------------------------- /src/SVGElementImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementImage.h -------------------------------------------------------------------------------- /src/SVGElementLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementLine.cpp -------------------------------------------------------------------------------- /src/SVGElementLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementLine.h -------------------------------------------------------------------------------- /src/SVGElementLinearGradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementLinearGradient.cpp -------------------------------------------------------------------------------- /src/SVGElementLinearGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementLinearGradient.h -------------------------------------------------------------------------------- /src/SVGElementMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementMask.cpp -------------------------------------------------------------------------------- /src/SVGElementMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementMask.h -------------------------------------------------------------------------------- /src/SVGElementPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementPath.cpp -------------------------------------------------------------------------------- /src/SVGElementPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementPath.h -------------------------------------------------------------------------------- /src/SVGElementPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementPattern.cpp -------------------------------------------------------------------------------- /src/SVGElementPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementPattern.h -------------------------------------------------------------------------------- /src/SVGElementPolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementPolygon.cpp -------------------------------------------------------------------------------- /src/SVGElementPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementPolygon.h -------------------------------------------------------------------------------- /src/SVGElementPolyline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementPolyline.cpp -------------------------------------------------------------------------------- /src/SVGElementPolyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementPolyline.h -------------------------------------------------------------------------------- /src/SVGElementRadialGradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementRadialGradient.cpp -------------------------------------------------------------------------------- /src/SVGElementRadialGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementRadialGradient.h -------------------------------------------------------------------------------- /src/SVGElementRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementRect.cpp -------------------------------------------------------------------------------- /src/SVGElementRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementRect.h -------------------------------------------------------------------------------- /src/SVGElementSVG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementSVG.cpp -------------------------------------------------------------------------------- /src/SVGElementSVG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementSVG.h -------------------------------------------------------------------------------- /src/SVGElementScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementScript.cpp -------------------------------------------------------------------------------- /src/SVGElementScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementScript.h -------------------------------------------------------------------------------- /src/SVGElementShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementShape.cpp -------------------------------------------------------------------------------- /src/SVGElementShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementShape.h -------------------------------------------------------------------------------- /src/SVGElementStop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementStop.cpp -------------------------------------------------------------------------------- /src/SVGElementStop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementStop.h -------------------------------------------------------------------------------- /src/SVGElementStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementStyle.cpp -------------------------------------------------------------------------------- /src/SVGElementStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementStyle.h -------------------------------------------------------------------------------- /src/SVGElementStyleClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementStyleClass.cpp -------------------------------------------------------------------------------- /src/SVGElementStyleClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementStyleClass.h -------------------------------------------------------------------------------- /src/SVGElementStyleable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementStyleable.cpp -------------------------------------------------------------------------------- /src/SVGElementStyleable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementStyleable.h -------------------------------------------------------------------------------- /src/SVGElementSwitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementSwitch.cpp -------------------------------------------------------------------------------- /src/SVGElementSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementSwitch.h -------------------------------------------------------------------------------- /src/SVGElementSymbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementSymbol.cpp -------------------------------------------------------------------------------- /src/SVGElementSymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementSymbol.h -------------------------------------------------------------------------------- /src/SVGElementText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementText.cpp -------------------------------------------------------------------------------- /src/SVGElementText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementText.h -------------------------------------------------------------------------------- /src/SVGElementTextContent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementTextContent.cpp -------------------------------------------------------------------------------- /src/SVGElementTextContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementTextContent.h -------------------------------------------------------------------------------- /src/SVGElementTspan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementTspan.cpp -------------------------------------------------------------------------------- /src/SVGElementTspan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementTspan.h -------------------------------------------------------------------------------- /src/SVGElementUse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementUse.cpp -------------------------------------------------------------------------------- /src/SVGElementUse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGElementUse.h -------------------------------------------------------------------------------- /src/SVGFocusShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGFocusShape.cpp -------------------------------------------------------------------------------- /src/SVGFocusShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGFocusShape.h -------------------------------------------------------------------------------- /src/SVGGDIPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGGDIPath.cpp -------------------------------------------------------------------------------- /src/SVGGDIPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGGDIPath.h -------------------------------------------------------------------------------- /src/SVGGlobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGGlobal.cpp -------------------------------------------------------------------------------- /src/SVGGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGGlobal.h -------------------------------------------------------------------------------- /src/SVGLineF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGLineF.cpp -------------------------------------------------------------------------------- /src/SVGLineF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGLineF.h -------------------------------------------------------------------------------- /src/SVGMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGMatrix.cpp -------------------------------------------------------------------------------- /src/SVGMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGMatrix.h -------------------------------------------------------------------------------- /src/SVGPathSeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGPathSeg.cpp -------------------------------------------------------------------------------- /src/SVGPathSeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGPathSeg.h -------------------------------------------------------------------------------- /src/SVGPointF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGPointF.cpp -------------------------------------------------------------------------------- /src/SVGPointF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGPointF.h -------------------------------------------------------------------------------- /src/SVGRectF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGRectF.cpp -------------------------------------------------------------------------------- /src/SVGRectF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGRectF.h -------------------------------------------------------------------------------- /src/SVGToolSelect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGToolSelect.cpp -------------------------------------------------------------------------------- /src/SVGToolSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGToolSelect.h -------------------------------------------------------------------------------- /src/SVGToolShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGToolShape.cpp -------------------------------------------------------------------------------- /src/SVGToolShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGToolShape.h -------------------------------------------------------------------------------- /src/SVGView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGView.cpp -------------------------------------------------------------------------------- /src/SVGView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/SVGView.h -------------------------------------------------------------------------------- /src/StringHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/StringHash.cpp -------------------------------------------------------------------------------- /src/StringHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/StringHash.h -------------------------------------------------------------------------------- /src/TabWidgetEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/TabWidgetEx.cpp -------------------------------------------------------------------------------- /src/TabWidgetEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/TabWidgetEx.h -------------------------------------------------------------------------------- /src/TableWidgetEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/TableWidgetEx.cpp -------------------------------------------------------------------------------- /src/TableWidgetEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/TableWidgetEx.h -------------------------------------------------------------------------------- /src/TextDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/TextDraw.cpp -------------------------------------------------------------------------------- /src/TextDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/TextDraw.h -------------------------------------------------------------------------------- /src/ToolButtonColorMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/ToolButtonColorMenu.cpp -------------------------------------------------------------------------------- /src/ToolButtonColorMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/ToolButtonColorMenu.h -------------------------------------------------------------------------------- /src/ToolButtonComboxMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/ToolButtonComboxMenu.cpp -------------------------------------------------------------------------------- /src/ToolButtonComboxMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/ToolButtonComboxMenu.h -------------------------------------------------------------------------------- /src/ToolFun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/ToolFun.cpp -------------------------------------------------------------------------------- /src/ToolFun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/ToolFun.h -------------------------------------------------------------------------------- /src/images/SVGEditor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/SVGEditor.ico -------------------------------------------------------------------------------- /src/images/adjustsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/adjustsize.png -------------------------------------------------------------------------------- /src/images/alignbottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/alignbottom.png -------------------------------------------------------------------------------- /src/images/alignleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/alignleft.png -------------------------------------------------------------------------------- /src/images/alignmidhor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/alignmidhor.png -------------------------------------------------------------------------------- /src/images/alignmidver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/alignmidver.png -------------------------------------------------------------------------------- /src/images/alignright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/alignright.png -------------------------------------------------------------------------------- /src/images/alignsameheight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/alignsameheight.png -------------------------------------------------------------------------------- /src/images/alignsamesize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/alignsamesize.png -------------------------------------------------------------------------------- /src/images/alignsamespacehor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/alignsamespacehor.png -------------------------------------------------------------------------------- /src/images/alignsamespacever.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/alignsamespacever.png -------------------------------------------------------------------------------- /src/images/alignsamewidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/alignsamewidth.png -------------------------------------------------------------------------------- /src/images/aligntop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/aligntop.png -------------------------------------------------------------------------------- /src/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/arrow.png -------------------------------------------------------------------------------- /src/images/arrowmatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/arrowmatrix.png -------------------------------------------------------------------------------- /src/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/back.png -------------------------------------------------------------------------------- /src/images/closefile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/closefile.png -------------------------------------------------------------------------------- /src/images/defaultimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/defaultimage.png -------------------------------------------------------------------------------- /src/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/delete.png -------------------------------------------------------------------------------- /src/images/drawaaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/drawaaa.png -------------------------------------------------------------------------------- /src/images/drawarc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/drawarc.png -------------------------------------------------------------------------------- /src/images/drawcircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/drawcircle.png -------------------------------------------------------------------------------- /src/images/drawcontinue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/drawcontinue.png -------------------------------------------------------------------------------- /src/images/drawcopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/drawcopy.png -------------------------------------------------------------------------------- /src/images/drawcursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/drawcursor.png -------------------------------------------------------------------------------- /src/images/drawellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/drawellipse.png -------------------------------------------------------------------------------- /src/images/drawimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/drawimage.png -------------------------------------------------------------------------------- /src/images/drawline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/drawline.png -------------------------------------------------------------------------------- /src/images/drawpath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/drawpath.png -------------------------------------------------------------------------------- /src/images/drawpolygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/drawpolygon.png -------------------------------------------------------------------------------- /src/images/drawpolyline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/drawpolyline.png -------------------------------------------------------------------------------- /src/images/drawrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/drawrect.png -------------------------------------------------------------------------------- /src/images/drawtext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/drawtext.png -------------------------------------------------------------------------------- /src/images/drawtextv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/drawtextv.png -------------------------------------------------------------------------------- /src/images/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/dropdown.png -------------------------------------------------------------------------------- /src/images/editcopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/editcopy.png -------------------------------------------------------------------------------- /src/images/editcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/editcut.png -------------------------------------------------------------------------------- /src/images/editfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/editfile.png -------------------------------------------------------------------------------- /src/images/editpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/editpaste.png -------------------------------------------------------------------------------- /src/images/editredo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/editredo.png -------------------------------------------------------------------------------- /src/images/editundo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/editundo.png -------------------------------------------------------------------------------- /src/images/exportpdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/exportpdf.png -------------------------------------------------------------------------------- /src/images/fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/fast.png -------------------------------------------------------------------------------- /src/images/filenew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/filenew.png -------------------------------------------------------------------------------- /src/images/filenewhtml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/filenewhtml.png -------------------------------------------------------------------------------- /src/images/fileopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/fileopen.png -------------------------------------------------------------------------------- /src/images/fileopenhtml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/fileopenhtml.png -------------------------------------------------------------------------------- /src/images/fileprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/fileprint.png -------------------------------------------------------------------------------- /src/images/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/filesave.png -------------------------------------------------------------------------------- /src/images/fillcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/fillcolor.png -------------------------------------------------------------------------------- /src/images/gradienttype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/gradienttype.png -------------------------------------------------------------------------------- /src/images/graphicbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/graphicbase.png -------------------------------------------------------------------------------- /src/images/graphicelement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/graphicelement.png -------------------------------------------------------------------------------- /src/images/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/group.png -------------------------------------------------------------------------------- /src/images/hand_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/hand_close.png -------------------------------------------------------------------------------- /src/images/hand_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/hand_open.png -------------------------------------------------------------------------------- /src/images/htmlfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/htmlfile.png -------------------------------------------------------------------------------- /src/images/iconlinetype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/iconlinetype.png -------------------------------------------------------------------------------- /src/images/iconlinewidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/iconlinewidth.png -------------------------------------------------------------------------------- /src/images/layerbottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/layerbottom.png -------------------------------------------------------------------------------- /src/images/layerdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/layerdown.png -------------------------------------------------------------------------------- /src/images/layertop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/layertop.png -------------------------------------------------------------------------------- /src/images/layerup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/layerup.png -------------------------------------------------------------------------------- /src/images/linecolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/linecolor.png -------------------------------------------------------------------------------- /src/images/linetype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/linetype.png -------------------------------------------------------------------------------- /src/images/linewidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/linewidth.png -------------------------------------------------------------------------------- /src/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/lock.png -------------------------------------------------------------------------------- /src/images/lookfor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/lookfor.png -------------------------------------------------------------------------------- /src/images/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/move.png -------------------------------------------------------------------------------- /src/images/movecursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/movecursor.png -------------------------------------------------------------------------------- /src/images/newproperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/newproperty.png -------------------------------------------------------------------------------- /src/images/openfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/openfolder.png -------------------------------------------------------------------------------- /src/images/pageset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/pageset.png -------------------------------------------------------------------------------- /src/images/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/pattern.png -------------------------------------------------------------------------------- /src/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/refresh.png -------------------------------------------------------------------------------- /src/images/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/rename.png -------------------------------------------------------------------------------- /src/images/rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/rotate.png -------------------------------------------------------------------------------- /src/images/saveall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/saveall.png -------------------------------------------------------------------------------- /src/images/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/saveas.png -------------------------------------------------------------------------------- /src/images/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/select.png -------------------------------------------------------------------------------- /src/images/showgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/showgrid.png -------------------------------------------------------------------------------- /src/images/showrule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/showrule.png -------------------------------------------------------------------------------- /src/images/svgfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/svgfile.png -------------------------------------------------------------------------------- /src/images/taggif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/taggif.png -------------------------------------------------------------------------------- /src/images/taggifselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/taggifselect.png -------------------------------------------------------------------------------- /src/images/tagjpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/tagjpg.png -------------------------------------------------------------------------------- /src/images/tagpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/tagpng.png -------------------------------------------------------------------------------- /src/images/tagsvg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/tagsvg.png -------------------------------------------------------------------------------- /src/images/tagtiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/tagtiff.png -------------------------------------------------------------------------------- /src/images/textbold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/textbold.png -------------------------------------------------------------------------------- /src/images/textcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/textcolor.png -------------------------------------------------------------------------------- /src/images/textitalic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/textitalic.png -------------------------------------------------------------------------------- /src/images/textunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/textunder.png -------------------------------------------------------------------------------- /src/images/turnleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/turnleft.png -------------------------------------------------------------------------------- /src/images/turnoverhor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/turnoverhor.png -------------------------------------------------------------------------------- /src/images/turnoverver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/turnoverver.png -------------------------------------------------------------------------------- /src/images/turnright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/turnright.png -------------------------------------------------------------------------------- /src/images/ungroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/ungroup.png -------------------------------------------------------------------------------- /src/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/unlock.png -------------------------------------------------------------------------------- /src/images/windows16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/windows16.png -------------------------------------------------------------------------------- /src/images/zoomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/zoomin.png -------------------------------------------------------------------------------- /src/images/zoomout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/zoomout.png -------------------------------------------------------------------------------- /src/images/zoomrestore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/images/zoomrestore.png -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/main.h -------------------------------------------------------------------------------- /src/qzipreader_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/qzipreader_p.h -------------------------------------------------------------------------------- /src/qzipwriter_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/qzipwriter_p.h -------------------------------------------------------------------------------- /src/ui/UIAbout.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/ui/UIAbout.ui -------------------------------------------------------------------------------- /src/ui/UIGradient.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/ui/UIGradient.ui -------------------------------------------------------------------------------- /src/ui/UIInputName.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/ui/UIInputName.ui -------------------------------------------------------------------------------- /src/ui/UIPattern.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/ui/UIPattern.ui -------------------------------------------------------------------------------- /src/ui/UIRotateSlider.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SVGEditors/QtSVGEditor/HEAD/src/ui/UIRotateSlider.ui --------------------------------------------------------------------------------