/* This file is part of the KDE project Copyright (C) 2002-2003 Matthias Kretz This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. 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 "kviewconfmodules.h" #include #include #include #include #include #include #include #include #include typedef KGenericFactory KViewGeneralConfigFactory; K_EXPORT_COMPONENT_FACTORY( kcm_kviewgeneralconfig, KViewGeneralConfigFactory( "kcm_kviewgeneralconfig" ) ) KViewGeneralConfig::KViewGeneralConfig( TQWidget * parent, const char * /*name*/, const TQStringList & args ) : TDECModule( KViewGeneralConfigFactory::instance(), parent, args ) { TQBoxLayout * layout = new TQVBoxLayout( this, KDialog::marginHint(), KDialog::spacingHint() ); m_pResizeGroup = new TQVButtonGroup( i18n( "Resizing" ), this ); m_pResizeGroup->setSizePolicy( TQSizePolicy( TQSizePolicy::Minimum, TQSizePolicy::Fixed ) ); connect( m_pResizeGroup, TQT_SIGNAL( clicked( int ) ), this, TQT_SLOT( resizeChanged( int ) ) ); layout->addWidget( m_pResizeGroup ); ( void )new TQRadioButton( i18n( "Only resize window" ), m_pResizeGroup ); ( void )new TQRadioButton( i18n( "Resize image to fit window" ), m_pResizeGroup ); ( void )new TQRadioButton( i18n( "Don't resize anything" ), m_pResizeGroup ); TQWhatsThis::add( new TQRadioButton( i18n( "Best fit" ), m_pResizeGroup ), i18n( "

KView will resize the window to fit the image. The image will never be scaled up but if it is too large for the screen the image will be scaled down.

" ) ); load(); } KViewGeneralConfig::~KViewGeneralConfig() { } void KViewGeneralConfig::save() { TDEConfigGroup cfgGroup( TDEGlobal::config(), "KView General" ); m_savedPosition = m_pResizeGroup->id( m_pResizeGroup->selected() ); cfgGroup.writeEntry( "Resize Mode", m_savedPosition ); emit changed( false ); TDEGlobal::config()->sync(); } void KViewGeneralConfig::load() { TDEConfigGroup cfgGroup( TDEGlobal::config(), "KView General" ); int m_savedPosition = cfgGroup.readNumEntry( "Resize Mode", 2 ); if( m_savedPosition < 0 || m_savedPosition > 3 ) m_savedPosition = 2; m_pResizeGroup->setButton( m_savedPosition ); emit changed( false ); } void KViewGeneralConfig::defaults() { m_pResizeGroup->setButton( 2 ); emit changed( ( 2 != m_savedPosition ) ); } void KViewGeneralConfig::resizeChanged( int pos ) { emit changed( ( pos != m_savedPosition ) ); } // vim:sw=4:ts=4 #include "kviewconfmodules.moc"