New upstream version 18.0.1+dfsg1
This commit is contained in:
parent
6efda2859e
commit
f2cf6cce50
1337 changed files with 41178 additions and 84670 deletions
29
UI/win-update/update-window.hpp
Normal file
29
UI/win-update/update-window.hpp
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
#pragma once
|
||||
|
||||
#include <QDialog>
|
||||
#include <memory>
|
||||
|
||||
#include "ui_OBSUpdate.h"
|
||||
|
||||
class OBSUpdate : public QDialog {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
enum ReturnVal {
|
||||
No,
|
||||
Yes,
|
||||
Skip
|
||||
};
|
||||
|
||||
OBSUpdate(QWidget *parent, bool manualUpdate, const QString &text);
|
||||
|
||||
public slots:
|
||||
void on_yes_clicked();
|
||||
void on_no_clicked();
|
||||
void on_skip_clicked();
|
||||
virtual void accept() override;
|
||||
virtual void reject() override;
|
||||
|
||||
private:
|
||||
std::unique_ptr<Ui_OBSUpdate> ui;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue