mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
e6fea4b844
* controllers/Dialog.[Ch] - View::title_ is now a docstring (ctor and access functions changed) * controllers/ControlLog.[Ch] - title() now returns a docstring * controllers/ControlLog.[Ch] - title() now returns a docstring * qt4/*: adapted to above changes. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15283 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>
|
|
|
|
#include "QPrint.h"
|
|
#include "QLPrintDialog.h"
|
|
#include "Qt2BC.h"
|
|
#include "qt_helpers.h"
|
|
|
|
#include "PrinterParams.h"
|
|
|
|
#include "controllers/ControlPrint.h"
|
|
|
|
#include <qlineedit.h>
|
|
#include <qcheckbox.h>
|
|
#include <qradiobutton.h>
|
|
#include <qspinbox.h>
|
|
#include <qpushbutton.h>
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
typedef QController<ControlPrint, QView<QLPrintDialog> > base_class;
|
|
|
|
|
|
QPrint::QPrint(Dialog & parent)
|
|
: base_class(parent, _("Print Document"))
|
|
{
|
|
}
|
|
|
|
|
|
void QPrint::build_dialog()
|
|
{
|
|
dialog_.reset(new QLPrintDialog(this));
|
|
|
|
bcview().setOK(dialog_->printPB);
|
|
bcview().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;
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|