mirror of
https://github.com/Palakis/obs-websocket.git
synced 2024-08-30 18:12:16 +00:00
90 lines
3.1 KiB
C++
90 lines
3.1 KiB
C++
/*
|
|
obs-websocket
|
|
Copyright (C) 2016-2019 Stéphane Lepin <stephane.lepin@gmail.com>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with this program. If not, see <https://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <QtCore/QString>
|
|
#include <QtWidgets/QSpinBox>
|
|
#include <QtWidgets/QPushButton>
|
|
#include <QtWidgets/QLayout>
|
|
#include <QtWidgets/QListWidget>
|
|
#include <QtWidgets/QSystemTrayIcon>
|
|
|
|
#include <obs.hpp>
|
|
#include <obs-module.h>
|
|
#include <util/config-file.h>
|
|
|
|
typedef void(*PauseRecordingFunction)(bool);
|
|
typedef bool(*RecordingPausedFunction)();
|
|
|
|
class Utils {
|
|
public:
|
|
static obs_data_array_t* StringListToArray(char** strings, const char* key);
|
|
static obs_data_array_t* GetSceneItems(obs_source_t* source);
|
|
static obs_data_t* GetSceneItemData(obs_sceneitem_t* item);
|
|
|
|
// These two functions support nested lookup into groups
|
|
static obs_sceneitem_t* GetSceneItemFromName(obs_scene_t* scene, QString name);
|
|
static obs_sceneitem_t* GetSceneItemFromId(obs_scene_t* scene, int64_t id);
|
|
|
|
static obs_sceneitem_t* GetSceneItemFromItem(obs_scene_t* scene, obs_data_t* item);
|
|
static obs_scene_t* GetSceneFromNameOrCurrent(QString sceneName);
|
|
static obs_data_t* GetSceneItemPropertiesData(obs_sceneitem_t* item);
|
|
|
|
static obs_data_t* GetSourceFilterInfo(obs_source_t* filter, bool includeSettings);
|
|
static obs_data_array_t* GetSourceFiltersList(obs_source_t* source, bool includeSettings);
|
|
|
|
static bool IsValidAlignment(const uint32_t alignment);
|
|
|
|
static obs_data_array_t* GetScenes();
|
|
static obs_data_t* GetSceneData(obs_source_t* source);
|
|
|
|
// TODO contribute a proper frontend API method for this to OBS and remove this hack
|
|
static QSpinBox* GetTransitionDurationControl();
|
|
static int GetTransitionDuration(obs_source_t* transition);
|
|
static obs_source_t* GetTransitionFromName(QString transitionName);
|
|
static bool SetTransitionByName(QString transitionName);
|
|
|
|
static QString OBSVersionString();
|
|
|
|
static QSystemTrayIcon* GetTrayIcon();
|
|
static void SysTrayNotify(
|
|
QString text,
|
|
QSystemTrayIcon::MessageIcon n,
|
|
QString title = QString("obs-websocket"));
|
|
|
|
static const char* GetRecordingFolder();
|
|
static bool SetRecordingFolder(const char* path);
|
|
|
|
static QString ParseDataToQueryString(obs_data_t* data);
|
|
static obs_hotkey_t* FindHotkeyByName(QString name);
|
|
|
|
static bool ReplayBufferEnabled();
|
|
static void StartReplayBuffer();
|
|
static bool IsRPHotkeySet();
|
|
|
|
static const char* GetFilenameFormatting();
|
|
static bool SetFilenameFormatting(const char* filenameFormatting);
|
|
|
|
static bool RecordingPauseSupported();
|
|
static bool RecordingPaused();
|
|
static void PauseRecording(bool pause);
|
|
};
|