110 lines
4.1 KiB
C++
110 lines
4.1 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2010 Jürgen Riegel <juergen.riegel@web.de> *
|
|
* *
|
|
* This file is part of the FreeCAD CAx development system. *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Library General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library 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 Library General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Library General Public *
|
|
* License along with this library; see the file COPYING.LIB. If not, *
|
|
* write to the Free Software Foundation, Inc., 59 Temple Place, *
|
|
* Suite 330, Boston, MA 02111-1307, USA *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
|
|
#include "PreCompiled.h"
|
|
|
|
#ifndef _PreComp_
|
|
# include <QRegExp>
|
|
#endif
|
|
|
|
#include "ui_DlgSettingsUnits.h"
|
|
#include "DlgSettingsUnitsImp.h"
|
|
#include "NavigationStyle.h"
|
|
#include "PrefWidgets.h"
|
|
#include <App/Application.h>
|
|
#include <Base/Console.h>
|
|
#include <Base/Parameter.h>
|
|
#include <Base/UnitsApi.h>
|
|
|
|
using namespace Gui::Dialog;
|
|
using namespace Base;
|
|
|
|
/* TRANSLATOR Gui::Dialog::DlgSettingsUnitsImp */
|
|
|
|
/**
|
|
* Constructs a DlgSettingsUnitsImp which is a child of 'parent', with the
|
|
* name 'name' and widget flags set to 'f'
|
|
*/
|
|
DlgSettingsUnitsImp::DlgSettingsUnitsImp(QWidget* parent)
|
|
: PreferencePage( parent ), ui(new Ui_DlgSettingsUnits)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
//fillUpListBox();
|
|
ui->tableWidget->setVisible(false);
|
|
}
|
|
|
|
/**
|
|
* Destroys the object and frees any allocated resources
|
|
*/
|
|
DlgSettingsUnitsImp::~DlgSettingsUnitsImp()
|
|
{
|
|
// no need to delete child widgets, Qt does it all for us
|
|
delete ui;
|
|
}
|
|
|
|
void DlgSettingsUnitsImp::on_comboBox_ViewSystem_currentIndexChanged(int index)
|
|
{
|
|
if (index < 0)
|
|
return; // happens when clearing the combo box in retranslateUi()
|
|
|
|
UnitsApi::setSchema((UnitSystem)index);
|
|
|
|
}
|
|
|
|
void DlgSettingsUnitsImp::saveSettings()
|
|
{
|
|
// must be done as very first because we create a new instance of NavigatorStyle
|
|
// where we set some attributes afterwards
|
|
ParameterGrp::handle hGrp = App::GetApplication().GetParameterGroupByPath
|
|
("User parameter:BaseApp/Preferences/Units");
|
|
hGrp->SetInt("UserSchema", ui->comboBox_ViewSystem->currentIndex());
|
|
hGrp->SetInt("Decimals", ui->spinBoxDecimals->value());
|
|
Base::UnitsApi::setDecimals(ui->spinBoxDecimals->value());
|
|
}
|
|
|
|
void DlgSettingsUnitsImp::loadSettings()
|
|
{
|
|
ParameterGrp::handle hGrp = App::GetApplication().GetParameterGroupByPath
|
|
("User parameter:BaseApp/Preferences/Units");
|
|
ui->comboBox_ViewSystem->setCurrentIndex(hGrp->GetInt("UserSchema",0));
|
|
ui->spinBoxDecimals->setValue(hGrp->GetInt("Decimals",Base::UnitsApi::getDecimals()));
|
|
}
|
|
|
|
/**
|
|
* Sets the strings of the subwidgets using the current language.
|
|
*/
|
|
void DlgSettingsUnitsImp::changeEvent(QEvent *e)
|
|
{
|
|
if (e->type() == QEvent::LanguageChange) {
|
|
int index = ui->comboBox_ViewSystem->currentIndex();
|
|
ui->retranslateUi(this);
|
|
ui->comboBox_ViewSystem->setCurrentIndex(index);
|
|
}
|
|
else {
|
|
QWidget::changeEvent(e);
|
|
}
|
|
}
|
|
|
|
#include "moc_DlgSettingsUnitsImp.cpp"
|