61172d46c4
--HG-- branch : develop
142 lines
4.8 KiB
C++
142 lines
4.8 KiB
C++
/************************************************************************
|
|
**
|
|
** @file dialogpreferences.cpp
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @date 12 4, 2017
|
|
**
|
|
** @brief
|
|
** @copyright
|
|
** This source code is part of the Valentina project, a pattern making
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
** Copyright (C) 2017 Valentina project
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
|
**
|
|
** Valentina is free software: you can redistribute it and/or modify
|
|
** it under the terms of the GNU General Public License as published by
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
** (at your option) any later version.
|
|
**
|
|
** Valentina is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
** GNU General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
**
|
|
*************************************************************************/
|
|
|
|
#include "dialogpreferences.h"
|
|
#include "ui_dialogpreferences.h"
|
|
#include "../core/vapplication.h"
|
|
#include "configpages/preferencesconfigurationpage.h"
|
|
#include "configpages/preferencespatternpage.h"
|
|
#include "configpages/preferencespathpage.h"
|
|
|
|
#include <QPushButton>
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
DialogPreferences::DialogPreferences(QWidget *parent)
|
|
: QDialog(parent),
|
|
ui(new Ui::DialogPreferences),
|
|
m_isInitialized(false),
|
|
m_configurePage(new PreferencesConfigurationPage),
|
|
m_patternPage(new PreferencesPatternPage),
|
|
m_pathPage(new PreferencesPathPage)
|
|
{
|
|
ui->setupUi(this);
|
|
qApp->Settings()->GetOsSeparator() ? setLocale(QLocale()) : setLocale(QLocale::c());
|
|
|
|
QPushButton *bOk = ui->buttonBox->button(QDialogButtonBox::Ok);
|
|
SCASSERT(bOk != nullptr)
|
|
connect(bOk, &QPushButton::clicked, this, &DialogPreferences::Ok);
|
|
|
|
QPushButton *bApply = ui->buttonBox->button(QDialogButtonBox::Apply);
|
|
SCASSERT(bApply != nullptr)
|
|
connect(bApply, &QPushButton::clicked, this, &DialogPreferences::Apply);
|
|
|
|
ui->pagesWidget->insertWidget(0, m_configurePage);
|
|
ui->pagesWidget->insertWidget(1, m_patternPage);
|
|
ui->pagesWidget->insertWidget(2, m_pathPage);
|
|
|
|
connect(ui->contentsWidget, &QListWidget::currentItemChanged, this, &DialogPreferences::PageChanged);
|
|
ui->pagesWidget->setCurrentIndex(0);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
DialogPreferences::~DialogPreferences()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogPreferences::showEvent(QShowEvent *event)
|
|
{
|
|
QDialog::showEvent( event );
|
|
if ( event->spontaneous() )
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (m_isInitialized)
|
|
{
|
|
return;
|
|
}
|
|
// do your init stuff here
|
|
|
|
setMinimumSize(size());
|
|
|
|
QSize sz = qApp->Settings()->GetPreferenceDialogSize();
|
|
if (sz.isEmpty() == false)
|
|
{
|
|
resize(sz);
|
|
}
|
|
|
|
m_isInitialized = true;//first show windows are held
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogPreferences::resizeEvent(QResizeEvent *event)
|
|
{
|
|
Q_UNUSED(event)
|
|
// remember the size for the next time this dialog is opened, but only
|
|
// if widget was already initialized, which rules out the resize at
|
|
// dialog creating, which would
|
|
if (m_isInitialized)
|
|
{
|
|
qApp->Settings()->SetPreferenceDialogSize(size());
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogPreferences::PageChanged(QListWidgetItem *current, QListWidgetItem *previous)
|
|
{
|
|
if (current == nullptr)
|
|
{
|
|
current = previous;
|
|
}
|
|
int rowIndex = ui->contentsWidget->row(current);
|
|
ui->pagesWidget->setCurrentIndex(rowIndex);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogPreferences::Apply()
|
|
{
|
|
m_configurePage->Apply();
|
|
m_patternPage->Apply();
|
|
m_pathPage->Apply();
|
|
|
|
m_patternPage->InitDefaultSeamAllowance();
|
|
|
|
qApp->ValentinaSettings()->GetOsSeparator() ? setLocale(QLocale()) : setLocale(QLocale::c());
|
|
emit UpdateProperties();
|
|
setResult(QDialog::Accepted);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogPreferences::Ok()
|
|
{
|
|
Apply();
|
|
done(QDialog::Accepted);
|
|
}
|