├── .gitignore ├── Battery ├── Battery.cpp ├── Battery.h ├── Battery.rc ├── Battery.vcxproj ├── Battery.vcxproj.filters ├── BatteryItem.cpp ├── BatteryItem.h ├── Common.cpp ├── Common.h ├── DataManager.cpp ├── DataManager.h ├── DrawCommon.cpp ├── DrawCommon.h ├── GdiPlusTool.cpp ├── GdiPlusTool.h ├── OptionsDlg.cpp ├── OptionsDlg.h ├── framework.h ├── pch.cpp ├── pch.h ├── res │ ├── battery_dark.ico │ └── battery_light.ico └── resource.h ├── DateTime ├── CustomDrawItem.cpp ├── CustomDrawItem.h ├── DataManager.cpp ├── DataManager.h ├── DateTime.cpp ├── DateTime.h ├── DateTime.rc ├── DateTime.vcxproj ├── DateTime.vcxproj.filters ├── DateTimeFormatHelper.cpp ├── DateTimeFormatHelper.h ├── MessageDlg.cpp ├── MessageDlg.h ├── OptionsDlg.cpp ├── OptionsDlg.h ├── PluginSystemDate.cpp ├── PluginSystemDate.h ├── PluginSystemTime.cpp ├── PluginSystemTime.h ├── framework.h ├── pch.cpp ├── pch.h ├── res │ └── date_time.ico └── resource.h ├── GP ├── Common.cpp ├── Common.h ├── DataManager.cpp ├── DataManager.h ├── GP.cpp ├── GP.h ├── GP.rc ├── GP.vcxproj ├── GP.vcxproj.filters ├── GPItem.cpp ├── GPItem.h ├── ManagerDialog.cpp ├── ManagerDialog.h ├── OptionsDlg.cpp ├── OptionsDlg.h ├── framework.h ├── pch.cpp ├── pch.h └── resource.h ├── LICENSE ├── PluginTemplate ├── Common.cpp ├── Common.h ├── DataManager.cpp ├── DataManager.h ├── OptionsDlg.cpp ├── OptionsDlg.h ├── PluginTemplate.cpp ├── PluginTemplate.h ├── PluginTemplate.rc ├── PluginTemplate.vcxproj ├── PluginTemplate.vcxproj.filters ├── PluginTemplateItem.cpp ├── PluginTemplateItem.h ├── framework.h ├── pch.cpp ├── pch.h └── resource.h ├── PluginTester ├── CommonData.cpp ├── CommonData.h ├── DrawCommon.cpp ├── DrawCommon.h ├── PluginInfoDlg.cpp ├── PluginInfoDlg.h ├── PluginTester.cpp ├── PluginTester.h ├── PluginTester.rc ├── PluginTester.vcxproj ├── PluginTester.vcxproj.filters ├── PluginTesterDlg.cpp ├── PluginTesterDlg.h ├── PreviewScrollView.cpp ├── PreviewScrollView.h ├── ReadMe.txt ├── WIC.cpp ├── WIC.h ├── res │ ├── PluginTester.ico │ ├── PluginTester.rc2 │ ├── exit.ico │ ├── help.ico │ ├── item.ico │ ├── plugins.ico │ └── setting.ico ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── README.md ├── TextReader ├── BookmarkDlg.cpp ├── BookmarkDlg.h ├── BookmarkMgr.cpp ├── BookmarkMgr.h ├── ChapterDlg.cpp ├── ChapterDlg.h ├── ChapterParser.cpp ├── ChapterParser.h ├── Common.cpp ├── Common.h ├── DataManager.cpp ├── DataManager.h ├── OptionsContainerDlg.cpp ├── OptionsContainerDlg.h ├── OptionsDlg.cpp ├── OptionsDlg.h ├── TabCtrlEx.cpp ├── TabCtrlEx.h ├── TextReader.cpp ├── TextReader.h ├── TextReader.rc ├── TextReader.vcxproj ├── TextReader.vcxproj.filters ├── TextReaderItem.cpp ├── TextReaderItem.h ├── framework.h ├── pch.cpp ├── pch.h ├── res │ ├── add_bookmark.ico │ ├── auto_page.ico │ ├── bookmark.ico │ ├── chapter.ico │ ├── hide.ico │ ├── next.ico │ ├── previous.ico │ ├── reader.ico │ └── setting.ico └── resource.h ├── TrafficMonitorPlugins.sln ├── Weather ├── CityCode.h ├── Common.cpp ├── Common.h ├── CurLocationHelper.cpp ├── CurLocationHelper.h ├── DataManager.cpp ├── DataManager.h ├── OptionsDlg.cpp ├── OptionsDlg.h ├── SelectCityDlg.cpp ├── SelectCityDlg.h ├── Weather.cpp ├── Weather.h ├── Weather.rc ├── Weather.vcxproj ├── Weather.vcxproj.filters ├── WeatherItem.cpp ├── WeatherItem.h ├── framework.h ├── pch.cpp ├── pch.h ├── res │ ├── update.ico │ ├── weather.ico │ ├── 中雨.ico │ ├── 中雪.ico │ ├── 冰雹.ico │ ├── 台风.ico │ ├── 多云.ico │ ├── 多云_夜晚.ico │ ├── 大暴雨.ico │ ├── 大雨.ico │ ├── 大雪.ico │ ├── 小雨.ico │ ├── 小雪.ico │ ├── 晴.ico │ ├── 晴_夜晚.ico │ ├── 暴雨.ico │ ├── 暴雪.ico │ ├── 未知.ico │ ├── 杨尘.ico │ ├── 沙尘暴.ico │ ├── 浮尘.ico │ ├── 阴.ico │ ├── 阵雨.ico │ ├── 阵雪.ico │ ├── 雨夹雪.ico │ ├── 雷阵雨.ico │ ├── 雷雨.ico │ ├── 雾.ico │ ├── 雾霾.ico │ └── 霜.ico └── resource.h ├── download ├── Battery │ ├── Battery_V1.00_x64.zip │ ├── Battery_V1.00_x86.zip │ ├── Battery_V1.01_x64.zip │ ├── Battery_V1.01_x86.zip │ ├── Battery_V1.02_x64.zip │ └── Battery_V1.02_x86.zip ├── DateTime │ ├── DateTime_V1.0_x64.zip │ └── DateTime_V1.0_x86.zip ├── GP │ ├── GP_V1.11_x64.zip │ ├── GP_V1.11_x86.zip │ ├── GP_V1.12_x64.zip │ └── GP_V1.12_x86.zip ├── TextReader │ ├── TextReader_V1.00_x64.zip │ ├── TextReader_V1.00_x86.zip │ ├── TextReader_V1.01_x64.zip │ └── TextReader_V1.01_x86.zip ├── images │ ├── 155976271-b3e58b7a-d3ec-442d-8107-c0c69a2d7610.png │ ├── battery.png │ ├── gp_edit_20220411100337.png │ ├── gp_mgr_20220411100659.png │ ├── gp_viewer_20220411100625.png │ ├── image-20211216220605288.png │ ├── image-20211225234420165.png │ ├── image-20211225234519524.png │ ├── image-20211226220834772.png │ ├── image-20220614195748677.png │ ├── image-20220701210850528.png │ ├── img-pomodoro-timer.png │ └── img-weather-pro.png ├── plugin_download.md ├── plugin_download_en.md └── weather │ ├── Weather_V1.01_x64.zip │ ├── Weather_V1.01_x86.zip │ ├── Weather_V1.02_x64.zip │ └── Weather_V1.02_x86.zip ├── images ├── image-20221013203124953.png ├── image-20221013203353499.png ├── image-20221013203527593.png └── image-20221013203621714.png ├── include └── PluginInterface.h └── utilities ├── Common.cpp ├── Common.h ├── FilePathHelper.cpp ├── FilePathHelper.h ├── IniHelper.cpp ├── IniHelper.h ├── bass64 ├── base64.cpp └── base64.h ├── utilities.vcxproj ├── utilities.vcxproj.filters └── yyjson ├── yyjson.c └── yyjson.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/.gitignore -------------------------------------------------------------------------------- /Battery/Battery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/Battery.cpp -------------------------------------------------------------------------------- /Battery/Battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/Battery.h -------------------------------------------------------------------------------- /Battery/Battery.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/Battery.rc -------------------------------------------------------------------------------- /Battery/Battery.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/Battery.vcxproj -------------------------------------------------------------------------------- /Battery/Battery.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/Battery.vcxproj.filters -------------------------------------------------------------------------------- /Battery/BatteryItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/BatteryItem.cpp -------------------------------------------------------------------------------- /Battery/BatteryItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/BatteryItem.h -------------------------------------------------------------------------------- /Battery/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/Common.cpp -------------------------------------------------------------------------------- /Battery/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/Common.h -------------------------------------------------------------------------------- /Battery/DataManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/DataManager.cpp -------------------------------------------------------------------------------- /Battery/DataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/DataManager.h -------------------------------------------------------------------------------- /Battery/DrawCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/DrawCommon.cpp -------------------------------------------------------------------------------- /Battery/DrawCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/DrawCommon.h -------------------------------------------------------------------------------- /Battery/GdiPlusTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/GdiPlusTool.cpp -------------------------------------------------------------------------------- /Battery/GdiPlusTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/GdiPlusTool.h -------------------------------------------------------------------------------- /Battery/OptionsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/OptionsDlg.cpp -------------------------------------------------------------------------------- /Battery/OptionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/OptionsDlg.h -------------------------------------------------------------------------------- /Battery/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/framework.h -------------------------------------------------------------------------------- /Battery/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/pch.cpp -------------------------------------------------------------------------------- /Battery/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/pch.h -------------------------------------------------------------------------------- /Battery/res/battery_dark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/res/battery_dark.ico -------------------------------------------------------------------------------- /Battery/res/battery_light.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/res/battery_light.ico -------------------------------------------------------------------------------- /Battery/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Battery/resource.h -------------------------------------------------------------------------------- /DateTime/CustomDrawItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/CustomDrawItem.cpp -------------------------------------------------------------------------------- /DateTime/CustomDrawItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/CustomDrawItem.h -------------------------------------------------------------------------------- /DateTime/DataManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/DataManager.cpp -------------------------------------------------------------------------------- /DateTime/DataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/DataManager.h -------------------------------------------------------------------------------- /DateTime/DateTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/DateTime.cpp -------------------------------------------------------------------------------- /DateTime/DateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/DateTime.h -------------------------------------------------------------------------------- /DateTime/DateTime.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/DateTime.rc -------------------------------------------------------------------------------- /DateTime/DateTime.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/DateTime.vcxproj -------------------------------------------------------------------------------- /DateTime/DateTime.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/DateTime.vcxproj.filters -------------------------------------------------------------------------------- /DateTime/DateTimeFormatHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/DateTimeFormatHelper.cpp -------------------------------------------------------------------------------- /DateTime/DateTimeFormatHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/DateTimeFormatHelper.h -------------------------------------------------------------------------------- /DateTime/MessageDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/MessageDlg.cpp -------------------------------------------------------------------------------- /DateTime/MessageDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/MessageDlg.h -------------------------------------------------------------------------------- /DateTime/OptionsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/OptionsDlg.cpp -------------------------------------------------------------------------------- /DateTime/OptionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/OptionsDlg.h -------------------------------------------------------------------------------- /DateTime/PluginSystemDate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/PluginSystemDate.cpp -------------------------------------------------------------------------------- /DateTime/PluginSystemDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/PluginSystemDate.h -------------------------------------------------------------------------------- /DateTime/PluginSystemTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/PluginSystemTime.cpp -------------------------------------------------------------------------------- /DateTime/PluginSystemTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/PluginSystemTime.h -------------------------------------------------------------------------------- /DateTime/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/framework.h -------------------------------------------------------------------------------- /DateTime/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/pch.cpp -------------------------------------------------------------------------------- /DateTime/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/pch.h -------------------------------------------------------------------------------- /DateTime/res/date_time.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/res/date_time.ico -------------------------------------------------------------------------------- /DateTime/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/DateTime/resource.h -------------------------------------------------------------------------------- /GP/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/GP/Common.cpp -------------------------------------------------------------------------------- /GP/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/GP/Common.h -------------------------------------------------------------------------------- /GP/DataManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/GP/DataManager.cpp -------------------------------------------------------------------------------- /GP/DataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/GP/DataManager.h -------------------------------------------------------------------------------- /GP/GP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/GP/GP.cpp -------------------------------------------------------------------------------- /GP/GP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/GP/GP.h -------------------------------------------------------------------------------- /GP/GP.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/GP/GP.rc -------------------------------------------------------------------------------- /GP/GP.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/GP/GP.vcxproj -------------------------------------------------------------------------------- /GP/GP.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/GP/GP.vcxproj.filters -------------------------------------------------------------------------------- /GP/GPItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/GP/GPItem.cpp -------------------------------------------------------------------------------- /GP/GPItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/GP/GPItem.h -------------------------------------------------------------------------------- /GP/ManagerDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/GP/ManagerDialog.cpp -------------------------------------------------------------------------------- /GP/ManagerDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/GP/ManagerDialog.h -------------------------------------------------------------------------------- /GP/OptionsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/GP/OptionsDlg.cpp -------------------------------------------------------------------------------- /GP/OptionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/GP/OptionsDlg.h -------------------------------------------------------------------------------- /GP/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/GP/framework.h -------------------------------------------------------------------------------- /GP/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/GP/pch.cpp -------------------------------------------------------------------------------- /GP/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/GP/pch.h -------------------------------------------------------------------------------- /GP/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/GP/resource.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/LICENSE -------------------------------------------------------------------------------- /PluginTemplate/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTemplate/Common.cpp -------------------------------------------------------------------------------- /PluginTemplate/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTemplate/Common.h -------------------------------------------------------------------------------- /PluginTemplate/DataManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTemplate/DataManager.cpp -------------------------------------------------------------------------------- /PluginTemplate/DataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTemplate/DataManager.h -------------------------------------------------------------------------------- /PluginTemplate/OptionsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTemplate/OptionsDlg.cpp -------------------------------------------------------------------------------- /PluginTemplate/OptionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTemplate/OptionsDlg.h -------------------------------------------------------------------------------- /PluginTemplate/PluginTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTemplate/PluginTemplate.cpp -------------------------------------------------------------------------------- /PluginTemplate/PluginTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTemplate/PluginTemplate.h -------------------------------------------------------------------------------- /PluginTemplate/PluginTemplate.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTemplate/PluginTemplate.rc -------------------------------------------------------------------------------- /PluginTemplate/PluginTemplate.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTemplate/PluginTemplate.vcxproj -------------------------------------------------------------------------------- /PluginTemplate/PluginTemplate.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTemplate/PluginTemplate.vcxproj.filters -------------------------------------------------------------------------------- /PluginTemplate/PluginTemplateItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTemplate/PluginTemplateItem.cpp -------------------------------------------------------------------------------- /PluginTemplate/PluginTemplateItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTemplate/PluginTemplateItem.h -------------------------------------------------------------------------------- /PluginTemplate/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTemplate/framework.h -------------------------------------------------------------------------------- /PluginTemplate/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTemplate/pch.cpp -------------------------------------------------------------------------------- /PluginTemplate/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTemplate/pch.h -------------------------------------------------------------------------------- /PluginTemplate/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTemplate/resource.h -------------------------------------------------------------------------------- /PluginTester/CommonData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/CommonData.cpp -------------------------------------------------------------------------------- /PluginTester/CommonData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/CommonData.h -------------------------------------------------------------------------------- /PluginTester/DrawCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/DrawCommon.cpp -------------------------------------------------------------------------------- /PluginTester/DrawCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/DrawCommon.h -------------------------------------------------------------------------------- /PluginTester/PluginInfoDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/PluginInfoDlg.cpp -------------------------------------------------------------------------------- /PluginTester/PluginInfoDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/PluginInfoDlg.h -------------------------------------------------------------------------------- /PluginTester/PluginTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/PluginTester.cpp -------------------------------------------------------------------------------- /PluginTester/PluginTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/PluginTester.h -------------------------------------------------------------------------------- /PluginTester/PluginTester.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/PluginTester.rc -------------------------------------------------------------------------------- /PluginTester/PluginTester.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/PluginTester.vcxproj -------------------------------------------------------------------------------- /PluginTester/PluginTester.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/PluginTester.vcxproj.filters -------------------------------------------------------------------------------- /PluginTester/PluginTesterDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/PluginTesterDlg.cpp -------------------------------------------------------------------------------- /PluginTester/PluginTesterDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/PluginTesterDlg.h -------------------------------------------------------------------------------- /PluginTester/PreviewScrollView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/PreviewScrollView.cpp -------------------------------------------------------------------------------- /PluginTester/PreviewScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/PreviewScrollView.h -------------------------------------------------------------------------------- /PluginTester/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/ReadMe.txt -------------------------------------------------------------------------------- /PluginTester/WIC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/WIC.cpp -------------------------------------------------------------------------------- /PluginTester/WIC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/WIC.h -------------------------------------------------------------------------------- /PluginTester/res/PluginTester.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/res/PluginTester.ico -------------------------------------------------------------------------------- /PluginTester/res/PluginTester.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/res/PluginTester.rc2 -------------------------------------------------------------------------------- /PluginTester/res/exit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/res/exit.ico -------------------------------------------------------------------------------- /PluginTester/res/help.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/res/help.ico -------------------------------------------------------------------------------- /PluginTester/res/item.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/res/item.ico -------------------------------------------------------------------------------- /PluginTester/res/plugins.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/res/plugins.ico -------------------------------------------------------------------------------- /PluginTester/res/setting.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/res/setting.ico -------------------------------------------------------------------------------- /PluginTester/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/resource.h -------------------------------------------------------------------------------- /PluginTester/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/stdafx.cpp -------------------------------------------------------------------------------- /PluginTester/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/stdafx.h -------------------------------------------------------------------------------- /PluginTester/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/PluginTester/targetver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/README.md -------------------------------------------------------------------------------- /TextReader/BookmarkDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/BookmarkDlg.cpp -------------------------------------------------------------------------------- /TextReader/BookmarkDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/BookmarkDlg.h -------------------------------------------------------------------------------- /TextReader/BookmarkMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/BookmarkMgr.cpp -------------------------------------------------------------------------------- /TextReader/BookmarkMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/BookmarkMgr.h -------------------------------------------------------------------------------- /TextReader/ChapterDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/ChapterDlg.cpp -------------------------------------------------------------------------------- /TextReader/ChapterDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/ChapterDlg.h -------------------------------------------------------------------------------- /TextReader/ChapterParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/ChapterParser.cpp -------------------------------------------------------------------------------- /TextReader/ChapterParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/ChapterParser.h -------------------------------------------------------------------------------- /TextReader/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/Common.cpp -------------------------------------------------------------------------------- /TextReader/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/Common.h -------------------------------------------------------------------------------- /TextReader/DataManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/DataManager.cpp -------------------------------------------------------------------------------- /TextReader/DataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/DataManager.h -------------------------------------------------------------------------------- /TextReader/OptionsContainerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/OptionsContainerDlg.cpp -------------------------------------------------------------------------------- /TextReader/OptionsContainerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/OptionsContainerDlg.h -------------------------------------------------------------------------------- /TextReader/OptionsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/OptionsDlg.cpp -------------------------------------------------------------------------------- /TextReader/OptionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/OptionsDlg.h -------------------------------------------------------------------------------- /TextReader/TabCtrlEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/TabCtrlEx.cpp -------------------------------------------------------------------------------- /TextReader/TabCtrlEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/TabCtrlEx.h -------------------------------------------------------------------------------- /TextReader/TextReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/TextReader.cpp -------------------------------------------------------------------------------- /TextReader/TextReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/TextReader.h -------------------------------------------------------------------------------- /TextReader/TextReader.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/TextReader.rc -------------------------------------------------------------------------------- /TextReader/TextReader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/TextReader.vcxproj -------------------------------------------------------------------------------- /TextReader/TextReader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/TextReader.vcxproj.filters -------------------------------------------------------------------------------- /TextReader/TextReaderItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/TextReaderItem.cpp -------------------------------------------------------------------------------- /TextReader/TextReaderItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/TextReaderItem.h -------------------------------------------------------------------------------- /TextReader/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/framework.h -------------------------------------------------------------------------------- /TextReader/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/pch.cpp -------------------------------------------------------------------------------- /TextReader/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/pch.h -------------------------------------------------------------------------------- /TextReader/res/add_bookmark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/res/add_bookmark.ico -------------------------------------------------------------------------------- /TextReader/res/auto_page.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/res/auto_page.ico -------------------------------------------------------------------------------- /TextReader/res/bookmark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/res/bookmark.ico -------------------------------------------------------------------------------- /TextReader/res/chapter.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/res/chapter.ico -------------------------------------------------------------------------------- /TextReader/res/hide.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/res/hide.ico -------------------------------------------------------------------------------- /TextReader/res/next.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/res/next.ico -------------------------------------------------------------------------------- /TextReader/res/previous.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/res/previous.ico -------------------------------------------------------------------------------- /TextReader/res/reader.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/res/reader.ico -------------------------------------------------------------------------------- /TextReader/res/setting.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/res/setting.ico -------------------------------------------------------------------------------- /TextReader/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TextReader/resource.h -------------------------------------------------------------------------------- /TrafficMonitorPlugins.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/TrafficMonitorPlugins.sln -------------------------------------------------------------------------------- /Weather/CityCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/CityCode.h -------------------------------------------------------------------------------- /Weather/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/Common.cpp -------------------------------------------------------------------------------- /Weather/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/Common.h -------------------------------------------------------------------------------- /Weather/CurLocationHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/CurLocationHelper.cpp -------------------------------------------------------------------------------- /Weather/CurLocationHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/CurLocationHelper.h -------------------------------------------------------------------------------- /Weather/DataManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/DataManager.cpp -------------------------------------------------------------------------------- /Weather/DataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/DataManager.h -------------------------------------------------------------------------------- /Weather/OptionsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/OptionsDlg.cpp -------------------------------------------------------------------------------- /Weather/OptionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/OptionsDlg.h -------------------------------------------------------------------------------- /Weather/SelectCityDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/SelectCityDlg.cpp -------------------------------------------------------------------------------- /Weather/SelectCityDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/SelectCityDlg.h -------------------------------------------------------------------------------- /Weather/Weather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/Weather.cpp -------------------------------------------------------------------------------- /Weather/Weather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/Weather.h -------------------------------------------------------------------------------- /Weather/Weather.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/Weather.rc -------------------------------------------------------------------------------- /Weather/Weather.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/Weather.vcxproj -------------------------------------------------------------------------------- /Weather/Weather.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/Weather.vcxproj.filters -------------------------------------------------------------------------------- /Weather/WeatherItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/WeatherItem.cpp -------------------------------------------------------------------------------- /Weather/WeatherItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/WeatherItem.h -------------------------------------------------------------------------------- /Weather/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/framework.h -------------------------------------------------------------------------------- /Weather/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/pch.cpp -------------------------------------------------------------------------------- /Weather/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/pch.h -------------------------------------------------------------------------------- /Weather/res/update.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/update.ico -------------------------------------------------------------------------------- /Weather/res/weather.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/weather.ico -------------------------------------------------------------------------------- /Weather/res/中雨.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/中雨.ico -------------------------------------------------------------------------------- /Weather/res/中雪.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/中雪.ico -------------------------------------------------------------------------------- /Weather/res/冰雹.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/冰雹.ico -------------------------------------------------------------------------------- /Weather/res/台风.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/台风.ico -------------------------------------------------------------------------------- /Weather/res/多云.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/多云.ico -------------------------------------------------------------------------------- /Weather/res/多云_夜晚.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/多云_夜晚.ico -------------------------------------------------------------------------------- /Weather/res/大暴雨.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/大暴雨.ico -------------------------------------------------------------------------------- /Weather/res/大雨.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/大雨.ico -------------------------------------------------------------------------------- /Weather/res/大雪.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/大雪.ico -------------------------------------------------------------------------------- /Weather/res/小雨.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/小雨.ico -------------------------------------------------------------------------------- /Weather/res/小雪.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/小雪.ico -------------------------------------------------------------------------------- /Weather/res/晴.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/晴.ico -------------------------------------------------------------------------------- /Weather/res/晴_夜晚.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/晴_夜晚.ico -------------------------------------------------------------------------------- /Weather/res/暴雨.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/暴雨.ico -------------------------------------------------------------------------------- /Weather/res/暴雪.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/暴雪.ico -------------------------------------------------------------------------------- /Weather/res/未知.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/未知.ico -------------------------------------------------------------------------------- /Weather/res/杨尘.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/杨尘.ico -------------------------------------------------------------------------------- /Weather/res/沙尘暴.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/沙尘暴.ico -------------------------------------------------------------------------------- /Weather/res/浮尘.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/浮尘.ico -------------------------------------------------------------------------------- /Weather/res/阴.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/阴.ico -------------------------------------------------------------------------------- /Weather/res/阵雨.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/阵雨.ico -------------------------------------------------------------------------------- /Weather/res/阵雪.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/阵雪.ico -------------------------------------------------------------------------------- /Weather/res/雨夹雪.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/雨夹雪.ico -------------------------------------------------------------------------------- /Weather/res/雷阵雨.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/雷阵雨.ico -------------------------------------------------------------------------------- /Weather/res/雷雨.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/雷雨.ico -------------------------------------------------------------------------------- /Weather/res/雾.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/雾.ico -------------------------------------------------------------------------------- /Weather/res/雾霾.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/雾霾.ico -------------------------------------------------------------------------------- /Weather/res/霜.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/res/霜.ico -------------------------------------------------------------------------------- /Weather/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/Weather/resource.h -------------------------------------------------------------------------------- /download/Battery/Battery_V1.00_x64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/Battery/Battery_V1.00_x64.zip -------------------------------------------------------------------------------- /download/Battery/Battery_V1.00_x86.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/Battery/Battery_V1.00_x86.zip -------------------------------------------------------------------------------- /download/Battery/Battery_V1.01_x64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/Battery/Battery_V1.01_x64.zip -------------------------------------------------------------------------------- /download/Battery/Battery_V1.01_x86.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/Battery/Battery_V1.01_x86.zip -------------------------------------------------------------------------------- /download/Battery/Battery_V1.02_x64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/Battery/Battery_V1.02_x64.zip -------------------------------------------------------------------------------- /download/Battery/Battery_V1.02_x86.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/Battery/Battery_V1.02_x86.zip -------------------------------------------------------------------------------- /download/DateTime/DateTime_V1.0_x64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/DateTime/DateTime_V1.0_x64.zip -------------------------------------------------------------------------------- /download/DateTime/DateTime_V1.0_x86.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/DateTime/DateTime_V1.0_x86.zip -------------------------------------------------------------------------------- /download/GP/GP_V1.11_x64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/GP/GP_V1.11_x64.zip -------------------------------------------------------------------------------- /download/GP/GP_V1.11_x86.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/GP/GP_V1.11_x86.zip -------------------------------------------------------------------------------- /download/GP/GP_V1.12_x64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/GP/GP_V1.12_x64.zip -------------------------------------------------------------------------------- /download/GP/GP_V1.12_x86.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/GP/GP_V1.12_x86.zip -------------------------------------------------------------------------------- /download/TextReader/TextReader_V1.00_x64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/TextReader/TextReader_V1.00_x64.zip -------------------------------------------------------------------------------- /download/TextReader/TextReader_V1.00_x86.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/TextReader/TextReader_V1.00_x86.zip -------------------------------------------------------------------------------- /download/TextReader/TextReader_V1.01_x64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/TextReader/TextReader_V1.01_x64.zip -------------------------------------------------------------------------------- /download/TextReader/TextReader_V1.01_x86.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/TextReader/TextReader_V1.01_x86.zip -------------------------------------------------------------------------------- /download/images/155976271-b3e58b7a-d3ec-442d-8107-c0c69a2d7610.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/images/155976271-b3e58b7a-d3ec-442d-8107-c0c69a2d7610.png -------------------------------------------------------------------------------- /download/images/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/images/battery.png -------------------------------------------------------------------------------- /download/images/gp_edit_20220411100337.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/images/gp_edit_20220411100337.png -------------------------------------------------------------------------------- /download/images/gp_mgr_20220411100659.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/images/gp_mgr_20220411100659.png -------------------------------------------------------------------------------- /download/images/gp_viewer_20220411100625.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/images/gp_viewer_20220411100625.png -------------------------------------------------------------------------------- /download/images/image-20211216220605288.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/images/image-20211216220605288.png -------------------------------------------------------------------------------- /download/images/image-20211225234420165.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/images/image-20211225234420165.png -------------------------------------------------------------------------------- /download/images/image-20211225234519524.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/images/image-20211225234519524.png -------------------------------------------------------------------------------- /download/images/image-20211226220834772.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/images/image-20211226220834772.png -------------------------------------------------------------------------------- /download/images/image-20220614195748677.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/images/image-20220614195748677.png -------------------------------------------------------------------------------- /download/images/image-20220701210850528.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/images/image-20220701210850528.png -------------------------------------------------------------------------------- /download/images/img-pomodoro-timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/images/img-pomodoro-timer.png -------------------------------------------------------------------------------- /download/images/img-weather-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/images/img-weather-pro.png -------------------------------------------------------------------------------- /download/plugin_download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/plugin_download.md -------------------------------------------------------------------------------- /download/plugin_download_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/plugin_download_en.md -------------------------------------------------------------------------------- /download/weather/Weather_V1.01_x64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/weather/Weather_V1.01_x64.zip -------------------------------------------------------------------------------- /download/weather/Weather_V1.01_x86.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/weather/Weather_V1.01_x86.zip -------------------------------------------------------------------------------- /download/weather/Weather_V1.02_x64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/weather/Weather_V1.02_x64.zip -------------------------------------------------------------------------------- /download/weather/Weather_V1.02_x86.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/download/weather/Weather_V1.02_x86.zip -------------------------------------------------------------------------------- /images/image-20221013203124953.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/images/image-20221013203124953.png -------------------------------------------------------------------------------- /images/image-20221013203353499.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/images/image-20221013203353499.png -------------------------------------------------------------------------------- /images/image-20221013203527593.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/images/image-20221013203527593.png -------------------------------------------------------------------------------- /images/image-20221013203621714.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/images/image-20221013203621714.png -------------------------------------------------------------------------------- /include/PluginInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/include/PluginInterface.h -------------------------------------------------------------------------------- /utilities/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/utilities/Common.cpp -------------------------------------------------------------------------------- /utilities/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/utilities/Common.h -------------------------------------------------------------------------------- /utilities/FilePathHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/utilities/FilePathHelper.cpp -------------------------------------------------------------------------------- /utilities/FilePathHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/utilities/FilePathHelper.h -------------------------------------------------------------------------------- /utilities/IniHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/utilities/IniHelper.cpp -------------------------------------------------------------------------------- /utilities/IniHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/utilities/IniHelper.h -------------------------------------------------------------------------------- /utilities/bass64/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/utilities/bass64/base64.cpp -------------------------------------------------------------------------------- /utilities/bass64/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/utilities/bass64/base64.h -------------------------------------------------------------------------------- /utilities/utilities.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/utilities/utilities.vcxproj -------------------------------------------------------------------------------- /utilities/utilities.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/utilities/utilities.vcxproj.filters -------------------------------------------------------------------------------- /utilities/yyjson/yyjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/utilities/yyjson/yyjson.c -------------------------------------------------------------------------------- /utilities/yyjson/yyjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haojia521/TrafficMonitorPlugins/HEAD/utilities/yyjson/yyjson.h --------------------------------------------------------------------------------