mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 02:19:55 +00:00
133 lines
3.2 KiB
C++
133 lines
3.2 KiB
C++
#include "filedialog.hpp"
|
|
|
|
#include <QCheckBox>
|
|
#include <QPushButton>
|
|
#include <QDialogButtonBox>
|
|
#include <QSortFilterProxyModel>
|
|
#include <QRegExpValidator>
|
|
#include <QRegExp>
|
|
#include <QSpacerItem>
|
|
#include <QPushButton>
|
|
#include <QLabel>
|
|
#include <QGroupBox>
|
|
|
|
#include "components/contentselector/model/esmfile.hpp"
|
|
#include "components/contentselector/view/contentselector.hpp"
|
|
|
|
#include "filewidget.hpp"
|
|
#include "adjusterwidget.hpp"
|
|
|
|
CSVDoc::FileDialog::FileDialog(QWidget *parent) :
|
|
QDialog(parent), mSelector (0)
|
|
{
|
|
ui.setupUi (this);
|
|
resize(400, 400);
|
|
|
|
setObjectName ("FileDialog");
|
|
mSelector = new ContentSelectorView::ContentSelector (ui.contentSelectorWidget);
|
|
}
|
|
|
|
void CSVDoc::FileDialog::addFiles(const QString &path)
|
|
{
|
|
mSelector->addFiles(path);
|
|
}
|
|
|
|
QStringList CSVDoc::FileDialog::selectedFilePaths()
|
|
{
|
|
QStringList filePaths;
|
|
|
|
foreach (ContentSelectorModel::EsmFile *file, mSelector->selectedFiles() )
|
|
filePaths.append(file->path());
|
|
|
|
return filePaths;
|
|
}
|
|
|
|
void CSVDoc::FileDialog::showDialog(DialogType dialogType)
|
|
{
|
|
mDialogType = dialogType;
|
|
|
|
switch (mDialogType)
|
|
{
|
|
case DialogType_New:
|
|
buildNewFileView();
|
|
break;
|
|
|
|
case DialogType_Open:
|
|
buildOpenFileView();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
//connections common to both dialog view flavors
|
|
connect (mSelector, SIGNAL (signalCurrentGamefileIndexChanged (int)),
|
|
this, SLOT (slotUpdateAcceptButton (int)));
|
|
|
|
connect (ui.projectButtonBox, SIGNAL (accepted()), this, SIGNAL (createNewFile()));
|
|
connect (ui.projectButtonBox, SIGNAL (rejected()), this, SLOT (slotRejected()));
|
|
|
|
show();
|
|
raise();
|
|
activateWindow();
|
|
}
|
|
|
|
void CSVDoc::FileDialog::buildNewFileView()
|
|
{
|
|
setWindowTitle(tr("Create a new addon"));
|
|
|
|
QPushButton* createButton = ui.projectButtonBox->button (QDialogButtonBox::Ok);
|
|
createButton->setText ("Create");
|
|
createButton->setEnabled (false);
|
|
|
|
mFileWidget = new FileWidget (this);
|
|
|
|
mFileWidget->setType (true);
|
|
mFileWidget->extensionLabelIsVisible(true);
|
|
|
|
ui.projectGroupBoxLayout->insertWidget (0, mFileWidget);
|
|
|
|
connect (mFileWidget, SIGNAL (nameChanged(const QString &, bool)),
|
|
this, SLOT (slotUpdateAcceptButton(const QString &, bool)));
|
|
}
|
|
|
|
void CSVDoc::FileDialog::buildOpenFileView()
|
|
{
|
|
setWindowTitle(tr("Open"));
|
|
ui.projectGroupBox->setTitle (QString(""));
|
|
|
|
ui.projectButtonBox->button(QDialogButtonBox::Ok)->setEnabled (false);
|
|
}
|
|
|
|
void CSVDoc::FileDialog::slotUpdateAcceptButton (int)
|
|
{
|
|
QString name = "";
|
|
|
|
if (mDialogType == DialogType_New)
|
|
name = mFileWidget->getName();
|
|
|
|
slotUpdateAcceptButton (name, true);
|
|
}
|
|
|
|
void CSVDoc::FileDialog::slotUpdateAcceptButton(const QString &name, bool)
|
|
{
|
|
bool success = (mSelector->selectedFiles().size() > 0);
|
|
|
|
if (mDialogType == DialogType_New)
|
|
success = success && !(name.isEmpty());
|
|
|
|
ui.projectButtonBox->button (QDialogButtonBox::Ok)->setEnabled (success);
|
|
}
|
|
|
|
QString CSVDoc::FileDialog::filename() const
|
|
{
|
|
if (mDialogType == DialogType_New)
|
|
return mFileWidget->getName();
|
|
|
|
return mSelector->currentFile();
|
|
}
|
|
|
|
void CSVDoc::FileDialog::slotRejected()
|
|
{
|
|
emit rejected();
|
|
close();
|
|
}
|