/** * \file QLPrintDialog.C * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author John Levon * \author Edwin Leuven * * Full author contact details are available in file CREDITS */ #include #ifdef __GNUG__ #pragma implementation #endif #include "gettext.h" #include "support/filetools.h" #include "support/lstrings.h" #include "QPrint.h" #include "QLPrintDialog.h" #include #include #include #include #include #include #include QLPrintDialog::QLPrintDialog(QPrint * f) : QPrintDialogBase(0, 0, false, 0), form_(f) { connect(printPB, SIGNAL(clicked()), form_, SLOT(slotOK())); connect(closePB, SIGNAL(clicked()), form_, SLOT(slotClose())); } void QLPrintDialog::change_adaptor() { form_->changed(); } void QLPrintDialog::browseClicked() { QString file = QFileDialog::getOpenFileName(QString::null, _("PostScript files (*.ps)"), this, 0, _("Select a file to print to")); if (!file.isNull()) { fileED->setText(file); form_->changed(); } } void QLPrintDialog::fileChanged() { if (!fileED->text().isEmpty()) fileRB->setChecked(true); form_->changed(); } void QLPrintDialog::copiesChanged(int i) { collateCB->setEnabled(i != 1); form_->changed(); } void QLPrintDialog::printerChanged() { printerRB->setChecked(true); form_->changed(); } void QLPrintDialog::pagerangeChanged() { int const from = strToUnsignedInt(fromED->text().latin1()); int const to = strToUnsignedInt(toED->text().latin1()); if (!toED->text().isEmpty() && from > to) fromED->setText(toED->text()); form_->changed(); }