├── .clang-format ├── .defaults.sh ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .hive_config.sample ├── 3rdparty └── bugtrap │ ├── BTTrace.h │ ├── BugTrap-x64.dll │ ├── BugTrap-x64.lib │ ├── BugTrap.dll │ ├── BugTrap.h │ └── BugTrap.lib ├── CHANGELOG.md ├── CMakeLists.txt ├── CMakePresets-Project.json ├── CMakePresets.json ├── CONTRIBUTING.md ├── COPYING.LESSER.txt ├── COPYING.txt ├── Docker ├── .env └── compose.yml ├── README.md ├── TODO.md ├── cmake └── BugTrapConfig.cmake ├── extend_config_file.sh ├── fix_files.sh ├── gen_cmake.sh ├── gen_install.sh ├── include ├── QtMate │ ├── flow │ │ ├── flowConnection.hpp │ │ ├── flowDefs.hpp │ │ ├── flowInput.hpp │ │ ├── flowLink.hpp │ │ ├── flowNode.hpp │ │ ├── flowOutput.hpp │ │ ├── flowScene.hpp │ │ ├── flowSceneDelegate.hpp │ │ ├── flowSocket.hpp │ │ ├── flowStyle.hpp │ │ └── flowView.hpp │ ├── image │ │ ├── logoGenerator.hpp │ │ └── svgUtils.hpp │ ├── material │ │ ├── color.hpp │ │ ├── colorPalette.hpp │ │ └── helper.hpp │ └── widgets │ │ ├── autoSizeLabel.hpp │ │ ├── comboBox.hpp │ │ ├── dynamicHeaderView.hpp │ │ ├── flatIconButton.hpp │ │ ├── headerViewSortSectionFilter.hpp │ │ ├── tableView.hpp │ │ ├── textEntry.hpp │ │ └── tickableMenu.hpp └── hive │ ├── modelsLibrary │ ├── commandsExecutor.hpp │ ├── controllerManager.hpp │ ├── discoveredEntitiesModel.hpp │ ├── helper.hpp │ ├── modelsLibrary.hpp │ └── networkInterfacesModel.hpp │ └── widgetModelsLibrary │ ├── compatibilityLogoCache.hpp │ ├── discoveredEntitiesTableItemDelegate.hpp │ ├── discoveredEntitiesTableModel.hpp │ ├── entityLogoCache.hpp │ ├── errorIconItemDelegate.hpp │ ├── errorItemDelegate.hpp │ ├── imageItemDelegate.hpp │ ├── networkInterfacesListItemDelegate.hpp │ ├── networkInterfacesListModel.hpp │ ├── painterHelper.hpp │ ├── qtUserRoles.hpp │ └── widgetModelsLibrary.hpp ├── installer ├── CMakeLists.txt ├── nsis │ ├── header.bmp │ └── welcome.bmp ├── productbuild │ └── resources │ │ └── background.png └── win32 │ ├── WinPcap_4_1_3.exe │ ├── run_vcredist.bat │ └── run_winpcap.bat ├── libs ├── CMakeLists.txt ├── QtMate │ ├── CMakeLists.txt │ ├── flow │ │ ├── flowConnection.cpp │ │ ├── flowInput.cpp │ │ ├── flowLink.cpp │ │ ├── flowNode.cpp │ │ ├── flowOutput.cpp │ │ ├── flowScene.cpp │ │ ├── flowSceneDelegate.cpp │ │ ├── flowSocket.cpp │ │ ├── flowStyle.cpp │ │ └── flowView.cpp │ ├── image │ │ ├── logoGenerator.cpp │ │ └── svgUtils.cpp │ ├── material │ │ ├── color.cpp │ │ ├── colorPalette.cpp │ │ └── helper.cpp │ ├── pch.cpp │ ├── pch.hpp │ └── widgets │ │ ├── autoSizeLabel.cpp │ │ ├── comboBox.cpp │ │ ├── dynamicHeaderView.cpp │ │ ├── flatIconButton.cpp │ │ ├── tableView.cpp │ │ ├── textEntry.cpp │ │ └── tickableMenu.cpp ├── modelsLibrary │ ├── CMakeLists.txt │ ├── commandsExecutorImpl.cpp │ ├── commandsExecutorImpl.hpp │ ├── config.hpp.in │ ├── controllerManager.cpp │ ├── discoveredEntitiesModel.cpp │ ├── helper.cpp │ ├── helper_macOS.mm │ ├── helper_unix.cpp │ ├── helper_win32.cpp │ ├── modelsLibrary.cpp │ ├── networkInterfacesModel.cpp │ ├── pch.cpp │ ├── pch.hpp │ ├── virtualController.cpp │ └── virtualController.hpp └── widgetModelsLibrary │ ├── CMakeLists.txt │ ├── compatibilityLogoCache.cpp │ ├── config.hpp.in │ ├── discoveredEntitiesTableItemDelegate.cpp │ ├── discoveredEntitiesTableModel.cpp │ ├── entityLogoCache.cpp │ ├── errorIconItemDelegate.cpp │ ├── errorItemDelegate.cpp │ ├── imageItemDelegate.cpp │ ├── networkInterfacesListItemDelegate.cpp │ ├── networkInterfacesListModel.cpp │ ├── painterHelper.cpp │ ├── pch.cpp │ ├── pch.hpp │ └── widgetModelsLibrary.cpp ├── local_definitions.cmake ├── resources ├── AEMDumper.qrc ├── FuturaLT-ExtraBold.ttf ├── FuturaLT.ttf ├── Hive.ttf ├── L-Acoustics.png ├── Logo.png ├── MaterialIcons-Regular.ttf ├── Milan_Certified.png ├── Milan_Certified_inv.png ├── Milan_Compatible.png ├── Milan_Compatible_Warning.png ├── Milan_Compatible_Warning_inv.png ├── Milan_Compatible_inv.png ├── Milan_Redundant_Certified.png ├── Milan_Redundant_Certified_inv.png ├── Milan_Redundant_Compatible.png ├── Milan_Redundant_Compatible_Warning.png ├── Milan_Redundant_Compatible_Warning_inv.png ├── Milan_Redundant_Compatible_inv.png ├── Raw │ ├── Cocarde.svg │ ├── Error.svg │ ├── Hive.sfd │ ├── Icon.svg │ ├── Icon_ANS.png │ ├── Icon_AVE.png │ ├── Information.svg │ ├── Splashscreen.svg │ ├── Warning.svg │ ├── ieee.svg │ ├── lock_not_supported.svg │ ├── locked.svg │ ├── locked_by_other.svg │ ├── milan.svg │ ├── milan_redundant.svg │ ├── misbehaving.svg │ ├── not_compliant.svg │ ├── save.svg │ ├── trash.svg │ └── unlocked.svg ├── dbaudiotechnik.png ├── ieee.png ├── ieee_Warning.png ├── legal_notices.md ├── lock_not_supported.png ├── locked.png ├── locked_by_other.png ├── locked_by_other_inv.png ├── locked_inv.png ├── macOS │ ├── AEMDumper.plist.in │ ├── Icon.icns │ ├── Icon_ANS.icns │ ├── Icon_AVE.icns │ ├── Info.plist.in │ └── README.md ├── main.qrc ├── misbehaving.png ├── not_compliant.png ├── oui.json ├── style.qss ├── unknown_dark.png ├── unknown_light.png ├── unlocked.png └── win32 │ ├── AEMDumper.rc.in │ ├── Icon.ico │ ├── Icon_ANS.ico │ ├── Icon_AVE.ico │ ├── Info.rc.in │ ├── ModelsLibrary.rc.in │ ├── README.md │ └── WidgetModelsLibrary.rc.in ├── setup_fresh_env.sh ├── src ├── CMakeLists.txt ├── aboutDialog.cpp ├── aboutDialog.hpp ├── aboutDialog.ui ├── activeNetworkInterfacesModel.cpp ├── activeNetworkInterfacesModel.hpp ├── aecpCommandComboBox.hpp ├── aecpCommandSlider.hpp ├── aecpCommandSpinBox.hpp ├── aecpCommandTextEntry.hpp ├── application.cpp ├── application.hpp ├── avdecc │ ├── channelConnectionManager.cpp │ ├── channelConnectionManager.hpp │ ├── commandChain.cpp │ ├── commandChain.hpp │ ├── euiValidator.hpp │ ├── helper.cpp │ ├── helper.hpp │ ├── hiveLogItems.hpp │ ├── loggerModel.cpp │ ├── loggerModel.hpp │ ├── mappingsHelper.cpp │ ├── mappingsHelper.hpp │ ├── mcDomainManager.cpp │ ├── mcDomainManager.hpp │ ├── numberValidator.hpp │ └── stringValidator.hpp ├── connectionEditor │ ├── connectionEditor.cpp │ ├── connectionEditor.hpp │ ├── connectionWorkspace.cpp │ ├── connectionWorkspace.hpp │ ├── nodeListModel.cpp │ ├── nodeListModel.hpp │ ├── nodeListView.cpp │ ├── nodeListView.hpp │ ├── nodeOrganizer.cpp │ └── nodeOrganizer.hpp ├── connectionMatrix │ ├── cornerWidget.cpp │ ├── cornerWidget.hpp │ ├── headerView.cpp │ ├── headerView.hpp │ ├── itemDelegate.cpp │ ├── itemDelegate.hpp │ ├── legendDialog.cpp │ ├── legendDialog.hpp │ ├── model.cpp │ ├── model.hpp │ ├── node.cpp │ ├── node.hpp │ ├── paintHelper.cpp │ ├── paintHelper.hpp │ ├── view.cpp │ └── view.hpp ├── controlledEntityTreeWidget.cpp ├── controlledEntityTreeWidget.hpp ├── controlledEntityTreeWidgetItemDelegate.cpp ├── controlledEntityTreeWidgetItemDelegate.hpp ├── counters │ ├── avbInterfaceCountersTreeWidgetItem.cpp │ ├── avbInterfaceCountersTreeWidgetItem.hpp │ ├── clockDomainCountersTreeWidgetItem.cpp │ ├── clockDomainCountersTreeWidgetItem.hpp │ ├── entityCountersTreeWidgetItem.cpp │ ├── entityCountersTreeWidgetItem.hpp │ ├── streamInputCountersTreeWidgetItem.cpp │ ├── streamInputCountersTreeWidgetItem.hpp │ ├── streamOutputCountersTreeWidgetItem.cpp │ └── streamOutputCountersTreeWidgetItem.hpp ├── defaults.hpp ├── deviceDetailsChannelTableModel.cpp ├── deviceDetailsChannelTableModel.hpp ├── deviceDetailsDialog.cpp ├── deviceDetailsDialog.hpp ├── deviceDetailsDialog.ui ├── deviceDetailsLatencyTableModel.cpp ├── deviceDetailsLatencyTableModel.hpp ├── deviceDetailsStreamFormatTableModel.cpp ├── deviceDetailsStreamFormatTableModel.hpp ├── diagnostics │ ├── compatibilityChangeEventsDialog.cpp │ ├── compatibilityChangeEventsDialog.hpp │ ├── controlDiagnosticsTreeWidgetItem.cpp │ ├── controlDiagnosticsTreeWidgetItem.hpp │ ├── entityDiagnosticsTreeWidgetItem.cpp │ ├── entityDiagnosticsTreeWidgetItem.hpp │ ├── streamInputDiagnosticsTreeWidgetItem.cpp │ └── streamInputDiagnosticsTreeWidgetItem.hpp ├── discoveredEntities │ ├── view.cpp │ └── view.hpp ├── discoveredEntitiesView.cpp ├── discoveredEntitiesView.hpp ├── entityInspector.cpp ├── entityInspector.hpp ├── entityInspectorRoles.hpp ├── firmwareUploadDialog.cpp ├── firmwareUploadDialog.hpp ├── firmwareUploadDialog.ui ├── internals │ └── config.hpp.in ├── latencyComboBox.hpp ├── latencyItemDelegate.cpp ├── latencyItemDelegate.hpp ├── listViewMatrixViewController.cpp ├── listViewMatrixViewController.hpp ├── loggerView.cpp ├── loggerView.hpp ├── loggerView.ui ├── main.cpp ├── mainWindow.cpp ├── mainWindow.hpp ├── mainWindow.ui ├── mappingMatrix.cpp ├── mappingMatrix.hpp ├── mediaClock │ ├── abstractTreeItem.cpp │ ├── abstractTreeItem.hpp │ ├── domainTreeDomainNameDelegate.cpp │ ├── domainTreeDomainNameDelegate.hpp │ ├── domainTreeDomainNameDelegate.ui │ ├── domainTreeEntityNameDelegate.cpp │ ├── domainTreeEntityNameDelegate.hpp │ ├── domainTreeEntityNameDelegate.ui │ ├── domainTreeItem.cpp │ ├── domainTreeItem.hpp │ ├── domainTreeModel.cpp │ ├── domainTreeModel.hpp │ ├── entityTreeItem.cpp │ ├── entityTreeItem.hpp │ ├── mediaClockManagementDialog.cpp │ ├── mediaClockManagementDialog.hpp │ ├── mediaClockManagementDialog.ui │ ├── unassignedListModel.cpp │ └── unassignedListModel.hpp ├── multiFirmwareUpdateDialog.cpp ├── multiFirmwareUpdateDialog.hpp ├── multiFirmwareUpdateDialog.ui ├── networkInterfaceTypeModel.cpp ├── networkInterfaceTypeModel.hpp ├── newsFeed │ ├── newsFeed.cpp │ └── newsFeed.hpp ├── nodeDispatcher.cpp ├── nodeDispatcher.hpp ├── nodeTreeDynamicWidgets │ ├── asPathWidget.cpp │ ├── asPathWidget.hpp │ ├── audioUnitDynamicTreeWidgetItem.cpp │ ├── audioUnitDynamicTreeWidgetItem.hpp │ ├── avbInterfaceDynamicTreeWidgetItem.cpp │ ├── avbInterfaceDynamicTreeWidgetItem.hpp │ ├── controlValuesDynamicTreeWidgetItem.cpp │ ├── controlValuesDynamicTreeWidgetItem.hpp │ ├── discoveredInterfacesTreeWidgetItem.cpp │ ├── discoveredInterfacesTreeWidgetItem.hpp │ ├── listenerStreamConnectionWidget.cpp │ ├── listenerStreamConnectionWidget.hpp │ ├── memoryObjectDynamicTreeWidgetItem.cpp │ ├── memoryObjectDynamicTreeWidgetItem.hpp │ ├── milanDynamicStateTreeWidgetItem.cpp │ ├── milanDynamicStateTreeWidgetItem.hpp │ ├── streamDynamicTreeWidgetItem.cpp │ ├── streamDynamicTreeWidgetItem.hpp │ ├── streamPortDynamicTreeWidgetItem.cpp │ ├── streamPortDynamicTreeWidgetItem.hpp │ ├── talkerStreamConnectionWidget.cpp │ └── talkerStreamConnectionWidget.hpp ├── nodeTreeWidget.cpp ├── nodeTreeWidget.hpp ├── pch.hpp ├── processHelper │ ├── processHelper.hpp │ ├── processHelper_macos.mm │ ├── processHelper_unix.cpp │ └── processHelper_win32.cpp ├── profiles │ ├── profileSelectionDialog.cpp │ ├── profileSelectionDialog.hpp │ ├── profileWidget.cpp │ ├── profileWidget.hpp │ └── profiles.hpp ├── settingsDialog.cpp ├── settingsDialog.hpp ├── settingsDialog.ui ├── settingsManager │ ├── settings.hpp │ ├── settingsManager.cpp │ ├── settingsManager.hpp │ └── settingsSignaler.hpp ├── statistics │ ├── entityStatisticsTreeWidgetItem.cpp │ └── entityStatisticsTreeWidgetItem.hpp ├── streamFormatComboBox.hpp ├── updater │ ├── updater.cpp │ └── updater.hpp ├── visibilitySettings.hpp ├── windowsNpfHelper.cpp └── windowsNpfHelper.hpp ├── tests ├── CMakeLists.txt ├── TEST-PLAN.md ├── data │ └── connectionMatrix │ │ ├── 1-Normal_Normal-ConnectedNoError_WrongFormat.json │ │ ├── 10-Redundant_Redundant-ConnectedWrongDomain_LinkDown.json │ │ ├── 11-Redundant_Redundant-WrongDomain_ConnectedLinkDown.json │ │ ├── 12-Redundant_Redundant-ConnectedWrongDomain_ConnectedLinkDown.json │ │ ├── 13-Redundant_Redundant-ConnectedWrongFormat_LinkDown.json │ │ ├── 14-Redundant_Redundant-WrongFormat_ConnectedLinkDown.json │ │ ├── 15-Redundant_Redundant-ConnectedWrongFormat_ConnectedLinkDown.json │ │ ├── 16-Redundant_Redundant-ConnectedNoError_LinkDown.json │ │ ├── 17-Redundant_Redundant-NoError_ConnectedLinkDown.json │ │ ├── 18-Redundant_Redundant-ConnectedNoError_ConnectedLinkDown.json │ │ ├── 19-Redundant_Redundant-ConnectedNoError_ConnectedWrongDomain.json │ │ ├── 2-Normal_Normal-NoError_ConnectedWrongFormat.json │ │ ├── 20-Redundant_Redundant-ConnectedWrongFormat_ConnectedWrongDomain.json │ │ ├── 21-Redundant_Redundant-NoError_LinkDown.json │ │ ├── 22-Redundant_Normal-ConnectedNoError_LinkDown.json │ │ ├── 23-Redundant_Normal-ConnectedNoError_ConnectedLinkDown.json │ │ ├── 24-Redundant_Normal-NoError_ConnectedLinkDown.json │ │ ├── 25-Redundant_Normal-NoError_LinkDown.json │ │ ├── 26-Normal_Redundant-ConnectedNoError_ConnectedLinkDown.json │ │ ├── 27-Normal_Redundant-ConnectedNoError_LinkDown.json │ │ ├── 28-Normal_Redundant-NoError_ConnectedLinkDown.json │ │ ├── 29-Normal_Redundant-NoError_LinkDown.json │ │ ├── 3-Normal_Normal-ConnectedNoError_ConnectedWrongFormat.json │ │ ├── 30-Redundant_Normal-NoError_WrongDomain.json │ │ ├── 31-Redundant_Normal-ConnectedNoError_WrongDomain.json │ │ ├── 32-Normal_Redundant-NoError_WrongDomain.json │ │ ├── 33-Normal_Redundant-ConnectedNoError_WrongDomain.json │ │ ├── 34-Redundant_Normal-WrongDomain_WrongDomain.json │ │ ├── 35-Normal_Redundant-WrongDomain_WrongDomain.json │ │ ├── 36-Redundant_Normal-ConnectedWrongDomain_WrongDomain.json │ │ ├── 37-Redundant_Normal-ConnectedWrongDomain_LinkDown.json │ │ ├── 38-Redundant_Normal-WrongDomain_LinkDown.json │ │ ├── 39-Redundant_Normal-WrongDomain_ConnectedLinkDown.json │ │ ├── 4-Normal_Normal-ConnectedWrongDomain_WrongFormatWrongDomain.json │ │ ├── 5-Normal_Normal-WrongDomain_ConnectedWrongFormatWrongDomain.json │ │ ├── 6-Normal_Normal-ConnectedWrongDomain_ConnectedWrongFormatWrongDomain.json │ │ ├── 7-Normal_Normal-ConnectedNoError_NoError.json │ │ ├── 8-Normal_Normal-NoError_ConnectedNoError.json │ │ └── 9-Normal_Normal-ConnectedNoError_ConnectedNoError.json └── src │ ├── CMakeLists.txt │ ├── connectionMatrix_tests.cpp │ └── main.cpp └── tools ├── AEMDumper ├── CMakeLists.txt ├── config.hpp.in ├── main.cpp ├── mainWindow.cpp ├── mainWindow.hpp └── mainWindow.ui ├── CMakeLists.txt ├── generate_oui.py ├── json2msgPack.cpp ├── msgPack2json.cpp └── webserver ├── Parsedown.php ├── README.md ├── appcast-beta.xml ├── appcast-release.xml ├── changelog.php ├── news.json └── news.php /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/.clang-format -------------------------------------------------------------------------------- /.defaults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/.defaults.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/.gitmodules -------------------------------------------------------------------------------- /.hive_config.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/.hive_config.sample -------------------------------------------------------------------------------- /3rdparty/bugtrap/BTTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/3rdparty/bugtrap/BTTrace.h -------------------------------------------------------------------------------- /3rdparty/bugtrap/BugTrap-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/3rdparty/bugtrap/BugTrap-x64.dll -------------------------------------------------------------------------------- /3rdparty/bugtrap/BugTrap-x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/3rdparty/bugtrap/BugTrap-x64.lib -------------------------------------------------------------------------------- /3rdparty/bugtrap/BugTrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/3rdparty/bugtrap/BugTrap.dll -------------------------------------------------------------------------------- /3rdparty/bugtrap/BugTrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/3rdparty/bugtrap/BugTrap.h -------------------------------------------------------------------------------- /3rdparty/bugtrap/BugTrap.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/3rdparty/bugtrap/BugTrap.lib -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets-Project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/CMakePresets-Project.json -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING.LESSER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/COPYING.LESSER.txt -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/COPYING.txt -------------------------------------------------------------------------------- /Docker/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/Docker/.env -------------------------------------------------------------------------------- /Docker/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/Docker/compose.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/TODO.md -------------------------------------------------------------------------------- /cmake/BugTrapConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/cmake/BugTrapConfig.cmake -------------------------------------------------------------------------------- /extend_config_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/extend_config_file.sh -------------------------------------------------------------------------------- /fix_files.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | . 3rdparty/avdecc/scripts/bashUtils/fix_files.sh "$@" 4 | -------------------------------------------------------------------------------- /gen_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/gen_cmake.sh -------------------------------------------------------------------------------- /gen_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/gen_install.sh -------------------------------------------------------------------------------- /include/QtMate/flow/flowConnection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/flow/flowConnection.hpp -------------------------------------------------------------------------------- /include/QtMate/flow/flowDefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/flow/flowDefs.hpp -------------------------------------------------------------------------------- /include/QtMate/flow/flowInput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/flow/flowInput.hpp -------------------------------------------------------------------------------- /include/QtMate/flow/flowLink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/flow/flowLink.hpp -------------------------------------------------------------------------------- /include/QtMate/flow/flowNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/flow/flowNode.hpp -------------------------------------------------------------------------------- /include/QtMate/flow/flowOutput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/flow/flowOutput.hpp -------------------------------------------------------------------------------- /include/QtMate/flow/flowScene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/flow/flowScene.hpp -------------------------------------------------------------------------------- /include/QtMate/flow/flowSceneDelegate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/flow/flowSceneDelegate.hpp -------------------------------------------------------------------------------- /include/QtMate/flow/flowSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/flow/flowSocket.hpp -------------------------------------------------------------------------------- /include/QtMate/flow/flowStyle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/flow/flowStyle.hpp -------------------------------------------------------------------------------- /include/QtMate/flow/flowView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/flow/flowView.hpp -------------------------------------------------------------------------------- /include/QtMate/image/logoGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/image/logoGenerator.hpp -------------------------------------------------------------------------------- /include/QtMate/image/svgUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/image/svgUtils.hpp -------------------------------------------------------------------------------- /include/QtMate/material/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/material/color.hpp -------------------------------------------------------------------------------- /include/QtMate/material/colorPalette.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/material/colorPalette.hpp -------------------------------------------------------------------------------- /include/QtMate/material/helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/material/helper.hpp -------------------------------------------------------------------------------- /include/QtMate/widgets/autoSizeLabel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/widgets/autoSizeLabel.hpp -------------------------------------------------------------------------------- /include/QtMate/widgets/comboBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/widgets/comboBox.hpp -------------------------------------------------------------------------------- /include/QtMate/widgets/dynamicHeaderView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/widgets/dynamicHeaderView.hpp -------------------------------------------------------------------------------- /include/QtMate/widgets/flatIconButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/widgets/flatIconButton.hpp -------------------------------------------------------------------------------- /include/QtMate/widgets/headerViewSortSectionFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/widgets/headerViewSortSectionFilter.hpp -------------------------------------------------------------------------------- /include/QtMate/widgets/tableView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/widgets/tableView.hpp -------------------------------------------------------------------------------- /include/QtMate/widgets/textEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/widgets/textEntry.hpp -------------------------------------------------------------------------------- /include/QtMate/widgets/tickableMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/QtMate/widgets/tickableMenu.hpp -------------------------------------------------------------------------------- /include/hive/modelsLibrary/commandsExecutor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/hive/modelsLibrary/commandsExecutor.hpp -------------------------------------------------------------------------------- /include/hive/modelsLibrary/controllerManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/hive/modelsLibrary/controllerManager.hpp -------------------------------------------------------------------------------- /include/hive/modelsLibrary/discoveredEntitiesModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/hive/modelsLibrary/discoveredEntitiesModel.hpp -------------------------------------------------------------------------------- /include/hive/modelsLibrary/helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/hive/modelsLibrary/helper.hpp -------------------------------------------------------------------------------- /include/hive/modelsLibrary/modelsLibrary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/hive/modelsLibrary/modelsLibrary.hpp -------------------------------------------------------------------------------- /include/hive/modelsLibrary/networkInterfacesModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/hive/modelsLibrary/networkInterfacesModel.hpp -------------------------------------------------------------------------------- /include/hive/widgetModelsLibrary/compatibilityLogoCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/hive/widgetModelsLibrary/compatibilityLogoCache.hpp -------------------------------------------------------------------------------- /include/hive/widgetModelsLibrary/discoveredEntitiesTableItemDelegate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/hive/widgetModelsLibrary/discoveredEntitiesTableItemDelegate.hpp -------------------------------------------------------------------------------- /include/hive/widgetModelsLibrary/discoveredEntitiesTableModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/hive/widgetModelsLibrary/discoveredEntitiesTableModel.hpp -------------------------------------------------------------------------------- /include/hive/widgetModelsLibrary/entityLogoCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/hive/widgetModelsLibrary/entityLogoCache.hpp -------------------------------------------------------------------------------- /include/hive/widgetModelsLibrary/errorIconItemDelegate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/hive/widgetModelsLibrary/errorIconItemDelegate.hpp -------------------------------------------------------------------------------- /include/hive/widgetModelsLibrary/errorItemDelegate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/hive/widgetModelsLibrary/errorItemDelegate.hpp -------------------------------------------------------------------------------- /include/hive/widgetModelsLibrary/imageItemDelegate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/hive/widgetModelsLibrary/imageItemDelegate.hpp -------------------------------------------------------------------------------- /include/hive/widgetModelsLibrary/networkInterfacesListItemDelegate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/hive/widgetModelsLibrary/networkInterfacesListItemDelegate.hpp -------------------------------------------------------------------------------- /include/hive/widgetModelsLibrary/networkInterfacesListModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/hive/widgetModelsLibrary/networkInterfacesListModel.hpp -------------------------------------------------------------------------------- /include/hive/widgetModelsLibrary/painterHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/hive/widgetModelsLibrary/painterHelper.hpp -------------------------------------------------------------------------------- /include/hive/widgetModelsLibrary/qtUserRoles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/hive/widgetModelsLibrary/qtUserRoles.hpp -------------------------------------------------------------------------------- /include/hive/widgetModelsLibrary/widgetModelsLibrary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/include/hive/widgetModelsLibrary/widgetModelsLibrary.hpp -------------------------------------------------------------------------------- /installer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/installer/CMakeLists.txt -------------------------------------------------------------------------------- /installer/nsis/header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/installer/nsis/header.bmp -------------------------------------------------------------------------------- /installer/nsis/welcome.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/installer/nsis/welcome.bmp -------------------------------------------------------------------------------- /installer/productbuild/resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/installer/productbuild/resources/background.png -------------------------------------------------------------------------------- /installer/win32/WinPcap_4_1_3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/installer/win32/WinPcap_4_1_3.exe -------------------------------------------------------------------------------- /installer/win32/run_vcredist.bat: -------------------------------------------------------------------------------- 1 | echo off 2 | %1 /repair /norestart /quiet & exit 0 3 | -------------------------------------------------------------------------------- /installer/win32/run_winpcap.bat: -------------------------------------------------------------------------------- 1 | echo off 2 | %1 & exit 0 3 | -------------------------------------------------------------------------------- /libs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/CMakeLists.txt -------------------------------------------------------------------------------- /libs/QtMate/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/CMakeLists.txt -------------------------------------------------------------------------------- /libs/QtMate/flow/flowConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/flow/flowConnection.cpp -------------------------------------------------------------------------------- /libs/QtMate/flow/flowInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/flow/flowInput.cpp -------------------------------------------------------------------------------- /libs/QtMate/flow/flowLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/flow/flowLink.cpp -------------------------------------------------------------------------------- /libs/QtMate/flow/flowNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/flow/flowNode.cpp -------------------------------------------------------------------------------- /libs/QtMate/flow/flowOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/flow/flowOutput.cpp -------------------------------------------------------------------------------- /libs/QtMate/flow/flowScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/flow/flowScene.cpp -------------------------------------------------------------------------------- /libs/QtMate/flow/flowSceneDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/flow/flowSceneDelegate.cpp -------------------------------------------------------------------------------- /libs/QtMate/flow/flowSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/flow/flowSocket.cpp -------------------------------------------------------------------------------- /libs/QtMate/flow/flowStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/flow/flowStyle.cpp -------------------------------------------------------------------------------- /libs/QtMate/flow/flowView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/flow/flowView.cpp -------------------------------------------------------------------------------- /libs/QtMate/image/logoGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/image/logoGenerator.cpp -------------------------------------------------------------------------------- /libs/QtMate/image/svgUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/image/svgUtils.cpp -------------------------------------------------------------------------------- /libs/QtMate/material/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/material/color.cpp -------------------------------------------------------------------------------- /libs/QtMate/material/colorPalette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/material/colorPalette.cpp -------------------------------------------------------------------------------- /libs/QtMate/material/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/material/helper.cpp -------------------------------------------------------------------------------- /libs/QtMate/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/pch.cpp -------------------------------------------------------------------------------- /libs/QtMate/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/pch.hpp -------------------------------------------------------------------------------- /libs/QtMate/widgets/autoSizeLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/widgets/autoSizeLabel.cpp -------------------------------------------------------------------------------- /libs/QtMate/widgets/comboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/widgets/comboBox.cpp -------------------------------------------------------------------------------- /libs/QtMate/widgets/dynamicHeaderView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/widgets/dynamicHeaderView.cpp -------------------------------------------------------------------------------- /libs/QtMate/widgets/flatIconButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/widgets/flatIconButton.cpp -------------------------------------------------------------------------------- /libs/QtMate/widgets/tableView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/widgets/tableView.cpp -------------------------------------------------------------------------------- /libs/QtMate/widgets/textEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/widgets/textEntry.cpp -------------------------------------------------------------------------------- /libs/QtMate/widgets/tickableMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/QtMate/widgets/tickableMenu.cpp -------------------------------------------------------------------------------- /libs/modelsLibrary/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/modelsLibrary/CMakeLists.txt -------------------------------------------------------------------------------- /libs/modelsLibrary/commandsExecutorImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/modelsLibrary/commandsExecutorImpl.cpp -------------------------------------------------------------------------------- /libs/modelsLibrary/commandsExecutorImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/modelsLibrary/commandsExecutorImpl.hpp -------------------------------------------------------------------------------- /libs/modelsLibrary/config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/modelsLibrary/config.hpp.in -------------------------------------------------------------------------------- /libs/modelsLibrary/controllerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/modelsLibrary/controllerManager.cpp -------------------------------------------------------------------------------- /libs/modelsLibrary/discoveredEntitiesModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/modelsLibrary/discoveredEntitiesModel.cpp -------------------------------------------------------------------------------- /libs/modelsLibrary/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/modelsLibrary/helper.cpp -------------------------------------------------------------------------------- /libs/modelsLibrary/helper_macOS.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/modelsLibrary/helper_macOS.mm -------------------------------------------------------------------------------- /libs/modelsLibrary/helper_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/modelsLibrary/helper_unix.cpp -------------------------------------------------------------------------------- /libs/modelsLibrary/helper_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/modelsLibrary/helper_win32.cpp -------------------------------------------------------------------------------- /libs/modelsLibrary/modelsLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/modelsLibrary/modelsLibrary.cpp -------------------------------------------------------------------------------- /libs/modelsLibrary/networkInterfacesModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/modelsLibrary/networkInterfacesModel.cpp -------------------------------------------------------------------------------- /libs/modelsLibrary/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/modelsLibrary/pch.cpp -------------------------------------------------------------------------------- /libs/modelsLibrary/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/modelsLibrary/pch.hpp -------------------------------------------------------------------------------- /libs/modelsLibrary/virtualController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/modelsLibrary/virtualController.cpp -------------------------------------------------------------------------------- /libs/modelsLibrary/virtualController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/modelsLibrary/virtualController.hpp -------------------------------------------------------------------------------- /libs/widgetModelsLibrary/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/widgetModelsLibrary/CMakeLists.txt -------------------------------------------------------------------------------- /libs/widgetModelsLibrary/compatibilityLogoCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/widgetModelsLibrary/compatibilityLogoCache.cpp -------------------------------------------------------------------------------- /libs/widgetModelsLibrary/config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/widgetModelsLibrary/config.hpp.in -------------------------------------------------------------------------------- /libs/widgetModelsLibrary/discoveredEntitiesTableItemDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/widgetModelsLibrary/discoveredEntitiesTableItemDelegate.cpp -------------------------------------------------------------------------------- /libs/widgetModelsLibrary/discoveredEntitiesTableModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/widgetModelsLibrary/discoveredEntitiesTableModel.cpp -------------------------------------------------------------------------------- /libs/widgetModelsLibrary/entityLogoCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/widgetModelsLibrary/entityLogoCache.cpp -------------------------------------------------------------------------------- /libs/widgetModelsLibrary/errorIconItemDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/widgetModelsLibrary/errorIconItemDelegate.cpp -------------------------------------------------------------------------------- /libs/widgetModelsLibrary/errorItemDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/widgetModelsLibrary/errorItemDelegate.cpp -------------------------------------------------------------------------------- /libs/widgetModelsLibrary/imageItemDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/widgetModelsLibrary/imageItemDelegate.cpp -------------------------------------------------------------------------------- /libs/widgetModelsLibrary/networkInterfacesListItemDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/widgetModelsLibrary/networkInterfacesListItemDelegate.cpp -------------------------------------------------------------------------------- /libs/widgetModelsLibrary/networkInterfacesListModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/widgetModelsLibrary/networkInterfacesListModel.cpp -------------------------------------------------------------------------------- /libs/widgetModelsLibrary/painterHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/widgetModelsLibrary/painterHelper.cpp -------------------------------------------------------------------------------- /libs/widgetModelsLibrary/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/widgetModelsLibrary/pch.cpp -------------------------------------------------------------------------------- /libs/widgetModelsLibrary/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/widgetModelsLibrary/pch.hpp -------------------------------------------------------------------------------- /libs/widgetModelsLibrary/widgetModelsLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/libs/widgetModelsLibrary/widgetModelsLibrary.cpp -------------------------------------------------------------------------------- /local_definitions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/local_definitions.cmake -------------------------------------------------------------------------------- /resources/AEMDumper.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/AEMDumper.qrc -------------------------------------------------------------------------------- /resources/FuturaLT-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/FuturaLT-ExtraBold.ttf -------------------------------------------------------------------------------- /resources/FuturaLT.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/FuturaLT.ttf -------------------------------------------------------------------------------- /resources/Hive.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Hive.ttf -------------------------------------------------------------------------------- /resources/L-Acoustics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/L-Acoustics.png -------------------------------------------------------------------------------- /resources/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Logo.png -------------------------------------------------------------------------------- /resources/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /resources/Milan_Certified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Milan_Certified.png -------------------------------------------------------------------------------- /resources/Milan_Certified_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Milan_Certified_inv.png -------------------------------------------------------------------------------- /resources/Milan_Compatible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Milan_Compatible.png -------------------------------------------------------------------------------- /resources/Milan_Compatible_Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Milan_Compatible_Warning.png -------------------------------------------------------------------------------- /resources/Milan_Compatible_Warning_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Milan_Compatible_Warning_inv.png -------------------------------------------------------------------------------- /resources/Milan_Compatible_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Milan_Compatible_inv.png -------------------------------------------------------------------------------- /resources/Milan_Redundant_Certified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Milan_Redundant_Certified.png -------------------------------------------------------------------------------- /resources/Milan_Redundant_Certified_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Milan_Redundant_Certified_inv.png -------------------------------------------------------------------------------- /resources/Milan_Redundant_Compatible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Milan_Redundant_Compatible.png -------------------------------------------------------------------------------- /resources/Milan_Redundant_Compatible_Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Milan_Redundant_Compatible_Warning.png -------------------------------------------------------------------------------- /resources/Milan_Redundant_Compatible_Warning_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Milan_Redundant_Compatible_Warning_inv.png -------------------------------------------------------------------------------- /resources/Milan_Redundant_Compatible_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Milan_Redundant_Compatible_inv.png -------------------------------------------------------------------------------- /resources/Raw/Cocarde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/Cocarde.svg -------------------------------------------------------------------------------- /resources/Raw/Error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/Error.svg -------------------------------------------------------------------------------- /resources/Raw/Hive.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/Hive.sfd -------------------------------------------------------------------------------- /resources/Raw/Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/Icon.svg -------------------------------------------------------------------------------- /resources/Raw/Icon_ANS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/Icon_ANS.png -------------------------------------------------------------------------------- /resources/Raw/Icon_AVE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/Icon_AVE.png -------------------------------------------------------------------------------- /resources/Raw/Information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/Information.svg -------------------------------------------------------------------------------- /resources/Raw/Splashscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/Splashscreen.svg -------------------------------------------------------------------------------- /resources/Raw/Warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/Warning.svg -------------------------------------------------------------------------------- /resources/Raw/ieee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/ieee.svg -------------------------------------------------------------------------------- /resources/Raw/lock_not_supported.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/lock_not_supported.svg -------------------------------------------------------------------------------- /resources/Raw/locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/locked.svg -------------------------------------------------------------------------------- /resources/Raw/locked_by_other.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/locked_by_other.svg -------------------------------------------------------------------------------- /resources/Raw/milan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/milan.svg -------------------------------------------------------------------------------- /resources/Raw/milan_redundant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/milan_redundant.svg -------------------------------------------------------------------------------- /resources/Raw/misbehaving.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/misbehaving.svg -------------------------------------------------------------------------------- /resources/Raw/not_compliant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/not_compliant.svg -------------------------------------------------------------------------------- /resources/Raw/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/save.svg -------------------------------------------------------------------------------- /resources/Raw/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/trash.svg -------------------------------------------------------------------------------- /resources/Raw/unlocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/Raw/unlocked.svg -------------------------------------------------------------------------------- /resources/dbaudiotechnik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/dbaudiotechnik.png -------------------------------------------------------------------------------- /resources/ieee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/ieee.png -------------------------------------------------------------------------------- /resources/ieee_Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/ieee_Warning.png -------------------------------------------------------------------------------- /resources/legal_notices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/legal_notices.md -------------------------------------------------------------------------------- /resources/lock_not_supported.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/lock_not_supported.png -------------------------------------------------------------------------------- /resources/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/locked.png -------------------------------------------------------------------------------- /resources/locked_by_other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/locked_by_other.png -------------------------------------------------------------------------------- /resources/locked_by_other_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/locked_by_other_inv.png -------------------------------------------------------------------------------- /resources/locked_inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/locked_inv.png -------------------------------------------------------------------------------- /resources/macOS/AEMDumper.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/macOS/AEMDumper.plist.in -------------------------------------------------------------------------------- /resources/macOS/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/macOS/Icon.icns -------------------------------------------------------------------------------- /resources/macOS/Icon_ANS.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/macOS/Icon_ANS.icns -------------------------------------------------------------------------------- /resources/macOS/Icon_AVE.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/macOS/Icon_AVE.icns -------------------------------------------------------------------------------- /resources/macOS/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/macOS/Info.plist.in -------------------------------------------------------------------------------- /resources/macOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/macOS/README.md -------------------------------------------------------------------------------- /resources/main.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/main.qrc -------------------------------------------------------------------------------- /resources/misbehaving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/misbehaving.png -------------------------------------------------------------------------------- /resources/not_compliant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/not_compliant.png -------------------------------------------------------------------------------- /resources/oui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/oui.json -------------------------------------------------------------------------------- /resources/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/style.qss -------------------------------------------------------------------------------- /resources/unknown_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/unknown_dark.png -------------------------------------------------------------------------------- /resources/unknown_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/unknown_light.png -------------------------------------------------------------------------------- /resources/unlocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/unlocked.png -------------------------------------------------------------------------------- /resources/win32/AEMDumper.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/win32/AEMDumper.rc.in -------------------------------------------------------------------------------- /resources/win32/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/win32/Icon.ico -------------------------------------------------------------------------------- /resources/win32/Icon_ANS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/win32/Icon_ANS.ico -------------------------------------------------------------------------------- /resources/win32/Icon_AVE.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/win32/Icon_AVE.ico -------------------------------------------------------------------------------- /resources/win32/Info.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/win32/Info.rc.in -------------------------------------------------------------------------------- /resources/win32/ModelsLibrary.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/win32/ModelsLibrary.rc.in -------------------------------------------------------------------------------- /resources/win32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/win32/README.md -------------------------------------------------------------------------------- /resources/win32/WidgetModelsLibrary.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/resources/win32/WidgetModelsLibrary.rc.in -------------------------------------------------------------------------------- /setup_fresh_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/setup_fresh_env.sh -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/aboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/aboutDialog.cpp -------------------------------------------------------------------------------- /src/aboutDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/aboutDialog.hpp -------------------------------------------------------------------------------- /src/aboutDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/aboutDialog.ui -------------------------------------------------------------------------------- /src/activeNetworkInterfacesModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/activeNetworkInterfacesModel.cpp -------------------------------------------------------------------------------- /src/activeNetworkInterfacesModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/activeNetworkInterfacesModel.hpp -------------------------------------------------------------------------------- /src/aecpCommandComboBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/aecpCommandComboBox.hpp -------------------------------------------------------------------------------- /src/aecpCommandSlider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/aecpCommandSlider.hpp -------------------------------------------------------------------------------- /src/aecpCommandSpinBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/aecpCommandSpinBox.hpp -------------------------------------------------------------------------------- /src/aecpCommandTextEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/aecpCommandTextEntry.hpp -------------------------------------------------------------------------------- /src/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/application.cpp -------------------------------------------------------------------------------- /src/application.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/application.hpp -------------------------------------------------------------------------------- /src/avdecc/channelConnectionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/avdecc/channelConnectionManager.cpp -------------------------------------------------------------------------------- /src/avdecc/channelConnectionManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/avdecc/channelConnectionManager.hpp -------------------------------------------------------------------------------- /src/avdecc/commandChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/avdecc/commandChain.cpp -------------------------------------------------------------------------------- /src/avdecc/commandChain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/avdecc/commandChain.hpp -------------------------------------------------------------------------------- /src/avdecc/euiValidator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/avdecc/euiValidator.hpp -------------------------------------------------------------------------------- /src/avdecc/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/avdecc/helper.cpp -------------------------------------------------------------------------------- /src/avdecc/helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/avdecc/helper.hpp -------------------------------------------------------------------------------- /src/avdecc/hiveLogItems.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/avdecc/hiveLogItems.hpp -------------------------------------------------------------------------------- /src/avdecc/loggerModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/avdecc/loggerModel.cpp -------------------------------------------------------------------------------- /src/avdecc/loggerModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/avdecc/loggerModel.hpp -------------------------------------------------------------------------------- /src/avdecc/mappingsHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/avdecc/mappingsHelper.cpp -------------------------------------------------------------------------------- /src/avdecc/mappingsHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/avdecc/mappingsHelper.hpp -------------------------------------------------------------------------------- /src/avdecc/mcDomainManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/avdecc/mcDomainManager.cpp -------------------------------------------------------------------------------- /src/avdecc/mcDomainManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/avdecc/mcDomainManager.hpp -------------------------------------------------------------------------------- /src/avdecc/numberValidator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/avdecc/numberValidator.hpp -------------------------------------------------------------------------------- /src/avdecc/stringValidator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/avdecc/stringValidator.hpp -------------------------------------------------------------------------------- /src/connectionEditor/connectionEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionEditor/connectionEditor.cpp -------------------------------------------------------------------------------- /src/connectionEditor/connectionEditor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionEditor/connectionEditor.hpp -------------------------------------------------------------------------------- /src/connectionEditor/connectionWorkspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionEditor/connectionWorkspace.cpp -------------------------------------------------------------------------------- /src/connectionEditor/connectionWorkspace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionEditor/connectionWorkspace.hpp -------------------------------------------------------------------------------- /src/connectionEditor/nodeListModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionEditor/nodeListModel.cpp -------------------------------------------------------------------------------- /src/connectionEditor/nodeListModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionEditor/nodeListModel.hpp -------------------------------------------------------------------------------- /src/connectionEditor/nodeListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionEditor/nodeListView.cpp -------------------------------------------------------------------------------- /src/connectionEditor/nodeListView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionEditor/nodeListView.hpp -------------------------------------------------------------------------------- /src/connectionEditor/nodeOrganizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionEditor/nodeOrganizer.cpp -------------------------------------------------------------------------------- /src/connectionEditor/nodeOrganizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionEditor/nodeOrganizer.hpp -------------------------------------------------------------------------------- /src/connectionMatrix/cornerWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionMatrix/cornerWidget.cpp -------------------------------------------------------------------------------- /src/connectionMatrix/cornerWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionMatrix/cornerWidget.hpp -------------------------------------------------------------------------------- /src/connectionMatrix/headerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionMatrix/headerView.cpp -------------------------------------------------------------------------------- /src/connectionMatrix/headerView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionMatrix/headerView.hpp -------------------------------------------------------------------------------- /src/connectionMatrix/itemDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionMatrix/itemDelegate.cpp -------------------------------------------------------------------------------- /src/connectionMatrix/itemDelegate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionMatrix/itemDelegate.hpp -------------------------------------------------------------------------------- /src/connectionMatrix/legendDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionMatrix/legendDialog.cpp -------------------------------------------------------------------------------- /src/connectionMatrix/legendDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionMatrix/legendDialog.hpp -------------------------------------------------------------------------------- /src/connectionMatrix/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionMatrix/model.cpp -------------------------------------------------------------------------------- /src/connectionMatrix/model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionMatrix/model.hpp -------------------------------------------------------------------------------- /src/connectionMatrix/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionMatrix/node.cpp -------------------------------------------------------------------------------- /src/connectionMatrix/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionMatrix/node.hpp -------------------------------------------------------------------------------- /src/connectionMatrix/paintHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionMatrix/paintHelper.cpp -------------------------------------------------------------------------------- /src/connectionMatrix/paintHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionMatrix/paintHelper.hpp -------------------------------------------------------------------------------- /src/connectionMatrix/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionMatrix/view.cpp -------------------------------------------------------------------------------- /src/connectionMatrix/view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/connectionMatrix/view.hpp -------------------------------------------------------------------------------- /src/controlledEntityTreeWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/controlledEntityTreeWidget.cpp -------------------------------------------------------------------------------- /src/controlledEntityTreeWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/controlledEntityTreeWidget.hpp -------------------------------------------------------------------------------- /src/controlledEntityTreeWidgetItemDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/controlledEntityTreeWidgetItemDelegate.cpp -------------------------------------------------------------------------------- /src/controlledEntityTreeWidgetItemDelegate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/controlledEntityTreeWidgetItemDelegate.hpp -------------------------------------------------------------------------------- /src/counters/avbInterfaceCountersTreeWidgetItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/counters/avbInterfaceCountersTreeWidgetItem.cpp -------------------------------------------------------------------------------- /src/counters/avbInterfaceCountersTreeWidgetItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/counters/avbInterfaceCountersTreeWidgetItem.hpp -------------------------------------------------------------------------------- /src/counters/clockDomainCountersTreeWidgetItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/counters/clockDomainCountersTreeWidgetItem.cpp -------------------------------------------------------------------------------- /src/counters/clockDomainCountersTreeWidgetItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/counters/clockDomainCountersTreeWidgetItem.hpp -------------------------------------------------------------------------------- /src/counters/entityCountersTreeWidgetItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/counters/entityCountersTreeWidgetItem.cpp -------------------------------------------------------------------------------- /src/counters/entityCountersTreeWidgetItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/counters/entityCountersTreeWidgetItem.hpp -------------------------------------------------------------------------------- /src/counters/streamInputCountersTreeWidgetItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/counters/streamInputCountersTreeWidgetItem.cpp -------------------------------------------------------------------------------- /src/counters/streamInputCountersTreeWidgetItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/counters/streamInputCountersTreeWidgetItem.hpp -------------------------------------------------------------------------------- /src/counters/streamOutputCountersTreeWidgetItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/counters/streamOutputCountersTreeWidgetItem.cpp -------------------------------------------------------------------------------- /src/counters/streamOutputCountersTreeWidgetItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/counters/streamOutputCountersTreeWidgetItem.hpp -------------------------------------------------------------------------------- /src/defaults.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/defaults.hpp -------------------------------------------------------------------------------- /src/deviceDetailsChannelTableModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/deviceDetailsChannelTableModel.cpp -------------------------------------------------------------------------------- /src/deviceDetailsChannelTableModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/deviceDetailsChannelTableModel.hpp -------------------------------------------------------------------------------- /src/deviceDetailsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/deviceDetailsDialog.cpp -------------------------------------------------------------------------------- /src/deviceDetailsDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/deviceDetailsDialog.hpp -------------------------------------------------------------------------------- /src/deviceDetailsDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/deviceDetailsDialog.ui -------------------------------------------------------------------------------- /src/deviceDetailsLatencyTableModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/deviceDetailsLatencyTableModel.cpp -------------------------------------------------------------------------------- /src/deviceDetailsLatencyTableModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/deviceDetailsLatencyTableModel.hpp -------------------------------------------------------------------------------- /src/deviceDetailsStreamFormatTableModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/deviceDetailsStreamFormatTableModel.cpp -------------------------------------------------------------------------------- /src/deviceDetailsStreamFormatTableModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/deviceDetailsStreamFormatTableModel.hpp -------------------------------------------------------------------------------- /src/diagnostics/compatibilityChangeEventsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/diagnostics/compatibilityChangeEventsDialog.cpp -------------------------------------------------------------------------------- /src/diagnostics/compatibilityChangeEventsDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/diagnostics/compatibilityChangeEventsDialog.hpp -------------------------------------------------------------------------------- /src/diagnostics/controlDiagnosticsTreeWidgetItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/diagnostics/controlDiagnosticsTreeWidgetItem.cpp -------------------------------------------------------------------------------- /src/diagnostics/controlDiagnosticsTreeWidgetItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/diagnostics/controlDiagnosticsTreeWidgetItem.hpp -------------------------------------------------------------------------------- /src/diagnostics/entityDiagnosticsTreeWidgetItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/diagnostics/entityDiagnosticsTreeWidgetItem.cpp -------------------------------------------------------------------------------- /src/diagnostics/entityDiagnosticsTreeWidgetItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/diagnostics/entityDiagnosticsTreeWidgetItem.hpp -------------------------------------------------------------------------------- /src/diagnostics/streamInputDiagnosticsTreeWidgetItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/diagnostics/streamInputDiagnosticsTreeWidgetItem.cpp -------------------------------------------------------------------------------- /src/diagnostics/streamInputDiagnosticsTreeWidgetItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/diagnostics/streamInputDiagnosticsTreeWidgetItem.hpp -------------------------------------------------------------------------------- /src/discoveredEntities/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/discoveredEntities/view.cpp -------------------------------------------------------------------------------- /src/discoveredEntities/view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/discoveredEntities/view.hpp -------------------------------------------------------------------------------- /src/discoveredEntitiesView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/discoveredEntitiesView.cpp -------------------------------------------------------------------------------- /src/discoveredEntitiesView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/discoveredEntitiesView.hpp -------------------------------------------------------------------------------- /src/entityInspector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/entityInspector.cpp -------------------------------------------------------------------------------- /src/entityInspector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/entityInspector.hpp -------------------------------------------------------------------------------- /src/entityInspectorRoles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/entityInspectorRoles.hpp -------------------------------------------------------------------------------- /src/firmwareUploadDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/firmwareUploadDialog.cpp -------------------------------------------------------------------------------- /src/firmwareUploadDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/firmwareUploadDialog.hpp -------------------------------------------------------------------------------- /src/firmwareUploadDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/firmwareUploadDialog.ui -------------------------------------------------------------------------------- /src/internals/config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/internals/config.hpp.in -------------------------------------------------------------------------------- /src/latencyComboBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/latencyComboBox.hpp -------------------------------------------------------------------------------- /src/latencyItemDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/latencyItemDelegate.cpp -------------------------------------------------------------------------------- /src/latencyItemDelegate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/latencyItemDelegate.hpp -------------------------------------------------------------------------------- /src/listViewMatrixViewController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/listViewMatrixViewController.cpp -------------------------------------------------------------------------------- /src/listViewMatrixViewController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/listViewMatrixViewController.hpp -------------------------------------------------------------------------------- /src/loggerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/loggerView.cpp -------------------------------------------------------------------------------- /src/loggerView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/loggerView.hpp -------------------------------------------------------------------------------- /src/loggerView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/loggerView.ui -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mainWindow.cpp -------------------------------------------------------------------------------- /src/mainWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mainWindow.hpp -------------------------------------------------------------------------------- /src/mainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mainWindow.ui -------------------------------------------------------------------------------- /src/mappingMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mappingMatrix.cpp -------------------------------------------------------------------------------- /src/mappingMatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mappingMatrix.hpp -------------------------------------------------------------------------------- /src/mediaClock/abstractTreeItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mediaClock/abstractTreeItem.cpp -------------------------------------------------------------------------------- /src/mediaClock/abstractTreeItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mediaClock/abstractTreeItem.hpp -------------------------------------------------------------------------------- /src/mediaClock/domainTreeDomainNameDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mediaClock/domainTreeDomainNameDelegate.cpp -------------------------------------------------------------------------------- /src/mediaClock/domainTreeDomainNameDelegate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mediaClock/domainTreeDomainNameDelegate.hpp -------------------------------------------------------------------------------- /src/mediaClock/domainTreeDomainNameDelegate.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mediaClock/domainTreeDomainNameDelegate.ui -------------------------------------------------------------------------------- /src/mediaClock/domainTreeEntityNameDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mediaClock/domainTreeEntityNameDelegate.cpp -------------------------------------------------------------------------------- /src/mediaClock/domainTreeEntityNameDelegate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mediaClock/domainTreeEntityNameDelegate.hpp -------------------------------------------------------------------------------- /src/mediaClock/domainTreeEntityNameDelegate.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mediaClock/domainTreeEntityNameDelegate.ui -------------------------------------------------------------------------------- /src/mediaClock/domainTreeItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mediaClock/domainTreeItem.cpp -------------------------------------------------------------------------------- /src/mediaClock/domainTreeItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mediaClock/domainTreeItem.hpp -------------------------------------------------------------------------------- /src/mediaClock/domainTreeModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mediaClock/domainTreeModel.cpp -------------------------------------------------------------------------------- /src/mediaClock/domainTreeModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mediaClock/domainTreeModel.hpp -------------------------------------------------------------------------------- /src/mediaClock/entityTreeItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mediaClock/entityTreeItem.cpp -------------------------------------------------------------------------------- /src/mediaClock/entityTreeItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mediaClock/entityTreeItem.hpp -------------------------------------------------------------------------------- /src/mediaClock/mediaClockManagementDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mediaClock/mediaClockManagementDialog.cpp -------------------------------------------------------------------------------- /src/mediaClock/mediaClockManagementDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mediaClock/mediaClockManagementDialog.hpp -------------------------------------------------------------------------------- /src/mediaClock/mediaClockManagementDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mediaClock/mediaClockManagementDialog.ui -------------------------------------------------------------------------------- /src/mediaClock/unassignedListModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mediaClock/unassignedListModel.cpp -------------------------------------------------------------------------------- /src/mediaClock/unassignedListModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/mediaClock/unassignedListModel.hpp -------------------------------------------------------------------------------- /src/multiFirmwareUpdateDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/multiFirmwareUpdateDialog.cpp -------------------------------------------------------------------------------- /src/multiFirmwareUpdateDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/multiFirmwareUpdateDialog.hpp -------------------------------------------------------------------------------- /src/multiFirmwareUpdateDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/multiFirmwareUpdateDialog.ui -------------------------------------------------------------------------------- /src/networkInterfaceTypeModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/networkInterfaceTypeModel.cpp -------------------------------------------------------------------------------- /src/networkInterfaceTypeModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/networkInterfaceTypeModel.hpp -------------------------------------------------------------------------------- /src/newsFeed/newsFeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/newsFeed/newsFeed.cpp -------------------------------------------------------------------------------- /src/newsFeed/newsFeed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/newsFeed/newsFeed.hpp -------------------------------------------------------------------------------- /src/nodeDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeDispatcher.cpp -------------------------------------------------------------------------------- /src/nodeDispatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeDispatcher.hpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/asPathWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/asPathWidget.cpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/asPathWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/asPathWidget.hpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/audioUnitDynamicTreeWidgetItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/audioUnitDynamicTreeWidgetItem.cpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/audioUnitDynamicTreeWidgetItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/audioUnitDynamicTreeWidgetItem.hpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/avbInterfaceDynamicTreeWidgetItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/avbInterfaceDynamicTreeWidgetItem.cpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/avbInterfaceDynamicTreeWidgetItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/avbInterfaceDynamicTreeWidgetItem.hpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/controlValuesDynamicTreeWidgetItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/controlValuesDynamicTreeWidgetItem.cpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/controlValuesDynamicTreeWidgetItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/controlValuesDynamicTreeWidgetItem.hpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/discoveredInterfacesTreeWidgetItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/discoveredInterfacesTreeWidgetItem.cpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/discoveredInterfacesTreeWidgetItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/discoveredInterfacesTreeWidgetItem.hpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/listenerStreamConnectionWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/listenerStreamConnectionWidget.cpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/listenerStreamConnectionWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/listenerStreamConnectionWidget.hpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/memoryObjectDynamicTreeWidgetItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/memoryObjectDynamicTreeWidgetItem.cpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/memoryObjectDynamicTreeWidgetItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/memoryObjectDynamicTreeWidgetItem.hpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/milanDynamicStateTreeWidgetItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/milanDynamicStateTreeWidgetItem.cpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/milanDynamicStateTreeWidgetItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/milanDynamicStateTreeWidgetItem.hpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/streamDynamicTreeWidgetItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/streamDynamicTreeWidgetItem.cpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/streamDynamicTreeWidgetItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/streamDynamicTreeWidgetItem.hpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/streamPortDynamicTreeWidgetItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/streamPortDynamicTreeWidgetItem.cpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/streamPortDynamicTreeWidgetItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/streamPortDynamicTreeWidgetItem.hpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/talkerStreamConnectionWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/talkerStreamConnectionWidget.cpp -------------------------------------------------------------------------------- /src/nodeTreeDynamicWidgets/talkerStreamConnectionWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeDynamicWidgets/talkerStreamConnectionWidget.hpp -------------------------------------------------------------------------------- /src/nodeTreeWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeWidget.cpp -------------------------------------------------------------------------------- /src/nodeTreeWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/nodeTreeWidget.hpp -------------------------------------------------------------------------------- /src/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/pch.hpp -------------------------------------------------------------------------------- /src/processHelper/processHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/processHelper/processHelper.hpp -------------------------------------------------------------------------------- /src/processHelper/processHelper_macos.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/processHelper/processHelper_macos.mm -------------------------------------------------------------------------------- /src/processHelper/processHelper_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/processHelper/processHelper_unix.cpp -------------------------------------------------------------------------------- /src/processHelper/processHelper_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/processHelper/processHelper_win32.cpp -------------------------------------------------------------------------------- /src/profiles/profileSelectionDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/profiles/profileSelectionDialog.cpp -------------------------------------------------------------------------------- /src/profiles/profileSelectionDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/profiles/profileSelectionDialog.hpp -------------------------------------------------------------------------------- /src/profiles/profileWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/profiles/profileWidget.cpp -------------------------------------------------------------------------------- /src/profiles/profileWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/profiles/profileWidget.hpp -------------------------------------------------------------------------------- /src/profiles/profiles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/profiles/profiles.hpp -------------------------------------------------------------------------------- /src/settingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/settingsDialog.cpp -------------------------------------------------------------------------------- /src/settingsDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/settingsDialog.hpp -------------------------------------------------------------------------------- /src/settingsDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/settingsDialog.ui -------------------------------------------------------------------------------- /src/settingsManager/settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/settingsManager/settings.hpp -------------------------------------------------------------------------------- /src/settingsManager/settingsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/settingsManager/settingsManager.cpp -------------------------------------------------------------------------------- /src/settingsManager/settingsManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/settingsManager/settingsManager.hpp -------------------------------------------------------------------------------- /src/settingsManager/settingsSignaler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/settingsManager/settingsSignaler.hpp -------------------------------------------------------------------------------- /src/statistics/entityStatisticsTreeWidgetItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/statistics/entityStatisticsTreeWidgetItem.cpp -------------------------------------------------------------------------------- /src/statistics/entityStatisticsTreeWidgetItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/statistics/entityStatisticsTreeWidgetItem.hpp -------------------------------------------------------------------------------- /src/streamFormatComboBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/streamFormatComboBox.hpp -------------------------------------------------------------------------------- /src/updater/updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/updater/updater.cpp -------------------------------------------------------------------------------- /src/updater/updater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/updater/updater.hpp -------------------------------------------------------------------------------- /src/visibilitySettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/visibilitySettings.hpp -------------------------------------------------------------------------------- /src/windowsNpfHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/windowsNpfHelper.cpp -------------------------------------------------------------------------------- /src/windowsNpfHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/src/windowsNpfHelper.hpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Hive Unit Tests 2 | 3 | add_subdirectory(src) 4 | -------------------------------------------------------------------------------- /tests/TEST-PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/TEST-PLAN.md -------------------------------------------------------------------------------- /tests/data/connectionMatrix/1-Normal_Normal-ConnectedNoError_WrongFormat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/1-Normal_Normal-ConnectedNoError_WrongFormat.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/10-Redundant_Redundant-ConnectedWrongDomain_LinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/10-Redundant_Redundant-ConnectedWrongDomain_LinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/11-Redundant_Redundant-WrongDomain_ConnectedLinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/11-Redundant_Redundant-WrongDomain_ConnectedLinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/12-Redundant_Redundant-ConnectedWrongDomain_ConnectedLinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/12-Redundant_Redundant-ConnectedWrongDomain_ConnectedLinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/13-Redundant_Redundant-ConnectedWrongFormat_LinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/13-Redundant_Redundant-ConnectedWrongFormat_LinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/14-Redundant_Redundant-WrongFormat_ConnectedLinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/14-Redundant_Redundant-WrongFormat_ConnectedLinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/15-Redundant_Redundant-ConnectedWrongFormat_ConnectedLinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/15-Redundant_Redundant-ConnectedWrongFormat_ConnectedLinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/16-Redundant_Redundant-ConnectedNoError_LinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/16-Redundant_Redundant-ConnectedNoError_LinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/17-Redundant_Redundant-NoError_ConnectedLinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/17-Redundant_Redundant-NoError_ConnectedLinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/18-Redundant_Redundant-ConnectedNoError_ConnectedLinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/18-Redundant_Redundant-ConnectedNoError_ConnectedLinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/19-Redundant_Redundant-ConnectedNoError_ConnectedWrongDomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/19-Redundant_Redundant-ConnectedNoError_ConnectedWrongDomain.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/2-Normal_Normal-NoError_ConnectedWrongFormat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/2-Normal_Normal-NoError_ConnectedWrongFormat.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/20-Redundant_Redundant-ConnectedWrongFormat_ConnectedWrongDomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/20-Redundant_Redundant-ConnectedWrongFormat_ConnectedWrongDomain.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/21-Redundant_Redundant-NoError_LinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/21-Redundant_Redundant-NoError_LinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/22-Redundant_Normal-ConnectedNoError_LinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/22-Redundant_Normal-ConnectedNoError_LinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/23-Redundant_Normal-ConnectedNoError_ConnectedLinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/23-Redundant_Normal-ConnectedNoError_ConnectedLinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/24-Redundant_Normal-NoError_ConnectedLinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/24-Redundant_Normal-NoError_ConnectedLinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/25-Redundant_Normal-NoError_LinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/25-Redundant_Normal-NoError_LinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/26-Normal_Redundant-ConnectedNoError_ConnectedLinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/26-Normal_Redundant-ConnectedNoError_ConnectedLinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/27-Normal_Redundant-ConnectedNoError_LinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/27-Normal_Redundant-ConnectedNoError_LinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/28-Normal_Redundant-NoError_ConnectedLinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/28-Normal_Redundant-NoError_ConnectedLinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/29-Normal_Redundant-NoError_LinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/29-Normal_Redundant-NoError_LinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/3-Normal_Normal-ConnectedNoError_ConnectedWrongFormat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/3-Normal_Normal-ConnectedNoError_ConnectedWrongFormat.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/30-Redundant_Normal-NoError_WrongDomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/30-Redundant_Normal-NoError_WrongDomain.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/31-Redundant_Normal-ConnectedNoError_WrongDomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/31-Redundant_Normal-ConnectedNoError_WrongDomain.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/32-Normal_Redundant-NoError_WrongDomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/32-Normal_Redundant-NoError_WrongDomain.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/33-Normal_Redundant-ConnectedNoError_WrongDomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/33-Normal_Redundant-ConnectedNoError_WrongDomain.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/34-Redundant_Normal-WrongDomain_WrongDomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/34-Redundant_Normal-WrongDomain_WrongDomain.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/35-Normal_Redundant-WrongDomain_WrongDomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/35-Normal_Redundant-WrongDomain_WrongDomain.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/36-Redundant_Normal-ConnectedWrongDomain_WrongDomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/36-Redundant_Normal-ConnectedWrongDomain_WrongDomain.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/37-Redundant_Normal-ConnectedWrongDomain_LinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/37-Redundant_Normal-ConnectedWrongDomain_LinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/38-Redundant_Normal-WrongDomain_LinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/38-Redundant_Normal-WrongDomain_LinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/39-Redundant_Normal-WrongDomain_ConnectedLinkDown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/39-Redundant_Normal-WrongDomain_ConnectedLinkDown.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/4-Normal_Normal-ConnectedWrongDomain_WrongFormatWrongDomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/4-Normal_Normal-ConnectedWrongDomain_WrongFormatWrongDomain.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/5-Normal_Normal-WrongDomain_ConnectedWrongFormatWrongDomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/5-Normal_Normal-WrongDomain_ConnectedWrongFormatWrongDomain.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/6-Normal_Normal-ConnectedWrongDomain_ConnectedWrongFormatWrongDomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/6-Normal_Normal-ConnectedWrongDomain_ConnectedWrongFormatWrongDomain.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/7-Normal_Normal-ConnectedNoError_NoError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/7-Normal_Normal-ConnectedNoError_NoError.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/8-Normal_Normal-NoError_ConnectedNoError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/8-Normal_Normal-NoError_ConnectedNoError.json -------------------------------------------------------------------------------- /tests/data/connectionMatrix/9-Normal_Normal-ConnectedNoError_ConnectedNoError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/data/connectionMatrix/9-Normal_Normal-ConnectedNoError_ConnectedNoError.json -------------------------------------------------------------------------------- /tests/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/src/CMakeLists.txt -------------------------------------------------------------------------------- /tests/src/connectionMatrix_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/src/connectionMatrix_tests.cpp -------------------------------------------------------------------------------- /tests/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tests/src/main.cpp -------------------------------------------------------------------------------- /tools/AEMDumper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tools/AEMDumper/CMakeLists.txt -------------------------------------------------------------------------------- /tools/AEMDumper/config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tools/AEMDumper/config.hpp.in -------------------------------------------------------------------------------- /tools/AEMDumper/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tools/AEMDumper/main.cpp -------------------------------------------------------------------------------- /tools/AEMDumper/mainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tools/AEMDumper/mainWindow.cpp -------------------------------------------------------------------------------- /tools/AEMDumper/mainWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tools/AEMDumper/mainWindow.hpp -------------------------------------------------------------------------------- /tools/AEMDumper/mainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tools/AEMDumper/mainWindow.ui -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/generate_oui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tools/generate_oui.py -------------------------------------------------------------------------------- /tools/json2msgPack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tools/json2msgPack.cpp -------------------------------------------------------------------------------- /tools/msgPack2json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tools/msgPack2json.cpp -------------------------------------------------------------------------------- /tools/webserver/Parsedown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tools/webserver/Parsedown.php -------------------------------------------------------------------------------- /tools/webserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tools/webserver/README.md -------------------------------------------------------------------------------- /tools/webserver/appcast-beta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tools/webserver/appcast-beta.xml -------------------------------------------------------------------------------- /tools/webserver/appcast-release.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tools/webserver/appcast-release.xml -------------------------------------------------------------------------------- /tools/webserver/changelog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tools/webserver/changelog.php -------------------------------------------------------------------------------- /tools/webserver/news.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tools/webserver/news.json -------------------------------------------------------------------------------- /tools/webserver/news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophe-calmejane/Hive/HEAD/tools/webserver/news.php --------------------------------------------------------------------------------