2018-02-10 23:40:01 +00:00
|
|
|
/* Copyright 2013-2018 MultiMC Contributors
|
2013-03-28 16:33:31 +00: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
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2013-03-28 16:33:31 +00:00
|
|
|
* 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 01:53:05 +00:00
|
|
|
#pragma once
|
2013-03-28 16:33:31 +00:00
|
|
|
|
|
|
|
#include <QDialog>
|
2013-05-06 18:48:01 +01:00
|
|
|
#include <QSortFilterProxyModel>
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2017-01-05 03:05:08 +00:00
|
|
|
|
2015-04-28 08:01:37 +01:00
|
|
|
#include "BaseVersionList.h"
|
2013-03-28 16:33:31 +00:00
|
|
|
|
2017-01-05 03:05:08 +00:00
|
|
|
class QVBoxLayout;
|
|
|
|
class QHBoxLayout;
|
|
|
|
class QDialogButtonBox;
|
|
|
|
class VersionSelectWidget;
|
|
|
|
class QPushButton;
|
|
|
|
|
2013-03-28 16:33:31 +00:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class VersionSelectDialog;
|
|
|
|
}
|
|
|
|
|
2015-04-28 08:01:37 +01:00
|
|
|
class VersionProxyModel;
|
2014-09-06 20:01:23 +01:00
|
|
|
|
2013-03-28 16:33:31 +00:00
|
|
|
class VersionSelectDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2013-03-28 16:33:31 +00:00
|
|
|
public:
|
2017-01-05 03:05:08 +00:00
|
|
|
explicit VersionSelectDialog(BaseVersionList *vlist, QString title, QWidget *parent = 0, bool cancelable = true);
|
|
|
|
virtual ~VersionSelectDialog() {};
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2017-01-05 03:05:08 +00:00
|
|
|
int exec() override;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2013-09-15 23:54:39 +01:00
|
|
|
BaseVersionPtr selectedVersion() const;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2017-12-09 00:30:23 +00:00
|
|
|
void setCurrentVersion(const QString & version);
|
2015-04-28 08:01:37 +01:00
|
|
|
void setFuzzyFilter(BaseVersionList::ModelRoles role, QString filter);
|
|
|
|
void setExactFilter(BaseVersionList::ModelRoles role, QString filter);
|
2014-01-29 00:20:19 +00:00
|
|
|
void setEmptyString(QString emptyString);
|
2015-05-02 22:42:33 +01:00
|
|
|
void setEmptyErrorString(QString emptyErrorString);
|
2013-10-14 02:59:21 +01:00
|
|
|
void setResizeOn(int column);
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2017-01-05 03:05:08 +00:00
|
|
|
private slots:
|
2013-03-28 16:33:31 +00:00
|
|
|
void on_refreshButton_clicked();
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2015-05-02 22:42:33 +01:00
|
|
|
private:
|
2017-01-05 03:05:08 +00:00
|
|
|
void retranslate();
|
2015-05-02 22:42:33 +01:00
|
|
|
void selectRecommended();
|
|
|
|
|
2013-03-28 16:33:31 +00:00
|
|
|
private:
|
2017-12-09 00:30:23 +00:00
|
|
|
QString m_currentVersion;
|
2017-01-05 03:05:08 +00:00
|
|
|
VersionSelectWidget *m_versionWidget = nullptr;
|
|
|
|
QVBoxLayout *m_verticalLayout = nullptr;
|
|
|
|
QHBoxLayout *m_horizontalLayout = nullptr;
|
|
|
|
QPushButton *m_refreshButton = nullptr;
|
|
|
|
QDialogButtonBox *m_buttonBox = nullptr;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2015-05-02 22:42:33 +01:00
|
|
|
BaseVersionList *m_vlist = nullptr;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2015-05-02 22:42:33 +01:00
|
|
|
VersionProxyModel *m_proxyModel = nullptr;
|
2013-10-14 02:59:21 +01:00
|
|
|
|
2018-04-02 21:58:02 +01:00
|
|
|
int resizeOnColumn = -1;
|
2015-05-02 22:42:33 +01:00
|
|
|
|
|
|
|
Task * loadTask = nullptr;
|
2013-03-28 16:33:31 +00:00
|
|
|
};
|