├── .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-localizedclock-idbased-dialog_de.webp │ │ │ ├── linguist-localizedclock-idbased-dialog_en.webp │ │ │ ├── linguist-localizedclock-idbased_de.webp │ │ │ ├── linguist-localizedclock-idbased_en.webp │ │ │ ├── linguist-localizedclock_de_DE.webp │ │ │ ├── linguist-localizedclock_en_GB.webp │ │ │ ├── linguist-localizedclock_en_US.webp │ │ │ ├── linguist-localizedclock_switchlang_de.webp │ │ │ ├── linguist-localizedclock_switchlang_en.webp │ │ │ ├── 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_trollprint.cpp │ │ └── src │ │ │ ├── arrowpad.qdoc │ │ │ ├── localizedclock-idbased.qdoc │ │ │ ├── localizedclock-switchlang.qdoc │ │ │ ├── localizedclock.qdoc │ │ │ └── trollprint.qdoc │ ├── linguist.pro │ ├── localizedclock-idbased │ │ ├── CMakeLists.txt │ │ ├── Main.qml │ │ ├── dialog.cpp │ │ ├── dialog.h │ │ ├── dialog.ui │ │ ├── i18n │ │ │ ├── clock_ar.ts │ │ │ ├── clock_de.ts │ │ │ ├── clock_en.ts │ │ │ ├── clock_es.ts │ │ │ ├── clock_fr.ts │ │ │ ├── clock_it.ts │ │ │ ├── clock_ja.ts │ │ │ ├── clock_ko.ts │ │ │ ├── clock_pt.ts │ │ │ └── clock_zh.ts │ │ ├── main.cpp │ │ ├── timezonemanager.cpp │ │ └── timezonemanager.h │ ├── localizedclock-switchlocale │ │ ├── CMakeLists.txt │ │ ├── Main.qml │ │ ├── globe.png │ │ ├── i18n │ │ │ ├── clock_ar.ts │ │ │ ├── clock_de.ts │ │ │ ├── clock_en.ts │ │ │ ├── clock_es.ts │ │ │ ├── clock_fr.ts │ │ │ ├── clock_it.ts │ │ │ ├── clock_ja.ts │ │ │ ├── clock_ko.ts │ │ │ ├── clock_pt.ts │ │ │ └── clock_zh.ts │ │ ├── main.cpp │ │ ├── translatormanager.cpp │ │ └── translatormanager.h │ ├── localizedclock │ │ ├── CMakeLists.txt │ │ ├── Main.qml │ │ ├── i18n │ │ │ ├── clock_ar.ts │ │ │ ├── clock_de.ts │ │ │ ├── clock_en.ts │ │ │ ├── clock_es.ts │ │ │ ├── clock_fr.ts │ │ │ ├── clock_it.ts │ │ │ ├── clock_ja.ts │ │ │ ├── clock_ko.ts │ │ │ ├── clock_pt.ts │ │ │ └── clock_zh.ts │ │ └── main.cpp │ └── 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 │ ├── lcheck │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── 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-ai-translation-dialog.webp │ │ │ │ ├── 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_2.webp │ │ │ │ ├── linguist-phrasebookdialog.png │ │ │ │ ├── linguist-strings-view.webp │ │ │ │ ├── linguist-translationfilesettings.png │ │ │ │ ├── linguist-ui.webp │ │ │ │ ├── linguist.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 │ │ ├── machinetranslationdialog.cpp │ │ ├── machinetranslationdialog.h │ │ ├── machinetranslationdialog.ui │ │ ├── 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 │ ├── ltext2id │ │ ├── CMakeLists.txt │ │ ├── filetransformer.cpp │ │ ├── filetransformer.h │ │ ├── fileverifier.cpp │ │ ├── fileverifier.h │ │ ├── main.cpp │ │ ├── recorddirectory.cpp │ │ ├── recorddirectory.h │ │ ├── utils.cpp │ │ └── utils.h │ ├── lupdate-pro │ │ ├── CMakeLists.txt │ │ ├── lupdate-pro.exe.manifest │ │ ├── lupdate-pro.rc │ │ └── main.cpp │ ├── lupdate │ │ ├── CMakeLists.txt │ │ ├── lupdate.exe.manifest │ │ ├── lupdate.rc │ │ ├── main.cpp │ │ ├── merge.cpp │ │ └── synchronized.h │ ├── 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 │ │ ├── auto-translation │ │ ├── machinetranslator.cpp │ │ ├── machinetranslator.h │ │ ├── ollama.cpp │ │ ├── ollama.h │ │ └── translationprotocol.h │ │ ├── exclusive_builds.prf │ │ ├── fmt.h │ │ ├── ioutils.cpp │ │ ├── ioutils.h │ │ ├── numerus.cpp │ │ ├── parsers │ │ ├── cpp.cpp │ │ ├── cpp.h │ │ ├── java.cpp │ │ ├── metastrings.cpp │ │ ├── metastrings.h │ │ ├── python.cpp │ │ ├── qdeclarative.cpp │ │ ├── qmakeparser.cpp │ │ ├── qmakeparser.h │ │ ├── trparser.cpp │ │ ├── trparser.h │ │ ├── ui.cpp │ │ ├── xmlparser.cpp │ │ └── xmlparser.h │ │ ├── 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 │ │ ├── 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 │ │ ├── validator.cpp │ │ ├── validator.h │ │ └── xliff.cpp ├── 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 │ ├── cmake │ │ ├── QDocConfiguration.cmake │ │ ├── QDocConfigureMessages.cmake │ │ ├── QDocCoverage.cmake │ │ ├── QDocCoverageCollect.cmake │ │ ├── QDocCoverageReport.cmake │ │ └── coverage-prolog.html │ └── 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 │ │ │ ├── inclusionfilter.h │ │ │ ├── inclusionflags.h │ │ │ ├── inclusionpolicy.h │ │ │ ├── inclusionstrategy.qdoc │ │ │ ├── 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 │ │ │ ├── nodecontext.h │ │ │ ├── openedlist.cpp │ │ │ ├── openedlist.h │ │ │ ├── outputdirectory.cpp │ │ │ ├── outputdirectory.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 │ │ │ ├── tocwriter.cpp │ │ │ ├── tocwriter.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 │ │ │ │ ├── internalpatterns.qdocconf │ │ │ │ ├── paths.qdocconf │ │ │ │ ├── showinternal_false.qdocconf │ │ │ │ ├── showinternal_true.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 │ │ ├── inclusion │ │ │ └── catch_inclusionstrategytests.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 │ │ │ │ │ └── qmltypes-overview.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 │ │ │ │ │ ├── Test-qdoc-warnings.log │ │ │ │ │ ├── autolinking.html │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── cpptypes.html │ │ │ │ │ ├── crossmoduleref.html │ │ │ │ │ ├── examples-manifest.xml │ │ │ │ │ ├── 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-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-struct.xml │ │ │ │ │ ├── testqdoc-test.xml │ │ │ │ │ ├── testqdoc-testderived.xml │ │ │ │ │ ├── testqdoc-vec.xml │ │ │ │ │ ├── testqdoc.xml │ │ │ │ │ ├── themodule-qmlmodule.xml │ │ │ │ │ └── uicomponents-qmlmodule.xml │ │ │ │ ├── html │ │ │ │ │ ├── Test-qdoc-warnings.log │ │ │ │ │ ├── autolinking.html │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── cpptypes.html │ │ │ │ │ ├── crossmoduleref.html │ │ │ │ │ ├── examples-manifest.xml │ │ │ │ │ ├── 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-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 │ │ │ │ ├── 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.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 │ │ ├── hiddenfriends │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── completelyhidden-module.xml │ │ │ │ │ └── hiddenfriendsclass.xml │ │ │ │ ├── html │ │ │ │ │ ├── completelyhidden-module.html │ │ │ │ │ ├── hiddenfriends.index │ │ │ │ │ ├── hiddenfriendsclass-members.html │ │ │ │ │ └── hiddenfriendsclass.html │ │ │ │ └── webxml │ │ │ │ │ ├── completelyhidden-module.webxml │ │ │ │ │ ├── hiddenfriends.index │ │ │ │ │ └── hiddenfriendsclass.webxml │ │ │ ├── hiddenfriends.qdocconf │ │ │ └── src │ │ │ │ └── hiddenfriendsclass.h │ │ ├── illformatted_documentation │ │ │ ├── expected │ │ │ │ ├── html │ │ │ │ │ ├── another-page-with-comments-in-the-brief.html │ │ │ │ │ ├── brief-adventures.html │ │ │ │ │ ├── examples-manifest.xml │ │ │ │ │ ├── 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 │ │ ├── imagesoutputdir │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── images │ │ │ │ │ │ └── Test │ │ │ │ │ │ │ └── dot.svg │ │ │ │ │ └── index.xml │ │ │ │ ├── html │ │ │ │ │ ├── images │ │ │ │ │ │ └── Test │ │ │ │ │ │ │ └── dot.svg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.index │ │ │ │ │ └── test.qhp │ │ │ │ └── webxml │ │ │ │ │ ├── images │ │ │ │ │ └── Test │ │ │ │ │ │ └── dot.svg │ │ │ │ │ ├── index.webxml │ │ │ │ │ └── test.index │ │ │ ├── imagesoutputdir.qdocconf │ │ │ └── src │ │ │ │ ├── images │ │ │ │ └── dot.svg │ │ │ │ └── test.qdoc │ │ ├── inherited_property_link │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── button.xml │ │ │ │ │ ├── stylereference.xml │ │ │ │ │ ├── testmodule-module.xml │ │ │ │ │ └── widget.xml │ │ │ │ ├── html │ │ │ │ │ ├── button-members.html │ │ │ │ │ ├── button.html │ │ │ │ │ ├── inheritedpropertylink.index │ │ │ │ │ ├── stylereference.html │ │ │ │ │ ├── testmodule-module.html │ │ │ │ │ ├── widget-members.html │ │ │ │ │ └── widget.html │ │ │ │ └── webxml │ │ │ │ │ ├── button.webxml │ │ │ │ │ ├── inheritedpropertylink.index │ │ │ │ │ ├── stylereference.webxml │ │ │ │ │ ├── testmodule-module.webxml │ │ │ │ │ └── widget.webxml │ │ │ ├── inherited_property_link.qdocconf │ │ │ └── src │ │ │ │ ├── stylereference.qdoc │ │ │ │ ├── widget.cpp │ │ │ │ └── widget.h │ │ ├── internal_parameter_warnings │ │ │ ├── expected │ │ │ │ └── html │ │ │ │ │ ├── internalparametermodule-module.html │ │ │ │ │ ├── internalparameterwarnings.index │ │ │ │ │ ├── testclass-members.html │ │ │ │ │ └── testclass.html │ │ │ ├── internal_parameter_warnings.qdocconf │ │ │ └── src │ │ │ │ └── testclass.h │ │ ├── internalfilepatterns │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── publicclass.xml │ │ │ │ │ └── testmodule-module.xml │ │ │ │ ├── html │ │ │ │ │ ├── InternalFilePatterns-qdoc-warnings.log │ │ │ │ │ ├── internalfilepatterns.index │ │ │ │ │ ├── publicclass.html │ │ │ │ │ └── testmodule-module.html │ │ │ │ └── webxml │ │ │ │ │ ├── internalfilepatterns.index │ │ │ │ │ ├── publicclass.webxml │ │ │ │ │ └── testmodule-module.webxml │ │ │ ├── internalfilepatterns.qdocconf │ │ │ └── src │ │ │ │ ├── internal │ │ │ │ ├── internalhelper.cpp │ │ │ │ └── internalhelper.h │ │ │ │ ├── privateclass_p.cpp │ │ │ │ ├── privateclass_p.h │ │ │ │ ├── publicclass.cpp │ │ │ │ └── publicclass.h │ │ ├── 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 │ │ ├── linkparentheses │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ └── linkparentheses.xml │ │ │ │ ├── html │ │ │ │ │ ├── linkparentheses.html │ │ │ │ │ └── linkparentheses.index │ │ │ │ └── webxml │ │ │ │ │ ├── linkparentheses.index │ │ │ │ │ └── linkparentheses.webxml │ │ │ ├── html │ │ │ │ ├── linkparentheses.html │ │ │ │ └── linkparentheses.index │ │ │ ├── linkparentheses.qdocconf │ │ │ └── src │ │ │ │ └── main.cpp │ │ ├── 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 │ │ ├── multiple_overloads_test │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── testdate.xml │ │ │ │ │ ├── testdatetime.xml │ │ │ │ │ ├── testoverloads.xml │ │ │ │ │ ├── testpositiondependent.xml │ │ │ │ │ ├── testqdocoverloadcommand-module.xml │ │ │ │ │ └── testtime.xml │ │ │ │ ├── html │ │ │ │ │ ├── QDoc multiple overloads test-qdoc-warnings.log │ │ │ │ │ ├── qdoc-multiple-overloads-test.index │ │ │ │ │ ├── testdate-members.html │ │ │ │ │ ├── testdate.html │ │ │ │ │ ├── testdatetime-members.html │ │ │ │ │ ├── testdatetime.html │ │ │ │ │ ├── testoverloads-members.html │ │ │ │ │ ├── testoverloads.html │ │ │ │ │ ├── testpositiondependent-members.html │ │ │ │ │ ├── testpositiondependent.html │ │ │ │ │ ├── testqdocoverloadcommand-module.html │ │ │ │ │ ├── testtime-members.html │ │ │ │ │ └── testtime.html │ │ │ │ └── webxml │ │ │ │ │ ├── qdoc-multiple-overloads-test.index │ │ │ │ │ ├── testdate.webxml │ │ │ │ │ ├── testdatetime.webxml │ │ │ │ │ ├── testoverloads.webxml │ │ │ │ │ ├── testpositiondependent.webxml │ │ │ │ │ ├── testqdocoverloadcommand-module.webxml │ │ │ │ │ └── testtime.webxml │ │ │ ├── multiple_overloads_test.qdocconf │ │ │ └── src │ │ │ │ ├── testoverloads.cpp │ │ │ │ └── testoverloads.h │ │ ├── multisignal │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── testaction.xml │ │ │ │ │ └── testmodule-module.xml │ │ │ │ ├── html │ │ │ │ │ ├── multisignaltest.index │ │ │ │ │ ├── testaction-members.html │ │ │ │ │ ├── testaction.html │ │ │ │ │ └── testmodule-module.html │ │ │ │ └── webxml │ │ │ │ │ ├── multisignaltest.index │ │ │ │ │ ├── testaction.webxml │ │ │ │ │ └── testmodule-module.webxml │ │ │ ├── multisignal.qdocconf │ │ │ └── src │ │ │ │ ├── testaction.cpp │ │ │ │ └── testaction.h │ │ ├── namecollision │ │ │ ├── expected │ │ │ │ ├── index.html │ │ │ │ ├── namecollision.index │ │ │ │ ├── qml-qt-labs-particles-emitter-members.html │ │ │ │ ├── qml-qt-labs-particles-emitter.html │ │ │ │ ├── qml-qt-labs-particles-particlesystem-members.html │ │ │ │ ├── qml-qt-labs-particles-particlesystem.html │ │ │ │ ├── qml-qt-labs-particles-shape-members.html │ │ │ │ ├── qml-qt-labs-particles-shape.html │ │ │ │ ├── qml-qtquick-shapes-circle-members.html │ │ │ │ ├── qml-qtquick-shapes-circle.html │ │ │ │ ├── qml-qtquick-shapes-rectangle-members.html │ │ │ │ ├── qml-qtquick-shapes-rectangle.html │ │ │ │ ├── qml-qtquick-shapes-shape-members.html │ │ │ │ ├── qml-qtquick-shapes-shape.html │ │ │ │ ├── qt-labs-particles-qmlmodule.html │ │ │ │ └── qtquick-shapes-qmlmodule.html │ │ │ ├── namecollision.qdocconf │ │ │ └── src │ │ │ │ ├── overview.qdoc │ │ │ │ ├── particles.qdoc │ │ │ │ └── shapes.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.htm │ │ │ │ ├── trademarks-test2.html │ │ │ │ └── trademarks.html │ │ │ ├── non_ascii_character_input.qdocconf │ │ │ └── src │ │ │ │ └── adventures_with_non_ascii_characters.qdoc │ │ ├── noshowinternal │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── internalclass.xml │ │ │ │ │ ├── noshowinternalmodule-module.xml │ │ │ │ │ ├── noshowinternalmodule-noshowinternal-proxy.xml │ │ │ │ │ └── noshowinternalnamespace-sub-noshowinternal.xml │ │ │ │ ├── html │ │ │ │ │ ├── internalclass-members.html │ │ │ │ │ ├── internalclass.html │ │ │ │ │ ├── noshowinternal.index │ │ │ │ │ ├── noshowinternalmodule-module.html │ │ │ │ │ ├── noshowinternalmodule-noshowinternal-proxy.html │ │ │ │ │ └── noshowinternalnamespace-sub-noshowinternal.html │ │ │ │ └── webxml │ │ │ │ │ ├── internalclass.webxml │ │ │ │ │ ├── noshowinternal.index │ │ │ │ │ ├── noshowinternalmodule-module.webxml │ │ │ │ │ └── noshowinternalnamespace-sub-noshowinternal.webxml │ │ │ ├── noshowinternal.qdocconf │ │ │ └── src │ │ │ │ └── internalclass.h │ │ ├── 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 │ │ ├── overloaded_signals_slots │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── overloadedsignalsslots-module.xml │ │ │ │ │ └── testclass.xml │ │ │ │ ├── html │ │ │ │ │ ├── overloadedsignalsslots-module.html │ │ │ │ │ ├── overloadedsignalsslots.index │ │ │ │ │ ├── testclass-members.html │ │ │ │ │ └── testclass.html │ │ │ │ └── webxml │ │ │ │ │ ├── overloadedsignalsslots-module.webxml │ │ │ │ │ ├── overloadedsignalsslots.index │ │ │ │ │ └── testclass.webxml │ │ │ ├── overloaded_signals_slots.qdocconf │ │ │ └── src │ │ │ │ ├── testclass.cpp │ │ │ │ └── testclass.h │ │ ├── privateheaders │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── privateheadersmodule-module.xml │ │ │ │ │ ├── privateheadersmodule-privateheaders-proxy.xml │ │ │ │ │ ├── privateonlyclass.xml │ │ │ │ │ ├── publicclass-privatedata.xml │ │ │ │ │ └── publicclass.xml │ │ │ │ ├── html │ │ │ │ │ ├── PrivateHeaders-qdoc-warnings.log │ │ │ │ │ ├── privateheaders.index │ │ │ │ │ ├── privateheaders.tags │ │ │ │ │ ├── privateheadersmodule-module.html │ │ │ │ │ ├── privateheadersmodule-privateheaders-proxy.html │ │ │ │ │ ├── privateonlyclass-members.html │ │ │ │ │ ├── privateonlyclass.html │ │ │ │ │ ├── publicclass-members.html │ │ │ │ │ ├── publicclass-privatedata-members.html │ │ │ │ │ ├── publicclass-privatedata.html │ │ │ │ │ └── publicclass.html │ │ │ │ └── webxml │ │ │ │ │ ├── privateheaders.index │ │ │ │ │ ├── privateheaders.tags │ │ │ │ │ ├── privateheadersmodule-module.webxml │ │ │ │ │ ├── privateonlyclass.webxml │ │ │ │ │ ├── publicclass-privatedata-unnamed-struct.webxml │ │ │ │ │ ├── publicclass-privatedata-unnamed-union-unnamed-struct.webxml │ │ │ │ │ ├── publicclass-privatedata-unnamed-union.webxml │ │ │ │ │ ├── publicclass-privatedata.webxml │ │ │ │ │ └── publicclass.webxml │ │ │ ├── privateheaders.qdocconf │ │ │ └── src │ │ │ │ ├── publicclass.h │ │ │ │ └── publicclass_p.h │ │ ├── privatemembers │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── testclass.xml │ │ │ │ │ └── testmodule-module.xml │ │ │ │ ├── html │ │ │ │ │ ├── privatemembers.index │ │ │ │ │ ├── testclass-members.html │ │ │ │ │ ├── testclass.html │ │ │ │ │ └── testmodule-module.html │ │ │ │ └── webxml │ │ │ │ │ ├── privatemembers.index │ │ │ │ │ ├── testclass.webxml │ │ │ │ │ └── testmodule-module.webxml │ │ │ ├── privatemembers.qdocconf │ │ │ └── src │ │ │ │ ├── testclass.cpp │ │ │ │ └── testclass.h │ │ ├── privatevirtuals │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── abstractclass.xml │ │ │ │ │ ├── undocumentedvirtualsclass.xml │ │ │ │ │ └── wassilykandinsky-module.xml │ │ │ │ ├── html │ │ │ │ │ ├── abstractclass-members.html │ │ │ │ │ ├── abstractclass.html │ │ │ │ │ ├── privatevirtuals.index │ │ │ │ │ ├── undocumentedvirtualsclass-members.html │ │ │ │ │ ├── undocumentedvirtualsclass.html │ │ │ │ │ └── wassilykandinsky-module.html │ │ │ │ └── webxml │ │ │ │ │ ├── abstractclass.webxml │ │ │ │ │ ├── privatevirtuals.index │ │ │ │ │ ├── undocumentedvirtualsclass.webxml │ │ │ │ │ └── wassilykandinsky-module.webxml │ │ │ ├── privatevirtuals.qdocconf │ │ │ └── src │ │ │ │ ├── abstractclass.h │ │ │ │ └── undocumentedclass.h │ │ ├── proxypage │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── exists-not-proxypage-proxy.xml │ │ │ │ │ └── stdpair-proxypage-proxy.xml │ │ │ │ └── html │ │ │ │ │ ├── exists-not-proxypage-proxy.html │ │ │ │ │ ├── proxypage.index │ │ │ │ │ └── stdpair-proxypage-proxy.html │ │ │ ├── proxypage.qdocconf │ │ │ └── src │ │ │ │ ├── proxy.h │ │ │ │ └── proxy.qdoc │ │ ├── qml_import_as │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── import-as-test.xml │ │ │ │ │ ├── qml-testmodule-basetype.xml │ │ │ │ │ ├── qml-testmodule-deepnestedtype.xml │ │ │ │ │ ├── qml-testmodule-derivedtype.xml │ │ │ │ │ ├── qml-testmodule-item.xml │ │ │ │ │ └── testmodule-qmlmodule.xml │ │ │ │ ├── html │ │ │ │ │ ├── import-as-test.html │ │ │ │ │ ├── qml-testmodule-basetype-members.html │ │ │ │ │ ├── qml-testmodule-basetype.html │ │ │ │ │ ├── qml-testmodule-deepnestedtype-members.html │ │ │ │ │ ├── qml-testmodule-deepnestedtype.html │ │ │ │ │ ├── qml-testmodule-derivedtype-members.html │ │ │ │ │ ├── qml-testmodule-derivedtype.html │ │ │ │ │ ├── qml-testmodule-item-members.html │ │ │ │ │ ├── qml-testmodule-item.html │ │ │ │ │ ├── qmlimportas.index │ │ │ │ │ └── testmodule-qmlmodule.html │ │ │ │ └── webxml │ │ │ │ │ ├── import-as-test.webxml │ │ │ │ │ ├── qmlimportas.index │ │ │ │ │ └── testmodule-qmlmodule.webxml │ │ │ ├── qml_import_as.qdocconf │ │ │ └── src │ │ │ │ ├── BaseType.qml │ │ │ │ ├── DeepNestedType.qml │ │ │ │ ├── DerivedType.qml │ │ │ │ ├── Item.qdoc │ │ │ │ ├── modules.qdoc │ │ │ │ └── test.qdoc │ │ ├── qml_inherited_link │ │ │ ├── expected │ │ │ │ ├── qml-naming-reference.html │ │ │ │ ├── qml-testmodule-baseitem-members.html │ │ │ │ ├── qml-testmodule-baseitem.html │ │ │ │ ├── qml-testmodule-derivedbutton-members.html │ │ │ │ ├── qml-testmodule-derivedbutton.html │ │ │ │ ├── qmlinheritedlink.index │ │ │ │ └── testmodule-qmlmodule.html │ │ │ ├── qml_inherited_link.qdocconf │ │ │ └── src │ │ │ │ ├── reference.qdoc │ │ │ │ └── types.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 │ │ │ │ │ ├── qmlenumvaluesfromcpp.qhp │ │ │ │ │ ├── qmlmodule-qmlmodule.html │ │ │ │ │ └── test.tag │ │ │ │ └── webxml │ │ │ │ │ ├── class.webxml │ │ │ │ │ ├── module-module.webxml │ │ │ │ │ ├── qmlenumvaluesfromcpp.index │ │ │ │ │ ├── qmlmodule-qmlmodule.webxml │ │ │ │ │ └── test.tag │ │ │ ├── qmlenumvaluesfromcpp.qdocconf │ │ │ └── src │ │ │ │ ├── class.cpp │ │ │ │ ├── class.h │ │ │ │ └── qmltype.qdoc │ │ ├── qmlsingleton │ │ │ ├── expected │ │ │ │ ├── mysingleton-members.html │ │ │ │ ├── mysingleton.html │ │ │ │ ├── mysingleton2.html │ │ │ │ ├── qml-explicitsingleton-members.html │ │ │ │ ├── qml-explicitsingleton.html │ │ │ │ ├── qml-mysingleton-members.html │ │ │ │ ├── qml-mysingleton.html │ │ │ │ ├── qml-mysingleton2-members.html │ │ │ │ ├── qml-mysingleton2.html │ │ │ │ ├── qml-pragmasingleton-members.html │ │ │ │ ├── qml-pragmasingleton.html │ │ │ │ ├── qml-regulartype-members.html │ │ │ │ ├── qml-regulartype.html │ │ │ │ ├── qmlsingletontest.index │ │ │ │ ├── testmodule-module.html │ │ │ │ ├── testnamespace-mysingleton2.html │ │ │ │ └── testnamespace-sub-qmlsingletontest.html │ │ │ ├── qmlsingleton.qdocconf │ │ │ └── src │ │ │ │ ├── PragmaSingleton.qml │ │ │ │ ├── collisionsingleton.cpp │ │ │ │ ├── collisionsingleton.h │ │ │ │ ├── collisiontest.qdoc │ │ │ │ ├── explicitsingleton.qdoc │ │ │ │ ├── ghostsingleton.cpp │ │ │ │ ├── ghostsingleton.h │ │ │ │ ├── regulartype.qdoc │ │ │ │ ├── singleton.cpp │ │ │ │ └── singleton.h │ │ ├── reimplemented_test │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── basedevice.xml │ │ │ │ │ ├── networkdevice.xml │ │ │ │ │ └── testmodule-module.xml │ │ │ │ ├── html │ │ │ │ │ ├── basedevice-members.html │ │ │ │ │ ├── basedevice.html │ │ │ │ │ ├── networkdevice-members.html │ │ │ │ │ ├── networkdevice.html │ │ │ │ │ ├── reimplementedtest.index │ │ │ │ │ └── testmodule-module.html │ │ │ │ └── webxml │ │ │ │ │ ├── basedevice.webxml │ │ │ │ │ ├── networkdevice.webxml │ │ │ │ │ ├── reimplementedtest.index │ │ │ │ │ └── testmodule-module.webxml │ │ │ ├── reimplemented_test.qdocconf │ │ │ └── src │ │ │ │ ├── base.h │ │ │ │ ├── basedevice.cpp │ │ │ │ ├── basedevice.h │ │ │ │ ├── networkdevice.cpp │ │ │ │ ├── networkdevice.h │ │ │ │ └── testmodule.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 │ │ ├── showinternal │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── internalclass.xml │ │ │ │ │ ├── internalonlyclass.xml │ │ │ │ │ ├── showinternalmodule-module.xml │ │ │ │ │ └── showinternalmodule-showinternal-proxy.xml │ │ │ │ ├── html │ │ │ │ │ ├── internalclass-members.html │ │ │ │ │ ├── internalclass.html │ │ │ │ │ ├── internalonlyclass-members.html │ │ │ │ │ ├── internalonlyclass.html │ │ │ │ │ ├── showinternal.index │ │ │ │ │ ├── showinternalmodule-module.html │ │ │ │ │ └── showinternalmodule-showinternal-proxy.html │ │ │ │ └── webxml │ │ │ │ │ ├── internalclass.webxml │ │ │ │ │ ├── internalonlyclass.webxml │ │ │ │ │ ├── showinternal.index │ │ │ │ │ └── showinternalmodule-module.webxml │ │ │ ├── showinternal.qdocconf │ │ │ └── src │ │ │ │ └── internalclass.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 │ │ ├── snippet_marker_indentation │ │ │ ├── expected │ │ │ │ ├── snippet-marker-indentation.html │ │ │ │ ├── snippet-marker-indentation.webxml │ │ │ │ ├── snippet-marker-indentation.xml │ │ │ │ └── snippet_marker_indentation.index │ │ │ ├── snippet_marker_indentation.qdocconf │ │ │ └── src │ │ │ │ ├── test.cpp │ │ │ │ └── test.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 │ │ ├── template_alias_default_params │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── templatealiasmodule-module.xml │ │ │ │ │ └── testaliases.xml │ │ │ │ ├── html │ │ │ │ │ ├── templatealiasdefaultparams.index │ │ │ │ │ ├── templatealiasmodule-module.html │ │ │ │ │ └── testaliases.html │ │ │ │ └── webxml │ │ │ │ │ ├── templatealiasdefaultparams.index │ │ │ │ │ ├── templatealiasmodule-module.webxml │ │ │ │ │ └── testaliases.webxml │ │ │ ├── src │ │ │ │ ├── module.qdoc │ │ │ │ ├── test.cpp │ │ │ │ └── test.h │ │ │ └── template_alias_default_params.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 │ │ ├── toc_command │ │ │ ├── expected │ │ │ │ └── html │ │ │ │ │ ├── env.html │ │ │ │ │ ├── gs.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── req.html │ │ │ │ │ ├── run.html │ │ │ │ │ ├── testtoccommand.index │ │ │ │ │ └── testtoccommand_toc.xml │ │ │ ├── src │ │ │ │ └── toc.qdoc │ │ │ └── toc_command.qdocconf │ │ ├── tocnavigation │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── a.xml │ │ │ │ │ ├── c.xml │ │ │ │ │ ├── crash.xml │ │ │ │ │ ├── d.xml │ │ │ │ │ ├── e.xml │ │ │ │ │ ├── group2.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 │ │ │ │ │ ├── a.html │ │ │ │ │ ├── c.html │ │ │ │ │ ├── crash.html │ │ │ │ │ ├── d.html │ │ │ │ │ ├── e.html │ │ │ │ │ ├── group2.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 │ │ │ │ │ ├── a.webxml │ │ │ │ │ ├── c.webxml │ │ │ │ │ ├── crash.webxml │ │ │ │ │ ├── d.webxml │ │ │ │ │ ├── e.webxml │ │ │ │ │ ├── group2.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 │ │ │ │ ├── group.qdoc │ │ │ │ ├── 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 │ │ ├── undocumented_class │ │ │ ├── expected │ │ │ │ └── undocumented-class-with-documented-members.index │ │ │ ├── src │ │ │ │ ├── class.cpp │ │ │ │ └── class.h │ │ │ └── undocumented_class.qdocconf │ │ ├── unnamedstruct │ │ │ ├── expected │ │ │ │ ├── docbook │ │ │ │ │ ├── axisandangle.xml │ │ │ │ │ └── unnamedstructmodule-module.xml │ │ │ │ ├── html │ │ │ │ │ ├── axisandangle-members.html │ │ │ │ │ ├── axisandangle.html │ │ │ │ │ ├── unnamedstruct.index │ │ │ │ │ ├── unnamedstruct.tags │ │ │ │ │ └── unnamedstructmodule-module.html │ │ │ │ └── webxml │ │ │ │ │ ├── axisandangle.webxml │ │ │ │ │ ├── unnamedstruct.index │ │ │ │ │ ├── unnamedstruct.tags │ │ │ │ │ └── unnamedstructmodule-module.webxml │ │ │ ├── src │ │ │ │ └── templatestruct.h │ │ │ └── unnamedstruct.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 │ │ └── warninglog │ │ │ ├── expected │ │ │ └── html │ │ │ │ ├── WarningLog-qdoc-warnings.log │ │ │ │ ├── relativepathstest-module.html │ │ │ │ ├── testclass-members.html │ │ │ │ ├── testclass.html │ │ │ │ └── warninglog.index │ │ │ ├── src │ │ │ ├── testclass.cpp │ │ │ └── testclass.h │ │ │ └── warninglog.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 │ │ ├── lcheck │ │ │ ├── CMakeLists.txt │ │ │ ├── testdata │ │ │ │ ├── accelerator_mismatch_de.ts │ │ │ │ ├── expected_invalid_report.txt │ │ │ │ ├── finished_issues_de.ts │ │ │ │ ├── invalid_de.ts │ │ │ │ ├── placemarker_mismatch_de.ts │ │ │ │ ├── punctuation_mismatch_de.ts │ │ │ │ ├── valid_de.ts │ │ │ │ └── whitespace_mismatch_de.ts │ │ │ └── tst_lcheck.cpp │ │ ├── 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 │ │ ├── ltext2id │ │ │ ├── CMakeLists.txt │ │ │ ├── data │ │ │ │ ├── 2way.cpp │ │ │ │ ├── 2way.js │ │ │ │ ├── 2way.qml │ │ │ │ ├── all.cpp │ │ │ │ ├── all.cpp.out │ │ │ │ ├── cpp_expectedoutput.txt │ │ │ │ ├── fails.cpp │ │ │ │ ├── fails.cpp.out │ │ │ │ ├── main.js │ │ │ │ ├── main.js.out │ │ │ │ ├── main.qml │ │ │ │ ├── main.qml.out │ │ │ │ ├── project.out │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── project.ts │ │ │ │ ├── project.ts │ │ │ │ ├── project.ts.out │ │ │ │ ├── project.ui │ │ │ │ ├── project.ui.out │ │ │ │ └── project │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── project.ts │ │ │ └── tst_ltext2id.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 │ │ │ │ │ ├── external_types.h │ │ │ │ │ ├── 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_attributes │ │ │ │ │ ├── expectedoutput.txt │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── project.pro │ │ │ │ │ └── project.ts.result │ │ │ │ ├── parsecpp_expression │ │ │ │ │ ├── expectedoutput.txt │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── 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 /.cmake.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/.cmake.conf -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/.gitmodules -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/.gitreview -------------------------------------------------------------------------------- /.tag: -------------------------------------------------------------------------------- 1 | e40b73b89e96e99724d0c07949ee1fc32ac37d52 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/BSL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/LICENSES/BSL-1.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/GFDL-1.3-no-invariants-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/LICENSES/GFDL-1.3-no-invariants-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/LICENSES/GPL-2.0-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/LICENSES/GPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/LICENSES/LGPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LLVM-exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/LICENSES/LLVM-exception.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-Qt-Commercial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/LICENSES/LicenseRef-Qt-Commercial.txt -------------------------------------------------------------------------------- /LICENSES/Qt-GPL-exception-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/LICENSES/Qt-GPL-exception-1.0.txt -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/REUSE.toml -------------------------------------------------------------------------------- /cmake/FindWrapLibClang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/cmake/FindWrapLibClang.cmake -------------------------------------------------------------------------------- /coin/axivion/ci_config_linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/coin/axivion/ci_config_linux.json -------------------------------------------------------------------------------- /coin/axivion/start_analysis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/coin/axivion/start_analysis.sh -------------------------------------------------------------------------------- /coin/module_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/coin/module_config.yaml -------------------------------------------------------------------------------- /configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/configure.cmake -------------------------------------------------------------------------------- /dependencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dependencies.yaml -------------------------------------------------------------------------------- /dist/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/REUSE.toml -------------------------------------------------------------------------------- /dist/changes-5.0.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.0.1 -------------------------------------------------------------------------------- /dist/changes-5.0.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.0.2 -------------------------------------------------------------------------------- /dist/changes-5.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.1.0 -------------------------------------------------------------------------------- /dist/changes-5.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.1.1 -------------------------------------------------------------------------------- /dist/changes-5.10.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.10.0 -------------------------------------------------------------------------------- /dist/changes-5.10.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.10.1 -------------------------------------------------------------------------------- /dist/changes-5.11.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.11.0 -------------------------------------------------------------------------------- /dist/changes-5.11.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.11.1 -------------------------------------------------------------------------------- /dist/changes-5.11.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.11.2 -------------------------------------------------------------------------------- /dist/changes-5.11.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.11.3 -------------------------------------------------------------------------------- /dist/changes-5.12.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.12.0 -------------------------------------------------------------------------------- /dist/changes-5.12.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.12.1 -------------------------------------------------------------------------------- /dist/changes-5.12.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.12.10 -------------------------------------------------------------------------------- /dist/changes-5.12.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.12.2 -------------------------------------------------------------------------------- /dist/changes-5.12.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.12.3 -------------------------------------------------------------------------------- /dist/changes-5.12.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.12.4 -------------------------------------------------------------------------------- /dist/changes-5.12.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.12.5 -------------------------------------------------------------------------------- /dist/changes-5.13.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.13.0 -------------------------------------------------------------------------------- /dist/changes-5.13.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.13.1 -------------------------------------------------------------------------------- /dist/changes-5.13.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.13.2 -------------------------------------------------------------------------------- /dist/changes-5.14.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.14.0 -------------------------------------------------------------------------------- /dist/changes-5.14.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.14.1 -------------------------------------------------------------------------------- /dist/changes-5.14.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.14.2 -------------------------------------------------------------------------------- /dist/changes-5.15.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.15.0 -------------------------------------------------------------------------------- /dist/changes-5.15.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.15.1 -------------------------------------------------------------------------------- /dist/changes-5.15.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.15.2 -------------------------------------------------------------------------------- /dist/changes-5.2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.2.0 -------------------------------------------------------------------------------- /dist/changes-5.2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.2.1 -------------------------------------------------------------------------------- /dist/changes-5.6.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.6.3 -------------------------------------------------------------------------------- /dist/changes-5.7.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.7.0 -------------------------------------------------------------------------------- /dist/changes-5.8.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.8.0 -------------------------------------------------------------------------------- /dist/changes-5.9.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.9.0 -------------------------------------------------------------------------------- /dist/changes-5.9.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.9.1 -------------------------------------------------------------------------------- /dist/changes-5.9.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.9.2 -------------------------------------------------------------------------------- /dist/changes-5.9.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.9.3 -------------------------------------------------------------------------------- /dist/changes-5.9.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.9.4 -------------------------------------------------------------------------------- /dist/changes-5.9.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.9.5 -------------------------------------------------------------------------------- /dist/changes-5.9.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-5.9.6 -------------------------------------------------------------------------------- /dist/changes-6.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/dist/changes-6.0.0 -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/assistant/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/assistant/CMakeLists.txt -------------------------------------------------------------------------------- /examples/assistant/assistant.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/assistant/assistant.pro -------------------------------------------------------------------------------- /examples/assistant/remotecontrol/enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/assistant/remotecontrol/enter.png -------------------------------------------------------------------------------- /examples/assistant/remotecontrol/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/assistant/remotecontrol/main.cpp -------------------------------------------------------------------------------- /examples/designer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/designer/CMakeLists.txt -------------------------------------------------------------------------------- /examples/designer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/designer/README -------------------------------------------------------------------------------- /examples/designer/calculatorform/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/designer/calculatorform/main.cpp -------------------------------------------------------------------------------- /examples/designer/designer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/designer/designer.pro -------------------------------------------------------------------------------- /examples/examples.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/examples.pro -------------------------------------------------------------------------------- /examples/help/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | qt_internal_add_example(contextsensitivehelp) 2 | -------------------------------------------------------------------------------- /examples/help/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/help/README -------------------------------------------------------------------------------- /examples/help/contextsensitivehelp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/help/contextsensitivehelp/main.cpp -------------------------------------------------------------------------------- /examples/help/help.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | CONFIG += ordered 3 | 4 | SUBDIRS += contextsensitivehelp 5 | -------------------------------------------------------------------------------- /examples/linguist/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/CMakeLists.txt -------------------------------------------------------------------------------- /examples/linguist/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/README -------------------------------------------------------------------------------- /examples/linguist/arrowpad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/arrowpad/CMakeLists.txt -------------------------------------------------------------------------------- /examples/linguist/arrowpad/arrowpad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/arrowpad/arrowpad.cpp -------------------------------------------------------------------------------- /examples/linguist/arrowpad/arrowpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/arrowpad/arrowpad.h -------------------------------------------------------------------------------- /examples/linguist/arrowpad/arrowpad.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/arrowpad/arrowpad.pro -------------------------------------------------------------------------------- /examples/linguist/arrowpad/arrowpad_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/arrowpad/arrowpad_en.ts -------------------------------------------------------------------------------- /examples/linguist/arrowpad/arrowpad_fr.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/linguist/arrowpad/arrowpad_nl.ts: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/linguist/arrowpad/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/arrowpad/main.cpp -------------------------------------------------------------------------------- /examples/linguist/arrowpad/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/arrowpad/mainwindow.cpp -------------------------------------------------------------------------------- /examples/linguist/arrowpad/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/arrowpad/mainwindow.h -------------------------------------------------------------------------------- /examples/linguist/doc/src/arrowpad.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/doc/src/arrowpad.qdoc -------------------------------------------------------------------------------- /examples/linguist/doc/src/trollprint.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/doc/src/trollprint.qdoc -------------------------------------------------------------------------------- /examples/linguist/linguist.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/linguist.pro -------------------------------------------------------------------------------- /examples/linguist/localizedclock/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/localizedclock/Main.qml -------------------------------------------------------------------------------- /examples/linguist/localizedclock/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/localizedclock/main.cpp -------------------------------------------------------------------------------- /examples/linguist/trollprint/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/trollprint/CMakeLists.txt -------------------------------------------------------------------------------- /examples/linguist/trollprint/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/trollprint/main.cpp -------------------------------------------------------------------------------- /examples/linguist/trollprint/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/trollprint/mainwindow.cpp -------------------------------------------------------------------------------- /examples/linguist/trollprint/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/trollprint/mainwindow.h -------------------------------------------------------------------------------- /examples/linguist/trollprint/printpanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/trollprint/printpanel.cpp -------------------------------------------------------------------------------- /examples/linguist/trollprint/printpanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/trollprint/printpanel.h -------------------------------------------------------------------------------- /examples/linguist/trollprint/trollprint.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/linguist/trollprint/trollprint.pro -------------------------------------------------------------------------------- /examples/uitools/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | qt_internal_add_example(textfinder) 2 | -------------------------------------------------------------------------------- /examples/uitools/doc/src/textfinder.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/uitools/doc/src/textfinder.qdoc -------------------------------------------------------------------------------- /examples/uitools/textfinder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/uitools/textfinder/CMakeLists.txt -------------------------------------------------------------------------------- /examples/uitools/textfinder/forms/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/uitools/textfinder/forms/input.txt -------------------------------------------------------------------------------- /examples/uitools/textfinder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/uitools/textfinder/main.cpp -------------------------------------------------------------------------------- /examples/uitools/textfinder/textfinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/uitools/textfinder/textfinder.cpp -------------------------------------------------------------------------------- /examples/uitools/textfinder/textfinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/uitools/textfinder/textfinder.h -------------------------------------------------------------------------------- /examples/uitools/textfinder/textfinder.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/uitools/textfinder/textfinder.pro -------------------------------------------------------------------------------- /examples/uitools/textfinder/textfinder.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/uitools/textfinder/textfinder.qrc -------------------------------------------------------------------------------- /examples/uitools/uitools.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/examples/uitools/uitools.pro -------------------------------------------------------------------------------- /licenseRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/licenseRule.json -------------------------------------------------------------------------------- /qt_cmdline.cmake: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/assistant/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/CMakeLists.txt -------------------------------------------------------------------------------- /src/assistant/assistant/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/CMakeLists.txt -------------------------------------------------------------------------------- /src/assistant/assistant/Info_mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/Info_mac.plist -------------------------------------------------------------------------------- /src/assistant/assistant/aboutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/aboutdialog.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/aboutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/aboutdialog.h -------------------------------------------------------------------------------- /src/assistant/assistant/assistant.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/assistant.desktop -------------------------------------------------------------------------------- /src/assistant/assistant/assistant.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/assistant.icns -------------------------------------------------------------------------------- /src/assistant/assistant/assistant.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/assistant.ico -------------------------------------------------------------------------------- /src/assistant/assistant/bookmarkdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/bookmarkdialog.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/bookmarkdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/bookmarkdialog.h -------------------------------------------------------------------------------- /src/assistant/assistant/bookmarkdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/bookmarkdialog.ui -------------------------------------------------------------------------------- /src/assistant/assistant/bookmarkitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/bookmarkitem.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/bookmarkitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/bookmarkitem.h -------------------------------------------------------------------------------- /src/assistant/assistant/bookmarkmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/bookmarkmanager.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/bookmarkmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/bookmarkmanager.h -------------------------------------------------------------------------------- /src/assistant/assistant/bookmarkmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/bookmarkmodel.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/bookmarkmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/bookmarkmodel.h -------------------------------------------------------------------------------- /src/assistant/assistant/bookmarkwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/bookmarkwidget.ui -------------------------------------------------------------------------------- /src/assistant/assistant/centralwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/centralwidget.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/centralwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/centralwidget.h -------------------------------------------------------------------------------- /src/assistant/assistant/cmdlineparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/cmdlineparser.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/cmdlineparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/cmdlineparser.h -------------------------------------------------------------------------------- /src/assistant/assistant/contentwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/contentwindow.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/contentwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/contentwindow.h -------------------------------------------------------------------------------- /src/assistant/assistant/doc/internal/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/doc/internal/README -------------------------------------------------------------------------------- /src/assistant/assistant/doc/internal/internal.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = aux 2 | QMAKE_DOCS = $$PWD/assistant.qdocconf 3 | -------------------------------------------------------------------------------- /src/assistant/assistant/findwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/findwidget.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/findwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/findwidget.h -------------------------------------------------------------------------------- /src/assistant/assistant/globalactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/globalactions.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/globalactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/globalactions.h -------------------------------------------------------------------------------- /src/assistant/assistant/helpdocsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/helpdocsettings.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/helpdocsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/helpdocsettings.h -------------------------------------------------------------------------------- /src/assistant/assistant/helpenginewrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/helpenginewrapper.h -------------------------------------------------------------------------------- /src/assistant/assistant/helpviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/helpviewer.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/helpviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/helpviewer.h -------------------------------------------------------------------------------- /src/assistant/assistant/helpviewerimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/helpviewerimpl.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/helpviewerimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/helpviewerimpl.h -------------------------------------------------------------------------------- /src/assistant/assistant/helpviewerimpl_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/helpviewerimpl_p.h -------------------------------------------------------------------------------- /src/assistant/assistant/images/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/images/bookmark.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/mac/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/images/mac/book.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/mac/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/images/mac/find.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/mac/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/images/mac/home.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/mac/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/images/mac/next.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/win/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/images/win/book.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/win/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/images/win/find.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/win/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/images/win/home.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/win/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/images/win/next.png -------------------------------------------------------------------------------- /src/assistant/assistant/images/wrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/images/wrap.png -------------------------------------------------------------------------------- /src/assistant/assistant/indexwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/indexwindow.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/indexwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/indexwindow.h -------------------------------------------------------------------------------- /src/assistant/assistant/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/main.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/mainwindow.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/mainwindow.h -------------------------------------------------------------------------------- /src/assistant/assistant/openpagesmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/openpagesmanager.h -------------------------------------------------------------------------------- /src/assistant/assistant/openpagesmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/openpagesmodel.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/openpagesmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/openpagesmodel.h -------------------------------------------------------------------------------- /src/assistant/assistant/openpagesswitcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/openpagesswitcher.h -------------------------------------------------------------------------------- /src/assistant/assistant/openpageswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/openpageswidget.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/openpageswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/openpageswidget.h -------------------------------------------------------------------------------- /src/assistant/assistant/preferencesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/preferencesdialog.h -------------------------------------------------------------------------------- /src/assistant/assistant/qtdocinstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/qtdocinstaller.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/qtdocinstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/qtdocinstaller.h -------------------------------------------------------------------------------- /src/assistant/assistant/remotecontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/remotecontrol.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/remotecontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/remotecontrol.h -------------------------------------------------------------------------------- /src/assistant/assistant/searchwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/searchwidget.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/searchwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/searchwidget.h -------------------------------------------------------------------------------- /src/assistant/assistant/stdinlistener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/stdinlistener.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/stdinlistener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/stdinlistener.h -------------------------------------------------------------------------------- /src/assistant/assistant/stdinlistener_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/stdinlistener_win.h -------------------------------------------------------------------------------- /src/assistant/assistant/topicchooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/topicchooser.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/topicchooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/topicchooser.h -------------------------------------------------------------------------------- /src/assistant/assistant/topicchooser.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/topicchooser.ui -------------------------------------------------------------------------------- /src/assistant/assistant/tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/tracer.h -------------------------------------------------------------------------------- /src/assistant/assistant/xbelsupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/xbelsupport.cpp -------------------------------------------------------------------------------- /src/assistant/assistant/xbelsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/assistant/xbelsupport.h -------------------------------------------------------------------------------- /src/assistant/help/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/CMakeLists.txt -------------------------------------------------------------------------------- /src/assistant/help/doc/qthelp.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/doc/qthelp.qdocconf -------------------------------------------------------------------------------- /src/assistant/help/doc/src/qthelp-toc.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/doc/src/qthelp-toc.qdoc -------------------------------------------------------------------------------- /src/assistant/help/doc/src/qthelp.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/doc/src/qthelp.qdoc -------------------------------------------------------------------------------- /src/assistant/help/images/1leftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/images/1leftarrow.png -------------------------------------------------------------------------------- /src/assistant/help/images/1rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/images/1rightarrow.png -------------------------------------------------------------------------------- /src/assistant/help/images/3leftarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/images/3leftarrow.png -------------------------------------------------------------------------------- /src/assistant/help/images/3rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/images/3rightarrow.png -------------------------------------------------------------------------------- /src/assistant/help/images/mac/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/images/mac/minus.png -------------------------------------------------------------------------------- /src/assistant/help/images/mac/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/images/mac/plus.png -------------------------------------------------------------------------------- /src/assistant/help/images/win/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/images/win/minus.png -------------------------------------------------------------------------------- /src/assistant/help/images/win/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/images/win/plus.png -------------------------------------------------------------------------------- /src/assistant/help/qcompressedhelpinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qcompressedhelpinfo.cpp -------------------------------------------------------------------------------- /src/assistant/help/qcompressedhelpinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qcompressedhelpinfo.h -------------------------------------------------------------------------------- /src/assistant/help/qfilternamedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qfilternamedialog.cpp -------------------------------------------------------------------------------- /src/assistant/help/qfilternamedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qfilternamedialog.ui -------------------------------------------------------------------------------- /src/assistant/help/qfilternamedialog_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qfilternamedialog_p.h -------------------------------------------------------------------------------- /src/assistant/help/qhelp_global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelp_global.cpp -------------------------------------------------------------------------------- /src/assistant/help/qhelp_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelp_global.h -------------------------------------------------------------------------------- /src/assistant/help/qhelpcontentitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpcontentitem.cpp -------------------------------------------------------------------------------- /src/assistant/help/qhelpcontentitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpcontentitem.h -------------------------------------------------------------------------------- /src/assistant/help/qhelpcontentwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpcontentwidget.cpp -------------------------------------------------------------------------------- /src/assistant/help/qhelpcontentwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpcontentwidget.h -------------------------------------------------------------------------------- /src/assistant/help/qhelpdbreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpdbreader.cpp -------------------------------------------------------------------------------- /src/assistant/help/qhelpdbreader_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpdbreader_p.h -------------------------------------------------------------------------------- /src/assistant/help/qhelpengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpengine.cpp -------------------------------------------------------------------------------- /src/assistant/help/qhelpengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpengine.h -------------------------------------------------------------------------------- /src/assistant/help/qhelpenginecore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpenginecore.cpp -------------------------------------------------------------------------------- /src/assistant/help/qhelpenginecore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpenginecore.h -------------------------------------------------------------------------------- /src/assistant/help/qhelpfilterdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpfilterdata.cpp -------------------------------------------------------------------------------- /src/assistant/help/qhelpfilterdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpfilterdata.h -------------------------------------------------------------------------------- /src/assistant/help/qhelpfilterengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpfilterengine.cpp -------------------------------------------------------------------------------- /src/assistant/help/qhelpfilterengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpfilterengine.h -------------------------------------------------------------------------------- /src/assistant/help/qhelpindexwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpindexwidget.cpp -------------------------------------------------------------------------------- /src/assistant/help/qhelpindexwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpindexwidget.h -------------------------------------------------------------------------------- /src/assistant/help/qhelplink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelplink.cpp -------------------------------------------------------------------------------- /src/assistant/help/qhelplink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelplink.h -------------------------------------------------------------------------------- /src/assistant/help/qhelpsearchengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpsearchengine.cpp -------------------------------------------------------------------------------- /src/assistant/help/qhelpsearchengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpsearchengine.h -------------------------------------------------------------------------------- /src/assistant/help/qhelpsearchenginecore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpsearchenginecore.h -------------------------------------------------------------------------------- /src/assistant/help/qhelpsearchquerywidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpsearchquerywidget.h -------------------------------------------------------------------------------- /src/assistant/help/qhelpsearchresult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpsearchresult.cpp -------------------------------------------------------------------------------- /src/assistant/help/qhelpsearchresult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qhelpsearchresult.h -------------------------------------------------------------------------------- /src/assistant/help/qoptionswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qoptionswidget.cpp -------------------------------------------------------------------------------- /src/assistant/help/qoptionswidget_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/help/qoptionswidget_p.h -------------------------------------------------------------------------------- /src/assistant/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /src/assistant/plugins/help/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/plugins/help/CMakeLists.txt -------------------------------------------------------------------------------- /src/assistant/qhelpgenerator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/qhelpgenerator/CMakeLists.txt -------------------------------------------------------------------------------- /src/assistant/qhelpgenerator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/assistant/qhelpgenerator/main.cpp -------------------------------------------------------------------------------- /src/designer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/CMakeLists.txt -------------------------------------------------------------------------------- /src/designer/data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/data/README -------------------------------------------------------------------------------- /src/designer/data/generate_header.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/data/generate_header.xsl -------------------------------------------------------------------------------- /src/designer/data/generate_impl.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/data/generate_impl.xsl -------------------------------------------------------------------------------- /src/designer/data/generate_shared.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/data/generate_shared.xsl -------------------------------------------------------------------------------- /src/designer/data/generate_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/data/generate_ui.py -------------------------------------------------------------------------------- /src/designer/data/ui3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/data/ui3.xsd -------------------------------------------------------------------------------- /src/designer/data/ui4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/data/ui4.xsd -------------------------------------------------------------------------------- /src/designer/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/designer/src/components/buddyeditor/buddyeditor.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/designer/src/components/lib/lib_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/components/lib/lib_pch.h -------------------------------------------------------------------------------- /src/designer/src/components/signalsloteditor/signalsloteditor.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/designer/src/components/tabordereditor/tabordereditor.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/designer/src/designer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/CMakeLists.txt -------------------------------------------------------------------------------- /src/designer/src/designer/Info_mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/Info_mac.plist -------------------------------------------------------------------------------- /src/designer/src/designer/appfontdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/appfontdialog.cpp -------------------------------------------------------------------------------- /src/designer/src/designer/appfontdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/appfontdialog.h -------------------------------------------------------------------------------- /src/designer/src/designer/assistantclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/assistantclient.h -------------------------------------------------------------------------------- /src/designer/src/designer/designer.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/designer.desktop -------------------------------------------------------------------------------- /src/designer/src/designer/designer.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/designer.icns -------------------------------------------------------------------------------- /src/designer/src/designer/designer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/designer.ico -------------------------------------------------------------------------------- /src/designer/src/designer/designer_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/designer_enums.h -------------------------------------------------------------------------------- /src/designer/src/designer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/main.cpp -------------------------------------------------------------------------------- /src/designer/src/designer/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/mainwindow.cpp -------------------------------------------------------------------------------- /src/designer/src/designer/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/mainwindow.h -------------------------------------------------------------------------------- /src/designer/src/designer/newform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/newform.cpp -------------------------------------------------------------------------------- /src/designer/src/designer/newform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/newform.h -------------------------------------------------------------------------------- /src/designer/src/designer/qdesigner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/qdesigner.cpp -------------------------------------------------------------------------------- /src/designer/src/designer/qdesigner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/qdesigner.h -------------------------------------------------------------------------------- /src/designer/src/designer/qdesigner_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/qdesigner_pch.h -------------------------------------------------------------------------------- /src/designer/src/designer/uifile.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/uifile.icns -------------------------------------------------------------------------------- /src/designer/src/designer/versiondialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/versiondialog.cpp -------------------------------------------------------------------------------- /src/designer/src/designer/versiondialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/designer/versiondialog.h -------------------------------------------------------------------------------- /src/designer/src/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/CMakeLists.txt -------------------------------------------------------------------------------- /src/designer/src/lib/extension/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/extension/extension.h -------------------------------------------------------------------------------- /src/designer/src/lib/lib_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/lib_pch.h -------------------------------------------------------------------------------- /src/designer/src/lib/sdk/abstractdnditem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/sdk/abstractdnditem.h -------------------------------------------------------------------------------- /src/designer/src/lib/sdk/abstractlanguage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/sdk/abstractlanguage.h -------------------------------------------------------------------------------- /src/designer/src/lib/sdk/abstractsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/sdk/abstractsettings.h -------------------------------------------------------------------------------- /src/designer/src/lib/sdk/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/sdk/container.h -------------------------------------------------------------------------------- /src/designer/src/lib/sdk/container.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/sdk/container.qdoc -------------------------------------------------------------------------------- /src/designer/src/lib/sdk/extrainfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/sdk/extrainfo.cpp -------------------------------------------------------------------------------- /src/designer/src/lib/sdk/extrainfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/sdk/extrainfo.h -------------------------------------------------------------------------------- /src/designer/src/lib/sdk/layoutdecoration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/sdk/layoutdecoration.h -------------------------------------------------------------------------------- /src/designer/src/lib/sdk/membersheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/sdk/membersheet.h -------------------------------------------------------------------------------- /src/designer/src/lib/sdk/membersheet.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/sdk/membersheet.qdoc -------------------------------------------------------------------------------- /src/designer/src/lib/sdk/propertysheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/sdk/propertysheet.h -------------------------------------------------------------------------------- /src/designer/src/lib/sdk/propertysheet.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/sdk/propertysheet.qdoc -------------------------------------------------------------------------------- /src/designer/src/lib/sdk/sdk_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/sdk/sdk_global.h -------------------------------------------------------------------------------- /src/designer/src/lib/sdk/taskmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/sdk/taskmenu.cpp -------------------------------------------------------------------------------- /src/designer/src/lib/sdk/taskmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/sdk/taskmenu.h -------------------------------------------------------------------------------- /src/designer/src/lib/sdk/taskmenu.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/sdk/taskmenu.qdoc -------------------------------------------------------------------------------- /src/designer/src/lib/shared/codedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/codedialog.cpp -------------------------------------------------------------------------------- /src/designer/src/lib/shared/codedialog_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/codedialog_p.h -------------------------------------------------------------------------------- /src/designer/src/lib/shared/dialoggui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/dialoggui.cpp -------------------------------------------------------------------------------- /src/designer/src/lib/shared/dialoggui_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/dialoggui_p.h -------------------------------------------------------------------------------- /src/designer/src/lib/shared/grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/grid.cpp -------------------------------------------------------------------------------- /src/designer/src/lib/shared/grid_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/grid_p.h -------------------------------------------------------------------------------- /src/designer/src/lib/shared/gridpanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/gridpanel.cpp -------------------------------------------------------------------------------- /src/designer/src/lib/shared/gridpanel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/gridpanel.ui -------------------------------------------------------------------------------- /src/designer/src/lib/shared/gridpanel_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/gridpanel_p.h -------------------------------------------------------------------------------- /src/designer/src/lib/shared/iconloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/iconloader.cpp -------------------------------------------------------------------------------- /src/designer/src/lib/shared/iconloader_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/iconloader_p.h -------------------------------------------------------------------------------- /src/designer/src/lib/shared/layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/layout.cpp -------------------------------------------------------------------------------- /src/designer/src/lib/shared/layout_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/layout_p.h -------------------------------------------------------------------------------- /src/designer/src/lib/shared/layoutinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/layoutinfo.cpp -------------------------------------------------------------------------------- /src/designer/src/lib/shared/layoutinfo_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/layoutinfo_p.h -------------------------------------------------------------------------------- /src/designer/src/lib/shared/morphmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/morphmenu.cpp -------------------------------------------------------------------------------- /src/designer/src/lib/shared/morphmenu_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/morphmenu_p.h -------------------------------------------------------------------------------- /src/designer/src/lib/shared/orderdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/orderdialog.cpp -------------------------------------------------------------------------------- /src/designer/src/lib/shared/orderdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/orderdialog.ui -------------------------------------------------------------------------------- /src/designer/src/lib/shared/orderdialog_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/orderdialog_p.h -------------------------------------------------------------------------------- /src/designer/src/lib/shared/plugindialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/plugindialog.ui -------------------------------------------------------------------------------- /src/designer/src/lib/shared/rcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/rcc.cpp -------------------------------------------------------------------------------- /src/designer/src/lib/shared/rcc_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/rcc_p.h -------------------------------------------------------------------------------- /src/designer/src/lib/shared/zoomwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/zoomwidget.cpp -------------------------------------------------------------------------------- /src/designer/src/lib/shared/zoomwidget_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/shared/zoomwidget_p.h -------------------------------------------------------------------------------- /src/designer/src/lib/uilib/formbuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/uilib/formbuilder.cpp -------------------------------------------------------------------------------- /src/designer/src/lib/uilib/formbuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/uilib/formbuilder.h -------------------------------------------------------------------------------- /src/designer/src/lib/uilib/properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/uilib/properties.cpp -------------------------------------------------------------------------------- /src/designer/src/lib/uilib/properties_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/uilib/properties_p.h -------------------------------------------------------------------------------- /src/designer/src/lib/uilib/textbuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/uilib/textbuilder.cpp -------------------------------------------------------------------------------- /src/designer/src/lib/uilib/textbuilder_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/uilib/textbuilder_p.h -------------------------------------------------------------------------------- /src/designer/src/lib/uilib/ui4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/uilib/ui4.cpp -------------------------------------------------------------------------------- /src/designer/src/lib/uilib/ui4_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/uilib/ui4_p.h -------------------------------------------------------------------------------- /src/designer/src/lib/uilib/uilib_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/uilib/uilib_global.h -------------------------------------------------------------------------------- /src/designer/src/lib/uilib/widgets.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/lib/uilib/widgets.table -------------------------------------------------------------------------------- /src/designer/src/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/designer/src/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /src/designer/src/plugins/activeqt/activeqt.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/designer/src/plugins/qwebview/qwebview.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/distancefieldgenerator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/distancefieldgenerator/CMakeLists.txt -------------------------------------------------------------------------------- /src/distancefieldgenerator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/distancefieldgenerator/main.cpp -------------------------------------------------------------------------------- /src/distancefieldgenerator/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/distancefieldgenerator/mainwindow.cpp -------------------------------------------------------------------------------- /src/distancefieldgenerator/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/distancefieldgenerator/mainwindow.h -------------------------------------------------------------------------------- /src/distancefieldgenerator/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/distancefieldgenerator/mainwindow.ui -------------------------------------------------------------------------------- /src/global/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/global/CMakeLists.txt -------------------------------------------------------------------------------- /src/kmap2qmap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/kmap2qmap/CMakeLists.txt -------------------------------------------------------------------------------- /src/kmap2qmap/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/kmap2qmap/main.cpp -------------------------------------------------------------------------------- /src/linguist/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/CMakeLists.txt -------------------------------------------------------------------------------- /src/linguist/GenerateLUpdateProject.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/GenerateLUpdateProject.cmake -------------------------------------------------------------------------------- /src/linguist/Qt6LinguistToolsMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/Qt6LinguistToolsMacros.cmake -------------------------------------------------------------------------------- /src/linguist/lcheck/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/lcheck/CMakeLists.txt -------------------------------------------------------------------------------- /src/linguist/lcheck/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/lcheck/main.cpp -------------------------------------------------------------------------------- /src/linguist/lconvert/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/lconvert/CMakeLists.txt -------------------------------------------------------------------------------- /src/linguist/lconvert/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/lconvert/main.cpp -------------------------------------------------------------------------------- /src/linguist/linguist/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/CMakeLists.txt -------------------------------------------------------------------------------- /src/linguist/linguist/Info_mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/Info_mac.plist -------------------------------------------------------------------------------- /src/linguist/linguist/batchtranslation.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/batchtranslation.ui -------------------------------------------------------------------------------- /src/linguist/linguist/doc/cmake-macros.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/doc/cmake-macros.qdoc -------------------------------------------------------------------------------- /src/linguist/linguist/doc/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/doc/images/next.png -------------------------------------------------------------------------------- /src/linguist/linguist/errorsview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/errorsview.cpp -------------------------------------------------------------------------------- /src/linguist/linguist/errorsview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/errorsview.h -------------------------------------------------------------------------------- /src/linguist/linguist/finddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/finddialog.cpp -------------------------------------------------------------------------------- /src/linguist/linguist/finddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/finddialog.h -------------------------------------------------------------------------------- /src/linguist/linguist/finddialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/finddialog.ui -------------------------------------------------------------------------------- /src/linguist/linguist/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/globals.cpp -------------------------------------------------------------------------------- /src/linguist/linguist/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/globals.h -------------------------------------------------------------------------------- /src/linguist/linguist/images/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/images/alert.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/images/appicon.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/images/check.png -------------------------------------------------------------------------------- /src/linguist/linguist/images/menu-dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/images/menu-dots.png -------------------------------------------------------------------------------- /src/linguist/linguist/linguist.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/linguist.desktop -------------------------------------------------------------------------------- /src/linguist/linguist/linguist.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/linguist.icns -------------------------------------------------------------------------------- /src/linguist/linguist/linguist.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/linguist.ico -------------------------------------------------------------------------------- /src/linguist/linguist/linguist.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/linguist.metainfo.xml -------------------------------------------------------------------------------- /src/linguist/linguist/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/main.cpp -------------------------------------------------------------------------------- /src/linguist/linguist/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/mainwindow.cpp -------------------------------------------------------------------------------- /src/linguist/linguist/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/mainwindow.h -------------------------------------------------------------------------------- /src/linguist/linguist/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/mainwindow.ui -------------------------------------------------------------------------------- /src/linguist/linguist/messageeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/messageeditor.cpp -------------------------------------------------------------------------------- /src/linguist/linguist/messageeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/messageeditor.h -------------------------------------------------------------------------------- /src/linguist/linguist/messagehighlighter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/messagehighlighter.h -------------------------------------------------------------------------------- /src/linguist/linguist/messagemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/messagemodel.cpp -------------------------------------------------------------------------------- /src/linguist/linguist/messagemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/messagemodel.h -------------------------------------------------------------------------------- /src/linguist/linguist/phrase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/phrase.cpp -------------------------------------------------------------------------------- /src/linguist/linguist/phrase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/phrase.h -------------------------------------------------------------------------------- /src/linguist/linguist/phrasebookbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/phrasebookbox.cpp -------------------------------------------------------------------------------- /src/linguist/linguist/phrasebookbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/phrasebookbox.h -------------------------------------------------------------------------------- /src/linguist/linguist/phrasebookbox.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/phrasebookbox.ui -------------------------------------------------------------------------------- /src/linguist/linguist/phrasemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/phrasemodel.cpp -------------------------------------------------------------------------------- /src/linguist/linguist/phrasemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/phrasemodel.h -------------------------------------------------------------------------------- /src/linguist/linguist/phraseview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/phraseview.cpp -------------------------------------------------------------------------------- /src/linguist/linguist/phraseview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/phraseview.h -------------------------------------------------------------------------------- /src/linguist/linguist/printout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/printout.cpp -------------------------------------------------------------------------------- /src/linguist/linguist/printout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/printout.h -------------------------------------------------------------------------------- /src/linguist/linguist/qmlformpreviewview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/qmlformpreviewview.h -------------------------------------------------------------------------------- /src/linguist/linguist/recentfiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/recentfiles.cpp -------------------------------------------------------------------------------- /src/linguist/linguist/recentfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/recentfiles.h -------------------------------------------------------------------------------- /src/linguist/linguist/sourcecodeview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/sourcecodeview.cpp -------------------------------------------------------------------------------- /src/linguist/linguist/sourcecodeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/sourcecodeview.h -------------------------------------------------------------------------------- /src/linguist/linguist/statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/statistics.cpp -------------------------------------------------------------------------------- /src/linguist/linguist/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/statistics.h -------------------------------------------------------------------------------- /src/linguist/linguist/statistics.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/statistics.ui -------------------------------------------------------------------------------- /src/linguist/linguist/translatedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/translatedialog.cpp -------------------------------------------------------------------------------- /src/linguist/linguist/translatedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/translatedialog.h -------------------------------------------------------------------------------- /src/linguist/linguist/translatedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/translatedialog.ui -------------------------------------------------------------------------------- /src/linguist/linguist/uiformpreviewview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/uiformpreviewview.cpp -------------------------------------------------------------------------------- /src/linguist/linguist/uiformpreviewview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/linguist/uiformpreviewview.h -------------------------------------------------------------------------------- /src/linguist/lprodump/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/lprodump/CMakeLists.txt -------------------------------------------------------------------------------- /src/linguist/lprodump/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/lprodump/main.cpp -------------------------------------------------------------------------------- /src/linguist/lrelease-pro/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/lrelease-pro/CMakeLists.txt -------------------------------------------------------------------------------- /src/linguist/lrelease-pro/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/lrelease-pro/main.cpp -------------------------------------------------------------------------------- /src/linguist/lrelease/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/lrelease/CMakeLists.txt -------------------------------------------------------------------------------- /src/linguist/lrelease/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/lrelease/main.cpp -------------------------------------------------------------------------------- /src/linguist/ltext2id/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/ltext2id/CMakeLists.txt -------------------------------------------------------------------------------- /src/linguist/ltext2id/filetransformer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/ltext2id/filetransformer.cpp -------------------------------------------------------------------------------- /src/linguist/ltext2id/filetransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/ltext2id/filetransformer.h -------------------------------------------------------------------------------- /src/linguist/ltext2id/fileverifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/ltext2id/fileverifier.cpp -------------------------------------------------------------------------------- /src/linguist/ltext2id/fileverifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/ltext2id/fileverifier.h -------------------------------------------------------------------------------- /src/linguist/ltext2id/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/ltext2id/main.cpp -------------------------------------------------------------------------------- /src/linguist/ltext2id/recorddirectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/ltext2id/recorddirectory.cpp -------------------------------------------------------------------------------- /src/linguist/ltext2id/recorddirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/ltext2id/recorddirectory.h -------------------------------------------------------------------------------- /src/linguist/ltext2id/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/ltext2id/utils.cpp -------------------------------------------------------------------------------- /src/linguist/ltext2id/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/ltext2id/utils.h -------------------------------------------------------------------------------- /src/linguist/lupdate-pro/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/lupdate-pro/CMakeLists.txt -------------------------------------------------------------------------------- /src/linguist/lupdate-pro/lupdate-pro.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/lupdate-pro/lupdate-pro.rc -------------------------------------------------------------------------------- /src/linguist/lupdate-pro/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/lupdate-pro/main.cpp -------------------------------------------------------------------------------- /src/linguist/lupdate/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/lupdate/CMakeLists.txt -------------------------------------------------------------------------------- /src/linguist/lupdate/lupdate.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/lupdate/lupdate.exe.manifest -------------------------------------------------------------------------------- /src/linguist/lupdate/lupdate.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/lupdate/lupdate.rc -------------------------------------------------------------------------------- /src/linguist/lupdate/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/lupdate/main.cpp -------------------------------------------------------------------------------- /src/linguist/lupdate/merge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/lupdate/merge.cpp -------------------------------------------------------------------------------- /src/linguist/lupdate/synchronized.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/lupdate/synchronized.h -------------------------------------------------------------------------------- /src/linguist/phrasebooks/danish.qph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/phrasebooks/danish.qph -------------------------------------------------------------------------------- /src/linguist/phrasebooks/dutch.qph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/phrasebooks/dutch.qph -------------------------------------------------------------------------------- /src/linguist/phrasebooks/finnish.qph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/phrasebooks/finnish.qph -------------------------------------------------------------------------------- /src/linguist/phrasebooks/french.qph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/phrasebooks/french.qph -------------------------------------------------------------------------------- /src/linguist/phrasebooks/german.qph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/phrasebooks/german.qph -------------------------------------------------------------------------------- /src/linguist/phrasebooks/hungarian.qph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/phrasebooks/hungarian.qph -------------------------------------------------------------------------------- /src/linguist/phrasebooks/italian.qph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/phrasebooks/italian.qph -------------------------------------------------------------------------------- /src/linguist/phrasebooks/japanese.qph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/phrasebooks/japanese.qph -------------------------------------------------------------------------------- /src/linguist/phrasebooks/norwegian.qph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/phrasebooks/norwegian.qph -------------------------------------------------------------------------------- /src/linguist/phrasebooks/polish.qph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/phrasebooks/polish.qph -------------------------------------------------------------------------------- /src/linguist/phrasebooks/russian.qph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/phrasebooks/russian.qph -------------------------------------------------------------------------------- /src/linguist/phrasebooks/spanish.qph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/phrasebooks/spanish.qph -------------------------------------------------------------------------------- /src/linguist/phrasebooks/swedish.qph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/phrasebooks/swedish.qph -------------------------------------------------------------------------------- /src/linguist/shared/exclusive_builds.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/exclusive_builds.prf -------------------------------------------------------------------------------- /src/linguist/shared/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/fmt.h -------------------------------------------------------------------------------- /src/linguist/shared/ioutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/ioutils.cpp -------------------------------------------------------------------------------- /src/linguist/shared/ioutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/ioutils.h -------------------------------------------------------------------------------- /src/linguist/shared/numerus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/numerus.cpp -------------------------------------------------------------------------------- /src/linguist/shared/parsers/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/parsers/cpp.cpp -------------------------------------------------------------------------------- /src/linguist/shared/parsers/cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/parsers/cpp.h -------------------------------------------------------------------------------- /src/linguist/shared/parsers/java.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/parsers/java.cpp -------------------------------------------------------------------------------- /src/linguist/shared/parsers/metastrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/parsers/metastrings.cpp -------------------------------------------------------------------------------- /src/linguist/shared/parsers/metastrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/parsers/metastrings.h -------------------------------------------------------------------------------- /src/linguist/shared/parsers/python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/parsers/python.cpp -------------------------------------------------------------------------------- /src/linguist/shared/parsers/qmakeparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/parsers/qmakeparser.cpp -------------------------------------------------------------------------------- /src/linguist/shared/parsers/qmakeparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/parsers/qmakeparser.h -------------------------------------------------------------------------------- /src/linguist/shared/parsers/trparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/parsers/trparser.cpp -------------------------------------------------------------------------------- /src/linguist/shared/parsers/trparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/parsers/trparser.h -------------------------------------------------------------------------------- /src/linguist/shared/parsers/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/parsers/ui.cpp -------------------------------------------------------------------------------- /src/linguist/shared/parsers/xmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/parsers/xmlparser.cpp -------------------------------------------------------------------------------- /src/linguist/shared/parsers/xmlparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/parsers/xmlparser.h -------------------------------------------------------------------------------- /src/linguist/shared/po.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/po.cpp -------------------------------------------------------------------------------- /src/linguist/shared/profileevaluator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/profileevaluator.cpp -------------------------------------------------------------------------------- /src/linguist/shared/profileevaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/profileevaluator.h -------------------------------------------------------------------------------- /src/linguist/shared/profileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/profileutils.h -------------------------------------------------------------------------------- /src/linguist/shared/proitems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/proitems.cpp -------------------------------------------------------------------------------- /src/linguist/shared/proitems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/proitems.h -------------------------------------------------------------------------------- /src/linguist/shared/qm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/qm.cpp -------------------------------------------------------------------------------- /src/linguist/shared/qmake_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/qmake_global.h -------------------------------------------------------------------------------- /src/linguist/shared/qmakebuiltins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/qmakebuiltins.cpp -------------------------------------------------------------------------------- /src/linguist/shared/qmakeevaluator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/qmakeevaluator.cpp -------------------------------------------------------------------------------- /src/linguist/shared/qmakeevaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/qmakeevaluator.h -------------------------------------------------------------------------------- /src/linguist/shared/qmakeevaluator_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/qmakeevaluator_p.h -------------------------------------------------------------------------------- /src/linguist/shared/qmakeglobals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/qmakeglobals.cpp -------------------------------------------------------------------------------- /src/linguist/shared/qmakeglobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/qmakeglobals.h -------------------------------------------------------------------------------- /src/linguist/shared/qmakevfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/qmakevfs.cpp -------------------------------------------------------------------------------- /src/linguist/shared/qmakevfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/qmakevfs.h -------------------------------------------------------------------------------- /src/linguist/shared/qph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/qph.cpp -------------------------------------------------------------------------------- /src/linguist/shared/qrcreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/qrcreader.cpp -------------------------------------------------------------------------------- /src/linguist/shared/qrcreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/qrcreader.h -------------------------------------------------------------------------------- /src/linguist/shared/registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/registry.cpp -------------------------------------------------------------------------------- /src/linguist/shared/registry_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/registry_p.h -------------------------------------------------------------------------------- /src/linguist/shared/runqttool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/runqttool.cpp -------------------------------------------------------------------------------- /src/linguist/shared/runqttool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/runqttool.h -------------------------------------------------------------------------------- /src/linguist/shared/simtexth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/simtexth.cpp -------------------------------------------------------------------------------- /src/linguist/shared/simtexth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/simtexth.h -------------------------------------------------------------------------------- /src/linguist/shared/translator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/translator.cpp -------------------------------------------------------------------------------- /src/linguist/shared/translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/translator.h -------------------------------------------------------------------------------- /src/linguist/shared/translatormessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/translatormessage.cpp -------------------------------------------------------------------------------- /src/linguist/shared/translatormessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/translatormessage.h -------------------------------------------------------------------------------- /src/linguist/shared/ts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/ts.cpp -------------------------------------------------------------------------------- /src/linguist/shared/ts.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/ts.xsd -------------------------------------------------------------------------------- /src/linguist/shared/validator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/validator.cpp -------------------------------------------------------------------------------- /src/linguist/shared/validator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/validator.h -------------------------------------------------------------------------------- /src/linguist/shared/xliff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/linguist/shared/xliff.cpp -------------------------------------------------------------------------------- /src/pixeltool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/pixeltool/CMakeLists.txt -------------------------------------------------------------------------------- /src/pixeltool/Info_mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/pixeltool/Info_mac.plist -------------------------------------------------------------------------------- /src/pixeltool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/pixeltool/main.cpp -------------------------------------------------------------------------------- /src/pixeltool/qpixeltool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/pixeltool/qpixeltool.cpp -------------------------------------------------------------------------------- /src/pixeltool/qpixeltool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/pixeltool/qpixeltool.h -------------------------------------------------------------------------------- /src/qdbus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdbus/CMakeLists.txt -------------------------------------------------------------------------------- /src/qdbus/qdbus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdbus/qdbus/CMakeLists.txt -------------------------------------------------------------------------------- /src/qdbus/qdbus/qdbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdbus/qdbus/qdbus.cpp -------------------------------------------------------------------------------- /src/qdbus/qdbusviewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdbus/qdbusviewer/CMakeLists.txt -------------------------------------------------------------------------------- /src/qdbus/qdbusviewer/Info_mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdbus/qdbusviewer/Info_mac.plist -------------------------------------------------------------------------------- /src/qdbus/qdbusviewer/logviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdbus/qdbusviewer/logviewer.cpp -------------------------------------------------------------------------------- /src/qdbus/qdbusviewer/logviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdbus/qdbusviewer/logviewer.h -------------------------------------------------------------------------------- /src/qdbus/qdbusviewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdbus/qdbusviewer/main.cpp -------------------------------------------------------------------------------- /src/qdbus/qdbusviewer/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdbus/qdbusviewer/mainwindow.cpp -------------------------------------------------------------------------------- /src/qdbus/qdbusviewer/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdbus/qdbusviewer/mainwindow.h -------------------------------------------------------------------------------- /src/qdbus/qdbusviewer/propertydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdbus/qdbusviewer/propertydialog.cpp -------------------------------------------------------------------------------- /src/qdbus/qdbusviewer/propertydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdbus/qdbusviewer/propertydialog.h -------------------------------------------------------------------------------- /src/qdbus/qdbusviewer/qdbusmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdbus/qdbusviewer/qdbusmodel.cpp -------------------------------------------------------------------------------- /src/qdbus/qdbusviewer/qdbusmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdbus/qdbusviewer/qdbusmodel.h -------------------------------------------------------------------------------- /src/qdbus/qdbusviewer/qdbusviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdbus/qdbusviewer/qdbusviewer.cpp -------------------------------------------------------------------------------- /src/qdbus/qdbusviewer/qdbusviewer.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdbus/qdbusviewer/qdbusviewer.desktop -------------------------------------------------------------------------------- /src/qdbus/qdbusviewer/qdbusviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdbus/qdbusviewer/qdbusviewer.h -------------------------------------------------------------------------------- /src/qdbus/qdbusviewer/servicesproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdbus/qdbusviewer/servicesproxymodel.h -------------------------------------------------------------------------------- /src/qdoc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/CMakeLists.txt -------------------------------------------------------------------------------- /src/qdoc/catch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/catch/CMakeLists.txt -------------------------------------------------------------------------------- /src/qdoc/catch/LICENSE.CATCH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/catch/LICENSE.CATCH.txt -------------------------------------------------------------------------------- /src/qdoc/catch/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/catch/REUSE.toml -------------------------------------------------------------------------------- /src/qdoc/catch/include/catch/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/catch/include/catch/catch.hpp -------------------------------------------------------------------------------- /src/qdoc/catch/qt_attribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/catch/qt_attribution.json -------------------------------------------------------------------------------- /src/qdoc/catch_conversions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/catch_conversions/CMakeLists.txt -------------------------------------------------------------------------------- /src/qdoc/catch_generators/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/catch_generators/CMakeLists.txt -------------------------------------------------------------------------------- /src/qdoc/catch_generators/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/catch_generators/tests/main.cpp -------------------------------------------------------------------------------- /src/qdoc/cmake/QDocConfiguration.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/cmake/QDocConfiguration.cmake -------------------------------------------------------------------------------- /src/qdoc/cmake/QDocConfigureMessages.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/cmake/QDocConfigureMessages.cmake -------------------------------------------------------------------------------- /src/qdoc/cmake/QDocCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/cmake/QDocCoverage.cmake -------------------------------------------------------------------------------- /src/qdoc/cmake/QDocCoverageCollect.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/cmake/QDocCoverageCollect.cmake -------------------------------------------------------------------------------- /src/qdoc/cmake/QDocCoverageReport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/cmake/QDocCoverageReport.cmake -------------------------------------------------------------------------------- /src/qdoc/cmake/coverage-prolog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/cmake/coverage-prolog.html -------------------------------------------------------------------------------- /src/qdoc/qdoc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/CMakeLists.txt -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/config/qdoc.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/config/qdoc.qdocconf -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/examples/cpp.qdoc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/examples/cpp.qdoc.sample -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/examples/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/examples/main.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/examples/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/examples/mainwindow.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/examples/minimum.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/examples/minimum.qdocconf -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/examples/qml.qdoc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/examples/qml.qdoc.sample -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/examples/samples.qdocinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/examples/samples.qdocinc -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/files/basicqt.qdoc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/files/basicqt.qdoc.sample -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/files/compat.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/files/compat.qdocconf -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/files/qtgui.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/files/qtgui.qdocconf -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/images/happyguy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/images/happyguy.jpg -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/images/links-to-links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/images/links-to-links.png -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/images/qt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/images/qt-logo.png -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/images/training.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/images/training.jpg -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/qdoc-manual-cmdindex.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/qdoc-manual-cmdindex.qdoc -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/qdoc-manual-intro.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/qdoc-manual-intro.qdoc -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/qdoc-manual-macros.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/qdoc-manual-macros.qdoc -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/qdoc-manual-qdocconf.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/qdoc-manual-qdocconf.qdoc -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/qdoc-manual.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/qdoc-manual.qdoc -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/qdoc-warnings.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/qdoc-warnings.qdoc -------------------------------------------------------------------------------- /src/qdoc/qdoc/doc/qtgui-qdocconf.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/doc/qtgui-qdocconf.qdoc -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/access.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/aggregate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/aggregate.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/aggregate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/aggregate.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/atom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/atom.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/atom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/atom.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/clang/AST/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/clang/AST/REUSE.toml -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/clangcodeparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/clangcodeparser.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/clangcodeparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/clangcodeparser.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/classnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/classnode.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/classnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/classnode.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/codechunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/codechunk.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/codechunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/codechunk.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/codemarker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/codemarker.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/codemarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/codemarker.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/codeparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/codeparser.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/codeparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/codeparser.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/collectionnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/collectionnode.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/collectionnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/collectionnode.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/comparisoncategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/comparisoncategory.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/config.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/config.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/cppcodemarker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/cppcodemarker.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/cppcodemarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/cppcodemarker.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/cppcodeparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/cppcodeparser.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/cppcodeparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/cppcodeparser.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/doc.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/doc.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/docbookgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/docbookgenerator.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/docbookgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/docbookgenerator.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/docparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/docparser.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/docparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/docparser.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/docprivate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/docprivate.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/docprivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/docprivate.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/docutilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/docutilities.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/editdistance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/editdistance.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/editdistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/editdistance.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/enumitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/enumitem.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/enumnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/enumnode.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/enumnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/enumnode.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/examplenode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/examplenode.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/externalpagenode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/externalpagenode.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/externalpagenode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/externalpagenode.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/functionnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/functionnode.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/functionnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/functionnode.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/generator.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/generator.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/genustypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/genustypes.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/headernode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/headernode.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/headernode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/headernode.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/helpprojectwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/helpprojectwriter.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/htmlgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/htmlgenerator.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/htmlgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/htmlgenerator.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/importrec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/importrec.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/inclusionfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/inclusionfilter.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/inclusionflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/inclusionflags.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/inclusionpolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/inclusionpolicy.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/inode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/inode.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/location.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/location.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/location.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/macro.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/main.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/manifestwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/manifestwriter.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/manifestwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/manifestwriter.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/namespacenode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/namespacenode.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/namespacenode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/namespacenode.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/nativeenum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/nativeenum.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/nativeenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/nativeenum.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/node.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/node.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/nodecontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/nodecontext.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/openedlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/openedlist.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/openedlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/openedlist.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/outputdirectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/outputdirectory.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/outputdirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/outputdirectory.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/pagenode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/pagenode.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/pagenode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/pagenode.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/parameters.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/parameters.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/parsererror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/parsererror.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/parsererror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/parsererror.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/propertynode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/propertynode.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/propertynode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/propertynode.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/proxynode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/proxynode.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/proxynode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/proxynode.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/puredocparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/puredocparser.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/puredocparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/puredocparser.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/qdocdatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/qdocdatabase.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/qdocdatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/qdocdatabase.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/qdocindexfiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/qdocindexfiles.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/qdocindexfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/qdocindexfiles.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/qmlcodemarker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/qmlcodemarker.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/qmlcodemarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/qmlcodemarker.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/qmlcodeparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/qmlcodeparser.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/qmlcodeparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/qmlcodeparser.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/qmlenumnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/qmlenumnode.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/qmlmarkupvisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/qmlmarkupvisitor.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/qmlmarkupvisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/qmlmarkupvisitor.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/qmlpropertynode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/qmlpropertynode.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/qmlpropertynode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/qmlpropertynode.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/qmltypenode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/qmltypenode.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/qmltypenode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/qmltypenode.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/qmlvisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/qmlvisitor.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/qmlvisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/qmlvisitor.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/quoter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/quoter.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/quoter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/quoter.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/relatedclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/relatedclass.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/relatedclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/relatedclass.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/sections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/sections.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/sections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/sections.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/sharedcommentnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/sharedcommentnode.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/singleton.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/sourcefileparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/sourcefileparser.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/tagfilewriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/tagfilewriter.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/tagfilewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/tagfilewriter.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/text.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/text.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/tocwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/tocwriter.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/tocwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/tocwriter.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/tokenizer.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/tokenizer.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/topic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/topic.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/tree.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/tree.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/typedefnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/typedefnode.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/typedefnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/typedefnode.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/utilities.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/utilities.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/variablenode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/variablenode.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/variablenode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/variablenode.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/webxmlgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/webxmlgenerator.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/webxmlgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/webxmlgenerator.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/xmlgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/xmlgenerator.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/src/qdoc/xmlgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/src/qdoc/xmlgenerator.h -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/tests/config/CMakeLists.txt -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/config/testdata/configs/includes/test.qdoc: -------------------------------------------------------------------------------- 1 | /*! nothing here */ 2 | -------------------------------------------------------------------------------- /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/tst_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/tests/config/tst_config.cpp -------------------------------------------------------------------------------- /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/hidden/hidden.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = aux 2 | message("Nothing to see here.") 3 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/generatedoutput/testdata/qml/cmaketest/main.cpp: -------------------------------------------------------------------------------- 1 | void main(){} 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/inode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/tests/inode/CMakeLists.txt -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/qdoc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/tests/qdoc/CMakeLists.txt -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/qdoc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qdoc/qdoc/tests/qdoc/main.cpp -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject/src/qml/cmaketest/main.cpp: -------------------------------------------------------------------------------- 1 | void main(){} 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/comprehensiveproject_headerdocs/src/qml/cmaketest/main.cpp: -------------------------------------------------------------------------------- 1 | void main(){} 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/globalfunc/src/TestGlobals: -------------------------------------------------------------------------------- 1 | #include "global.h" 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/modifiedoutputfilenames/src/example/test/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # nothing here 2 | -------------------------------------------------------------------------------- /src/qdoc/qdoc/tests/validateqdocoutputfiles/testdata/singleexec/args.txt: -------------------------------------------------------------------------------- 1 | -single-exec 2 | -------------------------------------------------------------------------------- /src/qev/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qev/CMakeLists.txt -------------------------------------------------------------------------------- /src/qev/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qev/README -------------------------------------------------------------------------------- /src/qev/qev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qev/qev.cpp -------------------------------------------------------------------------------- /src/qtattributionsscanner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qtattributionsscanner/CMakeLists.txt -------------------------------------------------------------------------------- /src/qtattributionsscanner/jsongenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qtattributionsscanner/jsongenerator.cpp -------------------------------------------------------------------------------- /src/qtattributionsscanner/jsongenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qtattributionsscanner/jsongenerator.h -------------------------------------------------------------------------------- /src/qtattributionsscanner/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qtattributionsscanner/logging.h -------------------------------------------------------------------------------- /src/qtattributionsscanner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qtattributionsscanner/main.cpp -------------------------------------------------------------------------------- /src/qtattributionsscanner/package.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qtattributionsscanner/package.h -------------------------------------------------------------------------------- /src/qtattributionsscanner/packagefilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qtattributionsscanner/packagefilter.cpp -------------------------------------------------------------------------------- /src/qtattributionsscanner/packagefilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qtattributionsscanner/packagefilter.h -------------------------------------------------------------------------------- /src/qtattributionsscanner/qdocgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qtattributionsscanner/qdocgenerator.cpp -------------------------------------------------------------------------------- /src/qtattributionsscanner/qdocgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qtattributionsscanner/qdocgenerator.h -------------------------------------------------------------------------------- /src/qtattributionsscanner/scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qtattributionsscanner/scanner.cpp -------------------------------------------------------------------------------- /src/qtattributionsscanner/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qtattributionsscanner/scanner.h -------------------------------------------------------------------------------- /src/qtdiag/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qtdiag/CMakeLists.txt -------------------------------------------------------------------------------- /src/qtdiag/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qtdiag/main.cpp -------------------------------------------------------------------------------- /src/qtdiag/qtdiag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qtdiag/qtdiag.cpp -------------------------------------------------------------------------------- /src/qtdiag/qtdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qtdiag/qtdiag.h -------------------------------------------------------------------------------- /src/qtplugininfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qtplugininfo/CMakeLists.txt -------------------------------------------------------------------------------- /src/qtplugininfo/qtplugininfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/qtplugininfo/qtplugininfo.cpp -------------------------------------------------------------------------------- /src/shared/deviceskin/deviceskin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/shared/deviceskin/deviceskin.cpp -------------------------------------------------------------------------------- /src/shared/deviceskin/deviceskin_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/shared/deviceskin/deviceskin_p.h -------------------------------------------------------------------------------- /src/shared/findwidget/images/mac/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/shared/findwidget/images/mac/next.png -------------------------------------------------------------------------------- /src/shared/findwidget/images/win/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/shared/findwidget/images/win/next.png -------------------------------------------------------------------------------- /src/shared/findwidget/images/wrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/shared/findwidget/images/wrap.png -------------------------------------------------------------------------------- /src/shared/fontpanel/fontpanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/shared/fontpanel/fontpanel.cpp -------------------------------------------------------------------------------- /src/shared/fontpanel/fontpanel_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/shared/fontpanel/fontpanel_p.h -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/shared/qtgradienteditor/images/down.png -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/shared/qtgradienteditor/images/edit.png -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/shared/qtgradienteditor/images/plus.png -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/shared/qtgradienteditor/images/up.png -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/qtcolorline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/shared/qtgradienteditor/qtcolorline.cpp -------------------------------------------------------------------------------- /src/shared/qtgradienteditor/qtcolorline_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/shared/qtgradienteditor/qtcolorline_p.h -------------------------------------------------------------------------------- /src/shared/qttoolbardialog/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/shared/qttoolbardialog/images/back.png -------------------------------------------------------------------------------- /src/shared/qttoolbardialog/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/shared/qttoolbardialog/images/down.png -------------------------------------------------------------------------------- /src/shared/qttoolbardialog/images/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/shared/qttoolbardialog/images/minus.png -------------------------------------------------------------------------------- /src/shared/qttoolbardialog/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/shared/qttoolbardialog/images/plus.png -------------------------------------------------------------------------------- /src/shared/qttoolbardialog/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/shared/qttoolbardialog/images/up.png -------------------------------------------------------------------------------- /src/uiplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/uiplugin/CMakeLists.txt -------------------------------------------------------------------------------- /src/uiplugin/customwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/uiplugin/customwidget.h -------------------------------------------------------------------------------- /src/uiplugin/customwidget.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/uiplugin/customwidget.qdoc -------------------------------------------------------------------------------- /src/uiplugin/qdesignerexportwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/uiplugin/qdesignerexportwidget.h -------------------------------------------------------------------------------- /src/uitools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/uitools/CMakeLists.txt -------------------------------------------------------------------------------- /src/uitools/doc/images/uitools-examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/uitools/doc/images/uitools-examples.png -------------------------------------------------------------------------------- /src/uitools/doc/qtuitools.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/uitools/doc/qtuitools.qdocconf -------------------------------------------------------------------------------- /src/uitools/doc/snippets/quiloader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/uitools/doc/snippets/quiloader/main.cpp -------------------------------------------------------------------------------- /src/uitools/doc/src/qtuitools-examples.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/uitools/doc/src/qtuitools-examples.qdoc -------------------------------------------------------------------------------- /src/uitools/doc/src/qtuitools-index.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/uitools/doc/src/qtuitools-index.qdoc -------------------------------------------------------------------------------- /src/uitools/doc/src/qtuitools-module.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/uitools/doc/src/qtuitools-module.qdoc -------------------------------------------------------------------------------- /src/uitools/qtuitoolsglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/uitools/qtuitoolsglobal.h -------------------------------------------------------------------------------- /src/uitools/quiloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/uitools/quiloader.cpp -------------------------------------------------------------------------------- /src/uitools/quiloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/uitools/quiloader.h -------------------------------------------------------------------------------- /src/uitools/quiloader_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/src/uitools/quiloader_p.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/README -------------------------------------------------------------------------------- /tests/auto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/cmake/linguist/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/cmake/linguist/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/cmake/linguist/test_i18n_auto_ts_file_names/lib.cpp: -------------------------------------------------------------------------------- 1 | int getSomeNumber() { return 42; } 2 | -------------------------------------------------------------------------------- /tests/auto/helpengineplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/helpengineplugin/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/helpengineplugin/data/qtqml.qch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/helpengineplugin/data/qtqml.qch -------------------------------------------------------------------------------- /tests/auto/linguist/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/linguist/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/linguist/lcheck/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/linguist/lcheck/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/linguist/lcheck/tst_lcheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/linguist/lcheck/tst_lcheck.cpp -------------------------------------------------------------------------------- /tests/auto/linguist/lconvert/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/linguist/lconvert/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/linguist/lconvert/data/msgid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/linguist/lconvert/data/msgid.ts -------------------------------------------------------------------------------- /tests/auto/linguist/lconvert/data/test20.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/linguist/lconvert/data/test20.ts -------------------------------------------------------------------------------- /tests/auto/linguist/lrelease/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/linguist/lrelease/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/linguist/lrelease/testdata/no-translations.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = app 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/ltext2id/data/2way.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/linguist/ltext2id/data/2way.js -------------------------------------------------------------------------------- /tests/auto/linguist/ltext2id/data/all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/linguist/ltext2id/data/all.cpp -------------------------------------------------------------------------------- /tests/auto/linguist/ltext2id/data/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/linguist/ltext2id/data/main.js -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/backslashes/lupdatecmd: -------------------------------------------------------------------------------- 1 | TRANSLATION: ts\project.ts 2 | -------------------------------------------------------------------------------- /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/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/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES = main.cpp 2 | TRANSLATIONS = project.ts 3 | -------------------------------------------------------------------------------- /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_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/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/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_attributes/expectedoutput.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parsecpp_attributes/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES = main.cpp 2 | TRANSLATIONS = project.ts 3 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parsecpp_expression/expectedoutput.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parsecpp_expression/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES = main.cpp 2 | TRANSLATIONS = project.ts 3 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parsecpp_template/expectedoutput: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/parsecpp_typed_enum/expectedoutput.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/parseqml2/project.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.qml 2 | 3 | TRANSLATIONS = project.ts 4 | -------------------------------------------------------------------------------- /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_json/main.js: -------------------------------------------------------------------------------- 1 | qsTr("From JavaScript file"); 2 | -------------------------------------------------------------------------------- /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/proparsingpri/common/common.pri: -------------------------------------------------------------------------------- 1 | include(main.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/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/mac/mac.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main_mac.cpp 2 | -------------------------------------------------------------------------------- /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/expectedoutput.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/recurse_full_ts/project_sub.ts.before: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/recurse_full_ts/project_sub.ts.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/recurse_full_ts_join/expectedoutput.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/recurse_part/project.ts.before: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/recurse_part/project.ts.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/recurse_part_ts/project_sub.ts.before: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/recurse_part_ts/project_sub.ts.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/good/reloutput/lupdatecmd: -------------------------------------------------------------------------------- 1 | TRANSLATION: translations/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/tsfiles.lst: -------------------------------------------------------------------------------- 1 | project.ts 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/subdirs_full/subdir1/subdir1.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/subdirs_full/subdir2/subsub1/subsub1.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/subdirs_part/subdir1/subdir1.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | -------------------------------------------------------------------------------- /tests/auto/linguist/lupdate/testdata/subdirs_part/subdir2/subsub1/subsub1.pro: -------------------------------------------------------------------------------- 1 | SOURCES += main.cpp 2 | -------------------------------------------------------------------------------- /tests/auto/qdoc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/qdoc/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qhelpenginecore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/qhelpenginecore/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qhelpenginecore/data/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/qhelpenginecore/data/test.html -------------------------------------------------------------------------------- /tests/auto/qhelpenginecore/data/test.qch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/qhelpenginecore/data/test.qch -------------------------------------------------------------------------------- /tests/auto/qhelpgenerator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/qhelpgenerator/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qhelpgenerator/data/cars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/qhelpgenerator/data/cars.html -------------------------------------------------------------------------------- /tests/auto/qhelpgenerator/data/fancy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/qhelpgenerator/data/fancy.html -------------------------------------------------------------------------------- /tests/auto/qhelpgenerator/data/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/qhelpgenerator/data/test.html -------------------------------------------------------------------------------- /tests/auto/qhelpgenerator/data/test.qhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/qhelpgenerator/data/test.qhp -------------------------------------------------------------------------------- /tests/auto/qhelpindexmodel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/qhelpindexmodel/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qhelpindexmodel/data/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/qhelpindexmodel/data/test.html -------------------------------------------------------------------------------- /tests/auto/qhelpindexmodel/data/test.qch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/qhelpindexmodel/data/test.qch -------------------------------------------------------------------------------- /tests/auto/qhelpprojectdata/data/test.qhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/qhelpprojectdata/data/test.qhp -------------------------------------------------------------------------------- /tests/auto/qtattributionsscanner/testdata/good/expected.error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/qtattributionsscanner/testdata/good/licenses-dir/expected.error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/local_license/expected.error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/qtattributionsscanner/testdata/good/minimal/expected.error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/good/variants/expected.error: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/qtattributionsscanner/testdata/warnings/incomplete/qt_attribution_test.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /tests/auto/qtdiag/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/qtdiag/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qtdiag/tst_qtdiag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/auto/qtdiag/tst_qtdiag.cpp -------------------------------------------------------------------------------- /tests/global/global.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/global/global.cfg -------------------------------------------------------------------------------- /tests/manual/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/tests/manual/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/manual.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS += \ 3 | qtattributionsscanner 4 | -------------------------------------------------------------------------------- /tests/manual/qtattributionsscanner/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /util/recolordocsicons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/util/recolordocsicons/README.md -------------------------------------------------------------------------------- /util/recolordocsicons/recolordocsicons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qttools/HEAD/util/recolordocsicons/recolordocsicons.py --------------------------------------------------------------------------------