/***************************************************************************** * DoubleWidget.cpp Handle double and float settings. ***************************************************************************** * Copyright (C) 2008-2014 VideoLAN * * Authors: Hugo Beauzée-Luyssen * * This program 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 2 * of the License, or (at your option) any later version. * * This program 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 this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ #include "DoubleWidget.h" #include "Settings/SettingValue.h" #include DoubleWidget::DoubleWidget( SettingValue *s, QWidget *parent /*= NULL*/ ) : ISettingsCategoryWidget( parent, s ) { m_spinbox = new QDoubleSpinBox( this ); layout()->addWidget( m_spinbox ); changed( s->get() ); if ( ( s->flags() & SettingValue::Clamped ) != 0 ) { if ( s->min().isValid() ) m_spinbox->setMinimum( s->min().toDouble() ); if ( s->max().isValid() ) m_spinbox->setMaximum( s->max().toDouble() ); } } bool DoubleWidget::save() { m_setting->set( m_spinbox->value() ); return true; } void DoubleWidget::changed( const QVariant &val ) { m_spinbox->setValue( val.toDouble() ); }