summaryrefslogtreecommitdiffstats
path: root/kdeprint/kpmarginpage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdeprint/kpmarginpage.cpp')
-rw-r--r--kdeprint/kpmarginpage.cpp163
1 files changed, 0 insertions, 163 deletions
diff --git a/kdeprint/kpmarginpage.cpp b/kdeprint/kpmarginpage.cpp
deleted file mode 100644
index 554679ee7..000000000
--- a/kdeprint/kpmarginpage.cpp
+++ /dev/null
@@ -1,163 +0,0 @@
-/*
- * This file is part of the KDE libraries
- * Copyright (c) 2001 Michael Goffioul <tdeprint@swing.be>
- *
- *
- * 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 <config.h>
-
-#include "kpmarginpage.h"
-#include "kprinter.h"
-#include "driver.h"
-#include "marginwidget.h"
-
-#include <tqgroupbox.h>
-#include <tqlayout.h>
-#include <tqprinter.h>
-#include <tqpaintdevicemetrics.h>
-
-#include <kiconloader.h>
-#include <klocale.h>
-#include <kdebug.h>
-#include <kglobal.h>
-
-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<TQString,TQString>& 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<TQString,TQString>& 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");
- }
-}