/
githubmirror
/
obs-studio
Обзор
Документация
Войти
/
githubmirror
/
obs-studio
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
frontend/dialogs/OBSLogViewer.hpp
22 строки
373 B
PatTheMav
frontend: Add renamed Qt UI dialogs
08 янв 2025, 17:36
08 янв 2025, 17:36
00fc903
Код
Авторство
О чём код?
#pragma once #include "ui_OBSLogViewer.h" #include <QDialog> class OBSLogViewer : public QDialog { Q_OBJECT std::unique_ptr<Ui::OBSLogViewer> ui; void InitLog(); private slots: void AddLine(int type, const QString &text); void on_openButton_clicked(); void on_showStartup_clicked(bool checked); public: OBSLogViewer(QWidget *parent = 0); ~OBSLogViewer(); };