在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Qt报表软件介绍cutereport

Qt报表软件介绍cutereport

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:15.90M
  • 下载次数:14
  • 浏览次数:358
  • 发布时间:2020-09-03
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
开源Qt报表软件介绍cutereport 有本人学习笔记,10分完全值得
【实例截图】
【核心代码】
16667302笔记-cutereport_1.3.1_src
└── zfg2-cutereport_1.3.1_src
├── build
│   ├── CuteDesigner.dll
│   ├── CuteReportCore.dll
│   ├── cutereport.exe
│   ├── cutereport_resources
│   │   ├── doc
│   │   │   ├── COPYING
│   │   │   ├── LICENSE
│   │   │   ├── README
│   │   │   ├── THIRDPARTY-LICENSE-EXARO
│   │   │   ├── THIRDPARTY-LICENSE-ICU
│   │   │   ├── THIRDPARTY-LICENSE-PROPERTYEDITOR
│   │   │   ├── THIRDPARTY-LICENSE-QZINT
│   │   │   └── THIRDPARTY-LICENSE-ZINT
│   │   └── images
│   │   ├── cutereport_logo_128x128.ico
│   │   ├── cutereport_logo_22x22.ico
│   │   ├── cutereport_logo_32x32.ico
│   │   ├── cutereport_logo_48x48.ico
│   │   ├── cutereport_logo_64x64.ico
│   │   ├── cutereport_logo.ico
│   │   ├── cutereport.svg
│   │   ├── group_Bands.png
│   │   ├── group_Shapes.png
│   │   └── group_Text.png
│   ├── CuteReportWidgets.dll
│   ├── CuteReportWidgetsThirdparty.dll
│   ├── cutereport-zfg.exe
│   ├── development
│   │   ├── examples
│   │   │   ├── code
│   │   │   │   ├── example_1
│   │   │   │   │   ├── example_1.pro
│   │   │   │   │   └── main.cpp
│   │   │   │   ├── example_dataset
│   │   │   │   │   ├── example_dataset.pro
│   │   │   │   │   └── main.cpp
│   │   │   │   ├── example_delegates
│   │   │   │   │   ├── example_delegates.pro
│   │   │   │   │   ├── main.cpp
│   │   │   │   │   ├── painterdelegate.cpp
│   │   │   │   │   └── painterdelegate.h
│   │   │   │   ├── example_languages
│   │   │   │   │   ├── example_languages.pro
│   │   │   │   │   └── main.cpp
│   │   │   │   ├── example_memo
│   │   │   │   │   ├── example_memo.pro
│   │   │   │   │   └── main.cpp
│   │   │   │   ├── example_signals
│   │   │   │   │   ├── example_signals.pro
│   │   │   │   │   ├── helperobject.cpp
│   │   │   │   │   ├── helperobject.h
│   │   │   │   │   └── main.cpp
│   │   │   │   ├── zfg
│   │   │   │   │   ├── main.cpp
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── Makefile.Debug
│   │   │   │   │   ├── Makefile.Release
│   │   │   │   │   ├── release
│   │   │   │   │   │   └── main.o
│   │   │   │   │   ├── zfg_1.pro
│   │   │   │   │   └── zfg_1.pro.user
│   │   │   │   └── zfg2
│   │   │   │   ├── main.cpp
│   │   │   │   ├── Makefile
│   │   │   │   ├── Makefile.Debug
│   │   │   │   ├── Makefile.Release
│   │   │   │   ├── release
│   │   │   │   │   └── main.o
│   │   │   │   ├── zfg_1.pro
│   │   │   │   └── zfg_1.pro.user
│   │   │   ├── reports
│   │   │   │   ├── animals_2.qtrp
│   │   │   │   ├── animals.qtrp
│   │   │   │   ├── Barcode_pro.qtrp
│   │   │   │   ├── Barcode.qtrp
│   │   │   │   ├── CustomerList_columns.qtrp
│   │   │   │   ├── CustomerList.qtrp
│   │   │   │   ├── CustomerList_titlepage.qtrp
│   │   │   │   ├── FilesystemReport.qtrp
│   │   │   │   ├── ImageReport.qtrp
│   │   │   │   ├── invoice_1.qtrp
│   │   │   │   ├── MyReport.qtrp
│   │   │   │   ├── Scripting.qtrp
│   │   │   │   ├── Simple_Grouping_columns.qtrp
│   │   │   │   ├── Simple_Grouping.qtrp
│   │   │   │   ├── Simple_List.qtrp
│   │   │   │   ├── Translation.qtrp
│   │   │   │   └── Watermark.qtrp
│   │   │   └── templates
│   │   │   └── Dialog_with_Buttons_Right.ui
│   │   ├── include
│   │   │   └── cutereport
│   │   │   ├── abstractpainterdelegate.h
│   │   │   ├── bandinterface.h
│   │   │   ├── baseiteminterface.h
│   │   │   ├── cutereport_functions.h
│   │   │   ├── cutereport_globals.h
│   │   │   ├── cutereport_types.h
│   │   │   ├── datasetinterface.h
│   │   │   ├── exportinterface.h
│   │   │   ├── forminterface.h
│   │   │   ├── iteminterface.h
│   │   │   ├── pageinterface.h
│   │   │   ├── printerinterface.h
│   │   │   ├── rendererinterface.h
│   │   │   ├── reportcore.h
│   │   │   ├── reportinterface.h
│   │   │   ├── reportplugininterface.h
│   │   │   ├── reportpreview.h
│   │   │   ├── scriptdelegate.h
│   │   │   ├── scriptextensioninterface.h
│   │   │   ├── serializerinterface.h
│   │   │   ├── stdstoragedialog.h
│   │   │   ├── storageinterface.h
│   │   │   └── widgets_export.h
│   │   └── Qt4
│   │   └── plugins
│   │   └── debug
│   │   ├── core
│   │   │   ├── Arc1.dll
│   │   │   ├── Chord1.dll
│   │   │   ├── DatasetCSV1.dll
│   │   │   ├── DatasetFileSystem1.dll
│   │   │   ├── DatasetModel1.dll
│   │   │   ├── DatasetSQL1.dll
│   │   │   ├── Detail1.dll
│   │   │   ├── DetailFooter1.dll
│   │   │   ├── DetailHeader1.dll
│   │   │   ├── Ellipse1.dll
│   │   │   ├── ExportPDF1.dll
│   │   │   ├── Image1.dll
│   │   │   ├── libArc1.a
│   │   │   ├── libChord1.a
│   │   │   ├── libDatasetCSV1.a
│   │   │   ├── libDatasetFileSystem1.a
│   │   │   ├── libDatasetModel1.a
│   │   │   ├── libDatasetSQL1.a
│   │   │   ├── libDetail1.a
│   │   │   ├── libDetailFooter1.a
│   │   │   ├── libDetailHeader1.a
│   │   │   ├── libEllipse1.a
│   │   │   ├── libExportPDF1.a
│   │   │   ├── libImage1.a
│   │   │   ├── libLine1.a
│   │   │   ├── libMemo1.a
│   │   │   ├── libOverlay1.a
│   │   │   ├── libPage1.a
│   │   │   ├── libPageFooter1.a
│   │   │   ├── libPageHeader1.a
│   │   │   ├── libPie1.a
│   │   │   ├── libPrinter1.a
│   │   │   ├── libRectangle1.a
│   │   │   ├── libRenderer1.a
│   │   │   ├── libScript1.a
│   │   │   ├── libSerializerXML1.a
│   │   │   ├── libStorageFileSystem1.a
│   │   │   ├── libStorageGIT1.a
│   │   │   ├── libStorageResource1.a
│   │   │   ├── libStorageSQL1.a
│   │   │   ├── libSummary1.a
│   │   │   ├── libTitle1.a
│   │   │   ├── Line1.dll
│   │   │   ├── Memo1.dll
│   │   │   ├── Overlay1.dll
│   │   │   ├── Page1.dll
│   │   │   ├── PageFooter1.dll
│   │   │   ├── PageHeader1.dll
│   │   │   ├── Pie1.dll
│   │   │   ├── Printer1.dll
│   │   │   ├── Rectangle1.dll
│   │   │   ├── Renderer1.dll
│   │   │   ├── Script1.dll
│   │   │   ├── SerializerXML1.dll
│   │   │   ├── StorageFileSystem1.dll
│   │   │   ├── StorageGIT1.dll
│   │   │   ├── StorageResource1.dll
│   │   │   ├── StorageSQL1.dll
│   │   │   ├── Summary1.dll
│   │   │   └── Title1.dll
│   │   ├── designer
│   │   │   ├── DatasetEditor1.dll
│   │   │   ├── libDatasetEditor1.a
│   │   │   ├── libPageEditor1.a
│   │   │   ├── libPreview1.a
│   │   │   ├── libReportEditor1.a
│   │   │   ├── libScriptEditor1.a
│   │   │   ├── PageEditor1.dll
│   │   │   ├── Preview1.dll
│   │   │   ├── ReportEditor1.dll
│   │   │   └── ScriptEditor1.dll
│   │   └── propertyeditor
│   │   ├── BoolProperty1.dll
│   │   ├── BrushProperty1.dll
│   │   ├── ColorProperty1.dll
│   │   ├── CRMarginsProperty1.dll
│   │   ├── DateProperty1.dll
│   │   ├── DateTimeProperty1.dll
│   │   ├── EnumsProperty1.dll
│   │   ├── FlagsProperty1.dll
│   │   ├── FontProperty1.dll
│   │   ├── GradientProperty1.dll
│   │   ├── ImageProperty1.dll
│   │   ├── libBoolProperty1.a
│   │   ├── libBrushProperty1.a
│   │   ├── libColorProperty1.a
│   │   ├── libCRMarginsProperty1.a
│   │   ├── libDateProperty1.a
│   │   ├── libDateTimeProperty1.a
│   │   ├── libEnumsProperty1.a
│   │   ├── libFlagsProperty1.a
│   │   ├── libFontProperty1.a
│   │   ├── libGradientProperty1.a
│   │   ├── libImageProperty1.a
│   │   ├── libNumbersProperty1.a
│   │   ├── libPenProperty1.a
│   │   ├── libPixmapProperty1.a
│   │   ├── libPointFProperty1.a
│   │   ├── libPointProperty1.a
│   │   ├── libRectFProperty1.a
│   │   ├── libRectProperty1.a
│   │   ├── libSizeFProperty1.a
│   │   ├── libSizeProperty1.a
│   │   ├── libStringListProperty1.a
│   │   ├── libStringsProperty1.a
│   │   ├── libTimeProperty1.a
│   │   ├── NumbersProperty1.dll
│   │   ├── PenProperty1.dll
│   │   ├── PixmapProperty1.dll
│   │   ├── PointFProperty1.dll
│   │   ├── PointProperty1.dll
│   │   ├── RectFProperty1.dll
│   │   ├── RectProperty1.dll
│   │   ├── SizeFProperty1.dll
│   │   ├── SizeProperty1.dll
│   │   ├── StringListProperty1.dll
│   │   ├── StringsProperty1.dll
│   │   └── TimeProperty1.dll
│   ├── libCuteDesigner1.a
│   ├── libCuteReportCore1.a
│   ├── libCuteReportWidgets1.a
│   ├── libCuteReportWidgetsThirdparty1.a
│   ├── libPropertyEditor1.a
│   ├── PropertyEditor.dll
│   ├── ZFG-2.exe
│   └── ZFG-3.exe
├── build.cfg
├── COPYING
├── CuteReport.pro
├── debian
│   ├── changelog
│   ├── compat
│   ├── control
│   ├── copyright
│   ├── cutereport.cron.d.ex
│   ├── cutereport.debhelper.log
│   ├── cutereport.default.ex
│   ├── cutereport.doc-base.EX
│   ├── docs
│   ├── init.d.ex
│   ├── install
│   ├── install.common
│   ├── install.cutereport
│   ├── install.demo
│   ├── manpage.1.ex
│   ├── manpage.sgml.ex
│   ├── manpage.xml.ex
│   ├── menu.ex
│   ├── postinst
│   ├── postinst.ex
│   ├── postrm.ex
│   ├── preinst.ex
│   ├── prerm.ex
│   ├── README.Debian
│   ├── README.source
│   ├── rules
│   ├── source
│   │   └── format
│   └── watch.ex
├── examples
│   ├── code
│   │   ├── example_1
│   │   │   ├── example_1.pro
│   │   │   └── main.cpp
│   │   ├── example_dataset
│   │   │   ├── example_dataset.pro
│   │   │   └── main.cpp
│   │   ├── example_delegates
│   │   │   ├── example_delegates.pro
│   │   │   ├── main.cpp
│   │   │   ├── painterdelegate.cpp
│   │   │   └── painterdelegate.h
│   │   ├── example_languages
│   │   │   ├── example_languages.pro
│   │   │   └── main.cpp
│   │   ├── example_memo
│   │   │   ├── example_memo.pro
│   │   │   └── main.cpp
│   │   └── example_signals
│   │   ├── example_signals.pro
│   │   ├── helperobject.cpp
│   │   ├── helperobject.h
│   │   └── main.cpp
│   ├── reports
│   │   ├── animals_2.qtrp
│   │   ├── animals.qtrp
│   │   ├── Barcode_pro.qtrp
│   │   ├── Barcode.qtrp
│   │   ├── CustomerList_columns.qtrp
│   │   ├── CustomerList.qtrp
│   │   ├── CustomerList_titlepage.qtrp
│   │   ├── FilesystemReport.qtrp
│   │   ├── ImageReport.qtrp
│   │   ├── invoice_1.qtrp
│   │   ├── MyReport.qtrp
│   │   ├── Scripting.qtrp
│   │   ├── Simple_Grouping_columns.qtrp
│   │   ├── Simple_Grouping.qtrp
│   │   ├── Simple_List.qtrp
│   │   ├── Translation.qtrp
│   │   └── Watermark.qtrp
│   └── templates
│   └── Dialog_with_Buttons_Right.ui
├── INSTALL
├── LICENSE
├── Makefile
├── pkg
│   ├── cutereport_demo.desktop
│   ├── cutereport.desktop
│   ├── cutereport.icns
│   ├── cutereport_logo_128x128.ico
│   ├── cutereport_logo_128x128.png
│   ├── cutereport_logo_16x16.png
│   ├── cutereport_logo_22x22.ico
│   ├── cutereport_logo_256x256.png
│   ├── cutereport_logo_32x32.ico
│   ├── cutereport_logo_32x32.png
│   ├── cutereport_logo_48x48.ico
│   ├── cutereport_logo_48x48.png
│   ├── cutereport_logo_512x512.png
│   ├── cutereport_logo_64x64.ico
│   ├── cutereport_logo.ico
│   └── cutereport.svg
├── profiles
│   ├── common.pri
│   ├── linux.pri
│   ├── macx.pri
│   └── win.pri
├── README
├── src
│   ├── apps
│   │   ├── app.pri
│   │   ├── apps.pro
│   │   ├── console
│   │   │   ├── console.cpp
│   │   │   ├── console.h
│   │   │   ├── console.pro
│   │   │   └── main.cpp
│   │   ├── cutereport
│   │   │   ├── console.o
│   │   │   ├── cutereport.pro
│   │   │   ├── cutereport_resource.rc
│   │   │   ├── cutereport_resource_res.o
│   │   │   ├── main.cpp
│   │   │   ├── main.o
│   │   │   ├── Makefile
│   │   │   ├── moc_console.cpp
│   │   │   └── moc_console.o
│   │   ├── designer
│   │   │   ├── designer.pro
│   │   │   └── main.cpp
│   │   ├── Makefile
│   │   └── zfgapp-cutereport
│   │   ├── console.o
│   │   ├── cutereport.pro
│   │   ├── cutereport_resource.rc
│   │   ├── cutereport_resource_res.o
│   │   ├── cutereport-zfg_resource.rc
│   │   ├── cutereport-zfg_resource_res.o
│   │   ├── main.cpp
│   │   ├── main.o
│   │   ├── Makefile
│   │   ├── moc_console.cpp
│   │   └── moc_console.o
│   ├── appsCore
│   │   ├── appsCore.pro
│   │   ├── designerCore
│   │   │   ├── aboutdialog.cpp
│   │   │   ├── aboutdialog.h
│   │   │   ├── aboutdialog.o
│   │   │   ├── aboutdialog.ui
│   │   │   ├── CuteDesigner_resource.rc
│   │   │   ├── CuteDesigner_resource_res.o
│   │   │   ├── designercore.cpp
│   │   │   ├── designercore.h
│   │   │   ├── designercore.o
│   │   │   ├── designerCore.pro
│   │   │   ├── designerCore.qrc
│   │   │   ├── designer_globals.h
│   │   │   ├── designeriteminterfaceobject.cpp
│   │   │   ├── designeriteminterfaceobject.h
│   │   │   ├── designeriteminterfaceobject.o
│   │   │   ├── images
│   │   │   │   ├── application_exit.png
│   │   │   │   ├── arrow_up_6_green.png
│   │   │   │   ├── arrow_up_6_red.png
│   │   │   │   ├── copy.png
│   │   │   │   ├── cut.png
│   │   │   │   ├── dialog-information.png
│   │   │   │   ├── group_Bands.png
│   │   │   │   ├── group_Shapes.png
│   │   │   │   ├── group_Text.png
│   │   │   │   ├── logo_big.png
│   │   │   │   ├── logo.svg
│   │   │   │   ├── media-playback-start.png
│   │   │   │   ├── options_report.png
│   │   │   │   ├── paste.png
│   │   │   │   ├── printer_96x96.png
│   │   │   │   ├── renderer_96x96.png
│   │   │   │   ├── run-build.png
│   │   │   │   └── storage_96x96.jpeg
│   │   │   ├── mainwindow.cpp
│   │   │   ├── mainwindow.h
│   │   │   ├── mainwindow.o
│   │   │   ├── mainwindow.ui
│   │   │   ├── Makefile
│   │   │   ├── messagedelegate.o
│   │   │   ├── messagelist.o
│   │   │   ├── messagemodel.o
│   │   │   ├── messagewidget.o
│   │   │   ├── moc_aboutdialog.cpp
│   │   │   ├── moc_aboutdialog.o
│   │   │   ├── moc_designercore.cpp
│   │   │   ├── moc_designercore.o
│   │   │   ├── moc_mainwindow.cpp
│   │   │   ├── moc_mainwindow.o
│   │   │   ├── moc_messagelist.cpp
│   │   │   ├── moc_messagelist.o
│   │   │   ├── moc_messagemodel.cpp
│   │   │   ├── moc_messagemodel.o
│   │   │   ├── moc_messagewidget.cpp
│   │   │   ├── moc_messagewidget.o
│   │   │   ├── moc_moduleinterface.cpp
│   │   │   ├── moc_moduleinterface.o
│   │   │   ├── moc_optionsdialog.cpp
│   │   │   ├── moc_optionsdialogdesigner.cpp
│   │   │   ├── moc_optionsdialogdesigner.o
│   │   │   ├── moc_optionsdialog.o
│   │   │   ├── moc_optionsdialogprinterpage.cpp
│   │   │   ├── moc_optionsdialogprinterpage.o
│   │   │   ├── moc_optionsdialogrendererpage.cpp
│   │   │   ├── moc_optionsdialogrendererpage.o
│   │   │   ├── moc_optionsdialogstoragepage.cpp
│   │   │   ├── moc_optionsdialogstoragepage.o
│   │   │   ├── moc_renamedialog.cpp
│   │   │   ├── moc_renamedialog.o
│   │   │   ├── moc_storagesettingsdialog.cpp
│   │   │   ├── moc_storagesettingsdialog.o
│   │   │   ├── moduleinterface.cpp
│   │   │   ├── moduleinterface.h
│   │   │   ├── moduleinterface.o
│   │   │   ├── object_script.CuteDesigner
│   │   │   ├── optionsdialog.cpp
│   │   │   ├── optionsdialogdesigner.cpp
│   │   │   ├── optionsdialogdesigner.h
│   │   │   ├── optionsdialogdesigner.o
│   │   │   ├── optionsdialogdesigner.ui
│   │   │   ├── optionsdialog.h
│   │   │   ├── optionsdialog.o
│   │   │   ├── optionsdialogprinterpage.cpp
│   │   │   ├── optionsdialogprinterpage.h
│   │   │   ├── optionsdialogprinterpage.o
│   │   │   ├── optionsdialogprinterpage.ui
│   │   │   ├── optionsdialogrendererpage.cpp
│   │   │   ├── optionsdialogrendererpage.h
│   │   │   ├── optionsdialogrendererpage.o
│   │   │   ├── optionsdialogrendererpage.ui
│   │   │   ├── optionsdialogstoragepage.cpp
│   │   │   ├── optionsdialogstoragepage.h
│   │   │   ├── optionsdialogstoragepage.o
│   │   │   ├── optionsdialogstoragepage.ui
│   │   │   ├── optionsdialog.ui
│   │   │   ├── qrc_designerCore.cpp
│   │   │   ├── qrc_designerCore.o
│   │   │   ├── renamedialog.o
│   │   │   ├── storagesettingsdialog.cpp
│   │   │   ├── storagesettingsdialog.h
│   │   │   ├── storagesettingsdialog.o
│   │   │   ├── storagesettingsdialog.ui
│   │   │   ├── ui_aboutdialog.h
│   │   │   ├── ui_mainwindow.h
│   │   │   ├── ui_messagelist.h
│   │   │   ├── ui_optionsdialogdesigner.h
│   │   │   ├── ui_optionsdialog.h
│   │   │   ├── ui_optionsdialogprinterpage.h
│   │   │   ├── ui_optionsdialogrendererpage.h
│   │   │   ├── ui_optionsdialogstoragepage.h
│   │   │   ├── ui_renamedialog.h
│   │   │   ├── ui_storagesettingsdialog.h
│   │   │   └── widgets
│   │   │   ├── messagedelegate.cpp
│   │   │   ├── messagedelegate.h
│   │   │   ├── messagelist.cpp
│   │   │   ├── messagelist.h
│   │   │   ├── messagelist.ui
│   │   │   ├── messagemodel.cpp
│   │   │   ├── messagemodel.h
│   │   │   ├── messagewidget.cpp
│   │   │   ├── messagewidget.h
│   │   │   ├── renamedialog.cpp
│   │   │   ├── renamedialog.h
│   │   │   └── renamedialog.ui
│   │   └── Makefile
│   ├── core
│   │   ├── abstractpainterdelegate.cpp
│   │   ├── abstractpainterdelegate.h
│   │   ├── abstractpainterdelegate.o
│   │   ├── bandinterface.cpp
│   │   ├── bandinterface.h
│   │   ├── bandinterface.o
│   │   ├── bandinterface_p.h
│   │   ├── baseitemInterface_body.gen
│   │   ├── baseiteminterface.cpp
│   │   ├── baseiteminterface.h
│   │   ├── baseitemInterface_header.gen
│   │   ├── baseiteminterface.o
│   │   ├── baseiteminterface_p.h
│   │   ├── baseitemInterface_repeat.gen
│   │   ├── core.pro
│   │   ├── core.pro.user
│   │   ├── core_resources.qrc
│   │   ├── CuteReportCore_resource.rc
│   │   ├── CuteReportCore_resource_res.o
│   │   ├── cutereport.cpp
│   │   ├── cutereport_functions.cpp
│   │   ├── cutereport_functions.h
│   │   ├── cutereport_functions.o
│   │   ├── cutereport_globals.h
│   │   ├── cutereport.h
│   │   ├── cutereport.o
│   │   ├── cutereport_types.cpp
│   │   ├── cutereport_types.h
│   │   ├── cutereport_types.o
│   │   ├── datasetinterface.cpp
│   │   ├── datasetinterface.h
│   │   ├── datasetinterface.o
│   │   ├── designeriteminterface.cpp
│   │   ├── designeriteminterface.h
│   │   ├── designeriteminterface.o
│   │   ├── dummyband.cpp
│   │   ├── dummyband.h
│   │   ├── dummyband.o
│   │   ├── dummyitem.cpp
│   │   ├── dummyitem.h
│   │   ├── dummyitem.o
│   │   ├── exportinterface.cpp
│   │   ├── exportinterface.h
│   │   ├── exportinterface.o
│   │   ├── forminterface.cpp
│   │   ├── forminterface.h
│   │   ├── forminterface.o
│   │   ├── images
│   │   │   └── lock.png
│   │   ├── importinterface.cpp
│   │   ├── importinterface.h
│   │   ├── importinterface.o
│   │   ├── inheritancedatacontainer.cpp
│   │   ├── inheritancedatacontainer.h
│   │   ├── inheritancedatacontainer.o
│   │   ├── item_common
│   │   │   ├── simpleitemview.cpp
│   │   │   ├── simpleitemview.h
│   │   │   ├── simplerendereditem.cpp
│   │   │   └── simplerendereditem.h
│   │   ├── itemexternaldatainterface.cpp
│   │   ├── itemexternaldatainterface.h
│   │   ├── itemexternaldatainterface.o
│   │   ├── itemInterface_body.gen
│   │   ├── iteminterface.cpp
│   │   ├── iteminterface.h
│   │   ├── itemInterface_header.gen
│   │   ├── iteminterface.o
│   │   ├── iteminterface_p.h
│   │   ├── itemInterface_repeat.gen
│   │   ├── iteminterfaceview.cpp
│   │   ├── iteminterfaceview.h
│   │   ├── iteminterfaceview.o
│   │   ├── log
│   │   │   ├── log.cpp
│   │   │   ├── log.h
│   │   │   ├── logmousehandler.cpp
│   │   │   ├── logmousehandler.h
│   │   │   ├── log.pri
│   │   │   ├── logprocessor.cpp
│   │   │   └── logprocessor.h
│   │   ├── log.o
│   │   ├── logprocessor.o
│   │   ├── Makefile
│   │   ├── moc_bandinterface.cpp
│   │   ├── moc_bandinterface.o
│   │   ├── moc_baseiteminterface.cpp
│   │   ├── moc_baseiteminterface.o
│   │   ├── moc_cutereport.cpp
│   │   ├── moc_cutereport.o
│   │   ├── moc_datasetinterface.cpp
│   │   ├── moc_datasetinterface.o
│   │   ├── moc_dummyband.cpp
│   │   ├── moc_dummyband.o
│   │   ├── moc_dummyitem.cpp
│   │   ├── moc_dummyitem.o
│   │   ├── moc_exportinterface.cpp
│   │   ├── moc_exportinterface.o
│   │   ├── moc_forminterface.cpp
│   │   ├── moc_forminterface.o
│   │   ├── moc_importinterface.cpp
│   │   ├── moc_importinterface.o
│   │   ├── moc_itemexternaldatainterface.cpp
│   │   ├── moc_itemexternaldatainterface.o
│   │   ├── moc_iteminterface.cpp
│   │   ├── moc_iteminterface.o
│   │   ├── moc_log.cpp
│   │   ├── moc_log.o
│   │   ├── moc_logprocessor.cpp
│   │   ├── moc_logprocessor.o
│   │   ├── moc_pageinterface.cpp
│   │   ├── moc_pageinterface.o
│   │   ├── moc_printerinterface.cpp
│   │   ├── moc_printerinterface.o
│   │   ├── moc_rendererinterface.cpp
│   │   ├── moc_rendererinterface.o
│   │   ├── moc_rendererpublicinterface.cpp
│   │   ├── moc_rendererpublicinterface.o
│   │   ├── moc_reportcore.cpp
│   │   ├── moc_reportcore.o
│   │   ├── moc_reportinterface.cpp
│   │   ├── moc_reportinterface.o
│   │   ├── moc_reportplugininterface.cpp
│   │   ├── moc_reportplugininterface.o
│   │   ├── moc_scriptdelegate.cpp
│   │   ├── moc_scriptdelegate.o
│   │   ├── moc_scriptextensioninterface.cpp
│   │   ├── moc_scriptextensioninterface.o
│   │   ├── moc_serializerinterface.cpp
│   │   ├── moc_serializerinterface.o
│   │   ├── moc_storageinterface.cpp
│   │   ├── moc_storageinterface.o
│   │   ├── objectfactory.cpp
│   │   ├── objectfactory.h
│   │   ├── objectfactory.o
│   │   ├── object_script.CuteReportCore
│   │   ├── pageinterface.cpp
│   │   ├── pageinterface.h
│   │   ├── pageinterface.o
│   │   ├── printerinterface.cpp
│   │   ├── printerinterface.h
│   │   ├── printerinterface.o
│   │   ├── qrc_core_resources.cpp
│   │   ├── qrc_core_resources.o
│   │   ├── renderediteminterface.cpp
│   │   ├── renderediteminterface.h
│   │   ├── renderediteminterface.o
│   │   ├── renderediteminterface_p.h
│   │   ├── renderedreport.cpp
│   │   ├── renderedreport.h
│   │   ├── renderedreportinterface.cpp
│   │   ├── renderedreportinterface.h
│   │   ├── renderedreportinterface.o
│   │   ├── renderedreport.o
│   │   ├── rendererinterface.cpp
│   │   ├── rendererinterface.h
│   │   ├── rendererinterface.o
│   │   ├── rendererpublicinterface.cpp
│   │   ├── rendererpublicinterface.h
│   │   ├── rendererpublicinterface.o
│   │   ├── reportcoreconfigcleanup.cpp
│   │   ├── reportcoreconfigcleanup.h
│   │   ├── reportcoreconfigcleanup.o
│   │   ├── reportcore.cpp
│   │   ├── reportcore.h
│   │   ├── reportcore.o
│   │   ├── reportinterface.cpp
│   │   ├── reportinterface.h
│   │   ├── reportinterface.o
│   │   ├── reportplugininterface.cpp
│   │   ├── reportplugininterface.h
│   │   ├── reportplugininterface.o
│   │   ├── scriptdelegate.cpp
│   │   ├── scriptdelegate.h
│   │   ├── scriptdelegate.o
│   │   ├── scriptengineinterface.cpp
│   │   ├── scriptengineinterface.h
│   │   ├── scriptengineinterface.o
│   │   ├── scriptextensioninterface.cpp
│   │   ├── scriptextensioninterface.h
│   │   ├── scriptextensioninterface.o
│   │   ├── _script_template
│   │   │   ├── enumsection.tmpl
│   │   │   └── footer.tmpl
│   │   ├── serializerinterface.cpp
│   │   ├── serializerinterface.h
│   │   ├── serializerinterface.o
│   │   ├── simpleitemview.o
│   │   ├── simplerendereditem.o
│   │   ├── storageinterface.cpp
│   │   ├── storageinterface.h
│   │   └── storageinterface.o
│   ├── Makefile
│   ├── plugins
│   │   ├── core_plugins
│   │   │   ├── bands
│   │   │   │   ├── bands.pro
│   │   │   │   ├── bandsStatic.pri
│   │   │   │   ├── detail
│   │   │   │   │   ├── detail.cpp
│   │   │   │   │   ├── detail.h
│   │   │   │   │   ├── detail.o
│   │   │   │   │   ├── detail.png
│   │   │   │   │   ├── detail.pri
│   │   │   │   │   ├── detail.pro
│   │   │   │   │   ├── detail.qrc
│   │   │   │   │   ├── detailrendereditem.cpp
│   │   │   │   │   ├── detailrendereditem.h
│   │   │   │   │   ├── detailrendereditem.o
│   │   │   │   │   ├── Detail_resource.rc
│   │   │   │   │   ├── Detail_resource_res.o
│   │   │   │   │   ├── detailscripting.h
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_detail.cpp
│   │   │   │   │   ├── moc_detail.o
│   │   │   │   │   ├── qrc_detail.cpp
│   │   │   │   │   ├── qrc_detail.o
│   │   │   │   │   └── script.gen
│   │   │   │   ├── detailFooter
│   │   │   │   │   ├── detailfooter.cpp
│   │   │   │   │   ├── detailfooter.h
│   │   │   │   │   ├── detailfooter.o
│   │   │   │   │   ├── detailfooter_p.h
│   │   │   │   │   ├── detailFooter.png
│   │   │   │   │   ├── detailFooter.pri
│   │   │   │   │   ├── detailFooter.pro
│   │   │   │   │   ├── detailFooter.qrc
│   │   │   │   │   ├── DetailFooter_resource.rc
│   │   │   │   │   ├── DetailFooter_resource_res.o
│   │   │   │   │   ├── detailfooterscripting.h
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_detailfooter.cpp
│   │   │   │   │   ├── moc_detailfooter.o
│   │   │   │   │   ├── qrc_detailFooter.cpp
│   │   │   │   │   ├── qrc_detailFooter.o
│   │   │   │   │   └── script.gen
│   │   │   │   ├── detailHeader
│   │   │   │   │   ├── detailheader.cpp
│   │   │   │   │   ├── detailheader.h
│   │   │   │   │   ├── detailheader.o
│   │   │   │   │   ├── detailheader_p.h
│   │   │   │   │   ├── detailHeader.png
│   │   │   │   │   ├── detailHeader.pri
│   │   │   │   │   ├── detailHeader.pro
│   │   │   │   │   ├── detailHeader.qrc
│   │   │   │   │   ├── DetailHeader_resource.rc
│   │   │   │   │   ├── DetailHeader_resource_res.o
│   │   │   │   │   ├── detailheaderscripting.h
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_detailheader.cpp
│   │   │   │   │   ├── moc_detailheader.o
│   │   │   │   │   ├── qrc_detailHeader.cpp
│   │   │   │   │   ├── qrc_detailHeader.o
│   │   │   │   │   └── script.gen
│   │   │   │   ├── Makefile
│   │   │   │   ├── overlay
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_overlay.cpp
│   │   │   │   │   ├── moc_overlay.o
│   │   │   │   │   ├── overlay.cpp
│   │   │   │   │   ├── overlay.h
│   │   │   │   │   ├── overlay.o
│   │   │   │   │   ├── overlay.png
│   │   │   │   │   ├── overlay.pri
│   │   │   │   │   ├── overlay.pro
│   │   │   │   │   ├── overlay.qrc
│   │   │   │   │   ├── Overlay_resource.rc
│   │   │   │   │   ├── Overlay_resource_res.o
│   │   │   │   │   ├── overlayscripting.h
│   │   │   │   │   ├── qrc_overlay.cpp
│   │   │   │   │   ├── qrc_overlay.o
│   │   │   │   │   └── script.gen
│   │   │   │   ├── pageFooter
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_pagefooter.cpp
│   │   │   │   │   ├── moc_pagefooter.o
│   │   │   │   │   ├── pagefooter.cpp
│   │   │   │   │   ├── pagefooter.h
│   │   │   │   │   ├── pagefooter.o
│   │   │   │   │   ├── pageFooter.png
│   │   │   │   │   ├── pageFooter.pri
│   │   │   │   │   ├── pageFooter.pro
│   │   │   │   │   ├── pageFooter.qrc
│   │   │   │   │   ├── PageFooter_resource.rc
│   │   │   │   │   ├── PageFooter_resource_res.o
│   │   │   │   │   ├── pagefooterscripting.h
│   │   │   │   │   ├── qrc_pageFooter.cpp
│   │   │   │   │   ├── qrc_pageFooter.o
│   │   │   │   │   └── script.gen
│   │   │   │   ├── pageHeader
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_pageheader.cpp
│   │   │   │   │   ├── moc_pageheader.o
│   │   │   │   │   ├── pageheader.cpp
│   │   │   │   │   ├── pageheader.h
│   │   │   │   │   ├── pageheader.o
│   │   │   │   │   ├── pageHeader.png
│   │   │   │   │   ├── pageHeader.pri
│   │   │   │   │   ├── pageHeader.pro
│   │   │   │   │   ├── pageHeader.qrc
│   │   │   │   │   ├── PageHeader_resource.rc
│   │   │   │   │   ├── PageHeader_resource_res.o
│   │   │   │   │   ├── pageheaderscripting.h
│   │   │   │   │   ├── qrc_pageHeader.cpp
│   │   │   │   │   ├── qrc_pageHeader.o
│   │   │   │   │   └── script.gen
│   │   │   │   ├── summary
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_summary.cpp
│   │   │   │   │   ├── moc_summary.o
│   │   │   │   │   ├── qrc_summary.cpp
│   │   │   │   │   ├── qrc_summary.o
│   │   │   │   │   ├── script.gen
│   │   │   │   │   ├── summary.cpp
│   │   │   │   │   ├── summary.h
│   │   │   │   │   ├── summary.o
│   │   │   │   │   ├── summary.png
│   │   │   │   │   ├── summary.pri
│   │   │   │   │   ├── summary.pro
│   │   │   │   │   ├── summary.qrc
│   │   │   │   │   ├── Summary_resource.rc
│   │   │   │   │   ├── Summary_resource_res.o
│   │   │   │   │   └── summaryscripting.h
│   │   │   │   └── title
│   │   │   │   ├── Makefile
│   │   │   │   ├── moc_title.cpp
│   │   │   │   ├── moc_title.o
│   │   │   │   ├── qrc_title.cpp
│   │   │   │   ├── qrc_title.o
│   │   │   │   ├── script.gen
│   │   │   │   ├── title.cpp
│   │   │   │   ├── title.h
│   │   │   │   ├── title.o
│   │   │   │   ├── title.png
│   │   │   │   ├── title.pri
│   │   │   │   ├── title.pro
│   │   │   │   ├── title.qrc
│   │   │   │   ├── Title_resource.rc
│   │   │   │   ├── Title_resource_res.o
│   │   │   │   └── titlescripting.h
│   │   │   ├── core
│   │   │   │   ├── core.pro
│   │   │   │   ├── Makefile
│   │   │   │   ├── page
│   │   │   │   │   ├── formats.txt
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── align_bottom.png
│   │   │   │   │   │   ├── align_bottom.xcf
│   │   │   │   │   │   ├── align_height.png
│   │   │   │   │   │   ├── align_height.xcf
│   │   │   │   │   │   ├── align_left.png
│   │   │   │   │   │   ├── align_left.xcf
│   │   │   │   │   │   ├── align_right.png
│   │   │   │   │   │   ├── align_right.xcf
│   │   │   │   │   │   ├── align_top.png
│   │   │   │   │   │   ├── align_top.xcf
│   │   │   │   │   │   ├── align_width.png
│   │   │   │   │   │   ├── align_width.xcf
│   │   │   │   │   │   ├── background.png
│   │   │   │   │   │   ├── bring-backward.png
│   │   │   │   │   │   ├── bring-forward.png
│   │   │   │   │   │   ├── frame_bottom.png
│   │   │   │   │   │   ├── frame_left.png
│   │   │   │   │   │   ├── frame_right.png
│   │   │   │   │   │   ├── frame_top.png
│   │   │   │   │   │   ├── magnet_bottom.png
│   │   │   │   │   │   ├── magnet_left.png
│   │   │   │   │   │   ├── magnet_right.png
│   │   │   │   │   │   ├── magnet_top.png
│   │   │   │   │   │   ├── move_down.png
│   │   │   │   │   │   ├── move_up.png
│   │   │   │   │   │   ├── page_icon.png
│   │   │   │   │   │   ├── zoom-fit-best.png
│   │   │   │   │   │   ├── zoom-in.png
│   │   │   │   │   │   ├── zoom-original.png
│   │   │   │   │   │   └── zoom-out.png
│   │   │   │   │   ├── layoutmanager.cpp
│   │   │   │   │   ├── layoutmanager.h
│   │   │   │   │   ├── layoutmanager.o
│   │   │   │   │   ├── magnets.cpp
│   │   │   │   │   ├── magnets.h
│   │   │   │   │   ├── magnets.o
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_magnets.cpp
│   │   │   │   │   ├── moc_magnets.o
│   │   │   │   │   ├── moc_page.cpp
│   │   │   │   │   ├── moc_pagegui.cpp
│   │   │   │   │   ├── moc_pagegui.o
│   │   │   │   │   ├── moc_pageitemselection.cpp
│   │   │   │   │   ├── moc_pageitemselection.o
│   │   │   │   │   ├── moc_pagemanipulator.cpp
│   │   │   │   │   ├── moc_pagemanipulator.o
│   │   │   │   │   ├── moc_page.o
│   │   │   │   │   ├── moc_scene.cpp
│   │   │   │   │   ├── moc_scene.o
│   │   │   │   │   ├── moc_view.cpp
│   │   │   │   │   ├── moc_view.o
│   │   │   │   │   ├── object_script.Page
│   │   │   │   │   ├── page.cpp
│   │   │   │   │   ├── pagegui.cpp
│   │   │   │   │   ├── pagegui.h
│   │   │   │   │   ├── pagegui.o
│   │   │   │   │   ├── page.h
│   │   │   │   │   ├── pageitemselection.cpp
│   │   │   │   │   ├── pageitemselection.h
│   │   │   │   │   ├── pageitemselection.o
│   │   │   │   │   ├── pagemanipulator.cpp
│   │   │   │   │   ├── pagemanipulator.h
│   │   │   │   │   ├── pagemanipulator.o
│   │   │   │   │   ├── page.o
│   │   │   │   │   ├── page.pri
│   │   │   │   │   ├── page.pro
│   │   │   │   │   ├── page.qrc
│   │   │   │   │   ├── Page_resource.rc
│   │   │   │   │   ├── Page_resource_res.o
│   │   │   │   │   ├── pageselecter.cpp
│   │   │   │   │   ├── pageselecter.h
│   │   │   │   │   ├── qrc_page.cpp
│   │   │   │   │   ├── qrc_page.o
│   │   │   │   │   ├── scene.cpp
│   │   │   │   │   ├── scene.h
│   │   │   │   │   ├── scene.o
│   │   │   │   │   ├── view.cpp
│   │   │   │   │   ├── view.h
│   │   │   │   │   └── view.o
│   │   │   │   ├── printer
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_printer.cpp
│   │   │   │   │   ├── moc_printer.o
│   │   │   │   │   ├── printer.cpp
│   │   │   │   │   ├── printer.h
│   │   │   │   │   ├── printerhelper.cpp
│   │   │   │   │   ├── printerhelper.h
│   │   │   │   │   ├── printerhelper.ui
│   │   │   │   │   ├── printer.o
│   │   │   │   │   ├── printer.pri
│   │   │   │   │   ├── printer.pro
│   │   │   │   │   ├── Printer_resource.rc
│   │   │   │   │   ├── Printer_resource_res.o
│   │   │   │   │   └── ui_printerhelper.h
│   │   │   │   ├── renderer
│   │   │   │   │   ├── aggregatefunctions.cpp
│   │   │   │   │   ├── aggregatefunctions.h
│   │   │   │   │   ├── aggregatefunctions.o
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_renderer.cpp
│   │   │   │   │   ├── moc_rendereriteminterface.cpp
│   │   │   │   │   ├── moc_rendereriteminterface.o
│   │   │   │   │   ├── moc_renderer.o
│   │   │   │   │   ├── moc_rendererprocessor.cpp
│   │   │   │   │   ├── moc_rendererprocessor.o
│   │   │   │   │   ├── moc_scriptengine.cpp
│   │   │   │   │   ├── moc_scriptengine.o
│   │   │   │   │   ├── object_script.Renderer
│   │   │   │   │   ├── preparser.cpp
│   │   │   │   │   ├── preparser.h
│   │   │   │   │   ├── preparser.o
│   │   │   │   │   ├── renderer.cpp
│   │   │   │   │   ├── rendererdata.cpp
│   │   │   │   │   ├── rendererdata.h
│   │   │   │   │   ├── rendererdata.o
│   │   │   │   │   ├── renderer.h
│   │   │   │   │   ├── rendereriteminterface.cpp
│   │   │   │   │   ├── rendereriteminterface.h
│   │   │   │   │   ├── rendereriteminterface.o
│   │   │   │   │   ├── renderer.o
│   │   │   │   │   ├── renderer.pro
│   │   │   │   │   ├── rendererprocessor.cpp
│   │   │   │   │   ├── rendererprocessor.h
│   │   │   │   │   ├── rendererprocessor.o
│   │   │   │   │   ├── Renderer_resource.rc
│   │   │   │   │   ├── Renderer_resource_res.o
│   │   │   │   │   ├── scriptengine.cpp
│   │   │   │   │   ├── scriptengine.h
│   │   │   │   │   ├── scriptengine.o
│   │   │   │   │   ├── variables.cpp
│   │   │   │   │   ├── variables.h
│   │   │   │   │   └── variables.o
│   │   │   │   └── scriptextension
│   │   │   │   ├── cutereport_init.cpp
│   │   │   │   ├── cutereport_init.o
│   │   │   │   ├── Makefile
│   │   │   │   ├── moc_scriptplugin.cpp
│   │   │   │   ├── moc_scriptplugin.o
│   │   │   │   ├── object_script.Script
│   │   │   │   ├── qtscript_Global.cpp
│   │   │   │   ├── qtscript_Global.o
│   │   │   │   ├── qtscript_QAbstractItemModel.cpp
│   │   │   │   ├── qtscript_QAbstractItemModel.o
│   │   │   │   ├── qtscript_QAbstractListModel.cpp
│   │   │   │   ├── qtscript_QAbstractListModel.o
│   │   │   │   ├── qtscript_QAbstractTableModel.cpp
│   │   │   │   ├── qtscript_QAbstractTableModel.o
│   │   │   │   ├── qtscript_QBitArray.cpp
│   │   │   │   ├── qtscript_QBrush.cpp
│   │   │   │   ├── qtscript_QBrush.o
│   │   │   │   ├── qtscript_QBuffer.cpp
│   │   │   │   ├── qtscript_QBuffer.o
│   │   │   │   ├── qtscript_QByteArray.cpp
│   │   │   │   ├── qtscript_QByteArray.o
│   │   │   │   ├── qtscript_QColor.cpp
│   │   │   │   ├── qtscript_QColor.o
│   │   │   │   ├── qtscript_QConicalGradient.cpp
│   │   │   │   ├── qtscript_QConicalGradient.o
│   │   │   │   ├── qtscript_QDataStream.cpp
│   │   │   │   ├── qtscript_QDate.cpp
│   │   │   │   ├── qtscript_QDate.o
│   │   │   │   ├── qtscript_QDateTime.cpp
│   │   │   │   ├── qtscript_QDateTime.o
│   │   │   │   ├── qtscript_QFont.cpp
│   │   │   │   ├── qtscript_QFontMetrics.cpp
│   │   │   │   ├── qtscript_QFontMetricsF.cpp
│   │   │   │   ├── qtscript_QFontMetricsF.o
│   │   │   │   ├── qtscript_QFontMetrics.o
│   │   │   │   ├── qtscript_QFont.o
│   │   │   │   ├── qtscript_QGradient.cpp
│   │   │   │   ├── qtscript_QGradient.o
│   │   │   │   ├── qtscript_QIcon.cpp
│   │   │   │   ├── qtscript_QIcon.o
│   │   │   │   ├── qtscript_QImage.cpp
│   │   │   │   ├── qtscript_QImage.o
│   │   │   │   ├── qtscript_QLinearGradient.cpp
│   │   │   │   ├── qtscript_QLinearGradient.o
│   │   │   │   ├── qtscript_QMargins.cpp
│   │   │   │   ├── qtscript_QMargins.o
│   │   │   │   ├── qtscript_QObject.cpp
│   │   │   │   ├── qtscript_QObject.o
│   │   │   │   ├── qtscript_QPen.cpp
│   │   │   │   ├── qtscript_QPen.o
│   │   │   │   ├── qtscript_QPixmap.cpp
│   │   │   │   ├── qtscript_QPixmap.o
│   │   │   │   ├── qtscript_QPoint.cpp
│   │   │   │   ├── qtscript_QPointF.cpp
│   │   │   │   ├── qtscript_QPointF.o
│   │   │   │   ├── qtscript_QPoint.o
│   │   │   │   ├── qtscript_QRadialGradient.cpp
│   │   │   │   ├── qtscript_QRadialGradient.o
│   │   │   │   ├── qtscript_QRect.cpp
│   │   │   │   ├── qtscript_QRectF.cpp
│   │   │   │   ├── qtscript_QRectF.o
│   │   │   │   ├── qtscript_QRect.o
│   │   │   │   ├── qtscript_QRegExp.cpp
│   │   │   │   ├── qtscript_QRegExp.o
│   │   │   │   ├── qtscript_QSize.cpp
│   │   │   │   ├── qtscript_QSizeF.cpp
│   │   │   │   ├── qtscript_QSizeF.o
│   │   │   │   ├── qtscript_QSize.o
│   │   │   │   ├── qtscript_QStringMatcher.cpp
│   │   │   │   ├── qtscript_Qt.cpp
│   │   │   │   ├── qtscript_QTime.cpp
│   │   │   │   ├── qtscript_QTime.o
│   │   │   │   ├── qtscript_QTimer.cpp
│   │   │   │   ├── qtscript_QTimer.o
│   │   │   │   ├── qtscript_Qt.o
│   │   │   │   ├── qtscriptshell_QAbstractItemModel.cpp
│   │   │   │   ├── qtscriptshell_QAbstractItemModel.h
│   │   │   │   ├── qtscriptshell_QAbstractItemModel.o
│   │   │   │   ├── qtscriptshell_QAbstractListModel.cpp
│   │   │   │   ├── qtscriptshell_QAbstractListModel.h
│   │   │   │   ├── qtscriptshell_QAbstractListModel.o
│   │   │   │   ├── qtscriptshell_QAbstractTableModel.cpp
│   │   │   │   ├── qtscriptshell_QAbstractTableModel.h
│   │   │   │   ├── qtscriptshell_QAbstractTableModel.o
│   │   │   │   ├── qtscriptshell_QBuffer.cpp
│   │   │   │   ├── qtscriptshell_QBuffer.h
│   │   │   │   ├── qtscriptshell_QBuffer.o
│   │   │   │   ├── qtscriptshell_QDataStream.cpp
│   │   │   │   ├── qtscriptshell_QDataStream.h
│   │   │   │   ├── qtscriptshell_QDataStream.o
│   │   │   │   ├── qtscriptshell_QImage.cpp
│   │   │   │   ├── qtscriptshell_QImage.h
│   │   │   │   ├── qtscriptshell_QImage.o
│   │   │   │   ├── qtscriptshell_QObject.cpp
│   │   │   │   ├── qtscriptshell_QObject.h
│   │   │   │   ├── qtscriptshell_QObject.o
│   │   │   │   ├── qtscriptshell_QPixmap.cpp
│   │   │   │   ├── qtscriptshell_QPixmap.h
│   │   │   │   ├── qtscriptshell_QPixmap.o
│   │   │   │   ├── qtscriptshell_QTimer.cpp
│   │   │   │   ├── qtscriptshell_QTimer.h
│   │   │   │   ├── qtscriptshell_QTimer.o
│   │   │   │   ├── scriptextension.pro
│   │   │   │   ├── scriptplugin.cpp
│   │   │   │   ├── scriptplugin.h
│   │   │   │   ├── scriptplugin.o
│   │   │   │   ├── Script_resource.rc
│   │   │   │   └── Script_resource_res.o
│   │   │   ├── core_plugins.pro
│   │   │   ├── core_static.h
│   │   │   ├── core_static.pri
│   │   │   ├── datasets
│   │   │   │   ├── csv
│   │   │   │   │   ├── csvdataset.cpp
│   │   │   │   │   ├── csvdataset.h
│   │   │   │   │   ├── csvdatasethelper.cpp
│   │   │   │   │   ├── csvdatasethelper.h
│   │   │   │   │   ├── csvdatasethelper.o
│   │   │   │   │   ├── csvdatasethelper.ui
│   │   │   │   │   ├── csvdatasetmodel.cpp
│   │   │   │   │   ├── csvdatasetmodel.h
│   │   │   │   │   ├── csvdatasetmodel.o
│   │   │   │   │   ├── csvdataset.o
│   │   │   │   │   ├── csvdataset.qrc
│   │   │   │   │   ├── csv.pri
│   │   │   │   │   ├── csv.pro
│   │   │   │   │   ├── DatasetCSV_resource.rc
│   │   │   │   │   ├── DatasetCSV_resource_res.o
│   │   │   │   │   ├── images
│   │   │   │   │   │   └── csv.jpeg
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_csvdataset.cpp
│   │   │   │   │   ├── moc_csvdatasethelper.cpp
│   │   │   │   │   ├── moc_csvdatasethelper.o
│   │   │   │   │   ├── moc_csvdatasetmodel.cpp
│   │   │   │   │   ├── moc_csvdatasetmodel.o
│   │   │   │   │   ├── moc_csvdataset.o
│   │   │   │   │   ├── moc_sortfilterproxymodel.cpp
│   │   │   │   │   ├── moc_sortfilterproxymodel.o
│   │   │   │   │   ├── qrc_csvdataset.cpp
│   │   │   │   │   ├── qrc_csvdataset.o
│   │   │   │   │   ├── sortfilterproxymodel.cpp
│   │   │   │   │   ├── sortfilterproxymodel.h
│   │   │   │   │   ├── sortfilterproxymodel.o
│   │   │   │   │   └── ui_csvdatasethelper.h
│   │   │   │   ├── datasets.pro
│   │   │   │   ├── filesystem
│   │   │   │   │   ├── DatasetFileSystem_resource.rc
│   │   │   │   │   ├── DatasetFileSystem_resource_res.o
│   │   │   │   │   ├── filestemdatasetmodel.h
│   │   │   │   │   ├── filesystemdataset.cpp
│   │   │   │   │   ├── filesystemdataset.h
│   │   │   │   │   ├── filesystemdatasethelper.cpp
│   │   │   │   │   ├── filesystemdatasethelper.h
│   │   │   │   │   ├── filesystemdatasethelper.o
│   │   │   │   │   ├── filesystemdatasethelper.ui
│   │   │   │   │   ├── filesystemdatasetmodel.cpp
│   │   │   │   │   ├── filesystemdatasetmodel.h
│   │   │   │   │   ├── filesystemdatasetmodel.o
│   │   │   │   │   ├── filesystemdataset.o
│   │   │   │   │   ├── filesystemdataset.qrc
│   │   │   │   │   ├── filesystem.pri
│   │   │   │   │   ├── filesystem.pro
│   │   │   │   │   ├── images
│   │   │   │   │   │   └── fs.jpeg
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_filesystemdataset.cpp
│   │   │   │   │   ├── moc_filesystemdatasethelper.cpp
│   │   │   │   │   ├── moc_filesystemdatasethelper.o
│   │   │   │   │   ├── moc_filesystemdatasetmodel.cpp
│   │   │   │   │   ├── moc_filesystemdatasetmodel.o
│   │   │   │   │   ├── moc_filesystemdataset.o
│   │   │   │   │   ├── qrc_filesystemdataset.cpp
│   │   │   │   │   ├── qrc_filesystemdataset.o
│   │   │   │   │   └── ui_filesystemdatasethelper.h
│   │   │   │   ├── Makefile
│   │   │   │   ├── model
│   │   │   │   │   ├── clonemodel.o
│   │   │   │   │   ├── columntypemodel.o
│   │   │   │   │   ├── DatasetModel_resource.rc
│   │   │   │   │   ├── DatasetModel_resource_res.o
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── add_col.png
│   │   │   │   │   │   ├── add_row.png
│   │   │   │   │   │   ├── model.png
│   │   │   │   │   │   ├── remove_col.png
│   │   │   │   │   │   └── remove_row.png
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_clonemodel.cpp
│   │   │   │   │   ├── moc_clonemodel.o
│   │   │   │   │   ├── moc_columntypemodel.cpp
│   │   │   │   │   ├── moc_columntypemodel.o
│   │   │   │   │   ├── moc_modeldataset.cpp
│   │   │   │   │   ├── moc_modeldatasethelper.cpp
│   │   │   │   │   ├── moc_modeldatasethelper.o
│   │   │   │   │   ├── moc_modeldataset.o
│   │   │   │   │   ├── moc_testmodel.cpp
│   │   │   │   │   ├── moc_testmodel.o
│   │   │   │   │   ├── modeldataset.cpp
│   │   │   │   │   ├── modeldataset.h
│   │   │   │   │   ├── modeldatasethelper.cpp
│   │   │   │   │   ├── modeldatasethelper.h
│   │   │   │   │   ├── modeldatasethelper.o
│   │   │   │   │   ├── modeldatasethelper.ui
│   │   │   │   │   ├── modeldataset.o
│   │   │   │   │   ├── modeldataset.qrc
│   │   │   │   │   ├── model.pri
│   │   │   │   │   ├── model.pro
│   │   │   │   │   ├── models
│   │   │   │   │   │   ├── clonemodel.cpp
│   │   │   │   │   │   ├── clonemodel.h
│   │   │   │   │   │   ├── columntypemodel.cpp
│   │   │   │   │   │   ├── columntypemodel.h
│   │   │   │   │   │   ├── testmodel.cpp
│   │   │   │   │   │   └── testmodel.h
│   │   │   │   │   ├── object_script.DatasetModel
│   │   │   │   │   ├── qrc_modeldataset.cpp
│   │   │   │   │   ├── qrc_modeldataset.o
│   │   │   │   │   ├── testmodel.o
│   │   │   │   │   └── ui_modeldatasethelper.h
│   │   │   │   └── sql
│   │   │   │   ├── DatasetSQL_resource.rc
│   │   │   │   ├── DatasetSQL_resource_res.o
│   │   │   │   ├── images
│   │   │   │   │   └── sql.png
│   │   │   │   ├── Makefile
│   │   │   │   ├── moc_sqldataset.cpp
│   │   │   │   ├── moc_sqldatasethelper.cpp
│   │   │   │   ├── moc_sqldatasethelper.o
│   │   │   │   ├── moc_sqldataset.o
│   │   │   │   ├── moc_sqlsyntaxhighlighter.cpp
│   │   │   │   ├── moc_sqlsyntaxhighlighter.o
│   │   │   │   ├── qrc_sqldataset.cpp
│   │   │   │   ├── qrc_sqldataset.o
│   │   │   │   ├── sqldataset.cpp
│   │   │   │   ├── sqldataset.h
│   │   │   │   ├── sqldatasethelper.cpp
│   │   │   │   ├── sqldatasethelper.h
│   │   │   │   ├── sqldatasethelper.o
│   │   │   │   ├── sqldatasethelper.ui
│   │   │   │   ├── sqldataset.o
│   │   │   │   ├── sqldataset.qrc
│   │   │   │   ├── sql.pri
│   │   │   │   ├── sql.pro
│   │   │   │   ├── sqlsyntaxhighlighter.cpp
│   │   │   │   ├── sqlsyntaxhighlighter.h
│   │   │   │   ├── sqlsyntaxhighlighter.o
│   │   │   │   ├── syntax
│   │   │   │   │   └── sql.txt
│   │   │   │   └── ui_sqldatasethelper.h
│   │   │   ├── export
│   │   │   │   ├── export.pro
│   │   │   │   ├── Makefile
│   │   │   │   ├── pdf
│   │   │   │   │   ├── ExportPDF_resource.rc
│   │   │   │   │   ├── ExportPDF_resource_res.o
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_pdf.cpp
│   │   │   │   │   ├── moc_pdf.o
│   │   │   │   │   ├── pdf.cpp
│   │   │   │   │   ├── pdf.h
│   │   │   │   │   ├── pdfhelper.cpp
│   │   │   │   │   ├── pdfhelper.h
│   │   │   │   │   ├── pdfhelper.ui
│   │   │   │   │   ├── pdf_icon.png
│   │   │   │   │   ├── pdf.o
│   │   │   │   │   ├── pdf.pri
│   │   │   │   │   ├── pdf.pro
│   │   │   │   │   ├── pdf.qrc
│   │   │   │   │   ├── qrc_pdf.cpp
│   │   │   │   │   ├── qrc_pdf.o
│   │   │   │   │   └── ui_pdfhelper.h
│   │   │   │   └── svg
│   │   │   │   ├── svg.cpp
│   │   │   │   ├── svg.h
│   │   │   │   ├── svghelper.cpp
│   │   │   │   ├── svghelper.h
│   │   │   │   ├── svghelper.ui
│   │   │   │   ├── svg_icon.png
│   │   │   │   ├── svg.pri
│   │   │   │   ├── svg.pro
│   │   │   │   └── svg.qrc
│   │   │   ├── item_groups
│   │   │   │   ├── fake.cpp
│   │   │   │   ├── fake.o
│   │   │   │   ├── group_Bands.png
│   │   │   │   ├── group_Shapes.png
│   │   │   │   ├── group_Text.png
│   │   │   │   ├── item_groups.exe
│   │   │   │   ├── item_groups.pro
│   │   │   │   ├── item_groups_resource.rc
│   │   │   │   ├── item_groups_resource_res.o
│   │   │   │   └── Makefile
│   │   │   ├── items
│   │   │   │   ├── arc
│   │   │   │   │   ├── arc.cpp
│   │   │   │   │   ├── arc.h
│   │   │   │   │   ├── archelper.ui
│   │   │   │   │   ├── arc.o
│   │   │   │   │   ├── arc_p.h
│   │   │   │   │   ├── arc.png
│   │   │   │   │   ├── arc.pri
│   │   │   │   │   ├── arc.pro
│   │   │   │   │   ├── arc.qrc
│   │   │   │   │   ├── Arc_resource.rc
│   │   │   │   │   ├── Arc_resource_res.o
│   │   │   │   │   ├── arcscripting.h
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_arc.cpp
│   │   │   │   │   ├── moc_arc.o
│   │   │   │   │   ├── qrc_arc.cpp
│   │   │   │   │   ├── qrc_arc.o
│   │   │   │   │   └── script.gen
│   │   │   │   ├── barcode
│   │   │   │   │   ├── barcode.cpp
│   │   │   │   │   ├── barcode.h
│   │   │   │   │   ├── barcode_p.h
│   │   │   │   │   ├── barcode.png
│   │   │   │   │   ├── barcode.pri
│   │   │   │   │   ├── barcode.pro
│   │   │   │   │   ├── barcode.qrc
│   │   │   │   │   ├── barcodescripting.h
│   │   │   │   │   └── script.gen
│   │   │   │   ├── chart
│   │   │   │   │   ├── chart.cpp
│   │   │   │   │   ├── chart.h
│   │   │   │   │   ├── charthistogram.cpp
│   │   │   │   │   ├── charthistogram.h
│   │   │   │   │   ├── chart_p.h
│   │   │   │   │   ├── chart.png
│   │   │   │   │   ├── chart.pri
│   │   │   │   │   ├── chart.pro
│   │   │   │   │   └── chart.qrc
│   │   │   │   ├── chord
│   │   │   │   │   ├── chord.cpp
│   │   │   │   │   ├── chord.h
│   │   │   │   │   ├── chord.o
│   │   │   │   │   ├── chord_p.h
│   │   │   │   │   ├── chord.png
│   │   │   │   │   ├── chord.pri
│   │   │   │   │   ├── chord.pro
│   │   │   │   │   ├── chord.qrc
│   │   │   │   │   ├── Chord_resource.rc
│   │   │   │   │   ├── Chord_resource_res.o
│   │   │   │   │   ├── chordscripting.h
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_chord.cpp
│   │   │   │   │   ├── moc_chord.o
│   │   │   │   │   ├── qrc_chord.cpp
│   │   │   │   │   ├── qrc_chord.o
│   │   │   │   │   └── script.gen
│   │   │   │   ├── ellipse
│   │   │   │   │   ├── ellipse.cpp
│   │   │   │   │   ├── ellipse.h
│   │   │   │   │   ├── ellipse.o
│   │   │   │   │   ├── ellipse_p.h
│   │   │   │   │   ├── ellipse.png
│   │   │   │   │   ├── ellipse.pri
│   │   │   │   │   ├── ellipse.pro
│   │   │   │   │   ├── ellipse.qrc
│   │   │   │   │   ├── Ellipse_resource.rc
│   │   │   │   │   ├── Ellipse_resource_res.o
│   │   │   │   │   ├── ellipsescripting.h
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_ellipse.cpp
│   │   │   │   │   ├── moc_ellipse.o
│   │   │   │   │   ├── qrc_ellipse.cpp
│   │   │   │   │   ├── qrc_ellipse.o
│   │   │   │   │   └── script.gen
│   │   │   │   ├── image
│   │   │   │   │   ├── empty.png
│   │   │   │   │   ├── imageitem.cpp
│   │   │   │   │   ├── imageitem.h
│   │   │   │   │   ├── imageitem.o
│   │   │   │   │   ├── imageitem_p.h
│   │   │   │   │   ├── imageitem.qrc
│   │   │   │   │   ├── imageitemscript.h
│   │   │   │   │   ├── image.png
│   │   │   │   │   ├── image.pri
│   │   │   │   │   ├── image.pro
│   │   │   │   │   ├── Image_resource.rc
│   │   │   │   │   ├── Image_resource_res.o
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_imageitem.cpp
│   │   │   │   │   ├── moc_imageitem.o
│   │   │   │   │   ├── qrc_imageitem.cpp
│   │   │   │   │   ├── qrc_imageitem.o
│   │   │   │   │   └── script.gen
│   │   │   │   ├── items.pro
│   │   │   │   ├── line
│   │   │   │   │   ├── line.cpp
│   │   │   │   │   ├── line.h
│   │   │   │   │   ├── lineitemscript.h
│   │   │   │   │   ├── line.o
│   │   │   │   │   ├── line_p.h
│   │   │   │   │   ├── line.png
│   │   │   │   │   ├── line.pri
│   │   │   │   │   ├── line.pro
│   │   │   │   │   ├── line.qrc
│   │   │   │   │   ├── Line_resource.rc
│   │   │   │   │   ├── Line_resource_res.o
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_line.cpp
│   │   │   │   │   ├── moc_line.o
│   │   │   │   │   ├── qrc_line.cpp
│   │   │   │   │   ├── qrc_line.o
│   │   │   │   │   └── script.gen
│   │   │   │   ├── Makefile
│   │   │   │   ├── memo
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── data.png
│   │   │   │   │   │   ├── memo.png
│   │   │   │   │   │   ├── style.png
│   │   │   │   │   │   ├── text_align_center.png
│   │   │   │   │   │   ├── text_align_justify.png
│   │   │   │   │   │   ├── text_align_left.png
│   │   │   │   │   │   ├── text_align_right.png
│   │   │   │   │   │   ├── text_bold.png
│   │   │   │   │   │   ├── text-field.png
│   │   │   │   │   │   ├── text_italic.png
│   │   │   │   │   │   └── text_underline.png
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── memo.cpp
│   │   │   │   │   ├── memo.gen
│   │   │   │   │   ├── memo.h
│   │   │   │   │   ├── memohelper.cpp
│   │   │   │   │   ├── memohelper.h
│   │   │   │   │   ├── memohelper.o
│   │   │   │   │   ├── memohelper.ui
│   │   │   │   │   ├── memoitemscript.h
│   │   │   │   │   ├── memoitemview.cpp
│   │   │   │   │   ├── memoitemview.h
│   │   │   │   │   ├── memoitemview.o
│   │   │   │   │   ├── memo.o
│   │   │   │   │   ├── memo_p.h
│   │   │   │   │   ├── memo.pri
│   │   │   │   │   ├── memo.pro
│   │   │   │   │   ├── memo.qrc
│   │   │   │   │   ├── Memo_resource.rc
│   │   │   │   │   ├── Memo_resource_res.o
│   │   │   │   │   ├── moc_memo.cpp
│   │   │   │   │   ├── moc_memohelper.cpp
│   │   │   │   │   ├── moc_memohelper.o
│   │   │   │   │   ├── moc_memo.o
│   │   │   │   │   ├── moc_textformattoolbar.cpp
│   │   │   │   │   ├── moc_textformattoolbar.o
│   │   │   │   │   ├── qrc_memo.cpp
│   │   │   │   │   ├── qrc_memo.o
│   │   │   │   │   ├── renderedmemoitem.cpp
│   │   │   │   │   ├── renderedmemoitem.h
│   │   │   │   │   ├── renderedmemoitem.o
│   │   │   │   │   ├── script.gen
│   │   │   │   │   ├── textformattoolbar.cpp
│   │   │   │   │   ├── textformattoolbar.h
│   │   │   │   │   ├── textformattoolbar.o
│   │   │   │   │   └── ui_memohelper.h
│   │   │   │   ├── pie
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_pie.cpp
│   │   │   │   │   ├── moc_pie.o
│   │   │   │   │   ├── pie.cpp
│   │   │   │   │   ├── pie.h
│   │   │   │   │   ├── pieitemscript.h
│   │   │   │   │   ├── pie.o
│   │   │   │   │   ├── pie_p.h
│   │   │   │   │   ├── pie.png
│   │   │   │   │   ├── pie.pri
│   │   │   │   │   ├── pie.pro
│   │   │   │   │   ├── pie.qrc
│   │   │   │   │   ├── Pie_resource.rc
│   │   │   │   │   ├── Pie_resource_res.o
│   │   │   │   │   ├── qrc_pie.cpp
│   │   │   │   │   ├── qrc_pie.o
│   │   │   │   │   └── script.gen
│   │   │   │   ├── rectangle
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_rectangle.cpp
│   │   │   │   │   ├── moc_rectangle.o
│   │   │   │   │   ├── qrc_rectangle.cpp
│   │   │   │   │   ├── qrc_rectangle.o
│   │   │   │   │   ├── rectangle.cpp
│   │   │   │   │   ├── rectangle.h
│   │   │   │   │   ├── rectangleitemscript.h
│   │   │   │   │   ├── rectangle.o
│   │   │   │   │   ├── rectangle_p.h
│   │   │   │   │   ├── rectangle.png
│   │   │   │   │   ├── rectangle.pri
│   │   │   │   │   ├── rectangle.pro
│   │   │   │   │   ├── rectangle.qrc
│   │   │   │   │   ├── Rectangle_resource.rc
│   │   │   │   │   ├── Rectangle_resource_res.o
│   │   │   │   │   └── script.gen
│   │   │   │   └── _template
│   │   │   │   ├── empty.png
│   │   │   │   ├── image.cpp
│   │   │   │   ├── image.h
│   │   │   │   ├── imageitem.cpp
│   │   │   │   ├── imageitem.h
│   │   │   │   ├── imageitem_p.h
│   │   │   │   ├── imageitem.qrc
│   │   │   │   ├── image.png
│   │   │   │   ├── image.pri
│   │   │   │   └── image.pro
│   │   │   ├── Makefile
│   │   │   ├── plugins_common.h
│   │   │   ├── plugins.pri
│   │   │   ├── _script_template
│   │   │   │   ├── baseitemBody.tmpl
│   │   │   │   ├── baseitemHeader.tmpl
│   │   │   │   ├── baseitemRepeat.tmpl
│   │   │   │   ├── baseitem.tmpl
│   │   │   │   ├── common.tmpl
│   │   │   │   ├── enumsection.tmpl
│   │   │   │   ├── footer.tmpl
│   │   │   │   ├── header_simple.tmpl
│   │   │   │   ├── header.tmpl
│   │   │   │   ├── itemBody.tmpl
│   │   │   │   ├── itemHeader.tmpl
│   │   │   │   ├── itemRepeat.tmpl
│   │   │   │   └── item.tmpl
│   │   │   ├── serializer
│   │   │   │   ├── Makefile
│   │   │   │   ├── serializer.pro
│   │   │   │   └── xml
│   │   │   │   ├── Makefile
│   │   │   │   ├── moc_serializerxml.cpp
│   │   │   │   ├── moc_serializerxml.o
│   │   │   │   ├── serializerxml.cpp
│   │   │   │   ├── serializerxml.h
│   │   │   │   ├── serializerxml.o
│   │   │   │   ├── SerializerXML_resource.rc
│   │   │   │   ├── SerializerXML_resource_res.o
│   │   │   │   └── xml.pro
│   │   │   └── storage
│   │   │   ├── filesystem
│   │   │   │   ├── filesystem.cpp
│   │   │   │   ├── filesystem.h
│   │   │   │   ├── filesystem.o
│   │   │   │   ├── filesystem.pro
│   │   │   │   ├── filesystem.qrc
│   │   │   │   ├── filesystemstoragehelper.cpp
│   │   │   │   ├── filesystemstoragehelper.h
│   │   │   │   ├── filesystemstoragehelper.o
│   │   │   │   ├── filesystemstoragehelper.ui
│   │   │   │   ├── Makefile
│   │   │   │   ├── moc_filesystem.cpp
│   │   │   │   ├── moc_filesystem.o
│   │   │   │   ├── moc_filesystemstoragehelper.cpp
│   │   │   │   ├── moc_filesystemstoragehelper.o
│   │   │   │   ├── qrc_filesystem.cpp
│   │   │   │   ├── qrc_filesystem.o
│   │   │   │   ├── StorageFileSystem_resource.rc
│   │   │   │   ├── StorageFileSystem_resource_res.o
│   │   │   │   ├── ui_filesystemstoragehelper.h
│   │   │   │   └── urlHints.txt
│   │   │   ├── git
│   │   │   │   ├── git.cpp
│   │   │   │   ├── git.h
│   │   │   │   ├── git.o
│   │   │   │   ├── git.pro
│   │   │   │   ├── gitresources.qrc
│   │   │   │   ├── gitstoragehelper.cpp
│   │   │   │   ├── gitstoragehelper.h
│   │   │   │   ├── gitstoragehelper.o
│   │   │   │   ├── gitstoragehelper.ui
│   │   │   │   ├── Makefile
│   │   │   │   ├── moc_git.cpp
│   │   │   │   ├── moc_git.o
│   │   │   │   ├── moc_gitstoragehelper.cpp
│   │   │   │   ├── moc_gitstoragehelper.o
│   │   │   │   ├── moc_syncmanager.cpp
│   │   │   │   ├── moc_syncmanager.o
│   │   │   │   ├── qrc_gitresources.cpp
│   │   │   │   ├── qrc_gitresources.o
│   │   │   │   ├── StorageGIT_resource.rc
│   │   │   │   ├── StorageGIT_resource_res.o
│   │   │   │   ├── syncmanager.cpp
│   │   │   │   ├── syncmanager.h
│   │   │   │   ├── syncmanager.o
│   │   │   │   ├── ui_gitstoragehelper.h
│   │   │   │   └── urlHints.txt
│   │   │   ├── Makefile
│   │   │   ├── resource
│   │   │   │   ├── images
│   │   │   │   │   ├── list-add.png
│   │   │   │   │   └── list-remove.png
│   │   │   │   ├── Makefile
│   │   │   │   ├── moc_resource.cpp
│   │   │   │   ├── moc_resource.o
│   │   │   │   ├── moc_resourcestoragehelper.cpp
│   │   │   │   ├── moc_resourcestoragehelper.o
│   │   │   │   ├── qrc_resource_storage.cpp
│   │   │   │   ├── qrc_resource_storage.o
│   │   │   │   ├── resource.cpp
│   │   │   │   ├── resource.h
│   │   │   │   ├── resource.o
│   │   │   │   ├── resource.pro
│   │   │   │   ├── resourcestoragehelper.cpp
│   │   │   │   ├── resourcestoragehelper.h
│   │   │   │   ├── resourcestoragehelper.o
│   │   │   │   ├── resourcestoragehelper.ui
│   │   │   │   ├── resource_storage.qrc
│   │   │   │   ├── StorageResource_resource.rc
│   │   │   │   ├── StorageResource_resource_res.o
│   │   │   │   └── ui_resourcestoragehelper.h
│   │   │   ├── sql
│   │   │   │   ├── Makefile
│   │   │   │   ├── moc_sql.cpp
│   │   │   │   ├── moc_sql.o
│   │   │   │   ├── moc_sqlstoragehelper.cpp
│   │   │   │   ├── moc_sqlstoragehelper.o
│   │   │   │   ├── sql.cpp
│   │   │   │   ├── sql_global.h
│   │   │   │   ├── sql.h
│   │   │   │   ├── sql.o
│   │   │   │   ├── sql.pro
│   │   │   │   ├── sqlstoragehelper.cpp
│   │   │   │   ├── sqlstoragehelper.h
│   │   │   │   ├── sqlstoragehelper.o
│   │   │   │   ├── sqlstoragehelper.ui
│   │   │   │   ├── StorageSQL_resource.rc
│   │   │   │   ├── StorageSQL_resource_res.o
│   │   │   │   └── ui_sqlstoragehelper.h
│   │   │   └── storage.pro
│   │   ├── designer_plugins
│   │   │   ├── dataset_editor
│   │   │   │   ├── datasetcontainer.cpp
│   │   │   │   ├── datasetcontainer.h
│   │   │   │   ├── datasetcontainer.o
│   │   │   │   ├── datasetcontainer.ui
│   │   │   │   ├── dataseteditor.cpp
│   │   │   │   ├── dataseteditor.h
│   │   │   │   ├── dataseteditor.o
│   │   │   │   ├── dataset_editor.pro
│   │   │   │   ├── dataset_editor.qrc
│   │   │   │   ├── DatasetEditor_resource.rc
│   │   │   │   ├── DatasetEditor_resource_res.o
│   │   │   │   ├── images
│   │   │   │   │   ├── database_48.png
│   │   │   │   │   └── trash-empty.png
│   │   │   │   ├── Makefile
│   │   │   │   ├── moc_datasetcontainer.cpp
│   │   │   │   ├── moc_datasetcontainer.o
│   │   │   │   ├── moc_dataseteditor.cpp
│   │   │   │   ├── moc_dataseteditor.o
│   │   │   │   ├── qrc_dataset_editor.cpp
│   │   │   │   ├── qrc_dataset_editor.o
│   │   │   │   └── ui_datasetcontainer.h
│   │   │   ├── designerModules.pri
│   │   │   ├── designer_plugins.pro
│   │   │   ├── designer_static.h
│   │   │   ├── designer_static.pri
│   │   │   ├── form_editor
│   │   │   │   ├── designerrootwidget.cpp
│   │   │   │   ├── designerrootwidget.h
│   │   │   │   ├── designerrootwidget.ui
│   │   │   │   ├── form_editor.pro
│   │   │   │   ├── form_editor.qrc
│   │   │   │   ├── images
│   │   │   │   │   ├── document-open.png
│   │   │   │   │   ├── form_48.png
│   │   │   │   │   ├── form_add_48.png
│   │   │   │   │   ├── form_ok_48.png
│   │   │   │   │   ├── form_remove_48.png
│   │   │   │   │   ├── settings3.png
│   │   │   │   │   ├── text-xml.png
│   │   │   │   │   ├── window_48.png
│   │   │   │   │   ├── window_add_48.png
│   │   │   │   │   ├── window_close_48.png
│   │   │   │   │   └── window_ok_48.png
│   │   │   │   ├── itemstoolwidget.cpp
│   │   │   │   ├── itemstoolwidget.h
│   │   │   │   ├── newformdialog.cpp
│   │   │   │   ├── newformdialog.h
│   │   │   │   ├── newformdialog.ui
│   │   │   │   ├── qtdesigner
│   │   │   │   │   ├── include
│   │   │   │   │   │   └── QtDesigner
│   │   │   │   │   │   └── private
│   │   │   │   │   │   ├── abstractoptionspage_p.h
│   │   │   │   │   │   ├── actioneditor_p.h
│   │   │   │   │   │   ├── formscriptrunner_p.h
│   │   │   │   │   │   ├── formwindowbase_p.h
│   │   │   │   │   │   ├── pluginmanager_p.h
│   │   │   │   │   │   ├── qdesigner_integration_p.h
│   │   │   │   │   │   └── shared_settings_p.h
│   │   │   │   │   ├── qtdesigner.pro
│   │   │   │   │   └── tools
│   │   │   │   │   ├── designer
│   │   │   │   │   │   ├── data
│   │   │   │   │   │   │   ├── generate_header.xsl
│   │   │   │   │   │   │   ├── generate_impl.xsl
│   │   │   │   │   │   │   ├── generate_shared.xsl
│   │   │   │   │   │   │   ├── ui3.xsd
│   │   │   │   │   │   │   └── ui4.xsd
│   │   │   │   │   │   └── src
│   │   │   │   │   │   ├── designer
│   │   │   │   │   │   │   ├── designer_enums.h
│   │   │   │   │   │   │   ├── designer.icns
│   │   │   │   │   │   │   ├── designer.ico
│   │   │   │   │   │   │   ├── designer.pro
│   │   │   │   │   │   │   ├── designer.qrc
│   │   │   │   │   │   │   ├── designer.rc
│   │   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   │   ├── designer.png
│   │   │   │   │   │   │   │   ├── mdi.png
│   │   │   │   │   │   │   │   ├── sdi.png
│   │   │   │   │   │   │   │   └── workbench.png
│   │   │   │   │   │   │   ├── Info_mac.plist
│   │   │   │   │   │   │   ├── newform.cpp
│   │   │   │   │   │   │   ├── newform.h
│   │   │   │   │   │   │   ├── preferencesdialog.cpp
│   │   │   │   │   │   │   ├── preferencesdialog.h
│   │   │   │   │   │   │   ├── preferencesdialog.ui
│   │   │   │   │   │   │   ├── qdesigner_actions.cpp
│   │   │   │   │   │   │   ├── qdesigner_actions.h
│   │   │   │   │   │   │   ├── qdesigner_formwindow.cpp
│   │   │   │   │   │   │   ├── qdesigner_formwindow.h
│   │   │   │   │   │   │   ├── qdesigner_pch.h
│   │   │   │   │   │   │   ├── qdesigner_settings.cpp
│   │   │   │   │   │   │   ├── qdesigner_settings.h
│   │   │   │   │   │   │   ├── qdesigner_workbench.cpp
│   │   │   │   │   │   │   ├── qdesigner_workbench.h
│   │   │   │   │   │   │   ├── saveformastemplate.cpp
│   │   │   │   │   │   │   ├── saveformastemplate.h
│   │   │   │   │   │   │   ├── saveformastemplate.ui
│   │   │   │   │   │   │   ├── testmainwindow.cpp
│   │   │   │   │   │   │   ├── testmainwindow.h
│   │   │   │   │   │   │   ├── testmainwindow.ui
│   │   │   │   │   │   │   ├── uifile.icns
│   │   │   │   │   │   │   ├── versiondialog.cpp
│   │   │   │   │   │   │   └── versiondialog.h
│   │   │   │   │   │   ├── lib
│   │   │   │   │   │   │   ├── lib_pch.h
│   │   │   │   │   │   │   ├── lib.pro
│   │   │   │   │   │   │   ├── sdk
│   │   │   │   │   │   │   │   ├── abstractactioneditor.h
│   │   │   │   │   │   │   │   ├── abstractbrushmanager.h
│   │   │   │   │   │   │   │   ├── abstractdialoggui_p.h
│   │   │   │   │   │   │   │   ├── abstractdnditem.h
│   │   │   │   │   │   │   │   ├── abstractdnditem.qdoc
│   │   │   │   │   │   │   │   ├── abstractformeditor.h
│   │   │   │   │   │   │   │   ├── abstractformeditorplugin.h
│   │   │   │   │   │   │   │   ├── abstractformwindowcursor.h
│   │   │   │   │   │   │   │   ├── abstractformwindow.h
│   │   │   │   │   │   │   │   ├── abstractformwindowmanager.h
│   │   │   │   │   │   │   │   ├── abstractformwindowtool.h
│   │   │   │   │   │   │   │   ├── abstracticoncache.h
│   │   │   │   │   │   │   │   ├── abstracticoncache.qdoc
│   │   │   │   │   │   │   │   ├── abstractintegration.h
│   │   │   │   │   │   │   │   ├── abstractintrospection_p.h
│   │   │   │   │   │   │   │   ├── abstractlanguage.h
│   │   │   │   │   │   │   │   ├── abstractmetadatabase.h
│   │   │   │   │   │   │   │   ├── abstractnewformwidget_p.h
│   │   │   │   │   │   │   │   ├── abstractobjectinspector.h
│   │   │   │   │   │   │   │   ├── abstractoptionspage_p.h
│   │   │   │   │   │   │   │   ├── abstractpromotioninterface.h
│   │   │   │   │   │   │   │   ├── abstractpropertyeditor.h
│   │   │   │   │   │   │   │   ├── abstractresourcebrowser.h
│   │   │   │   │   │   │   │   ├── abstractsettings_p.h
│   │   │   │   │   │   │   │   ├── abstractwidgetbox.h
│   │   │   │   │   │   │   │   ├── abstractwidgetdatabase.h
│   │   │   │   │   │   │   │   ├── abstractwidgetfactory.h
│   │   │   │   │   │   │   │   ├── dynamicpropertysheet.h
│   │   │   │   │   │   │   │   ├── dynamicpropertysheet.qdoc
│   │   │   │   │   │   │   │   ├── extrainfo.h
│   │   │   │   │   │   │   │   ├── layoutdecoration.h
│   │   │   │   │   │   │   │   ├── layoutdecoration.qdoc
│   │   │   │   │   │   │   │   ├── membersheet.h
│   │   │   │   │   │   │   │   ├── membersheet.qdoc
│   │   │   │   │   │   │   │   ├── propertysheet.h
│   │   │   │   │   │   │   │   ├── propertysheet.qdoc
│   │   │   │   │   │   │   │   ├── script_p.h
│   │   │   │   │   │   │   │   ├── sdk_global.h
│   │   │   │   │   │   │   │   ├── sdk.pri
│   │   │   │   │   │   │   │   ├── taskmenu.h
│   │   │   │   │   │   │   │   └── taskmenu.qdoc
│   │   │   │   │   │   │   ├── shared
│   │   │   │   │   │   │   │   ├── actioneditor_p.h
│   │   │   │   │   │   │   │   ├── actionprovider_p.h
│   │   │   │   │   │   │   │   ├── actionrepository_p.h
│   │   │   │   │   │   │   │   ├── addlinkdialog.ui
│   │   │   │   │   │   │   │   ├── codedialog_p.h
│   │   │   │   │   │   │   │   ├── connectionedit_p.h
│   │   │   │   │   │   │   │   ├── csshighlighter_p.h
│   │   │   │   │   │   │   │   ├── defaultgradients.xml
│   │   │   │   │   │   │   │   ├── deviceprofile_p.h
│   │   │   │   │   │   │   │   ├── dialoggui_p.h
│   │   │   │   │   │   │   │   ├── extensionfactory_p.h
│   │   │   │   │   │   │   │   ├── filterwidget_p.h
│   │   │   │   │   │   │   │   ├── formlayoutmenu_p.h
│   │   │   │   │   │   │   │   ├── formlayoutrowdialog.ui
│   │   │   │   │   │   │   │   ├── formwindowbase_p.h
│   │   │   │   │   │   │   │   ├── gridpanel_p.h
│   │   │   │   │   │   │   │   ├── gridpanel.ui
│   │   │   │   │   │   │   │   ├── grid_p.h
│   │   │   │   │   │   │   │   ├── htmlhighlighter_p.h
│   │   │   │   │   │   │   │   ├── iconloader_p.h
│   │   │   │   │   │   │   │   ├── iconselector_p.h
│   │   │   │   │   │   │   │   ├── invisible_widget_p.h
│   │   │   │   │   │   │   │   ├── layoutinfo_p.h
│   │   │   │   │   │   │   │   ├── layout_p.h
│   │   │   │   │   │   │   │   ├── metadatabase_p.h
│   │   │   │   │   │   │   │   ├── morphmenu_p.h
│   │   │   │   │   │   │   │   ├── newactiondialog_p.h
│   │   │   │   │   │   │   │   ├── newactiondialog.ui
│   │   │   │   │   │   │   │   ├── newformwidget_p.h
│   │   │   │   │   │   │   │   ├── newformwidget.ui
│   │   │   │   │   │   │   │   ├── orderdialog_p.h
│   │   │   │   │   │   │   │   ├── orderdialog.ui
│   │   │   │   │   │   │   │   ├── plaintexteditor_p.h
│   │   │   │   │   │   │   │   ├── plugindialog_p.h
│   │   │   │   │   │   │   │   ├── plugindialog.ui
│   │   │   │   │   │   │   │   ├── pluginmanager_p.h
│   │   │   │   │   │   │   │   ├── previewconfigurationwidget_p.h
│   │   │   │   │   │   │   │   ├── previewconfigurationwidget.ui
│   │   │   │   │   │   │   │   ├── previewmanager_p.h
│   │   │   │   │   │   │   │   ├── promotionmodel_p.h
│   │   │   │   │   │   │   │   ├── promotiontaskmenu_p.h
│   │   │   │   │   │   │   │   ├── propertylineedit_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_command2_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_command_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_dnditem_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_dockwidget_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_formbuilder_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_formeditorcommand_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_formwindowcommand_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_formwindowmanager_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_integration_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_introspection_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_membersheet_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_menubar_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_menu_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_objectinspector_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_promotiondialog_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_promotion_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_propertycommand_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_propertyeditor_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_propertysheet_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_qsettings_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_stackedbox_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_tabwidget_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_taskmenu_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_toolbar_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_toolbox_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_utils_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_widgetbox_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_widgetitem_p.h
│   │   │   │   │   │   │   │   ├── qdesigner_widget_p.h
│   │   │   │   │   │   │   │   ├── qlayout_widget_p.h
│   │   │   │   │   │   │   │   ├── qscripthighlighter_p.h
│   │   │   │   │   │   │   │   ├── qsimpleresource_p.h
│   │   │   │   │   │   │   │   ├── qtresourceeditordialog_p.h
│   │   │   │   │   │   │   │   ├── qtresourceeditordialog.ui
│   │   │   │   │   │   │   │   ├── qtresourcemodel_p.h
│   │   │   │   │   │   │   │   ├── qtresourceview_p.h
│   │   │   │   │   │   │   │   ├── richtexteditor_p.h
│   │   │   │   │   │   │   │   ├── scriptcommand_p.h
│   │   │   │   │   │   │   │   ├── scriptdialog_p.h
│   │   │   │   │   │   │   │   ├── scripterrordialog_p.h
│   │   │   │   │   │   │   │   ├── selectsignaldialog.ui
│   │   │   │   │   │   │   │   ├── shared_enums_p.h
│   │   │   │   │   │   │   │   ├── shared_global_p.h
│   │   │   │   │   │   │   │   ├── shared.pri
│   │   │   │   │   │   │   │   ├── shared.qrc
│   │   │   │   │   │   │   │   ├── shared_settings_p.h
│   │   │   │   │   │   │   │   ├── sheet_delegate_p.h
│   │   │   │   │   │   │   │   ├── signalslotdialog_p.h
│   │   │   │   │   │   │   │   ├── signalslotdialog.ui
│   │   │   │   │   │   │   │   ├── spacer_widget_p.h
│   │   │   │   │   │   │   │   ├── stylesheeteditor_p.h
│   │   │   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   │   │   └── forms
│   │   │   │   │   │   │   │   │   ├── 240x320
│   │   │   │   │   │   │   │   │   │   ├── Dialog_with_Buttons_Bottom.ui
│   │   │   │   │   │   │   │   │   │   └── Dialog_with_Buttons_Right.ui
│   │   │   │   │   │   │   │   │   ├── 320x240
│   │   │   │   │   │   │   │   │   │   ├── Dialog_with_Buttons_Bottom.ui
│   │   │   │   │   │   │   │   │   │   └── Dialog_with_Buttons_Right.ui
│   │   │   │   │   │   │   │   │   ├── 480x640
│   │   │   │   │   │   │   │   │   │   ├── Dialog_with_Buttons_Bottom.ui
│   │   │   │   │   │   │   │   │   │   └── Dialog_with_Buttons_Right.ui
│   │   │   │   │   │   │   │   │   ├── 640x480
│   │   │   │   │   │   │   │   │   │   ├── Dialog_with_Buttons_Bottom.ui
│   │   │   │   │   │   │   │   │   │   └── Dialog_with_Buttons_Right.ui
│   │   │   │   │   │   │   │   │   ├── Dialog_with_Buttons_Bottom.ui
│   │   │   │   │   │   │   │   │   ├── Dialog_with_Buttons_Right.ui
│   │   │   │   │   │   │   │   │   ├── Dialog_without_Buttons.ui
│   │   │   │   │   │   │   │   │   ├── Main_Window.ui
│   │   │   │   │   │   │   │   │   └── Widget.ui
│   │   │   │   │   │   │   │   ├── textpropertyeditor_p.h
│   │   │   │   │   │   │   │   ├── widgetdatabase_p.h
│   │   │   │   │   │   │   │   ├── widgetfactory_p.h
│   │   │   │   │   │   │   │   └── zoomwidget_p.h
│   │   │   │   │   │   │   └── uilib
│   │   │   │   │   │   │   ├── abstractformbuilder.h
│   │   │   │   │   │   │   ├── container.h
│   │   │   │   │   │   │   ├── container.qdoc
│   │   │   │   │   │   │   ├── customwidget.h
│   │   │   │   │   │   │   ├── customwidget.qdoc
│   │   │   │   │   │   │   ├── formbuilderextra_p.h
│   │   │   │   │   │   │   ├── formbuilder.h
│   │   │   │   │   │   │   ├── formscriptrunner_p.h
│   │   │   │   │   │   │   ├── properties_p.h
│   │   │   │   │   │   │   ├── qdesignerexportwidget.h
│   │   │   │   │   │   │   ├── resourcebuilder_p.h
│   │   │   │   │   │   │   ├── textbuilder_p.h
│   │   │   │   │   │   │   ├── ui4_p.h
│   │   │   │   │   │   │   ├── uilib_global.h
│   │   │   │   │   │   │   ├── uilib.pri
│   │   │   │   │   │   │   └── widgets.table
│   │   │   │   │   │   └── sharedcomponents.pri
│   │   │   │   │   └── tools.pro
│   │   │   │   ├── templates
│   │   │   │   │   ├── Dialog_with_Buttons_Bottom.ui
│   │   │   │   │   ├── Dialog_with_Buttons_Right.ui
│   │   │   │   │   └── Dialog_without_Buttons.ui
│   │   │   │   ├── uicontainer.cpp
│   │   │   │   ├── uicontainer.h
│   │   │   │   ├── uicontainer.ui
│   │   │   │   ├── uidesigner.ui
│   │   │   │   ├── ui_editor.cpp
│   │   │   │   └── ui_editor.h
│   │   │   ├── Makefile
│   │   │   ├── page_editor
│   │   │   │   ├── alignmenteditor
│   │   │   │   │   ├── alignmenteditor.cpp
│   │   │   │   │   ├── alignmenteditor.h
│   │   │   │   │   └── alignmenteditor.ui
│   │   │   │   ├── alignmenteditor.o
│   │   │   │   ├── fonteditor
│   │   │   │   │   ├── fonteditor.cpp
│   │   │   │   │   ├── fonteditor.h
│   │   │   │   │   └── fonteditor.ui
│   │   │   │   ├── fonteditor.o
│   │   │   │   ├── frameeditor
│   │   │   │   │   ├── frameeditor.cpp
│   │   │   │   │   ├── frameeditor.h
│   │   │   │   │   └── frameeditor.ui
│   │   │   │   ├── frameeditor.o
│   │   │   │   ├── images
│   │   │   │   │   ├── bold-h-icon.png
│   │   │   │   │   ├── bold-h-icon_.png
│   │   │   │   │   ├── document-close.png
│   │   │   │   │   ├── document-multiple.png
│   │   │   │   │   ├── document-new.png
│   │   │   │   │   ├── document-open.png
│   │   │   │   │   ├── document-save-as.png
│   │   │   │   │   ├── editor_48.png
│   │   │   │   │   ├── fill-color.png
│   │   │   │   │   ├── font.png
│   │   │   │   │   ├── format-justify-bottom.png
│   │   │   │   │   ├── format-justify-center.png
│   │   │   │   │   ├── format-justify-fill.png
│   │   │   │   │   ├── format-justify-left.png
│   │   │   │   │   ├── format-justify-middle.png
│   │   │   │   │   ├── format-justify-right.png
│   │   │   │   │   ├── format-justify-top.png
│   │   │   │   │   ├── format-stroke-color.png
│   │   │   │   │   ├── format-text-color.png
│   │   │   │   │   ├── frame_all.png
│   │   │   │   │   ├── frame_bottom.png
│   │   │   │   │   ├── frame_left.png
│   │   │   │   │   ├── frame_none.png
│   │   │   │   │   ├── frame_right.png
│   │   │   │   │   ├── frame_top.png
│   │   │   │   │   ├── italic-h-icon.png
│   │   │   │   │   ├── italic-h-icon_.png
│   │   │   │   │   ├── move_left.png
│   │   │   │   │   ├── move_right.png
│   │   │   │   │   ├── strikeout-h-icon.png
│   │   │   │   │   ├── strikeout-h-icon_.png
│   │   │   │   │   ├── underline-h-icon.png
│   │   │   │   │   ├── underline-h-icon_.png
│   │   │   │   │   └── word-wrap.png
│   │   │   │   ├── itemstoolwidget.cpp
│   │   │   │   ├── itemstoolwidget.h
│   │   │   │   ├── itemstoolwidget.o
│   │   │   │   ├── Makefile
│   │   │   │   ├── moc_alignmenteditor.cpp
│   │   │   │   ├── moc_alignmenteditor.o
│   │   │   │   ├── moc_fonteditor.cpp
│   │   │   │   ├── moc_fonteditor.o
│   │   │   │   ├── moc_frameeditor.cpp
│   │   │   │   ├── moc_frameeditor.o
│   │   │   │   ├── moc_itemstoolwidget.cpp
│   │   │   │   ├── moc_itemstoolwidget.o
│   │   │   │   ├── moc_pageeditorcontainer.cpp
│   │   │   │   ├── moc_pageeditorcontainer.o
│   │   │   │   ├── moc_pageeditor.cpp
│   │   │   │   ├── moc_pageeditor.o
│   │   │   │   ├── object_script.PageEditor
│   │   │   │   ├── pageeditorcontainer.cpp
│   │   │   │   ├── pageeditorcontainer.h
│   │   │   │   ├── pageeditorcontainer.o
│   │   │   │   ├── pageeditorcontainer.ui
│   │   │   │   ├── pageeditor.cpp
│   │   │   │   ├── pageeditor.h
│   │   │   │   ├── pageeditor.o
│   │   │   │   ├── page_editor.pro
│   │   │   │   ├── page_editor.qrc
│   │   │   │   ├── PageEditor_resource.rc
│   │   │   │   ├── PageEditor_resource_res.o
│   │   │   │   ├── qrc_page_editor.cpp
│   │   │   │   ├── qrc_page_editor.o
│   │   │   │   ├── ui_alignmenteditor.h
│   │   │   │   ├── ui_fonteditor.h
│   │   │   │   ├── ui_frameeditor.h
│   │   │   │   └── ui_pageeditorcontainer.h
│   │   │   ├── preview
│   │   │   │   ├── images
│   │   │   │   │   └── preview_48.png
│   │   │   │   ├── Makefile
│   │   │   │   ├── moc_preview.cpp
│   │   │   │   ├── moc_preview.o
│   │   │   │   ├── preview.cpp
│   │   │   │   ├── preview.h
│   │   │   │   ├── preview.o
│   │   │   │   ├── preview.pro
│   │   │   │   ├── preview.qrc
│   │   │   │   ├── Preview_resource.rc
│   │   │   │   ├── Preview_resource_res.o
│   │   │   │   ├── qrc_preview.cpp
│   │   │   │   └── qrc_preview.o
│   │   │   ├── report_editor
│   │   │   │   ├── comboboxdelegate.cpp
│   │   │   │   ├── comboboxdelegate.h
│   │   │   │   ├── comboboxdelegate.o
│   │   │   │   ├── images
│   │   │   │   │   ├── application-vnd.sun.xml.calc.template.png
│   │   │   │   │   ├── document-close.png
│   │   │   │   │   ├── document-new.png
│   │   │   │   │   ├── document-open.png
│   │   │   │   │   ├── document-save-as.png
│   │   │   │   │   ├── document-save.png
│   │   │   │   │   ├── rename.png
│   │   │   │   │   └── report.png
│   │   │   │   ├── Makefile
│   │   │   │   ├── moc_comboboxdelegate.cpp
│   │   │   │   ├── moc_comboboxdelegate.o
│   │   │   │   ├── moc_parametersmodel.cpp
│   │   │   │   ├── moc_parametersmodel.o
│   │   │   │   ├── moc_parameterswidget.cpp
│   │   │   │   ├── moc_parameterswidget.o
│   │   │   │   ├── moc_reportcontainer.cpp
│   │   │   │   ├── moc_reportcontainer.o
│   │   │   │   ├── moc_reporteditor.cpp
│   │   │   │   ├── moc_reporteditor.o
│   │   │   │   ├── moc_reportproperties.cpp
│   │   │   │   ├── moc_reportproperties.o
│   │   │   │   ├── object_script.ReportEditor
│   │   │   │   ├── parametersmodel.cpp
│   │   │   │   ├── parametersmodel.h
│   │   │   │   ├── parametersmodel.o
│   │   │   │   ├── parameterswidget.cpp
│   │   │   │   ├── parameterswidget.h
│   │   │   │   ├── parameterswidget.o
│   │   │   │   ├── parameterswidget.ui
│   │   │   │   ├── qrc_reporteditor.cpp
│   │   │   │   ├── qrc_reporteditor.o
│   │   │   │   ├── reportcontainer.cpp
│   │   │   │   ├── reportcontainer.h
│   │   │   │   ├── reportcontainer.o
│   │   │   │   ├── reportcontainer.ui
│   │   │   │   ├── reporteditor.cpp
│   │   │   │   ├── reporteditor.h
│   │   │   │   ├── reporteditor.o
│   │   │   │   ├── report_editor.pro
│   │   │   │   ├── reporteditor.qrc
│   │   │   │   ├── ReportEditor_resource.rc
│   │   │   │   ├── ReportEditor_resource_res.o
│   │   │   │   ├── reportproperties.cpp
│   │   │   │   ├── reportproperties.h
│   │   │   │   ├── reportproperties.o
│   │   │   │   ├── reportproperties.ui
│   │   │   │   ├── ui_parameterswidget.h
│   │   │   │   ├── ui_reportcontainer.h
│   │   │   │   └── ui_reportproperties.h
│   │   │   └── script_editor
│   │   │   ├── images
│   │   │   │   ├── editcopy.png
│   │   │   │   ├── editcut.png
│   │   │   │   ├── editdelete.png
│   │   │   │   ├── editpaste.png
│   │   │   │   ├── editredo.png
│   │   │   │   ├── editundo.png
│   │   │   │   ├── script_48.png
│   │   │   │   └── validate.png
│   │   │   ├── Makefile
│   │   │   ├── moc_scripteditor.cpp
│   │   │   ├── moc_scripteditor.o
│   │   │   ├── qrc_script_editor.cpp
│   │   │   ├── qrc_script_editor.o
│   │   │   ├── scripteditor.cpp
│   │   │   ├── scripteditor.h
│   │   │   ├── scripteditor.o
│   │   │   ├── script_editor.pro
│   │   │   ├── script_editor.qrc
│   │   │   ├── ScriptEditor_resource.rc
│   │   │   └── ScriptEditor_resource_res.o
│   │   ├── Makefile
│   │   ├── plugins.pro
│   │   └── propertyeditor_plugins
│   │   ├── cr_margins
│   │   │   ├── cr_margins.pro
│   │   │   ├── cr_margins_prop.cpp
│   │   │   ├── CRMarginsProperty_resource.rc
│   │   │   ├── CRMarginsProperty_resource_res.o
│   │   │   ├── cr_margins_prop.h
│   │   │   ├── cr_margins_prop.o
│   │   │   ├── Makefile
│   │   │   ├── moc_cr_margins_prop.cpp
│   │   │   └── moc_cr_margins_prop.o
│   │   ├── Makefile
│   │   ├── pe_common.pri
│   │   └── propertyeditor_plugins.pro
│   ├── src.pro
│   ├── thirdparty
│   │   ├── Makefile
│   │   ├── propertyeditor
│   │   │   ├── examples
│   │   │   │   ├── CMakeLists.txt
│   │   │   │   ├── COPYING
│   │   │   │   └── example.cpp
│   │   │   ├── lib
│   │   │   │   ├── globals.h
│   │   │   │   ├── lib.pro
│   │   │   │   ├── Makefile
│   │   │   │   ├── moc_propertydelegate.cpp
│   │   │   │   ├── moc_propertydelegate.o
│   │   │   │   ├── moc_propertyeditorcore.cpp
│   │   │   │   ├── moc_propertyeditorcore.o
│   │   │   │   ├── moc_propertyeditor.cpp
│   │   │   │   ├── moc_propertyeditor.o
│   │   │   │   ├── moc_propertyinterface.cpp
│   │   │   │   ├── moc_propertyinterface.o
│   │   │   │   ├── moc_propertymodel.cpp
│   │   │   │   ├── moc_propertymodel.o
│   │   │   │   ├── moc_propertyvalidator.cpp
│   │   │   │   ├── moc_propertyvalidator.o
│   │   │   │   ├── object_script.PropertyEditor
│   │   │   │   ├── propertydelegate.cpp
│   │   │   │   ├── propertydelegate.h
│   │   │   │   ├── propertydelegate.o
│   │   │   │   ├── propertyeditorcore.cpp
│   │   │   │   ├── propertyeditorcore.h
│   │   │   │   ├── propertyeditorcore.o
│   │   │   │   ├── propertyeditor.cpp
│   │   │   │   ├── propertyeditor.h
│   │   │   │   ├── propertyeditor.o
│   │   │   │   ├── PropertyEditor_resource.rc
│   │   │   │   ├── PropertyEditor_resource_res.o
│   │   │   │   ├── propertyeditor.ui
│   │   │   │   ├── propertyinterface.cpp
│   │   │   │   ├── propertyinterface.h
│   │   │   │   ├── propertyinterface.o
│   │   │   │   ├── propertymodel.cpp
│   │   │   │   ├── propertymodel.h
│   │   │   │   ├── propertymodel.o
│   │   │   │   ├── propertyvalidator.cpp
│   │   │   │   ├── propertyvalidator.h
│   │   │   │   ├── propertyvalidator.o
│   │   │   │   └── ui_propertyeditor.h
│   │   │   ├── Makefile
│   │   │   ├── plugins
│   │   │   │   ├── bool
│   │   │   │   │   ├── bool.cpp
│   │   │   │   │   ├── bool.h
│   │   │   │   │   ├── bool.o
│   │   │   │   │   ├── bool.pro
│   │   │   │   │   ├── BoolProperty_resource.rc
│   │   │   │   │   ├── BoolProperty_resource_res.o
│   │   │   │   │   ├── bool.qrc
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── false.png
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_bool.cpp
│   │   │   │   │   ├── moc_bool.o
│   │   │   │   │   ├── qrc_bool.cpp
│   │   │   │   │   ├── qrc_bool.o
│   │   │   │   │   └── true.png
│   │   │   │   ├── brush
│   │   │   │   │   ├── brush.cpp
│   │   │   │   │   ├── brush.h
│   │   │   │   │   ├── brush.o
│   │   │   │   │   ├── brush.pro
│   │   │   │   │   ├── BrushProperty_resource.rc
│   │   │   │   │   ├── BrushProperty_resource_res.o
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_brush.cpp
│   │   │   │   │   └── moc_brush.o
│   │   │   │   ├── color
│   │   │   │   │   ├── changecolor.cpp
│   │   │   │   │   ├── changecolor.h
│   │   │   │   │   ├── changecolor.o
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── color.cpp
│   │   │   │   │   ├── color.h
│   │   │   │   │   ├── color.o
│   │   │   │   │   ├── color.pro
│   │   │   │   │   ├── ColorProperty_resource.rc
│   │   │   │   │   ├── ColorProperty_resource_res.o
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_changecolor.cpp
│   │   │   │   │   ├── moc_changecolor.o
│   │   │   │   │   ├── moc_color.cpp
│   │   │   │   │   └── moc_color.o
│   │   │   │   ├── date
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── date.cpp
│   │   │   │   │   ├── date.h
│   │   │   │   │   ├── date.o
│   │   │   │   │   ├── date.pro
│   │   │   │   │   ├── DateProperty_resource.rc
│   │   │   │   │   ├── DateProperty_resource_res.o
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_date.cpp
│   │   │   │   │   └── moc_date.o
│   │   │   │   ├── dateTime
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── datetime.cpp
│   │   │   │   │   ├── datetime.h
│   │   │   │   │   ├── datetime.o
│   │   │   │   │   ├── dateTime.pro
│   │   │   │   │   ├── DateTimeProperty_resource.rc
│   │   │   │   │   ├── DateTimeProperty_resource_res.o
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_datetime.cpp
│   │   │   │   │   └── moc_datetime.o
│   │   │   │   ├── enums
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── enums.cpp
│   │   │   │   │   ├── enums.h
│   │   │   │   │   ├── enums.o
│   │   │   │   │   ├── enums.pro
│   │   │   │   │   ├── EnumsProperty_resource.rc
│   │   │   │   │   ├── EnumsProperty_resource_res.o
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_enums.cpp
│   │   │   │   │   └── moc_enums.o
│   │   │   │   ├── flags
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── flags.cpp
│   │   │   │   │   ├── flags.h
│   │   │   │   │   ├── flagslist.cpp
│   │   │   │   │   ├── flagslist.h
│   │   │   │   │   ├── flagslist.o
│   │   │   │   │   ├── flagsList.ui
│   │   │   │   │   ├── flags.o
│   │   │   │   │   ├── flags.pro
│   │   │   │   │   ├── FlagsProperty_resource.rc
│   │   │   │   │   ├── FlagsProperty_resource_res.o
│   │   │   │   │   ├── libFlagsProperty.so.1.0.0
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_flags.cpp
│   │   │   │   │   ├── moc_flagslist.cpp
│   │   │   │   │   ├── moc_flagslist.o
│   │   │   │   │   ├── moc_flags.o
│   │   │   │   │   └── ui_flagsList.h
│   │   │   │   ├── font
│   │   │   │   │   ├── changefont.cpp
│   │   │   │   │   ├── changefont.h
│   │   │   │   │   ├── changefont.o
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── font.cpp
│   │   │   │   │   ├── font.h
│   │   │   │   │   ├── font.o
│   │   │   │   │   ├── font.pro
│   │   │   │   │   ├── FontProperty_resource.rc
│   │   │   │   │   ├── FontProperty_resource_res.o
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_changefont.cpp
│   │   │   │   │   ├── moc_changefont.o
│   │   │   │   │   ├── moc_font.cpp
│   │   │   │   │   └── moc_font.o
│   │   │   │   ├── gradient
│   │   │   │   │   ├── changegradient.cpp
│   │   │   │   │   ├── changegradient.h
│   │   │   │   │   ├── changegradient.o
│   │   │   │   │   ├── creategradientdialog.cpp
│   │   │   │   │   ├── creategradientdialog.h
│   │   │   │   │   ├── creategradientdialog.o
│   │   │   │   │   ├── creategradientdialog.ui
│   │   │   │   │   ├── gradient.cpp
│   │   │   │   │   ├── gradient.h
│   │   │   │   │   ├── gradient.o
│   │   │   │   │   ├── gradient.pro
│   │   │   │   │   ├── GradientProperty_resource.rc
│   │   │   │   │   ├── GradientProperty_resource_res.o
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_changegradient.cpp
│   │   │   │   │   ├── moc_changegradient.o
│   │   │   │   │   ├── moc_creategradientdialog.cpp
│   │   │   │   │   ├── moc_creategradientdialog.o
│   │   │   │   │   ├── moc_gradient.cpp
│   │   │   │   │   ├── moc_gradient.o
│   │   │   │   │   └── ui_creategradientdialog.h
│   │   │   │   ├── image
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── image.cpp
│   │   │   │   │   ├── imagedialog.cpp
│   │   │   │   │   ├── imagedialog.h
│   │   │   │   │   ├── imagedialog.o
│   │   │   │   │   ├── imageDialog.ui
│   │   │   │   │   ├── image.h
│   │   │   │   │   ├── image.o
│   │   │   │   │   ├── image.pro
│   │   │   │   │   ├── ImageProperty_resource.rc
│   │   │   │   │   ├── ImageProperty_resource_res.o
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_image.cpp
│   │   │   │   │   ├── moc_imagedialog.cpp
│   │   │   │   │   ├── moc_imagedialog.o
│   │   │   │   │   ├── moc_image.o
│   │   │   │   │   └── ui_imageDialog.h
│   │   │   │   ├── Makefile
│   │   │   │   ├── margins
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── margins.cpp
│   │   │   │   │   ├── margins.h
│   │   │   │   │   └── margins.pro
│   │   │   │   ├── metricfont
│   │   │   │   │   ├── changefont.cpp
│   │   │   │   │   ├── changefont.h
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── font.cpp
│   │   │   │   │   ├── font.h
│   │   │   │   │   ├── metricfontdialog.cpp
│   │   │   │   │   ├── metricfontdialog.h
│   │   │   │   │   ├── metricfontdialog.ui
│   │   │   │   │   └── metricfont.pro
│   │   │   │   ├── numbers
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_numbers.cpp
│   │   │   │   │   ├── moc_numbers.o
│   │   │   │   │   ├── numbers.cpp
│   │   │   │   │   ├── numbers.h
│   │   │   │   │   ├── numbers.o
│   │   │   │   │   ├── numbers.pro
│   │   │   │   │   ├── NumbersProperty_resource.rc
│   │   │   │   │   └── NumbersProperty_resource_res.o
│   │   │   │   ├── pen
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_pen.cpp
│   │   │   │   │   ├── moc_pen.o
│   │   │   │   │   ├── pen.cpp
│   │   │   │   │   ├── pen.h
│   │   │   │   │   ├── pen.o
│   │   │   │   │   ├── pen.pro
│   │   │   │   │   ├── PenProperty_resource.rc
│   │   │   │   │   └── PenProperty_resource_res.o
│   │   │   │   ├── pixmap
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_pixmap.cpp
│   │   │   │   │   ├── moc_pixmapdialog.cpp
│   │   │   │   │   ├── moc_pixmapdialog.o
│   │   │   │   │   ├── moc_pixmap.o
│   │   │   │   │   ├── pixmap.cpp
│   │   │   │   │   ├── pixmapdialog.cpp
│   │   │   │   │   ├── pixmapdialog.h
│   │   │   │   │   ├── pixmapdialog.o
│   │   │   │   │   ├── pixmapDialog.ui
│   │   │   │   │   ├── pixmap.h
│   │   │   │   │   ├── pixmap.o
│   │   │   │   │   ├── pixmap.pro
│   │   │   │   │   ├── PixmapProperty_resource.rc
│   │   │   │   │   ├── PixmapProperty_resource_res.o
│   │   │   │   │   └── ui_pixmapDialog.h
│   │   │   │   ├── plugins.pro
│   │   │   │   ├── point
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_point.cpp
│   │   │   │   │   ├── moc_point.o
│   │   │   │   │   ├── point.cpp
│   │   │   │   │   ├── point.h
│   │   │   │   │   ├── point.o
│   │   │   │   │   ├── point.pro
│   │   │   │   │   ├── PointProperty_resource.rc
│   │   │   │   │   └── PointProperty_resource_res.o
│   │   │   │   ├── pointf
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_pointf.cpp
│   │   │   │   │   ├── moc_pointf.o
│   │   │   │   │   ├── pointf.cpp
│   │   │   │   │   ├── pointf.h
│   │   │   │   │   ├── pointf.o
│   │   │   │   │   ├── pointf.pro
│   │   │   │   │   ├── PointFProperty_resource.rc
│   │   │   │   │   └── PointFProperty_resource_res.o
│   │   │   │   ├── property_plugins.pri
│   │   │   │   ├── rect
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_rect.cpp
│   │   │   │   │   ├── moc_rect.o
│   │   │   │   │   ├── rect.cpp
│   │   │   │   │   ├── rect.h
│   │   │   │   │   ├── rect.o
│   │   │   │   │   ├── rect.pro
│   │   │   │   │   ├── RectProperty_resource.rc
│   │   │   │   │   └── RectProperty_resource_res.o
│   │   │   │   ├── rectf
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_rectf.cpp
│   │   │   │   │   ├── moc_rectf.o
│   │   │   │   │   ├── rectf.cpp
│   │   │   │   │   ├── rectf.h
│   │   │   │   │   ├── rectf.o
│   │   │   │   │   ├── rectf.pro
│   │   │   │   │   ├── RectFProperty_resource.rc
│   │   │   │   │   └── RectFProperty_resource_res.o
│   │   │   │   ├── size
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_size.cpp
│   │   │   │   │   ├── moc_size.o
│   │   │   │   │   ├── size.cpp
│   │   │   │   │   ├── size.h
│   │   │   │   │   ├── size.o
│   │   │   │   │   ├── size.pro
│   │   │   │   │   ├── SizeProperty_resource.rc
│   │   │   │   │   └── SizeProperty_resource_res.o
│   │   │   │   ├── sizef
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_sizef.cpp
│   │   │   │   │   ├── moc_sizef.o
│   │   │   │   │   ├── sizef.cpp
│   │   │   │   │   ├── sizef.h
│   │   │   │   │   ├── sizef.o
│   │   │   │   │   ├── sizef.pro
│   │   │   │   │   ├── SizeFProperty_resource.rc
│   │   │   │   │   └── SizeFProperty_resource_res.o
│   │   │   │   ├── stringlist
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── down.png
│   │   │   │   │   │   ├── minus.png
│   │   │   │   │   │   ├── plus.png
│   │   │   │   │   │   └── up.png
│   │   │   │   │   ├── LGPL_EXCEPTION.txt
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_stringlist.cpp
│   │   │   │   │   ├── moc_stringlisteditor.cpp
│   │   │   │   │   ├── moc_stringlisteditor.o
│   │   │   │   │   ├── moc_stringlist.o
│   │   │   │   │   ├── qrc_stringlist.cpp
│   │   │   │   │   ├── qrc_stringlist.o
│   │   │   │   │   ├── stringlist.cpp
│   │   │   │   │   ├── stringlisteditor.cpp
│   │   │   │   │   ├── stringlisteditor.h
│   │   │   │   │   ├── stringlisteditor.o
│   │   │   │   │   ├── stringlisteditor.ui
│   │   │   │   │   ├── stringlist.h
│   │   │   │   │   ├── stringlist.o
│   │   │   │   │   ├── stringlist.pro
│   │   │   │   │   ├── StringListProperty_resource.rc
│   │   │   │   │   ├── StringListProperty_resource_res.o
│   │   │   │   │   ├── stringlist.qrc
│   │   │   │   │   └── ui_stringlisteditor.h
│   │   │   │   ├── strings
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_strings.cpp
│   │   │   │   │   ├── moc_strings.o
│   │   │   │   │   ├── strings.cpp
│   │   │   │   │   ├── strings.h
│   │   │   │   │   ├── strings.o
│   │   │   │   │   ├── strings.pro
│   │   │   │   │   ├── StringsProperty_resource.rc
│   │   │   │   │   └── StringsProperty_resource_res.o
│   │   │   │   ├── time
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── COPYING
│   │   │   │   │   ├── COPYING.LESSER
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── moc_timeprop.cpp
│   │   │   │   │   ├── moc_timeprop.o
│   │   │   │   │   ├── time.pro
│   │   │   │   │   ├── timeprop.cpp
│   │   │   │   │   ├── TimeProperty_resource.rc
│   │   │   │   │   ├── TimeProperty_resource_res.o
│   │   │   │   │   ├── timeprop.h
│   │   │   │   │   └── timeprop.o
│   │   │   │   └── unit
│   │   │   │   ├── unit.pro
│   │   │   │   ├── unit_prop.cpp
│   │   │   │   └── unit_prop.h
│   │   │   ├── propertyeditor.pro
│   │   │   ├── propertyeditor_static.h
│   │   │   └── propertyeditor_static.pri
│   │   └── thirdparty.pro
│   └── widgets
│   ├── designer_plugins
│   │   ├── comboboxplugin
│   │   │   ├── comboboxplugin.cpp
│   │   │   ├── comboboxplugin.h
│   │   │   ├── comboboxplugin.pro
│   │   │   ├── comboboxplugin.qrc
│   │   │   └── combobox.png
│   │   ├── designer_plugins.pri
│   │   ├── designer_plugins.pro
│   │   └── objectpreviewplugin
│   │   ├── objectpreviewplugin.cpp
│   │   ├── objectpreviewplugin.h
│   │   ├── objectpreviewplugin.pro
│   │   ├── objectpreviewplugin.qrc
│   │   └── objectpreview.png
│   ├── Makefile
│   ├── widgets
│   │   ├── combobox.cpp
│   │   ├── combobox.h
│   │   ├── combobox.o
│   │   ├── combobox.pri
│   │   ├── CuteReportWidgets_resource.rc
│   │   ├── CuteReportWidgets_resource_res.o
│   │   ├── emptydialog.cpp
│   │   ├── emptydialog.h
│   │   ├── emptydialog.o
│   │   ├── emptydialog.pri
│   │   ├── emptydialog.ui
│   │   ├── exportdialog.cpp
│   │   ├── exportdialog.h
│   │   ├── exportdialog.o
│   │   ├── exportdialog.pri
│   │   ├── exportdialog.ui
│   │   ├── folder-blue.png
│   │   ├── functions_gui.cpp
│   │   ├── functions_gui.h
│   │   ├── functions_gui.o
│   │   ├── images
│   │   │   ├── document-edit.png
│   │   │   ├── document-print.png
│   │   │   ├── export-icon.png
│   │   │   ├── go-first-view.png
│   │   │   ├── go-last-view.png
│   │   │   ├── go-next-view.png
│   │   │   ├── go-previous-view.png
│   │   │   ├── media-playback-start.png
│   │   │   ├── page-simple.png
│   │   │   ├── zoom-1-to-2.png
│   │   │   ├── zoom-fit-best.png
│   │   │   ├── zoom-fit-width.png
│   │   │   ├── zoom-in.png
│   │   │   ├── zoom-original.png
│   │   │   └── zoom-out.png
│   │   ├── Makefile
│   │   ├── moc_combobox.cpp
│   │   ├── moc_combobox.o
│   │   ├── moc_emptydialog.cpp
│   │   ├── moc_emptydialog.o
│   │   ├── moc_exportdialog.cpp
│   │   ├── moc_exportdialog.o
│   │   ├── moc_objectpreview.cpp
│   │   ├── moc_objectpreview.o
│   │   ├── moc_reportpreview.cpp
│   │   ├── moc_reportpreview.o
│   │   ├── moc_stdstoragedialog.cpp
│   │   ├── moc_stdstoragedialog.o
│   │   ├── objectpreview.cpp
│   │   ├── objectpreview.h
│   │   ├── objectpreview.o
│   │   ├── objectpreview.pri
│   │   ├── objectpreview.ui
│   │   ├── object_script.CuteReportWidgets
│   │   ├── qrc_reportpreview.cpp
│   │   ├── qrc_reportpreview.o
│   │   ├── qrc_stdstoragedialog.cpp
│   │   ├── qrc_stdstoragedialog.o
│   │   ├── reportpreview.cpp
│   │   ├── reportprevieweditor.cpp
│   │   ├── reportprevieweditor.h
│   │   ├── reportprevieweditor.o
│   │   ├── reportpreview.h
│   │   ├── reportpreview.o
│   │   ├── reportpreview.pri
│   │   ├── reportpreview.qrc
│   │   ├── reportpreview.ui
│   │   ├── stdstoragedialog.cpp
│   │   ├── stdstoragedialog.h
│   │   ├── stdstoragedialog.o
│   │   ├── stdstoragedialog.pri
│   │   ├── stdstoragedialog.qrc
│   │   ├── stdstoragedialog.ui
│   │   ├── ui_emptydialog.h
│   │   ├── ui_exportdialog.h
│   │   ├── ui_objectpreview.h
│   │   ├── ui_reportpreview.h
│   │   ├── ui_stdstoragedialog.h
│   │   ├── widgets_export.h
│   │   └── widgets.pro
│   ├── widgets.pro
│   └── widgets_thirdparty
│   ├── CuteReportWidgetsThirdparty_resource.rc
│   ├── CuteReportWidgetsThirdparty_resource_res.o
│   ├── fancytabs.cpp
│   ├── fancytabs.h
│   ├── fancytabs.o
│   ├── Makefile
│   ├── moc_fancytabs.cpp
│   ├── moc_fancytabs.o
│   ├── moc_objectinspector.cpp
│   ├── moc_objectinspector.o
│   ├── moc_objectmodel.cpp
│   ├── moc_objectmodel.o
│   ├── moc_qscriptedit_p.cpp
│   ├── moc_qscriptedit_p.o
│   ├── objectinspector.cpp
│   ├── objectinspector.h
│   ├── objectinspector.o
│   ├── objectmodel.cpp
│   ├── objectmodel.h
│   ├── objectmodel.o
│   ├── object_script.CuteReportWidgetsThirdparty
│   ├── qfunctions_p.h
│   ├── qscriptedit.cpp
│   ├── qscriptedit.o
│   ├── qscriptedit_p.h
│   ├── qscriptsyntaxhighlighter.cpp
│   ├── qscriptsyntaxhighlighter.o
│   ├── qscriptsyntaxhighlighter_p.h
│   ├── qt_blurimage.h
│   ├── stylehelper.cpp
│   ├── stylehelper.h
│   ├── stylehelper.o
│   ├── widgets_thirdparty_export.h
│   └── widgets_thirdparty.pro
├── THIRDPARTY-LICENSE-EXARO
├── THIRDPARTY-LICENSE-ICU
├── THIRDPARTY-LICENSE-PROPERTYEDITOR
├── THIRDPARTY-LICENSE-QZINT
├── THIRDPARTY-LICENSE-ZINT
├── zfg1.qtrp
├── zfgdb.qtrp
├── 宗凡高说明.txt
├── 宗说明.docx
└── 官方文档UserManual_1.3_en.pdf

188 directories, 2487 files

标签:

实例下载地址

Qt报表软件介绍cutereport

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

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

网友评论

第 1 楼 glm001 发表于: 2024-10-24 17:49 23
你这个不能用啊,有没有最新版的

支持(0) 盖楼(回复)

第 2 楼 glm001 发表于: 2024-10-24 17:49 25
你这个不能用啊,有没有最新版的

支持(0) 盖楼(回复)

发表评论

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

查看所有2条评论>>

小贴士

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

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

关于好例子网

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

;
报警