2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2013-01-29 11:56:24 +05:30
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2013-11-04 07:23:05 +05:30
|
|
|
*
|
2013-01-29 11:56:24 +05:30
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDialog>
|
2016-05-28 23:24:17 +05:30
|
|
|
#include <net/NetJob.h>
|
2014-05-01 23:13:55 +05:30
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class AboutDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class AboutDialog : public QDialog
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
Q_OBJECT
|
2013-11-04 07:23:05 +05:30
|
|
|
|
|
|
|
public:
|
2018-07-15 18:21:05 +05:30
|
|
|
explicit AboutDialog(QWidget *parent = 0);
|
|
|
|
~AboutDialog();
|
2013-01-29 11:56:24 +05:30
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
private:
|
2018-07-15 18:21:05 +05:30
|
|
|
Ui::AboutDialog *ui;
|
2014-05-01 23:13:55 +05:30
|
|
|
|
2021-11-22 03:51:12 +05:30
|
|
|
NetJob::Ptr netJob;
|
2018-07-15 18:21:05 +05:30
|
|
|
QByteArray dataSink;
|
2013-11-04 07:23:05 +05:30
|
|
|
};
|
2022-01-10 00:21:46 +05:30
|
|
|
|