You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
311 lines
8.9 KiB
C++
311 lines
8.9 KiB
C++
#include "datafilespage.hpp"
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QPushButton>
|
|
#include <QMessageBox>
|
|
#include <QCheckBox>
|
|
#include <QMenu>
|
|
#include <QSortFilterProxyModel>
|
|
|
|
#include <components/files/configurationmanager.hpp>
|
|
|
|
#include <components/contentselector/model/esmfile.hpp>
|
|
#include <components/contentselector/model/naturalsort.hpp>
|
|
#include <components/contentselector/view/contentselector.hpp>
|
|
|
|
#include <components/config/gamesettings.hpp>
|
|
#include <components/config/launchersettings.hpp>
|
|
|
|
#include "utils/textinputdialog.hpp"
|
|
#include "utils/profilescombobox.hpp"
|
|
|
|
|
|
const char *Launcher::DataFilesPage::mDefaultContentListName = "Default";
|
|
|
|
Launcher::DataFilesPage::DataFilesPage(Files::ConfigurationManager &cfg, Config::GameSettings &gameSettings, Config::LauncherSettings &launcherSettings, QWidget *parent)
|
|
: QWidget(parent)
|
|
, mCfgMgr(cfg)
|
|
, mGameSettings(gameSettings)
|
|
, mLauncherSettings(launcherSettings)
|
|
{
|
|
ui.setupUi (this);
|
|
setObjectName ("DataFilesPage");
|
|
mSelector = new ContentSelectorView::ContentSelector (ui.contentSelectorWidget);
|
|
|
|
mProfileDialog = new TextInputDialog(tr("New Content List"), tr("Content List name:"), this);
|
|
|
|
connect(mProfileDialog->lineEdit(), SIGNAL(textChanged(QString)),
|
|
this, SLOT(updateOkButton(QString)));
|
|
|
|
buildView();
|
|
loadSettings();
|
|
}
|
|
|
|
void Launcher::DataFilesPage::buildView()
|
|
{
|
|
ui.verticalLayout->insertWidget (0, mSelector->uiWidget());
|
|
|
|
//tool buttons
|
|
ui.newProfileButton->setToolTip ("Create a new Content List");
|
|
ui.deleteProfileButton->setToolTip ("Delete an existing Content List");
|
|
|
|
//combo box
|
|
ui.profilesComboBox->addItem(mDefaultContentListName);
|
|
ui.profilesComboBox->setPlaceholderText (QString("Select a Content List..."));
|
|
ui.profilesComboBox->setCurrentIndex(ui.profilesComboBox->findText(QLatin1String(mDefaultContentListName)));
|
|
|
|
// Add the actions to the toolbuttons
|
|
ui.newProfileButton->setDefaultAction (ui.newProfileAction);
|
|
ui.deleteProfileButton->setDefaultAction (ui.deleteProfileAction);
|
|
|
|
//establish connections
|
|
connect (ui.profilesComboBox, SIGNAL (currentIndexChanged(int)),
|
|
this, SLOT (slotProfileChanged(int)));
|
|
|
|
connect (ui.profilesComboBox, SIGNAL (profileRenamed(QString, QString)),
|
|
this, SLOT (slotProfileRenamed(QString, QString)));
|
|
|
|
connect (ui.profilesComboBox, SIGNAL (signalProfileChanged(QString, QString)),
|
|
this, SLOT (slotProfileChangedByUser(QString, QString)));
|
|
}
|
|
|
|
bool Launcher::DataFilesPage::loadSettings()
|
|
{
|
|
QStringList profiles = mLauncherSettings.getContentLists();
|
|
QString currentProfile = mLauncherSettings.getCurrentContentListName();
|
|
|
|
qDebug() << "The current profile is: " << currentProfile;
|
|
|
|
foreach (const QString &item, profiles)
|
|
addProfile (item, false);
|
|
|
|
// Hack: also add the current profile
|
|
if (!currentProfile.isEmpty())
|
|
addProfile(currentProfile, true);
|
|
|
|
return true;
|
|
}
|
|
|
|
void Launcher::DataFilesPage::populateFileViews(const QString& contentModelName)
|
|
{
|
|
QStringList paths = mGameSettings.getDataDirs();
|
|
|
|
foreach(const QString &path, paths)
|
|
mSelector->addFiles(path);
|
|
|
|
mDataLocal = mGameSettings.getDataLocal();
|
|
|
|
if (!mDataLocal.isEmpty())
|
|
mSelector->addFiles(mDataLocal);
|
|
|
|
paths.insert(0, mDataLocal);
|
|
PathIterator pathIterator(paths);
|
|
|
|
mSelector->setProfileContent(filesInProfile(contentModelName, pathIterator));
|
|
}
|
|
|
|
QStringList Launcher::DataFilesPage::filesInProfile(const QString& profileName, PathIterator& pathIterator)
|
|
{
|
|
QStringList files = mLauncherSettings.getContentListFiles(profileName);
|
|
QStringList filepaths;
|
|
|
|
foreach(const QString& file, files)
|
|
{
|
|
QString filepath = pathIterator.findFirstPath(file);
|
|
|
|
if (!filepath.isEmpty())
|
|
filepaths << filepath;
|
|
}
|
|
|
|
return filepaths;
|
|
}
|
|
|
|
void Launcher::DataFilesPage::saveSettings(const QString &profile)
|
|
{
|
|
QString profileName = profile;
|
|
|
|
if (profileName.isEmpty())
|
|
profileName = ui.profilesComboBox->currentText();
|
|
|
|
//retrieve the files selected for the profile
|
|
ContentSelectorModel::ContentFileList items = mSelector->selectedFiles();
|
|
|
|
//set the value of the current profile (not necessarily the profile being saved!)
|
|
mLauncherSettings.setCurrentContentListName(ui.profilesComboBox->currentText());
|
|
|
|
QStringList fileNames;
|
|
foreach(const ContentSelectorModel::EsmFile *item, items) {
|
|
fileNames.append(item->fileName());
|
|
}
|
|
mLauncherSettings.setContentList(profileName, fileNames);
|
|
mGameSettings.setContentList(fileNames);
|
|
}
|
|
|
|
void Launcher::DataFilesPage::removeProfile(const QString &profile)
|
|
{
|
|
mLauncherSettings.removeContentList(profile);
|
|
}
|
|
|
|
QAbstractItemModel *Launcher::DataFilesPage::profilesModel() const
|
|
{
|
|
return ui.profilesComboBox->model();
|
|
}
|
|
|
|
int Launcher::DataFilesPage::profilesIndex() const
|
|
{
|
|
return ui.profilesComboBox->currentIndex();
|
|
}
|
|
|
|
void Launcher::DataFilesPage::setProfile(int index, bool savePrevious)
|
|
{
|
|
if (index >= -1 && index < ui.profilesComboBox->count())
|
|
{
|
|
QString previous = mPreviousProfile;
|
|
QString current = ui.profilesComboBox->itemText(index);
|
|
|
|
mPreviousProfile = current;
|
|
|
|
setProfile (previous, current, savePrevious);
|
|
}
|
|
}
|
|
|
|
void Launcher::DataFilesPage::setProfile (const QString &previous, const QString ¤t, bool savePrevious)
|
|
{
|
|
//abort if no change (poss. duplicate signal)
|
|
if (previous == current)
|
|
return;
|
|
|
|
if (!previous.isEmpty() && savePrevious)
|
|
saveSettings (previous);
|
|
|
|
ui.profilesComboBox->setCurrentProfile (ui.profilesComboBox->findText (current));
|
|
|
|
populateFileViews(current);
|
|
|
|
checkForDefaultProfile();
|
|
}
|
|
|
|
void Launcher::DataFilesPage::slotProfileDeleted (const QString &item)
|
|
{
|
|
removeProfile (item);
|
|
}
|
|
|
|
void Launcher::DataFilesPage::slotProfileChangedByUser(const QString &previous, const QString ¤t)
|
|
{
|
|
setProfile(previous, current, true);
|
|
emit signalProfileChanged (ui.profilesComboBox->findText(current));
|
|
}
|
|
|
|
void Launcher::DataFilesPage::slotProfileRenamed(const QString &previous, const QString ¤t)
|
|
{
|
|
if (previous.isEmpty())
|
|
return;
|
|
|
|
// Save the new profile name
|
|
saveSettings();
|
|
|
|
// Remove the old one
|
|
removeProfile (previous);
|
|
|
|
loadSettings();
|
|
}
|
|
|
|
void Launcher::DataFilesPage::slotProfileChanged(int index)
|
|
{
|
|
// in case the event was triggered externally
|
|
if (ui.profilesComboBox->currentIndex() != index)
|
|
ui.profilesComboBox->setCurrentIndex(index);
|
|
|
|
setProfile (index, true);
|
|
}
|
|
|
|
void Launcher::DataFilesPage::on_newProfileAction_triggered()
|
|
{
|
|
if (mProfileDialog->exec() != QDialog::Accepted)
|
|
return;
|
|
|
|
QString profile = mProfileDialog->lineEdit()->text();
|
|
|
|
if (profile.isEmpty())
|
|
return;
|
|
|
|
saveSettings();
|
|
|
|
mLauncherSettings.setCurrentContentListName(profile);
|
|
|
|
addProfile(profile, true);
|
|
}
|
|
|
|
void Launcher::DataFilesPage::addProfile (const QString &profile, bool setAsCurrent)
|
|
{
|
|
if (profile.isEmpty())
|
|
return;
|
|
|
|
if (ui.profilesComboBox->findText (profile) == -1)
|
|
ui.profilesComboBox->addItem (profile);
|
|
|
|
if (setAsCurrent)
|
|
setProfile (ui.profilesComboBox->findText (profile), false);
|
|
}
|
|
|
|
void Launcher::DataFilesPage::on_deleteProfileAction_triggered()
|
|
{
|
|
QString profile = ui.profilesComboBox->currentText();
|
|
|
|
if (profile.isEmpty())
|
|
return;
|
|
|
|
if (!showDeleteMessageBox (profile))
|
|
return;
|
|
|
|
// this should work since the Default profile can't be deleted and is always index 0
|
|
int next = ui.profilesComboBox->currentIndex()-1;
|
|
|
|
// changing the profile forces a reload of plugin file views.
|
|
ui.profilesComboBox->setCurrentIndex(next);
|
|
|
|
removeProfile(profile);
|
|
ui.profilesComboBox->removeItem(ui.profilesComboBox->findText(profile));
|
|
|
|
checkForDefaultProfile();
|
|
}
|
|
|
|
void Launcher::DataFilesPage::updateOkButton(const QString &text)
|
|
{
|
|
// We do this here because we need the profiles combobox text
|
|
if (text.isEmpty()) {
|
|
mProfileDialog->setOkButtonEnabled(false);
|
|
return;
|
|
}
|
|
|
|
(ui.profilesComboBox->findText(text) == -1)
|
|
? mProfileDialog->setOkButtonEnabled(true)
|
|
: mProfileDialog->setOkButtonEnabled(false);
|
|
}
|
|
|
|
void Launcher::DataFilesPage::checkForDefaultProfile()
|
|
{
|
|
//don't allow deleting "Default" profile
|
|
bool success = (ui.profilesComboBox->currentText() != mDefaultContentListName);
|
|
|
|
ui.deleteProfileAction->setEnabled (success);
|
|
ui.profilesComboBox->setEditEnabled (success);
|
|
}
|
|
|
|
bool Launcher::DataFilesPage::showDeleteMessageBox (const QString &text)
|
|
{
|
|
QMessageBox msgBox(this);
|
|
msgBox.setWindowTitle(tr("Delete Content List"));
|
|
msgBox.setIcon(QMessageBox::Warning);
|
|
msgBox.setStandardButtons(QMessageBox::Cancel);
|
|
msgBox.setText(tr("Are you sure you want to delete <b>%1</b>?").arg(text));
|
|
|
|
QAbstractButton *deleteButton =
|
|
msgBox.addButton(tr("Delete"), QMessageBox::ActionRole);
|
|
|
|
msgBox.exec();
|
|
|
|
return (msgBox.clickedButton() == deleteButton);
|
|
}
|