2013-03-28 22:03:31 +05:30
|
|
|
/* Copyright 2013 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
|
2013-10-06 18:13:46 +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
|
|
|
#include "VersionSelectDialog.h"
|
|
|
|
#include "ui_VersionSelectDialog.h"
|
2013-03-28 22:03:31 +05:30
|
|
|
|
|
|
|
#include <QHeaderView>
|
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
#include <gui/dialogs/ProgressDialog.h>
|
|
|
|
#include "gui/Platform.h"
|
2013-03-28 22:03:31 +05:30
|
|
|
|
2013-09-16 04:24:39 +05:30
|
|
|
#include <logic/BaseVersion.h>
|
2014-05-09 00:50:10 +05:30
|
|
|
#include <logic/BaseVersionList.h>
|
2013-08-17 17:10:51 +05:30
|
|
|
#include <logic/tasks/Task.h>
|
2013-03-28 22:03:31 +05:30
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
VersionSelectDialog::VersionSelectDialog(BaseVersionList *vlist, QString title, QWidget *parent,
|
|
|
|
bool cancelable)
|
2013-10-06 18:13:46 +05:30
|
|
|
: QDialog(parent), ui(new Ui::VersionSelectDialog)
|
2013-03-28 22:03:31 +05:30
|
|
|
{
|
2013-11-04 07:23:05 +05:30
|
|
|
MultiMCPlatform::fixWM_CLASS(this);
|
2013-03-28 22:03:31 +05:30
|
|
|
ui->setupUi(this);
|
2013-08-27 21:57:58 +05:30
|
|
|
setWindowModality(Qt::WindowModal);
|
2013-10-06 18:13:46 +05:30
|
|
|
setWindowTitle(title);
|
|
|
|
|
2013-03-28 22:03:31 +05:30
|
|
|
m_vlist = vlist;
|
2013-10-06 18:13:46 +05:30
|
|
|
|
2013-05-06 23:18:01 +05:30
|
|
|
m_proxyModel = new QSortFilterProxyModel(this);
|
|
|
|
m_proxyModel->setSourceModel(vlist);
|
2013-10-06 18:13:46 +05:30
|
|
|
|
2013-05-06 23:18:01 +05:30
|
|
|
ui->listView->setModel(m_proxyModel);
|
2013-03-28 22:03:31 +05:30
|
|
|
ui->listView->header()->setSectionResizeMode(QHeaderView::ResizeToContents);
|
2013-10-14 07:29:21 +05:30
|
|
|
ui->listView->header()->setSectionResizeMode(resizeOnColumn, QHeaderView::Stretch);
|
|
|
|
|
2013-11-04 07:23:05 +05:30
|
|
|
if (!cancelable)
|
2013-10-14 07:29:21 +05:30
|
|
|
{
|
|
|
|
ui->buttonBox->button(QDialogButtonBox::Cancel)->setEnabled(false);
|
|
|
|
}
|
2013-03-28 22:03:31 +05:30
|
|
|
}
|
|
|
|
|
2014-01-29 05:50:19 +05:30
|
|
|
void VersionSelectDialog::setEmptyString(QString emptyString)
|
|
|
|
{
|
|
|
|
ui->listView->setEmptyString(emptyString);
|
|
|
|
}
|
|
|
|
|
2013-03-28 22:03:31 +05:30
|
|
|
VersionSelectDialog::~VersionSelectDialog()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2013-10-14 07:29:21 +05:30
|
|
|
void VersionSelectDialog::setResizeOn(int column)
|
|
|
|
{
|
|
|
|
ui->listView->header()->setSectionResizeMode(resizeOnColumn, QHeaderView::ResizeToContents);
|
|
|
|
resizeOnColumn = column;
|
|
|
|
ui->listView->header()->setSectionResizeMode(resizeOnColumn, QHeaderView::Stretch);
|
|
|
|
}
|
|
|
|
|
2013-03-28 22:03:31 +05:30
|
|
|
int VersionSelectDialog::exec()
|
|
|
|
{
|
|
|
|
QDialog::open();
|
|
|
|
if (!m_vlist->isLoaded())
|
|
|
|
loadList();
|
|
|
|
return QDialog::exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VersionSelectDialog::loadList()
|
|
|
|
{
|
2013-09-18 03:30:35 +05:30
|
|
|
ProgressDialog *taskDlg = new ProgressDialog(this);
|
2013-03-28 22:03:31 +05:30
|
|
|
Task *loadTask = m_vlist->getLoadTask();
|
|
|
|
loadTask->setParent(taskDlg);
|
|
|
|
taskDlg->exec(loadTask);
|
2014-02-20 03:04:17 +05:30
|
|
|
delete taskDlg;
|
2013-03-28 22:03:31 +05:30
|
|
|
}
|
|
|
|
|
2013-09-16 04:24:39 +05:30
|
|
|
BaseVersionPtr VersionSelectDialog::selectedVersion() const
|
2013-04-23 02:09:41 +05:30
|
|
|
{
|
2013-08-11 22:28:24 +05:30
|
|
|
auto currentIndex = ui->listView->selectionModel()->currentIndex();
|
2013-09-16 04:24:39 +05:30
|
|
|
auto variant = m_proxyModel->data(currentIndex, BaseVersionList::VersionPointerRole);
|
|
|
|
return variant.value<BaseVersionPtr>();
|
2013-04-23 02:09:41 +05:30
|
|
|
}
|
|
|
|
|
2013-03-28 22:03:31 +05:30
|
|
|
void VersionSelectDialog::on_refreshButton_clicked()
|
|
|
|
{
|
2013-05-06 23:18:01 +05:30
|
|
|
loadList();
|
|
|
|
}
|
|
|
|
|
2014-05-04 16:50:42 +05:30
|
|
|
void VersionSelectDialog::setExactFilter(int column, QString filter)
|
2013-05-06 23:18:01 +05:30
|
|
|
{
|
2013-09-18 03:30:35 +05:30
|
|
|
m_proxyModel->setFilterKeyColumn(column);
|
2014-04-20 00:54:11 +05:30
|
|
|
// m_proxyModel->setFilterFixedString(filter);
|
|
|
|
m_proxyModel->setFilterRegExp(QRegExp(QString("^%1$").arg(filter.replace(".", "\\.")),
|
|
|
|
Qt::CaseInsensitive, QRegExp::RegExp));
|
2014-05-04 16:50:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void VersionSelectDialog::setFuzzyFilter(int column, QString filter)
|
|
|
|
{
|
|
|
|
m_proxyModel->setFilterKeyColumn(column);
|
|
|
|
m_proxyModel->setFilterWildcard(filter);
|
2013-03-28 22:03:31 +05:30
|
|
|
}
|