0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00
obs-studio/UI/window-basic-vcam-config.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
542 B
C++
Raw Normal View History

#pragma once
#include <obs.hpp>
#include <QDialog>
#include <memory>
#include "ui_OBSBasicVCamConfig.h"
class OBSBasicVCamConfig : public QDialog {
Q_OBJECT
public:
static void Init();
static video_t *StartVideo();
static void StopVideo();
static void DestroyView();
static void UpdateOutputSource();
static void SaveData(obs_data_t *data, bool saving);
explicit OBSBasicVCamConfig(QWidget *parent = 0);
private slots:
void OutputTypeChanged(int type);
void Save();
private:
std::unique_ptr<Ui::OBSBasicVCamConfig> ui;
};