From e16866e072f94410321d70daedbcb855ea878cac Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 6 Nov 2011 15:56:40 -0600 Subject: Actually move the kde files that were renamed in the last commit --- tdeprint/kpmarginpage.cpp | 163 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 163 insertions(+) create mode 100644 tdeprint/kpmarginpage.cpp (limited to 'tdeprint/kpmarginpage.cpp') diff --git a/tdeprint/kpmarginpage.cpp b/tdeprint/kpmarginpage.cpp new file mode 100644 index 000000000..554679ee7 --- /dev/null +++ b/tdeprint/kpmarginpage.cpp @@ -0,0 +1,163 @@ +/* + * This file is part of the KDE libraries + * Copyright (c) 2001 Michael Goffioul + * + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License version 2 as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + **/ + +#include + +#include "kpmarginpage.h" +#include "kprinter.h" +#include "driver.h" +#include "marginwidget.h" + +#include +#include +#include +#include + +#include +#include +#include +#include + +KPMarginPage::KPMarginPage(KPrinter *prt, DrMain *driver, TQWidget *parent, const char *name) +: KPrintDialogPage(0, driver, parent, name) +{ + m_printer = prt; + setTitle(i18n("Margins")); + m_usedriver = true; + + TQGroupBox *box = new TQGroupBox(1, Qt::Vertical, i18n("Margins"), this); + m_margin = new MarginWidget(box, "MarginWidget", (m_printer != 0)); + //m_margin->setSymetricMargins(true); + //if (m_printer) + // m_margin->setResolution(m_printer->resolution()); + + TQVBoxLayout *l0 = new TQVBoxLayout(this, 0, 10); + l0->addWidget(box); + l0->addStretch(1); +} + +KPMarginPage::~KPMarginPage() +{ +} + +void KPMarginPage::initPageSize(const TQString& ps, bool landscape) +{ + // first retrieve the Qt values for page size and margins + TQPrinter prt(TQPrinter::PrinterResolution); + prt.setFullPage(true); + prt.setPageSize((TQPrinter::PageSize)(ps.isEmpty() ? KGlobal::locale()->pageSize() : ps.toInt())); + TQPaintDeviceMetrics metrics(&prt); + float w = metrics.width(); + float h = metrics.height(); + unsigned int it, il, ib, ir; + prt.margins( &it, &il, &ib, &ir ); + float mt = it; + float ml = il; + float mb = ib; + float mr = ir; + + if (driver() && m_usedriver ) + { + QString pageSize(ps); + + if (pageSize.isEmpty()) + { + DrListOption *o = (DrListOption*)driver()->findOption("PageSize"); + if (o) + pageSize = o->get("default"); + } + if (!pageSize.isEmpty()) + { + DrPageSize *dps = driver()->findPageSize(pageSize); + if (dps) + { + w = dps->pageWidth(); + h = dps->pageHeight(); + mt = QMAX( mt, dps->topMargin() ); + ml = QMAX( ml, dps->leftMargin() ); + mb = QMAX( mb, dps->bottomMargin() ); + mr = QMAX( mr, dps->rightMargin() ); + } + } + } + m_margin->setPageSize(w, h); + m_margin->setOrientation(landscape ? KPrinter::Landscape : KPrinter::Portrait); + m_margin->setDefaultMargins( mt, mb, ml, mr ); + m_margin->setCustomEnabled(false); +} + +void KPMarginPage::setOptions(const TQMap& opts) +{ + QString orient = opts["orientation-requested"]; + bool land = (orient.isEmpty()? opts["kde-orientation"] == "Landscape" : orient == "4" || orient == "5"); + TQString ps = opts[ "kde-printsize" ]; + if ( ps.isEmpty() ) + { + m_usedriver = true; + ps = opts[ "PageSize" ]; + if (ps.isEmpty()) + ps = opts["kde-pagesize"]; + } + else + m_usedriver = false; + initPageSize(ps, land); + + bool marginset(false); + QString value; + if (!(value=opts["kde-margin-top"]).isEmpty() && value.toFloat() != m_margin->top()) + { + marginset = true; + m_margin->setTop(value.toFloat()); + } + if (!(value=opts["kde-margin-left"]).isEmpty() && value.toFloat() != m_margin->left()) + { + marginset = true; + m_margin->setLeft(value.toFloat()); + } + if (!(value=opts["kde-margin-bottom"]).isEmpty() && value.toFloat() != m_margin->bottom()) + { + marginset = true; + m_margin->setBottom(value.toFloat()); + } + if (!(value=opts["kde-margin-right"]).isEmpty() && value.toFloat() != m_margin->right()) + { + marginset = true; + m_margin->setRight(value.toFloat()); + } + m_margin->setCustomEnabled(marginset); +} + +void KPMarginPage::getOptions(TQMap& opts, bool /* incldef */) +{ + if (m_margin->isCustomEnabled() /*|| incldef*/) + { + opts["kde-margin-top"] = TQString::number(m_margin->top()); + opts["kde-margin-left"] = TQString::number(m_margin->left()); + opts["kde-margin-bottom"] = TQString::number(m_margin->bottom()); + opts["kde-margin-right"] = TQString::number(m_margin->right()); + } + else + { + opts.remove("kde-margin-top"); + opts.remove("kde-margin-left"); + opts.remove("kde-margin-bottom"); + opts.remove("kde-margin-right"); + } +} -- cgit v1.2.1