New upstream version 23.2.1+dfsg1
This commit is contained in:
parent
cdc9a9fc87
commit
b14f9eae6d
1017 changed files with 37232 additions and 11111 deletions
34
UI/frontend-plugins/decklink-output-ui/DecklinkOutputUI.h
Normal file
34
UI/frontend-plugins/decklink-output-ui/DecklinkOutputUI.h
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
#pragma once
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
#include "ui_output.h"
|
||||
#include "../../UI/properties-view.hpp"
|
||||
|
||||
class DecklinkOutputUI : public QDialog {
|
||||
Q_OBJECT
|
||||
private:
|
||||
OBSPropertiesView *propertiesView;
|
||||
OBSPropertiesView *previewPropertiesView;
|
||||
|
||||
public slots:
|
||||
void StartOutput();
|
||||
void StopOutput();
|
||||
void PropertiesChanged();
|
||||
|
||||
void StartPreviewOutput();
|
||||
void StopPreviewOutput();
|
||||
void PreviewPropertiesChanged();
|
||||
|
||||
public:
|
||||
std::unique_ptr<Ui_Output> ui;
|
||||
DecklinkOutputUI(QWidget *parent);
|
||||
|
||||
void ShowHideDialog();
|
||||
|
||||
void SetupPropertiesView();
|
||||
void SaveSettings();
|
||||
|
||||
void SetupPreviewPropertiesView();
|
||||
void SavePreviewSettings();
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue