2015-02-03 03:55:30 +05:30
|
|
|
/* Copyright 2013-2015 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-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>
|
2014-09-07 00:31:23 +05:30
|
|
|
#include <depends/util/include/modutils.h>
|
|
|
|
#include "logger/QsLog.h"
|
|
|
|
|
|
|
|
class VersionSelectProxyModel : public QSortFilterProxyModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
VersionSelectProxyModel(QObject *parent = 0) : QSortFilterProxyModel(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Filter
|
|
|
|
{
|
|
|
|
QString string;
|
|
|
|
bool exact = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
QHash<int, Filter> filters() const
|
|
|
|
{
|
|
|
|
return m_filters;
|
|
|
|
}
|
|
|
|
void setFilter(const int column, const QString &filter, const bool exact)
|
|
|
|
{
|
|
|
|
Filter f;
|
|
|
|
f.string = filter;
|
|
|
|
f.exact = exact;
|
|
|
|
m_filters[column] = f;
|
|
|
|
invalidateFilter();
|
|
|
|
}
|
|
|
|
void clearFilters()
|
|
|
|
{
|
|
|
|
m_filters.clear();
|
|
|
|
invalidateFilter();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const
|
|
|
|
{
|
|
|
|
for (auto it = m_filters.begin(); it != m_filters.end(); ++it)
|
|
|
|
{
|
|
|
|
const QString version =
|
|
|
|
sourceModel()->index(source_row, it.key()).data().toString();
|
|
|
|
|
|
|
|
if (it.value().exact)
|
|
|
|
{
|
|
|
|
if (version != it.value().string)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Util::versionIsInInterval(version, it.value().string))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
QHash<int, Filter> m_filters;
|
|
|
|
};
|
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)
|
2014-11-16 06:26:07 +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
|
|
|
|
2014-09-07 00:31:23 +05:30
|
|
|
m_proxyModel = new VersionSelectProxyModel(this);
|
2013-05-06 23:18:01 +05:30
|
|
|
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())
|
2014-09-07 00:31:23 +05:30
|
|
|
{
|
2013-03-28 22:03:31 +05:30
|
|
|
loadList();
|
2014-09-07 00:31:23 +05:30
|
|
|
}
|
|
|
|
m_proxyModel->invalidate();
|
2013-03-28 22:03:31 +05:30
|
|
|
return QDialog::exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VersionSelectDialog::loadList()
|
|
|
|
{
|
|
|
|
Task *loadTask = m_vlist->getLoadTask();
|
2014-09-07 00:31:23 +05:30
|
|
|
if (!loadTask)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ProgressDialog *taskDlg = new ProgressDialog(this);
|
2013-03-28 22:03:31 +05:30
|
|
|
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
|
|
|
{
|
2014-09-07 00:31:23 +05:30
|
|
|
m_proxyModel->setFilter(column, filter, true);
|
2014-05-04 16:50:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void VersionSelectDialog::setFuzzyFilter(int column, QString filter)
|
|
|
|
{
|
2014-09-07 00:31:23 +05:30
|
|
|
m_proxyModel->setFilter(column, filter, false);
|
2013-03-28 22:03:31 +05:30
|
|
|
}
|
2014-09-07 00:31:23 +05:30
|
|
|
|
|
|
|
#include "VersionSelectDialog.moc"
|