2017-01-08 09:28:05 +05:30
|
|
|
/* Copyright 2013-2017 MultiMC Contributors
|
2013-11-28 03:44:18 +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
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2016-08-11 04:14:01 +05:30
|
|
|
#include "ProfileSelectDialog.h"
|
|
|
|
#include <SkinUtils.h>
|
|
|
|
#include "ui_ProfileSelectDialog.h"
|
2013-11-28 03:44:18 +05:30
|
|
|
|
|
|
|
#include <QItemSelectionModel>
|
|
|
|
|
2015-02-02 06:44:14 +05:30
|
|
|
#include <QDebug>
|
2013-11-28 03:44:18 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include <dialogs/ProgressDialog.h>
|
2013-11-28 03:44:18 +05:30
|
|
|
|
|
|
|
#include <MultiMC.h>
|
|
|
|
|
2016-08-11 04:14:01 +05:30
|
|
|
ProfileSelectDialog::ProfileSelectDialog(const QString &message, int flags, QWidget *parent)
|
|
|
|
: QDialog(parent), ui(new Ui::ProfileSelectDialog)
|
2013-11-28 03:44:18 +05:30
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
|
|
|
m_accounts = MMC->accounts();
|
2016-08-11 04:14:01 +05:30
|
|
|
auto view = ui->listView;
|
|
|
|
//view->setModel(m_accounts.get());
|
|
|
|
//view->hideColumn(MojangAccountList::ActiveColumn);
|
|
|
|
view->setColumnCount(1);
|
|
|
|
view->setRootIsDecorated(false);
|
|
|
|
if(QTreeWidgetItem* header = view->headerItem())
|
|
|
|
{
|
|
|
|
header->setText(0, tr("Name"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
view->setHeaderLabel(tr("Name"));
|
|
|
|
}
|
|
|
|
QList <QTreeWidgetItem *> items;
|
|
|
|
for (int i = 0; i < m_accounts->count(); i++)
|
|
|
|
{
|
|
|
|
MojangAccountPtr account = m_accounts->at(i);
|
|
|
|
for (auto profile : account->profiles())
|
|
|
|
{
|
2016-11-15 07:21:22 +05:30
|
|
|
auto profileLabel = profile.name;
|
|
|
|
if(account->isInUse())
|
|
|
|
{
|
|
|
|
profileLabel += tr(" (in use)");
|
|
|
|
}
|
2016-08-11 04:14:01 +05:30
|
|
|
auto item = new QTreeWidgetItem(view);
|
2016-11-15 07:21:22 +05:30
|
|
|
item->setText(0, profileLabel);
|
2016-08-11 04:14:01 +05:30
|
|
|
item->setIcon(0, SkinUtils::getFaceFromCache(profile.id));
|
|
|
|
item->setData(0, MojangAccountList::PointerRole, QVariant::fromValue(account));
|
|
|
|
items.append(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
view->addTopLevelItems(items);
|
2013-11-28 03:44:18 +05:30
|
|
|
|
|
|
|
// Set the message label.
|
|
|
|
ui->msgLabel->setVisible(!message.isEmpty());
|
|
|
|
ui->msgLabel->setText(message);
|
|
|
|
|
|
|
|
// Flags...
|
|
|
|
ui->globalDefaultCheck->setVisible(flags & GlobalDefaultCheckbox);
|
|
|
|
ui->instDefaultCheck->setVisible(flags & InstanceDefaultCheckbox);
|
2015-02-02 06:44:14 +05:30
|
|
|
qDebug() << flags;
|
2013-11-28 03:44:18 +05:30
|
|
|
|
|
|
|
// Select the first entry in the list.
|
|
|
|
ui->listView->setCurrentIndex(ui->listView->model()->index(0, 0));
|
2014-08-04 03:20:26 +05:30
|
|
|
|
|
|
|
connect(ui->listView, SIGNAL(doubleClicked(QModelIndex)), SLOT(on_buttonBox_accepted()));
|
2013-11-28 03:44:18 +05:30
|
|
|
}
|
|
|
|
|
2016-08-11 04:14:01 +05:30
|
|
|
ProfileSelectDialog::~ProfileSelectDialog()
|
2013-11-28 03:44:18 +05:30
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2016-08-11 04:14:01 +05:30
|
|
|
MojangAccountPtr ProfileSelectDialog::selectedAccount() const
|
2013-11-28 03:44:18 +05:30
|
|
|
{
|
|
|
|
return m_selected;
|
|
|
|
}
|
|
|
|
|
2016-08-11 04:14:01 +05:30
|
|
|
bool ProfileSelectDialog::useAsGlobalDefault() const
|
2013-11-28 03:44:18 +05:30
|
|
|
{
|
|
|
|
return ui->globalDefaultCheck->isChecked();
|
|
|
|
}
|
|
|
|
|
2016-08-11 04:14:01 +05:30
|
|
|
bool ProfileSelectDialog::useAsInstDefaullt() const
|
2013-11-28 03:44:18 +05:30
|
|
|
{
|
|
|
|
return ui->instDefaultCheck->isChecked();
|
|
|
|
}
|
|
|
|
|
2016-08-11 04:14:01 +05:30
|
|
|
void ProfileSelectDialog::on_buttonBox_accepted()
|
2013-11-28 03:44:18 +05:30
|
|
|
{
|
|
|
|
QModelIndexList selection = ui->listView->selectionModel()->selectedIndexes();
|
|
|
|
if (selection.size() > 0)
|
|
|
|
{
|
|
|
|
QModelIndex selected = selection.first();
|
2014-08-04 03:20:26 +05:30
|
|
|
m_selected = selected.data(MojangAccountList::PointerRole).value<MojangAccountPtr>();
|
2013-11-28 03:44:18 +05:30
|
|
|
}
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
2016-08-11 04:14:01 +05:30
|
|
|
void ProfileSelectDialog::on_buttonBox_rejected()
|
2013-11-28 03:44:18 +05:30
|
|
|
{
|
|
|
|
close();
|
|
|
|
}
|