├── .gitignore ├── LICENSE ├── QtAudioDevices ├── QtAudioDevices.cpp ├── QtAudioDevices.h ├── QtAudioDevices.pro ├── QtAudioDevices.ui ├── main.cpp └── show.png ├── QtAutoStart ├── BaseCheckBox.qml ├── QtAutoStart.cpp ├── QtAutoStart.h ├── QtAutoStart.pro ├── images │ ├── checked.png │ └── unchecked.png ├── main.cpp ├── main.qml ├── qml.qrc └── show.png ├── QtCamera ├── QtCamera.cpp ├── QtCamera.h ├── QtCamera.pro ├── QtCamera.ui └── main.cpp ├── QtLocalIP ├── QtLocalIP.cpp ├── QtLocalIP.h ├── QtLocalIP.pro ├── QtLocalIP.ui ├── main.cpp └── show.png ├── QtLog4Qt ├── QtLog4Qt.conf ├── QtLog4Qt.cpp ├── QtLog4Qt.h ├── QtLog4Qt.pro ├── QtLog4Qt.ui ├── log4qt │ ├── appender.h │ ├── appenderskeleton.cpp │ ├── appenderskeleton.h │ ├── basicconfigurator.cpp │ ├── basicconfigurator.h │ ├── consoleappender.cpp │ ├── consoleappender.h │ ├── dailyrollingfileappender.cpp │ ├── dailyrollingfileappender.h │ ├── fileappender.cpp │ ├── fileappender.h │ ├── helpers │ │ ├── classlogger.cpp │ │ ├── classlogger.h │ │ ├── configuratorhelper.cpp │ │ ├── configuratorhelper.h │ │ ├── datetime.cpp │ │ ├── datetime.h │ │ ├── factory.cpp │ │ ├── factory.h │ │ ├── initialisationhelper.cpp │ │ ├── initialisationhelper.h │ │ ├── logerror.cpp │ │ ├── logerror.h │ │ ├── logobject.cpp │ │ ├── logobject.h │ │ ├── logobjectptr.cpp │ │ ├── logobjectptr.h │ │ ├── optionconverter.cpp │ │ ├── optionconverter.h │ │ ├── patternformatter.cpp │ │ ├── patternformatter.h │ │ ├── properties.cpp │ │ └── properties.h │ ├── hierarchy.cpp │ ├── hierarchy.h │ ├── layout.cpp │ ├── layout.h │ ├── level.cpp │ ├── level.h │ ├── log4qt.cpp │ ├── log4qt.h │ ├── log4qt.pri │ ├── logger.cpp │ ├── logger.h │ ├── loggerrepository.cpp │ ├── loggerrepository.h │ ├── loggingevent.cpp │ ├── loggingevent.h │ ├── logmanager.cpp │ ├── logmanager.h │ ├── mdc.cpp │ ├── mdc.h │ ├── ndc.cpp │ ├── ndc.h │ ├── patternlayout.cpp │ ├── patternlayout.h │ ├── propertyconfigurator.cpp │ ├── propertyconfigurator.h │ ├── rollingfileappender.cpp │ ├── rollingfileappender.h │ ├── simplelayout.cpp │ ├── simplelayout.h │ ├── spi │ │ ├── filter.cpp │ │ └── filter.h │ ├── ttcclayout.cpp │ ├── ttcclayout.h │ ├── varia │ │ ├── debugappender.cpp │ │ ├── debugappender.h │ │ ├── denyallfilter.cpp │ │ ├── denyallfilter.h │ │ ├── levelmatchfilter.cpp │ │ ├── levelmatchfilter.h │ │ ├── levelrangefilter.cpp │ │ ├── levelrangefilter.h │ │ ├── listappender.cpp │ │ ├── listappender.h │ │ ├── nullappender.cpp │ │ ├── nullappender.h │ │ ├── stringmatchfilter.cpp │ │ └── stringmatchfilter.h │ ├── writerappender.cpp │ └── writerappender.h ├── main.cpp └── show.png ├── QtOtherExamples.jpg ├── QtOtherExamples.pro ├── QtPlugin ├── QtMyPlugin │ ├── QtMyPlugin.cpp │ ├── QtMyPlugin.h │ ├── QtMyPlugin.pro │ └── QtMyPluginInterface.h └── QtMyPluginTest │ ├── QtMyPluginTest.cpp │ ├── QtMyPluginTest.h │ ├── QtMyPluginTest.pro │ ├── QtMyPluginTest.ui │ ├── main.cpp │ └── show.gif ├── QtSingleApplication ├── QtSingleApplication.pro ├── main.cpp ├── main.qml └── qml.qrc ├── QtZlibTest ├── QtZlibTest.pro ├── SilkPlatform.png ├── main.cpp └── zlib │ ├── zconf.h │ ├── zlib.h │ └── zlib.lib └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/LICENSE -------------------------------------------------------------------------------- /QtAudioDevices/QtAudioDevices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtAudioDevices/QtAudioDevices.cpp -------------------------------------------------------------------------------- /QtAudioDevices/QtAudioDevices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtAudioDevices/QtAudioDevices.h -------------------------------------------------------------------------------- /QtAudioDevices/QtAudioDevices.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtAudioDevices/QtAudioDevices.pro -------------------------------------------------------------------------------- /QtAudioDevices/QtAudioDevices.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtAudioDevices/QtAudioDevices.ui -------------------------------------------------------------------------------- /QtAudioDevices/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtAudioDevices/main.cpp -------------------------------------------------------------------------------- /QtAudioDevices/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtAudioDevices/show.png -------------------------------------------------------------------------------- /QtAutoStart/BaseCheckBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtAutoStart/BaseCheckBox.qml -------------------------------------------------------------------------------- /QtAutoStart/QtAutoStart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtAutoStart/QtAutoStart.cpp -------------------------------------------------------------------------------- /QtAutoStart/QtAutoStart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtAutoStart/QtAutoStart.h -------------------------------------------------------------------------------- /QtAutoStart/QtAutoStart.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtAutoStart/QtAutoStart.pro -------------------------------------------------------------------------------- /QtAutoStart/images/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtAutoStart/images/checked.png -------------------------------------------------------------------------------- /QtAutoStart/images/unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtAutoStart/images/unchecked.png -------------------------------------------------------------------------------- /QtAutoStart/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtAutoStart/main.cpp -------------------------------------------------------------------------------- /QtAutoStart/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtAutoStart/main.qml -------------------------------------------------------------------------------- /QtAutoStart/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtAutoStart/qml.qrc -------------------------------------------------------------------------------- /QtAutoStart/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtAutoStart/show.png -------------------------------------------------------------------------------- /QtCamera/QtCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtCamera/QtCamera.cpp -------------------------------------------------------------------------------- /QtCamera/QtCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtCamera/QtCamera.h -------------------------------------------------------------------------------- /QtCamera/QtCamera.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtCamera/QtCamera.pro -------------------------------------------------------------------------------- /QtCamera/QtCamera.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtCamera/QtCamera.ui -------------------------------------------------------------------------------- /QtCamera/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtCamera/main.cpp -------------------------------------------------------------------------------- /QtLocalIP/QtLocalIP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLocalIP/QtLocalIP.cpp -------------------------------------------------------------------------------- /QtLocalIP/QtLocalIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLocalIP/QtLocalIP.h -------------------------------------------------------------------------------- /QtLocalIP/QtLocalIP.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLocalIP/QtLocalIP.pro -------------------------------------------------------------------------------- /QtLocalIP/QtLocalIP.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLocalIP/QtLocalIP.ui -------------------------------------------------------------------------------- /QtLocalIP/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLocalIP/main.cpp -------------------------------------------------------------------------------- /QtLocalIP/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLocalIP/show.png -------------------------------------------------------------------------------- /QtLog4Qt/QtLog4Qt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/QtLog4Qt.conf -------------------------------------------------------------------------------- /QtLog4Qt/QtLog4Qt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/QtLog4Qt.cpp -------------------------------------------------------------------------------- /QtLog4Qt/QtLog4Qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/QtLog4Qt.h -------------------------------------------------------------------------------- /QtLog4Qt/QtLog4Qt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/QtLog4Qt.pro -------------------------------------------------------------------------------- /QtLog4Qt/QtLog4Qt.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/QtLog4Qt.ui -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/appender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/appender.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/appenderskeleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/appenderskeleton.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/appenderskeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/appenderskeleton.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/basicconfigurator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/basicconfigurator.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/basicconfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/basicconfigurator.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/consoleappender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/consoleappender.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/consoleappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/consoleappender.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/dailyrollingfileappender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/dailyrollingfileappender.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/dailyrollingfileappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/dailyrollingfileappender.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/fileappender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/fileappender.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/fileappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/fileappender.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/classlogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/classlogger.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/classlogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/classlogger.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/configuratorhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/configuratorhelper.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/configuratorhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/configuratorhelper.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/datetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/datetime.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/datetime.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/factory.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/factory.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/initialisationhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/initialisationhelper.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/initialisationhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/initialisationhelper.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/logerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/logerror.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/logerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/logerror.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/logobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/logobject.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/logobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/logobject.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/logobjectptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/logobjectptr.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/logobjectptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/logobjectptr.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/optionconverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/optionconverter.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/optionconverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/optionconverter.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/patternformatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/patternformatter.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/patternformatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/patternformatter.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/properties.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/helpers/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/helpers/properties.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/hierarchy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/hierarchy.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/hierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/hierarchy.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/layout.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/layout.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/level.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/level.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/log4qt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/log4qt.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/log4qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/log4qt.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/log4qt.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/log4qt.pri -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/logger.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/logger.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/loggerrepository.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/loggerrepository.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/loggerrepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/loggerrepository.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/loggingevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/loggingevent.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/loggingevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/loggingevent.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/logmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/logmanager.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/logmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/logmanager.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/mdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/mdc.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/mdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/mdc.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/ndc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/ndc.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/ndc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/ndc.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/patternlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/patternlayout.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/patternlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/patternlayout.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/propertyconfigurator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/propertyconfigurator.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/propertyconfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/propertyconfigurator.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/rollingfileappender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/rollingfileappender.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/rollingfileappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/rollingfileappender.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/simplelayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/simplelayout.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/simplelayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/simplelayout.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/spi/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/spi/filter.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/spi/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/spi/filter.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/ttcclayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/ttcclayout.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/ttcclayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/ttcclayout.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/varia/debugappender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/varia/debugappender.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/varia/debugappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/varia/debugappender.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/varia/denyallfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/varia/denyallfilter.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/varia/denyallfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/varia/denyallfilter.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/varia/levelmatchfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/varia/levelmatchfilter.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/varia/levelmatchfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/varia/levelmatchfilter.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/varia/levelrangefilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/varia/levelrangefilter.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/varia/levelrangefilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/varia/levelrangefilter.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/varia/listappender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/varia/listappender.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/varia/listappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/varia/listappender.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/varia/nullappender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/varia/nullappender.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/varia/nullappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/varia/nullappender.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/varia/stringmatchfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/varia/stringmatchfilter.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/varia/stringmatchfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/varia/stringmatchfilter.h -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/writerappender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/writerappender.cpp -------------------------------------------------------------------------------- /QtLog4Qt/log4qt/writerappender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/log4qt/writerappender.h -------------------------------------------------------------------------------- /QtLog4Qt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/main.cpp -------------------------------------------------------------------------------- /QtLog4Qt/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtLog4Qt/show.png -------------------------------------------------------------------------------- /QtOtherExamples.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtOtherExamples.jpg -------------------------------------------------------------------------------- /QtOtherExamples.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtOtherExamples.pro -------------------------------------------------------------------------------- /QtPlugin/QtMyPlugin/QtMyPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtPlugin/QtMyPlugin/QtMyPlugin.cpp -------------------------------------------------------------------------------- /QtPlugin/QtMyPlugin/QtMyPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtPlugin/QtMyPlugin/QtMyPlugin.h -------------------------------------------------------------------------------- /QtPlugin/QtMyPlugin/QtMyPlugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtPlugin/QtMyPlugin/QtMyPlugin.pro -------------------------------------------------------------------------------- /QtPlugin/QtMyPlugin/QtMyPluginInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtPlugin/QtMyPlugin/QtMyPluginInterface.h -------------------------------------------------------------------------------- /QtPlugin/QtMyPluginTest/QtMyPluginTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtPlugin/QtMyPluginTest/QtMyPluginTest.cpp -------------------------------------------------------------------------------- /QtPlugin/QtMyPluginTest/QtMyPluginTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtPlugin/QtMyPluginTest/QtMyPluginTest.h -------------------------------------------------------------------------------- /QtPlugin/QtMyPluginTest/QtMyPluginTest.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtPlugin/QtMyPluginTest/QtMyPluginTest.pro -------------------------------------------------------------------------------- /QtPlugin/QtMyPluginTest/QtMyPluginTest.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtPlugin/QtMyPluginTest/QtMyPluginTest.ui -------------------------------------------------------------------------------- /QtPlugin/QtMyPluginTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtPlugin/QtMyPluginTest/main.cpp -------------------------------------------------------------------------------- /QtPlugin/QtMyPluginTest/show.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtPlugin/QtMyPluginTest/show.gif -------------------------------------------------------------------------------- /QtSingleApplication/QtSingleApplication.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtSingleApplication/QtSingleApplication.pro -------------------------------------------------------------------------------- /QtSingleApplication/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtSingleApplication/main.cpp -------------------------------------------------------------------------------- /QtSingleApplication/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtSingleApplication/main.qml -------------------------------------------------------------------------------- /QtSingleApplication/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtSingleApplication/qml.qrc -------------------------------------------------------------------------------- /QtZlibTest/QtZlibTest.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtZlibTest/QtZlibTest.pro -------------------------------------------------------------------------------- /QtZlibTest/SilkPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtZlibTest/SilkPlatform.png -------------------------------------------------------------------------------- /QtZlibTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtZlibTest/main.cpp -------------------------------------------------------------------------------- /QtZlibTest/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtZlibTest/zlib/zconf.h -------------------------------------------------------------------------------- /QtZlibTest/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtZlibTest/zlib/zlib.h -------------------------------------------------------------------------------- /QtZlibTest/zlib/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/QtZlibTest/zlib/zlib.lib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengtianzuo/QtOtherExamples/HEAD/README.md --------------------------------------------------------------------------------