├── .clang-format ├── .cmake-format.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ └── feature_request.yaml ├── actions │ ├── build-dependencies │ │ └── action.yaml │ ├── build-plugin │ │ └── action.yaml │ ├── package-plugin │ │ └── action.yaml │ ├── run-clang-format │ │ └── action.yaml │ ├── run-cmake-format │ │ └── action.yaml │ ├── run-tests │ │ └── action.yaml │ └── setup-macos-codesigning │ │ └── action.yaml ├── scripts │ ├── .Aptfile │ ├── .Brewfile │ ├── .Wingetfile │ ├── .build-deps.zsh │ ├── .build.zsh │ ├── .package.zsh │ ├── Build-Deps-Windows.ps1 │ ├── Build-Windows.ps1 │ ├── Package-Windows.ps1 │ ├── build-deps-linux.sh │ ├── build-deps-linux.zsh │ ├── build-deps-macos.zsh │ ├── build-linux │ ├── build-macos │ ├── package-linux │ ├── package-macos │ ├── utils.pwsh │ │ ├── Ensure-Location.ps1 │ │ ├── Expand-ArchiveExt.ps1 │ │ ├── Install-BuildDependencies.ps1 │ │ ├── Invoke-External.ps1 │ │ └── Logger.ps1 │ └── utils.zsh │ │ ├── check_linux │ │ ├── check_macos │ │ ├── log_debug │ │ ├── log_error │ │ ├── log_group │ │ ├── log_info │ │ ├── log_output │ │ ├── log_status │ │ ├── log_warning │ │ ├── mkcd │ │ ├── read_codesign │ │ ├── read_codesign_installer │ │ ├── read_codesign_pass │ │ ├── read_codesign_team │ │ ├── read_codesign_user │ │ ├── set_loglevel │ │ ├── setup_ccache │ │ └── setup_linux └── workflows │ ├── build-debian.yml │ ├── build-project.yaml │ ├── check-format.yaml │ ├── dispatch.yaml │ ├── locale-check.yml │ ├── pr-pull.yaml │ └── push.yaml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── BUILDING.md ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE ├── README.md ├── cmake ├── common │ ├── advss_helpers.cmake │ ├── bootstrap.cmake │ ├── buildnumber.cmake │ ├── buildspec_common.cmake │ ├── ccache.cmake │ ├── compiler_common.cmake │ ├── get_git_revision_description.cmake │ ├── get_git_revision_description.cmake.in │ ├── helpers_common.cmake │ ├── osconfig.cmake │ └── version.cpp.in ├── linux │ ├── compilerconfig.cmake │ ├── defaults.cmake │ ├── helpers.cmake │ └── toolchains │ │ ├── aarch64-linux-clang.cmake │ │ ├── aarch64-linux-gcc.cmake │ │ ├── x86_64-linux-clang.cmake │ │ └── x86_64-linux-gcc.cmake ├── macos │ ├── buildspec.cmake │ ├── compilerconfig.cmake │ ├── defaults.cmake │ ├── helpers.cmake │ ├── resources │ │ ├── ccache-launcher-c.in │ │ ├── ccache-launcher-cxx.in │ │ ├── create-package.cmake.in │ │ ├── distribution.in │ │ └── installer-macos.pkgproj.in │ └── xcode.cmake └── windows │ ├── buildspec.cmake │ ├── compilerconfig.cmake │ ├── defaults.cmake │ ├── helpers.cmake │ ├── resources │ ├── installer-Windows.iss.in │ └── resource.rc.in │ └── wingetssl.cmake ├── data ├── locale │ ├── de-DE.ini │ ├── en-US.ini │ ├── es-ES.ini │ ├── fr-FR.ini │ ├── ja-JP.ini │ ├── pt-BR.ini │ ├── ru-RU.ini │ ├── tr-TR.ini │ └── zh-CN.ini └── res │ ├── cascadeClassifiers │ ├── haarcascade_eye.xml │ ├── haarcascade_eye_tree_eyeglasses.xml │ ├── haarcascade_frontalface_alt.xml │ ├── haarcascade_frontalface_alt2.xml │ ├── haarcascade_frontalface_alt_tree.xml │ ├── haarcascade_frontalface_default.xml │ ├── haarcascade_fullbody.xml │ ├── haarcascade_lefteye_2splits.xml │ ├── haarcascade_lowerbody.xml │ ├── haarcascade_profileface.xml │ ├── haarcascade_righteye_2splits.xml │ └── haarcascade_upperbody.xml │ ├── images │ ├── DarkAdvanced.svg │ ├── DarkDoubleDown.svg │ ├── DarkDoubleUp.svg │ ├── DarkGroup.svg │ ├── DarkNotEqual.svg │ ├── DarkNote.svg │ ├── DarkRegex.svg │ ├── DarkSearch.svg │ ├── DarkTime.svg │ ├── LightAdvanced.svg │ ├── LightDoubleDown.svg │ ├── LightDoubleUp.svg │ ├── LightGroup.svg │ ├── LightNotEqual.svg │ ├── LightNote.svg │ ├── LightRegex.svg │ ├── LightSearch.svg │ ├── LightTime.svg │ └── logo.ico │ └── ocr │ └── eng.traineddata ├── deps ├── exprtk │ └── exprtk.hpp └── obs-websocket │ └── lib │ └── obs-websocket-api.h ├── forms ├── advanced-scene-switcher.ui └── macro-edit.ui ├── lib ├── advanced-scene-switcher.cpp ├── advanced-scene-switcher.hpp ├── general.cpp ├── legacy │ ├── scene-group.cpp │ ├── scene-group.hpp │ ├── switch-audio.cpp │ ├── switch-audio.hpp │ ├── switch-executable.cpp │ ├── switch-executable.hpp │ ├── switch-file.cpp │ ├── switch-file.hpp │ ├── switch-generic.cpp │ ├── switch-generic.hpp │ ├── switch-idle.cpp │ ├── switch-idle.hpp │ ├── switch-media.cpp │ ├── switch-media.hpp │ ├── switch-pause.cpp │ ├── switch-pause.hpp │ ├── switch-random.cpp │ ├── switch-random.hpp │ ├── switch-screen-region.cpp │ ├── switch-screen-region.hpp │ ├── switch-sequence.cpp │ ├── switch-sequence.hpp │ ├── switch-time.cpp │ ├── switch-time.hpp │ ├── switch-transitions.cpp │ ├── switch-transitions.hpp │ ├── switch-video.cpp │ ├── switch-video.hpp │ ├── switch-window.cpp │ └── switch-window.hpp ├── linux │ ├── advanced-scene-switcher-nix.cpp │ ├── kwin-helpers.cpp │ └── kwin-helpers.h ├── macro │ ├── macro-action-edit.cpp │ ├── macro-action-edit.hpp │ ├── macro-action-factory.cpp │ ├── macro-action-factory.hpp │ ├── macro-action-macro.cpp │ ├── macro-action-macro.hpp │ ├── macro-action-queue.cpp │ ├── macro-action-queue.hpp │ ├── macro-action-variable.cpp │ ├── macro-action-variable.hpp │ ├── macro-action.cpp │ ├── macro-action.hpp │ ├── macro-condition-edit.cpp │ ├── macro-condition-edit.hpp │ ├── macro-condition-factory.cpp │ ├── macro-condition-factory.hpp │ ├── macro-condition-macro.cpp │ ├── macro-condition-macro.hpp │ ├── macro-condition-queue.cpp │ ├── macro-condition-queue.hpp │ ├── macro-condition-tempvar.cpp │ ├── macro-condition-tempvar.hpp │ ├── macro-condition-variable.cpp │ ├── macro-condition-variable.hpp │ ├── macro-condition.cpp │ ├── macro-condition.hpp │ ├── macro-dock-settings.cpp │ ├── macro-dock-settings.hpp │ ├── macro-dock-window.cpp │ ├── macro-dock-window.hpp │ ├── macro-dock.cpp │ ├── macro-dock.hpp │ ├── macro-edit.cpp │ ├── macro-edit.hpp │ ├── macro-export-import-dialog.cpp │ ├── macro-export-import-dialog.hpp │ ├── macro-helpers.cpp │ ├── macro-helpers.hpp │ ├── macro-input.cpp │ ├── macro-input.hpp │ ├── macro-list.cpp │ ├── macro-list.hpp │ ├── macro-ref.cpp │ ├── macro-ref.hpp │ ├── macro-run-button.cpp │ ├── macro-run-button.hpp │ ├── macro-search.cpp │ ├── macro-search.hpp │ ├── macro-segment-copy-paste.cpp │ ├── macro-segment-copy-paste.hpp │ ├── macro-segment-list.cpp │ ├── macro-segment-list.hpp │ ├── macro-segment-selection.cpp │ ├── macro-segment-selection.hpp │ ├── macro-segment-unknown.hpp │ ├── macro-segment.cpp │ ├── macro-segment.hpp │ ├── macro-selection.cpp │ ├── macro-selection.hpp │ ├── macro-settings.cpp │ ├── macro-settings.hpp │ ├── macro-signals.cpp │ ├── macro-signals.hpp │ ├── macro-tab.cpp │ ├── macro-tree.cpp │ ├── macro-tree.hpp │ ├── macro.cpp │ └── macro.hpp ├── osx │ └── advanced-scene-switcher-osx.mm ├── platform-funcs.hpp ├── queue │ ├── action-queue-tab.cpp │ ├── action-queue-tab.hpp │ ├── action-queue.cpp │ └── action-queue.hpp ├── switcher-data.cpp ├── switcher-data.hpp ├── utils │ ├── auto-update-tooltip-label.cpp │ ├── auto-update-tooltip-label.hpp │ ├── backup.cpp │ ├── backup.hpp │ ├── canvas-helpers.cpp │ ├── canvas-helpers.hpp │ ├── condition-logic.cpp │ ├── condition-logic.hpp │ ├── curl-helper.cpp │ ├── curl-helper.hpp │ ├── cursor-shape-changer.cpp │ ├── cursor-shape-changer.hpp │ ├── double-slider.cpp │ ├── double-slider.hpp │ ├── duration-control.cpp │ ├── duration-control.hpp │ ├── duration-modifier.cpp │ ├── duration-modifier.hpp │ ├── duration.cpp │ ├── duration.hpp │ ├── export-symbol-helper.hpp │ ├── file-selection.cpp │ ├── file-selection.hpp │ ├── filter-combo-box.cpp │ ├── filter-combo-box.hpp │ ├── help-icon.cpp │ ├── help-icon.hpp │ ├── item-selection-helpers.cpp │ ├── item-selection-helpers.hpp │ ├── json-helpers.cpp │ ├── json-helpers.hpp │ ├── layout-helpers.cpp │ ├── layout-helpers.hpp │ ├── list-controls.cpp │ ├── list-controls.hpp │ ├── list-editor.cpp │ ├── list-editor.hpp │ ├── log-helper.cpp │ ├── log-helper.hpp │ ├── math-helpers.cpp │ ├── math-helpers.hpp │ ├── message-buffer.hpp │ ├── message-dispatcher.hpp │ ├── mouse-wheel-guard.cpp │ ├── mouse-wheel-guard.hpp │ ├── name-dialog.cpp │ ├── name-dialog.hpp │ ├── non-modal-dialog.cpp │ ├── non-modal-dialog.hpp │ ├── obs-module-helper.cpp │ ├── obs-module-helper.hpp │ ├── path-helpers.cpp │ ├── path-helpers.hpp │ ├── plugin-state-helpers.cpp │ ├── plugin-state-helpers.hpp │ ├── priority-helper.cpp │ ├── priority-helper.hpp │ ├── regex-config.cpp │ ├── regex-config.hpp │ ├── resizable-widget.cpp │ ├── resizable-widget.hpp │ ├── resizing-text-edit.cpp │ ├── resizing-text-edit.hpp │ ├── resource-table.cpp │ ├── resource-table.hpp │ ├── scene-selection.cpp │ ├── scene-selection.hpp │ ├── scene-switch-helpers.cpp │ ├── scene-switch-helpers.hpp │ ├── screenshot-helper.cpp │ ├── screenshot-helper.hpp │ ├── section.cpp │ ├── section.hpp │ ├── selection-helpers.cpp │ ├── selection-helpers.hpp │ ├── single-char-selection.cpp │ ├── single-char-selection.hpp │ ├── slider-spinbox.cpp │ ├── slider-spinbox.hpp │ ├── source-helpers.cpp │ ├── source-helpers.hpp │ ├── source-selection.cpp │ ├── source-selection.hpp │ ├── splitter-helpers.cpp │ ├── splitter-helpers.hpp │ ├── status-control.cpp │ ├── status-control.hpp │ ├── string-list.cpp │ ├── string-list.hpp │ ├── switch-button.cpp │ ├── switch-button.hpp │ ├── sync-helpers.cpp │ ├── sync-helpers.hpp │ ├── tab-helpers.cpp │ ├── tab-helpers.hpp │ ├── temp-variable.cpp │ ├── temp-variable.hpp │ ├── time-helpers.cpp │ ├── time-helpers.hpp │ ├── ui-helpers.cpp │ ├── ui-helpers.hpp │ ├── utility.cpp │ ├── utility.hpp │ ├── volume-control.cpp │ ├── volume-control.hpp │ ├── websocket-api.cpp │ └── websocket-api.hpp ├── variables │ ├── variable-line-edit.cpp │ ├── variable-line-edit.hpp │ ├── variable-number.hpp │ ├── variable-number.tpp │ ├── variable-spinbox.cpp │ ├── variable-spinbox.hpp │ ├── variable-string.cpp │ ├── variable-string.hpp │ ├── variable-tab.cpp │ ├── variable-tab.hpp │ ├── variable-text-edit.cpp │ ├── variable-text-edit.hpp │ ├── variable.cpp │ └── variable.hpp ├── version.h └── win │ └── advanced-scene-switcher-win.cpp ├── module └── advanced-scene-switcher-module.c ├── plugins ├── CMakeLists.txt ├── base │ ├── CMakeLists.txt │ ├── macro-action-audio.cpp │ ├── macro-action-audio.hpp │ ├── macro-action-clipboard.cpp │ ├── macro-action-clipboard.hpp │ ├── macro-action-file.cpp │ ├── macro-action-file.hpp │ ├── macro-action-filter.cpp │ ├── macro-action-filter.hpp │ ├── macro-action-hotkey.cpp │ ├── macro-action-hotkey.hpp │ ├── macro-action-http-legacy.cpp │ ├── macro-action-http-legacy.hpp │ ├── macro-action-log.cpp │ ├── macro-action-log.hpp │ ├── macro-action-media.cpp │ ├── macro-action-media.hpp │ ├── macro-action-obs-settings.cpp │ ├── macro-action-obs-settings.hpp │ ├── macro-action-osc.cpp │ ├── macro-action-osc.hpp │ ├── macro-action-plugin-state.cpp │ ├── macro-action-plugin-state.hpp │ ├── macro-action-profile.cpp │ ├── macro-action-profile.hpp │ ├── macro-action-projector.cpp │ ├── macro-action-projector.hpp │ ├── macro-action-random.cpp │ ├── macro-action-random.hpp │ ├── macro-action-recording.cpp │ ├── macro-action-recording.hpp │ ├── macro-action-replay-buffer.cpp │ ├── macro-action-replay-buffer.hpp │ ├── macro-action-run.cpp │ ├── macro-action-run.hpp │ ├── macro-action-scene-collection.cpp │ ├── macro-action-scene-collection.hpp │ ├── macro-action-scene-lock.cpp │ ├── macro-action-scene-lock.hpp │ ├── macro-action-scene-order.cpp │ ├── macro-action-scene-order.hpp │ ├── macro-action-scene-switch.cpp │ ├── macro-action-scene-switch.hpp │ ├── macro-action-scene-transform.cpp │ ├── macro-action-scene-transform.hpp │ ├── macro-action-scene-visibility.cpp │ ├── macro-action-scene-visibility.hpp │ ├── macro-action-screenshot.cpp │ ├── macro-action-screenshot.hpp │ ├── macro-action-sequence.cpp │ ├── macro-action-sequence.hpp │ ├── macro-action-source.cpp │ ├── macro-action-source.hpp │ ├── macro-action-streaming.cpp │ ├── macro-action-streaming.hpp │ ├── macro-action-studio-mode.cpp │ ├── macro-action-studio-mode.hpp │ ├── macro-action-systray.cpp │ ├── macro-action-systray.hpp │ ├── macro-action-timer.cpp │ ├── macro-action-timer.hpp │ ├── macro-action-transition.cpp │ ├── macro-action-transition.hpp │ ├── macro-action-virtual-cam.cpp │ ├── macro-action-virtual-cam.hpp │ ├── macro-action-wait.cpp │ ├── macro-action-wait.hpp │ ├── macro-action-websocket.cpp │ ├── macro-action-websocket.hpp │ ├── macro-action-window.cpp │ ├── macro-action-window.hpp │ ├── macro-condition-audio.cpp │ ├── macro-condition-audio.hpp │ ├── macro-condition-clipboard.cpp │ ├── macro-condition-clipboard.hpp │ ├── macro-condition-cursor.cpp │ ├── macro-condition-cursor.hpp │ ├── macro-condition-date.cpp │ ├── macro-condition-date.hpp │ ├── macro-condition-display.cpp │ ├── macro-condition-display.hpp │ ├── macro-condition-file.cpp │ ├── macro-condition-file.hpp │ ├── macro-condition-filter.cpp │ ├── macro-condition-filter.hpp │ ├── macro-condition-folder.cpp │ ├── macro-condition-folder.hpp │ ├── macro-condition-game-capture.cpp │ ├── macro-condition-game-capture.hpp │ ├── macro-condition-hotkey.cpp │ ├── macro-condition-hotkey.hpp │ ├── macro-condition-idle.cpp │ ├── macro-condition-idle.hpp │ ├── macro-condition-media.cpp │ ├── macro-condition-media.hpp │ ├── macro-condition-obs-stats.cpp │ ├── macro-condition-obs-stats.hpp │ ├── macro-condition-plugin-state.cpp │ ├── macro-condition-plugin-state.hpp │ ├── macro-condition-process.cpp │ ├── macro-condition-process.hpp │ ├── macro-condition-profile.cpp │ ├── macro-condition-profile.hpp │ ├── macro-condition-recording.cpp │ ├── macro-condition-recording.hpp │ ├── macro-condition-replay-buffer.cpp │ ├── macro-condition-replay-buffer.hpp │ ├── macro-condition-run.cpp │ ├── macro-condition-run.hpp │ ├── macro-condition-scene-order.cpp │ ├── macro-condition-scene-order.hpp │ ├── macro-condition-scene-transform.cpp │ ├── macro-condition-scene-transform.hpp │ ├── macro-condition-scene-visibility.cpp │ ├── macro-condition-scene-visibility.hpp │ ├── macro-condition-scene.cpp │ ├── macro-condition-scene.hpp │ ├── macro-condition-screenshot.cpp │ ├── macro-condition-screenshot.hpp │ ├── macro-condition-slideshow.cpp │ ├── macro-condition-slideshow.hpp │ ├── macro-condition-source.cpp │ ├── macro-condition-source.hpp │ ├── macro-condition-streaming.cpp │ ├── macro-condition-streaming.hpp │ ├── macro-condition-studio-mode.cpp │ ├── macro-condition-studio-mode.hpp │ ├── macro-condition-timer.cpp │ ├── macro-condition-timer.hpp │ ├── macro-condition-transition.cpp │ ├── macro-condition-transition.hpp │ ├── macro-condition-virtual-cam.cpp │ ├── macro-condition-virtual-cam.hpp │ ├── macro-condition-websocket.cpp │ ├── macro-condition-websocket.hpp │ ├── macro-condition-window.cpp │ ├── macro-condition-window.hpp │ └── utils │ │ ├── audio-helpers.cpp │ │ ├── audio-helpers.hpp │ │ ├── connection-manager.cpp │ │ ├── connection-manager.hpp │ │ ├── cursor-helpers.cpp │ │ ├── cursor-helpers.hpp │ │ ├── filter-selection.cpp │ │ ├── filter-selection.hpp │ │ ├── hotkey-helpers.cpp │ │ ├── hotkey-helpers.hpp │ │ ├── linux │ │ └── linux.cpp │ │ ├── monitor-helpers.cpp │ │ ├── monitor-helpers.hpp │ │ ├── osc-helpers.cpp │ │ ├── osc-helpers.hpp │ │ ├── osx │ │ └── osx.mm │ │ ├── process-config.cpp │ │ ├── process-config.hpp │ │ ├── profile-helpers.cpp │ │ ├── profile-helpers.hpp │ │ ├── scene-item-selection.cpp │ │ ├── scene-item-selection.hpp │ │ ├── scene-item-transform-helpers.cpp │ │ ├── scene-item-transform-helpers.hpp │ │ ├── source-properties-button.cpp │ │ ├── source-properties-button.hpp │ │ ├── source-setting.cpp │ │ ├── source-setting.hpp │ │ ├── source-settings-helpers.cpp │ │ ├── source-settings-helpers.hpp │ │ ├── striped-frame.cpp │ │ ├── striped-frame.hpp │ │ ├── text-helpers.cpp │ │ ├── text-helpers.hpp │ │ ├── transform-setting.cpp │ │ ├── transform-setting.hpp │ │ ├── transition-selection.cpp │ │ ├── transition-selection.hpp │ │ ├── websocket-helpers.cpp │ │ ├── websocket-helpers.hpp │ │ ├── websocket-tab.cpp │ │ ├── websocket-tab.hpp │ │ ├── window-selection.cpp │ │ ├── window-selection.hpp │ │ └── windows │ │ └── windows.cpp ├── http │ ├── CMakeLists.txt │ ├── key-value-list.cpp │ ├── key-value-list.hpp │ ├── macro-action-http.cpp │ └── macro-action-http.hpp ├── midi │ ├── CMakeLists.txt │ ├── macro-action-midi.cpp │ ├── macro-action-midi.hpp │ ├── macro-condition-midi.cpp │ ├── macro-condition-midi.hpp │ ├── midi-helpers.cpp │ └── midi-helpers.hpp ├── mqtt │ ├── CMakeLists.txt │ ├── macro-action-mqtt.cpp │ ├── macro-action-mqtt.hpp │ ├── macro-condition-mqtt.cpp │ ├── macro-condition-mqtt.hpp │ ├── mqtt-helpers.cpp │ ├── mqtt-helpers.hpp │ ├── mqtt-tab.cpp │ ├── mqtt-tab.hpp │ ├── topic-selection.cpp │ └── topic-selection.hpp ├── openvr │ ├── CMakeLists.txt │ ├── macro-condition-openvr.cpp │ └── macro-condition-openvr.hpp ├── scripting │ ├── CMakeLists.txt │ ├── macro-action-script-inline.cpp │ ├── macro-action-script-inline.hpp │ ├── macro-action-script.cpp │ ├── macro-action-script.hpp │ ├── macro-condition-script-inline.cpp │ ├── macro-condition-script-inline.hpp │ ├── macro-condition-script.cpp │ ├── macro-condition-script.hpp │ ├── macro-script-handler.cpp │ ├── macro-script-handler.hpp │ ├── macro-segment-script-inline.cpp │ ├── macro-segment-script-inline.hpp │ ├── macro-segment-script.cpp │ ├── macro-segment-script.hpp │ └── utils │ │ ├── inline-script.cpp │ │ ├── inline-script.hpp │ │ ├── obs-script-helpers.cpp │ │ ├── obs-script-helpers.hpp │ │ ├── properties-view.cpp │ │ ├── properties-view.hpp │ │ └── properties-view.moc.hpp ├── stream-deck │ ├── CMakeLists.txt │ ├── macro-condition-stream-deck.cpp │ └── macro-condition-stream-deck.hpp ├── twitch │ ├── CMakeLists.txt │ ├── category-selection.cpp │ ├── category-selection.hpp │ ├── channel-selection.cpp │ ├── channel-selection.hpp │ ├── chat-connection.cpp │ ├── chat-connection.hpp │ ├── chat-message-pattern.cpp │ ├── chat-message-pattern.hpp │ ├── content-classification.cpp │ ├── content-classification.hpp │ ├── event-sub.cpp │ ├── event-sub.hpp │ ├── language-selection.cpp │ ├── language-selection.hpp │ ├── macro-action-twitch.cpp │ ├── macro-action-twitch.hpp │ ├── macro-condition-twitch.cpp │ ├── macro-condition-twitch.hpp │ ├── points-reward-selection.cpp │ ├── points-reward-selection.hpp │ ├── tag-selection.cpp │ ├── tag-selection.hpp │ ├── token.cpp │ ├── token.hpp │ ├── twitch-helpers.cpp │ ├── twitch-helpers.hpp │ ├── twitch-tab.cpp │ └── twitch-tab.hpp ├── usb │ ├── CMakeLists.txt │ ├── macro-condition-usb.cpp │ ├── macro-condition-usb.hpp │ ├── usb-helpers.cpp │ └── usb-helpers.hpp └── video │ ├── CMakeLists.txt │ ├── area-selection.cpp │ ├── area-selection.hpp │ ├── macro-condition-video.cpp │ ├── macro-condition-video.hpp │ ├── opencv-helpers.cpp │ ├── opencv-helpers.hpp │ ├── parameter-wrappers.cpp │ ├── parameter-wrappers.hpp │ ├── preview-dialog.cpp │ ├── preview-dialog.hpp │ ├── screenshot-dialog.cpp │ └── screenshot-dialog.hpp ├── scripting ├── examples.lua └── examples.py └── tests ├── CMakeLists.txt ├── catch.hpp ├── mocks ├── obs-data.cpp ├── obs-data.h ├── path-helpers.cpp └── ui-helpers.cpp ├── test-condition-logic.cpp ├── test-duration-modifier.cpp ├── test-json.cpp ├── test-main.cpp ├── test-math.cpp ├── test-regex.cpp ├── test-utility.cpp └── test-variable.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.clang-format -------------------------------------------------------------------------------- /.cmake-format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.cmake-format.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/actions/build-dependencies/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/actions/build-dependencies/action.yaml -------------------------------------------------------------------------------- /.github/actions/build-plugin/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/actions/build-plugin/action.yaml -------------------------------------------------------------------------------- /.github/actions/package-plugin/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/actions/package-plugin/action.yaml -------------------------------------------------------------------------------- /.github/actions/run-clang-format/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/actions/run-clang-format/action.yaml -------------------------------------------------------------------------------- /.github/actions/run-cmake-format/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/actions/run-cmake-format/action.yaml -------------------------------------------------------------------------------- /.github/actions/run-tests/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/actions/run-tests/action.yaml -------------------------------------------------------------------------------- /.github/actions/setup-macos-codesigning/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/actions/setup-macos-codesigning/action.yaml -------------------------------------------------------------------------------- /.github/scripts/.Aptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/.Aptfile -------------------------------------------------------------------------------- /.github/scripts/.Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/.Brewfile -------------------------------------------------------------------------------- /.github/scripts/.Wingetfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/.Wingetfile -------------------------------------------------------------------------------- /.github/scripts/.build-deps.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/.build-deps.zsh -------------------------------------------------------------------------------- /.github/scripts/.build.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/.build.zsh -------------------------------------------------------------------------------- /.github/scripts/.package.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/.package.zsh -------------------------------------------------------------------------------- /.github/scripts/Build-Deps-Windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/Build-Deps-Windows.ps1 -------------------------------------------------------------------------------- /.github/scripts/Build-Windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/Build-Windows.ps1 -------------------------------------------------------------------------------- /.github/scripts/Package-Windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/Package-Windows.ps1 -------------------------------------------------------------------------------- /.github/scripts/build-deps-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/build-deps-linux.sh -------------------------------------------------------------------------------- /.github/scripts/build-deps-linux.zsh: -------------------------------------------------------------------------------- 1 | .build-deps.zsh -------------------------------------------------------------------------------- /.github/scripts/build-deps-macos.zsh: -------------------------------------------------------------------------------- 1 | .build-deps.zsh -------------------------------------------------------------------------------- /.github/scripts/build-linux: -------------------------------------------------------------------------------- 1 | .build.zsh -------------------------------------------------------------------------------- /.github/scripts/build-macos: -------------------------------------------------------------------------------- 1 | .build.zsh -------------------------------------------------------------------------------- /.github/scripts/package-linux: -------------------------------------------------------------------------------- 1 | .package.zsh -------------------------------------------------------------------------------- /.github/scripts/package-macos: -------------------------------------------------------------------------------- 1 | .package.zsh -------------------------------------------------------------------------------- /.github/scripts/utils.pwsh/Ensure-Location.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.pwsh/Ensure-Location.ps1 -------------------------------------------------------------------------------- /.github/scripts/utils.pwsh/Expand-ArchiveExt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.pwsh/Expand-ArchiveExt.ps1 -------------------------------------------------------------------------------- /.github/scripts/utils.pwsh/Install-BuildDependencies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.pwsh/Install-BuildDependencies.ps1 -------------------------------------------------------------------------------- /.github/scripts/utils.pwsh/Invoke-External.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.pwsh/Invoke-External.ps1 -------------------------------------------------------------------------------- /.github/scripts/utils.pwsh/Logger.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.pwsh/Logger.ps1 -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/check_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.zsh/check_linux -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/check_macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.zsh/check_macos -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/log_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.zsh/log_debug -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/log_error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.zsh/log_error -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/log_group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.zsh/log_group -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/log_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.zsh/log_info -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/log_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.zsh/log_output -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/log_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.zsh/log_status -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/log_warning: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.zsh/log_warning -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/mkcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.zsh/mkcd -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/read_codesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.zsh/read_codesign -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/read_codesign_installer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.zsh/read_codesign_installer -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/read_codesign_pass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.zsh/read_codesign_pass -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/read_codesign_team: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.zsh/read_codesign_team -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/read_codesign_user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.zsh/read_codesign_user -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/set_loglevel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.zsh/set_loglevel -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/setup_ccache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.zsh/setup_ccache -------------------------------------------------------------------------------- /.github/scripts/utils.zsh/setup_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/scripts/utils.zsh/setup_linux -------------------------------------------------------------------------------- /.github/workflows/build-debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/workflows/build-debian.yml -------------------------------------------------------------------------------- /.github/workflows/build-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/workflows/build-project.yaml -------------------------------------------------------------------------------- /.github/workflows/check-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/workflows/check-format.yaml -------------------------------------------------------------------------------- /.github/workflows/dispatch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/workflows/dispatch.yaml -------------------------------------------------------------------------------- /.github/workflows/locale-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/workflows/locale-check.yml -------------------------------------------------------------------------------- /.github/workflows/pr-pull.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/workflows/pr-pull.yaml -------------------------------------------------------------------------------- /.github/workflows/push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.github/workflows/push.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/README.md -------------------------------------------------------------------------------- /cmake/common/advss_helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/common/advss_helpers.cmake -------------------------------------------------------------------------------- /cmake/common/bootstrap.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/common/bootstrap.cmake -------------------------------------------------------------------------------- /cmake/common/buildnumber.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/common/buildnumber.cmake -------------------------------------------------------------------------------- /cmake/common/buildspec_common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/common/buildspec_common.cmake -------------------------------------------------------------------------------- /cmake/common/ccache.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/common/ccache.cmake -------------------------------------------------------------------------------- /cmake/common/compiler_common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/common/compiler_common.cmake -------------------------------------------------------------------------------- /cmake/common/get_git_revision_description.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/common/get_git_revision_description.cmake -------------------------------------------------------------------------------- /cmake/common/get_git_revision_description.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/common/get_git_revision_description.cmake.in -------------------------------------------------------------------------------- /cmake/common/helpers_common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/common/helpers_common.cmake -------------------------------------------------------------------------------- /cmake/common/osconfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/common/osconfig.cmake -------------------------------------------------------------------------------- /cmake/common/version.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/common/version.cpp.in -------------------------------------------------------------------------------- /cmake/linux/compilerconfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/linux/compilerconfig.cmake -------------------------------------------------------------------------------- /cmake/linux/defaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/linux/defaults.cmake -------------------------------------------------------------------------------- /cmake/linux/helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/linux/helpers.cmake -------------------------------------------------------------------------------- /cmake/linux/toolchains/aarch64-linux-clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/linux/toolchains/aarch64-linux-clang.cmake -------------------------------------------------------------------------------- /cmake/linux/toolchains/aarch64-linux-gcc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/linux/toolchains/aarch64-linux-gcc.cmake -------------------------------------------------------------------------------- /cmake/linux/toolchains/x86_64-linux-clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/linux/toolchains/x86_64-linux-clang.cmake -------------------------------------------------------------------------------- /cmake/linux/toolchains/x86_64-linux-gcc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/linux/toolchains/x86_64-linux-gcc.cmake -------------------------------------------------------------------------------- /cmake/macos/buildspec.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/macos/buildspec.cmake -------------------------------------------------------------------------------- /cmake/macos/compilerconfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/macos/compilerconfig.cmake -------------------------------------------------------------------------------- /cmake/macos/defaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/macos/defaults.cmake -------------------------------------------------------------------------------- /cmake/macos/helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/macos/helpers.cmake -------------------------------------------------------------------------------- /cmake/macos/resources/ccache-launcher-c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/macos/resources/ccache-launcher-c.in -------------------------------------------------------------------------------- /cmake/macos/resources/ccache-launcher-cxx.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/macos/resources/ccache-launcher-cxx.in -------------------------------------------------------------------------------- /cmake/macos/resources/create-package.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/macos/resources/create-package.cmake.in -------------------------------------------------------------------------------- /cmake/macos/resources/distribution.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/macos/resources/distribution.in -------------------------------------------------------------------------------- /cmake/macos/resources/installer-macos.pkgproj.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/macos/resources/installer-macos.pkgproj.in -------------------------------------------------------------------------------- /cmake/macos/xcode.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/macos/xcode.cmake -------------------------------------------------------------------------------- /cmake/windows/buildspec.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/windows/buildspec.cmake -------------------------------------------------------------------------------- /cmake/windows/compilerconfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/windows/compilerconfig.cmake -------------------------------------------------------------------------------- /cmake/windows/defaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/windows/defaults.cmake -------------------------------------------------------------------------------- /cmake/windows/helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/windows/helpers.cmake -------------------------------------------------------------------------------- /cmake/windows/resources/installer-Windows.iss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/windows/resources/installer-Windows.iss.in -------------------------------------------------------------------------------- /cmake/windows/resources/resource.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/windows/resources/resource.rc.in -------------------------------------------------------------------------------- /cmake/windows/wingetssl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/cmake/windows/wingetssl.cmake -------------------------------------------------------------------------------- /data/locale/de-DE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/locale/de-DE.ini -------------------------------------------------------------------------------- /data/locale/en-US.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/locale/en-US.ini -------------------------------------------------------------------------------- /data/locale/es-ES.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/locale/es-ES.ini -------------------------------------------------------------------------------- /data/locale/fr-FR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/locale/fr-FR.ini -------------------------------------------------------------------------------- /data/locale/ja-JP.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/locale/ja-JP.ini -------------------------------------------------------------------------------- /data/locale/pt-BR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/locale/pt-BR.ini -------------------------------------------------------------------------------- /data/locale/ru-RU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/locale/ru-RU.ini -------------------------------------------------------------------------------- /data/locale/tr-TR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/locale/tr-TR.ini -------------------------------------------------------------------------------- /data/locale/zh-CN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/locale/zh-CN.ini -------------------------------------------------------------------------------- /data/res/cascadeClassifiers/haarcascade_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/cascadeClassifiers/haarcascade_eye.xml -------------------------------------------------------------------------------- /data/res/cascadeClassifiers/haarcascade_eye_tree_eyeglasses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/cascadeClassifiers/haarcascade_eye_tree_eyeglasses.xml -------------------------------------------------------------------------------- /data/res/cascadeClassifiers/haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/cascadeClassifiers/haarcascade_frontalface_alt.xml -------------------------------------------------------------------------------- /data/res/cascadeClassifiers/haarcascade_frontalface_alt2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/cascadeClassifiers/haarcascade_frontalface_alt2.xml -------------------------------------------------------------------------------- /data/res/cascadeClassifiers/haarcascade_frontalface_alt_tree.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/cascadeClassifiers/haarcascade_frontalface_alt_tree.xml -------------------------------------------------------------------------------- /data/res/cascadeClassifiers/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/cascadeClassifiers/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /data/res/cascadeClassifiers/haarcascade_fullbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/cascadeClassifiers/haarcascade_fullbody.xml -------------------------------------------------------------------------------- /data/res/cascadeClassifiers/haarcascade_lefteye_2splits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/cascadeClassifiers/haarcascade_lefteye_2splits.xml -------------------------------------------------------------------------------- /data/res/cascadeClassifiers/haarcascade_lowerbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/cascadeClassifiers/haarcascade_lowerbody.xml -------------------------------------------------------------------------------- /data/res/cascadeClassifiers/haarcascade_profileface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/cascadeClassifiers/haarcascade_profileface.xml -------------------------------------------------------------------------------- /data/res/cascadeClassifiers/haarcascade_righteye_2splits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/cascadeClassifiers/haarcascade_righteye_2splits.xml -------------------------------------------------------------------------------- /data/res/cascadeClassifiers/haarcascade_upperbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/cascadeClassifiers/haarcascade_upperbody.xml -------------------------------------------------------------------------------- /data/res/images/DarkAdvanced.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/images/DarkAdvanced.svg -------------------------------------------------------------------------------- /data/res/images/DarkDoubleDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/images/DarkDoubleDown.svg -------------------------------------------------------------------------------- /data/res/images/DarkDoubleUp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/images/DarkDoubleUp.svg -------------------------------------------------------------------------------- /data/res/images/DarkGroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/images/DarkGroup.svg -------------------------------------------------------------------------------- /data/res/images/DarkNotEqual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/images/DarkNotEqual.svg -------------------------------------------------------------------------------- /data/res/images/DarkNote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/images/DarkNote.svg -------------------------------------------------------------------------------- /data/res/images/DarkRegex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/images/DarkRegex.svg -------------------------------------------------------------------------------- /data/res/images/DarkSearch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/images/DarkSearch.svg -------------------------------------------------------------------------------- /data/res/images/DarkTime.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/images/DarkTime.svg -------------------------------------------------------------------------------- /data/res/images/LightAdvanced.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/images/LightAdvanced.svg -------------------------------------------------------------------------------- /data/res/images/LightDoubleDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/images/LightDoubleDown.svg -------------------------------------------------------------------------------- /data/res/images/LightDoubleUp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/images/LightDoubleUp.svg -------------------------------------------------------------------------------- /data/res/images/LightGroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/images/LightGroup.svg -------------------------------------------------------------------------------- /data/res/images/LightNotEqual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/images/LightNotEqual.svg -------------------------------------------------------------------------------- /data/res/images/LightNote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/images/LightNote.svg -------------------------------------------------------------------------------- /data/res/images/LightRegex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/images/LightRegex.svg -------------------------------------------------------------------------------- /data/res/images/LightSearch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/images/LightSearch.svg -------------------------------------------------------------------------------- /data/res/images/LightTime.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/images/LightTime.svg -------------------------------------------------------------------------------- /data/res/images/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/images/logo.ico -------------------------------------------------------------------------------- /data/res/ocr/eng.traineddata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/data/res/ocr/eng.traineddata -------------------------------------------------------------------------------- /deps/exprtk/exprtk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/deps/exprtk/exprtk.hpp -------------------------------------------------------------------------------- /deps/obs-websocket/lib/obs-websocket-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/deps/obs-websocket/lib/obs-websocket-api.h -------------------------------------------------------------------------------- /forms/advanced-scene-switcher.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/forms/advanced-scene-switcher.ui -------------------------------------------------------------------------------- /forms/macro-edit.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/forms/macro-edit.ui -------------------------------------------------------------------------------- /lib/advanced-scene-switcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/advanced-scene-switcher.cpp -------------------------------------------------------------------------------- /lib/advanced-scene-switcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/advanced-scene-switcher.hpp -------------------------------------------------------------------------------- /lib/general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/general.cpp -------------------------------------------------------------------------------- /lib/legacy/scene-group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/scene-group.cpp -------------------------------------------------------------------------------- /lib/legacy/scene-group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/scene-group.hpp -------------------------------------------------------------------------------- /lib/legacy/switch-audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-audio.cpp -------------------------------------------------------------------------------- /lib/legacy/switch-audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-audio.hpp -------------------------------------------------------------------------------- /lib/legacy/switch-executable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-executable.cpp -------------------------------------------------------------------------------- /lib/legacy/switch-executable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-executable.hpp -------------------------------------------------------------------------------- /lib/legacy/switch-file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-file.cpp -------------------------------------------------------------------------------- /lib/legacy/switch-file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-file.hpp -------------------------------------------------------------------------------- /lib/legacy/switch-generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-generic.cpp -------------------------------------------------------------------------------- /lib/legacy/switch-generic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-generic.hpp -------------------------------------------------------------------------------- /lib/legacy/switch-idle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-idle.cpp -------------------------------------------------------------------------------- /lib/legacy/switch-idle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-idle.hpp -------------------------------------------------------------------------------- /lib/legacy/switch-media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-media.cpp -------------------------------------------------------------------------------- /lib/legacy/switch-media.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-media.hpp -------------------------------------------------------------------------------- /lib/legacy/switch-pause.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-pause.cpp -------------------------------------------------------------------------------- /lib/legacy/switch-pause.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-pause.hpp -------------------------------------------------------------------------------- /lib/legacy/switch-random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-random.cpp -------------------------------------------------------------------------------- /lib/legacy/switch-random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-random.hpp -------------------------------------------------------------------------------- /lib/legacy/switch-screen-region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-screen-region.cpp -------------------------------------------------------------------------------- /lib/legacy/switch-screen-region.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-screen-region.hpp -------------------------------------------------------------------------------- /lib/legacy/switch-sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-sequence.cpp -------------------------------------------------------------------------------- /lib/legacy/switch-sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-sequence.hpp -------------------------------------------------------------------------------- /lib/legacy/switch-time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-time.cpp -------------------------------------------------------------------------------- /lib/legacy/switch-time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-time.hpp -------------------------------------------------------------------------------- /lib/legacy/switch-transitions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-transitions.cpp -------------------------------------------------------------------------------- /lib/legacy/switch-transitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-transitions.hpp -------------------------------------------------------------------------------- /lib/legacy/switch-video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-video.cpp -------------------------------------------------------------------------------- /lib/legacy/switch-video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-video.hpp -------------------------------------------------------------------------------- /lib/legacy/switch-window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-window.cpp -------------------------------------------------------------------------------- /lib/legacy/switch-window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/legacy/switch-window.hpp -------------------------------------------------------------------------------- /lib/linux/advanced-scene-switcher-nix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/linux/advanced-scene-switcher-nix.cpp -------------------------------------------------------------------------------- /lib/linux/kwin-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/linux/kwin-helpers.cpp -------------------------------------------------------------------------------- /lib/linux/kwin-helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/linux/kwin-helpers.h -------------------------------------------------------------------------------- /lib/macro/macro-action-edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-action-edit.cpp -------------------------------------------------------------------------------- /lib/macro/macro-action-edit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-action-edit.hpp -------------------------------------------------------------------------------- /lib/macro/macro-action-factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-action-factory.cpp -------------------------------------------------------------------------------- /lib/macro/macro-action-factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-action-factory.hpp -------------------------------------------------------------------------------- /lib/macro/macro-action-macro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-action-macro.cpp -------------------------------------------------------------------------------- /lib/macro/macro-action-macro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-action-macro.hpp -------------------------------------------------------------------------------- /lib/macro/macro-action-queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-action-queue.cpp -------------------------------------------------------------------------------- /lib/macro/macro-action-queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-action-queue.hpp -------------------------------------------------------------------------------- /lib/macro/macro-action-variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-action-variable.cpp -------------------------------------------------------------------------------- /lib/macro/macro-action-variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-action-variable.hpp -------------------------------------------------------------------------------- /lib/macro/macro-action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-action.cpp -------------------------------------------------------------------------------- /lib/macro/macro-action.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-action.hpp -------------------------------------------------------------------------------- /lib/macro/macro-condition-edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-condition-edit.cpp -------------------------------------------------------------------------------- /lib/macro/macro-condition-edit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-condition-edit.hpp -------------------------------------------------------------------------------- /lib/macro/macro-condition-factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-condition-factory.cpp -------------------------------------------------------------------------------- /lib/macro/macro-condition-factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-condition-factory.hpp -------------------------------------------------------------------------------- /lib/macro/macro-condition-macro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-condition-macro.cpp -------------------------------------------------------------------------------- /lib/macro/macro-condition-macro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-condition-macro.hpp -------------------------------------------------------------------------------- /lib/macro/macro-condition-queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-condition-queue.cpp -------------------------------------------------------------------------------- /lib/macro/macro-condition-queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-condition-queue.hpp -------------------------------------------------------------------------------- /lib/macro/macro-condition-tempvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-condition-tempvar.cpp -------------------------------------------------------------------------------- /lib/macro/macro-condition-tempvar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-condition-tempvar.hpp -------------------------------------------------------------------------------- /lib/macro/macro-condition-variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-condition-variable.cpp -------------------------------------------------------------------------------- /lib/macro/macro-condition-variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-condition-variable.hpp -------------------------------------------------------------------------------- /lib/macro/macro-condition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-condition.cpp -------------------------------------------------------------------------------- /lib/macro/macro-condition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-condition.hpp -------------------------------------------------------------------------------- /lib/macro/macro-dock-settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-dock-settings.cpp -------------------------------------------------------------------------------- /lib/macro/macro-dock-settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-dock-settings.hpp -------------------------------------------------------------------------------- /lib/macro/macro-dock-window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-dock-window.cpp -------------------------------------------------------------------------------- /lib/macro/macro-dock-window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-dock-window.hpp -------------------------------------------------------------------------------- /lib/macro/macro-dock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-dock.cpp -------------------------------------------------------------------------------- /lib/macro/macro-dock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-dock.hpp -------------------------------------------------------------------------------- /lib/macro/macro-edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-edit.cpp -------------------------------------------------------------------------------- /lib/macro/macro-edit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-edit.hpp -------------------------------------------------------------------------------- /lib/macro/macro-export-import-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-export-import-dialog.cpp -------------------------------------------------------------------------------- /lib/macro/macro-export-import-dialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-export-import-dialog.hpp -------------------------------------------------------------------------------- /lib/macro/macro-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-helpers.cpp -------------------------------------------------------------------------------- /lib/macro/macro-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-helpers.hpp -------------------------------------------------------------------------------- /lib/macro/macro-input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-input.cpp -------------------------------------------------------------------------------- /lib/macro/macro-input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-input.hpp -------------------------------------------------------------------------------- /lib/macro/macro-list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-list.cpp -------------------------------------------------------------------------------- /lib/macro/macro-list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-list.hpp -------------------------------------------------------------------------------- /lib/macro/macro-ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-ref.cpp -------------------------------------------------------------------------------- /lib/macro/macro-ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-ref.hpp -------------------------------------------------------------------------------- /lib/macro/macro-run-button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-run-button.cpp -------------------------------------------------------------------------------- /lib/macro/macro-run-button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-run-button.hpp -------------------------------------------------------------------------------- /lib/macro/macro-search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-search.cpp -------------------------------------------------------------------------------- /lib/macro/macro-search.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-search.hpp -------------------------------------------------------------------------------- /lib/macro/macro-segment-copy-paste.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-segment-copy-paste.cpp -------------------------------------------------------------------------------- /lib/macro/macro-segment-copy-paste.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-segment-copy-paste.hpp -------------------------------------------------------------------------------- /lib/macro/macro-segment-list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-segment-list.cpp -------------------------------------------------------------------------------- /lib/macro/macro-segment-list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-segment-list.hpp -------------------------------------------------------------------------------- /lib/macro/macro-segment-selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-segment-selection.cpp -------------------------------------------------------------------------------- /lib/macro/macro-segment-selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-segment-selection.hpp -------------------------------------------------------------------------------- /lib/macro/macro-segment-unknown.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-segment-unknown.hpp -------------------------------------------------------------------------------- /lib/macro/macro-segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-segment.cpp -------------------------------------------------------------------------------- /lib/macro/macro-segment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-segment.hpp -------------------------------------------------------------------------------- /lib/macro/macro-selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-selection.cpp -------------------------------------------------------------------------------- /lib/macro/macro-selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-selection.hpp -------------------------------------------------------------------------------- /lib/macro/macro-settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-settings.cpp -------------------------------------------------------------------------------- /lib/macro/macro-settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-settings.hpp -------------------------------------------------------------------------------- /lib/macro/macro-signals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-signals.cpp -------------------------------------------------------------------------------- /lib/macro/macro-signals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-signals.hpp -------------------------------------------------------------------------------- /lib/macro/macro-tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-tab.cpp -------------------------------------------------------------------------------- /lib/macro/macro-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-tree.cpp -------------------------------------------------------------------------------- /lib/macro/macro-tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro-tree.hpp -------------------------------------------------------------------------------- /lib/macro/macro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro.cpp -------------------------------------------------------------------------------- /lib/macro/macro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/macro/macro.hpp -------------------------------------------------------------------------------- /lib/osx/advanced-scene-switcher-osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/osx/advanced-scene-switcher-osx.mm -------------------------------------------------------------------------------- /lib/platform-funcs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/platform-funcs.hpp -------------------------------------------------------------------------------- /lib/queue/action-queue-tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/queue/action-queue-tab.cpp -------------------------------------------------------------------------------- /lib/queue/action-queue-tab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/queue/action-queue-tab.hpp -------------------------------------------------------------------------------- /lib/queue/action-queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/queue/action-queue.cpp -------------------------------------------------------------------------------- /lib/queue/action-queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/queue/action-queue.hpp -------------------------------------------------------------------------------- /lib/switcher-data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/switcher-data.cpp -------------------------------------------------------------------------------- /lib/switcher-data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/switcher-data.hpp -------------------------------------------------------------------------------- /lib/utils/auto-update-tooltip-label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/auto-update-tooltip-label.cpp -------------------------------------------------------------------------------- /lib/utils/auto-update-tooltip-label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/auto-update-tooltip-label.hpp -------------------------------------------------------------------------------- /lib/utils/backup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/backup.cpp -------------------------------------------------------------------------------- /lib/utils/backup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/backup.hpp -------------------------------------------------------------------------------- /lib/utils/canvas-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/canvas-helpers.cpp -------------------------------------------------------------------------------- /lib/utils/canvas-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/canvas-helpers.hpp -------------------------------------------------------------------------------- /lib/utils/condition-logic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/condition-logic.cpp -------------------------------------------------------------------------------- /lib/utils/condition-logic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/condition-logic.hpp -------------------------------------------------------------------------------- /lib/utils/curl-helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/curl-helper.cpp -------------------------------------------------------------------------------- /lib/utils/curl-helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/curl-helper.hpp -------------------------------------------------------------------------------- /lib/utils/cursor-shape-changer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/cursor-shape-changer.cpp -------------------------------------------------------------------------------- /lib/utils/cursor-shape-changer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/cursor-shape-changer.hpp -------------------------------------------------------------------------------- /lib/utils/double-slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/double-slider.cpp -------------------------------------------------------------------------------- /lib/utils/double-slider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/double-slider.hpp -------------------------------------------------------------------------------- /lib/utils/duration-control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/duration-control.cpp -------------------------------------------------------------------------------- /lib/utils/duration-control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/duration-control.hpp -------------------------------------------------------------------------------- /lib/utils/duration-modifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/duration-modifier.cpp -------------------------------------------------------------------------------- /lib/utils/duration-modifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/duration-modifier.hpp -------------------------------------------------------------------------------- /lib/utils/duration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/duration.cpp -------------------------------------------------------------------------------- /lib/utils/duration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/duration.hpp -------------------------------------------------------------------------------- /lib/utils/export-symbol-helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/export-symbol-helper.hpp -------------------------------------------------------------------------------- /lib/utils/file-selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/file-selection.cpp -------------------------------------------------------------------------------- /lib/utils/file-selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/file-selection.hpp -------------------------------------------------------------------------------- /lib/utils/filter-combo-box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/filter-combo-box.cpp -------------------------------------------------------------------------------- /lib/utils/filter-combo-box.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/filter-combo-box.hpp -------------------------------------------------------------------------------- /lib/utils/help-icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/help-icon.cpp -------------------------------------------------------------------------------- /lib/utils/help-icon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/help-icon.hpp -------------------------------------------------------------------------------- /lib/utils/item-selection-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/item-selection-helpers.cpp -------------------------------------------------------------------------------- /lib/utils/item-selection-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/item-selection-helpers.hpp -------------------------------------------------------------------------------- /lib/utils/json-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/json-helpers.cpp -------------------------------------------------------------------------------- /lib/utils/json-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/json-helpers.hpp -------------------------------------------------------------------------------- /lib/utils/layout-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/layout-helpers.cpp -------------------------------------------------------------------------------- /lib/utils/layout-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/layout-helpers.hpp -------------------------------------------------------------------------------- /lib/utils/list-controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/list-controls.cpp -------------------------------------------------------------------------------- /lib/utils/list-controls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/list-controls.hpp -------------------------------------------------------------------------------- /lib/utils/list-editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/list-editor.cpp -------------------------------------------------------------------------------- /lib/utils/list-editor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/list-editor.hpp -------------------------------------------------------------------------------- /lib/utils/log-helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/log-helper.cpp -------------------------------------------------------------------------------- /lib/utils/log-helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/log-helper.hpp -------------------------------------------------------------------------------- /lib/utils/math-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/math-helpers.cpp -------------------------------------------------------------------------------- /lib/utils/math-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/math-helpers.hpp -------------------------------------------------------------------------------- /lib/utils/message-buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/message-buffer.hpp -------------------------------------------------------------------------------- /lib/utils/message-dispatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/message-dispatcher.hpp -------------------------------------------------------------------------------- /lib/utils/mouse-wheel-guard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/mouse-wheel-guard.cpp -------------------------------------------------------------------------------- /lib/utils/mouse-wheel-guard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/mouse-wheel-guard.hpp -------------------------------------------------------------------------------- /lib/utils/name-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/name-dialog.cpp -------------------------------------------------------------------------------- /lib/utils/name-dialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/name-dialog.hpp -------------------------------------------------------------------------------- /lib/utils/non-modal-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/non-modal-dialog.cpp -------------------------------------------------------------------------------- /lib/utils/non-modal-dialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/non-modal-dialog.hpp -------------------------------------------------------------------------------- /lib/utils/obs-module-helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/obs-module-helper.cpp -------------------------------------------------------------------------------- /lib/utils/obs-module-helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/obs-module-helper.hpp -------------------------------------------------------------------------------- /lib/utils/path-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/path-helpers.cpp -------------------------------------------------------------------------------- /lib/utils/path-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/path-helpers.hpp -------------------------------------------------------------------------------- /lib/utils/plugin-state-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/plugin-state-helpers.cpp -------------------------------------------------------------------------------- /lib/utils/plugin-state-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/plugin-state-helpers.hpp -------------------------------------------------------------------------------- /lib/utils/priority-helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/priority-helper.cpp -------------------------------------------------------------------------------- /lib/utils/priority-helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/priority-helper.hpp -------------------------------------------------------------------------------- /lib/utils/regex-config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/regex-config.cpp -------------------------------------------------------------------------------- /lib/utils/regex-config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/regex-config.hpp -------------------------------------------------------------------------------- /lib/utils/resizable-widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/resizable-widget.cpp -------------------------------------------------------------------------------- /lib/utils/resizable-widget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/resizable-widget.hpp -------------------------------------------------------------------------------- /lib/utils/resizing-text-edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/resizing-text-edit.cpp -------------------------------------------------------------------------------- /lib/utils/resizing-text-edit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/resizing-text-edit.hpp -------------------------------------------------------------------------------- /lib/utils/resource-table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/resource-table.cpp -------------------------------------------------------------------------------- /lib/utils/resource-table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/resource-table.hpp -------------------------------------------------------------------------------- /lib/utils/scene-selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/scene-selection.cpp -------------------------------------------------------------------------------- /lib/utils/scene-selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/scene-selection.hpp -------------------------------------------------------------------------------- /lib/utils/scene-switch-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/scene-switch-helpers.cpp -------------------------------------------------------------------------------- /lib/utils/scene-switch-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/scene-switch-helpers.hpp -------------------------------------------------------------------------------- /lib/utils/screenshot-helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/screenshot-helper.cpp -------------------------------------------------------------------------------- /lib/utils/screenshot-helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/screenshot-helper.hpp -------------------------------------------------------------------------------- /lib/utils/section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/section.cpp -------------------------------------------------------------------------------- /lib/utils/section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/section.hpp -------------------------------------------------------------------------------- /lib/utils/selection-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/selection-helpers.cpp -------------------------------------------------------------------------------- /lib/utils/selection-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/selection-helpers.hpp -------------------------------------------------------------------------------- /lib/utils/single-char-selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/single-char-selection.cpp -------------------------------------------------------------------------------- /lib/utils/single-char-selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/single-char-selection.hpp -------------------------------------------------------------------------------- /lib/utils/slider-spinbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/slider-spinbox.cpp -------------------------------------------------------------------------------- /lib/utils/slider-spinbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/slider-spinbox.hpp -------------------------------------------------------------------------------- /lib/utils/source-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/source-helpers.cpp -------------------------------------------------------------------------------- /lib/utils/source-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/source-helpers.hpp -------------------------------------------------------------------------------- /lib/utils/source-selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/source-selection.cpp -------------------------------------------------------------------------------- /lib/utils/source-selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/source-selection.hpp -------------------------------------------------------------------------------- /lib/utils/splitter-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/splitter-helpers.cpp -------------------------------------------------------------------------------- /lib/utils/splitter-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/splitter-helpers.hpp -------------------------------------------------------------------------------- /lib/utils/status-control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/status-control.cpp -------------------------------------------------------------------------------- /lib/utils/status-control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/status-control.hpp -------------------------------------------------------------------------------- /lib/utils/string-list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/string-list.cpp -------------------------------------------------------------------------------- /lib/utils/string-list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/string-list.hpp -------------------------------------------------------------------------------- /lib/utils/switch-button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/switch-button.cpp -------------------------------------------------------------------------------- /lib/utils/switch-button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/switch-button.hpp -------------------------------------------------------------------------------- /lib/utils/sync-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/sync-helpers.cpp -------------------------------------------------------------------------------- /lib/utils/sync-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/sync-helpers.hpp -------------------------------------------------------------------------------- /lib/utils/tab-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/tab-helpers.cpp -------------------------------------------------------------------------------- /lib/utils/tab-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/tab-helpers.hpp -------------------------------------------------------------------------------- /lib/utils/temp-variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/temp-variable.cpp -------------------------------------------------------------------------------- /lib/utils/temp-variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/temp-variable.hpp -------------------------------------------------------------------------------- /lib/utils/time-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/time-helpers.cpp -------------------------------------------------------------------------------- /lib/utils/time-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/time-helpers.hpp -------------------------------------------------------------------------------- /lib/utils/ui-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/ui-helpers.cpp -------------------------------------------------------------------------------- /lib/utils/ui-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/ui-helpers.hpp -------------------------------------------------------------------------------- /lib/utils/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/utility.cpp -------------------------------------------------------------------------------- /lib/utils/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/utility.hpp -------------------------------------------------------------------------------- /lib/utils/volume-control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/volume-control.cpp -------------------------------------------------------------------------------- /lib/utils/volume-control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/volume-control.hpp -------------------------------------------------------------------------------- /lib/utils/websocket-api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/websocket-api.cpp -------------------------------------------------------------------------------- /lib/utils/websocket-api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/utils/websocket-api.hpp -------------------------------------------------------------------------------- /lib/variables/variable-line-edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/variables/variable-line-edit.cpp -------------------------------------------------------------------------------- /lib/variables/variable-line-edit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/variables/variable-line-edit.hpp -------------------------------------------------------------------------------- /lib/variables/variable-number.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/variables/variable-number.hpp -------------------------------------------------------------------------------- /lib/variables/variable-number.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/variables/variable-number.tpp -------------------------------------------------------------------------------- /lib/variables/variable-spinbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/variables/variable-spinbox.cpp -------------------------------------------------------------------------------- /lib/variables/variable-spinbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/variables/variable-spinbox.hpp -------------------------------------------------------------------------------- /lib/variables/variable-string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/variables/variable-string.cpp -------------------------------------------------------------------------------- /lib/variables/variable-string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/variables/variable-string.hpp -------------------------------------------------------------------------------- /lib/variables/variable-tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/variables/variable-tab.cpp -------------------------------------------------------------------------------- /lib/variables/variable-tab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/variables/variable-tab.hpp -------------------------------------------------------------------------------- /lib/variables/variable-text-edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/variables/variable-text-edit.cpp -------------------------------------------------------------------------------- /lib/variables/variable-text-edit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/variables/variable-text-edit.hpp -------------------------------------------------------------------------------- /lib/variables/variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/variables/variable.cpp -------------------------------------------------------------------------------- /lib/variables/variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/variables/variable.hpp -------------------------------------------------------------------------------- /lib/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/version.h -------------------------------------------------------------------------------- /lib/win/advanced-scene-switcher-win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/lib/win/advanced-scene-switcher-win.cpp -------------------------------------------------------------------------------- /module/advanced-scene-switcher-module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/module/advanced-scene-switcher-module.c -------------------------------------------------------------------------------- /plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/base/macro-action-audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-audio.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-audio.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-clipboard.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-clipboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-clipboard.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-file.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-file.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-filter.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-filter.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-hotkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-hotkey.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-hotkey.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-hotkey.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-http-legacy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-http-legacy.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-http-legacy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-http-legacy.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-log.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-log.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-media.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-media.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-media.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-obs-settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-obs-settings.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-obs-settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-obs-settings.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-osc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-osc.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-osc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-osc.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-plugin-state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-plugin-state.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-plugin-state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-plugin-state.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-profile.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-profile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-profile.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-projector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-projector.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-projector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-projector.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-random.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-random.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-recording.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-recording.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-recording.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-recording.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-replay-buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-replay-buffer.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-replay-buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-replay-buffer.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-run.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-run.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-run.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-scene-collection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-scene-collection.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-scene-collection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-scene-collection.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-scene-lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-scene-lock.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-scene-lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-scene-lock.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-scene-order.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-scene-order.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-scene-order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-scene-order.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-scene-switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-scene-switch.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-scene-switch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-scene-switch.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-scene-transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-scene-transform.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-scene-transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-scene-transform.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-scene-visibility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-scene-visibility.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-scene-visibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-scene-visibility.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-screenshot.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-screenshot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-screenshot.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-sequence.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-sequence.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-source.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-source.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-streaming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-streaming.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-streaming.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-streaming.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-studio-mode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-studio-mode.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-studio-mode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-studio-mode.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-systray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-systray.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-systray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-systray.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-timer.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-timer.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-transition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-transition.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-transition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-transition.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-virtual-cam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-virtual-cam.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-virtual-cam.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-virtual-cam.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-wait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-wait.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-wait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-wait.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-websocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-websocket.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-websocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-websocket.hpp -------------------------------------------------------------------------------- /plugins/base/macro-action-window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-window.cpp -------------------------------------------------------------------------------- /plugins/base/macro-action-window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-action-window.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-audio.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-audio.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-clipboard.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-clipboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-clipboard.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-cursor.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-cursor.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-date.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-date.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-date.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-display.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-display.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-display.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-file.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-file.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-filter.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-filter.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-folder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-folder.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-folder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-folder.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-game-capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-game-capture.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-game-capture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-game-capture.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-hotkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-hotkey.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-hotkey.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-hotkey.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-idle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-idle.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-idle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-idle.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-media.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-media.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-media.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-obs-stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-obs-stats.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-obs-stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-obs-stats.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-plugin-state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-plugin-state.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-plugin-state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-plugin-state.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-process.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-process.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-profile.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-profile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-profile.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-recording.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-recording.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-recording.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-recording.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-replay-buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-replay-buffer.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-replay-buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-replay-buffer.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-run.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-run.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-run.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-scene-order.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-scene-order.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-scene-order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-scene-order.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-scene-transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-scene-transform.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-scene-transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-scene-transform.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-scene-visibility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-scene-visibility.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-scene-visibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-scene-visibility.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-scene.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-scene.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-screenshot.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-screenshot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-screenshot.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-slideshow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-slideshow.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-slideshow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-slideshow.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-source.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-source.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-streaming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-streaming.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-streaming.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-streaming.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-studio-mode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-studio-mode.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-studio-mode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-studio-mode.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-timer.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-timer.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-transition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-transition.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-transition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-transition.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-virtual-cam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-virtual-cam.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-virtual-cam.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-virtual-cam.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-websocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-websocket.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-websocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-websocket.hpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-window.cpp -------------------------------------------------------------------------------- /plugins/base/macro-condition-window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/macro-condition-window.hpp -------------------------------------------------------------------------------- /plugins/base/utils/audio-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/audio-helpers.cpp -------------------------------------------------------------------------------- /plugins/base/utils/audio-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/audio-helpers.hpp -------------------------------------------------------------------------------- /plugins/base/utils/connection-manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/connection-manager.cpp -------------------------------------------------------------------------------- /plugins/base/utils/connection-manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/connection-manager.hpp -------------------------------------------------------------------------------- /plugins/base/utils/cursor-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/cursor-helpers.cpp -------------------------------------------------------------------------------- /plugins/base/utils/cursor-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/cursor-helpers.hpp -------------------------------------------------------------------------------- /plugins/base/utils/filter-selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/filter-selection.cpp -------------------------------------------------------------------------------- /plugins/base/utils/filter-selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/filter-selection.hpp -------------------------------------------------------------------------------- /plugins/base/utils/hotkey-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/hotkey-helpers.cpp -------------------------------------------------------------------------------- /plugins/base/utils/hotkey-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/hotkey-helpers.hpp -------------------------------------------------------------------------------- /plugins/base/utils/linux/linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/linux/linux.cpp -------------------------------------------------------------------------------- /plugins/base/utils/monitor-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/monitor-helpers.cpp -------------------------------------------------------------------------------- /plugins/base/utils/monitor-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/monitor-helpers.hpp -------------------------------------------------------------------------------- /plugins/base/utils/osc-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/osc-helpers.cpp -------------------------------------------------------------------------------- /plugins/base/utils/osc-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/osc-helpers.hpp -------------------------------------------------------------------------------- /plugins/base/utils/osx/osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/osx/osx.mm -------------------------------------------------------------------------------- /plugins/base/utils/process-config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/process-config.cpp -------------------------------------------------------------------------------- /plugins/base/utils/process-config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/process-config.hpp -------------------------------------------------------------------------------- /plugins/base/utils/profile-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/profile-helpers.cpp -------------------------------------------------------------------------------- /plugins/base/utils/profile-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/profile-helpers.hpp -------------------------------------------------------------------------------- /plugins/base/utils/scene-item-selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/scene-item-selection.cpp -------------------------------------------------------------------------------- /plugins/base/utils/scene-item-selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/scene-item-selection.hpp -------------------------------------------------------------------------------- /plugins/base/utils/scene-item-transform-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/scene-item-transform-helpers.cpp -------------------------------------------------------------------------------- /plugins/base/utils/scene-item-transform-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/scene-item-transform-helpers.hpp -------------------------------------------------------------------------------- /plugins/base/utils/source-properties-button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/source-properties-button.cpp -------------------------------------------------------------------------------- /plugins/base/utils/source-properties-button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/source-properties-button.hpp -------------------------------------------------------------------------------- /plugins/base/utils/source-setting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/source-setting.cpp -------------------------------------------------------------------------------- /plugins/base/utils/source-setting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/source-setting.hpp -------------------------------------------------------------------------------- /plugins/base/utils/source-settings-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/source-settings-helpers.cpp -------------------------------------------------------------------------------- /plugins/base/utils/source-settings-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/source-settings-helpers.hpp -------------------------------------------------------------------------------- /plugins/base/utils/striped-frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/striped-frame.cpp -------------------------------------------------------------------------------- /plugins/base/utils/striped-frame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/striped-frame.hpp -------------------------------------------------------------------------------- /plugins/base/utils/text-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/text-helpers.cpp -------------------------------------------------------------------------------- /plugins/base/utils/text-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/text-helpers.hpp -------------------------------------------------------------------------------- /plugins/base/utils/transform-setting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/transform-setting.cpp -------------------------------------------------------------------------------- /plugins/base/utils/transform-setting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/transform-setting.hpp -------------------------------------------------------------------------------- /plugins/base/utils/transition-selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/transition-selection.cpp -------------------------------------------------------------------------------- /plugins/base/utils/transition-selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/transition-selection.hpp -------------------------------------------------------------------------------- /plugins/base/utils/websocket-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/websocket-helpers.cpp -------------------------------------------------------------------------------- /plugins/base/utils/websocket-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/websocket-helpers.hpp -------------------------------------------------------------------------------- /plugins/base/utils/websocket-tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/websocket-tab.cpp -------------------------------------------------------------------------------- /plugins/base/utils/websocket-tab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/websocket-tab.hpp -------------------------------------------------------------------------------- /plugins/base/utils/window-selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/window-selection.cpp -------------------------------------------------------------------------------- /plugins/base/utils/window-selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/window-selection.hpp -------------------------------------------------------------------------------- /plugins/base/utils/windows/windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/base/utils/windows/windows.cpp -------------------------------------------------------------------------------- /plugins/http/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/http/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/http/key-value-list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/http/key-value-list.cpp -------------------------------------------------------------------------------- /plugins/http/key-value-list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/http/key-value-list.hpp -------------------------------------------------------------------------------- /plugins/http/macro-action-http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/http/macro-action-http.cpp -------------------------------------------------------------------------------- /plugins/http/macro-action-http.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/http/macro-action-http.hpp -------------------------------------------------------------------------------- /plugins/midi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/midi/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/midi/macro-action-midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/midi/macro-action-midi.cpp -------------------------------------------------------------------------------- /plugins/midi/macro-action-midi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/midi/macro-action-midi.hpp -------------------------------------------------------------------------------- /plugins/midi/macro-condition-midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/midi/macro-condition-midi.cpp -------------------------------------------------------------------------------- /plugins/midi/macro-condition-midi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/midi/macro-condition-midi.hpp -------------------------------------------------------------------------------- /plugins/midi/midi-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/midi/midi-helpers.cpp -------------------------------------------------------------------------------- /plugins/midi/midi-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/midi/midi-helpers.hpp -------------------------------------------------------------------------------- /plugins/mqtt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/mqtt/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/mqtt/macro-action-mqtt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/mqtt/macro-action-mqtt.cpp -------------------------------------------------------------------------------- /plugins/mqtt/macro-action-mqtt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/mqtt/macro-action-mqtt.hpp -------------------------------------------------------------------------------- /plugins/mqtt/macro-condition-mqtt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/mqtt/macro-condition-mqtt.cpp -------------------------------------------------------------------------------- /plugins/mqtt/macro-condition-mqtt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/mqtt/macro-condition-mqtt.hpp -------------------------------------------------------------------------------- /plugins/mqtt/mqtt-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/mqtt/mqtt-helpers.cpp -------------------------------------------------------------------------------- /plugins/mqtt/mqtt-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/mqtt/mqtt-helpers.hpp -------------------------------------------------------------------------------- /plugins/mqtt/mqtt-tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/mqtt/mqtt-tab.cpp -------------------------------------------------------------------------------- /plugins/mqtt/mqtt-tab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/mqtt/mqtt-tab.hpp -------------------------------------------------------------------------------- /plugins/mqtt/topic-selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/mqtt/topic-selection.cpp -------------------------------------------------------------------------------- /plugins/mqtt/topic-selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/mqtt/topic-selection.hpp -------------------------------------------------------------------------------- /plugins/openvr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/openvr/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/openvr/macro-condition-openvr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/openvr/macro-condition-openvr.cpp -------------------------------------------------------------------------------- /plugins/openvr/macro-condition-openvr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/openvr/macro-condition-openvr.hpp -------------------------------------------------------------------------------- /plugins/scripting/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/scripting/macro-action-script-inline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/macro-action-script-inline.cpp -------------------------------------------------------------------------------- /plugins/scripting/macro-action-script-inline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/macro-action-script-inline.hpp -------------------------------------------------------------------------------- /plugins/scripting/macro-action-script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/macro-action-script.cpp -------------------------------------------------------------------------------- /plugins/scripting/macro-action-script.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/macro-action-script.hpp -------------------------------------------------------------------------------- /plugins/scripting/macro-condition-script-inline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/macro-condition-script-inline.cpp -------------------------------------------------------------------------------- /plugins/scripting/macro-condition-script-inline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/macro-condition-script-inline.hpp -------------------------------------------------------------------------------- /plugins/scripting/macro-condition-script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/macro-condition-script.cpp -------------------------------------------------------------------------------- /plugins/scripting/macro-condition-script.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/macro-condition-script.hpp -------------------------------------------------------------------------------- /plugins/scripting/macro-script-handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/macro-script-handler.cpp -------------------------------------------------------------------------------- /plugins/scripting/macro-script-handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/macro-script-handler.hpp -------------------------------------------------------------------------------- /plugins/scripting/macro-segment-script-inline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/macro-segment-script-inline.cpp -------------------------------------------------------------------------------- /plugins/scripting/macro-segment-script-inline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/macro-segment-script-inline.hpp -------------------------------------------------------------------------------- /plugins/scripting/macro-segment-script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/macro-segment-script.cpp -------------------------------------------------------------------------------- /plugins/scripting/macro-segment-script.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/macro-segment-script.hpp -------------------------------------------------------------------------------- /plugins/scripting/utils/inline-script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/utils/inline-script.cpp -------------------------------------------------------------------------------- /plugins/scripting/utils/inline-script.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/utils/inline-script.hpp -------------------------------------------------------------------------------- /plugins/scripting/utils/obs-script-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/utils/obs-script-helpers.cpp -------------------------------------------------------------------------------- /plugins/scripting/utils/obs-script-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/utils/obs-script-helpers.hpp -------------------------------------------------------------------------------- /plugins/scripting/utils/properties-view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/utils/properties-view.cpp -------------------------------------------------------------------------------- /plugins/scripting/utils/properties-view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/utils/properties-view.hpp -------------------------------------------------------------------------------- /plugins/scripting/utils/properties-view.moc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/scripting/utils/properties-view.moc.hpp -------------------------------------------------------------------------------- /plugins/stream-deck/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/stream-deck/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/stream-deck/macro-condition-stream-deck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/stream-deck/macro-condition-stream-deck.cpp -------------------------------------------------------------------------------- /plugins/stream-deck/macro-condition-stream-deck.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/stream-deck/macro-condition-stream-deck.hpp -------------------------------------------------------------------------------- /plugins/twitch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/twitch/category-selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/category-selection.cpp -------------------------------------------------------------------------------- /plugins/twitch/category-selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/category-selection.hpp -------------------------------------------------------------------------------- /plugins/twitch/channel-selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/channel-selection.cpp -------------------------------------------------------------------------------- /plugins/twitch/channel-selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/channel-selection.hpp -------------------------------------------------------------------------------- /plugins/twitch/chat-connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/chat-connection.cpp -------------------------------------------------------------------------------- /plugins/twitch/chat-connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/chat-connection.hpp -------------------------------------------------------------------------------- /plugins/twitch/chat-message-pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/chat-message-pattern.cpp -------------------------------------------------------------------------------- /plugins/twitch/chat-message-pattern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/chat-message-pattern.hpp -------------------------------------------------------------------------------- /plugins/twitch/content-classification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/content-classification.cpp -------------------------------------------------------------------------------- /plugins/twitch/content-classification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/content-classification.hpp -------------------------------------------------------------------------------- /plugins/twitch/event-sub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/event-sub.cpp -------------------------------------------------------------------------------- /plugins/twitch/event-sub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/event-sub.hpp -------------------------------------------------------------------------------- /plugins/twitch/language-selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/language-selection.cpp -------------------------------------------------------------------------------- /plugins/twitch/language-selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/language-selection.hpp -------------------------------------------------------------------------------- /plugins/twitch/macro-action-twitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/macro-action-twitch.cpp -------------------------------------------------------------------------------- /plugins/twitch/macro-action-twitch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/macro-action-twitch.hpp -------------------------------------------------------------------------------- /plugins/twitch/macro-condition-twitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/macro-condition-twitch.cpp -------------------------------------------------------------------------------- /plugins/twitch/macro-condition-twitch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/macro-condition-twitch.hpp -------------------------------------------------------------------------------- /plugins/twitch/points-reward-selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/points-reward-selection.cpp -------------------------------------------------------------------------------- /plugins/twitch/points-reward-selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/points-reward-selection.hpp -------------------------------------------------------------------------------- /plugins/twitch/tag-selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/tag-selection.cpp -------------------------------------------------------------------------------- /plugins/twitch/tag-selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/tag-selection.hpp -------------------------------------------------------------------------------- /plugins/twitch/token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/token.cpp -------------------------------------------------------------------------------- /plugins/twitch/token.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/token.hpp -------------------------------------------------------------------------------- /plugins/twitch/twitch-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/twitch-helpers.cpp -------------------------------------------------------------------------------- /plugins/twitch/twitch-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/twitch-helpers.hpp -------------------------------------------------------------------------------- /plugins/twitch/twitch-tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/twitch-tab.cpp -------------------------------------------------------------------------------- /plugins/twitch/twitch-tab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/twitch/twitch-tab.hpp -------------------------------------------------------------------------------- /plugins/usb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/usb/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/usb/macro-condition-usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/usb/macro-condition-usb.cpp -------------------------------------------------------------------------------- /plugins/usb/macro-condition-usb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/usb/macro-condition-usb.hpp -------------------------------------------------------------------------------- /plugins/usb/usb-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/usb/usb-helpers.cpp -------------------------------------------------------------------------------- /plugins/usb/usb-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/usb/usb-helpers.hpp -------------------------------------------------------------------------------- /plugins/video/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/video/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/video/area-selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/video/area-selection.cpp -------------------------------------------------------------------------------- /plugins/video/area-selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/video/area-selection.hpp -------------------------------------------------------------------------------- /plugins/video/macro-condition-video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/video/macro-condition-video.cpp -------------------------------------------------------------------------------- /plugins/video/macro-condition-video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/video/macro-condition-video.hpp -------------------------------------------------------------------------------- /plugins/video/opencv-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/video/opencv-helpers.cpp -------------------------------------------------------------------------------- /plugins/video/opencv-helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/video/opencv-helpers.hpp -------------------------------------------------------------------------------- /plugins/video/parameter-wrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/video/parameter-wrappers.cpp -------------------------------------------------------------------------------- /plugins/video/parameter-wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/video/parameter-wrappers.hpp -------------------------------------------------------------------------------- /plugins/video/preview-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/video/preview-dialog.cpp -------------------------------------------------------------------------------- /plugins/video/preview-dialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/video/preview-dialog.hpp -------------------------------------------------------------------------------- /plugins/video/screenshot-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/video/screenshot-dialog.cpp -------------------------------------------------------------------------------- /plugins/video/screenshot-dialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/plugins/video/screenshot-dialog.hpp -------------------------------------------------------------------------------- /scripting/examples.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/scripting/examples.lua -------------------------------------------------------------------------------- /scripting/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/scripting/examples.py -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/tests/catch.hpp -------------------------------------------------------------------------------- /tests/mocks/obs-data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/tests/mocks/obs-data.cpp -------------------------------------------------------------------------------- /tests/mocks/obs-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/tests/mocks/obs-data.h -------------------------------------------------------------------------------- /tests/mocks/path-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/tests/mocks/path-helpers.cpp -------------------------------------------------------------------------------- /tests/mocks/ui-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/tests/mocks/ui-helpers.cpp -------------------------------------------------------------------------------- /tests/test-condition-logic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/tests/test-condition-logic.cpp -------------------------------------------------------------------------------- /tests/test-duration-modifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/tests/test-duration-modifier.cpp -------------------------------------------------------------------------------- /tests/test-json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/tests/test-json.cpp -------------------------------------------------------------------------------- /tests/test-main.cpp: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #include "catch.hpp" 3 | -------------------------------------------------------------------------------- /tests/test-math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/tests/test-math.cpp -------------------------------------------------------------------------------- /tests/test-regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/tests/test-regex.cpp -------------------------------------------------------------------------------- /tests/test-utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/tests/test-utility.cpp -------------------------------------------------------------------------------- /tests/test-variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarmUpTill/SceneSwitcher/HEAD/tests/test-variable.cpp --------------------------------------------------------------------------------