PrismLauncher/launcher/ui/pages/global/PastePage.h

61 lines
1.3 KiB
C
Raw Normal View History

2021-01-18 07:28:54 +00:00
/* Copyright 2013-2021 MultiMC Contributors
2015-10-01 23:12:53 +01:00
*
* 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
*
* 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.
*/
#pragma once
#include <QWidget>
#include "ui/pages/BasePage.h"
2021-11-20 15:22:22 +00:00
#include <Application.h>
2015-10-01 23:12:53 +01:00
namespace Ui {
2022-01-14 23:20:06 +00:00
class PastePage;
2015-10-01 23:12:53 +01:00
}
2022-01-14 23:20:06 +00:00
class PastePage : public QWidget, public BasePage
2015-10-01 23:12:53 +01:00
{
2018-07-15 13:51:05 +01:00
Q_OBJECT
2015-10-01 23:12:53 +01:00
public:
2022-01-14 23:20:06 +00:00
explicit PastePage(QWidget *parent = 0);
~PastePage();
2018-07-15 13:51:05 +01:00
QString displayName() const override
{
return tr("Log Upload");
}
QIcon icon() const override
{
2021-11-20 15:22:22 +00:00
return APPLICATION->getThemedIcon("log");
2018-07-15 13:51:05 +01:00
}
QString id() const override
{
return "log-upload";
}
QString helpPage() const override
{
return "Log-Upload";
}
virtual bool apply() override;
2015-10-01 23:12:53 +01:00
private:
2018-07-15 13:51:05 +01:00
void loadSettings();
void applySettings();
2015-10-01 23:12:53 +01:00
private:
2022-01-14 23:20:06 +00:00
Ui::PastePage *ui;
2015-10-01 23:12:53 +01:00
};
2022-01-14 23:20:06 +00:00