2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2013-03-28 22:03:31 +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-03-28 22:03:31 +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
|
2013-03-28 22:03:31 +05:30
|
|
|
|
|
|
|
#include <QDialog>
|
2013-05-06 23:18:01 +05:30
|
|
|
#include <QSortFilterProxyModel>
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2017-01-05 08:35:08 +05:30
|
|
|
|
2015-04-28 12:31:37 +05:30
|
|
|
#include "BaseVersionList.h"
|
2013-03-28 22:03:31 +05:30
|
|
|
|
2017-01-05 08:35:08 +05:30
|
|
|
class QVBoxLayout;
|
|
|
|
class QHBoxLayout;
|
|
|
|
class QDialogButtonBox;
|
|
|
|
class VersionSelectWidget;
|
|
|
|
class QPushButton;
|
|
|
|
|
2013-03-28 22:03:31 +05:30
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class VersionSelectDialog;
|
|
|
|
}
|
|
|
|
|
2015-04-28 12:31:37 +05:30
|
|
|
class VersionProxyModel;
|
2014-09-07 00:31:23 +05:30
|
|
|
|
2013-03-28 22:03:31 +05:30
|
|
|
class VersionSelectDialog : public QDialog
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
Q_OBJECT
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-03-28 22:03:31 +05:30
|
|
|
public:
|
2018-07-15 18:21:05 +05:30
|
|
|
explicit VersionSelectDialog(BaseVersionList *vlist, QString title, QWidget *parent = 0, bool cancelable = true);
|
|
|
|
virtual ~VersionSelectDialog() {};
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
int exec() override;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
BaseVersionPtr selectedVersion() const;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
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);
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2017-01-05 08:35:08 +05:30
|
|
|
private slots:
|
2018-07-15 18:21:05 +05:30
|
|
|
void on_refreshButton_clicked();
|
2013-11-04 07:23:05 +05:30
|
|
|
|
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
|
|
|
|
2013-03-28 22:03:31 +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;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
BaseVersionList *m_vlist = nullptr;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
VersionProxyModel *m_proxyModel = nullptr;
|
2013-10-14 07:29:21 +05:30
|
|
|
|
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;
|
2013-03-28 22:03:31 +05:30
|
|
|
};
|