mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-14 10:24:12 -04:00
97 lines
2.8 KiB
C++
97 lines
2.8 KiB
C++
/******************************************************************************
|
|
Copyright (C) 2023 by Lain Bailey <lain@obsproject.com>
|
|
Copyright (C) 2025 by Taylor Giampaolo <warchamp7@obsproject.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 <http://www.gnu.org/licenses/>.
|
|
******************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <OBSApp.hpp>
|
|
#include "ui_OBSBasicSourceSelect.h"
|
|
|
|
#include <components/FlowLayout.hpp>
|
|
#include <components/SourceSelectButton.hpp>
|
|
#include <utility/undo_stack.hpp>
|
|
#include <widgets/OBSBasic.hpp>
|
|
|
|
#include <QButtonGroup>
|
|
#include <QDialog>
|
|
|
|
class OBSBasicSourceSelect : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
OBSBasicSourceSelect(OBSBasic *parent, undo_stack &undo_s);
|
|
~OBSBasicSourceSelect();
|
|
|
|
OBSSource newSource;
|
|
|
|
static void sourcePaste(SourceCopyInfo &info, bool duplicate);
|
|
|
|
protected:
|
|
void showEvent(QShowEvent *event) override;
|
|
|
|
private:
|
|
std::unique_ptr<Ui::OBSBasicSourceSelect> ui;
|
|
QString selectedTypeId;
|
|
undo_stack &undo_s;
|
|
|
|
QPointer<QButtonGroup> sourceButtons;
|
|
|
|
std::vector<OBSSignal> signalHandlers;
|
|
static void obsSourceCreated(void *param, calldata_t *calldata);
|
|
static void obsSourceRemoved(void *param, calldata_t *calldata);
|
|
|
|
std::vector<OBSWeakSource> weakSources;
|
|
|
|
QPointer<FlowLayout> existingFlowLayout = nullptr;
|
|
|
|
void refreshSources();
|
|
void updateExistingSources(int limit = 0);
|
|
|
|
static bool enumSourcesCallback(void *data, obs_source_t *source);
|
|
|
|
void rebuildSourceTypeList();
|
|
|
|
int lastSelectedIndex = -1;
|
|
std::vector<std::string> selectedItems;
|
|
void addSelectedItem(const std::string &uuid);
|
|
void removeSelectedItem(const std::string &uuid);
|
|
void clearSelectedItems();
|
|
|
|
SourceSelectButton *findButtonForUuid(const std::string &uuid);
|
|
|
|
void createNew();
|
|
void addExisting(const std::string &uuid, bool visible);
|
|
|
|
void updateButtonVisibility();
|
|
|
|
signals:
|
|
void sourcesUpdated();
|
|
void selectedItemsChanged();
|
|
|
|
public slots:
|
|
void on_createNewSource_clicked(bool checked);
|
|
void addSelectedSources();
|
|
|
|
void handleSourceCreated();
|
|
void handleSourceRemoved(QString uuid);
|
|
|
|
void sourceTypeSelected(QListWidgetItem *current, QListWidgetItem *previous);
|
|
|
|
void sourceButtonToggled(QAbstractButton *button, bool checked);
|
|
void sourceDropped(QString uuid);
|
|
};
|