/************************************************************************ ** ** @file dialogtapepreferences.cpp ** @author Roman Telezhynskyi ** @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 ** 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 . ** *************************************************************************/ #include "dialogtapepreferences.h" #include "ui_dialogtapepreferences.h" #include "../mapplication.h" #include "configpages/tapepreferencesconfigurationpage.h" #include "configpages/tapepreferencespathpage.h" #include #include //--------------------------------------------------------------------------------------------------------------------- DialogTapePreferences::DialogTapePreferences(QWidget *parent) :QDialog(parent), ui(new Ui::DialogTapePreferences), m_isInitialized(false), m_configurationPage(new TapePreferencesConfigurationPage), m_pathPage(new TapePreferencesPathPage) { ui->setupUi(this); #if defined(Q_OS_MAC) setWindowFlags(Qt::Window); #endif qApp->Settings()->GetOsSeparator() ? setLocale(QLocale()) : setLocale(QLocale::c()); QPushButton *bOk = ui->buttonBox->button(QDialogButtonBox::Ok); SCASSERT(bOk != nullptr) connect(bOk, &QPushButton::clicked, this, &DialogTapePreferences::Ok); QPushButton *bApply = ui->buttonBox->button(QDialogButtonBox::Apply); SCASSERT(bApply != nullptr) connect(bApply, &QPushButton::clicked, this, &DialogTapePreferences::Apply); ui->pagesWidget->insertWidget(0, m_configurationPage); ui->pagesWidget->insertWidget(1, m_pathPage); connect(ui->contentsWidget, &QListWidget::currentItemChanged, this, &DialogTapePreferences::PageChanged); ui->pagesWidget->setCurrentIndex(0); } //--------------------------------------------------------------------------------------------------------------------- DialogTapePreferences::~DialogTapePreferences() { delete ui; } //--------------------------------------------------------------------------------------------------------------------- void DialogTapePreferences::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 DialogTapePreferences::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 DialogTapePreferences::Apply() { m_configurationPage->Apply(); m_pathPage->Apply(); qApp->TapeSettings()->GetOsSeparator() ? setLocale(QLocale()) : setLocale(QLocale::c()); emit UpdateProperties(); setResult(QDialog::Accepted); } //--------------------------------------------------------------------------------------------------------------------- void DialogTapePreferences::Ok() { Apply(); done(QDialog::Accepted); } //--------------------------------------------------------------------------------------------------------------------- void DialogTapePreferences::PageChanged(QListWidgetItem *current, QListWidgetItem *previous) { if (current == nullptr) { current = previous; } int rowIndex = ui->contentsWidget->row(current); ui->pagesWidget->setCurrentIndex(rowIndex); }