2015-02-03 03:55:30 +05:30
|
|
|
/* Copyright 2013-2015 MultiMC Contributors
|
2014-06-02 04:19:53 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "PageDialog.h"
|
|
|
|
|
2014-06-29 23:29:08 +05:30
|
|
|
#include <QDialogButtonBox>
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QVBoxLayout>
|
2014-07-13 02:32:52 +05:30
|
|
|
#include <QKeyEvent>
|
|
|
|
|
|
|
|
#include "MultiMC.h"
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "settings/SettingsObject.h"
|
|
|
|
#include "widgets/IconLabel.h"
|
|
|
|
#include "widgets/PageContainer.h"
|
2014-06-02 04:19:53 +05:30
|
|
|
|
2014-07-13 02:32:52 +05:30
|
|
|
PageDialog::PageDialog(BasePageProviderPtr pageProvider, QString defaultId, QWidget *parent)
|
|
|
|
: QDialog(parent)
|
2014-06-02 04:19:53 +05:30
|
|
|
{
|
|
|
|
setWindowTitle(pageProvider->dialogTitle());
|
2014-06-29 23:29:08 +05:30
|
|
|
m_container = new PageContainer(pageProvider, defaultId, this);
|
|
|
|
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout;
|
|
|
|
mainLayout->addWidget(m_container);
|
|
|
|
mainLayout->setSpacing(0);
|
2014-07-13 02:32:52 +05:30
|
|
|
mainLayout->setContentsMargins(0, 0, 0, 0);
|
2014-06-29 23:29:08 +05:30
|
|
|
setLayout(mainLayout);
|
2014-07-13 02:32:52 +05:30
|
|
|
|
2014-06-03 05:04:44 +05:30
|
|
|
QDialogButtonBox *buttons =
|
2014-06-10 04:16:05 +05:30
|
|
|
new QDialogButtonBox(QDialogButtonBox::Help | QDialogButtonBox::Close);
|
|
|
|
buttons->button(QDialogButtonBox::Close)->setDefault(true);
|
2014-06-29 23:29:08 +05:30
|
|
|
m_container->addButtons(buttons);
|
2014-06-02 04:19:53 +05:30
|
|
|
|
2014-06-29 23:29:08 +05:30
|
|
|
connect(buttons->button(QDialogButtonBox::Close), SIGNAL(clicked()), this, SLOT(close()));
|
2014-07-13 02:32:52 +05:30
|
|
|
connect(buttons->button(QDialogButtonBox::Help), SIGNAL(clicked()), m_container,
|
|
|
|
SLOT(help()));
|
2014-06-03 05:04:44 +05:30
|
|
|
|
2014-07-13 02:32:52 +05:30
|
|
|
restoreGeometry(
|
|
|
|
QByteArray::fromBase64(MMC->settings()->get("PagedGeometry").toByteArray()));
|
2014-06-03 05:04:44 +05:30
|
|
|
}
|
|
|
|
|
2014-07-13 02:32:52 +05:30
|
|
|
void PageDialog::closeEvent(QCloseEvent *event)
|
2014-06-02 04:19:53 +05:30
|
|
|
{
|
2015-05-25 11:51:35 +05:30
|
|
|
qDebug() << "Paged dialog close requested";
|
2014-07-13 02:32:52 +05:30
|
|
|
if (m_container->requestClose(event))
|
2014-06-10 04:16:05 +05:30
|
|
|
{
|
2015-05-25 11:51:35 +05:30
|
|
|
qDebug() << "Paged dialog close approved";
|
2014-06-10 04:16:05 +05:30
|
|
|
MMC->settings()->set("PagedGeometry", saveGeometry().toBase64());
|
2015-05-25 11:51:35 +05:30
|
|
|
qDebug() << "Paged dialog geometry saved";
|
2014-06-10 04:16:05 +05:30
|
|
|
QDialog::closeEvent(event);
|
2014-06-03 05:04:44 +05:30
|
|
|
}
|
2014-06-02 04:19:53 +05:30
|
|
|
}
|