pollymc/launcher/ui/pages/global/JavaPage.h

73 lines
1.6 KiB
C
Raw Normal View History

2021-01-18 12:58:54 +05:30
/* Copyright 2013-2021 MultiMC Contributors
*
* 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 <memory>
#include <QDialog>
#include "ui/pages/BasePage.h"
#include "JavaCommon.h"
2021-11-20 20:52:22 +05:30
#include <Application.h>
#include <QObjectPtr.h>
class SettingsObject;
namespace Ui
{
class JavaPage;
}
class JavaPage : public QWidget, public BasePage
{
2018-07-15 18:21:05 +05:30
Q_OBJECT
public:
2018-07-15 18:21:05 +05:30
explicit JavaPage(QWidget *parent = 0);
~JavaPage();
2018-07-15 18:21:05 +05:30
QString displayName() const override
{
return tr("Java");
}
QIcon icon() const override
{
2021-11-20 20:52:22 +05:30
return APPLICATION->getThemedIcon("java");
2018-07-15 18:21:05 +05:30
}
QString id() const override
{
return "java-settings";
}
QString helpPage() const override
{
return "Java-settings";
}
bool apply() override;
private:
2018-07-15 18:21:05 +05:30
void applySettings();
void loadSettings();
private
slots:
2018-07-15 18:21:05 +05:30
void on_javaDetectBtn_clicked();
void on_javaTestBtn_clicked();
void on_javaBrowseBtn_clicked();
void checkerFinished();
private:
2018-07-15 18:21:05 +05:30
Ui::JavaPage *ui;
unique_qobject_ptr<JavaCommon::TestCheck> checker;
};