├── .github └── workflows │ └── build_cmake.yml ├── CMakeLists.txt ├── DoxygenPlugin.json.in ├── LICENSE ├── README.md ├── doxygen.cpp ├── doxygen.h ├── doxygen.png ├── doxygen.qrc ├── doxygen@2x.png ├── doxygen_global.h ├── doxygenconstants.h ├── doxygenfilesdialog.cpp ├── doxygenfilesdialog.h ├── doxygenfilesdialog.ui ├── doxygenplugin.cpp ├── doxygenplugin.h ├── doxygensettings.cpp ├── doxygensettings.h ├── doxygensettingsstruct.cpp ├── doxygensettingsstruct.h ├── doxygensettingswidget.cpp ├── doxygensettingswidget.h ├── doxygensettingswidget.ui ├── doxygentr.h └── qt-creator-doxygen.webp /.github/workflows/build_cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/.github/workflows/build_cmake.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DoxygenPlugin.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/DoxygenPlugin.json.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/README.md -------------------------------------------------------------------------------- /doxygen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygen.cpp -------------------------------------------------------------------------------- /doxygen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygen.h -------------------------------------------------------------------------------- /doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygen.png -------------------------------------------------------------------------------- /doxygen.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygen.qrc -------------------------------------------------------------------------------- /doxygen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygen@2x.png -------------------------------------------------------------------------------- /doxygen_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygen_global.h -------------------------------------------------------------------------------- /doxygenconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygenconstants.h -------------------------------------------------------------------------------- /doxygenfilesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygenfilesdialog.cpp -------------------------------------------------------------------------------- /doxygenfilesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygenfilesdialog.h -------------------------------------------------------------------------------- /doxygenfilesdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygenfilesdialog.ui -------------------------------------------------------------------------------- /doxygenplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygenplugin.cpp -------------------------------------------------------------------------------- /doxygenplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygenplugin.h -------------------------------------------------------------------------------- /doxygensettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygensettings.cpp -------------------------------------------------------------------------------- /doxygensettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygensettings.h -------------------------------------------------------------------------------- /doxygensettingsstruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygensettingsstruct.cpp -------------------------------------------------------------------------------- /doxygensettingsstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygensettingsstruct.h -------------------------------------------------------------------------------- /doxygensettingswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygensettingswidget.cpp -------------------------------------------------------------------------------- /doxygensettingswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygensettingswidget.h -------------------------------------------------------------------------------- /doxygensettingswidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygensettingswidget.ui -------------------------------------------------------------------------------- /doxygentr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/doxygentr.h -------------------------------------------------------------------------------- /qt-creator-doxygen.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/qt-creator-doxygen/HEAD/qt-creator-doxygen.webp --------------------------------------------------------------------------------