mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
fabd5d2057
This kind of wrapping will be needed anyway, and it's an improvement on what we had. Please give it a run. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5846 a592a061-630c-0410-9148-cb99ea01b6c8
112 lines
2.3 KiB
C
112 lines
2.3 KiB
C
/**
|
|
* \file QPrint.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 "LyXView.h"
|
|
#include "PrinterParams.h"
|
|
#include "ControlPrint.h"
|
|
#include "support/lstrings.h"
|
|
#include "qt_helpers.h"
|
|
|
|
#include "QPrint.h"
|
|
#include "QLPrintDialog.h"
|
|
#include "Qt2BC.h"
|
|
|
|
#include <qlineedit.h>
|
|
#include <qcheckbox.h>
|
|
#include <qradiobutton.h>
|
|
#include <qspinbox.h>
|
|
#include <qpushbutton.h>
|
|
|
|
|
|
typedef Qt2CB<ControlPrint, Qt2DB<QLPrintDialog> > base_class;
|
|
|
|
|
|
QPrint::QPrint()
|
|
: base_class(qt_("Print"))
|
|
{
|
|
}
|
|
|
|
|
|
void QPrint::build_dialog()
|
|
{
|
|
dialog_.reset(new QLPrintDialog(this));
|
|
|
|
bc().setOK(dialog_->printPB);
|
|
bc().setCancel(dialog_->closePB);
|
|
}
|
|
|
|
|
|
void QPrint::update_contents()
|
|
{
|
|
PrinterParams & pp = controller().params();
|
|
|
|
// only reset params if a different buffer
|
|
if (!pp.file_name.empty() && pp.file_name == fromqstr(dialog_->fileED->text()))
|
|
return;
|
|
|
|
dialog_->printerED->setText(toqstr(pp.printer_name));
|
|
dialog_->fileED->setText(toqstr(pp.file_name));
|
|
|
|
dialog_->printerRB->setChecked(true);
|
|
if (pp.target == PrinterParams::FILE)
|
|
dialog_->fileRB->setChecked(true);
|
|
|
|
dialog_->reverseCB->setChecked(pp.reverse_order);
|
|
|
|
dialog_->copiesSB->setValue(pp.count_copies);
|
|
|
|
dialog_->oddCB->setChecked(pp.odd_pages);
|
|
dialog_->evenCB->setChecked(pp.even_pages);
|
|
|
|
dialog_->collateCB->setChecked(pp.sorted_copies);
|
|
|
|
if (pp.all_pages) {
|
|
dialog_->allRB->setChecked(true);
|
|
return;
|
|
}
|
|
|
|
dialog_->rangeRB->setChecked(true);
|
|
|
|
QString s;
|
|
s.setNum(pp.from_page);
|
|
dialog_->fromED->setText(s);
|
|
s.setNum(pp.to_page);
|
|
dialog_->toED->setText(s);
|
|
}
|
|
|
|
|
|
void QPrint::apply()
|
|
{
|
|
PrinterParams::Target t = PrinterParams::PRINTER;
|
|
if (dialog_->fileRB->isChecked())
|
|
t = PrinterParams::FILE;
|
|
|
|
PrinterParams const pp(t,
|
|
fromqstr(dialog_->printerED->text()),
|
|
fromqstr(dialog_->fileED->text()),
|
|
dialog_->allRB->isChecked(),
|
|
dialog_->fromED->text().toUInt(),
|
|
dialog_->toED->text().toUInt(),
|
|
dialog_->oddCB->isChecked(),
|
|
dialog_->evenCB->isChecked(),
|
|
dialog_->copiesSB->text().toUInt(),
|
|
dialog_->collateCB->isChecked(),
|
|
dialog_->reverseCB->isChecked());
|
|
|
|
controller().params() = pp;
|
|
}
|