├── .gitignore ├── .gitlab-ci.yml ├── CMakeLists.txt ├── CMakeLists_qt5.txt ├── LICENSE ├── LQtUtilsQuick ├── .gitignore ├── CMakeLists.txt ├── lquicksettings.cpp ├── lquicksettings.h ├── ltestsignals.cpp ├── ltestsignals.h ├── main.cpp ├── main.qml └── qml.qrc ├── README.md ├── docs ├── cutouts.webp └── cutouts_horizontal.webp ├── fontawesome ├── Font Awesome 6 Brands-Regular-400.otf ├── Font Awesome 6 Free-Regular-400.otf ├── Font Awesome 6 Free-Solid-900.otf ├── LQTFontAwesomeBrandsRegular.qml ├── LQTFontAwesomeFreeRegular.qml └── LQTFontAwesomeFreeSolid.qml ├── lqtutils.pri ├── lqtutils ├── CMakeLists.txt └── tst_lqtutils.cpp ├── lqtutils_autoexec.h ├── lqtutils_bqueue.h ├── lqtutils_data.h ├── lqtutils_enum.h ├── lqtutils_fa.cpp ├── lqtutils_fa.h ├── lqtutils_freq.cpp ├── lqtutils_freq.h ├── lqtutils_fsm.cpp ├── lqtutils_fsm.h ├── lqtutils_logging.h ├── lqtutils_math.h ├── lqtutils_misc.h ├── lqtutils_models.h ├── lqtutils_net.cpp ├── lqtutils_net.h ├── lqtutils_perf.h ├── lqtutils_prop.h ├── lqtutils_qsl.h ├── lqtutils_settings.h ├── lqtutils_sslcheck.h ├── lqtutils_string.h ├── lqtutils_system.h ├── lqtutils_threading.h ├── lqtutils_time.h ├── lqtutils_ui.cpp ├── lqtutils_ui.h ├── lqtutils_ui.mm ├── lqtutils_ui_apple.mm ├── qt5 └── CMakeLists.txt └── qt6 └── CMakeLists.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeLists_qt5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/CMakeLists_qt5.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/LICENSE -------------------------------------------------------------------------------- /LQtUtilsQuick/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/LQtUtilsQuick/.gitignore -------------------------------------------------------------------------------- /LQtUtilsQuick/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/LQtUtilsQuick/CMakeLists.txt -------------------------------------------------------------------------------- /LQtUtilsQuick/lquicksettings.cpp: -------------------------------------------------------------------------------- 1 | #include "lquicksettings.h" 2 | -------------------------------------------------------------------------------- /LQtUtilsQuick/lquicksettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/LQtUtilsQuick/lquicksettings.h -------------------------------------------------------------------------------- /LQtUtilsQuick/ltestsignals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/LQtUtilsQuick/ltestsignals.cpp -------------------------------------------------------------------------------- /LQtUtilsQuick/ltestsignals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/LQtUtilsQuick/ltestsignals.h -------------------------------------------------------------------------------- /LQtUtilsQuick/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/LQtUtilsQuick/main.cpp -------------------------------------------------------------------------------- /LQtUtilsQuick/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/LQtUtilsQuick/main.qml -------------------------------------------------------------------------------- /LQtUtilsQuick/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/LQtUtilsQuick/qml.qrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/README.md -------------------------------------------------------------------------------- /docs/cutouts.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/docs/cutouts.webp -------------------------------------------------------------------------------- /docs/cutouts_horizontal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/docs/cutouts_horizontal.webp -------------------------------------------------------------------------------- /fontawesome/Font Awesome 6 Brands-Regular-400.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/fontawesome/Font Awesome 6 Brands-Regular-400.otf -------------------------------------------------------------------------------- /fontawesome/Font Awesome 6 Free-Regular-400.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/fontawesome/Font Awesome 6 Free-Regular-400.otf -------------------------------------------------------------------------------- /fontawesome/Font Awesome 6 Free-Solid-900.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/fontawesome/Font Awesome 6 Free-Solid-900.otf -------------------------------------------------------------------------------- /fontawesome/LQTFontAwesomeBrandsRegular.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/fontawesome/LQTFontAwesomeBrandsRegular.qml -------------------------------------------------------------------------------- /fontawesome/LQTFontAwesomeFreeRegular.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/fontawesome/LQTFontAwesomeFreeRegular.qml -------------------------------------------------------------------------------- /fontawesome/LQTFontAwesomeFreeSolid.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/fontawesome/LQTFontAwesomeFreeSolid.qml -------------------------------------------------------------------------------- /lqtutils.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils.pri -------------------------------------------------------------------------------- /lqtutils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils/CMakeLists.txt -------------------------------------------------------------------------------- /lqtutils/tst_lqtutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils/tst_lqtutils.cpp -------------------------------------------------------------------------------- /lqtutils_autoexec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_autoexec.h -------------------------------------------------------------------------------- /lqtutils_bqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_bqueue.h -------------------------------------------------------------------------------- /lqtutils_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_data.h -------------------------------------------------------------------------------- /lqtutils_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_enum.h -------------------------------------------------------------------------------- /lqtutils_fa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_fa.cpp -------------------------------------------------------------------------------- /lqtutils_fa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_fa.h -------------------------------------------------------------------------------- /lqtutils_freq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_freq.cpp -------------------------------------------------------------------------------- /lqtutils_freq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_freq.h -------------------------------------------------------------------------------- /lqtutils_fsm.cpp: -------------------------------------------------------------------------------- 1 | #include "lqtutils_fsm.h" -------------------------------------------------------------------------------- /lqtutils_fsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_fsm.h -------------------------------------------------------------------------------- /lqtutils_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_logging.h -------------------------------------------------------------------------------- /lqtutils_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_math.h -------------------------------------------------------------------------------- /lqtutils_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_misc.h -------------------------------------------------------------------------------- /lqtutils_models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_models.h -------------------------------------------------------------------------------- /lqtutils_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_net.cpp -------------------------------------------------------------------------------- /lqtutils_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_net.h -------------------------------------------------------------------------------- /lqtutils_perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_perf.h -------------------------------------------------------------------------------- /lqtutils_prop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_prop.h -------------------------------------------------------------------------------- /lqtutils_qsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_qsl.h -------------------------------------------------------------------------------- /lqtutils_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_settings.h -------------------------------------------------------------------------------- /lqtutils_sslcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_sslcheck.h -------------------------------------------------------------------------------- /lqtutils_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_string.h -------------------------------------------------------------------------------- /lqtutils_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_system.h -------------------------------------------------------------------------------- /lqtutils_threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_threading.h -------------------------------------------------------------------------------- /lqtutils_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_time.h -------------------------------------------------------------------------------- /lqtutils_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_ui.cpp -------------------------------------------------------------------------------- /lqtutils_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_ui.h -------------------------------------------------------------------------------- /lqtutils_ui.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_ui.mm -------------------------------------------------------------------------------- /lqtutils_ui_apple.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/lqtutils_ui_apple.mm -------------------------------------------------------------------------------- /qt5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/qt5/CMakeLists.txt -------------------------------------------------------------------------------- /qt6/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlonluca/lqtutils/HEAD/qt6/CMakeLists.txt --------------------------------------------------------------------------------