├── .cmake.conf ├── .gitmodules ├── .gitreview ├── .tag ├── CMakeLists.txt ├── LICENSES ├── Apache-2.0.txt ├── BSD-3-Clause.txt ├── BSL-1.0.txt ├── CC0-1.0.txt ├── GFDL-1.3-no-invariants-only.txt ├── GPL-2.0-only.txt ├── GPL-3.0-only.txt ├── LGPL-3.0-only.txt ├── LLVM-exception.txt ├── LicenseRef-Qt-Commercial.txt └── Qt-GPL-exception-1.0.txt ├── REUSE.toml ├── cmake └── FindWrapLibClang.cmake ├── coin ├── axivion │ ├── ci_config_linux.json │ └── start_analysis.sh └── module_config.yaml ├── configure.cmake ├── dependencies.yaml ├── dist ├── REUSE.toml ├── changes-5.0.1 ├── changes-5.0.2 ├── changes-5.1.0 ├── changes-5.1.1 ├── changes-5.10.0 ├── changes-5.10.1 ├── changes-5.11.0 ├── changes-5.11.1 ├── changes-5.11.2 ├── changes-5.11.3 ├── changes-5.12.0 ├── changes-5.12.1 ├── changes-5.12.10 ├── changes-5.12.2 ├── changes-5.12.3 ├── changes-5.12.4 ├── changes-5.12.5 ├── changes-5.13.0 ├── changes-5.13.1 ├── changes-5.13.2 ├── changes-5.14.0 ├── changes-5.14.1 ├── changes-5.14.2 ├── changes-5.15.0 ├── changes-5.15.1 ├── changes-5.15.2 ├── changes-5.2.0 ├── changes-5.2.1 ├── changes-5.6.3 ├── changes-5.7.0 ├── changes-5.8.0 ├── changes-5.9.0 ├── changes-5.9.1 ├── changes-5.9.2 ├── changes-5.9.3 ├── changes-5.9.4 ├── changes-5.9.5 ├── changes-5.9.6 └── changes-6.0.0 ├── examples ├── CMakeLists.txt ├── assistant │ ├── CMakeLists.txt │ ├── assistant.pro │ ├── doc │ │ ├── images │ │ │ ├── remotecontrol-example.png │ │ │ ├── simpletextviewer-example.png │ │ │ ├── simpletextviewer-findfiledialog.png │ │ │ └── simpletextviewer-mainwindow.png │ │ └── src │ │ │ ├── remotecontrol.qdoc │ │ │ └── simpletextviewer.qdoc │ ├── remotecontrol │ │ ├── CMakeLists.txt │ │ ├── enter.png │ │ ├── main.cpp │ │ ├── remotecontrol.cpp │ │ ├── remotecontrol.h │ │ ├── remotecontrol.pro │ │ ├── remotecontrol.qrc │ │ └── remotecontrol.ui │ └── simpletextviewer │ │ ├── CMakeLists.txt │ │ ├── assistant.cpp │ │ ├── assistant.h │ │ ├── documentation │ │ ├── about.txt │ │ ├── browse.html │ │ ├── filedialog.html │ │ ├── findfile.html │ │ ├── images │ │ │ ├── browse.png │ │ │ ├── fadedfilemenu.png │ │ │ ├── filedialog.png │ │ │ ├── handbook.png │ │ │ ├── icon.png │ │ │ ├── mainwindow.png │ │ │ ├── open.png │ │ │ └── wildcard.png │ │ ├── index.html │ │ ├── intro.html │ │ ├── openfile.html │ │ ├── simpletextviewer.qch │ │ ├── simpletextviewer.qhc │ │ ├── simpletextviewer.qhcp │ │ ├── simpletextviewer.qhp │ │ └── wildcardmatching.html │ │ ├── findfiledialog.cpp │ │ ├── findfiledialog.h │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── simpletextviewer.pro │ │ ├── textedit.cpp │ │ └── textedit.h ├── designer │ ├── CMakeLists.txt │ ├── README │ ├── calculatorbuilder │ │ ├── CMakeLists.txt │ │ ├── calculatorbuilder.pro │ │ ├── calculatorbuilder.qrc │ │ ├── calculatorform.ui │ │ └── main.cpp │ ├── calculatorform │ │ ├── CMakeLists.txt │ │ ├── calculatorform.cpp │ │ ├── calculatorform.h │ │ ├── calculatorform.pro │ │ ├── calculatorform.ui │ │ └── main.cpp │ ├── calculatorform_mi │ │ ├── CMakeLists.txt │ │ ├── calculatorform.cpp │ │ ├── calculatorform.h │ │ ├── calculatorform.ui │ │ ├── calculatorform_mi.pro │ │ └── main.cpp │ ├── containerextension │ │ ├── CMakeLists.txt │ │ ├── containerextension.pro │ │ ├── multipagewidget.cpp │ │ ├── multipagewidget.h │ │ ├── multipagewidgetcontainerextension.cpp │ │ ├── multipagewidgetcontainerextension.h │ │ ├── multipagewidgetextensionfactory.cpp │ │ ├── multipagewidgetextensionfactory.h │ │ ├── multipagewidgetplugin.cpp │ │ └── multipagewidgetplugin.h │ ├── customwidgetplugin │ │ ├── CMakeLists.txt │ │ ├── analogclock.cpp │ │ ├── analogclock.h │ │ ├── customwidgetplugin.cpp │ │ ├── customwidgetplugin.h │ │ └── customwidgetplugin.pro │ ├── designer.pro │ ├── doc │ │ ├── images │ │ │ ├── calculatorbuilder-example.webp │ │ │ ├── calculatorform-example.webp │ │ │ ├── containerextension-example.webp │ │ │ ├── customwidgetplugin-example.webp │ │ │ ├── taskmenuextension-dialog.webp │ │ │ ├── taskmenuextension-example.webp │ │ │ └── taskmenuextension-menu.webp │ │ ├── snippets │ │ │ ├── doc_src_examples_containerextension.pro │ │ │ ├── doc_src_examples_customwidgetplugin.pro │ │ │ └── doc_src_examples_taskmenuextension.pro │ │ └── src │ │ │ ├── calculatorbuilder.qdoc │ │ │ ├── calculatorform.qdoc │ │ │ ├── calculatorform_mi.qdoc │ │ │ ├── containerextension.qdoc │ │ │ ├── customwidgetplugin.qdoc │ │ │ └── taskmenuextension.qdoc │ └── taskmenuextension │ │ ├── CMakeLists.txt │ │ ├── taskmenuextension.pro │ │ ├── tictactoe.cpp │ │ ├── tictactoe.h │ │ ├── tictactoedialog.cpp │ │ ├── tictactoedialog.h │ │ ├── tictactoeplugin.cpp │ │ ├── tictactoeplugin.h │ │ ├── tictactoetaskmenu.cpp │ │ └── tictactoetaskmenu.h ├── examples.pro ├── help │ ├── CMakeLists.txt │ ├── README │ ├── contextsensitivehelp │ │ ├── CMakeLists.txt │ │ ├── contextsensitivehelp.pro │ │ ├── docs │ │ │ ├── amount.html │ │ │ ├── filter.html │ │ │ ├── plants.html │ │ │ ├── rain.html │ │ │ ├── source.html │ │ │ ├── temperature.html │ │ │ ├── time.html │ │ │ ├── wateringmachine.qch │ │ │ ├── wateringmachine.qhc │ │ │ ├── wateringmachine.qhcp │ │ │ └── wateringmachine.qhp │ │ ├── helpbrowser.cpp │ │ ├── helpbrowser.h │ │ ├── main.cpp │ │ ├── wateringconfigdialog.cpp │ │ ├── wateringconfigdialog.h │ │ └── wateringconfigdialog.ui │ ├── doc │ │ ├── images │ │ │ └── context-sensitive-help-example.png │ │ └── src │ │ │ └── contextsensitivehelp.qdoc │ └── help.pro ├── linguist │ ├── CMakeLists.txt │ ├── README │ ├── arrowpad │ │ ├── CMakeLists.txt │ │ ├── arrowpad.cpp │ │ ├── arrowpad.h │ │ ├── arrowpad.pro │ │ ├── arrowpad_en.ts │ │ ├── arrowpad_fr.ts │ │ ├── arrowpad_nl.ts │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ └── mainwindow.h │ ├── doc │ │ ├── images │ │ │ ├── linguist-arrowpad_en.png │ │ │ ├── linguist-arrowpad_fr.png │ │ │ ├── linguist-arrowpad_nl.png │ │ │ ├── linguist-hellotr_en.png │ │ │ ├── linguist-hellotr_la.png │ │ │ ├── linguist-i18n.png │ │ │ ├── linguist-trollprint_10_en.png │ │ │ ├── linguist-trollprint_10_pt_bad.png │ │ │ ├── linguist-trollprint_10_pt_good.png │ │ │ ├── linguist-trollprint_11_en.png │ │ │ └── linguist-trollprint_11_pt.png │ │ ├── snippets │ │ │ ├── doc_src_examples_arrowpad.cpp │ │ │ ├── doc_src_examples_arrowpad.qdoc │ │ │ ├── doc_src_examples_hellotr.qdoc │ │ │ └── doc_src_examples_trollprint.cpp │ │ └── src │ │ │ ├── arrowpad.qdoc │ │ │ ├── hellotr.qdoc │ │ │ ├── i18n.qdoc │ │ │ └── trollprint.qdoc │ ├── hellotr │ │ ├── CMakeLists.txt │ │ ├── hellotr.pro │ │ ├── hellotr_en.ts │ │ ├── hellotr_la.ts │ │ └── main.cpp │ ├── i18n │ │ ├── CMakeLists.txt │ │ ├── i18n.pro │ │ ├── languagechooser.cpp │ │ ├── languagechooser.h │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ └── translations │ │ │ ├── i18n_ar.ts │ │ │ ├── i18n_cs.ts │ │ │ ├── i18n_de.ts │ │ │ ├── i18n_el.ts │ │ │ ├── i18n_en.ts │ │ │ ├── i18n_eo.ts │ │ │ ├── i18n_fr.ts │ │ │ ├── i18n_it.ts │ │ │ ├── i18n_ja.ts │ │ │ ├── i18n_ko.ts │ │ │ ├── i18n_nb.ts │ │ │ ├── i18n_ru.ts │ │ │ ├── i18n_sv.ts │ │ │ └── i18n_zh.ts │ ├── linguist.pro │ └── trollprint │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── printpanel.cpp │ │ ├── printpanel.h │ │ ├── trollprint.pro │ │ ├── trollprint_en.ts │ │ └── trollprint_pt.ts └── uitools │ ├── CMakeLists.txt │ ├── doc │ ├── images │ │ └── textfinder-example-userinterface.webp │ └── src │ │ └── textfinder.qdoc │ ├── textfinder │ ├── CMakeLists.txt │ ├── forms │ │ ├── input.txt │ │ └── textfinder.ui │ ├── main.cpp │ ├── textfinder.cpp │ ├── textfinder.h │ ├── textfinder.pro │ └── textfinder.qrc │ └── uitools.pro ├── licenseRule.json ├── qt_cmdline.cmake ├── src ├── CMakeLists.txt ├── assistant │ ├── CMakeLists.txt │ ├── assistant │ │ ├── CMakeLists.txt │ │ ├── Info_mac.plist │ │ ├── aboutdialog.cpp │ │ ├── aboutdialog.h │ │ ├── assistant.desktop │ │ ├── assistant.icns │ │ ├── assistant.ico │ │ ├── assistant.metainfo.xml │ │ ├── bookmarkdialog.cpp │ │ ├── bookmarkdialog.h │ │ ├── bookmarkdialog.ui │ │ ├── bookmarkfiltermodel.cpp │ │ ├── bookmarkfiltermodel.h │ │ ├── bookmarkitem.cpp │ │ ├── bookmarkitem.h │ │ ├── bookmarkmanager.cpp │ │ ├── bookmarkmanager.h │ │ ├── bookmarkmanagerwidget.cpp │ │ ├── bookmarkmanagerwidget.h │ │ ├── bookmarkmanagerwidget.ui │ │ ├── bookmarkmodel.cpp │ │ ├── bookmarkmodel.h │ │ ├── bookmarkwidget.ui │ │ ├── centralwidget.cpp │ │ ├── centralwidget.h │ │ ├── cmdlineparser.cpp │ │ ├── cmdlineparser.h │ │ ├── contentwindow.cpp │ │ ├── contentwindow.h │ │ ├── doc │ │ │ ├── images │ │ │ │ ├── assistant-assistant.png │ │ │ │ ├── assistant-bookmarks.png │ │ │ │ ├── assistant-dockwidgets.png │ │ │ │ ├── assistant-examples.png │ │ │ │ ├── assistant-index.png │ │ │ │ ├── assistant-preferences-documentation.png │ │ │ │ ├── assistant-preferences-filters.png │ │ │ │ ├── assistant-preferences-fonts.png │ │ │ │ ├── assistant-preferences-options.png │ │ │ │ └── assistant-search.png │ │ │ ├── internal │ │ │ │ ├── README │ │ │ │ ├── assistant.qdocconf │ │ │ │ └── internal.pro │ │ │ ├── qtassistant.qdocconf │ │ │ ├── snippets │ │ │ │ └── doc_src_assistant-manual.qdoc │ │ │ └── src │ │ │ │ ├── assistant-example.qdoc │ │ │ │ ├── assistant-manual.qdoc │ │ │ │ └── assistant-quick-guide.qdoc │ │ ├── findwidget.cpp │ │ ├── findwidget.h │ │ ├── globalactions.cpp │ │ ├── globalactions.h │ │ ├── helpbrowsersupport.cpp │ │ ├── helpbrowsersupport.h │ │ ├── helpdocsettings.cpp │ │ ├── helpdocsettings.h │ │ ├── helpdocsettingswidget.cpp │ │ ├── helpdocsettingswidget.h │ │ ├── helpdocsettingswidget.ui │ │ ├── helpenginewrapper.cpp │ │ ├── helpenginewrapper.h │ │ ├── helpviewer.cpp │ │ ├── helpviewer.h │ │ ├── helpviewerimpl.cpp │ │ ├── helpviewerimpl.h │ │ ├── helpviewerimpl_p.h │ │ ├── helpviewerimpl_qtb.cpp │ │ ├── helpviewerimpl_qwv.cpp │ │ ├── images │ │ │ ├── assistant-128.png │ │ │ ├── assistant.png │ │ │ ├── bookmark.png │ │ │ ├── closebutton.png │ │ │ ├── darkclosebutton.png │ │ │ ├── mac │ │ │ │ ├── book.png │ │ │ │ ├── closetab.png │ │ │ │ ├── editcopy.png │ │ │ │ ├── find.png │ │ │ │ ├── home.png │ │ │ │ ├── next.png │ │ │ │ ├── previous.png │ │ │ │ ├── print.png │ │ │ │ ├── resetzoom.png │ │ │ │ ├── synctoc.png │ │ │ │ ├── zoomin.png │ │ │ │ └── zoomout.png │ │ │ ├── win │ │ │ │ ├── book.png │ │ │ │ ├── closetab.png │ │ │ │ ├── editcopy.png │ │ │ │ ├── find.png │ │ │ │ ├── home.png │ │ │ │ ├── next.png │ │ │ │ ├── previous.png │ │ │ │ ├── print.png │ │ │ │ ├── resetzoom.png │ │ │ │ ├── synctoc.png │ │ │ │ ├── zoomin.png │ │ │ │ └── zoomout.png │ │ │ └── wrap.png │ │ ├── indexwindow.cpp │ │ ├── indexwindow.h │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── openpagesmanager.cpp │ │ ├── openpagesmanager.h │ │ ├── openpagesmodel.cpp │ │ ├── openpagesmodel.h │ │ ├── openpagesswitcher.cpp │ │ ├── openpagesswitcher.h │ │ ├── openpageswidget.cpp │ │ ├── openpageswidget.h │ │ ├── preferencesdialog.cpp │ │ ├── preferencesdialog.h │ │ ├── preferencesdialog.ui │ │ ├── qtdocinstaller.cpp │ │ ├── qtdocinstaller.h │ │ ├── remotecontrol.cpp │ │ ├── remotecontrol.h │ │ ├── searchwidget.cpp │ │ ├── searchwidget.h │ │ ├── stdinlistener.cpp │ │ ├── stdinlistener.h │ │ ├── stdinlistener_win.cpp │ │ ├── stdinlistener_win.h │ │ ├── topicchooser.cpp │ │ ├── topicchooser.h │ │ ├── topicchooser.ui │ │ ├── tracer.h │ │ ├── xbelsupport.cpp │ │ └── xbelsupport.h │ ├── help │ │ ├── CMakeLists.txt │ │ ├── doc │ │ │ ├── qthelp.qdocconf │ │ │ ├── snippets │ │ │ │ ├── doc_src_qthelp.cpp │ │ │ │ └── doc_src_qthelp.qdoc │ │ │ └── src │ │ │ │ ├── qthelp-examples.qdoc │ │ │ │ ├── qthelp-index.qdoc │ │ │ │ ├── qthelp-module.qdoc │ │ │ │ ├── qthelp-toc.qdoc │ │ │ │ └── qthelp.qdoc │ │ ├── images │ │ │ ├── 1leftarrow.png │ │ │ ├── 1rightarrow.png │ │ │ ├── 3leftarrow.png │ │ │ ├── 3rightarrow.png │ │ │ ├── mac │ │ │ │ ├── minus.png │ │ │ │ └── plus.png │ │ │ └── win │ │ │ │ ├── minus.png │ │ │ │ └── plus.png │ │ ├── qcompressedhelpinfo.cpp │ │ ├── qcompressedhelpinfo.h │ │ ├── qfilternamedialog.cpp │ │ ├── qfilternamedialog.ui │ │ ├── qfilternamedialog_p.h │ │ ├── qhelp_global.cpp │ │ ├── qhelp_global.h │ │ ├── qhelpcollectionhandler.cpp │ │ ├── qhelpcollectionhandler_p.h │ │ ├── qhelpcontentitem.cpp │ │ ├── qhelpcontentitem.h │ │ ├── qhelpcontentwidget.cpp │ │ ├── qhelpcontentwidget.h │ │ ├── qhelpdbreader.cpp │ │ ├── qhelpdbreader_p.h │ │ ├── qhelpengine.cpp │ │ ├── qhelpengine.h │ │ ├── qhelpenginecore.cpp │ │ ├── qhelpenginecore.h │ │ ├── qhelpfilterdata.cpp │ │ ├── qhelpfilterdata.h │ │ ├── qhelpfilterengine.cpp │ │ ├── qhelpfilterengine.h │ │ ├── qhelpfiltersettingswidget.cpp │ │ ├── qhelpfiltersettingswidget.h │ │ ├── qhelpfiltersettingswidget.ui │ │ ├── qhelpindexwidget.cpp │ │ ├── qhelpindexwidget.h │ │ ├── qhelplink.cpp │ │ ├── qhelplink.h │ │ ├── qhelpsearchengine.cpp │ │ ├── qhelpsearchengine.h │ │ ├── qhelpsearchenginecore.cpp │ │ ├── qhelpsearchenginecore.h │ │ ├── qhelpsearchindexreader.cpp │ │ ├── qhelpsearchindexreader_p.h │ │ ├── qhelpsearchindexwriter.cpp │ │ ├── qhelpsearchindexwriter_p.h │ │ ├── qhelpsearchquerywidget.cpp │ │ ├── qhelpsearchquerywidget.h │ │ ├── qhelpsearchresult.cpp │ │ ├── qhelpsearchresult.h │ │ ├── qhelpsearchresultwidget.cpp │ │ ├── qhelpsearchresultwidget.h │ │ ├── qoptionswidget.cpp │ │ └── qoptionswidget_p.h │ ├── plugins │ │ ├── CMakeLists.txt │ │ └── help │ │ │ ├── CMakeLists.txt │ │ │ ├── qhelpengineplugin.cpp │ │ │ └── qhelpengineplugin.h │ ├── qhelpgenerator │ │ ├── CMakeLists.txt │ │ ├── collectionconfigreader.cpp │ │ ├── collectionconfigreader.h │ │ ├── helpgenerator.cpp │ │ ├── helpgenerator.h │ │ ├── main.cpp │ │ ├── qhelpdatainterface.cpp │ │ ├── qhelpdatainterface_p.h │ │ ├── qhelpprojectdata.cpp │ │ └── qhelpprojectdata_p.h │ └── shared │ │ ├── collectionconfiguration.cpp │ │ └── collectionconfiguration.h ├── designer │ ├── CMakeLists.txt │ ├── data │ │ ├── README │ │ ├── generate_header.xsl │ │ ├── generate_impl.xsl │ │ ├── generate_shared.xsl │ │ ├── generate_ui.py │ │ ├── ui3.xsd │ │ └── ui4.xsd │ └── src │ │ ├── CMakeLists.txt │ │ ├── components │ │ ├── CMakeLists.txt │ │ ├── buddyeditor │ │ │ ├── buddyeditor.cpp │ │ │ ├── buddyeditor.h │ │ │ ├── buddyeditor.json │ │ │ ├── buddyeditor_global.h │ │ │ ├── buddyeditor_plugin.cpp │ │ │ ├── buddyeditor_plugin.h │ │ │ ├── buddyeditor_tool.cpp │ │ │ └── buddyeditor_tool.h │ │ ├── formeditor │ │ │ ├── default_actionprovider.cpp │ │ │ ├── default_actionprovider.h │ │ │ ├── default_container.cpp │ │ │ ├── default_container.h │ │ │ ├── default_layoutdecoration.cpp │ │ │ ├── default_layoutdecoration.h │ │ │ ├── defaultbrushes.xml │ │ │ ├── deviceprofiledialog.cpp │ │ │ ├── deviceprofiledialog.h │ │ │ ├── deviceprofiledialog.ui │ │ │ ├── dpi_chooser.cpp │ │ │ ├── dpi_chooser.h │ │ │ ├── embeddedoptionspage.cpp │ │ │ ├── embeddedoptionspage.h │ │ │ ├── formeditor.cpp │ │ │ ├── formeditor.h │ │ │ ├── formeditor_global.h │ │ │ ├── formeditor_optionspage.cpp │ │ │ ├── formeditor_optionspage.h │ │ │ ├── formwindow.cpp │ │ │ ├── formwindow.h │ │ │ ├── formwindow_dnditem.cpp │ │ │ ├── formwindow_dnditem.h │ │ │ ├── formwindow_widgetstack.cpp │ │ │ ├── formwindow_widgetstack.h │ │ │ ├── formwindowcursor.cpp │ │ │ ├── formwindowcursor.h │ │ │ ├── formwindowmanager.cpp │ │ │ ├── formwindowmanager.h │ │ │ ├── formwindowsettings.cpp │ │ │ ├── formwindowsettings.h │ │ │ ├── formwindowsettings.ui │ │ │ ├── images │ │ │ │ ├── color.png │ │ │ │ ├── configure.png │ │ │ │ ├── downplus.png │ │ │ │ ├── dropdownbutton.png │ │ │ │ ├── edit.png │ │ │ │ ├── editdelete-16.png │ │ │ │ ├── emptyicon.png │ │ │ │ ├── filenew-16.png │ │ │ │ ├── fileopen-16.png │ │ │ │ ├── leveldown.png │ │ │ │ ├── levelup.png │ │ │ │ ├── mac │ │ │ │ │ ├── adjustsize.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── buddytool.png │ │ │ │ │ ├── down.png │ │ │ │ │ ├── editbreaklayout.png │ │ │ │ │ ├── editcopy.png │ │ │ │ │ ├── editcut.png │ │ │ │ │ ├── editdelete.png │ │ │ │ │ ├── editform.png │ │ │ │ │ ├── editgrid.png │ │ │ │ │ ├── edithlayout.png │ │ │ │ │ ├── edithlayoutsplit.png │ │ │ │ │ ├── editlower.png │ │ │ │ │ ├── editpaste.png │ │ │ │ │ ├── editraise.png │ │ │ │ │ ├── editvlayout.png │ │ │ │ │ ├── editvlayoutsplit.png │ │ │ │ │ ├── filenew.png │ │ │ │ │ ├── fileopen.png │ │ │ │ │ ├── filesave.png │ │ │ │ │ ├── forward.png │ │ │ │ │ ├── insertimage.png │ │ │ │ │ ├── minus.png │ │ │ │ │ ├── plus.png │ │ │ │ │ ├── redo.png │ │ │ │ │ ├── resetproperty.png │ │ │ │ │ ├── signalslottool.png │ │ │ │ │ ├── simplifyrichtext.png │ │ │ │ │ ├── tabordertool.png │ │ │ │ │ ├── textanchor.png │ │ │ │ │ ├── textbold.png │ │ │ │ │ ├── textcenter.png │ │ │ │ │ ├── textitalic.png │ │ │ │ │ ├── textjustify.png │ │ │ │ │ ├── textleft.png │ │ │ │ │ ├── textright.png │ │ │ │ │ ├── textsubscript.png │ │ │ │ │ ├── textsuperscript.png │ │ │ │ │ ├── textunder.png │ │ │ │ │ ├── undo.png │ │ │ │ │ ├── up.png │ │ │ │ │ └── widgettool.png │ │ │ │ ├── minus-16.png │ │ │ │ ├── prefix-add.png │ │ │ │ ├── qtlogo128x128.png │ │ │ │ ├── qtlogo16x16.png │ │ │ │ ├── qtlogo24x24.png │ │ │ │ ├── qtlogo32x32.png │ │ │ │ ├── qtlogo64x64.png │ │ │ │ ├── reload.png │ │ │ │ ├── resetproperty.png │ │ │ │ ├── righttoleft.png │ │ │ │ ├── sort.png │ │ │ │ ├── submenu.png │ │ │ │ ├── widgets │ │ │ │ │ ├── calendarwidget.png │ │ │ │ │ ├── checkbox.png │ │ │ │ │ ├── columnview.png │ │ │ │ │ ├── combobox.png │ │ │ │ │ ├── commandlinkbutton.png │ │ │ │ │ ├── dateedit.png │ │ │ │ │ ├── datetimeedit.png │ │ │ │ │ ├── dial.png │ │ │ │ │ ├── dialogbuttonbox.png │ │ │ │ │ ├── dockwidget.png │ │ │ │ │ ├── doublespinbox.png │ │ │ │ │ ├── fontcombobox.png │ │ │ │ │ ├── frame.png │ │ │ │ │ ├── graphicsview.png │ │ │ │ │ ├── groupbox.png │ │ │ │ │ ├── hscrollbar.png │ │ │ │ │ ├── hslider.png │ │ │ │ │ ├── label.png │ │ │ │ │ ├── lcdnumber.png │ │ │ │ │ ├── line.png │ │ │ │ │ ├── lineedit.png │ │ │ │ │ ├── listbox.png │ │ │ │ │ ├── listview.png │ │ │ │ │ ├── mdiarea.png │ │ │ │ │ ├── plaintextedit.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── pushbutton.png │ │ │ │ │ ├── radiobutton.png │ │ │ │ │ ├── scrollarea.png │ │ │ │ │ ├── spacer.png │ │ │ │ │ ├── spinbox.png │ │ │ │ │ ├── table.png │ │ │ │ │ ├── tabwidget.png │ │ │ │ │ ├── textedit.png │ │ │ │ │ ├── timeedit.png │ │ │ │ │ ├── toolbox.png │ │ │ │ │ ├── toolbutton.png │ │ │ │ │ ├── vline.png │ │ │ │ │ ├── vscrollbar.png │ │ │ │ │ ├── vslider.png │ │ │ │ │ ├── vspacer.png │ │ │ │ │ ├── widget.png │ │ │ │ │ └── widgetstack.png │ │ │ │ └── win │ │ │ │ │ ├── adjustsize.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── buddytool.png │ │ │ │ │ ├── down.png │ │ │ │ │ ├── editbreaklayout.png │ │ │ │ │ ├── editcopy.png │ │ │ │ │ ├── editcut.png │ │ │ │ │ ├── editdelete.png │ │ │ │ │ ├── editform.png │ │ │ │ │ ├── editgrid.png │ │ │ │ │ ├── edithlayout.png │ │ │ │ │ ├── edithlayoutsplit.png │ │ │ │ │ ├── editlower.png │ │ │ │ │ ├── editpaste.png │ │ │ │ │ ├── editraise.png │ │ │ │ │ ├── editvlayout.png │ │ │ │ │ ├── editvlayoutsplit.png │ │ │ │ │ ├── filenew.png │ │ │ │ │ ├── fileopen.png │ │ │ │ │ ├── filesave.png │ │ │ │ │ ├── forward.png │ │ │ │ │ ├── insertimage.png │ │ │ │ │ ├── minus.png │ │ │ │ │ ├── plus.png │ │ │ │ │ ├── redo.png │ │ │ │ │ ├── signalslottool.png │ │ │ │ │ ├── simplifyrichtext.png │ │ │ │ │ ├── tabordertool.png │ │ │ │ │ ├── textanchor.png │ │ │ │ │ ├── textbold.png │ │ │ │ │ ├── textcenter.png │ │ │ │ │ ├── textitalic.png │ │ │ │ │ ├── textjustify.png │ │ │ │ │ ├── textleft.png │ │ │ │ │ ├── textright.png │ │ │ │ │ ├── textsubscript.png │ │ │ │ │ ├── textsuperscript.png │ │ │ │ │ ├── textunder.png │ │ │ │ │ ├── undo.png │ │ │ │ │ ├── up.png │ │ │ │ │ └── widgettool.png │ │ │ ├── itemview_propertysheet.cpp │ │ │ ├── itemview_propertysheet.h │ │ │ ├── layout_propertysheet.cpp │ │ │ ├── layout_propertysheet.h │ │ │ ├── line_propertysheet.cpp │ │ │ ├── line_propertysheet.h │ │ │ ├── previewactiongroup.cpp │ │ │ ├── previewactiongroup.h │ │ │ ├── qdesigner_resource.cpp │ │ │ ├── qdesigner_resource.h │ │ │ ├── qlayoutwidget_propertysheet.cpp │ │ │ ├── qlayoutwidget_propertysheet.h │ │ │ ├── qmainwindow_container.cpp │ │ │ ├── qmainwindow_container.h │ │ │ ├── qmdiarea_container.cpp │ │ │ ├── qmdiarea_container.h │ │ │ ├── qwizard_container.cpp │ │ │ ├── qwizard_container.h │ │ │ ├── spacer_propertysheet.cpp │ │ │ ├── spacer_propertysheet.h │ │ │ ├── templateoptionspage.cpp │ │ │ ├── templateoptionspage.h │ │ │ ├── templateoptionspage.ui │ │ │ ├── tool_widgeteditor.cpp │ │ │ ├── tool_widgeteditor.h │ │ │ ├── widgetselection.cpp │ │ │ └── widgetselection.h │ │ ├── lib │ │ │ ├── CMakeLists.txt │ │ │ ├── lib_pch.h │ │ │ └── qdesigner_components.cpp │ │ ├── objectinspector │ │ │ ├── objectinspector.cpp │ │ │ ├── objectinspector.h │ │ │ ├── objectinspector_global.h │ │ │ ├── objectinspectormodel.cpp │ │ │ └── objectinspectormodel_p.h │ │ ├── propertyeditor │ │ │ ├── brushpropertymanager.cpp │ │ │ ├── brushpropertymanager.h │ │ │ ├── designerpropertymanager.cpp │ │ │ ├── designerpropertymanager.h │ │ │ ├── fontmapping.xml │ │ │ ├── fontpropertymanager.cpp │ │ │ ├── fontpropertymanager.h │ │ │ ├── newdynamicpropertydialog.cpp │ │ │ ├── newdynamicpropertydialog.h │ │ │ ├── newdynamicpropertydialog.ui │ │ │ ├── paletteeditor.cpp │ │ │ ├── paletteeditor.h │ │ │ ├── paletteeditor.ui │ │ │ ├── paletteeditorbutton.cpp │ │ │ ├── paletteeditorbutton.h │ │ │ ├── pixmapeditor.cpp │ │ │ ├── pixmapeditor.h │ │ │ ├── previewframe.cpp │ │ │ ├── previewframe.h │ │ │ ├── previewwidget.cpp │ │ │ ├── previewwidget.h │ │ │ ├── previewwidget.ui │ │ │ ├── propertyeditor.cpp │ │ │ ├── propertyeditor.h │ │ │ ├── propertyeditor_global.h │ │ │ ├── qlonglongvalidator.cpp │ │ │ ├── qlonglongvalidator.h │ │ │ ├── resetdecorator.cpp │ │ │ ├── resetdecorator.h │ │ │ ├── stringlisteditor.cpp │ │ │ ├── stringlisteditor.h │ │ │ ├── stringlisteditor.ui │ │ │ ├── stringlisteditorbutton.cpp │ │ │ ├── stringlisteditorbutton.h │ │ │ ├── texteditor.cpp │ │ │ └── texteditor.h │ │ ├── signalsloteditor │ │ │ ├── connectdialog.cpp │ │ │ ├── connectdialog.ui │ │ │ ├── connectdialog_p.h │ │ │ ├── signalslot_utils.cpp │ │ │ ├── signalslot_utils_p.h │ │ │ ├── signalsloteditor.cpp │ │ │ ├── signalsloteditor.h │ │ │ ├── signalsloteditor.json │ │ │ ├── signalsloteditor_global.h │ │ │ ├── signalsloteditor_p.h │ │ │ ├── signalsloteditor_plugin.cpp │ │ │ ├── signalsloteditor_plugin.h │ │ │ ├── signalsloteditor_tool.cpp │ │ │ ├── signalsloteditor_tool.h │ │ │ ├── signalsloteditorwindow.cpp │ │ │ └── signalsloteditorwindow.h │ │ ├── tabordereditor │ │ │ ├── tabordereditor.cpp │ │ │ ├── tabordereditor.h │ │ │ ├── tabordereditor.json │ │ │ ├── tabordereditor_global.h │ │ │ ├── tabordereditor_plugin.cpp │ │ │ ├── tabordereditor_plugin.h │ │ │ ├── tabordereditor_tool.cpp │ │ │ └── tabordereditor_tool.h │ │ ├── taskmenu │ │ │ ├── button_taskmenu.cpp │ │ │ ├── button_taskmenu.h │ │ │ ├── combobox_taskmenu.cpp │ │ │ ├── combobox_taskmenu.h │ │ │ ├── containerwidget_taskmenu.cpp │ │ │ ├── containerwidget_taskmenu.h │ │ │ ├── groupbox_taskmenu.cpp │ │ │ ├── groupbox_taskmenu.h │ │ │ ├── inplace_editor.cpp │ │ │ ├── inplace_editor.h │ │ │ ├── inplace_widget_helper.cpp │ │ │ ├── inplace_widget_helper.h │ │ │ ├── itemlisteditor.cpp │ │ │ ├── itemlisteditor.h │ │ │ ├── itemlisteditor.ui │ │ │ ├── label_taskmenu.cpp │ │ │ ├── label_taskmenu.h │ │ │ ├── layouttaskmenu.cpp │ │ │ ├── layouttaskmenu.h │ │ │ ├── lineedit_taskmenu.cpp │ │ │ ├── lineedit_taskmenu.h │ │ │ ├── listwidget_taskmenu.cpp │ │ │ ├── listwidget_taskmenu.h │ │ │ ├── listwidgeteditor.cpp │ │ │ ├── listwidgeteditor.h │ │ │ ├── menutaskmenu.cpp │ │ │ ├── menutaskmenu.h │ │ │ ├── tablewidget_taskmenu.cpp │ │ │ ├── tablewidget_taskmenu.h │ │ │ ├── tablewidgeteditor.cpp │ │ │ ├── tablewidgeteditor.h │ │ │ ├── tablewidgeteditor.ui │ │ │ ├── taskmenu_component.cpp │ │ │ ├── taskmenu_component.h │ │ │ ├── taskmenu_global.h │ │ │ ├── textedit_taskmenu.cpp │ │ │ ├── textedit_taskmenu.h │ │ │ ├── toolbar_taskmenu.cpp │ │ │ ├── toolbar_taskmenu.h │ │ │ ├── treewidget_taskmenu.cpp │ │ │ ├── treewidget_taskmenu.h │ │ │ ├── treewidgeteditor.cpp │ │ │ ├── treewidgeteditor.h │ │ │ └── treewidgeteditor.ui │ │ └── widgetbox │ │ │ ├── widgetbox.cpp │ │ │ ├── widgetbox.h │ │ │ ├── widgetbox.xml │ │ │ ├── widgetbox_dnditem.cpp │ │ │ ├── widgetbox_dnditem.h │ │ │ ├── widgetbox_global.h │ │ │ ├── widgetboxcategorylistview.cpp │ │ │ ├── widgetboxcategorylistview.h │ │ │ ├── widgetboxtreewidget.cpp │ │ │ └── widgetboxtreewidget.h │ │ ├── designer │ │ ├── CMakeLists.txt │ │ ├── Info_mac.plist │ │ ├── appfontdialog.cpp │ │ ├── appfontdialog.h │ │ ├── assistantclient.cpp │ │ ├── assistantclient.h │ │ ├── designer.desktop │ │ ├── designer.icns │ │ ├── designer.ico │ │ ├── designer.metainfo.xml │ │ ├── designer_enums.h │ │ ├── doc │ │ │ ├── images │ │ │ │ ├── addressbook-tutorial-part3-labeled-layout.png │ │ │ │ ├── designer-action-editor.png │ │ │ │ ├── designer-add-custom-toolbar.png │ │ │ │ ├── designer-add-files-button.png │ │ │ │ ├── designer-add-resource-entry-button.png │ │ │ │ ├── designer-adding-dockwidget.png │ │ │ │ ├── designer-adding-dynamic-property.png │ │ │ │ ├── designer-adding-menu-action.png │ │ │ │ ├── designer-adding-toolbar-action.png │ │ │ │ ├── designer-buddy-making.png │ │ │ │ ├── designer-buddy-mode.png │ │ │ │ ├── designer-buddy-tool.png │ │ │ │ ├── designer-choosing-form.png │ │ │ │ ├── designer-code-viewer.png │ │ │ │ ├── designer-connection-dialog.png │ │ │ │ ├── designer-connection-editing.png │ │ │ │ ├── designer-connection-editor.png │ │ │ │ ├── designer-connection-highlight.png │ │ │ │ ├── designer-connection-making.png │ │ │ │ ├── designer-connection-mode.png │ │ │ │ ├── designer-connection-to-form.png │ │ │ │ ├── designer-connection-tool.png │ │ │ │ ├── designer-containers-dockwidget.png │ │ │ │ ├── designer-containers-frame.png │ │ │ │ ├── designer-containers-groupbox.png │ │ │ │ ├── designer-containers-stackedwidget.png │ │ │ │ ├── designer-containers-tabwidget.png │ │ │ │ ├── designer-containers-toolbox.png │ │ │ │ ├── designer-creating-dynamic-property.png │ │ │ │ ├── designer-creating-menu-entry1.png │ │ │ │ ├── designer-creating-menu-entry2.png │ │ │ │ ├── designer-creating-menu-entry3.png │ │ │ │ ├── designer-creating-menu-entry4.png │ │ │ │ ├── designer-creating-menu.png │ │ │ │ ├── designer-creating-menu1.png │ │ │ │ ├── designer-creating-menu2.png │ │ │ │ ├── designer-creating-menu3.png │ │ │ │ ├── designer-creating-menu4.png │ │ │ │ ├── designer-creating-menubar.png │ │ │ │ ├── designer-creating-toolbar.png │ │ │ │ ├── designer-custom-widget-box.png │ │ │ │ ├── designer-customize-toolbar.png │ │ │ │ ├── designer-dialog-final.png │ │ │ │ ├── designer-dialog-initial.png │ │ │ │ ├── designer-dialog-layout.png │ │ │ │ ├── designer-dialog-preview.png │ │ │ │ ├── designer-disambiguation.png │ │ │ │ ├── designer-dragging-onto-form.png │ │ │ │ ├── designer-edit-resource.png │ │ │ │ ├── designer-edit-resources-button.png │ │ │ │ ├── designer-editing-mode.png │ │ │ │ ├── designer-embedded-preview.png │ │ │ │ ├── designer-english-dialog.png │ │ │ │ ├── designer-examples.png │ │ │ │ ├── designer-file-menu.png │ │ │ │ ├── designer-find-icon.png │ │ │ │ ├── designer-form-layout-cleanlooks.png │ │ │ │ ├── designer-form-layout-macintosh.png │ │ │ │ ├── designer-form-layout-windowsXP.png │ │ │ │ ├── designer-form-layout.png │ │ │ │ ├── designer-form-layoutfunction.png │ │ │ │ ├── designer-form-settings.png │ │ │ │ ├── designer-form-viewcode.png │ │ │ │ ├── designer-french-dialog.png │ │ │ │ ├── designer-getting-started.png │ │ │ │ ├── designer-layout-inserting.png │ │ │ │ ├── designer-main-window.png │ │ │ │ ├── designer-making-connection.png │ │ │ │ ├── designer-manual-containerextension.png │ │ │ │ ├── designer-manual-membersheetextension.png │ │ │ │ ├── designer-manual-propertysheetextension.png │ │ │ │ ├── designer-manual-taskmenuextension.png │ │ │ │ ├── designer-multiple-screenshot.png │ │ │ │ ├── designer-object-inspector.png │ │ │ │ ├── designer-palette-brush-editor.png │ │ │ │ ├── designer-palette-editor.png │ │ │ │ ├── designer-palette-gradient-editor.png │ │ │ │ ├── designer-palette-pattern-editor.png │ │ │ │ ├── designer-preview-device-skin.png │ │ │ │ ├── designer-preview-deviceskin-selection.png │ │ │ │ ├── designer-preview-style-selection.png │ │ │ │ ├── designer-preview-style.png │ │ │ │ ├── designer-preview-stylesheet.png │ │ │ │ ├── designer-promoting-widgets.png │ │ │ │ ├── designer-property-editor-add-dynamic.png │ │ │ │ ├── designer-property-editor-configure.png │ │ │ │ ├── designer-property-editor-link.png │ │ │ │ ├── designer-property-editor-remove-dynamic.png │ │ │ │ ├── designer-property-editor-toolbar.png │ │ │ │ ├── designer-property-editor.png │ │ │ │ ├── designer-reload-resources-button.png │ │ │ │ ├── designer-remove-custom-toolbar.png │ │ │ │ ├── designer-remove-resource-entry-button.png │ │ │ │ ├── designer-removing-toolbar-action.png │ │ │ │ ├── designer-removing-toolbar.png │ │ │ │ ├── designer-resource-browser.png │ │ │ │ ├── designer-resource-selector.png │ │ │ │ ├── designer-resource-tool.png │ │ │ │ ├── designer-resources-adding.png │ │ │ │ ├── designer-resources-editing.png │ │ │ │ ├── designer-resources-empty.png │ │ │ │ ├── designer-resources-using.png │ │ │ │ ├── designer-screenshot.png │ │ │ │ ├── designer-selecting-widget.png │ │ │ │ ├── designer-selecting-widgets.png │ │ │ │ ├── designer-set-layout.png │ │ │ │ ├── designer-set-layout2.png │ │ │ │ ├── designer-splitter-layout.png │ │ │ │ ├── designer-stylesheet-options.png │ │ │ │ ├── designer-stylesheet-usage.png │ │ │ │ ├── designer-tab-order-mode.png │ │ │ │ ├── designer-tab-order-tool.png │ │ │ │ ├── designer-widget-box.png │ │ │ │ ├── designer-widget-filter.png │ │ │ │ ├── designer-widget-final.png │ │ │ │ ├── designer-widget-initial.png │ │ │ │ ├── designer-widget-layout.png │ │ │ │ ├── designer-widget-morph.png │ │ │ │ ├── designer-widget-preview.png │ │ │ │ ├── designer-widget-tool.png │ │ │ │ ├── directapproach-calculatorform.png │ │ │ │ ├── qtdesignerextensions.png │ │ │ │ ├── qtdesignerscreenshot.png │ │ │ │ ├── rgbController-arrangement.png │ │ │ │ ├── rgbController-configure-connection1.png │ │ │ │ ├── rgbController-configure-connection2.png │ │ │ │ ├── rgbController-final-layout.png │ │ │ │ ├── rgbController-form-gridLayout.png │ │ │ │ ├── rgbController-no-toplevel-layout.png │ │ │ │ ├── rgbController-property-editing.png │ │ │ │ ├── rgbController-screenshot.png │ │ │ │ ├── rgbController-selectForLayout.png │ │ │ │ ├── rgbController-signalsAndSlots.png │ │ │ │ └── worldtimeclockplugin-example.png │ │ │ ├── qtdesigner.qdocconf │ │ │ ├── snippets │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── autoconnection │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── autoconnection.pro │ │ │ │ │ ├── imagedialog.cpp │ │ │ │ │ ├── imagedialog.h │ │ │ │ │ ├── imagedialog.ui │ │ │ │ │ └── main.cpp │ │ │ │ ├── designer.pro │ │ │ │ ├── imagedialog │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── imagedialog.pro │ │ │ │ │ ├── imagedialog.ui │ │ │ │ │ └── main.cpp │ │ │ │ ├── lib │ │ │ │ │ ├── tools_designer_src_lib_extension_default_extensionfactory.cpp │ │ │ │ │ ├── tools_designer_src_lib_extension_extension.cpp │ │ │ │ │ ├── tools_designer_src_lib_extension_qextensionmanager.cpp │ │ │ │ │ ├── tools_designer_src_lib_sdk_abstractformwindow.cpp │ │ │ │ │ ├── tools_designer_src_lib_sdk_abstractformwindowcursor.cpp │ │ │ │ │ ├── tools_designer_src_lib_sdk_abstractformwindowmanager.cpp │ │ │ │ │ ├── tools_designer_src_lib_sdk_abstractobjectinspector.cpp │ │ │ │ │ ├── tools_designer_src_lib_sdk_abstractpropertyeditor.cpp │ │ │ │ │ ├── tools_designer_src_lib_sdk_abstractwidgetbox.cpp │ │ │ │ │ └── tools_designer_src_lib_uilib_formbuilder.cpp │ │ │ │ ├── manual │ │ │ │ │ ├── doc_src_designer-manual.cpp │ │ │ │ │ ├── doc_src_designer-manual.js │ │ │ │ │ └── doc_src_designer-manual.pro │ │ │ │ ├── multipleinheritance │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── imagedialog.cpp │ │ │ │ │ ├── imagedialog.h │ │ │ │ │ ├── imagedialog.ui │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── multipleinheritance.pro │ │ │ │ ├── noautoconnection │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── imagedialog.cpp │ │ │ │ │ ├── imagedialog.h │ │ │ │ │ ├── imagedialog.ui │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── noautoconnection.pro │ │ │ │ ├── plugins │ │ │ │ │ └── doc_src_qtdesigner.cpp │ │ │ │ ├── singleinheritance │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── imagedialog.cpp │ │ │ │ │ ├── imagedialog.h │ │ │ │ │ ├── imagedialog.ui │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── singleinheritance.pro │ │ │ │ └── uitools │ │ │ │ │ └── calculatorform │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── calculatorform.pro │ │ │ │ │ ├── calculatorform.ui │ │ │ │ │ └── main.cpp │ │ │ └── src │ │ │ │ ├── designer-custom-widgets.qdoc │ │ │ │ ├── designer-examples.qdoc │ │ │ │ ├── designer-manual.qdoc │ │ │ │ ├── qtdesigner-index.qdoc │ │ │ │ ├── qtdesigner-module.qdoc │ │ │ │ └── qtdesigner-toc.qdoc │ │ ├── images │ │ │ └── designer.png │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── newform.cpp │ │ ├── newform.h │ │ ├── preferencesdialog.cpp │ │ ├── preferencesdialog.h │ │ ├── preferencesdialog.ui │ │ ├── qdesigner.cpp │ │ ├── qdesigner.h │ │ ├── qdesigner_actions.cpp │ │ ├── qdesigner_actions.h │ │ ├── qdesigner_appearanceoptions.cpp │ │ ├── qdesigner_appearanceoptions.h │ │ ├── qdesigner_appearanceoptions.ui │ │ ├── qdesigner_formwindow.cpp │ │ ├── qdesigner_formwindow.h │ │ ├── qdesigner_pch.h │ │ ├── qdesigner_server.cpp │ │ ├── qdesigner_server.h │ │ ├── qdesigner_settings.cpp │ │ ├── qdesigner_settings.h │ │ ├── qdesigner_toolwindow.cpp │ │ ├── qdesigner_toolwindow.h │ │ ├── qdesigner_workbench.cpp │ │ ├── qdesigner_workbench.h │ │ ├── saveformastemplate.cpp │ │ ├── saveformastemplate.h │ │ ├── saveformastemplate.ui │ │ ├── uifile.icns │ │ ├── versiondialog.cpp │ │ └── versiondialog.h │ │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── components │ │ │ ├── qdesigner_components.h │ │ │ └── qdesigner_components_global.h │ │ ├── extension │ │ │ ├── default_extensionfactory.cpp │ │ │ ├── default_extensionfactory.h │ │ │ ├── extension.cpp │ │ │ ├── extension.h │ │ │ ├── extension_global.h │ │ │ ├── qextensionmanager.cpp │ │ │ └── qextensionmanager.h │ │ ├── lib_pch.h │ │ ├── sdk │ │ │ ├── abstractactioneditor.cpp │ │ │ ├── abstractactioneditor.h │ │ │ ├── abstractdialoggui.cpp │ │ │ ├── abstractdialoggui_p.h │ │ │ ├── abstractdnditem.h │ │ │ ├── abstractdnditem.qdoc │ │ │ ├── abstractformeditor.cpp │ │ │ ├── abstractformeditor.h │ │ │ ├── abstractformeditorplugin.cpp │ │ │ ├── abstractformeditorplugin.h │ │ │ ├── abstractformwindow.cpp │ │ │ ├── abstractformwindow.h │ │ │ ├── abstractformwindowcursor.cpp │ │ │ ├── abstractformwindowcursor.h │ │ │ ├── abstractformwindowmanager.cpp │ │ │ ├── abstractformwindowmanager.h │ │ │ ├── abstractformwindowtool.cpp │ │ │ ├── abstractformwindowtool.h │ │ │ ├── abstractintegration.cpp │ │ │ ├── abstractintegration.h │ │ │ ├── abstractintrospection.cpp │ │ │ ├── abstractintrospection_p.h │ │ │ ├── abstractlanguage.h │ │ │ ├── abstractmetadatabase.cpp │ │ │ ├── abstractmetadatabase.h │ │ │ ├── abstractnewformwidget.cpp │ │ │ ├── abstractnewformwidget.h │ │ │ ├── abstractobjectinspector.cpp │ │ │ ├── abstractobjectinspector.h │ │ │ ├── abstractoptionspage.h │ │ │ ├── abstractoptionspage.qdoc │ │ │ ├── abstractpromotioninterface.cpp │ │ │ ├── abstractpromotioninterface.h │ │ │ ├── abstractpropertyeditor.cpp │ │ │ ├── abstractpropertyeditor.h │ │ │ ├── abstractresourcebrowser.cpp │ │ │ ├── abstractresourcebrowser.h │ │ │ ├── abstractsettings.h │ │ │ ├── abstractsettings.qdoc │ │ │ ├── abstractwidgetbox.cpp │ │ │ ├── abstractwidgetbox.h │ │ │ ├── abstractwidgetdatabase.cpp │ │ │ ├── abstractwidgetdatabase.h │ │ │ ├── abstractwidgetfactory.cpp │ │ │ ├── abstractwidgetfactory.h │ │ │ ├── container.h │ │ │ ├── container.qdoc │ │ │ ├── dynamicpropertysheet.h │ │ │ ├── dynamicpropertysheet.qdoc │ │ │ ├── extrainfo.cpp │ │ │ ├── extrainfo.h │ │ │ ├── layoutdecoration.h │ │ │ ├── layoutdecoration.qdoc │ │ │ ├── membersheet.h │ │ │ ├── membersheet.qdoc │ │ │ ├── propertysheet.h │ │ │ ├── propertysheet.qdoc │ │ │ ├── sdk_global.h │ │ │ ├── taskmenu.cpp │ │ │ ├── taskmenu.h │ │ │ └── taskmenu.qdoc │ │ ├── shared │ │ │ ├── actioneditor.cpp │ │ │ ├── actioneditor_p.h │ │ │ ├── actionprovider_p.h │ │ │ ├── actionrepository.cpp │ │ │ ├── actionrepository_p.h │ │ │ ├── addlinkdialog.ui │ │ │ ├── codedialog.cpp │ │ │ ├── codedialog_p.h │ │ │ ├── connectionedit.cpp │ │ │ ├── connectionedit_p.h │ │ │ ├── csshighlighter.cpp │ │ │ ├── csshighlighter_p.h │ │ │ ├── defaultgradients.xml │ │ │ ├── deviceprofile.cpp │ │ │ ├── deviceprofile_p.h │ │ │ ├── dialoggui.cpp │ │ │ ├── dialoggui_p.h │ │ │ ├── extensionfactory_p.h │ │ │ ├── formlayoutmenu.cpp │ │ │ ├── formlayoutmenu_p.h │ │ │ ├── formlayoutrowdialog.ui │ │ │ ├── formwindowbase.cpp │ │ │ ├── formwindowbase_p.h │ │ │ ├── grid.cpp │ │ │ ├── grid_p.h │ │ │ ├── gridpanel.cpp │ │ │ ├── gridpanel.ui │ │ │ ├── gridpanel_p.h │ │ │ ├── htmlhighlighter.cpp │ │ │ ├── htmlhighlighter_p.h │ │ │ ├── icon-naming-spec.txt │ │ │ ├── iconloader.cpp │ │ │ ├── iconloader_p.h │ │ │ ├── iconselector.cpp │ │ │ ├── iconselector_p.h │ │ │ ├── invisible_widget.cpp │ │ │ ├── invisible_widget_p.h │ │ │ ├── layout.cpp │ │ │ ├── layout_p.h │ │ │ ├── layoutinfo.cpp │ │ │ ├── layoutinfo_p.h │ │ │ ├── metadatabase.cpp │ │ │ ├── metadatabase_p.h │ │ │ ├── morphmenu.cpp │ │ │ ├── morphmenu_p.h │ │ │ ├── newactiondialog.cpp │ │ │ ├── newactiondialog.ui │ │ │ ├── newactiondialog_p.h │ │ │ ├── newformwidget.cpp │ │ │ ├── newformwidget.ui │ │ │ ├── newformwidget_p.h │ │ │ ├── orderdialog.cpp │ │ │ ├── orderdialog.ui │ │ │ ├── orderdialog_p.h │ │ │ ├── plaintexteditor.cpp │ │ │ ├── plaintexteditor_p.h │ │ │ ├── plugindialog.cpp │ │ │ ├── plugindialog.ui │ │ │ ├── plugindialog_p.h │ │ │ ├── pluginmanager.cpp │ │ │ ├── pluginmanager_p.h │ │ │ ├── previewconfigurationwidget.cpp │ │ │ ├── previewconfigurationwidget.ui │ │ │ ├── previewconfigurationwidget_p.h │ │ │ ├── previewmanager.cpp │ │ │ ├── previewmanager_p.h │ │ │ ├── promotionmodel.cpp │ │ │ ├── promotionmodel_p.h │ │ │ ├── promotiontaskmenu.cpp │ │ │ ├── promotiontaskmenu_p.h │ │ │ ├── propertylineedit.cpp │ │ │ ├── propertylineedit_p.h │ │ │ ├── qdesigner_command.cpp │ │ │ ├── qdesigner_command2.cpp │ │ │ ├── qdesigner_command2_p.h │ │ │ ├── qdesigner_command_p.h │ │ │ ├── qdesigner_dnditem.cpp │ │ │ ├── qdesigner_dnditem_p.h │ │ │ ├── qdesigner_dockwidget.cpp │ │ │ ├── qdesigner_dockwidget_p.h │ │ │ ├── qdesigner_formbuilder.cpp │ │ │ ├── qdesigner_formbuilder_p.h │ │ │ ├── qdesigner_formeditorcommand.cpp │ │ │ ├── qdesigner_formeditorcommand_p.h │ │ │ ├── qdesigner_formwindowcommand.cpp │ │ │ ├── qdesigner_formwindowcommand_p.h │ │ │ ├── qdesigner_formwindowmanager.cpp │ │ │ ├── qdesigner_formwindowmanager_p.h │ │ │ ├── qdesigner_introspection.cpp │ │ │ ├── qdesigner_introspection_p.h │ │ │ ├── qdesigner_membersheet.cpp │ │ │ ├── qdesigner_membersheet_p.h │ │ │ ├── qdesigner_menu.cpp │ │ │ ├── qdesigner_menu_p.h │ │ │ ├── qdesigner_menubar.cpp │ │ │ ├── qdesigner_menubar_p.h │ │ │ ├── qdesigner_objectinspector.cpp │ │ │ ├── qdesigner_objectinspector_p.h │ │ │ ├── qdesigner_promotion.cpp │ │ │ ├── qdesigner_promotion_p.h │ │ │ ├── qdesigner_promotiondialog.cpp │ │ │ ├── qdesigner_promotiondialog_p.h │ │ │ ├── qdesigner_propertycommand.cpp │ │ │ ├── qdesigner_propertycommand_p.h │ │ │ ├── qdesigner_propertyeditor.cpp │ │ │ ├── qdesigner_propertyeditor_p.h │ │ │ ├── qdesigner_propertysheet.cpp │ │ │ ├── qdesigner_propertysheet_p.h │ │ │ ├── qdesigner_qsettings.cpp │ │ │ ├── qdesigner_qsettings_p.h │ │ │ ├── qdesigner_stackedbox.cpp │ │ │ ├── qdesigner_stackedbox_p.h │ │ │ ├── qdesigner_tabwidget.cpp │ │ │ ├── qdesigner_tabwidget_p.h │ │ │ ├── qdesigner_taskmenu.cpp │ │ │ ├── qdesigner_taskmenu_p.h │ │ │ ├── qdesigner_toolbar.cpp │ │ │ ├── qdesigner_toolbar_p.h │ │ │ ├── qdesigner_toolbox.cpp │ │ │ ├── qdesigner_toolbox_p.h │ │ │ ├── qdesigner_utils.cpp │ │ │ ├── qdesigner_utils_p.h │ │ │ ├── qdesigner_widget.cpp │ │ │ ├── qdesigner_widget_p.h │ │ │ ├── qdesigner_widgetbox.cpp │ │ │ ├── qdesigner_widgetbox_p.h │ │ │ ├── qdesigner_widgetitem.cpp │ │ │ ├── qdesigner_widgetitem_p.h │ │ │ ├── qlayout_widget.cpp │ │ │ ├── qlayout_widget_p.h │ │ │ ├── qsimpleresource.cpp │ │ │ ├── qsimpleresource_p.h │ │ │ ├── qtresourceeditordialog.cpp │ │ │ ├── qtresourceeditordialog.ui │ │ │ ├── qtresourceeditordialog_p.h │ │ │ ├── qtresourcemodel.cpp │ │ │ ├── qtresourcemodel_p.h │ │ │ ├── qtresourceview.cpp │ │ │ ├── qtresourceview_p.h │ │ │ ├── rcc.cpp │ │ │ ├── rcc_p.h │ │ │ ├── richtexteditor.cpp │ │ │ ├── richtexteditor_p.h │ │ │ ├── selectsignaldialog.cpp │ │ │ ├── selectsignaldialog.ui │ │ │ ├── selectsignaldialog_p.h │ │ │ ├── shared_enums_p.h │ │ │ ├── shared_global_p.h │ │ │ ├── shared_settings.cpp │ │ │ ├── shared_settings_p.h │ │ │ ├── sheet_delegate.cpp │ │ │ ├── sheet_delegate_p.h │ │ │ ├── signalslotdialog.cpp │ │ │ ├── signalslotdialog.ui │ │ │ ├── signalslotdialog_p.h │ │ │ ├── spacer_widget.cpp │ │ │ ├── spacer_widget_p.h │ │ │ ├── stylesheeteditor.cpp │ │ │ ├── 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.cpp │ │ │ ├── textpropertyeditor_p.h │ │ │ ├── widgetdatabase.cpp │ │ │ ├── widgetdatabase_p.h │ │ │ ├── widgetfactory.cpp │ │ │ ├── widgetfactory_p.h │ │ │ ├── zoomwidget.cpp │ │ │ └── zoomwidget_p.h │ │ └── uilib │ │ │ ├── abstractformbuilder.cpp │ │ │ ├── abstractformbuilder.h │ │ │ ├── formbuilder.cpp │ │ │ ├── formbuilder.h │ │ │ ├── formbuilderextra.cpp │ │ │ ├── formbuilderextra_p.h │ │ │ ├── properties.cpp │ │ │ ├── properties_p.h │ │ │ ├── resourcebuilder.cpp │ │ │ ├── resourcebuilder_p.h │ │ │ ├── textbuilder.cpp │ │ │ ├── textbuilder_p.h │ │ │ ├── ui4.cpp │ │ │ ├── ui4_p.h │ │ │ ├── uilib_global.h │ │ │ └── widgets.table │ │ └── plugins │ │ ├── CMakeLists.txt │ │ ├── activeqt │ │ ├── CMakeLists.txt │ │ ├── activeqt.json │ │ ├── qaxwidgetextrainfo.cpp │ │ ├── qaxwidgetextrainfo.h │ │ ├── qaxwidgetplugin.cpp │ │ ├── qaxwidgetplugin.h │ │ ├── qaxwidgetpropertysheet.cpp │ │ ├── qaxwidgetpropertysheet.h │ │ ├── qaxwidgettaskmenu.cpp │ │ ├── qaxwidgettaskmenu.h │ │ ├── qdesigneraxwidget.cpp │ │ └── qdesigneraxwidget.h │ │ ├── qquickwidget │ │ ├── CMakeLists.txt │ │ ├── images │ │ │ └── qquickwidget.png │ │ ├── qquickwidget_plugin.cpp │ │ └── qquickwidget_plugin.h │ │ ├── qwebview │ │ ├── CMakeLists.txt │ │ ├── images │ │ │ └── qwebview.png │ │ ├── qwebview.json │ │ ├── qwebview_plugin.cpp │ │ └── qwebview_plugin.h │ │ └── tools │ │ └── view3d │ │ ├── CMakeLists.txt │ │ ├── view3d.cpp │ │ ├── view3d.h │ │ ├── view3d_global.h │ │ ├── view3d_plugin.cpp │ │ ├── view3d_plugin.h │ │ ├── view3d_tool.cpp │ │ └── view3d_tool.h ├── distancefieldgenerator │ ├── CMakeLists.txt │ ├── distancefieldmodel.cpp │ ├── distancefieldmodel.h │ ├── distancefieldmodelworker.cpp │ ├── distancefieldmodelworker.h │ ├── doc │ │ ├── images │ │ │ └── distancefieldgenerator.png │ │ ├── qtdistancefieldgenerator.qdocconf │ │ └── src │ │ │ └── distancefieldgenerator-manual.qdoc │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── global │ └── CMakeLists.txt ├── kmap2qmap │ ├── CMakeLists.txt │ └── main.cpp ├── linguist │ ├── CMakeLists.txt │ ├── GenerateLUpdateProject.cmake │ ├── Qt6LinguistToolsMacros.cmake │ ├── lconvert │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── linguist │ │ ├── CMakeLists.txt │ │ ├── Info_mac.plist │ │ ├── batchtranslation.ui │ │ ├── batchtranslationdialog.cpp │ │ ├── batchtranslationdialog.h │ │ ├── doc │ │ │ ├── cmake-macros.qdoc │ │ │ ├── cmake-properties.qdoc │ │ │ ├── images │ │ │ │ ├── front-coding.png │ │ │ │ ├── front-publishing.png │ │ │ │ ├── front-ui.png │ │ │ │ ├── linguist-batchtranslation.png │ │ │ │ ├── linguist-check-empty.png │ │ │ │ ├── linguist-check-obsolete.png │ │ │ │ ├── linguist-check-off.png │ │ │ │ ├── linguist-check-on.png │ │ │ │ ├── linguist-check-warning.png │ │ │ │ ├── linguist-context-view.webp │ │ │ │ ├── linguist-danger.png │ │ │ │ ├── linguist-doneandnext.png │ │ │ │ ├── linguist-examples.png │ │ │ │ ├── linguist-linguist.png │ │ │ │ ├── linguist-linguist_2.png │ │ │ │ ├── linguist-phrasebookdialog.png │ │ │ │ ├── linguist-strings-view.webp │ │ │ │ ├── linguist-translationfilesettings.png │ │ │ │ ├── linguist-ui.webp │ │ │ │ ├── next.png │ │ │ │ ├── nextunfinished.png │ │ │ │ └── xNIz78IPBu0.jpg │ │ │ ├── includes │ │ │ │ └── cmake-find-package-linguisttools.qdocinc │ │ │ ├── qtlinguist.qdocconf │ │ │ ├── snippets │ │ │ │ ├── cmake-macros │ │ │ │ │ └── examples.cmake │ │ │ │ ├── doc_src_linguist-manual.cpp │ │ │ │ └── doc_src_linguist-manual.pro │ │ │ └── src │ │ │ │ ├── linguist-examples.qdoc │ │ │ │ └── linguist-manual.qdoc │ │ ├── errorsview.cpp │ │ ├── errorsview.h │ │ ├── finddialog.cpp │ │ ├── finddialog.h │ │ ├── finddialog.ui │ │ ├── globals.cpp │ │ ├── globals.h │ │ ├── images │ │ │ ├── alert.png │ │ │ ├── appicon.png │ │ │ ├── check.png │ │ │ ├── darkicons │ │ │ │ ├── check-ampersands-disabled.png │ │ │ │ ├── check-ampersands.png │ │ │ │ ├── check-ending-pontuation-disabled.png │ │ │ │ ├── check-ending-pontuation.png │ │ │ │ ├── check-phrase-suggestions-disabled.png │ │ │ │ ├── check-phrase-suggestions.png │ │ │ │ ├── check-place-markers-disabled.png │ │ │ │ ├── check-place-markers.png │ │ │ │ ├── check-white-spaces-disabled.png │ │ │ │ ├── check-white-spaces.png │ │ │ │ ├── copy-general-disabled.png │ │ │ │ ├── copy-general.png │ │ │ │ ├── cut-disabled.png │ │ │ │ ├── cut.png │ │ │ │ ├── hit-help-chosen-option-disabled.png │ │ │ │ ├── hit-help-chosen-option.png │ │ │ │ ├── library-disabled.png │ │ │ │ ├── library.png │ │ │ │ ├── mark-current-translation-done-disabled.png │ │ │ │ ├── mark-current-translation-done-move-to-next-disabled.png │ │ │ │ ├── mark-current-translation-done-move-to-next.png │ │ │ │ ├── mark-current-translation-done.png │ │ │ │ ├── minus-square-fill-disabled.png │ │ │ │ ├── minus-square-fill.png │ │ │ │ ├── next-translation-item-disabled.png │ │ │ │ ├── next-translation-item.png │ │ │ │ ├── next-unfinished-translation-item-disabled.png │ │ │ │ ├── next-unfinished-translation-item.png │ │ │ │ ├── open-new-disabled.png │ │ │ │ ├── open-new.png │ │ │ │ ├── paste-general-disabled.png │ │ │ │ ├── paste-general.png │ │ │ │ ├── plus-square-fill-disabled.png │ │ │ │ ├── plus-square-fill.png │ │ │ │ ├── previous-translation-item-disabled.png │ │ │ │ ├── previous-translation-item.png │ │ │ │ ├── previous-unfinished-translation-item-disabled.png │ │ │ │ ├── previous-unfinished-translation-item.png │ │ │ │ ├── print-disabled.png │ │ │ │ ├── print.png │ │ │ │ ├── redo-arrow-right-disabled.png │ │ │ │ ├── redo-arrow-right.png │ │ │ │ ├── save-fl-disk-disabled.png │ │ │ │ ├── save-fl-disk.png │ │ │ │ ├── search-magnifier-disabled.png │ │ │ │ ├── search-magnifier.png │ │ │ │ ├── undo-arrow-left-disabled.png │ │ │ │ └── undo-arrow-left.png │ │ │ ├── darkmarks │ │ │ │ ├── danger-mark.png │ │ │ │ ├── empty-mark.png │ │ │ │ ├── obsolete-mark.png │ │ │ │ ├── off-mark.png │ │ │ │ ├── on-mark.png │ │ │ │ └── warning-mark.png │ │ │ ├── generate-marks.sh │ │ │ ├── icons │ │ │ │ └── linguist-128-32.png │ │ │ ├── lighticons │ │ │ │ ├── check-ampersands-disabled.png │ │ │ │ ├── check-ampersands.png │ │ │ │ ├── check-ending-pontuation-disabled.png │ │ │ │ ├── check-ending-pontuation.png │ │ │ │ ├── check-phrase-suggestions-disabled.png │ │ │ │ ├── check-phrase-suggestions.png │ │ │ │ ├── check-place-markers-disabled.png │ │ │ │ ├── check-place-markers.png │ │ │ │ ├── check-white-spaces-disabled.png │ │ │ │ ├── check-white-spaces.png │ │ │ │ ├── copy-general-disabled.png │ │ │ │ ├── copy-general.png │ │ │ │ ├── cut-disabled.png │ │ │ │ ├── cut.png │ │ │ │ ├── hit-help-chosen-option-disabled.png │ │ │ │ ├── hit-help-chosen-option.png │ │ │ │ ├── library-disabled.png │ │ │ │ ├── library.png │ │ │ │ ├── mark-current-translation-done-disabled.png │ │ │ │ ├── mark-current-translation-done-move-to-next-disabled.png │ │ │ │ ├── mark-current-translation-done-move-to-next.png │ │ │ │ ├── mark-current-translation-done.png │ │ │ │ ├── minus-square-fill-disabled.png │ │ │ │ ├── minus-square-fill.png │ │ │ │ ├── next-translation-item-disabled.png │ │ │ │ ├── next-translation-item.png │ │ │ │ ├── next-unfinished-translation-item-disabled.png │ │ │ │ ├── next-unfinished-translation-item.png │ │ │ │ ├── open-new-disabled.png │ │ │ │ ├── open-new.png │ │ │ │ ├── paste-general-disabled.png │ │ │ │ ├── paste-general.png │ │ │ │ ├── plus-square-fill-disabled.png │ │ │ │ ├── plus-square-fill.png │ │ │ │ ├── previous-translation-item-disabled.png │ │ │ │ ├── previous-translation-item.png │ │ │ │ ├── previous-unfinished-translation-item-disabled.png │ │ │ │ ├── previous-unfinished-translation-item.png │ │ │ │ ├── print-disabled.png │ │ │ │ ├── print.png │ │ │ │ ├── redo-arrow-right-disabled.png │ │ │ │ ├── redo-arrow-right.png │ │ │ │ ├── save-fl-disk-disabled.png │ │ │ │ ├── save-fl-disk.png │ │ │ │ ├── search-magnifier-disabled.png │ │ │ │ ├── search-magnifier.png │ │ │ │ ├── undo-arrow-left-disabled.png │ │ │ │ └── undo-arrow-left.png │ │ │ ├── lightmarks │ │ │ │ ├── danger-mark.png │ │ │ │ ├── empty-mark.png │ │ │ │ ├── obsolete-mark.png │ │ │ │ ├── off-mark.png │ │ │ │ ├── on-mark.png │ │ │ │ └── warning-mark.png │ │ │ └── menu-dots.png │ │ ├── linguist.desktop │ │ ├── linguist.icns │ │ ├── linguist.ico │ │ ├── linguist.metainfo.xml │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── mainwindow.ui │ │ ├── messageeditor.cpp │ │ ├── messageeditor.h │ │ ├── messageeditorwidgets.cpp │ │ ├── messageeditorwidgets.h │ │ ├── messagehighlighter.cpp │ │ ├── messagehighlighter.h │ │ ├── messagemodel.cpp │ │ ├── messagemodel.h │ │ ├── phrase.cpp │ │ ├── phrase.h │ │ ├── phrasebookbox.cpp │ │ ├── phrasebookbox.h │ │ ├── phrasebookbox.ui │ │ ├── phrasemodel.cpp │ │ ├── phrasemodel.h │ │ ├── phraseview.cpp │ │ ├── phraseview.h │ │ ├── printout.cpp │ │ ├── printout.h │ │ ├── qmlformpreviewview.cpp │ │ ├── qmlformpreviewview.h │ │ ├── recentfiles.cpp │ │ ├── recentfiles.h │ │ ├── sourcecodeview.cpp │ │ ├── sourcecodeview.h │ │ ├── statistics.cpp │ │ ├── statistics.h │ │ ├── statistics.ui │ │ ├── translatedialog.cpp │ │ ├── translatedialog.h │ │ ├── translatedialog.ui │ │ ├── translationsettings.ui │ │ ├── translationsettingsdialog.cpp │ │ ├── translationsettingsdialog.h │ │ ├── uiformpreviewview.cpp │ │ └── uiformpreviewview.h │ ├── lprodump │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── lrelease-pro │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── lrelease │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── lupdate-pro │ │ ├── CMakeLists.txt │ │ ├── lupdate-pro.exe.manifest │ │ ├── lupdate-pro.rc │ │ └── main.cpp │ ├── lupdate │ │ ├── CMakeLists.txt │ │ ├── cpp.cpp │ │ ├── cpp.h │ │ ├── java.cpp │ │ ├── lupdate.exe.manifest │ │ ├── lupdate.h │ │ ├── lupdate.rc │ │ ├── main.cpp │ │ ├── merge.cpp │ │ ├── metastrings.cpp │ │ ├── metastrings.h │ │ ├── python.cpp │ │ ├── qdeclarative.cpp │ │ ├── synchronized.h │ │ └── ui.cpp │ ├── phrasebooks │ │ ├── danish.qph │ │ ├── dutch.qph │ │ ├── finnish.qph │ │ ├── french.qph │ │ ├── german.qph │ │ ├── hungarian.qph │ │ ├── italian.qph │ │ ├── japanese.qph │ │ ├── norwegian.qph │ │ ├── polish.qph │ │ ├── russian.qph │ │ ├── spanish.qph │ │ └── swedish.qph │ └── shared │ │ ├── exclusive_builds.prf │ │ ├── fmt.h │ │ ├── ioutils.cpp │ │ ├── ioutils.h │ │ ├── numerus.cpp │ │ ├── po.cpp │ │ ├── profileevaluator.cpp │ │ ├── profileevaluator.h │ │ ├── profileutils.h │ │ ├── proitems.cpp │ │ ├── proitems.h │ │ ├── projectdescriptionreader.cpp │ │ ├── projectdescriptionreader.h │ │ ├── qm.cpp │ │ ├── qmake_global.h │ │ ├── qmakebuiltins.cpp │ │ ├── qmakeevaluator.cpp │ │ ├── qmakeevaluator.h │ │ ├── qmakeevaluator_p.h │ │ ├── qmakeglobals.cpp │ │ ├── qmakeglobals.h │ │ ├── qmakeparser.cpp │ │ ├── qmakeparser.h │ │ ├── qmakevfs.cpp │ │ ├── qmakevfs.h │ │ ├── qph.cpp │ │ ├── qrcreader.cpp │ │ ├── qrcreader.h │ │ ├── registry.cpp │ │ ├── registry_p.h │ │ ├── runqttool.cpp │ │ ├── runqttool.h │ │ ├── simtexth.cpp │ │ ├── simtexth.h │ │ ├── translator.cpp │ │ ├── translator.h │ │ ├── translatormessage.cpp │ │ ├── translatormessage.h │ │ ├── ts.cpp │ │ ├── ts.xsd │ │ ├── xliff.cpp │ │ ├── xmlparser.cpp │ │ └── xmlparser.h ├── pixeltool │ ├── CMakeLists.txt │ ├── Info_mac.plist │ ├── main.cpp │ ├── qpixeltool.cpp │ └── qpixeltool.h ├── qdbus │ ├── CMakeLists.txt │ ├── qdbus │ │ ├── CMakeLists.txt │ │ └── qdbus.cpp │ └── qdbusviewer │ │ ├── CMakeLists.txt │ │ ├── Info_mac.plist │ │ ├── images │ │ ├── qdbusviewer-128.png │ │ ├── qdbusviewer.icns │ │ ├── qdbusviewer.ico │ │ └── qdbusviewer.png │ │ ├── logviewer.cpp │ │ ├── logviewer.h │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── propertydialog.cpp │ │ ├── propertydialog.h │ │ ├── qdbusmodel.cpp │ │ ├── qdbusmodel.h │ │ ├── qdbusviewer.cpp │ │ ├── qdbusviewer.desktop │ │ ├── qdbusviewer.h │ │ ├── qdbusviewer.metainfo.xml │ │ ├── servicesproxymodel.cpp │ │ └── servicesproxymodel.h ├── qdoc │ ├── CMakeLists.txt │ ├── catch │ │ ├── CMakeLists.txt │ │ ├── LICENSE.CATCH.txt │ │ ├── REUSE.toml │ │ ├── include │ │ │ └── catch │ │ │ │ └── catch.hpp │ │ └── qt_attribution.json │ ├── catch_conversions │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── catch_conversions │ │ │ ├── qdoc_catch_conversions.h │ │ │ ├── qt_catch_conversions.h │ │ │ └── std_catch_conversions.h │ ├── catch_generators │ │ ├── CMakeLists.txt │ │ ├── src │ │ │ └── catch_generators │ │ │ │ ├── generators │ │ │ │ ├── combinators │ │ │ │ │ ├── cycle_generator.h │ │ │ │ │ └── oneof_generator.h │ │ │ │ ├── k_partition_of_r_generator.h │ │ │ │ ├── path_generator.h │ │ │ │ ├── qchar_generator.h │ │ │ │ └── qstring_generator.h │ │ │ │ ├── namespaces.h │ │ │ │ └── utilities │ │ │ │ ├── semantics │ │ │ │ ├── copy_value.h │ │ │ │ ├── generator_handler.h │ │ │ │ └── move_into_vector.h │ │ │ │ └── statistics │ │ │ │ ├── distribution.h │ │ │ │ └── percentages.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── generators │ │ │ ├── catch_k_partition_of_r_generator.cpp │ │ │ ├── catch_path_generator.cpp │ │ │ ├── catch_qchar_generator.cpp │ │ │ ├── catch_qstring_generator.cpp │ │ │ └── combinators │ │ │ │ ├── catch_cycle_generator.cpp │ │ │ │ └── catch_oneof_generator.cpp │ │ │ ├── main.cpp │ │ │ └── utilities │ │ │ └── semantics │ │ │ └── catch_generator_handler.cpp │ └── qdoc │ │ ├── CMakeLists.txt │ │ ├── doc │ │ ├── config │ │ │ └── qdoc.qdocconf │ │ ├── examples │ │ │ ├── cpp.qdoc.sample │ │ │ ├── layoutmanagement.qdocinc │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── minimum.qdocconf │ │ │ ├── objectmodel.qdocinc │ │ │ ├── qml.qdoc.sample │ │ │ ├── samples.qdocinc │ │ │ └── signalandslots.qdocinc │ │ ├── files │ │ │ ├── basicqt.qdoc.sample │ │ │ ├── compat.qdocconf │ │ │ └── qtgui.qdocconf │ │ ├── images │ │ │ ├── happyguy.jpg │ │ │ ├── link-to-qquickitem.png │ │ │ ├── links-to-broken-links.png │ │ │ ├── links-to-links.png │ │ │ ├── qt-logo.png │ │ │ ├── training.jpg │ │ │ ├── windows-pushbutton.png │ │ │ └── windows-toolbutton.png │ │ ├── qdoc-guide │ │ │ ├── qdoc-guide.qdoc │ │ │ ├── qtwritingstyle-cpp.qdoc │ │ │ └── qtwritingstyle-qml.qdoc │ │ ├── qdoc-manual-cmdindex.qdoc │ │ ├── qdoc-manual-contextcmds.qdoc │ │ ├── qdoc-manual-intro.qdoc │ │ ├── qdoc-manual-macros.qdoc │ │ ├── qdoc-manual-markupcmds.qdoc │ │ ├── qdoc-manual-qdocconf.qdoc │ │ ├── qdoc-manual-topiccmds.qdoc │ │ ├── qdoc-manual.qdoc │ │ ├── qdoc-warnings.qdoc │ │ └── qtgui-qdocconf.qdoc │ │ ├── src │ │ └── qdoc │ │ │ ├── access.h │ │ │ ├── aggregate.cpp │ │ │ ├── aggregate.h │ │ │ ├── atom.cpp │ │ │ ├── atom.h │ │ │ ├── boundaries │ │ │ ├── filesystem │ │ │ │ ├── directorypath.cpp │ │ │ │ ├── directorypath.h │ │ │ │ ├── filepath.cpp │ │ │ │ ├── filepath.h │ │ │ │ ├── resolvedfile.cpp │ │ │ │ └── resolvedfile.h │ │ │ ├── refined_typedef.h │ │ │ └── refined_typedef_members.qdocinc │ │ │ ├── clang │ │ │ └── AST │ │ │ │ ├── LICENSE.LLVM.txt │ │ │ │ ├── QualTypeNames.h │ │ │ │ ├── REUSE.toml │ │ │ │ └── qt_attribution.json │ │ │ ├── clangcodeparser.cpp │ │ │ ├── clangcodeparser.h │ │ │ ├── classnode.cpp │ │ │ ├── classnode.h │ │ │ ├── codechunk.cpp │ │ │ ├── codechunk.h │ │ │ ├── codemarker.cpp │ │ │ ├── codemarker.h │ │ │ ├── codeparser.cpp │ │ │ ├── codeparser.h │ │ │ ├── collectionnode.cpp │ │ │ ├── collectionnode.h │ │ │ ├── comparisoncategory.cpp │ │ │ ├── comparisoncategory.h │ │ │ ├── config.cpp │ │ │ ├── config.h │ │ │ ├── cppcodemarker.cpp │ │ │ ├── cppcodemarker.h │ │ │ ├── cppcodeparser.cpp │ │ │ ├── cppcodeparser.h │ │ │ ├── doc.cpp │ │ │ ├── doc.h │ │ │ ├── docbookgenerator.cpp │ │ │ ├── docbookgenerator.h │ │ │ ├── docparser.cpp │ │ │ ├── docparser.h │ │ │ ├── docprivate.cpp │ │ │ ├── docprivate.h │ │ │ ├── docutilities.h │ │ │ ├── editdistance.cpp │ │ │ ├── editdistance.h │ │ │ ├── enumitem.h │ │ │ ├── enumnode.cpp │ │ │ ├── enumnode.h │ │ │ ├── examplenode.h │ │ │ ├── externalpagenode.cpp │ │ │ ├── externalpagenode.h │ │ │ ├── filesystem │ │ │ ├── fileresolver.cpp │ │ │ └── fileresolver.h │ │ │ ├── functionnode.cpp │ │ │ ├── functionnode.h │ │ │ ├── generator.cpp │ │ │ ├── generator.h │ │ │ ├── genustypes.h │ │ │ ├── headernode.cpp │ │ │ ├── headernode.h │ │ │ ├── helpprojectwriter.cpp │ │ │ ├── helpprojectwriter.h │ │ │ ├── htmlgenerator.cpp │ │ │ ├── htmlgenerator.h │ │ │ ├── importrec.h │ │ │ ├── inode.h │ │ │ ├── location.cpp │ │ │ ├── location.h │ │ │ ├── macro.h │ │ │ ├── main.cpp │ │ │ ├── manifestwriter.cpp │ │ │ ├── manifestwriter.h │ │ │ ├── namespacenode.cpp │ │ │ ├── namespacenode.h │ │ │ ├── nativeenum.cpp │ │ │ ├── nativeenum.h │ │ │ ├── node.cpp │ │ │ ├── node.h │ │ │ ├── openedlist.cpp │ │ │ ├── openedlist.h │ │ │ ├── pagenode.cpp │ │ │ ├── pagenode.h │ │ │ ├── parameters.cpp │ │ │ ├── parameters.h │ │ │ ├── parsererror.cpp │ │ │ ├── parsererror.h │ │ │ ├── propertynode.cpp │ │ │ ├── propertynode.h │ │ │ ├── proxynode.cpp │ │ │ ├── proxynode.h │ │ │ ├── puredocparser.cpp │ │ │ ├── puredocparser.h │ │ │ ├── qdoccommandlineparser.cpp │ │ │ ├── qdoccommandlineparser.h │ │ │ ├── qdocdatabase.cpp │ │ │ ├── qdocdatabase.h │ │ │ ├── qdocindexfiles.cpp │ │ │ ├── qdocindexfiles.h │ │ │ ├── qmlcodemarker.cpp │ │ │ ├── qmlcodemarker.h │ │ │ ├── qmlcodeparser.cpp │ │ │ ├── qmlcodeparser.h │ │ │ ├── qmlenumnode.h │ │ │ ├── qmlmarkupvisitor.cpp │ │ │ ├── qmlmarkupvisitor.h │ │ │ ├── qmlpropertyarguments.cpp │ │ │ ├── qmlpropertyarguments.h │ │ │ ├── qmlpropertynode.cpp │ │ │ ├── qmlpropertynode.h │ │ │ ├── qmltypenode.cpp │ │ │ ├── qmltypenode.h │ │ │ ├── qmlvisitor.cpp │ │ │ ├── qmlvisitor.h │ │ │ ├── quoter.cpp │ │ │ ├── quoter.h │ │ │ ├── relatedclass.cpp │ │ │ ├── relatedclass.h │ │ │ ├── sections.cpp │ │ │ ├── sections.h │ │ │ ├── sharedcommentnode.cpp │ │ │ ├── sharedcommentnode.h │ │ │ ├── singleton.h │ │ │ ├── sourcefileparser.h │ │ │ ├── tagfilewriter.cpp │ │ │ ├── tagfilewriter.h │ │ │ ├── template_declaration.h │ │ │ ├── text.cpp │ │ │ ├── text.h │ │ │ ├── tokenizer.cpp │ │ │ ├── tokenizer.h │ │ │ ├── topic.h │ │ │ ├── tree.cpp │ │ │ ├── tree.h │ │ │ ├── typedefnode.cpp │ │ │ ├── typedefnode.h │ │ │ ├── utilities.cpp │ │ │ ├── utilities.h │ │ │ ├── variablenode.cpp │ │ │ ├── variablenode.h │ │ │ ├── webxmlgenerator.cpp │ │ │ ├── webxmlgenerator.h │ │ │ ├── xmlgenerator.cpp │ │ │ └── xmlgenerator.h │ │ └── tests │ │ ├── CMakeLists.txt │ │ ├── config │ │ ├── CMakeLists.txt │ │ ├── testdata │ │ │ ├── configs │ │ │ │ ├── exampletest.qdocconf │ │ │ │ ├── expandvars.qdocconf │ │ │ │ ├── includepaths.qdocconf │ │ │ │ ├── includes │ │ │ │ │ └── test.qdoc │ │ │ │ ├── paths.qdocconf │ │ │ │ ├── sourcelink.qdocconf │ │ │ │ └── vars.qdocconf │ │ │ ├── exampletest │ │ │ │ └── examples │ │ │ │ │ └── test │ │ │ │ │ ├── empty │ │ │ │ │ └── test.pro │ │ │ │ │ ├── example1 │ │ │ │ │ └── example1.pro │ │ │ │ │ ├── example2 │ │ │ │ │ └── example2.qmlproject │ │ │ │ │ ├── example3 │ │ │ │ │ └── example3.pyproject │ │ │ │ │ └── example4 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── example4.pro │ │ │ ├── includepaths │ │ │ │ ├── include │ │ │ │ │ ├── framework │ │ │ │ │ │ └── ignore.h │ │ │ │ │ ├── more │ │ │ │ │ │ └── ignore.h │ │ │ │ │ ├── purpose.h │ │ │ │ │ └── system │ │ │ │ │ │ └── ignore.h │ │ │ │ └── includepaths.qdocconf │ │ │ └── paths │ │ │ │ ├── includes │ │ │ │ └── test.qdoc │ │ │ │ └── paths.qdocconf │ │ └── tst_config.cpp │ │ ├── generatedoutput │ │ ├── CMakeLists.txt │ │ ├── expected_output │ │ │ ├── autolinking.html │ │ │ ├── cpptypes.html │ │ │ ├── crossmodule │ │ │ │ ├── crossmodule │ │ │ │ │ ├── all-namespaces.html │ │ │ │ │ ├── testtype-members.html │ │ │ │ │ └── testtype.html │ │ │ │ ├── crossmoduleref-sub-crossmodule.html │ │ │ │ ├── testtype-members.html │ │ │ │ └── testtype.html │ │ │ ├── includefromexampledirs │ │ │ │ ├── index.html │ │ │ │ ├── qml-qdoc-test-abstractparent-members.html │ │ │ │ └── qml-qdoc-test-abstractparent.html │ │ │ ├── index-linking.html │ │ │ ├── noautolist-docbook │ │ │ │ ├── qdoc-test-qmlmodule.xml │ │ │ │ ├── test-componentset-example.xml │ │ │ │ └── testcpp-module.xml │ │ │ ├── noautolist │ │ │ │ ├── qdoc-test-qmlmodule.html │ │ │ │ ├── test-componentset-example.html │ │ │ │ └── testcpp-module.html │ │ │ ├── obsolete-classes.html │ │ │ ├── qml-linkmodule-grandchild-members.html │ │ │ ├── qmlpropertygroups-docbook │ │ │ │ └── qml-qdoc-test-parent.xml │ │ │ ├── qmlpropertygroups │ │ │ │ ├── qml-qdoc-test-anotherchild-members.html │ │ │ │ └── qml-qdoc-test-parent.html │ │ │ ├── testcpp-module.html │ │ │ ├── testcpp.index │ │ │ ├── testcpp │ │ │ │ ├── crossmoduleref.html │ │ │ │ ├── testcpp-module.html │ │ │ │ ├── testqdoc-test-members.html │ │ │ │ ├── testqdoc-test.html │ │ │ │ └── testqdoc.html │ │ │ ├── testqdoc-test-members.html │ │ │ ├── testqdoc-test-obsolete.html │ │ │ ├── testqdoc-test.html │ │ │ ├── testqdoc-testderived-members.html │ │ │ ├── testqdoc-testderived-obsolete.html │ │ │ ├── testqdoc-testderived.html │ │ │ └── testqdoc.html │ │ ├── testdata │ │ │ ├── configs │ │ │ │ ├── noautolist.qdocconf │ │ │ │ ├── testcpp.qdocconf │ │ │ │ └── testcpp_singleexec.qdocconf │ │ │ ├── crossmodule │ │ │ │ ├── CrossModule │ │ │ │ ├── crossmodule.qdocconf │ │ │ │ ├── crossmodule_singleexec.qdocconf │ │ │ │ ├── namespaces.qdoc │ │ │ │ ├── testtype.cpp │ │ │ │ └── testtype.h │ │ │ ├── dontdocument │ │ │ │ ├── TestCPP │ │ │ │ └── dontdocument.qdocconf │ │ │ ├── examples │ │ │ │ └── demos │ │ │ │ │ ├── demo │ │ │ │ │ ├── demo.cpp │ │ │ │ │ ├── demo.pro │ │ │ │ │ ├── doc │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── demo.qdoc │ │ │ │ │ ├── dontxclude │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ └── excludes │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ └── hidden │ │ │ │ │ ├── doc │ │ │ │ │ └── src │ │ │ │ │ │ └── hidden.qdoc │ │ │ │ │ └── hidden.pro │ │ │ ├── images │ │ │ │ ├── 01.png │ │ │ │ └── leonardo-da-vinci.png │ │ │ ├── includefromexampledirs │ │ │ │ ├── excludes │ │ │ │ │ ├── anotherindex.qdoc │ │ │ │ │ └── parentinclude.qdoc │ │ │ │ ├── includefromexampledirs.qdocconf │ │ │ │ └── src │ │ │ │ │ ├── includefromparent.qdoc │ │ │ │ │ └── parent.qdocinc │ │ │ ├── indexlinking │ │ │ │ ├── indexlinking.qdocconf │ │ │ │ └── linking.qdoc │ │ │ ├── qml │ │ │ │ ├── DocTest.qml │ │ │ │ ├── Item.qdoc │ │ │ │ ├── cmaketest │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── doc │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── cmaketest.qdoc │ │ │ │ │ └── main.cpp │ │ │ │ ├── componentset │ │ │ │ │ ├── ProgressBar.qml │ │ │ │ │ ├── Switch.qml │ │ │ │ │ ├── TabWidget.qml │ │ │ │ │ ├── componentset.pro │ │ │ │ │ ├── componentset.qml │ │ │ │ │ ├── examples.qdoc │ │ │ │ │ └── uicomponents.qdoc.sample │ │ │ │ ├── doctest │ │ │ │ │ └── DocTest.qml │ │ │ │ ├── modules.qdoc │ │ │ │ ├── parent.qdoc │ │ │ │ └── type.cpp │ │ │ ├── qmlpropertygroups │ │ │ │ ├── parent.qdoc │ │ │ │ └── qmlpropertygroups.qdocconf │ │ │ ├── singleexec │ │ │ │ └── singleexec.qdocconf │ │ │ └── testcpp │ │ │ │ ├── TestCPP │ │ │ │ ├── classlists.qdoc │ │ │ │ ├── properties.qdoc │ │ │ │ ├── snippets │ │ │ │ └── snippet_testcpp.cpp │ │ │ │ ├── testcpp.cpp │ │ │ │ └── testcpp.h │ │ └── tst_generatedoutput.cpp │ │ ├── inode │ │ ├── CMakeLists.txt │ │ └── tst_inodeinterface.cpp │ │ ├── nativeenum │ │ ├── CMakeLists.txt │ │ └── tst_nativeenum.cpp │ │ ├── qdoc │ │ ├── CMakeLists.txt │ │ ├── boundaries │ │ │ └── filesystem │ │ │ │ ├── catch_directorypath.cpp │ │ │ │ └── catch_filepath.cpp │ │ ├── filesystem │ │ │ └── catch_fileresolver.cpp │ │ ├── main.cpp │ │ └── node │ │ │ └── catch_genustypes.cpp │ │ ├── qdoccommandlineparser │ │ ├── CMakeLists.txt │ │ ├── tst_arguments.txt │ │ └── tst_qdoccommandlineparser.cpp │ │ ├── utilities │ │ ├── CMakeLists.txt │ │ └── tst_utilities.cpp │ │ └── validateqdocoutputfiles │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── testdata │ │ ├── attributions │ │ │ ├── attributions.qdocconf │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── attributions-test.xml │ │ │ │ │ ├── some-attribution-1.xml │ │ │ │ │ └── some-attribution-2.xml │ │ │ │ ├── html │ │ │ │ │ ├── attributions-test.html │ │ │ │ │ ├── attributions.index │ │ │ │ │ ├── some-attribution-1.html │ │ │ │ │ └── some-attribution-2.html │ │ │ │ └── webxml │ │ │ │ │ ├── attributions-test.webxml │ │ │ │ │ ├── attributions.index │ │ │ │ │ ├── some-attribution-1.webxml │ │ │ │ │ └── some-attribution-2.webxml │ │ │ └── src │ │ │ │ └── test.qdoc │ │ ├── auto_as_return_type │ │ │ ├── auto_as_return_type.qdocconf │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── qdoctest-module.xml │ │ │ │ │ ├── qdoctests-numbers.xml │ │ │ │ │ └── qdoctests.xml │ │ │ │ ├── html │ │ │ │ │ ├── auto-as-return-type.index │ │ │ │ │ ├── qdoctest-module.html │ │ │ │ │ ├── qdoctests-numbers-members.html │ │ │ │ │ ├── qdoctests-numbers.html │ │ │ │ │ └── qdoctests.html │ │ │ │ └── webxml │ │ │ │ │ ├── auto-as-return-type.index │ │ │ │ │ ├── qdoctest-module.webxml │ │ │ │ │ ├── qdoctests-numbers.webxml │ │ │ │ │ └── qdoctests.webxml │ │ │ └── src │ │ │ │ ├── numbers.cpp │ │ │ │ └── numbers.h │ │ ├── bug80259 │ │ │ ├── bug80259.qdocconf │ │ │ ├── expected │ │ │ │ ├── html │ │ │ │ │ ├── first-members.html │ │ │ │ │ ├── first-nested.html │ │ │ │ │ ├── first.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── second.html │ │ │ │ │ ├── testmodule.index │ │ │ │ │ └── third.html │ │ │ │ └── webxml │ │ │ │ │ ├── first-nested.webxml │ │ │ │ │ ├── first.webxml │ │ │ │ │ ├── index.webxml │ │ │ │ │ ├── second.webxml │ │ │ │ │ ├── testmodule.index │ │ │ │ │ └── third.webxml │ │ │ └── src │ │ │ │ ├── inc │ │ │ │ └── testmodule │ │ │ │ │ ├── TestModule.h │ │ │ │ │ ├── aaa.h │ │ │ │ │ ├── bbb.h │ │ │ │ │ └── ccc.h │ │ │ │ ├── main.cpp │ │ │ │ └── qdoc │ │ │ │ └── index.qdoc │ │ ├── clashing_qmltypes │ │ │ ├── clashing_qmltypes.qdocconf │ │ │ ├── expected │ │ │ │ └── html │ │ │ │ │ ├── barmod-qmlmodule.html │ │ │ │ │ ├── clashingqmltypes.index │ │ │ │ │ ├── foomod-qmlmodule.html │ │ │ │ │ ├── qml-barmod-foo-members.html │ │ │ │ │ ├── qml-barmod-foo.html │ │ │ │ │ ├── qml-foomod-foo-members.html │ │ │ │ │ └── qml-foomod-foo.html │ │ │ └── src │ │ │ │ └── test.qdoc │ │ ├── class_relates │ │ │ ├── class_relates.qdocconf │ │ │ ├── expected │ │ │ │ └── html │ │ │ │ │ ├── classrelates.index │ │ │ │ │ ├── foo-bar.html │ │ │ │ │ ├── foo-module.html │ │ │ │ │ └── foo.html │ │ │ └── src │ │ │ │ ├── bar.h │ │ │ │ ├── foo.h │ │ │ │ └── foo.qdoc │ │ ├── cmakedocumentation │ │ │ ├── cmakedocumentation.qdocconf │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── car.xml │ │ │ │ │ ├── engine.xml │ │ │ │ │ ├── testcar-module.xml │ │ │ │ │ └── testcarprivate-module.xml │ │ │ │ ├── html │ │ │ │ │ ├── car.html │ │ │ │ │ ├── cmakedocumentation.index │ │ │ │ │ ├── engine.html │ │ │ │ │ ├── testcar-module.html │ │ │ │ │ └── testcarprivate-module.html │ │ │ │ └── webxml │ │ │ │ │ ├── car.webxml │ │ │ │ │ ├── cmakedocumentation.index │ │ │ │ │ ├── engine.webxml │ │ │ │ │ ├── testcar-module.webxml │ │ │ │ │ └── testcarprivate-module.webxml │ │ │ └── src │ │ │ │ ├── car.cpp │ │ │ │ └── car.h │ │ ├── compiler_generated_member_functions │ │ │ ├── compiler_generated_member_functions.qdocconf │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── qdoctests-compilergeneratedmemberfunctions.xml │ │ │ │ │ ├── qdoctests-module.xml │ │ │ │ │ └── qdoctests.xml │ │ │ │ ├── html │ │ │ │ │ ├── compiler-generated-member-functions.index │ │ │ │ │ ├── qdoctests-compilergeneratedmemberfunctions-members.html │ │ │ │ │ ├── qdoctests-compilergeneratedmemberfunctions.html │ │ │ │ │ ├── qdoctests-module.html │ │ │ │ │ └── qdoctests.html │ │ │ │ └── webxml │ │ │ │ │ ├── compiler-generated-member-functions.index │ │ │ │ │ ├── qdoctests-compilergeneratedmemberfunctions.webxml │ │ │ │ │ ├── qdoctests-module.webxml │ │ │ │ │ └── qdoctests.webxml │ │ │ └── src │ │ │ │ ├── compilergeneratedmemberfunctions.cpp │ │ │ │ └── compilergeneratedmemberfunctions.h │ │ ├── comprehensiveproject │ │ │ ├── comprehensiveproject.qdocconf │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── autolinking.xml │ │ │ │ │ ├── classes.xml │ │ │ │ │ ├── cpptypes.xml │ │ │ │ │ ├── crossmoduleref.xml │ │ │ │ │ ├── images │ │ │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ │ ├── obsolete-classes.xml │ │ │ │ │ ├── qdoc-test-qmlmodule.xml │ │ │ │ │ ├── qml-int.xml │ │ │ │ │ ├── qml-qdoc-test-abstractparent.xml │ │ │ │ │ ├── qml-qdoc-test-child.xml │ │ │ │ │ ├── qml-qdoc-test-doctest.xml │ │ │ │ │ ├── qml-qdoc-test-item.xml │ │ │ │ │ ├── qml-qdoc-test-oldtype.xml │ │ │ │ │ ├── qml-qdoc-test-type.xml │ │ │ │ │ ├── qml-qdoc-test-yetanotherchild.xml │ │ │ │ │ ├── qml-test-nover-doctest.xml │ │ │ │ │ ├── qml-test-nover-typenoversion.xml │ │ │ │ │ ├── qml-themodule-thetype.xml │ │ │ │ │ ├── qml-uicomponents-progressbar.xml │ │ │ │ │ ├── qml-uicomponents-switch.xml │ │ │ │ │ ├── qml-uicomponents-tabwidget.xml │ │ │ │ │ ├── qmlmodules.xml │ │ │ │ │ ├── seenclass.xml │ │ │ │ │ ├── test-cmaketest-cmakelists-txt.xml │ │ │ │ │ ├── test-cmaketest-example.xml │ │ │ │ │ ├── test-cmaketest-main-cpp.xml │ │ │ │ │ ├── test-componentset-componentset-pro.xml │ │ │ │ │ ├── test-componentset-componentset-qml.xml │ │ │ │ │ ├── test-componentset-example.xml │ │ │ │ │ ├── test-componentset-progressbar-qml.xml │ │ │ │ │ ├── test-componentset-switch-qml.xml │ │ │ │ │ ├── test-componentset-tabwidget-qml.xml │ │ │ │ │ ├── test-demos-demo-demo-cpp.xml │ │ │ │ │ ├── test-demos-demo-demo-pro.xml │ │ │ │ │ ├── test-demos-demo-dontxclude-cmakelists-txt.xml │ │ │ │ │ ├── test-demos-demo-example.xml │ │ │ │ │ ├── test-demos-hidden-example.xml │ │ │ │ │ ├── test-empty-qmlmodule.xml │ │ │ │ │ ├── test-nover-qmlmodule.xml │ │ │ │ │ ├── testcpp-module.xml │ │ │ │ │ ├── testqdoc-test.xml │ │ │ │ │ ├── testqdoc-testderived.xml │ │ │ │ │ ├── testqdoc.xml │ │ │ │ │ ├── themodule-qmlmodule.xml │ │ │ │ │ └── uicomponents-qmlmodule.xml │ │ │ │ ├── html │ │ │ │ │ ├── autolinking.html │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── cpptypes.html │ │ │ │ │ ├── crossmoduleref.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ │ ├── obsolete-classes.html │ │ │ │ │ ├── qdoc-test-qmlmodule.html │ │ │ │ │ ├── qml-int.html │ │ │ │ │ ├── qml-qdoc-test-abstractparent-members.html │ │ │ │ │ ├── qml-qdoc-test-abstractparent.html │ │ │ │ │ ├── qml-qdoc-test-child-members.html │ │ │ │ │ ├── qml-qdoc-test-child.html │ │ │ │ │ ├── qml-qdoc-test-doctest-members.html │ │ │ │ │ ├── qml-qdoc-test-doctest.html │ │ │ │ │ ├── qml-qdoc-test-item-members.html │ │ │ │ │ ├── qml-qdoc-test-item.html │ │ │ │ │ ├── qml-qdoc-test-oldtype-members.html │ │ │ │ │ ├── qml-qdoc-test-oldtype.html │ │ │ │ │ ├── qml-qdoc-test-type-members.html │ │ │ │ │ ├── qml-qdoc-test-type-obsolete.html │ │ │ │ │ ├── qml-qdoc-test-type.html │ │ │ │ │ ├── qml-qdoc-test-yetanotherchild-members.html │ │ │ │ │ ├── qml-qdoc-test-yetanotherchild.html │ │ │ │ │ ├── qml-test-nover-doctest-members.html │ │ │ │ │ ├── qml-test-nover-doctest.html │ │ │ │ │ ├── qml-test-nover-typenoversion-members.html │ │ │ │ │ ├── qml-test-nover-typenoversion.html │ │ │ │ │ ├── qml-themodule-thetype-members.html │ │ │ │ │ ├── qml-themodule-thetype.html │ │ │ │ │ ├── qml-uicomponents-progressbar-members.html │ │ │ │ │ ├── qml-uicomponents-progressbar.html │ │ │ │ │ ├── qml-uicomponents-switch-members.html │ │ │ │ │ ├── qml-uicomponents-switch.html │ │ │ │ │ ├── qml-uicomponents-tabwidget-members.html │ │ │ │ │ ├── qml-uicomponents-tabwidget.html │ │ │ │ │ ├── qmlmodules.html │ │ │ │ │ ├── seenclass.html │ │ │ │ │ ├── test-cmaketest-cmakelists-txt.html │ │ │ │ │ ├── test-cmaketest-example.html │ │ │ │ │ ├── test-cmaketest-main-cpp.html │ │ │ │ │ ├── test-componentset-componentset-pro.html │ │ │ │ │ ├── test-componentset-componentset-qml.html │ │ │ │ │ ├── test-componentset-example.html │ │ │ │ │ ├── test-componentset-progressbar-qml.html │ │ │ │ │ ├── test-componentset-switch-qml.html │ │ │ │ │ ├── test-componentset-tabwidget-qml.html │ │ │ │ │ ├── test-demos-demo-demo-cpp.html │ │ │ │ │ ├── test-demos-demo-demo-pro.html │ │ │ │ │ ├── test-demos-demo-dontxclude-cmakelists-txt.html │ │ │ │ │ ├── test-demos-demo-example.html │ │ │ │ │ ├── test-demos-hidden-example.html │ │ │ │ │ ├── test-empty-qmlmodule.html │ │ │ │ │ ├── test-nover-qmlmodule.html │ │ │ │ │ ├── test.index │ │ │ │ │ ├── test.qhp │ │ │ │ │ ├── testcpp-module.html │ │ │ │ │ ├── testqdoc-test-members.html │ │ │ │ │ ├── testqdoc-test-obsolete.html │ │ │ │ │ ├── testqdoc-test.html │ │ │ │ │ ├── testqdoc-testderived-members.html │ │ │ │ │ ├── testqdoc-testderived-obsolete.html │ │ │ │ │ ├── testqdoc-testderived.html │ │ │ │ │ ├── testqdoc.html │ │ │ │ │ ├── testtagfile.tags │ │ │ │ │ ├── themodule-qmlmodule.html │ │ │ │ │ └── uicomponents-qmlmodule.html │ │ │ │ └── webxml │ │ │ │ │ ├── autolinking.webxml │ │ │ │ │ ├── classes.webxml │ │ │ │ │ ├── cpptypes.webxml │ │ │ │ │ ├── crossmoduleref.webxml │ │ │ │ │ ├── images │ │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ │ ├── obsolete-classes.webxml │ │ │ │ │ ├── qdoc-test-qmlmodule.webxml │ │ │ │ │ ├── qmlmodules.webxml │ │ │ │ │ ├── seenclass.webxml │ │ │ │ │ ├── test-cmaketest-cmakelists-txt.webxml │ │ │ │ │ ├── test-cmaketest-example.webxml │ │ │ │ │ ├── test-cmaketest-main-cpp.webxml │ │ │ │ │ ├── test-componentset-componentset-pro.webxml │ │ │ │ │ ├── test-componentset-componentset-qml.webxml │ │ │ │ │ ├── test-componentset-example.webxml │ │ │ │ │ ├── test-componentset-progressbar-qml.webxml │ │ │ │ │ ├── test-componentset-switch-qml.webxml │ │ │ │ │ ├── test-componentset-tabwidget-qml.webxml │ │ │ │ │ ├── test-demos-demo-demo-cpp.webxml │ │ │ │ │ ├── test-demos-demo-demo-pro.webxml │ │ │ │ │ ├── test-demos-demo-dontxclude-cmakelists-txt.webxml │ │ │ │ │ ├── test-demos-demo-example.webxml │ │ │ │ │ ├── test-demos-hidden-example.webxml │ │ │ │ │ ├── test-empty-qmlmodule.webxml │ │ │ │ │ ├── test-nover-qmlmodule.webxml │ │ │ │ │ ├── test.index │ │ │ │ │ ├── testcpp-module.webxml │ │ │ │ │ ├── testqdoc-test.webxml │ │ │ │ │ ├── testqdoc-testderived.webxml │ │ │ │ │ ├── testqdoc.webxml │ │ │ │ │ ├── testtagfile.tags │ │ │ │ │ ├── themodule-qmlmodule.webxml │ │ │ │ │ └── uicomponents-qmlmodule.webxml │ │ │ └── src │ │ │ │ ├── TestCPP │ │ │ │ ├── classlists.qdoc │ │ │ │ ├── dont.cpp │ │ │ │ ├── dont.h │ │ │ │ ├── examples │ │ │ │ └── demos │ │ │ │ │ ├── demo │ │ │ │ │ ├── demo.cpp │ │ │ │ │ ├── demo.pro │ │ │ │ │ ├── doc │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── demo.qdoc │ │ │ │ │ ├── dontxclude │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ └── excludes │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ └── hidden │ │ │ │ │ ├── doc │ │ │ │ │ └── src │ │ │ │ │ │ └── hidden.qdoc │ │ │ │ │ └── hidden.pro │ │ │ │ ├── images │ │ │ │ ├── 01.png │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ ├── properties.qdoc │ │ │ │ ├── qml │ │ │ │ ├── DocTest.qml │ │ │ │ ├── Item.qdoc │ │ │ │ ├── cmaketest │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── doc │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── cmaketest.qdoc │ │ │ │ │ └── main.cpp │ │ │ │ ├── componentset │ │ │ │ │ ├── ProgressBar.qml │ │ │ │ │ ├── Switch.qml │ │ │ │ │ ├── TabWidget.qml │ │ │ │ │ ├── componentset.pro │ │ │ │ │ ├── componentset.qml │ │ │ │ │ ├── examples.qdoc │ │ │ │ │ └── uicomponents.qdoc.sample │ │ │ │ ├── doctest │ │ │ │ │ └── DocTest.qml │ │ │ │ ├── modules.qdoc │ │ │ │ ├── parent.qdoc │ │ │ │ └── type.cpp │ │ │ │ ├── snippets │ │ │ │ └── snippet_testcpp.cpp │ │ │ │ ├── testcpp.cpp │ │ │ │ ├── testcpp.h │ │ │ │ └── unseenclass.qdoc │ │ ├── comprehensiveproject_headerdocs │ │ │ ├── comprehensiveproject_headerdocs.qdocconf │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── autolinking.xml │ │ │ │ │ ├── classes.xml │ │ │ │ │ ├── cpptypes.xml │ │ │ │ │ ├── crossmoduleref.xml │ │ │ │ │ ├── images │ │ │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ │ ├── obsolete-classes.xml │ │ │ │ │ ├── qdoc-test-qmlmodule.xml │ │ │ │ │ ├── qml-int.xml │ │ │ │ │ ├── qml-qdoc-test-abstractparent.xml │ │ │ │ │ ├── qml-qdoc-test-child.xml │ │ │ │ │ ├── qml-qdoc-test-doctest.xml │ │ │ │ │ ├── qml-qdoc-test-oldtype.xml │ │ │ │ │ ├── qml-qdoc-test-type.xml │ │ │ │ │ ├── qml-qdoc-test-yetanotherchild.xml │ │ │ │ │ ├── qml-test-nover-doctest.xml │ │ │ │ │ ├── qml-test-nover-typenoversion.xml │ │ │ │ │ ├── qml-themodule-thetype.xml │ │ │ │ │ ├── qml-uicomponents-progressbar.xml │ │ │ │ │ ├── qml-uicomponents-switch.xml │ │ │ │ │ ├── qml-uicomponents-tabwidget.xml │ │ │ │ │ ├── qmlmodules.xml │ │ │ │ │ ├── seenclass.xml │ │ │ │ │ ├── test-cmaketest-cmakelists-txt.xml │ │ │ │ │ ├── test-cmaketest-example.xml │ │ │ │ │ ├── test-cmaketest-main-cpp.xml │ │ │ │ │ ├── test-componentset-componentset-pro.xml │ │ │ │ │ ├── test-componentset-componentset-qml.xml │ │ │ │ │ ├── test-componentset-example.xml │ │ │ │ │ ├── test-componentset-progressbar-qml.xml │ │ │ │ │ ├── test-componentset-switch-qml.xml │ │ │ │ │ ├── test-componentset-tabwidget-qml.xml │ │ │ │ │ ├── test-demos-demo-demo-cpp.xml │ │ │ │ │ ├── test-demos-demo-demo-pro.xml │ │ │ │ │ ├── test-demos-demo-dontxclude-cmakelists-txt.xml │ │ │ │ │ ├── test-demos-demo-example.xml │ │ │ │ │ ├── test-demos-hidden-example.xml │ │ │ │ │ ├── test-empty-qmlmodule.xml │ │ │ │ │ ├── test-nover-qmlmodule.xml │ │ │ │ │ ├── testcpp-module.xml │ │ │ │ │ ├── testqdoc-test-struct.xml │ │ │ │ │ ├── testqdoc-test.xml │ │ │ │ │ ├── testqdoc-testderived.xml │ │ │ │ │ ├── testqdoc-vec.xml │ │ │ │ │ ├── testqdoc.xml │ │ │ │ │ ├── themodule-qmlmodule.xml │ │ │ │ │ └── uicomponents-qmlmodule.xml │ │ │ │ ├── html │ │ │ │ │ ├── autolinking.html │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── cpptypes.html │ │ │ │ │ ├── crossmoduleref.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ │ ├── obsolete-classes.html │ │ │ │ │ ├── qdoc-test-qmlmodule.html │ │ │ │ │ ├── qml-int.html │ │ │ │ │ ├── qml-qdoc-test-abstractparent-members.html │ │ │ │ │ ├── qml-qdoc-test-abstractparent.html │ │ │ │ │ ├── qml-qdoc-test-child-members.html │ │ │ │ │ ├── qml-qdoc-test-child.html │ │ │ │ │ ├── qml-qdoc-test-doctest-members.html │ │ │ │ │ ├── qml-qdoc-test-doctest.html │ │ │ │ │ ├── qml-qdoc-test-oldtype-members.html │ │ │ │ │ ├── qml-qdoc-test-oldtype.html │ │ │ │ │ ├── qml-qdoc-test-type-members.html │ │ │ │ │ ├── qml-qdoc-test-type-obsolete.html │ │ │ │ │ ├── qml-qdoc-test-type.html │ │ │ │ │ ├── qml-qdoc-test-yetanotherchild-members.html │ │ │ │ │ ├── qml-qdoc-test-yetanotherchild.html │ │ │ │ │ ├── qml-test-nover-doctest-members.html │ │ │ │ │ ├── qml-test-nover-doctest.html │ │ │ │ │ ├── qml-test-nover-typenoversion-members.html │ │ │ │ │ ├── qml-test-nover-typenoversion.html │ │ │ │ │ ├── qml-themodule-thetype-members.html │ │ │ │ │ ├── qml-themodule-thetype.html │ │ │ │ │ ├── qml-uicomponents-progressbar-members.html │ │ │ │ │ ├── qml-uicomponents-progressbar.html │ │ │ │ │ ├── qml-uicomponents-switch-members.html │ │ │ │ │ ├── qml-uicomponents-switch.html │ │ │ │ │ ├── qml-uicomponents-tabwidget-members.html │ │ │ │ │ ├── qml-uicomponents-tabwidget.html │ │ │ │ │ ├── qmlmodules.html │ │ │ │ │ ├── seenclass.html │ │ │ │ │ ├── test-cmaketest-cmakelists-txt.html │ │ │ │ │ ├── test-cmaketest-example.html │ │ │ │ │ ├── test-cmaketest-main-cpp.html │ │ │ │ │ ├── test-componentset-componentset-pro.html │ │ │ │ │ ├── test-componentset-componentset-qml.html │ │ │ │ │ ├── test-componentset-example.html │ │ │ │ │ ├── test-componentset-progressbar-qml.html │ │ │ │ │ ├── test-componentset-switch-qml.html │ │ │ │ │ ├── test-componentset-tabwidget-qml.html │ │ │ │ │ ├── test-demos-demo-demo-cpp.html │ │ │ │ │ ├── test-demos-demo-demo-pro.html │ │ │ │ │ ├── test-demos-demo-dontxclude-cmakelists-txt.html │ │ │ │ │ ├── test-demos-demo-example.html │ │ │ │ │ ├── test-demos-hidden-example.html │ │ │ │ │ ├── test-empty-qmlmodule.html │ │ │ │ │ ├── test-nover-qmlmodule.html │ │ │ │ │ ├── test.index │ │ │ │ │ ├── test.qhp │ │ │ │ │ ├── testcpp-module.html │ │ │ │ │ ├── testqdoc-test-members.html │ │ │ │ │ ├── testqdoc-test-obsolete.html │ │ │ │ │ ├── testqdoc-test-struct.html │ │ │ │ │ ├── testqdoc-test.html │ │ │ │ │ ├── testqdoc-testderived-members.html │ │ │ │ │ ├── testqdoc-testderived-obsolete.html │ │ │ │ │ ├── testqdoc-testderived.html │ │ │ │ │ ├── testqdoc-vec.html │ │ │ │ │ ├── testqdoc.html │ │ │ │ │ ├── testtagfile.tags │ │ │ │ │ ├── themodule-qmlmodule.html │ │ │ │ │ └── uicomponents-qmlmodule.html │ │ │ │ └── webxml │ │ │ │ │ ├── autolinking.webxml │ │ │ │ │ ├── classes.webxml │ │ │ │ │ ├── cpptypes.webxml │ │ │ │ │ ├── crossmoduleref.webxml │ │ │ │ │ ├── images │ │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ │ ├── obsolete-classes.webxml │ │ │ │ │ ├── qdoc-test-qmlmodule.webxml │ │ │ │ │ ├── qmlmodules.webxml │ │ │ │ │ ├── seenclass.webxml │ │ │ │ │ ├── test-cmaketest-cmakelists-txt.webxml │ │ │ │ │ ├── test-cmaketest-example.webxml │ │ │ │ │ ├── test-cmaketest-main-cpp.webxml │ │ │ │ │ ├── test-componentset-componentset-pro.webxml │ │ │ │ │ ├── test-componentset-componentset-qml.webxml │ │ │ │ │ ├── test-componentset-example.webxml │ │ │ │ │ ├── test-componentset-progressbar-qml.webxml │ │ │ │ │ ├── test-componentset-switch-qml.webxml │ │ │ │ │ ├── test-componentset-tabwidget-qml.webxml │ │ │ │ │ ├── test-demos-demo-demo-cpp.webxml │ │ │ │ │ ├── test-demos-demo-demo-pro.webxml │ │ │ │ │ ├── test-demos-demo-dontxclude-cmakelists-txt.webxml │ │ │ │ │ ├── test-demos-demo-example.webxml │ │ │ │ │ ├── test-demos-hidden-example.webxml │ │ │ │ │ ├── test-empty-qmlmodule.webxml │ │ │ │ │ ├── test-nover-qmlmodule.webxml │ │ │ │ │ ├── test.index │ │ │ │ │ ├── testcpp-module.webxml │ │ │ │ │ ├── testqdoc-test-struct.webxml │ │ │ │ │ ├── testqdoc-test.webxml │ │ │ │ │ ├── testqdoc-testderived.webxml │ │ │ │ │ ├── testqdoc-vec.webxml │ │ │ │ │ ├── testqdoc.webxml │ │ │ │ │ ├── testtagfile.tags │ │ │ │ │ ├── themodule-qmlmodule.webxml │ │ │ │ │ └── uicomponents-qmlmodule.webxml │ │ │ └── src │ │ │ │ ├── TestCPP │ │ │ │ ├── classlists.qdoc │ │ │ │ ├── dont.cpp │ │ │ │ ├── dont.h │ │ │ │ ├── examples │ │ │ │ └── demos │ │ │ │ │ ├── demo │ │ │ │ │ ├── demo.cpp │ │ │ │ │ ├── demo.pro │ │ │ │ │ ├── doc │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── demo.qdoc │ │ │ │ │ ├── dontxclude │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ └── excludes │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ └── hidden │ │ │ │ │ ├── doc │ │ │ │ │ └── src │ │ │ │ │ │ └── hidden.qdoc │ │ │ │ │ └── hidden.pro │ │ │ │ ├── images │ │ │ │ ├── 01.png │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ ├── properties.qdoc │ │ │ │ ├── qml │ │ │ │ ├── DocTest.qml │ │ │ │ ├── cmaketest │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── doc │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── cmaketest.qdoc │ │ │ │ │ └── main.cpp │ │ │ │ ├── componentset │ │ │ │ │ ├── ProgressBar.qml │ │ │ │ │ ├── Switch.qml │ │ │ │ │ ├── TabWidget.qml │ │ │ │ │ ├── componentset.pro │ │ │ │ │ ├── componentset.qml │ │ │ │ │ ├── examples.qdoc │ │ │ │ │ └── uicomponents.qdoc.sample │ │ │ │ ├── doctest │ │ │ │ │ └── DocTest.qml │ │ │ │ ├── modules.qdoc │ │ │ │ ├── parent.qdoc │ │ │ │ └── type.qdoc │ │ │ │ ├── snippets │ │ │ │ └── snippet_testcpp.cpp │ │ │ │ ├── testcpp.cpp │ │ │ │ ├── testcpp.h │ │ │ │ ├── testcpp.qdoc │ │ │ │ └── unseenclass.qdoc │ │ ├── customsortedlists │ │ │ ├── customsortedlists.qdocconf │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── a.xml │ │ │ │ │ ├── b.xml │ │ │ │ │ ├── c.xml │ │ │ │ │ ├── d.xml │ │ │ │ │ └── lists.xml │ │ │ │ ├── html │ │ │ │ │ ├── a.html │ │ │ │ │ ├── b.html │ │ │ │ │ ├── c.html │ │ │ │ │ ├── customsortedlists.index │ │ │ │ │ ├── d.html │ │ │ │ │ └── lists.html │ │ │ │ └── webxml │ │ │ │ │ ├── a.webxml │ │ │ │ │ ├── b.webxml │ │ │ │ │ ├── c.webxml │ │ │ │ │ ├── customsortedlists.index │ │ │ │ │ ├── d.webxml │ │ │ │ │ └── lists.webxml │ │ │ └── src │ │ │ │ └── test.qdoc │ │ ├── cxx20 │ │ │ ├── cxx20.qdocconf │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── bar.xml │ │ │ │ │ ├── baz.xml │ │ │ │ │ ├── comparesstronglywithoneclassandpartiallywithanother.xml │ │ │ │ │ ├── comparesstronglywiththreeclasses.xml │ │ │ │ │ ├── comparesstronglywiththreeclassesacrossmultiplelines.xml │ │ │ │ │ ├── comparesstronglywithtwoclasses.xml │ │ │ │ │ ├── equalitycomparableclass.xml │ │ │ │ │ ├── foo.xml │ │ │ │ │ ├── partiallyorderedclass.xml │ │ │ │ │ ├── stronglyorderedclass.xml │ │ │ │ │ └── weaklyorderedclass.xml │ │ │ │ ├── html │ │ │ │ │ ├── bar.html │ │ │ │ │ ├── baz.html │ │ │ │ │ ├── comparesstronglywithoneclassandpartiallywithanother.html │ │ │ │ │ ├── comparesstronglywiththreeclasses.html │ │ │ │ │ ├── comparesstronglywiththreeclassesacrossmultiplelines.html │ │ │ │ │ ├── comparesstronglywithtwoclasses.html │ │ │ │ │ ├── cxx20.index │ │ │ │ │ ├── equalitycomparableclass.html │ │ │ │ │ ├── foo.html │ │ │ │ │ ├── partiallyorderedclass.html │ │ │ │ │ ├── stronglyorderedclass.html │ │ │ │ │ └── weaklyorderedclass.html │ │ │ │ └── webxml │ │ │ │ │ ├── bar.webxml │ │ │ │ │ ├── baz.webxml │ │ │ │ │ ├── comparesstronglywithoneclassandpartiallywithanother.webxml │ │ │ │ │ ├── comparesstronglywiththreeclasses.webxml │ │ │ │ │ ├── comparesstronglywiththreeclassesacrossmultiplelines.webxml │ │ │ │ │ ├── comparesstronglywithtwoclasses.webxml │ │ │ │ │ ├── cxx20.index │ │ │ │ │ ├── equalitycomparableclass.webxml │ │ │ │ │ ├── foo.webxml │ │ │ │ │ ├── partiallyorderedclass.webxml │ │ │ │ │ ├── stronglyorderedclass.webxml │ │ │ │ │ └── weaklyorderedclass.webxml │ │ │ └── src │ │ │ │ ├── classes_with_various_ordering.cpp │ │ │ │ └── classes_with_various_ordering.h │ │ ├── duplicate_section_titles_have_unique_anchors │ │ │ ├── duplicate_section_titles_have_unique_anchors.qdocconf │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ └── page-one.xml │ │ │ │ ├── html │ │ │ │ │ ├── duplicate-section-titles-have-unique-anchors.index │ │ │ │ │ └── page-one.html │ │ │ │ └── webxml │ │ │ │ │ ├── duplicate-section-titles-have-unique-anchors.index │ │ │ │ │ └── page-one.webxml │ │ │ └── src │ │ │ │ └── page_one.qdoc │ │ ├── externalpage_hyphens │ │ │ ├── expected │ │ │ │ └── html │ │ │ │ │ ├── external-page-hyphens.index │ │ │ │ │ └── qdoctest-module.html │ │ │ ├── externalpage_hyphens.qdocconf │ │ │ └── src │ │ │ │ └── test.qdoc │ │ ├── globalfunc │ │ │ ├── expected │ │ │ │ └── html │ │ │ │ │ ├── globals.html │ │ │ │ │ ├── testglobals-module.html │ │ │ │ │ └── testglobals.index │ │ │ ├── globalfunc.qdocconf │ │ │ └── src │ │ │ │ ├── TestGlobals │ │ │ │ ├── global.h │ │ │ │ └── global.qdoc │ │ ├── headerfile │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── headers.xml │ │ │ │ │ ├── testheader.xml │ │ │ │ │ └── tests.xml │ │ │ │ ├── html │ │ │ │ │ ├── headerfile.index │ │ │ │ │ ├── headers.html │ │ │ │ │ ├── testheader.html │ │ │ │ │ └── tests.html │ │ │ │ └── webxml │ │ │ │ │ ├── headerfile.index │ │ │ │ │ ├── headers.webxml │ │ │ │ │ ├── testheader.webxml │ │ │ │ │ └── tests.webxml │ │ │ ├── headerfile.qdocconf │ │ │ └── src │ │ │ │ ├── testheader.cpp │ │ │ │ └── testheader.h │ │ ├── illformatted_documentation │ │ │ ├── expected │ │ │ │ ├── html │ │ │ │ │ ├── another-page-with-comments-in-the-brief.html │ │ │ │ │ ├── brief-adventures.html │ │ │ │ │ ├── illformatted-examples.html │ │ │ │ │ ├── illformatteddocumentation-someexample-example.html │ │ │ │ │ ├── illformatteddocumentation.index │ │ │ │ │ ├── page-with-an-image-at-the-top.html │ │ │ │ │ ├── page-with-comment-after-brief.html │ │ │ │ │ └── page-with-comment-in-brief.html │ │ │ │ └── webxml │ │ │ │ │ ├── another-page-with-comments-in-the-brief.webxml │ │ │ │ │ ├── brief-adventures.webxml │ │ │ │ │ ├── illformatted-examples.webxml │ │ │ │ │ ├── illformatteddocumentation-someexample-example.webxml │ │ │ │ │ ├── illformatteddocumentation.index │ │ │ │ │ ├── page-with-an-image-at-the-top.webxml │ │ │ │ │ ├── page-with-comment-after-brief.webxml │ │ │ │ │ └── page-with-comment-in-brief.webxml │ │ │ ├── illformatted_documentation.qdocconf │ │ │ └── src │ │ │ │ ├── brief_adventures.qdoc │ │ │ │ ├── illformatted-examples.qdoc │ │ │ │ └── some_example.qdoc │ │ ├── image_alt_as_title │ │ │ ├── expected │ │ │ │ └── html │ │ │ │ │ ├── imagealtastitle.index │ │ │ │ │ ├── images │ │ │ │ │ ├── leonardo-da-vinci-small.png │ │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ │ └── page-with-an-image-that-has-a-title-attribute.html │ │ │ ├── image_alt_as_title.qdocconf │ │ │ └── src │ │ │ │ ├── image_alt_as_title.qdoc │ │ │ │ └── images │ │ │ │ ├── leonardo-da-vinci-small.png │ │ │ │ └── leonardo-da-vinci.png │ │ ├── line_comments │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── a-page-with-a-line-comment-in-the-see-also-command.xml │ │ │ │ │ ├── another-page-with-an-image-at-the-top.xml │ │ │ │ │ ├── images │ │ │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ │ └── line-comment-adventures.xml │ │ │ │ ├── html │ │ │ │ │ ├── a-page-with-a-line-comment-in-the-see-also-command.html │ │ │ │ │ ├── another-page-with-an-image-at-the-top.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ │ ├── line-comment-adventures.html │ │ │ │ │ └── linecomment.index │ │ │ │ └── webxml │ │ │ │ │ ├── a-page-with-a-line-comment-in-the-see-also-command.webxml │ │ │ │ │ ├── another-page-with-an-image-at-the-top.webxml │ │ │ │ │ ├── images │ │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ │ ├── line-comment-adventures.webxml │ │ │ │ │ └── linecomment.index │ │ │ ├── line_comments.qdocconf │ │ │ └── src │ │ │ │ ├── images │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ └── line_comment_adventures.qdoc │ │ ├── macro_expansion_in_links │ │ │ ├── expected │ │ │ │ ├── another-page.html │ │ │ │ ├── macro-expansion-in-links.index │ │ │ │ └── testpage.html │ │ │ ├── macro_expansion_in_links.qdocconf │ │ │ └── src │ │ │ │ ├── anotherpage.qdoc │ │ │ │ └── testpage.qdoc │ │ ├── minimal_configuration │ │ │ ├── expected │ │ │ │ ├── a-minimal-qdoc-configuration.index │ │ │ │ └── readme.html │ │ │ ├── minimal_configuration.qdocconf │ │ │ └── src │ │ │ │ └── README.qdoc │ │ ├── modifiedoutputfilenames │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── cppmodule-module-suffix.xml │ │ │ │ │ ├── group.xml │ │ │ │ │ ├── modifiedoutputfilenames-test-example.xml │ │ │ │ │ ├── page.xml │ │ │ │ │ ├── prefix-header-suffix.xml │ │ │ │ │ ├── prefix-namespace-class-suffix.xml │ │ │ │ │ ├── prefix-namespace-suffix.xml │ │ │ │ │ ├── qml-qmlmodule-suffix-type.xml │ │ │ │ │ └── qmlmodule-qmlmodule-suffix.xml │ │ │ │ ├── html │ │ │ │ │ ├── cppmodule-module-suffix.html │ │ │ │ │ ├── group.html │ │ │ │ │ ├── modifiedoutputfilenames-test-example.html │ │ │ │ │ ├── modifiedoutputfilenames.index │ │ │ │ │ ├── page.html │ │ │ │ │ ├── prefix-header-suffix.html │ │ │ │ │ ├── prefix-namespace-class-suffix.html │ │ │ │ │ ├── prefix-namespace-suffix.html │ │ │ │ │ ├── qml-qmlmodule-suffix-type-members.html │ │ │ │ │ ├── qml-qmlmodule-suffix-type.html │ │ │ │ │ └── qmlmodule-qmlmodule-suffix.html │ │ │ │ └── webxml │ │ │ │ │ ├── cppmodule-module-suffix.webxml │ │ │ │ │ ├── group.webxml │ │ │ │ │ ├── modifiedoutputfilenames-test-example.webxml │ │ │ │ │ ├── modifiedoutputfilenames.index │ │ │ │ │ ├── page.webxml │ │ │ │ │ ├── prefix-header-suffix.webxml │ │ │ │ │ ├── prefix-namespace-class-suffix.webxml │ │ │ │ │ ├── prefix-namespace-suffix.webxml │ │ │ │ │ └── qmlmodule-qmlmodule-suffix.webxml │ │ │ ├── modifiedoutputfilenames.qdocconf │ │ │ └── src │ │ │ │ ├── example │ │ │ │ └── test │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── test.cpp │ │ │ │ └── test.h │ │ ├── modulestate │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── boringclass.xml │ │ │ │ │ ├── excitingclass.xml │ │ │ │ │ └── moduleinstate-module.xml │ │ │ │ ├── html │ │ │ │ │ ├── boringclass.html │ │ │ │ │ ├── excitingclass.html │ │ │ │ │ ├── moduleinstate-module.html │ │ │ │ │ └── modulestate.index │ │ │ │ └── webxml │ │ │ │ │ ├── boringclass.webxml │ │ │ │ │ ├── excitingclass.webxml │ │ │ │ │ ├── moduleinstate-module.webxml │ │ │ │ │ └── modulestate.index │ │ │ ├── modulestate.qdocconf │ │ │ └── src │ │ │ │ ├── classes_in_stateful_module.h │ │ │ │ └── module_in_a_state.qdoc │ │ ├── noexcept_notes │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ └── testclass.xml │ │ │ │ ├── html │ │ │ │ │ ├── noexceptnotes.index │ │ │ │ │ ├── testclass-members.html │ │ │ │ │ └── testclass.html │ │ │ │ └── webxml │ │ │ │ │ ├── noexceptnotes.index │ │ │ │ │ └── testclass.webxml │ │ │ ├── noexcept_notes.qdocconf │ │ │ └── src │ │ │ │ ├── testclass.cpp │ │ │ │ └── testclass.h │ │ ├── non_ascii_character_input │ │ │ ├── expected │ │ │ │ ├── 8b5c72eb.html │ │ │ │ ├── adventures-with-non-ascii-characters.html │ │ │ │ ├── e85685de.html │ │ │ │ ├── html │ │ │ │ │ ├── 8b5c72eb.webxml │ │ │ │ │ ├── adventures-with-non-ascii-characters.webxml │ │ │ │ │ ├── e85685de.webxml │ │ │ │ │ ├── mozzarella-7c883eff.webxml │ │ │ │ │ ├── nonasciicharacterinput.index │ │ │ │ │ ├── santa-14209312.webxml │ │ │ │ │ ├── seite-mit-ausschlie-lich-gro-buchstaben-im-titel-berschrift-htm-bfa91582.webxml │ │ │ │ │ ├── trademarks-test2.webxml │ │ │ │ │ └── trademarks.webxml │ │ │ │ ├── mozzarella-7c883eff.html │ │ │ │ ├── nonasciicharacterinput.index │ │ │ │ ├── santa-14209312.html │ │ │ │ ├── seite-mit-ausschlie-lich-gro-buchstaben-im-titel-berschrift-htm-bfa91582.html │ │ │ │ ├── trademarks-test2.html │ │ │ │ └── trademarks.html │ │ │ ├── non_ascii_character_input.qdocconf │ │ │ └── src │ │ │ │ └── adventures_with_non_ascii_characters.qdoc │ │ ├── outputfromqdocfiles │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── crash.xml │ │ │ │ │ ├── images │ │ │ │ │ │ ├── 01.png │ │ │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ │ ├── qdoctests-qdocfileoutput-exhaustive.xml │ │ │ │ │ ├── qdoctests-qdocfileoutput-linking.xml │ │ │ │ │ ├── qdoctests-qdocfileoutput.xml │ │ │ │ │ ├── qdoctests-qdocmanuallikefileoutput.xml │ │ │ │ │ └── toc.xml │ │ │ │ ├── html │ │ │ │ │ ├── crash.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── 01.png │ │ │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ │ ├── outputfromqdocfiles.index │ │ │ │ │ ├── qdoctests-qdocfileoutput-exhaustive.html │ │ │ │ │ ├── qdoctests-qdocfileoutput-linking.html │ │ │ │ │ ├── qdoctests-qdocfileoutput.html │ │ │ │ │ ├── qdoctests-qdocmanuallikefileoutput.html │ │ │ │ │ └── toc.html │ │ │ │ └── webxml │ │ │ │ │ ├── crash.webxml │ │ │ │ │ ├── images │ │ │ │ │ ├── 01.png │ │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ │ ├── outputfromqdocfiles.index │ │ │ │ │ ├── qdoctests-qdocfileoutput-exhaustive.webxml │ │ │ │ │ ├── qdoctests-qdocfileoutput-linking.webxml │ │ │ │ │ ├── qdoctests-qdocfileoutput.webxml │ │ │ │ │ ├── qdoctests-qdocmanuallikefileoutput.webxml │ │ │ │ │ └── toc.webxml │ │ │ ├── outputfromqdocfiles.qdocconf │ │ │ └── src │ │ │ │ ├── images │ │ │ │ ├── 01.png │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ ├── qdoctests-outputfromqdocfiles.qdoc │ │ │ │ ├── qdoctests-outputfromqdocmanuallikefiles.qdoc │ │ │ │ └── snippets │ │ │ │ └── main.cpp │ │ ├── overload_command │ │ │ ├── expected │ │ │ │ ├── overload-command-test.index │ │ │ │ ├── test.qhp │ │ │ │ ├── testclass-members.html │ │ │ │ └── testclass.html │ │ │ ├── overload_command.qdocconf │ │ │ └── src │ │ │ │ ├── classwithoverloads.cpp │ │ │ │ └── classwithoverloads.h │ │ ├── proxypage │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ └── stdpair-proxypage-proxy.xml │ │ │ │ └── html │ │ │ │ │ ├── proxypage.index │ │ │ │ │ └── stdpair-proxypage-proxy.html │ │ │ ├── proxypage.qdocconf │ │ │ └── src │ │ │ │ ├── proxy.h │ │ │ │ └── proxy.qdoc │ │ ├── qml_mutual_definitions │ │ │ ├── expected │ │ │ │ └── html │ │ │ │ │ ├── qdoctest-qmlmodule.html │ │ │ │ │ ├── qml-qdoctest-a-members.html │ │ │ │ │ ├── qml-qdoctest-a.html │ │ │ │ │ ├── qml-qdoctest-abstractapplicationwindow-members.html │ │ │ │ │ ├── qml-qdoctest-abstractapplicationwindow.html │ │ │ │ │ ├── qml-qdoctest-applicationwindow-members.html │ │ │ │ │ ├── qml-qdoctest-applicationwindow.html │ │ │ │ │ ├── qml-qdoctest-b-members.html │ │ │ │ │ ├── qml-qdoctest-b.html │ │ │ │ │ ├── qml-qdoctest-c-members.html │ │ │ │ │ ├── qml-qdoctest-c.html │ │ │ │ │ ├── qml-qdoctest-selfinheriting-members.html │ │ │ │ │ ├── qml-qdoctest-selfinheriting.html │ │ │ │ │ └── qmlmutualdefs.index │ │ │ ├── qml_mutual_definitions.qdocconf │ │ │ └── src │ │ │ │ ├── A.qml │ │ │ │ ├── AbstractApplicationWindow.qml │ │ │ │ ├── ApplicationWindow.qml │ │ │ │ ├── B.qml │ │ │ │ ├── C.qml │ │ │ │ ├── SelfInheriting.qml │ │ │ │ ├── foo.h │ │ │ │ └── foo.qdoc │ │ ├── qml_namespaces │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── qml-qtquick-controls-abstractapplicationwindow.xml │ │ │ │ │ ├── qml-qtquick-controls-applicationwindow.xml │ │ │ │ │ ├── qml-some-module-abstractapplicationwindow.xml │ │ │ │ │ ├── qml-some-module-applicationwindow.xml │ │ │ │ │ ├── qtquick-controls-qmlmodule.xml │ │ │ │ │ └── some-module-qmlmodule.xml │ │ │ │ └── html │ │ │ │ │ ├── qml-namespaces.index │ │ │ │ │ ├── qml-qtquick-controls-abstractapplicationwindow-members.html │ │ │ │ │ ├── qml-qtquick-controls-abstractapplicationwindow.html │ │ │ │ │ ├── qml-qtquick-controls-applicationwindow-members.html │ │ │ │ │ ├── qml-qtquick-controls-applicationwindow.html │ │ │ │ │ ├── qml-some-module-abstractapplicationwindow-members.html │ │ │ │ │ ├── qml-some-module-abstractapplicationwindow.html │ │ │ │ │ ├── qml-some-module-applicationwindow-members.html │ │ │ │ │ ├── qml-some-module-applicationwindow.html │ │ │ │ │ ├── qtquick-controls-qmlmodule.html │ │ │ │ │ └── some-module-qmlmodule.html │ │ │ ├── qml_namespaces.qdocconf │ │ │ └── src │ │ │ │ ├── AbstractApplicationWindow.qml │ │ │ │ ├── ApplicationWindow.qml │ │ │ │ └── modules.qdoc │ │ ├── qml_nativetype_synopsis │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── cppcar.xml │ │ │ │ │ ├── qml-qmlnativetypesynopsis-car.xml │ │ │ │ │ ├── qml-qmlnativetypesynopsis-truck.xml │ │ │ │ │ └── qmlnativetypesynopsis-qmlmodule.xml │ │ │ │ ├── html │ │ │ │ │ ├── cppcar.html │ │ │ │ │ ├── qml-nativetype-synopsis-test.index │ │ │ │ │ ├── qml-qmlnativetypesynopsis-car-members.html │ │ │ │ │ ├── qml-qmlnativetypesynopsis-car.html │ │ │ │ │ ├── qml-qmlnativetypesynopsis-truck-members.html │ │ │ │ │ ├── qml-qmlnativetypesynopsis-truck.html │ │ │ │ │ └── qmlnativetypesynopsis-qmlmodule.html │ │ │ │ └── webxml │ │ │ │ │ ├── cppcar.webxml │ │ │ │ │ ├── qml-nativetype-synopsis-test.index │ │ │ │ │ └── qmlnativetypesynopsis-qmlmodule.webxml │ │ │ ├── qml_nativetype_synopsis.qdocconf │ │ │ └── src │ │ │ │ ├── cppcar.cpp │ │ │ │ └── cppcar.h │ │ ├── qmlenumvaluesfromcpp │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── class.xml │ │ │ │ │ ├── module-module.xml │ │ │ │ │ ├── qml-qmlmodule-type.xml │ │ │ │ │ └── qmlmodule-qmlmodule.xml │ │ │ │ ├── html │ │ │ │ │ ├── class-members.html │ │ │ │ │ ├── class.html │ │ │ │ │ ├── module-module.html │ │ │ │ │ ├── qml-qmlmodule-type-members.html │ │ │ │ │ ├── qml-qmlmodule-type.html │ │ │ │ │ ├── qmlenumvaluesfromcpp.index │ │ │ │ │ └── qmlmodule-qmlmodule.html │ │ │ │ └── webxml │ │ │ │ │ ├── class.webxml │ │ │ │ │ ├── module-module.webxml │ │ │ │ │ ├── qmlenumvaluesfromcpp.index │ │ │ │ │ └── qmlmodule-qmlmodule.webxml │ │ │ ├── qmlenumvaluesfromcpp.qdocconf │ │ │ └── src │ │ │ │ ├── class.cpp │ │ │ │ ├── class.h │ │ │ │ └── qmltype.qdoc │ │ ├── relatesordering │ │ │ ├── a.cpp │ │ │ ├── a.h │ │ │ ├── b.cpp │ │ │ ├── expected │ │ │ │ ├── bar.html │ │ │ │ ├── module-module.html │ │ │ │ └── relatesordering.index │ │ │ └── relatesordering.qdocconf │ │ ├── scopedenum │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── autolinking.xml │ │ │ │ │ ├── cpptypes.xml │ │ │ │ │ ├── crossmoduleref.xml │ │ │ │ │ ├── obsolete-classes.xml │ │ │ │ │ ├── scoped-enum-linking.xml │ │ │ │ │ ├── testcpp-module.xml │ │ │ │ │ ├── testqdoc-test.xml │ │ │ │ │ ├── testqdoc-testderived.xml │ │ │ │ │ ├── testqdoc.xml │ │ │ │ │ └── whatsnew.xml │ │ │ │ ├── html │ │ │ │ │ ├── autolinking.html │ │ │ │ │ ├── cpptypes.html │ │ │ │ │ ├── crossmoduleref.html │ │ │ │ │ ├── obsolete-classes.html │ │ │ │ │ ├── scoped-enum-linking.html │ │ │ │ │ ├── testcpp-module.html │ │ │ │ │ ├── testcpp.index │ │ │ │ │ ├── testqdoc-test-members.html │ │ │ │ │ ├── testqdoc-test-obsolete.html │ │ │ │ │ ├── testqdoc-test.html │ │ │ │ │ ├── testqdoc-testderived-members.html │ │ │ │ │ ├── testqdoc-testderived-obsolete.html │ │ │ │ │ ├── testqdoc-testderived.html │ │ │ │ │ ├── testqdoc.html │ │ │ │ │ └── whatsnew.html │ │ │ │ └── webxml │ │ │ │ │ ├── autolinking.webxml │ │ │ │ │ ├── cpptypes.webxml │ │ │ │ │ ├── crossmoduleref.webxml │ │ │ │ │ ├── obsolete-classes.webxml │ │ │ │ │ ├── scoped-enum-linking.webxml │ │ │ │ │ ├── testcpp-module.webxml │ │ │ │ │ ├── testcpp.index │ │ │ │ │ ├── testqdoc-test.webxml │ │ │ │ │ ├── testqdoc-testderived.webxml │ │ │ │ │ ├── testqdoc.webxml │ │ │ │ │ └── whatsnew.webxml │ │ │ ├── scopedenum.qdocconf │ │ │ └── src │ │ │ │ ├── classlists.qdoc │ │ │ │ ├── scopedenum.qdoc │ │ │ │ ├── snippets │ │ │ │ └── snippet_testcpp.cpp │ │ │ │ ├── testcpp.cpp │ │ │ │ └── testcpp.h │ │ ├── sharedcommentsinnamespace │ │ │ ├── expected │ │ │ │ ├── mod-module.html │ │ │ │ ├── sharedcommentsinnamespace.index │ │ │ │ └── test.html │ │ │ ├── sharedcommentsinnamespace.qdocconf │ │ │ └── src │ │ │ │ ├── test.cpp │ │ │ │ └── test.h │ │ ├── singleexec │ │ │ ├── args.txt │ │ │ ├── expected │ │ │ │ ├── project-a │ │ │ │ │ ├── a.html │ │ │ │ │ └── project-a.index │ │ │ │ └── project-b │ │ │ │ │ ├── b.html │ │ │ │ │ └── project-b.index │ │ │ ├── project-a.qdocconf │ │ │ ├── project-b.qdocconf │ │ │ ├── singleexec.qdocconf │ │ │ └── src │ │ │ │ ├── a │ │ │ │ └── a.qdoc │ │ │ │ └── b │ │ │ │ └── b.qdoc │ │ ├── tableaftervalue │ │ │ ├── expected │ │ │ │ ├── docbok │ │ │ │ │ └── tableaftervalue.xml │ │ │ │ ├── html │ │ │ │ │ ├── tableaftervalue-members.html │ │ │ │ │ ├── tableaftervalue.html │ │ │ │ │ └── tableaftervalue.index │ │ │ │ └── webxml │ │ │ │ │ ├── tableaftervalue.index │ │ │ │ │ └── tableaftervalue.webxml │ │ │ ├── src │ │ │ │ ├── table-after-value.cpp │ │ │ │ └── table-after-value.h │ │ │ └── tableaftervalue.qdocconf │ │ ├── templatedcallables │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── templated-callables-h.xml │ │ │ │ │ └── templatedclass.xml │ │ │ │ ├── html │ │ │ │ │ ├── templated-callables-h.html │ │ │ │ │ ├── templatedcallables.index │ │ │ │ │ ├── templatedclass-members.html │ │ │ │ │ └── templatedclass.html │ │ │ │ └── webxml │ │ │ │ │ ├── templated-callables-h.webxml │ │ │ │ │ ├── templatedcallables.index │ │ │ │ │ └── templatedclass.webxml │ │ │ ├── src │ │ │ │ ├── templated_callables.cpp │ │ │ │ └── templated_callables.h │ │ │ └── templatedcallables.qdocconf │ │ ├── templatedcallables_headerdocs │ │ │ ├── expected │ │ │ │ └── html │ │ │ │ │ ├── templated-callables-h.html │ │ │ │ │ ├── templatedcallables.index │ │ │ │ │ ├── templatedclass-members.html │ │ │ │ │ └── templatedclass.html │ │ │ ├── src │ │ │ │ ├── templated_callables.cpp │ │ │ │ └── templated_callables.h │ │ │ └── templatedcallables_headerdocs.qdocconf │ │ ├── testtemplate │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── autolinking.xml │ │ │ │ │ ├── bar.xml │ │ │ │ │ ├── baz.xml │ │ │ │ │ ├── cpptypes.xml │ │ │ │ │ ├── crossmoduleref.xml │ │ │ │ │ ├── foo.xml │ │ │ │ │ ├── obsolete-classes.xml │ │ │ │ │ ├── testcpp-module.xml │ │ │ │ │ ├── testqdoc-test-struct.xml │ │ │ │ │ ├── testqdoc-test.xml │ │ │ │ │ ├── testqdoc-testderived.xml │ │ │ │ │ ├── testqdoc-vec.xml │ │ │ │ │ └── testqdoc.xml │ │ │ │ ├── html │ │ │ │ │ ├── autolinking.html │ │ │ │ │ ├── bar.html │ │ │ │ │ ├── baz.html │ │ │ │ │ ├── cpptypes.html │ │ │ │ │ ├── crossmoduleref.html │ │ │ │ │ ├── foo.html │ │ │ │ │ ├── obsolete-classes.html │ │ │ │ │ ├── testcpp-module.html │ │ │ │ │ ├── testqdoc-test-members.html │ │ │ │ │ ├── testqdoc-test-obsolete.html │ │ │ │ │ ├── testqdoc-test-struct.html │ │ │ │ │ ├── testqdoc-test.html │ │ │ │ │ ├── testqdoc-testderived-members.html │ │ │ │ │ ├── testqdoc-testderived-obsolete.html │ │ │ │ │ ├── testqdoc-testderived.html │ │ │ │ │ ├── testqdoc-vec.html │ │ │ │ │ ├── testqdoc.html │ │ │ │ │ └── testtemplate.index │ │ │ │ └── webxml │ │ │ │ │ ├── autolinking.webxml │ │ │ │ │ ├── bar.webxml │ │ │ │ │ ├── baz.webxml │ │ │ │ │ ├── cpptypes.webxml │ │ │ │ │ ├── crossmoduleref.webxml │ │ │ │ │ ├── foo.webxml │ │ │ │ │ ├── obsolete-classes.webxml │ │ │ │ │ ├── testcpp-module.webxml │ │ │ │ │ ├── testqdoc-test-struct.webxml │ │ │ │ │ ├── testqdoc-test.webxml │ │ │ │ │ ├── testqdoc-testderived.webxml │ │ │ │ │ ├── testqdoc-vec.webxml │ │ │ │ │ ├── testqdoc.webxml │ │ │ │ │ └── testtemplate.index │ │ │ ├── src │ │ │ │ ├── classlists.qdoc │ │ │ │ ├── snippets │ │ │ │ │ └── snippet_testcpp.cpp │ │ │ │ ├── testcpp.cpp │ │ │ │ ├── testcpp.h │ │ │ │ ├── testtemplate.cpp │ │ │ │ └── testtemplate.h │ │ │ └── testtemplate.qdocconf │ │ ├── tocnavigation │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── crash.xml │ │ │ │ │ ├── images │ │ │ │ │ │ ├── 01.png │ │ │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ │ ├── qdoctests-qdocfileoutput-exhaustive.xml │ │ │ │ │ ├── qdoctests-qdocfileoutput-linking.xml │ │ │ │ │ ├── qdoctests-qdocfileoutput.xml │ │ │ │ │ ├── qdoctests-qdocmanuallikefileoutput.xml │ │ │ │ │ ├── toc-test.xml │ │ │ │ │ └── toc.xml │ │ │ │ ├── html │ │ │ │ │ ├── crash.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── 01.png │ │ │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ │ ├── outputfromqdocfiles.index │ │ │ │ │ ├── qdoctests-qdocfileoutput-exhaustive.html │ │ │ │ │ ├── qdoctests-qdocfileoutput-linking.html │ │ │ │ │ ├── qdoctests-qdocfileoutput.html │ │ │ │ │ ├── qdoctests-qdocmanuallikefileoutput.html │ │ │ │ │ ├── toc-test.html │ │ │ │ │ └── toc.html │ │ │ │ └── webxml │ │ │ │ │ ├── crash.webxml │ │ │ │ │ ├── images │ │ │ │ │ ├── 01.png │ │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ │ ├── outputfromqdocfiles.index │ │ │ │ │ ├── qdoctests-qdocfileoutput-exhaustive.webxml │ │ │ │ │ ├── qdoctests-qdocfileoutput-linking.webxml │ │ │ │ │ ├── qdoctests-qdocfileoutput.webxml │ │ │ │ │ ├── qdoctests-qdocmanuallikefileoutput.webxml │ │ │ │ │ ├── toc-test.webxml │ │ │ │ │ └── toc.webxml │ │ │ ├── src │ │ │ │ ├── images │ │ │ │ │ ├── 01.png │ │ │ │ │ └── leonardo-da-vinci.png │ │ │ │ ├── qdoctests-outputfromqdocfiles.qdoc │ │ │ │ ├── qdoctests-outputfromqdocmanuallikefiles.qdoc │ │ │ │ ├── snippets │ │ │ │ │ └── main.cpp │ │ │ │ └── toc.qdoc │ │ │ └── tocnavigation.qdocconf │ │ ├── trademark_command │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── trademark-test.xml │ │ │ │ │ └── trademarks.xml │ │ │ │ ├── html │ │ │ │ │ ├── trademark-test.html │ │ │ │ │ ├── trademarkcommand.index │ │ │ │ │ └── trademarks.html │ │ │ │ └── webxml │ │ │ │ │ ├── trademark-test.webxml │ │ │ │ │ ├── trademarkcommand.index │ │ │ │ │ └── trademarks.webxml │ │ │ ├── src │ │ │ │ └── test.qdoc │ │ │ └── trademark_command.qdocconf │ │ ├── trailing_backslashes │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ └── struct.xml │ │ │ │ ├── html │ │ │ │ │ ├── struct-members.html │ │ │ │ │ ├── struct.html │ │ │ │ │ └── trailingbackslashes.index │ │ │ │ └── webxml │ │ │ │ │ ├── struct.webxml │ │ │ │ │ └── trailingbackslashes.index │ │ │ ├── src │ │ │ │ ├── trailing_backslashes.cpp │ │ │ │ └── trailing_backslashes.h │ │ │ └── trailing_backslashes.qdocconf │ │ └── usingdirective │ │ │ ├── expected │ │ │ ├── docbook │ │ │ │ └── space.xml │ │ │ ├── html │ │ │ │ ├── space.html │ │ │ │ └── usingdirective.index │ │ │ └── webxml │ │ │ │ ├── space.webxml │ │ │ │ └── usingdirective.index │ │ │ ├── src │ │ │ ├── UsingDirective │ │ │ ├── alias.h │ │ │ ├── space.cpp │ │ │ └── space.h │ │ │ └── usingdirective.qdocconf │ │ └── tst_validateqdocoutputfiles.cpp ├── qev │ ├── CMakeLists.txt │ ├── README │ └── qev.cpp ├── qtattributionsscanner │ ├── CMakeLists.txt │ ├── jsongenerator.cpp │ ├── jsongenerator.h │ ├── logging.h │ ├── main.cpp │ ├── package.h │ ├── packagefilter.cpp │ ├── packagefilter.h │ ├── qdocgenerator.cpp │ ├── qdocgenerator.h │ ├── scanner.cpp │ └── scanner.h ├── qtdiag │ ├── CMakeLists.txt │ ├── main.cpp │ ├── qtdiag.cpp │ └── qtdiag.h ├── qtplugininfo │ ├── CMakeLists.txt │ └── qtplugininfo.cpp ├── shared │ ├── deviceskin │ │ ├── deviceskin.cpp │ │ ├── deviceskin_p.h │ │ └── skins │ │ │ ├── ClamshellPhone.skin │ │ │ ├── ClamshellPhone.skin │ │ │ ├── ClamshellPhone1-5-closed.png │ │ │ ├── ClamshellPhone1-5-pressed.png │ │ │ ├── ClamshellPhone1-5.png │ │ │ └── defaultbuttons.conf │ │ │ ├── PortableMedia.skin │ │ │ ├── PortableMedia.skin │ │ │ ├── defaultbuttons.conf │ │ │ ├── portablemedia-pressed.png │ │ │ ├── portablemedia.png │ │ │ └── portablemedia.xcf │ │ │ ├── S60-QVGA-Candybar.skin │ │ │ ├── S60-QVGA-Candybar-down.png │ │ │ ├── S60-QVGA-Candybar.png │ │ │ ├── S60-QVGA-Candybar.skin │ │ │ └── defaultbuttons.conf │ │ │ ├── S60-nHD-Touchscreen.skin │ │ │ ├── S60-nHD-Touchscreen-down.png │ │ │ ├── S60-nHD-Touchscreen.png │ │ │ ├── S60-nHD-Touchscreen.skin │ │ │ └── defaultbuttons.conf │ │ │ ├── SmartPhone.skin │ │ │ ├── SmartPhone-pressed.png │ │ │ ├── SmartPhone.png │ │ │ ├── SmartPhone.skin │ │ │ └── defaultbuttons.conf │ │ │ ├── SmartPhone2.skin │ │ │ ├── SmartPhone2-pressed.png │ │ │ ├── SmartPhone2.png │ │ │ ├── SmartPhone2.skin │ │ │ └── defaultbuttons.conf │ │ │ ├── SmartPhoneWithButtons.skin │ │ │ ├── SmartPhoneWithButtons-pressed.png │ │ │ ├── SmartPhoneWithButtons.png │ │ │ ├── SmartPhoneWithButtons.skin │ │ │ └── defaultbuttons.conf │ │ │ └── TouchscreenPhone.skin │ │ │ ├── TouchscreenPhone-pressed.png │ │ │ ├── TouchscreenPhone.png │ │ │ ├── TouchscreenPhone.skin │ │ │ └── defaultbuttons.conf │ ├── findwidget │ │ ├── abstractfindwidget.cpp │ │ ├── abstractfindwidget_p.h │ │ ├── images │ │ │ ├── mac │ │ │ │ ├── closetab.png │ │ │ │ ├── next.png │ │ │ │ ├── previous.png │ │ │ │ └── searchfind.png │ │ │ ├── win │ │ │ │ ├── closetab.png │ │ │ │ ├── next.png │ │ │ │ ├── previous.png │ │ │ │ └── searchfind.png │ │ │ └── wrap.png │ │ ├── itemviewfindwidget.cpp │ │ ├── itemviewfindwidget_p.h │ │ ├── texteditfindwidget.cpp │ │ └── texteditfindwidget_p.h │ ├── fontpanel │ │ ├── fontpanel.cpp │ │ └── fontpanel_p.h │ ├── qtgradienteditor │ │ ├── images │ │ │ ├── down.png │ │ │ ├── edit.png │ │ │ ├── editdelete.png │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ ├── spreadpad.png │ │ │ ├── spreadreflect.png │ │ │ ├── spreadrepeat.png │ │ │ ├── typeconical.png │ │ │ ├── typelinear.png │ │ │ ├── typeradial.png │ │ │ ├── up.png │ │ │ ├── zoomin.png │ │ │ └── zoomout.png │ │ ├── qtcolorbutton.cpp │ │ ├── qtcolorbutton_p.h │ │ ├── qtcolorline.cpp │ │ ├── qtcolorline_p.h │ │ ├── qtgradientdialog.cpp │ │ ├── qtgradientdialog.ui │ │ ├── qtgradientdialog_p.h │ │ ├── qtgradienteditor.cpp │ │ ├── qtgradienteditor.ui │ │ ├── qtgradienteditor_p.h │ │ ├── qtgradientmanager.cpp │ │ ├── qtgradientmanager_p.h │ │ ├── qtgradientstopscontroller.cpp │ │ ├── qtgradientstopscontroller_p.h │ │ ├── qtgradientstopsmodel.cpp │ │ ├── qtgradientstopsmodel_p.h │ │ ├── qtgradientstopswidget.cpp │ │ ├── qtgradientstopswidget_p.h │ │ ├── qtgradientutils.cpp │ │ ├── qtgradientutils_p.h │ │ ├── qtgradientview.cpp │ │ ├── qtgradientview.ui │ │ ├── qtgradientview_p.h │ │ ├── qtgradientviewdialog.cpp │ │ ├── qtgradientviewdialog.ui │ │ ├── qtgradientviewdialog_p.h │ │ ├── qtgradientwidget.cpp │ │ └── qtgradientwidget_p.h │ ├── qtpropertybrowser │ │ ├── images │ │ │ ├── cursor-arrow.png │ │ │ ├── cursor-busy.png │ │ │ ├── cursor-closedhand.png │ │ │ ├── cursor-cross.png │ │ │ ├── cursor-forbidden.png │ │ │ ├── cursor-hand.png │ │ │ ├── cursor-hsplit.png │ │ │ ├── cursor-ibeam.png │ │ │ ├── cursor-openhand.png │ │ │ ├── cursor-sizeall.png │ │ │ ├── cursor-sizeb.png │ │ │ ├── cursor-sizef.png │ │ │ ├── cursor-sizeh.png │ │ │ ├── cursor-sizev.png │ │ │ ├── cursor-uparrow.png │ │ │ ├── cursor-vsplit.png │ │ │ ├── cursor-wait.png │ │ │ └── cursor-whatsthis.png │ │ ├── qtbuttonpropertybrowser.cpp │ │ ├── qtbuttonpropertybrowser_p.h │ │ ├── qteditorfactory.cpp │ │ ├── qteditorfactory_p.h │ │ ├── qtgroupboxpropertybrowser.cpp │ │ ├── qtgroupboxpropertybrowser_p.h │ │ ├── qtpropertybrowser.cpp │ │ ├── qtpropertybrowser_p.h │ │ ├── qtpropertybrowserutils.cpp │ │ ├── qtpropertybrowserutils_p.h │ │ ├── qtpropertymanager.cpp │ │ ├── qtpropertymanager_p.h │ │ ├── qttreepropertybrowser.cpp │ │ ├── qttreepropertybrowser_p.h │ │ ├── qtvariantproperty.cpp │ │ └── qtvariantproperty_p.h │ └── qttoolbardialog │ │ ├── images │ │ ├── back.png │ │ ├── down.png │ │ ├── forward.png │ │ ├── minus.png │ │ ├── plus.png │ │ └── up.png │ │ ├── qttoolbardialog.cpp │ │ ├── qttoolbardialog.ui │ │ └── qttoolbardialog_p.h ├── uiplugin │ ├── CMakeLists.txt │ ├── customwidget.h │ ├── customwidget.qdoc │ └── qdesignerexportwidget.h └── uitools │ ├── CMakeLists.txt │ ├── doc │ ├── images │ │ ├── textfinder-example-find.webp │ │ ├── textfinder-example-find2.webp │ │ ├── textfinder-example.png │ │ └── uitools-examples.png │ ├── qtuitools.qdocconf │ ├── snippets │ │ └── quiloader │ │ │ ├── doc_src_qtuiloader.pro │ │ │ ├── main.cpp │ │ │ ├── myform.ui │ │ │ ├── mywidget.cpp │ │ │ ├── mywidget.h │ │ │ ├── mywidget.qrc │ │ │ └── quiloader.pro │ └── src │ │ ├── qtuitools-examples.qdoc │ │ ├── qtuitools-index.qdoc │ │ └── qtuitools-module.qdoc │ ├── qtuitoolsglobal.h │ ├── quiloader.cpp │ ├── quiloader.h │ └── quiloader_p.h ├── tests ├── CMakeLists.txt ├── README ├── auto │ ├── CMakeLists.txt │ ├── bic │ │ └── data │ │ │ ├── QtDesigner.6.0.0.linux-gcc-amd64.txt │ │ │ ├── QtDesigner.6.1.0.linux-gcc-amd64.txt │ │ │ ├── QtDesigner.6.2.0.linux-gcc-amd64.txt │ │ │ ├── QtHelp.6.0.0.linux-gcc-amd64.txt │ │ │ ├── QtHelp.6.1.0.linux-gcc-amd64.txt │ │ │ ├── QtHelp.6.2.0.linux-gcc-amd64.txt │ │ │ ├── QtUiTools.6.0.0.linux-gcc-amd64.txt │ │ │ ├── QtUiTools.6.1.0.linux-gcc-amd64.txt │ │ │ └── QtUiTools.6.2.0.linux-gcc-amd64.txt │ ├── cmake │ │ ├── CMakeLists.txt │ │ ├── linguist │ │ │ ├── CMakeLists.txt │ │ │ ├── build_time_checks.cmake │ │ │ ├── test_add_translation_macro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── myi18nobject.cpp │ │ │ │ ├── myobject_de.ts │ │ │ │ └── some_dir │ │ │ │ │ └── some_include.h │ │ │ ├── test_create_translation_macro │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── myi18nobject.cpp │ │ │ │ ├── myobject_de.ts │ │ │ │ └── some_dir │ │ │ │ │ └── some_include.h │ │ │ ├── test_create_translation_same_base_names │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── de │ │ │ │ │ └── myobject.ts │ │ │ │ ├── fr │ │ │ │ │ └── myobject.ts │ │ │ │ └── myi18nobject.cpp │ │ │ ├── test_i18n_auto_ts_file_names │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── lib.cpp │ │ │ │ └── subdir │ │ │ │ │ └── CMakeLists.txt │ │ │ ├── test_i18n_exclusion │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── apps │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── app1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── excluded1.cpp │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ ├── subdir │ │ │ │ │ │ │ ├── excluded2.cpp │ │ │ │ │ │ │ └── subdir3 │ │ │ │ │ │ │ │ └── excluded5.cpp │ │ │ │ │ │ └── subdir2 │ │ │ │ │ │ │ └── excluded4.cpp │ │ │ │ │ └── shared │ │ │ │ │ │ └── excluded3.cpp │ │ │ │ ├── check_ts_file.cmake │ │ │ │ ├── libs │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── lib1 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── lib1.cpp │ │ │ │ │ │ └── lib1.h │ │ │ │ │ └── lib2 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── lib2.cpp │ │ │ │ │ │ └── lib2.h │ │ │ │ ├── test_i18n_exclusion_de.ts.in │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── test1.cpp │ │ │ ├── test_i18n_filter_autogen_files │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── app1 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── mainwindow.ui │ │ │ │ ├── app2 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── mainwindow.ui │ │ │ │ └── check_ts_file.cmake │ │ │ ├── test_i18n_find_package_in_subdir │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── subdir │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── app1_de.ts │ │ │ │ │ └── main.cpp │ │ │ ├── test_i18n_merge_qt_translations │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── fake_translations │ │ │ │ │ └── qtbase_de.ts │ │ │ │ ├── main.cpp │ │ │ │ └── myapp_de.ts │ │ │ ├── test_i18n_merge_qt_translations_language_match │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── fake_translations │ │ │ │ │ └── qtbase_de.ts │ │ │ │ ├── main.cpp │ │ │ │ ├── myapp_de.ts │ │ │ │ ├── myapp_de_TSFOO_tag.ts │ │ │ │ ├── myapp_de_language_after_TS.ts │ │ │ │ └── myapp_de_newlines.ts │ │ │ ├── test_i18n_merge_qt_translations_select_catalogs │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── fake_translations │ │ │ │ │ ├── greenphone_de.ts │ │ │ │ │ └── qtbase_de.ts │ │ │ │ ├── main.cpp │ │ │ │ └── myapp_de.ts │ │ │ ├── test_i18n_source_language │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── lib.cpp │ │ │ │ ├── lib2_en.ts.in │ │ │ │ └── post_build_check.cmake │ │ │ ├── test_i18n_subdir │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── subdir │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── app1_de.ts │ │ │ │ │ └── main.cpp │ │ │ ├── test_i18n_subdir2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── subdir │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── app1_fr.ts │ │ │ │ │ └── main.cpp │ │ │ └── test_translation_api │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── myi18nobject.cpp │ │ │ │ ├── myobject_de.ts │ │ │ │ ├── post_build_check.cmake │ │ │ │ └── some_dir │ │ │ │ └── some_include.h │ │ ├── test_uiplugin_module │ │ │ ├── CMakeLists.txt │ │ │ └── my_designer_plugin.cpp │ │ └── test_uiplugin_via_designer │ │ │ ├── CMakeLists.txt │ │ │ └── my_designer_plugin.cpp │ ├── helpengineplugin │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ ├── elements.qml │ │ │ └── qtqml.qch │ │ └── tst_helpengineplugin.cpp │ ├── linguist │ │ ├── CMakeLists.txt │ │ ├── lconvert │ │ │ ├── CMakeLists.txt │ │ │ ├── data │ │ │ │ ├── REUSE.toml │ │ │ │ ├── codec-utf8.ts │ │ │ │ ├── emptymsg.ts │ │ │ │ ├── endless-po-loop.ts │ │ │ │ ├── idxmerge-add.ts │ │ │ │ ├── idxmerge.ts │ │ │ │ ├── idxmerge.ts.out │ │ │ │ ├── msgid.ts │ │ │ │ ├── phrasebook.qph │ │ │ │ ├── plurals-cn.ts │ │ │ │ ├── plurals-de.ts │ │ │ │ ├── relative.ts │ │ │ │ ├── singular.po │ │ │ │ ├── test-broken-utf8.po │ │ │ │ ├── test-broken-utf8.po.out │ │ │ │ ├── test-developer-comment.po │ │ │ │ ├── test-empty-comment.po │ │ │ │ ├── test-escapes.po │ │ │ │ ├── test-escapes.po.out │ │ │ │ ├── test-kde-ctxt.po │ │ │ │ ├── test-kde-fuzzy.po │ │ │ │ ├── test-kde-multiline.po │ │ │ │ ├── test-kde-plurals.po │ │ │ │ ├── test-refs.po │ │ │ │ ├── test-slurp.po │ │ │ │ ├── test-slurp.po.out │ │ │ │ ├── test-trans_seg.ts.out │ │ │ │ ├── test-trans_seg.xlf │ │ │ │ ├── test-translator-comment.po │ │ │ │ ├── test1-cn.po │ │ │ │ ├── test1-de.po │ │ │ │ ├── test20.ts │ │ │ │ ├── untranslated.qm │ │ │ │ ├── untranslated.ts │ │ │ │ ├── untranslated.ts.out │ │ │ │ ├── variants.ts │ │ │ │ ├── whitespace.ts │ │ │ │ └── wrapping.po │ │ │ └── tst_lconvert.cpp │ │ ├── lrelease │ │ │ ├── CMakeLists.txt │ │ │ ├── testdata │ │ │ │ ├── compressed.ts │ │ │ │ ├── dupes.errors │ │ │ │ ├── dupes.ts │ │ │ │ ├── idbased.ts │ │ │ │ ├── no-translations.pro │ │ │ │ └── translate.ts │ │ │ └── tst_lrelease.cpp │ │ └── lupdate │ │ │ ├── CMakeLists.txt │ │ │ ├── testdata │ │ │ ├── good │ │ │ │ ├── backslashes │ │ │ │ │ ├── lupdatecmd │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── src │ │ │ │ │ │ └── main.cpp │ │ │ │ │ └── ts │ │ │ │ │ │ └── project.ts.result │ │ │ │ ├── cmdline_deeppath │ │ │ │ │ ├── lupdatecmd │ │ │ │ │ └── project.ts.result │ │ │ │ ├── cmdline_order │ │ │ │ │ ├── a.h │ │ │ │ │ ├── b.h │ │ │ │ │ ├── lupdatecmd │ │ │ │ │ └── project.ts.result │ │ │ │ ├── cmdline_recurse │ │ │ │ │ ├── lupdatecmd │ │ │ │ │ └── project.ts.result │ │ │ │ ├── codecforsrc │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── from_subdir │ │ │ │ │ ├── lupdatecmd │ │ │ │ │ ├── project.ts.result │ │ │ │ │ ├── src │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ └── main.h │ │ │ │ │ └── translations │ │ │ │ │ │ └── translations.pro │ │ │ │ ├── heuristics │ │ │ │ │ ├── expectedoutput.txt │ │ │ │ │ ├── lupdatecmd │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.before │ │ │ │ │ └── project.ts.result │ │ │ │ ├── lacksqobject │ │ │ │ │ ├── expectedoutput.txt │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── language │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.before │ │ │ │ │ └── project.ts.result │ │ │ │ ├── merge_ordering │ │ │ │ │ ├── foo.cpp │ │ │ │ │ ├── lupdatecmd │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.before │ │ │ │ │ └── project.ts.result │ │ │ │ ├── merge_versions │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.before │ │ │ │ │ ├── project.ts.result │ │ │ │ │ └── project.ui │ │ │ │ ├── merge_whitespace │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.before │ │ │ │ │ └── project.ts.result │ │ │ │ ├── mergecpp │ │ │ │ │ ├── finddialog.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.before │ │ │ │ │ └── project.ts.result │ │ │ │ ├── mergecpp_noobsolete │ │ │ │ │ ├── finddialog.cpp │ │ │ │ │ ├── finddialog.h │ │ │ │ │ ├── lupdatecmd │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.before │ │ │ │ │ └── project.ts.result │ │ │ │ ├── mergecpp_obsolete │ │ │ │ │ ├── finddialog.cpp │ │ │ │ │ ├── finddialog.h │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.before │ │ │ │ │ └── project.ts.result │ │ │ │ ├── mergeui │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.before │ │ │ │ │ ├── project.ts.result │ │ │ │ │ └── project.ui │ │ │ │ ├── mergeui_obsolete │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.before │ │ │ │ │ ├── project.ts.result │ │ │ │ │ └── project.ui │ │ │ │ ├── multiple_locations │ │ │ │ │ ├── finddialog.cpp │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── namespaces │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── notargetlanguage │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.before │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parse_escaped_chars │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parse_special_chars │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parsecontexts │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parsecpp │ │ │ │ │ ├── excluded.cpp │ │ │ │ │ ├── expectedoutput.txt │ │ │ │ │ ├── finddialog.cpp │ │ │ │ │ ├── included.cpp │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── notincluded.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parsecpp2 │ │ │ │ │ ├── expectedoutput.txt │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── main.h │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parsecpp_template │ │ │ │ │ ├── expectedoutput │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.result │ │ │ │ │ └── template_classes.cpp │ │ │ │ ├── parsecpp_typed_enum │ │ │ │ │ ├── expectedoutput.txt │ │ │ │ │ ├── my_class.cpp │ │ │ │ │ ├── my_class.h │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parseidbasedui │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.result │ │ │ │ │ └── project.ui │ │ │ │ ├── parsejava │ │ │ │ │ ├── main.java │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parsejs │ │ │ │ │ ├── main.js │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parsejs2 │ │ │ │ │ ├── expectedoutput.txt │ │ │ │ │ ├── main.js │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parsejs3 │ │ │ │ │ ├── main.js │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parsejs4 │ │ │ │ │ ├── expectedoutput.txt │ │ │ │ │ ├── main.js │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parsejscontexts │ │ │ │ │ ├── main.js │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parsemjs │ │ │ │ │ ├── expectedoutput.txt │ │ │ │ │ ├── main.mjs │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parseobjc │ │ │ │ │ ├── main.mm │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parsepython │ │ │ │ │ ├── main.py │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parseqml │ │ │ │ │ ├── main.qml │ │ │ │ │ ├── main_test_pragma.qml │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parseqml2 │ │ │ │ │ ├── expectedoutput.txt │ │ │ │ │ ├── main.qml │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parseqml3 │ │ │ │ │ ├── expectedoutput.txt │ │ │ │ │ ├── main.qml │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parseqrc │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── main.js │ │ │ │ │ ├── main.qml │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.qrc │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parseqrc_json │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── main.js │ │ │ │ │ ├── main.qml │ │ │ │ │ ├── project.json │ │ │ │ │ ├── project.qrc │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parseui │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.result │ │ │ │ │ └── project.ui │ │ │ │ ├── prefix │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── main.h │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── preprocess │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── proparsing │ │ │ │ │ ├── features │ │ │ │ │ │ └── default_pre.prf │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── main.qml │ │ │ │ │ ├── main_mac.cpp │ │ │ │ │ ├── main_unix.cpp │ │ │ │ │ ├── main_win.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.result │ │ │ │ │ ├── qml │ │ │ │ │ │ ├── excluded.cpp │ │ │ │ │ │ └── notmain.qml │ │ │ │ │ ├── vpaths │ │ │ │ │ │ └── dependpath │ │ │ │ │ │ │ └── main_dependpath.cpp │ │ │ │ │ ├── wildcard │ │ │ │ │ │ ├── main1.cpp │ │ │ │ │ │ └── mainfile.cpp │ │ │ │ │ ├── wildcard1.cpp │ │ │ │ │ └── wildcard99.cpp │ │ │ │ ├── proparsing2 │ │ │ │ │ ├── a │ │ │ │ │ ├── a.cpp │ │ │ │ │ ├── b │ │ │ │ │ ├── b.cpp │ │ │ │ │ ├── e │ │ │ │ │ ├── f │ │ │ │ │ │ └── g.cpp │ │ │ │ │ ├── files-cc.txt │ │ │ │ │ ├── include.h │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.result │ │ │ │ │ ├── spaces │ │ │ │ │ │ └── z │ │ │ │ │ ├── variable_with_spaces │ │ │ │ │ ├── with │ │ │ │ │ └── x │ │ │ │ │ │ ├── d │ │ │ │ │ │ └── variable │ │ │ │ ├── proparsingpaths │ │ │ │ │ ├── file1.cpp │ │ │ │ │ ├── filter.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.result │ │ │ │ │ └── sub │ │ │ │ │ │ ├── sub.pri │ │ │ │ │ │ ├── subfile1.cpp │ │ │ │ │ │ └── subfilter.cpp │ │ │ │ ├── proparsingpri │ │ │ │ │ ├── common │ │ │ │ │ │ ├── common.pri │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ └── main.pri │ │ │ │ │ ├── mac │ │ │ │ │ │ ├── mac.pri │ │ │ │ │ │ └── main_mac.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.result │ │ │ │ │ ├── relativity │ │ │ │ │ │ ├── relativity.cpp │ │ │ │ │ │ ├── relativity.pri │ │ │ │ │ │ ├── sub │ │ │ │ │ │ │ └── sub.pri │ │ │ │ │ │ └── sub2 │ │ │ │ │ │ │ └── sub2.pri │ │ │ │ │ ├── unix │ │ │ │ │ │ ├── main_unix.cpp │ │ │ │ │ │ └── unix.pri │ │ │ │ │ └── win │ │ │ │ │ │ ├── main_win.cpp │ │ │ │ │ │ └── win.pri │ │ │ │ ├── proparsingsubdirs │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.result │ │ │ │ │ └── sub1 │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ └── sub1.pro │ │ │ │ ├── proparsingsubs │ │ │ │ │ ├── common │ │ │ │ │ │ ├── common.pro │ │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── excluded │ │ │ │ │ │ ├── excluded.pro │ │ │ │ │ │ └── main.cpp │ │ │ │ │ ├── lupdatecmd │ │ │ │ │ ├── mac │ │ │ │ │ │ ├── mac.pro │ │ │ │ │ │ └── main_mac.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.result │ │ │ │ │ ├── sub │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ └── test.h │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ └── test.cpp │ │ │ │ │ │ └── sub.pro │ │ │ │ │ ├── unix │ │ │ │ │ │ ├── main_unix.cpp │ │ │ │ │ │ └── unix.pro │ │ │ │ │ └── win │ │ │ │ │ │ ├── main_win.cpp │ │ │ │ │ │ └── win.pro │ │ │ │ ├── recurse_full │ │ │ │ │ ├── expectedoutput.txt │ │ │ │ │ ├── lupdatecmd │ │ │ │ │ ├── project.ts.result │ │ │ │ │ └── project_sub.ts.result │ │ │ │ ├── recurse_full_ts │ │ │ │ │ ├── expectedoutput.txt │ │ │ │ │ ├── lupdatecmd │ │ │ │ │ ├── project.ts.result │ │ │ │ │ ├── project_sub.ts.before │ │ │ │ │ └── project_sub.ts.result │ │ │ │ ├── recurse_full_ts_join │ │ │ │ │ ├── expectedoutput.txt │ │ │ │ │ ├── lupdatecmd │ │ │ │ │ └── project.ts.result │ │ │ │ ├── recurse_part │ │ │ │ │ ├── expectedoutput.txt │ │ │ │ │ ├── lupdatecmd │ │ │ │ │ ├── project.ts.before │ │ │ │ │ ├── project.ts.result │ │ │ │ │ └── project_sub.ts.result │ │ │ │ ├── recurse_part_ts │ │ │ │ │ ├── expectedoutput.txt │ │ │ │ │ ├── lupdatecmd │ │ │ │ │ ├── project.ts.result │ │ │ │ │ ├── project_sub.ts.before │ │ │ │ │ └── project_sub.ts.result │ │ │ │ ├── reloutput │ │ │ │ │ ├── lupdatecmd │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ └── translations │ │ │ │ │ │ └── project.ts.result │ │ │ │ ├── resources_cmdline │ │ │ │ │ ├── lupdatecmd │ │ │ │ │ ├── main.js │ │ │ │ │ ├── main.qml │ │ │ │ │ ├── project.qrc │ │ │ │ │ └── project.ts.result │ │ │ │ ├── respfile │ │ │ │ │ ├── lupdatecmd │ │ │ │ │ ├── project.ts.result │ │ │ │ │ ├── source1.cpp │ │ │ │ │ ├── source2.cpp │ │ │ │ │ ├── sources.lst │ │ │ │ │ └── tsfiles.lst │ │ │ │ ├── textsimilarity │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.ts.before │ │ │ │ │ ├── project.ts.result │ │ │ │ │ └── project.ui │ │ │ │ ├── tr_function_alias │ │ │ │ │ ├── lupdatecmd │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── main.qml │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ └── using_namespaces │ │ │ │ │ ├── file.cpp │ │ │ │ │ ├── file.h │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ ├── recursivescan │ │ │ │ ├── main.cpp │ │ │ │ ├── project.ui │ │ │ │ └── sub │ │ │ │ │ ├── filetypes │ │ │ │ │ ├── main.c++ │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── main.cxx │ │ │ │ │ └── finddialog.cpp │ │ │ ├── subdirs_full │ │ │ │ ├── project.pro │ │ │ │ ├── subdir1 │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── subdir1.pro │ │ │ │ └── subdir2 │ │ │ │ │ ├── subdir2.pro │ │ │ │ │ ├── subsub1 │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── subsub1.pro │ │ │ │ │ └── subsub2 │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── subsub2.pro │ │ │ └── subdirs_part │ │ │ │ ├── project.pro │ │ │ │ ├── subdir1 │ │ │ │ ├── main.cpp │ │ │ │ └── subdir1.pro │ │ │ │ └── subdir2 │ │ │ │ ├── subdir2.pro │ │ │ │ ├── subsub1 │ │ │ │ ├── main.cpp │ │ │ │ └── subsub1.pro │ │ │ │ └── subsub2 │ │ │ │ ├── main.cpp │ │ │ │ └── subsub2.pro │ │ │ └── tst_lupdate.cpp │ ├── qdoc │ │ └── CMakeLists.txt │ ├── qhelpcontentmodel │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ ├── collection.qhc │ │ │ ├── qmake-3.3.8.qch │ │ │ ├── qmake-4.3.0.qch │ │ │ └── test.qch │ │ └── tst_qhelpcontentmodel.cpp │ ├── qhelpenginecore │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ ├── collection.qhc │ │ │ ├── collection1.qhc │ │ │ ├── linguist-3.3.8.qch │ │ │ ├── qmake-3.3.8.qch │ │ │ ├── qmake-4.3.0.qch │ │ │ ├── test.html │ │ │ └── test.qch │ │ └── tst_qhelpenginecore.cpp │ ├── qhelpgenerator │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ ├── cars.html │ │ │ ├── classic.css │ │ │ ├── fancy.html │ │ │ ├── people.html │ │ │ ├── sub │ │ │ │ └── about.html │ │ │ ├── test.html │ │ │ └── test.qhp │ │ └── tst_qhelpgenerator.cpp │ ├── qhelpindexmodel │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ ├── collection.qhc │ │ │ ├── collection1.qhc │ │ │ ├── linguist-3.3.8.qch │ │ │ ├── qmake-3.3.8.qch │ │ │ ├── qmake-4.3.0.qch │ │ │ ├── test.html │ │ │ └── test.qch │ │ └── tst_qhelpindexmodel.cpp │ ├── qhelpprojectdata │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ └── test.qhp │ │ └── tst_qhelpprojectdata.cpp │ ├── qtattributionsscanner │ │ ├── CMakeLists.txt │ │ ├── testdata │ │ │ ├── good │ │ │ │ ├── chromium │ │ │ │ │ └── README_test.chromium │ │ │ │ ├── complete │ │ │ │ │ └── qt_attribution_test.json │ │ │ │ ├── expected.error │ │ │ │ ├── expected.json │ │ │ │ ├── licenses-dir │ │ │ │ │ ├── expected.error │ │ │ │ │ ├── expected.json │ │ │ │ │ └── qt_attribution_test.json │ │ │ │ ├── local_license │ │ │ │ │ ├── LICENSE.Id1.txt │ │ │ │ │ ├── LICENSE.Id2.txt │ │ │ │ │ ├── expected.error │ │ │ │ │ ├── expected.json │ │ │ │ │ └── qt_attribution_test.json │ │ │ │ ├── minimal │ │ │ │ │ ├── expected.error │ │ │ │ │ ├── expected.json │ │ │ │ │ └── qt_attribution_test.json │ │ │ │ └── variants │ │ │ │ │ ├── COPYRIGHT.txt │ │ │ │ │ ├── LICENSE.1.txt │ │ │ │ │ ├── LICENSE.2.txt │ │ │ │ │ ├── expected.error │ │ │ │ │ ├── expected.json │ │ │ │ │ └── qt_attribution_test.json │ │ │ └── warnings │ │ │ │ ├── incomplete │ │ │ │ ├── expected.error │ │ │ │ └── qt_attribution_test.json │ │ │ │ └── unknown │ │ │ │ ├── expected.error │ │ │ │ └── qt_attribution_test.json │ │ └── tst_qtattributionsscanner.cpp │ └── qtdiag │ │ ├── CMakeLists.txt │ │ └── tst_qtdiag.cpp ├── global │ └── global.cfg └── manual │ ├── CMakeLists.txt │ ├── manual.pro │ └── qtattributionsscanner │ ├── CMakeLists.txt │ ├── data │ ├── LICENSE │ └── qt_attribution_test.json │ ├── overview.qdoc │ ├── qtattributionsscanner.pro │ └── test.qdocconf └── util └── recolordocsicons ├── README.md └── recolordocsicons.py /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "src/assistant/qlitehtml"] 2 | path = src/assistant/qlitehtml 3 | url = https://code.qt.io/playground/qlitehtml.git 4 | -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- 1 | [gerrit] 2 | host=codereview.qt-project.org 3 | project=qt/qttools 4 | defaultbranch=dev 5 | -------------------------------------------------------------------------------- /.tag: -------------------------------------------------------------------------------- 1 | f7efd5d856656df7293629196b42fbef18ef9efd 2 | -------------------------------------------------------------------------------- /examples/assistant/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | qt_internal_add_example(simpletextviewer) 2 | qt_internal_add_example(remotecontrol) 3 | -------------------------------------------------------------------------------- /examples/assistant/assistant.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | CONFIG += ordered 3 | 4 | SUBDIRS += simpletextviewer \ 5 | remotecontrol 6 | -------------------------------------------------------------------------------- /examples/assistant/doc/images/remotecontrol-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/assistant/doc/images/remotecontrol-example.png -------------------------------------------------------------------------------- /examples/assistant/doc/images/simpletextviewer-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/assistant/doc/images/simpletextviewer-example.png -------------------------------------------------------------------------------- /examples/assistant/doc/images/simpletextviewer-findfiledialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/assistant/doc/images/simpletextviewer-findfiledialog.png -------------------------------------------------------------------------------- /examples/assistant/doc/images/simpletextviewer-mainwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/assistant/doc/images/simpletextviewer-mainwindow.png -------------------------------------------------------------------------------- /examples/assistant/remotecontrol/enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/assistant/remotecontrol/enter.png -------------------------------------------------------------------------------- /examples/assistant/remotecontrol/remotecontrol.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | enter.png 4 | 5 | 6 | -------------------------------------------------------------------------------- /examples/assistant/simpletextviewer/documentation/images/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/assistant/simpletextviewer/documentation/images/browse.png -------------------------------------------------------------------------------- /examples/assistant/simpletextviewer/documentation/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/assistant/simpletextviewer/documentation/images/icon.png -------------------------------------------------------------------------------- /examples/assistant/simpletextviewer/documentation/images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/assistant/simpletextviewer/documentation/images/open.png -------------------------------------------------------------------------------- /examples/designer/calculatorbuilder/calculatorbuilder.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | calculatorform.ui 4 | 5 | 6 | -------------------------------------------------------------------------------- /examples/designer/doc/images/calculatorbuilder-example.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/designer/doc/images/calculatorbuilder-example.webp -------------------------------------------------------------------------------- /examples/designer/doc/images/calculatorform-example.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/designer/doc/images/calculatorform-example.webp -------------------------------------------------------------------------------- /examples/designer/doc/images/containerextension-example.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/designer/doc/images/containerextension-example.webp -------------------------------------------------------------------------------- /examples/designer/doc/images/customwidgetplugin-example.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/designer/doc/images/customwidgetplugin-example.webp -------------------------------------------------------------------------------- /examples/designer/doc/images/taskmenuextension-dialog.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/designer/doc/images/taskmenuextension-dialog.webp -------------------------------------------------------------------------------- /examples/designer/doc/images/taskmenuextension-example.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/designer/doc/images/taskmenuextension-example.webp -------------------------------------------------------------------------------- /examples/designer/doc/images/taskmenuextension-menu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/designer/doc/images/taskmenuextension-menu.webp -------------------------------------------------------------------------------- /examples/examples.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | qtHaveModule(widgets): SUBDIRS += help designer linguist uitools assistant 3 | 4 | !qtConfig(process): SUBDIRS -= assistant designer 5 | -------------------------------------------------------------------------------- /examples/help/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | qt_internal_add_example(contextsensitivehelp) 2 | -------------------------------------------------------------------------------- /examples/help/contextsensitivehelp/docs/wateringmachine.qch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/help/contextsensitivehelp/docs/wateringmachine.qch -------------------------------------------------------------------------------- /examples/help/contextsensitivehelp/docs/wateringmachine.qhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/help/contextsensitivehelp/docs/wateringmachine.qhc -------------------------------------------------------------------------------- /examples/help/doc/images/context-sensitive-help-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/help/doc/images/context-sensitive-help-example.png -------------------------------------------------------------------------------- /examples/help/help.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | CONFIG += ordered 3 | 4 | SUBDIRS += contextsensitivehelp 5 | -------------------------------------------------------------------------------- /examples/linguist/arrowpad/arrowpad_fr.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/linguist/arrowpad/arrowpad_nl.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/linguist/doc/images/linguist-arrowpad_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/linguist/doc/images/linguist-arrowpad_en.png -------------------------------------------------------------------------------- /examples/linguist/doc/images/linguist-arrowpad_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/linguist/doc/images/linguist-arrowpad_fr.png -------------------------------------------------------------------------------- /examples/linguist/doc/images/linguist-arrowpad_nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/linguist/doc/images/linguist-arrowpad_nl.png -------------------------------------------------------------------------------- /examples/linguist/doc/images/linguist-hellotr_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/linguist/doc/images/linguist-hellotr_en.png -------------------------------------------------------------------------------- /examples/linguist/doc/images/linguist-hellotr_la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/linguist/doc/images/linguist-hellotr_la.png -------------------------------------------------------------------------------- /examples/linguist/doc/images/linguist-i18n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/linguist/doc/images/linguist-i18n.png -------------------------------------------------------------------------------- /examples/linguist/doc/images/linguist-trollprint_10_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/linguist/doc/images/linguist-trollprint_10_en.png -------------------------------------------------------------------------------- /examples/linguist/doc/images/linguist-trollprint_10_pt_bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/linguist/doc/images/linguist-trollprint_10_pt_bad.png -------------------------------------------------------------------------------- /examples/linguist/doc/images/linguist-trollprint_10_pt_good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/linguist/doc/images/linguist-trollprint_10_pt_good.png -------------------------------------------------------------------------------- /examples/linguist/doc/images/linguist-trollprint_11_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/linguist/doc/images/linguist-trollprint_11_en.png -------------------------------------------------------------------------------- /examples/linguist/doc/images/linguist-trollprint_11_pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/linguist/doc/images/linguist-trollprint_11_pt.png -------------------------------------------------------------------------------- /examples/linguist/hellotr/hellotr_la.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/linguist/linguist.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = arrowpad \ 3 | hellotr \ 4 | i18n \ 5 | trollprint 6 | -------------------------------------------------------------------------------- /examples/uitools/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | qt_internal_add_example(textfinder) 2 | -------------------------------------------------------------------------------- /examples/uitools/doc/images/textfinder-example-userinterface.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/examples/uitools/doc/images/textfinder-example-userinterface.webp -------------------------------------------------------------------------------- /examples/uitools/textfinder/textfinder.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | forms/textfinder.ui 4 | forms/input.txt 5 | 6 | -------------------------------------------------------------------------------- /examples/uitools/uitools.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = textfinder 3 | -------------------------------------------------------------------------------- /qt_cmdline.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/qt_cmdline.cmake -------------------------------------------------------------------------------- /src/assistant/assistant/assistant.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/assistant.icns -------------------------------------------------------------------------------- /src/assistant/assistant/assistant.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/assistant.ico -------------------------------------------------------------------------------- /src/assistant/assistant/doc/images/assistant-assistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/doc/images/assistant-assistant.png -------------------------------------------------------------------------------- /src/assistant/assistant/doc/images/assistant-bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/doc/images/assistant-bookmarks.png -------------------------------------------------------------------------------- /src/assistant/assistant/doc/images/assistant-dockwidgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/doc/images/assistant-dockwidgets.png -------------------------------------------------------------------------------- /src/assistant/assistant/doc/images/assistant-examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/doc/images/assistant-examples.png -------------------------------------------------------------------------------- /src/assistant/assistant/doc/images/assistant-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/doc/images/assistant-index.png -------------------------------------------------------------------------------- /src/assistant/assistant/doc/images/assistant-preferences-filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/doc/images/assistant-preferences-filters.png -------------------------------------------------------------------------------- /src/assistant/assistant/doc/images/assistant-preferences-fonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/doc/images/assistant-preferences-fonts.png -------------------------------------------------------------------------------- /src/assistant/assistant/doc/images/assistant-preferences-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/doc/images/assistant-preferences-options.png -------------------------------------------------------------------------------- /src/assistant/assistant/doc/images/assistant-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/doc/images/assistant-search.png -------------------------------------------------------------------------------- /src/assistant/assistant/doc/internal/internal.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = aux 2 | QMAKE_DOCS = $$PWD/assistant.qdocconf 3 | -------------------------------------------------------------------------------- /src/assistant/assistant/images/assistant-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/assistant-128.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/assistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/assistant.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/bookmark.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/closebutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/closebutton.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/darkclosebutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/darkclosebutton.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/mac/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/mac/book.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/mac/closetab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/mac/closetab.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/mac/editcopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/mac/editcopy.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/mac/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/mac/find.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/mac/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/mac/home.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/mac/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/mac/next.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/mac/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/mac/previous.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/mac/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/mac/print.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/mac/resetzoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/mac/resetzoom.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/mac/synctoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/mac/synctoc.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/mac/zoomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/mac/zoomin.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/mac/zoomout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/mac/zoomout.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/win/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/win/book.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/win/closetab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/win/closetab.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/win/editcopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/win/editcopy.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/win/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/win/find.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/win/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/win/home.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/win/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/win/next.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/win/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/win/previous.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/win/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/win/print.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/win/resetzoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/win/resetzoom.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/win/synctoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/win/synctoc.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/win/zoomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/win/zoomin.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/win/zoomout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/win/zoomout.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/wrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/assistant/images/wrap.png -------------------------------------------------------------------------------- /src/assistant/help/images/1leftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/help/images/1leftarrow.png -------------------------------------------------------------------------------- /src/assistant/help/images/1rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/help/images/1rightarrow.png -------------------------------------------------------------------------------- /src/assistant/help/images/3leftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/help/images/3leftarrow.png -------------------------------------------------------------------------------- /src/assistant/help/images/3rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/help/images/3rightarrow.png -------------------------------------------------------------------------------- /src/assistant/help/images/mac/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/help/images/mac/minus.png -------------------------------------------------------------------------------- /src/assistant/help/images/mac/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/help/images/mac/plus.png -------------------------------------------------------------------------------- /src/assistant/help/images/win/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/help/images/win/minus.png -------------------------------------------------------------------------------- /src/assistant/help/images/win/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/assistant/help/images/win/plus.png -------------------------------------------------------------------------------- /src/designer/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2022 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | if(NOT QT_FEATURE_designer) 5 | return() 6 | endif() 7 | add_subdirectory(src) 8 | -------------------------------------------------------------------------------- /src/designer/src/components/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2022 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | add_subdirectory(lib) 5 | -------------------------------------------------------------------------------- /src/designer/src/components/buddyeditor/buddyeditor.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/color.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/configure.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/downplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/downplus.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/dropdownbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/dropdownbutton.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/edit.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/editdelete-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/editdelete-16.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/emptyicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/emptyicon.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/filenew-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/filenew-16.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/fileopen-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/fileopen-16.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/leveldown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/leveldown.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/levelup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/levelup.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/adjustsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/adjustsize.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/back.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/buddytool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/buddytool.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/down.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/editcopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/editcopy.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/editcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/editcut.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/editdelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/editdelete.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/editform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/editform.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/editgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/editgrid.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/edithlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/edithlayout.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/editlower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/editlower.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/editpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/editpaste.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/editraise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/editraise.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/editvlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/editvlayout.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/filenew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/filenew.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/fileopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/fileopen.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/filesave.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/forward.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/insertimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/insertimage.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/minus.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/plus.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/redo.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/resetproperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/resetproperty.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/signalslottool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/signalslottool.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/tabordertool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/tabordertool.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/textanchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/textanchor.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/textbold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/textbold.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/textcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/textcenter.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/textitalic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/textitalic.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/textjustify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/textjustify.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/textleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/textleft.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/textright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/textright.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/textsubscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/textsubscript.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/textunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/textunder.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/undo.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/up.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/mac/widgettool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/mac/widgettool.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/minus-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/minus-16.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/prefix-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/prefix-add.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/qtlogo128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/qtlogo128x128.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/qtlogo16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/qtlogo16x16.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/qtlogo24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/qtlogo24x24.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/qtlogo32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/qtlogo32x32.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/qtlogo64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/qtlogo64x64.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/reload.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/resetproperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/resetproperty.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/righttoleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/righttoleft.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/sort.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/submenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/submenu.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/checkbox.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/columnview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/columnview.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/combobox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/combobox.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/dateedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/dateedit.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/dial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/dial.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/dockwidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/dockwidget.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/frame.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/groupbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/groupbox.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/hscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/hscrollbar.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/hslider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/hslider.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/label.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/lcdnumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/lcdnumber.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/line.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/lineedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/lineedit.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/listbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/listbox.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/listview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/listview.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/mdiarea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/mdiarea.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/progress.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/pushbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/pushbutton.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/scrollarea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/scrollarea.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/spacer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/spacer.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/spinbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/spinbox.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/table.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/tabwidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/tabwidget.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/textedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/textedit.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/timeedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/timeedit.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/toolbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/toolbox.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/toolbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/toolbutton.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/vline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/vline.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/vscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/vscrollbar.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/vslider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/vslider.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/vspacer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/vspacer.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/widgets/widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/widgets/widget.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/adjustsize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/adjustsize.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/back.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/buddytool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/buddytool.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/down.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/editcopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/editcopy.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/editcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/editcut.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/editdelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/editdelete.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/editform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/editform.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/editgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/editgrid.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/edithlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/edithlayout.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/editlower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/editlower.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/editpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/editpaste.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/editraise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/editraise.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/editvlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/editvlayout.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/filenew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/filenew.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/fileopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/fileopen.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/filesave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/filesave.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/forward.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/insertimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/insertimage.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/minus.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/plus.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/redo.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/signalslottool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/signalslottool.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/tabordertool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/tabordertool.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/textanchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/textanchor.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/textbold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/textbold.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/textcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/textcenter.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/textitalic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/textitalic.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/textjustify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/textjustify.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/textleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/textleft.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/textright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/textright.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/textsubscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/textsubscript.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/textunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/textunder.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/undo.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/up.png -------------------------------------------------------------------------------- /src/designer/src/components/formeditor/images/win/widgettool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/components/formeditor/images/win/widgettool.png -------------------------------------------------------------------------------- /src/designer/src/components/signalsloteditor/signalsloteditor.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/designer/src/components/tabordereditor/tabordereditor.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/designer/src/designer/designer.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/designer.icns -------------------------------------------------------------------------------- /src/designer/src/designer/designer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/designer.ico -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-action-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-action-editor.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-add-custom-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-add-custom-toolbar.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-add-files-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-add-files-button.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-adding-dockwidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-adding-dockwidget.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-adding-menu-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-adding-menu-action.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-buddy-making.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-buddy-making.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-buddy-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-buddy-mode.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-buddy-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-buddy-tool.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-choosing-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-choosing-form.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-code-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-code-viewer.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-connection-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-connection-dialog.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-connection-editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-connection-editing.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-connection-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-connection-editor.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-connection-making.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-connection-making.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-connection-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-connection-mode.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-connection-to-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-connection-to-form.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-connection-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-connection-tool.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-containers-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-containers-frame.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-containers-toolbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-containers-toolbox.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-creating-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-creating-menu.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-creating-menu1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-creating-menu1.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-creating-menu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-creating-menu2.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-creating-menu3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-creating-menu3.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-creating-menu4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-creating-menu4.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-creating-menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-creating-menubar.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-creating-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-creating-toolbar.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-custom-widget-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-custom-widget-box.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-customize-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-customize-toolbar.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-dialog-final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-dialog-final.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-dialog-initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-dialog-initial.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-dialog-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-dialog-layout.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-dialog-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-dialog-preview.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-disambiguation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-disambiguation.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-dragging-onto-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-dragging-onto-form.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-edit-resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-edit-resource.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-editing-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-editing-mode.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-embedded-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-embedded-preview.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-english-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-english-dialog.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-examples.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-file-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-file-menu.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-find-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-find-icon.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-form-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-form-layout.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-form-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-form-settings.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-form-viewcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-form-viewcode.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-french-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-french-dialog.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-getting-started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-getting-started.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-layout-inserting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-layout-inserting.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-main-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-main-window.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-making-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-making-connection.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-object-inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-object-inspector.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-palette-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-palette-editor.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-preview-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-preview-style.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-preview-stylesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-preview-stylesheet.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-promoting-widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-promoting-widgets.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-property-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-property-editor.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-removing-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-removing-toolbar.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-resource-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-resource-browser.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-resource-selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-resource-selector.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-resource-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-resource-tool.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-resources-adding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-resources-adding.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-resources-editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-resources-editing.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-resources-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-resources-empty.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-resources-using.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-resources-using.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-screenshot.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-selecting-widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-selecting-widget.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-selecting-widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-selecting-widgets.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-set-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-set-layout.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-set-layout2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-set-layout2.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-splitter-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-splitter-layout.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-stylesheet-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-stylesheet-options.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-stylesheet-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-stylesheet-usage.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-tab-order-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-tab-order-mode.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-tab-order-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-tab-order-tool.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-widget-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-widget-box.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-widget-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-widget-filter.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-widget-final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-widget-final.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-widget-initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-widget-initial.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-widget-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-widget-layout.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-widget-morph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-widget-morph.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-widget-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-widget-preview.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/designer-widget-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/designer-widget-tool.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/qtdesignerextensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/qtdesignerextensions.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/qtdesignerscreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/qtdesignerscreenshot.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/rgbController-arrangement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/rgbController-arrangement.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/rgbController-final-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/rgbController-final-layout.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/images/rgbController-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/doc/images/rgbController-screenshot.png -------------------------------------------------------------------------------- /src/designer/src/designer/doc/snippets/imagedialog/imagedialog.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = app 2 | QT += widgets 3 | FORMS = imagedialog.ui 4 | SOURCES = main.cpp 5 | -------------------------------------------------------------------------------- /src/designer/src/designer/doc/snippets/uitools/calculatorform/calculatorform.pro: -------------------------------------------------------------------------------- 1 | #! [0] 2 | TEMPLATE = app 3 | FORMS = calculatorform.ui 4 | SOURCES = main.cpp 5 | #! [0] 6 | -------------------------------------------------------------------------------- /src/designer/src/designer/images/designer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/images/designer.png -------------------------------------------------------------------------------- /src/designer/src/designer/uifile.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/designer/uifile.icns -------------------------------------------------------------------------------- /src/designer/src/plugins/activeqt/activeqt.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/designer/src/plugins/qquickwidget/images/qquickwidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/plugins/qquickwidget/images/qquickwidget.png -------------------------------------------------------------------------------- /src/designer/src/plugins/qwebview/images/qwebview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/designer/src/plugins/qwebview/images/qwebview.png -------------------------------------------------------------------------------- /src/designer/src/plugins/qwebview/qwebview.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/distancefieldgenerator/doc/images/distancefieldgenerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/distancefieldgenerator/doc/images/distancefieldgenerator.png -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/front-coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/front-coding.png -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/front-publishing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/front-publishing.png -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/front-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/front-ui.png -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/linguist-batchtranslation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/linguist-batchtranslation.png -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/linguist-check-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/linguist-check-empty.png -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/linguist-check-obsolete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/linguist-check-obsolete.png -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/linguist-check-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/linguist-check-off.png -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/linguist-check-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/linguist-check-on.png -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/linguist-check-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/linguist-check-warning.png -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/linguist-context-view.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/linguist-context-view.webp -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/linguist-danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/linguist-danger.png -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/linguist-doneandnext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/linguist-doneandnext.png -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/linguist-examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/linguist-examples.png -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/linguist-linguist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/linguist-linguist.png -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/linguist-linguist_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/linguist-linguist_2.png -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/linguist-phrasebookdialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/linguist-phrasebookdialog.png -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/linguist-strings-view.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/linguist-strings-view.webp -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/linguist-ui.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/linguist-ui.webp -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/next.png -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/nextunfinished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/nextunfinished.png -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/xNIz78IPBu0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/doc/images/xNIz78IPBu0.jpg -------------------------------------------------------------------------------- /src/linguist/linguist/images/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/alert.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/appicon.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/check.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/check-ampersands-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/check-ampersands-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/check-ampersands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/check-ampersands.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/check-ending-pontuation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/check-ending-pontuation.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/check-phrase-suggestions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/check-phrase-suggestions.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/check-place-markers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/check-place-markers.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/check-white-spaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/check-white-spaces.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/copy-general-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/copy-general-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/copy-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/copy-general.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/cut-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/cut-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/cut.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/hit-help-chosen-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/hit-help-chosen-option.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/library-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/library-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/library.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/minus-square-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/minus-square-fill.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/next-translation-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/next-translation-item.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/open-new-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/open-new-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/open-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/open-new.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/paste-general-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/paste-general-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/paste-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/paste-general.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/plus-square-fill-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/plus-square-fill-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/plus-square-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/plus-square-fill.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/previous-translation-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/previous-translation-item.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/print-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/print-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/print.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/redo-arrow-right-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/redo-arrow-right-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/redo-arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/redo-arrow-right.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/save-fl-disk-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/save-fl-disk-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/save-fl-disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/save-fl-disk.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/search-magnifier-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/search-magnifier-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/search-magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/search-magnifier.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/undo-arrow-left-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/undo-arrow-left-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkicons/undo-arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkicons/undo-arrow-left.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkmarks/danger-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkmarks/danger-mark.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkmarks/empty-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkmarks/empty-mark.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkmarks/obsolete-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkmarks/obsolete-mark.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkmarks/off-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkmarks/off-mark.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkmarks/on-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkmarks/on-mark.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/darkmarks/warning-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/darkmarks/warning-mark.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/icons/linguist-128-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/icons/linguist-128-32.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/check-ampersands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/check-ampersands.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/check-ending-pontuation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/check-ending-pontuation.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/check-phrase-suggestions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/check-phrase-suggestions.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/check-place-markers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/check-place-markers.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/check-white-spaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/check-white-spaces.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/copy-general-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/copy-general-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/copy-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/copy-general.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/cut-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/cut-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/cut.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/hit-help-chosen-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/hit-help-chosen-option.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/library-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/library-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/library.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/minus-square-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/minus-square-fill.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/next-translation-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/next-translation-item.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/open-new-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/open-new-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/open-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/open-new.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/paste-general-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/paste-general-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/paste-general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/paste-general.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/plus-square-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/plus-square-fill.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/print-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/print-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/print.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/redo-arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/redo-arrow-right.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/save-fl-disk-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/save-fl-disk-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/save-fl-disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/save-fl-disk.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/search-magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/search-magnifier.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/undo-arrow-left-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/undo-arrow-left-disabled.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lighticons/undo-arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lighticons/undo-arrow-left.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lightmarks/danger-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lightmarks/danger-mark.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lightmarks/empty-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lightmarks/empty-mark.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lightmarks/obsolete-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lightmarks/obsolete-mark.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lightmarks/off-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lightmarks/off-mark.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lightmarks/on-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lightmarks/on-mark.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/lightmarks/warning-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/lightmarks/warning-mark.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/menu-dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/images/menu-dots.png -------------------------------------------------------------------------------- /src/linguist/linguist/linguist.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/linguist.icns -------------------------------------------------------------------------------- /src/linguist/linguist/linguist.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/linguist/linguist/linguist.ico -------------------------------------------------------------------------------- /src/linguist/lupdate-pro/lupdate-pro.rc: -------------------------------------------------------------------------------- 1 | #define RT_MANIFEST 24 2 | #define CREATEPROCESS_MANIFEST_RESOURCE_ID 1 3 | 4 | CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "lupdate-pro.exe.manifest" 5 | -------------------------------------------------------------------------------- /src/linguist/lupdate/lupdate.rc: -------------------------------------------------------------------------------- 1 | #define RT_MANIFEST 24 2 | #define CREATEPROCESS_MANIFEST_RESOURCE_ID 1 3 | 4 | CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "lupdate.exe.manifest" 5 | -------------------------------------------------------------------------------- /src/qdbus/qdbusviewer/images/qdbusviewer-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/qdbus/qdbusviewer/images/qdbusviewer-128.png -------------------------------------------------------------------------------- /src/qdbus/qdbusviewer/images/qdbusviewer.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/qdbus/qdbusviewer/images/qdbusviewer.icns -------------------------------------------------------------------------------- /src/qdbus/qdbusviewer/images/qdbusviewer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/qdbus/qdbusviewer/images/qdbusviewer.ico -------------------------------------------------------------------------------- /src/qdbus/qdbusviewer/images/qdbusviewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/qdbus/qdbusviewer/images/qdbusviewer.png -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/images/happyguy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/qdoc/qdoc/doc/images/happyguy.jpg -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/images/link-to-qquickitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/qdoc/qdoc/doc/images/link-to-qquickitem.png -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/images/links-to-broken-links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/qdoc/qdoc/doc/images/links-to-broken-links.png -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/images/links-to-links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/qdoc/qdoc/doc/images/links-to-links.png -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/images/qt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/qdoc/qdoc/doc/images/qt-logo.png -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/images/training.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/qdoc/qdoc/doc/images/training.jpg -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/images/windows-pushbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/qdoc/qdoc/doc/images/windows-pushbutton.png -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/images/windows-toolbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/qdoc/qdoc/doc/images/windows-toolbutton.png -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/config/testdata/configs/exampletest.qdocconf: -------------------------------------------------------------------------------- 1 | project = ExampleTest 2 | exampledirs = ../exampletest/examples 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/config/testdata/configs/includepaths.qdocconf: -------------------------------------------------------------------------------- 1 | project = IncludePaths 2 | include(../includepaths/includepaths.qdocconf) 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/config/testdata/configs/includes/test.qdoc: -------------------------------------------------------------------------------- 1 | /*! nothing here */ 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/config/testdata/configs/paths.qdocconf: -------------------------------------------------------------------------------- 1 | project = Paths 2 | include(../paths/paths.qdocconf) 3 | 4 | sourcedirs += . 5 | sourcedirs += includes 6 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/config/testdata/configs/sourcelink.qdocconf: -------------------------------------------------------------------------------- 1 | project = SourceLink 2 | 3 | url.sources = "http://localhost/" 4 | url.sources.rootdir = . 5 | url.sources.linktext = link 6 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/config/testdata/exampletest/examples/test/empty/test.pro: -------------------------------------------------------------------------------- 1 | # nothing 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/config/testdata/exampletest/examples/test/example1/example1.pro: -------------------------------------------------------------------------------- 1 | # nothing 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/config/testdata/exampletest/examples/test/example2/example2.qmlproject: -------------------------------------------------------------------------------- 1 | # nothing 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/config/testdata/exampletest/examples/test/example3/example3.pyproject: -------------------------------------------------------------------------------- 1 | # nothing 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/config/testdata/exampletest/examples/test/example4/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # nothing 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/config/testdata/exampletest/examples/test/example4/example4.pro: -------------------------------------------------------------------------------- 1 | # nothing 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/config/testdata/includepaths/include/framework/ignore.h: -------------------------------------------------------------------------------- 1 | # nothing here 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/config/testdata/includepaths/include/more/ignore.h: -------------------------------------------------------------------------------- 1 | # nothing here 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/config/testdata/includepaths/include/purpose.h: -------------------------------------------------------------------------------- 1 | #define PURPOSE "Pass butter" 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/config/testdata/includepaths/include/system/ignore.h: -------------------------------------------------------------------------------- 1 | # nothing here 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/config/testdata/paths/includes/test.qdoc: -------------------------------------------------------------------------------- 1 | /*! nothing here */ 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/config/testdata/paths/paths.qdocconf: -------------------------------------------------------------------------------- 1 | sourcedirs += does/not/exist 2 | sourcedirs = includes 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/generatedoutput/testdata/crossmodule/CrossModule: -------------------------------------------------------------------------------- 1 | #include "../testcpp/TestCPP" 2 | #include "testtype.h" 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/generatedoutput/testdata/dontdocument/TestCPP: -------------------------------------------------------------------------------- 1 | #include "../TestCPP" 2 | #include "dont.h" 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/generatedoutput/testdata/examples/demos/demo/demo.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = aux 2 | message("Nothing to see here.") 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/generatedoutput/testdata/examples/demos/demo/dontxclude/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.16) 2 | project (DONTXCLUDEDIRS_QDOCTEST) 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/generatedoutput/testdata/examples/demos/demo/excludes/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.16) 2 | project (EXCLUDEDIR_QDOCTEST) 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/generatedoutput/testdata/examples/demos/hidden/hidden.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = aux 2 | message("Nothing to see here.") 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/generatedoutput/testdata/images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/qdoc/qdoc/tests/generatedoutput/testdata/images/01.png -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/generatedoutput/testdata/includefromexampledirs/src/parent.qdocinc: -------------------------------------------------------------------------------- 1 | Test include file that is part of the sourcedirs. 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/generatedoutput/testdata/qml/cmaketest/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.16) 2 | project (QDOCTEST) 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/generatedoutput/testdata/qml/cmaketest/main.cpp: -------------------------------------------------------------------------------- 1 | void main(){} 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/generatedoutput/testdata/singleexec/singleexec.qdocconf: -------------------------------------------------------------------------------- 1 | ../configs/testcpp_singleexec.qdocconf 2 | 3 | ../crossmodule/crossmodule_singleexec.qdocconf 4 | 5 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/generatedoutput/testdata/testcpp/TestCPP: -------------------------------------------------------------------------------- 1 | #include "testcpp.h" 2 | 3 | #ifdef test_template 4 | # include "testtemplate.h" 5 | #endif 6 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/generatedoutput/testdata/testcpp/snippets/snippet_testcpp.cpp: -------------------------------------------------------------------------------- 1 | //! [random tag] 2 | You're not supposed to see this. 3 | //! [random tag] 4 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/auto_as_return_type/expected/webxml/qdoctest-module.webxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/cmakedocumentation/expected/webxml/testcar-module.webxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/cmakedocumentation/expected/webxml/testcarprivate-module.webxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject/expected/webxml/qdoc-test-qmlmodule.webxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject/expected/webxml/test-empty-qmlmodule.webxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject/expected/webxml/test-nover-qmlmodule.webxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject/expected/webxml/testcpp-module.webxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject/expected/webxml/themodule-qmlmodule.webxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject/expected/webxml/uicomponents-qmlmodule.webxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject/src/TestCPP: -------------------------------------------------------------------------------- 1 | #include "testcpp.h" 2 | 3 | #ifdef test_template 4 | # include "testtemplate.h" 5 | #endif 6 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject/src/examples/demos/demo/demo.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = aux 2 | message("Nothing to see here.") 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject/src/examples/demos/demo/dontxclude/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.16) 2 | project (DONTXCLUDEDIRS_QDOCTEST) 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject/src/examples/demos/demo/excludes/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.16) 2 | project (EXCLUDEDIR_QDOCTEST) 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject/src/examples/demos/hidden/hidden.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = aux 2 | message("Nothing to see here.") 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject/src/qml/cmaketest/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.16) 2 | project (QDOCTEST) 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject/src/qml/cmaketest/main.cpp: -------------------------------------------------------------------------------- 1 | void main(){} 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject/src/snippets/snippet_testcpp.cpp: -------------------------------------------------------------------------------- 1 | //! [random tag] 2 | You're not supposed to see this. 3 | //! [random tag] 4 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject_headerdocs/expected/webxml/testcpp-module.webxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject_headerdocs/src/TestCPP: -------------------------------------------------------------------------------- 1 | #include "testcpp.h" 2 | 3 | #ifdef test_template 4 | # include "testtemplate.h" 5 | #endif 6 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject_headerdocs/src/examples/demos/demo/demo.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = aux 2 | message("Nothing to see here.") 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject_headerdocs/src/examples/demos/demo/dontxclude/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.16) 2 | project (DONTXCLUDEDIRS_QDOCTEST) 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject_headerdocs/src/examples/demos/demo/excludes/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.16) 2 | project (EXCLUDEDIR_QDOCTEST) 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject_headerdocs/src/examples/demos/hidden/hidden.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = aux 2 | message("Nothing to see here.") 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject_headerdocs/src/qml/cmaketest/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.16) 2 | project (QDOCTEST) 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject_headerdocs/src/qml/cmaketest/main.cpp: -------------------------------------------------------------------------------- 1 | void main(){} 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject_headerdocs/src/snippets/snippet_testcpp.cpp: -------------------------------------------------------------------------------- 1 | //! [random tag] 2 | You're not supposed to see this. 3 | //! [random tag] 4 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/globalfunc/src/TestGlobals: -------------------------------------------------------------------------------- 1 | #include "global.h" 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/modifiedoutputfilenames/expected/webxml/cppmodule-module-suffix.webxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/modifiedoutputfilenames/src/example/test/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # nothing here 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/modulestate/expected/webxml/moduleinstate-module.webxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/qml_mutual_definitions/src/foo.h: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2025 The Qt Company Ltd. 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/qmlenumvaluesfromcpp/expected/webxml/module-module.webxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/qmlenumvaluesfromcpp/expected/webxml/qmlmodule-qmlmodule.webxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/scopedenum/expected/webxml/testcpp-module.webxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/scopedenum/src/snippets/snippet_testcpp.cpp: -------------------------------------------------------------------------------- 1 | //! [random tag] 2 | You're not supposed to see this. 3 | //! [random tag] 4 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/singleexec/args.txt: -------------------------------------------------------------------------------- 1 | -single-exec 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/singleexec/singleexec.qdocconf: -------------------------------------------------------------------------------- 1 | project-a.qdocconf 2 | project-b.qdocconf 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/testtemplate/expected/webxml/testcpp-module.webxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/testtemplate/src/snippets/snippet_testcpp.cpp: -------------------------------------------------------------------------------- 1 | //! [random tag] 2 | You're not supposed to see this. 3 | //! [random tag] 4 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/usingdirective/src/UsingDirective: -------------------------------------------------------------------------------- 1 | #include "alias.h" 2 | #include "space.h" 3 | -------------------------------------------------------------------------------- /src/qev/README: -------------------------------------------------------------------------------- 1 | This tool allows introspection of incoming events for a QWidget, similar to the X11 xev tool. 2 | 3 | -------------------------------------------------------------------------------- /src/shared/deviceskin/skins/PortableMedia.skin/portablemedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/deviceskin/skins/PortableMedia.skin/portablemedia.png -------------------------------------------------------------------------------- /src/shared/deviceskin/skins/PortableMedia.skin/portablemedia.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/deviceskin/skins/PortableMedia.skin/portablemedia.xcf -------------------------------------------------------------------------------- /src/shared/deviceskin/skins/SmartPhone.skin/SmartPhone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/deviceskin/skins/SmartPhone.skin/SmartPhone.png -------------------------------------------------------------------------------- /src/shared/deviceskin/skins/SmartPhone2.skin/SmartPhone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/deviceskin/skins/SmartPhone2.skin/SmartPhone2.png -------------------------------------------------------------------------------- /src/shared/findwidget/images/mac/closetab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/findwidget/images/mac/closetab.png -------------------------------------------------------------------------------- /src/shared/findwidget/images/mac/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/findwidget/images/mac/next.png -------------------------------------------------------------------------------- /src/shared/findwidget/images/mac/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/findwidget/images/mac/previous.png -------------------------------------------------------------------------------- /src/shared/findwidget/images/mac/searchfind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/findwidget/images/mac/searchfind.png -------------------------------------------------------------------------------- /src/shared/findwidget/images/win/closetab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/findwidget/images/win/closetab.png -------------------------------------------------------------------------------- /src/shared/findwidget/images/win/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/findwidget/images/win/next.png -------------------------------------------------------------------------------- /src/shared/findwidget/images/win/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/findwidget/images/win/previous.png -------------------------------------------------------------------------------- /src/shared/findwidget/images/win/searchfind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/findwidget/images/win/searchfind.png -------------------------------------------------------------------------------- /src/shared/findwidget/images/wrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/findwidget/images/wrap.png -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtgradienteditor/images/down.png -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtgradienteditor/images/edit.png -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/images/editdelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtgradienteditor/images/editdelete.png -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/images/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtgradienteditor/images/minus.png -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtgradienteditor/images/plus.png -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/images/spreadpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtgradienteditor/images/spreadpad.png -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/images/spreadreflect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtgradienteditor/images/spreadreflect.png -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/images/spreadrepeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtgradienteditor/images/spreadrepeat.png -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/images/typeconical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtgradienteditor/images/typeconical.png -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/images/typelinear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtgradienteditor/images/typelinear.png -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/images/typeradial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtgradienteditor/images/typeradial.png -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtgradienteditor/images/up.png -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/images/zoomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtgradienteditor/images/zoomin.png -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/images/zoomout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtgradienteditor/images/zoomout.png -------------------------------------------------------------------------------- /src/shared/qtpropertybrowser/images/cursor-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtpropertybrowser/images/cursor-arrow.png -------------------------------------------------------------------------------- /src/shared/qtpropertybrowser/images/cursor-busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtpropertybrowser/images/cursor-busy.png -------------------------------------------------------------------------------- /src/shared/qtpropertybrowser/images/cursor-closedhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtpropertybrowser/images/cursor-closedhand.png -------------------------------------------------------------------------------- /src/shared/qtpropertybrowser/images/cursor-cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtpropertybrowser/images/cursor-cross.png -------------------------------------------------------------------------------- /src/shared/qtpropertybrowser/images/cursor-forbidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtpropertybrowser/images/cursor-forbidden.png -------------------------------------------------------------------------------- /src/shared/qtpropertybrowser/images/cursor-hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtpropertybrowser/images/cursor-hand.png -------------------------------------------------------------------------------- /src/shared/qtpropertybrowser/images/cursor-hsplit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtpropertybrowser/images/cursor-hsplit.png -------------------------------------------------------------------------------- /src/shared/qtpropertybrowser/images/cursor-ibeam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtpropertybrowser/images/cursor-ibeam.png -------------------------------------------------------------------------------- /src/shared/qtpropertybrowser/images/cursor-openhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtpropertybrowser/images/cursor-openhand.png -------------------------------------------------------------------------------- /src/shared/qtpropertybrowser/images/cursor-sizeall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtpropertybrowser/images/cursor-sizeall.png -------------------------------------------------------------------------------- /src/shared/qtpropertybrowser/images/cursor-sizeb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtpropertybrowser/images/cursor-sizeb.png -------------------------------------------------------------------------------- /src/shared/qtpropertybrowser/images/cursor-sizef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtpropertybrowser/images/cursor-sizef.png -------------------------------------------------------------------------------- /src/shared/qtpropertybrowser/images/cursor-sizeh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtpropertybrowser/images/cursor-sizeh.png -------------------------------------------------------------------------------- /src/shared/qtpropertybrowser/images/cursor-sizev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtpropertybrowser/images/cursor-sizev.png -------------------------------------------------------------------------------- /src/shared/qtpropertybrowser/images/cursor-uparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtpropertybrowser/images/cursor-uparrow.png -------------------------------------------------------------------------------- /src/shared/qtpropertybrowser/images/cursor-vsplit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtpropertybrowser/images/cursor-vsplit.png -------------------------------------------------------------------------------- /src/shared/qtpropertybrowser/images/cursor-wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtpropertybrowser/images/cursor-wait.png -------------------------------------------------------------------------------- /src/shared/qtpropertybrowser/images/cursor-whatsthis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qtpropertybrowser/images/cursor-whatsthis.png -------------------------------------------------------------------------------- /src/shared/qttoolbardialog/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qttoolbardialog/images/back.png -------------------------------------------------------------------------------- /src/shared/qttoolbardialog/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qttoolbardialog/images/down.png -------------------------------------------------------------------------------- /src/shared/qttoolbardialog/images/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qttoolbardialog/images/forward.png -------------------------------------------------------------------------------- /src/shared/qttoolbardialog/images/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qttoolbardialog/images/minus.png -------------------------------------------------------------------------------- /src/shared/qttoolbardialog/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qttoolbardialog/images/plus.png -------------------------------------------------------------------------------- /src/shared/qttoolbardialog/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/shared/qttoolbardialog/images/up.png -------------------------------------------------------------------------------- /src/uitools/doc/images/textfinder-example-find.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/uitools/doc/images/textfinder-example-find.webp -------------------------------------------------------------------------------- /src/uitools/doc/images/textfinder-example-find2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/uitools/doc/images/textfinder-example-find2.webp -------------------------------------------------------------------------------- /src/uitools/doc/images/textfinder-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/uitools/doc/images/textfinder-example.png -------------------------------------------------------------------------------- /src/uitools/doc/images/uitools-examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/src/uitools/doc/images/uitools-examples.png -------------------------------------------------------------------------------- /src/uitools/doc/snippets/quiloader/mywidget.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | myform.ui 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/uitools/doc/snippets/quiloader/quiloader.pro: -------------------------------------------------------------------------------- 1 | HEADERS = mywidget.h 2 | SOURCES = main.cpp mywidget.cpp 3 | RESOURCES = mywidget.qrc 4 | QT += uitools 5 | -------------------------------------------------------------------------------- /tests/auto/cmake/linguist/test_i18n_auto_ts_file_names/lib.cpp: -------------------------------------------------------------------------------- 1 | int getSomeNumber() { return 42; } 2 | -------------------------------------------------------------------------------- /tests/auto/cmake/linguist/test_i18n_exclusion/apps/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2023 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | add_subdirectory(app1) 5 | -------------------------------------------------------------------------------- /tests/auto/cmake/linguist/test_i18n_exclusion/libs/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2023 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | add_subdirectory(lib1) 5 | add_subdirectory(lib2) 6 | -------------------------------------------------------------------------------- /tests/auto/cmake/linguist/test_i18n_exclusion/test_i18n_exclusion_de.ts.in: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/cmake/linguist/test_i18n_merge_qt_translations_language_match/myapp_de_language_after_TS.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/helpengineplugin/data/qtqml.qch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/helpengineplugin/data/qtqml.qch -------------------------------------------------------------------------------- /tests/auto/linguist/lconvert/data/test-broken-utf8.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/linguist/lconvert/data/test-broken-utf8.po -------------------------------------------------------------------------------- /tests/auto/linguist/lconvert/data/untranslated.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/linguist/lconvert/data/untranslated.qm -------------------------------------------------------------------------------- /tests/auto/linguist/lrelease/testdata/no-translations.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = app 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/backslashes/lupdatecmd: -------------------------------------------------------------------------------- 1 | TRANSLATION: ts\project.ts 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/backslashes/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += src\\main.cpp 2 | 3 | TRANSLATIONS = ts\\project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/cmdline_deeppath/lupdatecmd: -------------------------------------------------------------------------------- 1 | cd ../../recursivescan 2 | lupdate sub/finddialog.cpp -ts project.ts 3 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/cmdline_order/lupdatecmd: -------------------------------------------------------------------------------- 1 | lupdate b.h a.h -ts project.ts 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/cmdline_recurse/lupdatecmd: -------------------------------------------------------------------------------- 1 | cd ../../recursivescan 2 | lupdate . -ts project.ts 3 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/codecforsrc/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | CONFIG+= console 3 | 4 | TRANSLATIONS = project.ts 5 | 6 | CODECFORSRC = utf-8 7 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/from_subdir/lupdatecmd: -------------------------------------------------------------------------------- 1 | lupdate translations/translations.pro 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/heuristics/lupdatecmd: -------------------------------------------------------------------------------- 1 | TRANSLATION: project.ts 2 | lupdate -verbose -disable-heuristic similartext -no-obsolete project.pro 3 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/heuristics/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES = main.cpp 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/lacksqobject/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES = main.cpp 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/language/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | QCoreApplication::translate("main", "Hello %i World", "", 3); 6 | } 7 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/language/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES = main.cpp 2 | TRANSLATIONS = project.ts 3 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/merge_ordering/lupdatecmd: -------------------------------------------------------------------------------- 1 | lupdate -locations relative project.pro 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/merge_ordering/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += foo.cpp 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/merge_versions/project.pro: -------------------------------------------------------------------------------- 1 | FORMS += project.ui 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/merge_whitespace/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES = main.cpp 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/mergecpp/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += finddialog.cpp 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/mergecpp_noobsolete/lupdatecmd: -------------------------------------------------------------------------------- 1 | lupdate -noobsolete project.pro 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/mergecpp_noobsolete/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += finddialog.cpp 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/mergecpp_obsolete/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += finddialog.cpp 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/mergeui/project.pro: -------------------------------------------------------------------------------- 1 | FORMS += project.ui 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/mergeui_obsolete/project.pro: -------------------------------------------------------------------------------- 1 | FORMS += project.ui 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/multiple_locations/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | SOURCES += finddialog.cpp 3 | 4 | TRANSLATIONS = project.ts 5 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/namespaces/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/notargetlanguage/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES = main.cpp 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parse_escaped_chars/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parse_special_chars/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parsecontexts/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES = main.cpp 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parsecpp2/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES = main.cpp 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parsecpp_template/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += template_classes.cpp 2 | 3 | TRANSLATIONS = project.ts 4 | 5 | QT += core linguist 6 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parsecpp_typed_enum/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += my_class.cpp 2 | 3 | HEADERS += my_class.h 4 | 5 | TRANSLATIONS = project.ts 6 | 7 | QT += core widgets linguist -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parseidbasedui/project.pro: -------------------------------------------------------------------------------- 1 | FORMS += project.ui 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parsejava/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.java 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parsejs/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.js 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parsejs2/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.js 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parsejs3/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.js 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parsejs4/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.js 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parsejscontexts/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.js 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parsemjs/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.mjs 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parseobjc/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.mm 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parsepython/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.py 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parseqml/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.qml 2 | SOURCES += main_test_pragma.qml 3 | 4 | TRANSLATIONS = project.ts 5 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parseqml2/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.qml 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parseqml3/expectedoutput.txt: -------------------------------------------------------------------------------- 1 | .*/lupdate/testdata/good/parseqml3/main.qml:20: qsTr\(\) template strings with arguments are not supported for translation. 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parseqml3/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.qml 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parseqrc/main.js: -------------------------------------------------------------------------------- 1 | qsTr("From JavaScript file"); 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parseqrc/project.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | main.js 4 | 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parseqrc_json/main.js: -------------------------------------------------------------------------------- 1 | qsTr("From JavaScript file"); 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parseqrc_json/project.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | main.js 4 | 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parseui/project.pro: -------------------------------------------------------------------------------- 1 | FORMS += project.ui 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/prefix/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES = main.cpp 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/preprocess/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsing/features/default_pre.prf: -------------------------------------------------------------------------------- 1 | load(default_pre) 2 | error("utter failure!") 3 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsing2/files-cc.txt: -------------------------------------------------------------------------------- 1 | a.cpp b.cpp 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsing2/include.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsingpaths/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += file*.cpp filter.cpp non-existing.cpp 2 | 3 | include(sub/sub.pri) 4 | 5 | TRANSLATIONS = project.ts 6 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsingpaths/sub/sub.pri: -------------------------------------------------------------------------------- 1 | VPATH += $$PWD 2 | 3 | SOURCES += sub/subfile?.cpp subfilter.cpp 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsingpri/common/common.pri: -------------------------------------------------------------------------------- 1 | include(main.pri) 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsingpri/common/main.pri: -------------------------------------------------------------------------------- 1 | TEMPLATE = app 2 | LANGUAGE = C++ 3 | 4 | SOURCES += $$PWD/main.cpp 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsingpri/mac/mac.pri: -------------------------------------------------------------------------------- 1 | TEMPLATE = app 2 | LANGUAGE = C++ 3 | 4 | SOURCES += $$PWD/main_mac.cpp 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsingpri/relativity/relativity.pri: -------------------------------------------------------------------------------- 1 | # Lets test how well the proparser can walk the tree of includes... 2 | 3 | include(sub/sub.pri) 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsingpri/relativity/sub/sub.pri: -------------------------------------------------------------------------------- 1 | include(../sub2/sub2.pri) 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsingpri/relativity/sub2/sub2.pri: -------------------------------------------------------------------------------- 1 | SOURCES += $$PWD/../relativity.cpp 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsingpri/unix/unix.pri: -------------------------------------------------------------------------------- 1 | TEMPLATE = app 2 | LANGUAGE = C++ 3 | 4 | SOURCES += $$PWD/main_unix.cpp 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsingpri/win/win.pri: -------------------------------------------------------------------------------- 1 | TEMPLATE = app 2 | LANGUAGE = C++ 3 | 4 | SOURCES += $$PWD/main_win.cpp 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsingsubdirs/project.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = sub1 3 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsingsubdirs/sub1/sub1.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | 3 | TRANSLATIONS = ../project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsingsubs/common/common.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsingsubs/excluded/excluded.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsingsubs/lupdatecmd: -------------------------------------------------------------------------------- 1 | lupdate project.pro -ts project.ts 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsingsubs/mac/mac.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main_mac.cpp 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsingsubs/sub/sub.pro: -------------------------------------------------------------------------------- 1 | INCLUDEPATH += include 2 | 3 | HEADERS += include/test.h 4 | 5 | SOURCES += src/test.cpp 6 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsingsubs/unix/unix.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main_unix.cpp 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/proparsingsubs/win/win.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main_win.cpp 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/recurse_full/lupdatecmd: -------------------------------------------------------------------------------- 1 | TRANSLATION: project.ts project_sub.ts 2 | cd ../../subdirs_full 3 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/recurse_full_ts/lupdatecmd: -------------------------------------------------------------------------------- 1 | TRANSLATION: project.ts project_sub.ts 2 | cd ../../subdirs_full 3 | lupdate project.pro -ts project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/recurse_full_ts_join/lupdatecmd: -------------------------------------------------------------------------------- 1 | cd ../../subdirs_full 2 | lupdate subdir1/subdir1.pro subdir2/subsub1/subsub1.pro -ts project.ts 3 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/recurse_part/expectedoutput.txt: -------------------------------------------------------------------------------- 1 | lupdate warning: no TS files specified. Only diagnostics will be produced for .*/project\.pro\. 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/recurse_part/lupdatecmd: -------------------------------------------------------------------------------- 1 | TRANSLATION: project.ts project_sub.ts 2 | cd ../../subdirs_part 3 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/recurse_part_ts/expectedoutput.txt: -------------------------------------------------------------------------------- 1 | lupdate warning: TS files from command line prevent recursing into .*/subdir2/subsub2/subsub2\.pro\. 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/recurse_part_ts/lupdatecmd: -------------------------------------------------------------------------------- 1 | TRANSLATION: project.ts project_sub.ts 2 | cd ../../subdirs_part 3 | lupdate project.pro -ts project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/reloutput/lupdatecmd: -------------------------------------------------------------------------------- 1 | TRANSLATION: translations/project.ts 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/reloutput/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | 3 | TRANSLATIONS = translations/project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/resources_cmdline/lupdatecmd: -------------------------------------------------------------------------------- 1 | lupdate project.qrc -ts project.ts 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/resources_cmdline/main.js: -------------------------------------------------------------------------------- 1 | qsTr("From JavaScript file"); 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/respfile/lupdatecmd: -------------------------------------------------------------------------------- 1 | # Add the command that lupdate should run here. If it can't find anything it will default to 2 | lupdate -silent @sources.lst -ts @tsfiles.lst 3 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/respfile/sources.lst: -------------------------------------------------------------------------------- 1 | source1.cpp 2 | source2.cpp 3 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/respfile/tsfiles.lst: -------------------------------------------------------------------------------- 1 | project.ts 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/textsimilarity/project.pro: -------------------------------------------------------------------------------- 1 | FORMS += project.ui 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/tr_function_alias/main.qml: -------------------------------------------------------------------------------- 1 | import MyModuleWithSingleton 1.0 2 | Text { 3 | text: MySingletonCustomTranslator.subObject.tr("xxx") 4 | } 5 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/tr_function_alias/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | SOURCES += main.qml 3 | 4 | TRANSLATIONS = project.ts 5 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/using_namespaces/project.pro: -------------------------------------------------------------------------------- 1 | HEADERS += file.h 2 | SOURCES += file.cpp 3 | 4 | TRANSLATIONS = project.ts 5 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/subdirs_full/project.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = subdir1 subdir2/subdir2.pro 3 | 4 | TRANSLATIONS = project.ts 5 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/subdirs_full/subdir1/subdir1.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/subdirs_full/subdir2/subdir2.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = subsub1 subsub2 3 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/subdirs_full/subdir2/subsub1/subsub1.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/subdirs_full/subdir2/subsub2/subsub2.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | 3 | TRANSLATIONS = ../../project_sub.ts 4 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/subdirs_part/project.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = subdir1 subdir2/subdir2.pro 3 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/subdirs_part/subdir1/subdir1.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/subdirs_part/subdir2/subdir2.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = subsub1 subsub2 3 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/subdirs_part/subdir2/subsub1/subsub1.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/subdirs_part/subdir2/subsub2/subsub2.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | 3 | TRANSLATIONS = ../../project_sub.ts 4 | -------------------------------------------------------------------------------- /tests/auto/qhelpcontentmodel/data/collection.qhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/qhelpcontentmodel/data/collection.qhc -------------------------------------------------------------------------------- /tests/auto/qhelpcontentmodel/data/qmake-3.3.8.qch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/qhelpcontentmodel/data/qmake-3.3.8.qch -------------------------------------------------------------------------------- /tests/auto/qhelpcontentmodel/data/qmake-4.3.0.qch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/qhelpcontentmodel/data/qmake-4.3.0.qch -------------------------------------------------------------------------------- /tests/auto/qhelpcontentmodel/data/test.qch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/qhelpcontentmodel/data/test.qch -------------------------------------------------------------------------------- /tests/auto/qhelpenginecore/data/collection.qhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/qhelpenginecore/data/collection.qhc -------------------------------------------------------------------------------- /tests/auto/qhelpenginecore/data/collection1.qhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/qhelpenginecore/data/collection1.qhc -------------------------------------------------------------------------------- /tests/auto/qhelpenginecore/data/linguist-3.3.8.qch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/qhelpenginecore/data/linguist-3.3.8.qch -------------------------------------------------------------------------------- /tests/auto/qhelpenginecore/data/qmake-3.3.8.qch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/qhelpenginecore/data/qmake-3.3.8.qch -------------------------------------------------------------------------------- /tests/auto/qhelpenginecore/data/qmake-4.3.0.qch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/qhelpenginecore/data/qmake-4.3.0.qch -------------------------------------------------------------------------------- /tests/auto/qhelpenginecore/data/test.qch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/qhelpenginecore/data/test.qch -------------------------------------------------------------------------------- /tests/auto/qhelpindexmodel/data/collection.qhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/qhelpindexmodel/data/collection.qhc -------------------------------------------------------------------------------- /tests/auto/qhelpindexmodel/data/collection1.qhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/qhelpindexmodel/data/collection1.qhc -------------------------------------------------------------------------------- /tests/auto/qhelpindexmodel/data/linguist-3.3.8.qch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/qhelpindexmodel/data/linguist-3.3.8.qch -------------------------------------------------------------------------------- /tests/auto/qhelpindexmodel/data/qmake-3.3.8.qch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/qhelpindexmodel/data/qmake-3.3.8.qch -------------------------------------------------------------------------------- /tests/auto/qhelpindexmodel/data/qmake-4.3.0.qch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/qhelpindexmodel/data/qmake-4.3.0.qch -------------------------------------------------------------------------------- /tests/auto/qhelpindexmodel/data/test.qch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/qhelpindexmodel/data/test.qch -------------------------------------------------------------------------------- /tests/auto/qtattributionsscanner/testdata/good/chromium/README_test.chromium: -------------------------------------------------------------------------------- 1 | Name: Test 2 | License: License 3 | 4 | Description: 5 | Hello world! 6 | Line 2 7 | 8 | Local Modifications: 9 | None 10 | -------------------------------------------------------------------------------- /tests/auto/qtattributionsscanner/testdata/good/expected.error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/f7efd5d856656df7293629196b42fbef18ef9efd/tests/auto/qtattributionsscanner/testdata/good/expected.error -------------------------------------------------------------------------------- /tests/auto/qtattributionsscanner/testdata/good/local_license/LICENSE.Id1.txt: -------------------------------------------------------------------------------- 1 | LICENSE1 -------------------------------------------------------------------------------- /tests/auto/qtattributionsscanner/testdata/good/local_license/LICENSE.Id2.txt: -------------------------------------------------------------------------------- 1 | LICENSE2 -------------------------------------------------------------------------------- /tests/auto/qtattributionsscanner/testdata/good/variants/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | COPYRIGHT 2 | -------------------------------------------------------------------------------- /tests/auto/qtattributionsscanner/testdata/good/variants/LICENSE.1.txt: -------------------------------------------------------------------------------- 1 | LICENSE1 -------------------------------------------------------------------------------- /tests/auto/qtattributionsscanner/testdata/good/variants/LICENSE.2.txt: -------------------------------------------------------------------------------- 1 | LICENSE2 -------------------------------------------------------------------------------- /tests/auto/qtattributionsscanner/testdata/warnings/incomplete/qt_attribution_test.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /tests/auto/qtattributionsscanner/testdata/warnings/unknown/expected.error: -------------------------------------------------------------------------------- 1 | File %{PWD}/qt_attribution_test.json: Unknown key Unknown. 2 | -------------------------------------------------------------------------------- /tests/manual/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2022 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | add_subdirectory(qtattributionsscanner) 5 | -------------------------------------------------------------------------------- /tests/manual/manual.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS += \ 3 | qtattributionsscanner 4 | -------------------------------------------------------------------------------- /tests/manual/qtattributionsscanner/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/manual/qtattributionsscanner/test.qdocconf: -------------------------------------------------------------------------------- 1 | project = Test 2 | 3 | outputdir = $BUILDDIR/html 4 | 5 | sourcedirs = $BUILDDIR . 6 | sources.fileextensions = *.qdoc 7 | --------------------------------------------------------------------------------