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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "versionselectdialog.h"
|
|
|
|
#include "ui_versionselectdialog.h"
|
|
|
|
|
|
|
|
#include <QHeaderView>
|
|
|
|
|
2013-05-06 23:18:01 +05:30
|
|
|
#include <QDebug>
|
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
#include <gui/ProgressDialog.h>
|
2013-10-18 22:12:41 +05:30
|
|
|
#include "gui/platform.h"
|
2013-03-28 22:03:31 +05:30
|
|
|
|
2013-09-16 04:24:39 +05:30
|
|
|
#include <logic/BaseVersion.h>
|
|
|
|
#include <logic/lists/BaseVersionList.h>
|
2013-08-17 17:10:51 +05:30
|
|
|
#include <logic/tasks/Task.h>
|
2013-03-28 22:03:31 +05:30
|
|
|
|
2013-10-14 07:29:21 +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-10-18 22:12:41 +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);
|
|
|
|
|
|
|
|
if(!cancelable)
|
|
|
|
{
|
|
|
|
ui->buttonBox->button(QDialogButtonBox::Cancel)->setEnabled(false);
|
|
|
|
}
|
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);
|
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2013-09-18 03:30:35 +05:30
|
|
|
void VersionSelectDialog::setFilter(int column, QString filter)
|
2013-05-06 23:18:01 +05:30
|
|
|
{
|
2013-09-18 03:30:35 +05:30
|
|
|
m_proxyModel->setFilterKeyColumn(column);
|
|
|
|
m_proxyModel->setFilterFixedString(filter);
|
|
|
|
/*
|
2013-05-06 23:18:01 +05:30
|
|
|
QStringList filteredTypes;
|
|
|
|
if (!ui->filterSnapshotsCheckbox->isChecked())
|
|
|
|
filteredTypes += "Snapshot";
|
|
|
|
if (!ui->filterMCNostalgiaCheckbox->isChecked())
|
2013-08-07 05:08:18 +05:30
|
|
|
filteredTypes += "Nostalgia";
|
2013-10-06 18:13:46 +05:30
|
|
|
|
2013-05-06 23:18:01 +05:30
|
|
|
QString regexStr = "^.*$";
|
|
|
|
if (filteredTypes.length() > 0)
|
|
|
|
regexStr = QString("^((?!%1).)*$").arg(filteredTypes.join('|'));
|
2013-10-06 18:13:46 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
QLOG_DEBUG() << "Filter:" << regexStr;
|
2013-09-18 03:30:35 +05:30
|
|
|
*/
|
2013-03-28 22:03:31 +05:30
|
|
|
}
|