summaryrefslogtreecommitdiffstats
path: root/kviewshell/plugins/djvu/kprintDialogPage_DJVUconversionoptions.cpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit47d455dd55be855e4cc691c32f687f723d9247ee (patch)
tree52e236aaa2576bdb3840ebede26619692fed6d7d /kviewshell/plugins/djvu/kprintDialogPage_DJVUconversionoptions.cpp
downloadtdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.tar.gz
tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kviewshell/plugins/djvu/kprintDialogPage_DJVUconversionoptions.cpp')
-rw-r--r--kviewshell/plugins/djvu/kprintDialogPage_DJVUconversionoptions.cpp118
1 files changed, 118 insertions, 0 deletions
diff --git a/kviewshell/plugins/djvu/kprintDialogPage_DJVUconversionoptions.cpp b/kviewshell/plugins/djvu/kprintDialogPage_DJVUconversionoptions.cpp
new file mode 100644
index 00000000..aea7d6b7
--- /dev/null
+++ b/kviewshell/plugins/djvu/kprintDialogPage_DJVUconversionoptions.cpp
@@ -0,0 +1,118 @@
+/***************************************************************************
+ * Copyright (C) 2005 by Stefan Kebekus *
+ * kebekus@kde.org *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * This program 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 General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the *
+ * Free Software Foundation, Inc., *
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
+ ***************************************************************************/
+
+#include <klocale.h>
+#include <qlayout.h>
+#include <qcheckbox.h>
+#include <qcombobox.h>
+#include <qtooltip.h>
+#include <qwhatsthis.h>
+#include <kdebug.h>
+
+#include "kprintDialogPage_DJVUconversionoptions.h"
+#include "kprintDialogPage_DJVUconversionoptions_basewidget.h"
+
+KPrintDialogPage_DJVUConversionOptions::KPrintDialogPage_DJVUConversionOptions( QWidget *parent, const char *name )
+ : KPrintDialogPage( parent, name )
+{
+ setTitle( i18n("DJVU to PS Conversion") );
+
+ kprintDialogPage_pageoptions_baseLayout = new QVBoxLayout( this, 11, 6, "kprintDialogPage_pageoptions_baseLayout");
+ if (kprintDialogPage_pageoptions_baseLayout == 0) {
+ kdError(1223) << "KPrintDialogPage_DJVUPageOptions::KPrintDialogPage_DJVUPageOptions() cannot create layout" << endl;
+ return;
+ }
+
+ wdg = new kprintDialogPage_DJVUconversionoptions_basewidget(this, "basewdg" );
+ if (wdg != 0) {
+ kprintDialogPage_pageoptions_baseLayout->addWidget( wdg );
+ }
+}
+
+
+
+void KPrintDialogPage_DJVUConversionOptions::getOptions( QMap<QString,QString>& opts, bool )
+{
+ if (wdg == 0)
+ return;
+
+ opts["kde-kdjvu-pslevel"] = QString::number(wdg->psLevel->currentItem() + 1);
+
+ kdDebug() << "getOptions: renderMode = " << wdg->renderMode->currentItem() << endl;
+ switch (wdg->renderMode->currentItem())
+ {
+ case 1:
+ opts["kde-kdjvu-rendermode"] = "black-and-white";
+ break;
+ case 2:
+ opts["kde-kdjvu-rendermode"] = "foreground";
+ break;
+ case 3:
+ opts["kde-kdjvu-rendermode"] = "background";
+ break;
+ default: // 0
+ opts["kde-kdjvu-rendermode"] = "color";
+ }
+}
+
+
+void KPrintDialogPage_DJVUConversionOptions::setOptions( const QMap<QString,QString>& opts )
+{
+ if (wdg == 0)
+ return;
+
+ bool ok;
+ // Set PostScript Language Level, taking 2 as the default
+ int psLevel = opts["kde-kdjvu-pslevel"].toInt(&ok);
+
+ if (ok && psLevel >= 1 && psLevel <= 3)
+ {
+ wdg->psLevel->setCurrentItem(psLevel - 1);
+ }
+ else
+ {
+ wdg->psLevel->setCurrentItem(1); // PostScript Level 2
+ }
+
+ // Set render mode, taking "color" as default
+ QString op = opts["kde-kdjvu-rendermode"];
+ if (op == "black-and-white")
+ {
+ wdg->renderMode->setCurrentItem(1);
+ }
+ else
+ {
+ if (op == "foreground")
+ wdg->renderMode->setCurrentItem(2);
+ else
+ {
+ if (op == "background")
+ wdg->renderMode->setCurrentItem(3);
+ else
+ wdg->renderMode->setCurrentItem(0);
+ }
+ }
+}
+
+
+bool KPrintDialogPage_DJVUConversionOptions::isValid( QString& )
+{
+ return true;
+}