pollymc/launcher/dialogs/VersionSelectDialog.h

79 lines
2.0 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 <QDialog>
#include <QSortFilterProxyModel>
2017-01-05 08:35:08 +05:30
#include "BaseVersionList.h"
2017-01-05 08:35:08 +05:30
class QVBoxLayout;
class QHBoxLayout;
class QDialogButtonBox;
class VersionSelectWidget;
class QPushButton;
namespace Ui
{
class VersionSelectDialog;
}
class VersionProxyModel;
class VersionSelectDialog : public QDialog
{
2018-07-15 18:21:05 +05:30
Q_OBJECT
public:
2018-07-15 18:21:05 +05:30
explicit VersionSelectDialog(BaseVersionList *vlist, QString title, QWidget *parent = 0, bool cancelable = true);
virtual ~VersionSelectDialog() {};
2018-07-15 18:21:05 +05:30
int exec() override;
2018-07-15 18:21:05 +05:30
BaseVersionPtr selectedVersion() const;
2018-07-15 18:21:05 +05:30
void setCurrentVersion(const QString & version);
void setFuzzyFilter(BaseVersionList::ModelRoles role, QString filter);
void setExactFilter(BaseVersionList::ModelRoles role, QString filter);
void setEmptyString(QString emptyString);
void setEmptyErrorString(QString emptyErrorString);
void setResizeOn(int column);
2017-01-05 08:35:08 +05:30
private slots:
2018-07-15 18:21:05 +05:30
void on_refreshButton_clicked();
2015-05-03 03:12:33 +05:30
private:
2018-07-15 18:21:05 +05:30
void retranslate();
void selectRecommended();
2015-05-03 03:12:33 +05:30
private:
2018-07-15 18:21:05 +05:30
QString m_currentVersion;
VersionSelectWidget *m_versionWidget = nullptr;
QVBoxLayout *m_verticalLayout = nullptr;
QHBoxLayout *m_horizontalLayout = nullptr;
QPushButton *m_refreshButton = nullptr;
QDialogButtonBox *m_buttonBox = nullptr;
2018-07-15 18:21:05 +05:30
BaseVersionList *m_vlist = nullptr;
2018-07-15 18:21:05 +05:30
VersionProxyModel *m_proxyModel = nullptr;
2018-07-15 18:21:05 +05:30
int resizeOnColumn = -1;
2015-05-03 03:12:33 +05:30
2018-07-15 18:21:05 +05:30
Task * loadTask = nullptr;
};