2018-02-18 17:09:35 +05:30
|
|
|
#pragma once
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
#include <java/JavaChecker.h>
|
|
|
|
#include <BaseVersion.h>
|
|
|
|
#include <QObjectPtr.h>
|
|
|
|
#include <QIcon>
|
|
|
|
|
|
|
|
class QLineEdit;
|
|
|
|
class VersionSelectWidget;
|
|
|
|
class QSpinBox;
|
|
|
|
class QPushButton;
|
|
|
|
class QVBoxLayout;
|
|
|
|
class QHBoxLayout;
|
|
|
|
class QGroupBox;
|
|
|
|
class QGridLayout;
|
|
|
|
class QLabel;
|
|
|
|
class QToolButton;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is a widget for all the Java settings dialogs and pages.
|
|
|
|
*/
|
|
|
|
class JavaSettingsWidget : public QWidget
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
Q_OBJECT
|
2018-02-18 17:09:35 +05:30
|
|
|
|
|
|
|
public:
|
2018-07-15 18:21:05 +05:30
|
|
|
explicit JavaSettingsWidget(QWidget *parent);
|
|
|
|
virtual ~JavaSettingsWidget() {};
|
2018-02-18 17:09:35 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
enum class JavaStatus
|
|
|
|
{
|
|
|
|
NotSet,
|
|
|
|
Pending,
|
|
|
|
Good,
|
|
|
|
DoesNotExist,
|
|
|
|
DoesNotStart,
|
|
|
|
ReturnedInvalidData
|
|
|
|
} javaStatus = JavaStatus::NotSet;
|
2018-02-18 17:09:35 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
enum class ValidationStatus
|
|
|
|
{
|
|
|
|
Bad,
|
|
|
|
JavaBad,
|
|
|
|
AllOK
|
|
|
|
};
|
2018-02-18 17:09:35 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void refresh();
|
|
|
|
void initialize();
|
|
|
|
ValidationStatus validate();
|
|
|
|
void retranslate();
|
2018-02-18 17:09:35 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
bool permGenEnabled() const;
|
|
|
|
int permGenSize() const;
|
|
|
|
int minHeapSize() const;
|
|
|
|
int maxHeapSize() const;
|
|
|
|
QString javaPath() const;
|
2018-02-18 17:09:35 +05:30
|
|
|
|
|
|
|
|
|
|
|
protected slots:
|
2018-07-15 18:21:05 +05:30
|
|
|
void memoryValueChanged(int);
|
|
|
|
void javaPathEdited(const QString &path);
|
|
|
|
void javaVersionSelected(BaseVersionPtr version);
|
|
|
|
void on_javaBrowseBtn_clicked();
|
|
|
|
void on_javaStatusBtn_clicked();
|
|
|
|
void checkFinished(JavaCheckResult result);
|
2018-02-18 17:09:35 +05:30
|
|
|
|
|
|
|
protected: /* methods */
|
2018-07-15 18:21:05 +05:30
|
|
|
void checkJavaPathOnEdit(const QString &path);
|
|
|
|
void checkJavaPath(const QString &path);
|
|
|
|
void setJavaStatus(JavaStatus status);
|
|
|
|
void setupUi();
|
2018-02-18 17:09:35 +05:30
|
|
|
|
|
|
|
private: /* data */
|
2018-07-15 18:21:05 +05:30
|
|
|
VersionSelectWidget *m_versionWidget = nullptr;
|
|
|
|
QVBoxLayout *m_verticalLayout = nullptr;
|
2018-02-18 17:09:35 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
QLineEdit * m_javaPathTextBox = nullptr;
|
|
|
|
QPushButton * m_javaBrowseBtn = nullptr;
|
|
|
|
QToolButton * m_javaStatusBtn = nullptr;
|
|
|
|
QHBoxLayout *m_horizontalLayout = nullptr;
|
2018-02-18 17:09:35 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
QGroupBox *m_memoryGroupBox = nullptr;
|
|
|
|
QGridLayout *m_gridLayout_2 = nullptr;
|
|
|
|
QSpinBox *m_maxMemSpinBox = nullptr;
|
|
|
|
QLabel *m_labelMinMem = nullptr;
|
|
|
|
QLabel *m_labelMaxMem = nullptr;
|
|
|
|
QSpinBox *m_minMemSpinBox = nullptr;
|
|
|
|
QLabel *m_labelPermGen = nullptr;
|
|
|
|
QSpinBox *m_permGenSpinBox = nullptr;
|
|
|
|
QIcon goodIcon;
|
|
|
|
QIcon yellowIcon;
|
|
|
|
QIcon badIcon;
|
2018-02-18 17:09:35 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
int observedMinMemory = 0;
|
|
|
|
int observedMaxMemory = 0;
|
|
|
|
int observedPermGenMemory = 0;
|
|
|
|
QString queuedCheck;
|
|
|
|
uint64_t m_availableMemory = 0ull;
|
|
|
|
shared_qobject_ptr<JavaChecker> m_checker;
|
|
|
|
JavaCheckResult m_result;
|
2018-02-18 17:09:35 +05:30
|
|
|
};
|