├── .gitignore ├── BonDriver_TSTask ├── BonDriver_TSTask.cpp ├── BonDriver_TSTask.vcxproj ├── BonDriver_TSTask.vcxproj.filters ├── IBonDriver.h ├── IBonDriver2.h ├── TaskClient.cpp ├── TaskClient.h ├── stdafx.cpp └── stdafx.h ├── BonTsEngine ├── BasicFile.cpp ├── BasicFile.h ├── Bitstream.cpp ├── Bitstream.h ├── BonBaseClass.cpp ├── BonBaseClass.h ├── BonSrcDecoder.cpp ├── BonSrcDecoder.h ├── BonTsEngine.vcxproj ├── BonTsEngine.vcxproj.filters ├── BonTsEngineConfig.h ├── Common.h ├── EventInfo.cpp ├── EventInfo.h ├── Exception.cpp ├── Exception.h ├── IBonDriver.h ├── IBonDriver2.h ├── MediaData.cpp ├── MediaData.h ├── MediaDecoder.cpp ├── MediaDecoder.h ├── MediaTee.cpp ├── MediaTee.h ├── PATGenerator.cpp ├── PATGenerator.h ├── StdUtil.cpp ├── StdUtil.h ├── TsAnalyzer.cpp ├── TsAnalyzer.h ├── TsDescriptor.cpp ├── TsDescriptor.h ├── TsEncode.cpp ├── TsEncode.h ├── TsGrabber.cpp ├── TsGrabber.h ├── TsMedia.cpp ├── TsMedia.h ├── TsNetworkSender.cpp ├── TsNetworkSender.h ├── TsPacketCounter.cpp ├── TsPacketCounter.h ├── TsPacketParser.cpp ├── TsPacketParser.h ├── TsRecorder.cpp ├── TsRecorder.h ├── TsSelector.cpp ├── TsSelector.h ├── TsStream.cpp ├── TsStream.h ├── TsTable.cpp ├── TsTable.h ├── TsUtil.h ├── TsUtilClass.cpp ├── TsUtilClass.h ├── stdafx.cpp └── stdafx.h ├── Common ├── AtomicOperation.h ├── BasicMessage.cpp ├── BasicMessage.h ├── Channel.cpp ├── Channel.h ├── CommandLine.cpp ├── CommandLine.h ├── Common.vcxproj ├── Common.vcxproj.filters ├── DataBlock.cpp ├── DataBlock.h ├── Debug.cpp ├── Debug.h ├── DebugDef.h ├── IniFile.cpp ├── IniFile.h ├── Logger.cpp ├── Logger.h ├── Message.cpp ├── Message.h ├── MessageClient.cpp ├── MessageClient.h ├── MessageSendQueue.cpp ├── MessageSendQueue.h ├── MessageServer.cpp ├── MessageServer.h ├── Module.cpp ├── Module.h ├── Settings.cpp ├── Settings.h ├── SettingsBase.cpp ├── SettingsBase.h ├── SharedMemory.cpp ├── SharedMemory.h ├── StreamPool.cpp ├── StreamPool.h ├── StreamQueue.cpp ├── StreamQueue.h ├── Streaming.cpp ├── Streaming.h ├── TSTaskBase.h ├── TSTaskCommon.h ├── TaskUtility.cpp ├── TaskUtility.h ├── Utility.cpp ├── Utility.h ├── VariableString.cpp ├── VariableString.h ├── stdafx.cpp └── stdafx.h ├── Data ├── TSTask.default.ini └── TSTaskThemes │ ├── Aero.tttheme │ ├── Bokeh.tttheme │ └── Metro.tttheme ├── Doc ├── License.txt └── TSTask.txt ├── README.md ├── TSTask.sln ├── TSTask ├── ClientManager.cpp ├── ClientManager.h ├── CoreMessageHandler.cpp ├── CoreMessageHandler.h ├── DtvEngine.cpp ├── DtvEngine.h ├── EventHandler.h ├── ReserveManager.cpp ├── ReserveManager.h ├── StatisticsUpdater.cpp ├── StatisticsUpdater.h ├── TSTask.cpp ├── TSTask.h ├── TSTask.rc ├── TSTask.vcxproj ├── TSTask.vcxproj.filters ├── TSTaskAppCore.cpp ├── TSTaskAppCore.h ├── TSTaskCommandLine.cpp ├── TSTaskCommandLine.h ├── TSTaskCore.cpp ├── TSTaskCore.h ├── TSTaskSettings.cpp ├── TSTaskSettings.h ├── TSTaskStreamPool.cpp ├── TSTaskStreamPool.h ├── TSTaskWindow.cpp ├── TSTaskWindow.h ├── TvRock.cpp ├── TvRock.h ├── TvRockDTV.h ├── stdafx.cpp └── stdafx.h └── TSTaskCentre ├── AboutDialog.cpp ├── AboutDialog.h ├── BonDriverManager.cpp ├── BonDriverManager.h ├── ChannelListDialog.cpp ├── ChannelListDialog.h ├── Dialog.cpp ├── Dialog.h ├── GeneralSettingsDialog.cpp ├── GeneralSettingsDialog.h ├── Graphics.cpp ├── Graphics.h ├── InformationBar.cpp ├── InformationBar.h ├── InformationBarItems.cpp ├── InformationBarItems.h ├── InformationBarSettingsDialog.cpp ├── InformationBarSettingsDialog.h ├── LayeredWidget.cpp ├── LayeredWidget.h ├── ListView.cpp ├── ListView.h ├── LogDialog.cpp ├── LogDialog.h ├── LogSettingsDialog.cpp ├── LogSettingsDialog.h ├── MainBoard.cpp ├── MainBoard.h ├── MessageDialog.cpp ├── MessageDialog.h ├── MiscDialog.cpp ├── MiscDialog.h ├── RecordingSettingsDialog.cpp ├── RecordingSettingsDialog.h ├── Resource ├── LogIcons.bmp ├── Logo.png ├── Settings.bmp ├── SpaceIcons.bmp ├── TSTaskCentre.exe.manifest └── TSTaskCentre.ico ├── SendMessageDialog.cpp ├── SendMessageDialog.h ├── SettingsDialog.cpp ├── SettingsDialog.h ├── StatusBar.cpp ├── StatusBar.h ├── StatusBarSettingsDialog.cpp ├── StatusBarSettingsDialog.h ├── TSTaskBar.cpp ├── TSTaskBar.h ├── TSTaskCentre.cpp ├── TSTaskCentre.h ├── TSTaskCentre.rc ├── TSTaskCentre.vcxproj ├── TSTaskCentre.vcxproj.filters ├── TSTaskCentreCommandLine.cpp ├── TSTaskCentreCommandLine.h ├── TSTaskCentreCore.cpp ├── TSTaskCentreCore.h ├── TSTaskCentreSettings.cpp ├── TSTaskCentreSettings.h ├── TSTaskCentreSettingsDialog.cpp ├── TSTaskCentreSettingsDialog.h ├── TSTaskManager.cpp ├── TSTaskManager.h ├── TSTaskSettingsDialog.cpp ├── TSTaskSettingsDialog.h ├── TaskGeneralSettingsDialog.cpp ├── TaskGeneralSettingsDialog.h ├── TaskInfoDialog.cpp ├── TaskInfoDialog.h ├── TaskRecordingSettingsDialog.cpp ├── TaskRecordingSettingsDialog.h ├── TaskStreamingSettingsDialog.cpp ├── TaskStreamingSettingsDialog.h ├── TaskTrayManager.cpp ├── TaskTrayManager.h ├── Theme.cpp ├── Theme.h ├── ThemeManager.cpp ├── ThemeManager.h ├── ThemeSettings.cpp ├── ThemeSettings.h ├── ToolsSettingsDialog.cpp ├── ToolsSettingsDialog.h ├── Widget.cpp ├── Widget.h ├── resource.h ├── stdafx.cpp └── stdafx.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/.gitignore -------------------------------------------------------------------------------- /BonDriver_TSTask/BonDriver_TSTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonDriver_TSTask/BonDriver_TSTask.cpp -------------------------------------------------------------------------------- /BonDriver_TSTask/BonDriver_TSTask.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonDriver_TSTask/BonDriver_TSTask.vcxproj -------------------------------------------------------------------------------- /BonDriver_TSTask/BonDriver_TSTask.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonDriver_TSTask/BonDriver_TSTask.vcxproj.filters -------------------------------------------------------------------------------- /BonDriver_TSTask/IBonDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonDriver_TSTask/IBonDriver.h -------------------------------------------------------------------------------- /BonDriver_TSTask/IBonDriver2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonDriver_TSTask/IBonDriver2.h -------------------------------------------------------------------------------- /BonDriver_TSTask/TaskClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonDriver_TSTask/TaskClient.cpp -------------------------------------------------------------------------------- /BonDriver_TSTask/TaskClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonDriver_TSTask/TaskClient.h -------------------------------------------------------------------------------- /BonDriver_TSTask/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /BonDriver_TSTask/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonDriver_TSTask/stdafx.h -------------------------------------------------------------------------------- /BonTsEngine/BasicFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/BasicFile.cpp -------------------------------------------------------------------------------- /BonTsEngine/BasicFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/BasicFile.h -------------------------------------------------------------------------------- /BonTsEngine/Bitstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/Bitstream.cpp -------------------------------------------------------------------------------- /BonTsEngine/Bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/Bitstream.h -------------------------------------------------------------------------------- /BonTsEngine/BonBaseClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/BonBaseClass.cpp -------------------------------------------------------------------------------- /BonTsEngine/BonBaseClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/BonBaseClass.h -------------------------------------------------------------------------------- /BonTsEngine/BonSrcDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/BonSrcDecoder.cpp -------------------------------------------------------------------------------- /BonTsEngine/BonSrcDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/BonSrcDecoder.h -------------------------------------------------------------------------------- /BonTsEngine/BonTsEngine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/BonTsEngine.vcxproj -------------------------------------------------------------------------------- /BonTsEngine/BonTsEngine.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/BonTsEngine.vcxproj.filters -------------------------------------------------------------------------------- /BonTsEngine/BonTsEngineConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/BonTsEngineConfig.h -------------------------------------------------------------------------------- /BonTsEngine/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/Common.h -------------------------------------------------------------------------------- /BonTsEngine/EventInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/EventInfo.cpp -------------------------------------------------------------------------------- /BonTsEngine/EventInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/EventInfo.h -------------------------------------------------------------------------------- /BonTsEngine/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/Exception.cpp -------------------------------------------------------------------------------- /BonTsEngine/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/Exception.h -------------------------------------------------------------------------------- /BonTsEngine/IBonDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/IBonDriver.h -------------------------------------------------------------------------------- /BonTsEngine/IBonDriver2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/IBonDriver2.h -------------------------------------------------------------------------------- /BonTsEngine/MediaData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/MediaData.cpp -------------------------------------------------------------------------------- /BonTsEngine/MediaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/MediaData.h -------------------------------------------------------------------------------- /BonTsEngine/MediaDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/MediaDecoder.cpp -------------------------------------------------------------------------------- /BonTsEngine/MediaDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/MediaDecoder.h -------------------------------------------------------------------------------- /BonTsEngine/MediaTee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/MediaTee.cpp -------------------------------------------------------------------------------- /BonTsEngine/MediaTee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/MediaTee.h -------------------------------------------------------------------------------- /BonTsEngine/PATGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/PATGenerator.cpp -------------------------------------------------------------------------------- /BonTsEngine/PATGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/PATGenerator.h -------------------------------------------------------------------------------- /BonTsEngine/StdUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/StdUtil.cpp -------------------------------------------------------------------------------- /BonTsEngine/StdUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/StdUtil.h -------------------------------------------------------------------------------- /BonTsEngine/TsAnalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsAnalyzer.cpp -------------------------------------------------------------------------------- /BonTsEngine/TsAnalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsAnalyzer.h -------------------------------------------------------------------------------- /BonTsEngine/TsDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsDescriptor.cpp -------------------------------------------------------------------------------- /BonTsEngine/TsDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsDescriptor.h -------------------------------------------------------------------------------- /BonTsEngine/TsEncode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsEncode.cpp -------------------------------------------------------------------------------- /BonTsEngine/TsEncode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsEncode.h -------------------------------------------------------------------------------- /BonTsEngine/TsGrabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsGrabber.cpp -------------------------------------------------------------------------------- /BonTsEngine/TsGrabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsGrabber.h -------------------------------------------------------------------------------- /BonTsEngine/TsMedia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsMedia.cpp -------------------------------------------------------------------------------- /BonTsEngine/TsMedia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsMedia.h -------------------------------------------------------------------------------- /BonTsEngine/TsNetworkSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsNetworkSender.cpp -------------------------------------------------------------------------------- /BonTsEngine/TsNetworkSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsNetworkSender.h -------------------------------------------------------------------------------- /BonTsEngine/TsPacketCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsPacketCounter.cpp -------------------------------------------------------------------------------- /BonTsEngine/TsPacketCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsPacketCounter.h -------------------------------------------------------------------------------- /BonTsEngine/TsPacketParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsPacketParser.cpp -------------------------------------------------------------------------------- /BonTsEngine/TsPacketParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsPacketParser.h -------------------------------------------------------------------------------- /BonTsEngine/TsRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsRecorder.cpp -------------------------------------------------------------------------------- /BonTsEngine/TsRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsRecorder.h -------------------------------------------------------------------------------- /BonTsEngine/TsSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsSelector.cpp -------------------------------------------------------------------------------- /BonTsEngine/TsSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsSelector.h -------------------------------------------------------------------------------- /BonTsEngine/TsStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsStream.cpp -------------------------------------------------------------------------------- /BonTsEngine/TsStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsStream.h -------------------------------------------------------------------------------- /BonTsEngine/TsTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsTable.cpp -------------------------------------------------------------------------------- /BonTsEngine/TsTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsTable.h -------------------------------------------------------------------------------- /BonTsEngine/TsUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsUtil.h -------------------------------------------------------------------------------- /BonTsEngine/TsUtilClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsUtilClass.cpp -------------------------------------------------------------------------------- /BonTsEngine/TsUtilClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/TsUtilClass.h -------------------------------------------------------------------------------- /BonTsEngine/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/stdafx.cpp -------------------------------------------------------------------------------- /BonTsEngine/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/BonTsEngine/stdafx.h -------------------------------------------------------------------------------- /Common/AtomicOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/AtomicOperation.h -------------------------------------------------------------------------------- /Common/BasicMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/BasicMessage.cpp -------------------------------------------------------------------------------- /Common/BasicMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/BasicMessage.h -------------------------------------------------------------------------------- /Common/Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/Channel.cpp -------------------------------------------------------------------------------- /Common/Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/Channel.h -------------------------------------------------------------------------------- /Common/CommandLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/CommandLine.cpp -------------------------------------------------------------------------------- /Common/CommandLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/CommandLine.h -------------------------------------------------------------------------------- /Common/Common.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/Common.vcxproj -------------------------------------------------------------------------------- /Common/Common.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/Common.vcxproj.filters -------------------------------------------------------------------------------- /Common/DataBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/DataBlock.cpp -------------------------------------------------------------------------------- /Common/DataBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/DataBlock.h -------------------------------------------------------------------------------- /Common/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/Debug.cpp -------------------------------------------------------------------------------- /Common/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/Debug.h -------------------------------------------------------------------------------- /Common/DebugDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/DebugDef.h -------------------------------------------------------------------------------- /Common/IniFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/IniFile.cpp -------------------------------------------------------------------------------- /Common/IniFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/IniFile.h -------------------------------------------------------------------------------- /Common/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/Logger.cpp -------------------------------------------------------------------------------- /Common/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/Logger.h -------------------------------------------------------------------------------- /Common/Message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/Message.cpp -------------------------------------------------------------------------------- /Common/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/Message.h -------------------------------------------------------------------------------- /Common/MessageClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/MessageClient.cpp -------------------------------------------------------------------------------- /Common/MessageClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/MessageClient.h -------------------------------------------------------------------------------- /Common/MessageSendQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/MessageSendQueue.cpp -------------------------------------------------------------------------------- /Common/MessageSendQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/MessageSendQueue.h -------------------------------------------------------------------------------- /Common/MessageServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/MessageServer.cpp -------------------------------------------------------------------------------- /Common/MessageServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/MessageServer.h -------------------------------------------------------------------------------- /Common/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/Module.cpp -------------------------------------------------------------------------------- /Common/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/Module.h -------------------------------------------------------------------------------- /Common/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/Settings.cpp -------------------------------------------------------------------------------- /Common/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/Settings.h -------------------------------------------------------------------------------- /Common/SettingsBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/SettingsBase.cpp -------------------------------------------------------------------------------- /Common/SettingsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/SettingsBase.h -------------------------------------------------------------------------------- /Common/SharedMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/SharedMemory.cpp -------------------------------------------------------------------------------- /Common/SharedMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/SharedMemory.h -------------------------------------------------------------------------------- /Common/StreamPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/StreamPool.cpp -------------------------------------------------------------------------------- /Common/StreamPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/StreamPool.h -------------------------------------------------------------------------------- /Common/StreamQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/StreamQueue.cpp -------------------------------------------------------------------------------- /Common/StreamQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/StreamQueue.h -------------------------------------------------------------------------------- /Common/Streaming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/Streaming.cpp -------------------------------------------------------------------------------- /Common/Streaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/Streaming.h -------------------------------------------------------------------------------- /Common/TSTaskBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/TSTaskBase.h -------------------------------------------------------------------------------- /Common/TSTaskCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/TSTaskCommon.h -------------------------------------------------------------------------------- /Common/TaskUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/TaskUtility.cpp -------------------------------------------------------------------------------- /Common/TaskUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/TaskUtility.h -------------------------------------------------------------------------------- /Common/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/Utility.cpp -------------------------------------------------------------------------------- /Common/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/Utility.h -------------------------------------------------------------------------------- /Common/VariableString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/VariableString.cpp -------------------------------------------------------------------------------- /Common/VariableString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/VariableString.h -------------------------------------------------------------------------------- /Common/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Common/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Common/stdafx.h -------------------------------------------------------------------------------- /Data/TSTask.default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Data/TSTask.default.ini -------------------------------------------------------------------------------- /Data/TSTaskThemes/Aero.tttheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Data/TSTaskThemes/Aero.tttheme -------------------------------------------------------------------------------- /Data/TSTaskThemes/Bokeh.tttheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Data/TSTaskThemes/Bokeh.tttheme -------------------------------------------------------------------------------- /Data/TSTaskThemes/Metro.tttheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Data/TSTaskThemes/Metro.tttheme -------------------------------------------------------------------------------- /Doc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Doc/License.txt -------------------------------------------------------------------------------- /Doc/TSTask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/Doc/TSTask.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/README.md -------------------------------------------------------------------------------- /TSTask.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask.sln -------------------------------------------------------------------------------- /TSTask/ClientManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/ClientManager.cpp -------------------------------------------------------------------------------- /TSTask/ClientManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/ClientManager.h -------------------------------------------------------------------------------- /TSTask/CoreMessageHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/CoreMessageHandler.cpp -------------------------------------------------------------------------------- /TSTask/CoreMessageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/CoreMessageHandler.h -------------------------------------------------------------------------------- /TSTask/DtvEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/DtvEngine.cpp -------------------------------------------------------------------------------- /TSTask/DtvEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/DtvEngine.h -------------------------------------------------------------------------------- /TSTask/EventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/EventHandler.h -------------------------------------------------------------------------------- /TSTask/ReserveManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/ReserveManager.cpp -------------------------------------------------------------------------------- /TSTask/ReserveManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/ReserveManager.h -------------------------------------------------------------------------------- /TSTask/StatisticsUpdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/StatisticsUpdater.cpp -------------------------------------------------------------------------------- /TSTask/StatisticsUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/StatisticsUpdater.h -------------------------------------------------------------------------------- /TSTask/TSTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TSTask.cpp -------------------------------------------------------------------------------- /TSTask/TSTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TSTask.h -------------------------------------------------------------------------------- /TSTask/TSTask.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TSTask.rc -------------------------------------------------------------------------------- /TSTask/TSTask.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TSTask.vcxproj -------------------------------------------------------------------------------- /TSTask/TSTask.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TSTask.vcxproj.filters -------------------------------------------------------------------------------- /TSTask/TSTaskAppCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TSTaskAppCore.cpp -------------------------------------------------------------------------------- /TSTask/TSTaskAppCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TSTaskAppCore.h -------------------------------------------------------------------------------- /TSTask/TSTaskCommandLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TSTaskCommandLine.cpp -------------------------------------------------------------------------------- /TSTask/TSTaskCommandLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TSTaskCommandLine.h -------------------------------------------------------------------------------- /TSTask/TSTaskCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TSTaskCore.cpp -------------------------------------------------------------------------------- /TSTask/TSTaskCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TSTaskCore.h -------------------------------------------------------------------------------- /TSTask/TSTaskSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TSTaskSettings.cpp -------------------------------------------------------------------------------- /TSTask/TSTaskSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TSTaskSettings.h -------------------------------------------------------------------------------- /TSTask/TSTaskStreamPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TSTaskStreamPool.cpp -------------------------------------------------------------------------------- /TSTask/TSTaskStreamPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TSTaskStreamPool.h -------------------------------------------------------------------------------- /TSTask/TSTaskWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TSTaskWindow.cpp -------------------------------------------------------------------------------- /TSTask/TSTaskWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TSTaskWindow.h -------------------------------------------------------------------------------- /TSTask/TvRock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TvRock.cpp -------------------------------------------------------------------------------- /TSTask/TvRock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TvRock.h -------------------------------------------------------------------------------- /TSTask/TvRockDTV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/TvRockDTV.h -------------------------------------------------------------------------------- /TSTask/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /TSTask/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTask/stdafx.h -------------------------------------------------------------------------------- /TSTaskCentre/AboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/AboutDialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/AboutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/AboutDialog.h -------------------------------------------------------------------------------- /TSTaskCentre/BonDriverManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/BonDriverManager.cpp -------------------------------------------------------------------------------- /TSTaskCentre/BonDriverManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/BonDriverManager.h -------------------------------------------------------------------------------- /TSTaskCentre/ChannelListDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/ChannelListDialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/ChannelListDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/ChannelListDialog.h -------------------------------------------------------------------------------- /TSTaskCentre/Dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/Dialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/Dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/Dialog.h -------------------------------------------------------------------------------- /TSTaskCentre/GeneralSettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/GeneralSettingsDialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/GeneralSettingsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/GeneralSettingsDialog.h -------------------------------------------------------------------------------- /TSTaskCentre/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/Graphics.cpp -------------------------------------------------------------------------------- /TSTaskCentre/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/Graphics.h -------------------------------------------------------------------------------- /TSTaskCentre/InformationBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/InformationBar.cpp -------------------------------------------------------------------------------- /TSTaskCentre/InformationBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/InformationBar.h -------------------------------------------------------------------------------- /TSTaskCentre/InformationBarItems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/InformationBarItems.cpp -------------------------------------------------------------------------------- /TSTaskCentre/InformationBarItems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/InformationBarItems.h -------------------------------------------------------------------------------- /TSTaskCentre/InformationBarSettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/InformationBarSettingsDialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/InformationBarSettingsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/InformationBarSettingsDialog.h -------------------------------------------------------------------------------- /TSTaskCentre/LayeredWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/LayeredWidget.cpp -------------------------------------------------------------------------------- /TSTaskCentre/LayeredWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/LayeredWidget.h -------------------------------------------------------------------------------- /TSTaskCentre/ListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/ListView.cpp -------------------------------------------------------------------------------- /TSTaskCentre/ListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/ListView.h -------------------------------------------------------------------------------- /TSTaskCentre/LogDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/LogDialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/LogDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/LogDialog.h -------------------------------------------------------------------------------- /TSTaskCentre/LogSettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/LogSettingsDialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/LogSettingsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/LogSettingsDialog.h -------------------------------------------------------------------------------- /TSTaskCentre/MainBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/MainBoard.cpp -------------------------------------------------------------------------------- /TSTaskCentre/MainBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/MainBoard.h -------------------------------------------------------------------------------- /TSTaskCentre/MessageDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/MessageDialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/MessageDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/MessageDialog.h -------------------------------------------------------------------------------- /TSTaskCentre/MiscDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/MiscDialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/MiscDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/MiscDialog.h -------------------------------------------------------------------------------- /TSTaskCentre/RecordingSettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/RecordingSettingsDialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/RecordingSettingsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/RecordingSettingsDialog.h -------------------------------------------------------------------------------- /TSTaskCentre/Resource/LogIcons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/Resource/LogIcons.bmp -------------------------------------------------------------------------------- /TSTaskCentre/Resource/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/Resource/Logo.png -------------------------------------------------------------------------------- /TSTaskCentre/Resource/Settings.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/Resource/Settings.bmp -------------------------------------------------------------------------------- /TSTaskCentre/Resource/SpaceIcons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/Resource/SpaceIcons.bmp -------------------------------------------------------------------------------- /TSTaskCentre/Resource/TSTaskCentre.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/Resource/TSTaskCentre.exe.manifest -------------------------------------------------------------------------------- /TSTaskCentre/Resource/TSTaskCentre.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/Resource/TSTaskCentre.ico -------------------------------------------------------------------------------- /TSTaskCentre/SendMessageDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/SendMessageDialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/SendMessageDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/SendMessageDialog.h -------------------------------------------------------------------------------- /TSTaskCentre/SettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/SettingsDialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/SettingsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/SettingsDialog.h -------------------------------------------------------------------------------- /TSTaskCentre/StatusBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/StatusBar.cpp -------------------------------------------------------------------------------- /TSTaskCentre/StatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/StatusBar.h -------------------------------------------------------------------------------- /TSTaskCentre/StatusBarSettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/StatusBarSettingsDialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/StatusBarSettingsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/StatusBarSettingsDialog.h -------------------------------------------------------------------------------- /TSTaskCentre/TSTaskBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TSTaskBar.cpp -------------------------------------------------------------------------------- /TSTaskCentre/TSTaskBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TSTaskBar.h -------------------------------------------------------------------------------- /TSTaskCentre/TSTaskCentre.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TSTaskCentre.cpp -------------------------------------------------------------------------------- /TSTaskCentre/TSTaskCentre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TSTaskCentre.h -------------------------------------------------------------------------------- /TSTaskCentre/TSTaskCentre.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TSTaskCentre.rc -------------------------------------------------------------------------------- /TSTaskCentre/TSTaskCentre.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TSTaskCentre.vcxproj -------------------------------------------------------------------------------- /TSTaskCentre/TSTaskCentre.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TSTaskCentre.vcxproj.filters -------------------------------------------------------------------------------- /TSTaskCentre/TSTaskCentreCommandLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TSTaskCentreCommandLine.cpp -------------------------------------------------------------------------------- /TSTaskCentre/TSTaskCentreCommandLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TSTaskCentreCommandLine.h -------------------------------------------------------------------------------- /TSTaskCentre/TSTaskCentreCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TSTaskCentreCore.cpp -------------------------------------------------------------------------------- /TSTaskCentre/TSTaskCentreCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TSTaskCentreCore.h -------------------------------------------------------------------------------- /TSTaskCentre/TSTaskCentreSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TSTaskCentreSettings.cpp -------------------------------------------------------------------------------- /TSTaskCentre/TSTaskCentreSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TSTaskCentreSettings.h -------------------------------------------------------------------------------- /TSTaskCentre/TSTaskCentreSettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TSTaskCentreSettingsDialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/TSTaskCentreSettingsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TSTaskCentreSettingsDialog.h -------------------------------------------------------------------------------- /TSTaskCentre/TSTaskManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TSTaskManager.cpp -------------------------------------------------------------------------------- /TSTaskCentre/TSTaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TSTaskManager.h -------------------------------------------------------------------------------- /TSTaskCentre/TSTaskSettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TSTaskSettingsDialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/TSTaskSettingsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TSTaskSettingsDialog.h -------------------------------------------------------------------------------- /TSTaskCentre/TaskGeneralSettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TaskGeneralSettingsDialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/TaskGeneralSettingsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TaskGeneralSettingsDialog.h -------------------------------------------------------------------------------- /TSTaskCentre/TaskInfoDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TaskInfoDialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/TaskInfoDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TaskInfoDialog.h -------------------------------------------------------------------------------- /TSTaskCentre/TaskRecordingSettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TaskRecordingSettingsDialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/TaskRecordingSettingsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TaskRecordingSettingsDialog.h -------------------------------------------------------------------------------- /TSTaskCentre/TaskStreamingSettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TaskStreamingSettingsDialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/TaskStreamingSettingsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TaskStreamingSettingsDialog.h -------------------------------------------------------------------------------- /TSTaskCentre/TaskTrayManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TaskTrayManager.cpp -------------------------------------------------------------------------------- /TSTaskCentre/TaskTrayManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/TaskTrayManager.h -------------------------------------------------------------------------------- /TSTaskCentre/Theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/Theme.cpp -------------------------------------------------------------------------------- /TSTaskCentre/Theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/Theme.h -------------------------------------------------------------------------------- /TSTaskCentre/ThemeManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/ThemeManager.cpp -------------------------------------------------------------------------------- /TSTaskCentre/ThemeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/ThemeManager.h -------------------------------------------------------------------------------- /TSTaskCentre/ThemeSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/ThemeSettings.cpp -------------------------------------------------------------------------------- /TSTaskCentre/ThemeSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/ThemeSettings.h -------------------------------------------------------------------------------- /TSTaskCentre/ToolsSettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/ToolsSettingsDialog.cpp -------------------------------------------------------------------------------- /TSTaskCentre/ToolsSettingsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/ToolsSettingsDialog.h -------------------------------------------------------------------------------- /TSTaskCentre/Widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/Widget.cpp -------------------------------------------------------------------------------- /TSTaskCentre/Widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/Widget.h -------------------------------------------------------------------------------- /TSTaskCentre/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/resource.h -------------------------------------------------------------------------------- /TSTaskCentre/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /TSTaskCentre/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DBCTRADO/TSTask/HEAD/TSTaskCentre/stdafx.h --------------------------------------------------------------------------------