mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
6627177575
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5557 a592a061-630c-0410-9148-cb99ea01b6c8
97 lines
1.7 KiB
C
97 lines
1.7 KiB
C
/**
|
|
* \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 <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "gettext.h"
|
|
#include "support/filetools.h"
|
|
#include "support/lstrings.h"
|
|
|
|
#include "QPrint.h"
|
|
#include "QLPrintDialog.h"
|
|
|
|
#include <qfiledialog.h>
|
|
#include <qcheckbox.h>
|
|
#include <qlabel.h>
|
|
#include <qlineedit.h>
|
|
#include <qpushbutton.h>
|
|
#include <qradiobutton.h>
|
|
#include <qspinbox.h>
|
|
|
|
|
|
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();
|
|
}
|