You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
3.8 KiB
115 lines
3.8 KiB
/*
|
|
*
|
|
* Copyright (C) 2005 Fredrik Edemar
|
|
* f_edemar@linux.se
|
|
*
|
|
* 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.
|
|
*
|
|
*/
|
|
|
|
// TQt includes
|
|
#include <tqlayout.h>
|
|
|
|
// KDE includes
|
|
#include <kdebug.h>
|
|
#include <kdialog.h>
|
|
#include <tdelocale.h>
|
|
#include <tqtooltip.h>
|
|
|
|
// local includes
|
|
#include "KPrPrinterDlg.h"
|
|
|
|
KPrPrinterDlg::KPrPrinterDlg( TQWidget *parent, const char *name )
|
|
: KPrintDialogPage( parent, name )
|
|
{
|
|
setTitle( i18n( "KPresenter Options" ) );
|
|
TQGridLayout *layout = new TQGridLayout( this, 2, 1, 11, 6 );
|
|
txtRows = new KIntNumInput(this );
|
|
txtRows->setMinValue(1);
|
|
txtRows->setMaxValue(5);
|
|
txtRows->setValue(1);
|
|
txtColumns = new KIntNumInput(this );
|
|
txtColumns->setMinValue(1);
|
|
txtColumns->setMaxValue(5);
|
|
txtColumns->setValue(1);
|
|
connect( txtRows, TQT_SIGNAL( valueChanged( int ) ), this, TQT_SLOT( txtRows_valueChanged( int ) ) );
|
|
connect( txtColumns, TQT_SIGNAL( valueChanged( int ) ), this, TQT_SLOT( txtColumns_valueChanged( int ) ) );
|
|
|
|
TQLabel *caption = new TQLabel(i18n("Slides in the pages:"), this );
|
|
TQToolTip::add( caption, i18n("Choose how many rows and columns with slides you want to have on all pages") );
|
|
layout->addMultiCellWidget( caption, 0, 0, 0, 1 );
|
|
TQVBoxLayout *l2 = new TQVBoxLayout( 0, 0, 6 );
|
|
l2->addWidget( new TQLabel(i18n("Rows: "), this) );
|
|
l2->addWidget( new TQLabel(i18n("Columns: "), this) );
|
|
layout->addLayout( l2, 1, 0 );
|
|
|
|
TQVBoxLayout *l3 = new TQVBoxLayout( 0, 0, 6 );
|
|
l3->addWidget( txtRows );
|
|
l3->addWidget( txtColumns );
|
|
layout->addLayout( l3, 1, 1 );
|
|
|
|
drawBorder = new TQCheckBox(i18n("Draw border around the slides"), this );
|
|
drawBorder->setChecked( true );
|
|
drawBorder->setEnabled( false );
|
|
layout->addMultiCellWidget( drawBorder, 2, 2, 0, 1 );
|
|
}
|
|
|
|
void KPrPrinterDlg::getOptions( TQMap<TQString, TQString>& opts, bool )
|
|
{
|
|
opts["kde-kpresenter-printrows"] = TQString::number(txtRows->value());
|
|
opts["kde-kpresenter-printcolumns"] = TQString::number(txtColumns->value());
|
|
opts["kde-kpresenter-printslideborders"] = TQString::number(drawBorder->isEnabled() && drawBorder->isChecked());
|
|
}
|
|
|
|
void KPrPrinterDlg::setOptions( const TQMap<TQString, TQString>& opts )
|
|
{
|
|
if ( opts["kde-kpresenter-printrows"].isEmpty() )
|
|
txtRows->setValue(1);
|
|
else
|
|
txtRows->setValue((opts["kde-kpresenter-printrows"]).toInt());
|
|
if ( opts["kde-kpresenter-printcolumns"].isEmpty() )
|
|
txtColumns->setValue(1);
|
|
else
|
|
txtColumns->setValue((opts["kde-kpresenter-printcolumns"]).toInt());
|
|
|
|
if ( opts["kde-kpresenter-printslideborders"].isEmpty() )
|
|
drawBorder->setChecked(true);
|
|
else
|
|
drawBorder->setChecked((opts["kde-kpresenter-printslideborders"]).toInt());
|
|
}
|
|
|
|
bool KPrPrinterDlg::isValid( const TQString& )
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void KPrPrinterDlg::txtRows_valueChanged( int new_value)
|
|
{
|
|
if ( new_value == 1 && txtColumns->value() == 1 )
|
|
drawBorder->setEnabled( false );
|
|
else
|
|
drawBorder->setEnabled( true );
|
|
}
|
|
void KPrPrinterDlg::txtColumns_valueChanged( int new_value )
|
|
{
|
|
if ( new_value == 1 && txtRows->value() == 1 )
|
|
drawBorder->setEnabled( false );
|
|
else
|
|
drawBorder->setEnabled( true );
|
|
}
|
|
|
|
#include "KPrPrinterDlg.moc"
|