2014-05-18 17:44:10 -07:00
|
|
|
/******************************************************************************
|
|
|
|
Copyright (C) 2014 by Hugh Bailey <obs.jim@gmail.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/>.
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#include <QClipboard>
|
2020-04-06 04:39:09 -07:00
|
|
|
#include <QUrl>
|
|
|
|
#include <QUrlQuery>
|
|
|
|
#include <QDesktopServices>
|
2014-05-18 17:44:10 -07:00
|
|
|
#include "window-log-reply.hpp"
|
2014-11-01 13:48:58 -07:00
|
|
|
#include "obs-app.hpp"
|
2014-05-18 17:44:10 -07:00
|
|
|
|
2020-04-07 03:22:05 -07:00
|
|
|
OBSLogReply::OBSLogReply(QWidget *parent, const QString &url, const bool crash)
|
2019-06-22 22:13:45 -07:00
|
|
|
: QDialog(parent), ui(new Ui::OBSLogReply)
|
2014-05-18 17:44:10 -07:00
|
|
|
{
|
2020-04-06 04:37:14 -07:00
|
|
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
2014-05-18 17:44:10 -07:00
|
|
|
ui->setupUi(this);
|
|
|
|
ui->urlEdit->setText(url);
|
2020-04-06 04:37:46 -07:00
|
|
|
if (crash) {
|
2020-04-06 04:39:09 -07:00
|
|
|
ui->analyzeURL->hide();
|
2020-04-06 04:37:46 -07:00
|
|
|
ui->description->setText(
|
|
|
|
Str("LogReturnDialog.Description.Crash"));
|
|
|
|
}
|
2014-11-01 13:48:58 -07:00
|
|
|
|
|
|
|
installEventFilter(CreateShortcutFilter());
|
2014-05-18 17:44:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void OBSLogReply::on_copyURL_clicked()
|
|
|
|
{
|
|
|
|
QClipboard *clipboard = QApplication::clipboard();
|
|
|
|
clipboard->setText(ui->urlEdit->text());
|
|
|
|
}
|
2020-04-06 04:39:09 -07:00
|
|
|
|
|
|
|
void OBSLogReply::on_analyzeURL_clicked()
|
|
|
|
{
|
|
|
|
QUrlQuery param;
|
|
|
|
param.addQueryItem("log_url",
|
|
|
|
QUrl::toPercentEncoding(ui->urlEdit->text()));
|
|
|
|
QUrl url("https://obsproject.com/tools/analyzer", QUrl::TolerantMode);
|
|
|
|
url.setQuery(param);
|
|
|
|
QDesktopServices::openUrl(url);
|
|
|
|
}
|