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.
koffice/kivio/kiviopart/ui/export_page_dialog.cpp

61 lines
1.5 KiB

#include "export_page_dialog.h"
#include <tqcheckbox.h>
#include <tqradiobutton.h>
#include <tqspinbox.h>
#include <tdelocale.h>
#include "export_page_dialog_base.h"
#include "kivio_config.h"
ExportPageDialog::ExportPageDialog( TQWidget *parent, const char *name )
: KDialogBase(parent, name, true, i18n("Export Page"), Ok|Cancel, Ok)
{
m_view = new ExportPageDialogBase(this);
setMainWidget(m_view);
m_view->m_checkCrop->setChecked(Kivio::Config::crop());
m_view->m_radioFullPage->setChecked(!Kivio::Config::selectedStencils());
m_view->m_radioSelectedStencils->setChecked(Kivio::Config::selectedStencils());
m_view->m_spinBorder->setValue(Kivio::Config::border());
m_view->m_spinQuality->setValue(Kivio::Config::quality());
}
int ExportPageDialog::quality()
{
return m_view->m_spinQuality->value();
}
int ExportPageDialog::border()
{
return m_view->m_spinBorder->value();
}
bool ExportPageDialog::crop()
{
return m_view->m_checkCrop->isChecked();
}
bool ExportPageDialog::fullPage()
{
return m_view->m_radioFullPage->isChecked();
}
bool ExportPageDialog::selectedStencils()
{
return m_view->m_radioSelectedStencils->isChecked();
}
void ExportPageDialog::slotOk()
{
Kivio::Config::setCrop(m_view->m_checkCrop->isChecked());
Kivio::Config::setSelectedStencils(m_view->m_radioSelectedStencils->isChecked());
Kivio::Config::setBorder(m_view->m_spinBorder->value());
Kivio::Config::setQuality(m_view->m_spinQuality->value());
accept();
}
#include "export_page_dialog.moc"