mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	and comment out questionable code. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
		
			
				
	
	
		
			58 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "preferences_units.h"
 | |
| #include "ui_preferences_units.h"
 | |
| #include "core/prefs-macros.h"
 | |
| #include "core/qthelper.h"
 | |
| #include "core/subsurface-qt/SettingsObjectWrapper.h"
 | |
| 
 | |
| PreferencesUnits::PreferencesUnits(): AbstractPreferencesWidget(tr("Units"),QIcon(":units"),1), ui(new Ui::PreferencesUnits())
 | |
| {
 | |
| 	ui->setupUi(this);
 | |
| }
 | |
| 
 | |
| PreferencesUnits::~PreferencesUnits()
 | |
| {
 | |
| 
 | |
| }
 | |
| 
 | |
| void PreferencesUnits::refreshSettings()
 | |
| {
 | |
| 	switch(prefs.unit_system) {
 | |
| 		case METRIC: ui->metric->setChecked(true); break;
 | |
| 		case IMPERIAL: ui->imperial->setChecked(true); break;
 | |
| 		default: ui->personalize->setChecked(true); break;
 | |
| 	}
 | |
| 
 | |
| 	ui->gpsTraditional->setChecked(prefs.coordinates_traditional);
 | |
| 	ui->gpsDecimal->setChecked(!prefs.coordinates_traditional);
 | |
| 
 | |
| 	ui->celsius->setChecked(prefs.units.temperature == units::CELSIUS);
 | |
| 	ui->fahrenheit->setChecked(prefs.units.temperature == units::FAHRENHEIT);
 | |
| 	ui->meter->setChecked(prefs.units.length == units::METERS);
 | |
| 	ui->feet->setChecked(prefs.units.length == units::FEET);
 | |
| 	ui->bar->setChecked(prefs.units.pressure == units::BAR);
 | |
| 	ui->psi->setChecked(prefs.units.pressure == units::PSI);
 | |
| 	ui->liter->setChecked(prefs.units.volume == units::LITER);
 | |
| 	ui->cuft->setChecked(prefs.units.volume == units::CUFT);
 | |
| 	ui->kg->setChecked(prefs.units.weight == units::KG);
 | |
| 	ui->lbs->setChecked(prefs.units.weight == units::LBS);
 | |
| 	ui->units_group->setEnabled(ui->personalize->isChecked());
 | |
| 
 | |
| 	ui->vertical_speed_minutes->setChecked(prefs.units.vertical_speed_time == units::MINUTES);
 | |
| 	ui->vertical_speed_seconds->setChecked(prefs.units.vertical_speed_time == units::SECONDS);
 | |
| }
 | |
| 
 | |
| void PreferencesUnits::syncSettings()
 | |
| {
 | |
| 	auto units = SettingsObjectWrapper::instance()->unit_settings;
 | |
| 	QString unitSystem[] = {"metric", "imperial", "personal"};
 | |
| 	short unitValue = ui->metric->isChecked() ? METRIC : (ui->imperial->isChecked() ? IMPERIAL : PERSONALIZE);
 | |
| 
 | |
| 	units->setUnitSystem(unitSystem[unitValue]);
 | |
| 	units->setTemperature(ui->fahrenheit->isChecked() ? units::FAHRENHEIT : units::CELSIUS);
 | |
| 	units->setLength(ui->feet->isChecked() ? units::FEET : units::METERS);
 | |
| 	units->setPressure(ui->psi->isChecked() ? units::PSI : units::BAR);
 | |
| 	units->setVolume(ui->cuft->isChecked() ? units::CUFT : units::LITER);
 | |
| 	units->setWeight(ui->lbs->isChecked() ? units::LBS : units::KG);
 | |
| 	units->setVerticalSpeedTime(ui->vertical_speed_minutes->isChecked() ? units::MINUTES : units::SECONDS);
 | |
| 	units->setCoordinatesTraditional(ui->gpsTraditional->isChecked());
 | |
| }
 |