summaryrefslogtreecommitdiffstats
path: root/kviewshell/plugins/djvu/kprintDialogPage_DJVUconversionoptions.cpp
blob: 2fe05a8bf7e360a11ddd33d4f915f844a36b3f40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
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 <tqlayout.h>
#include <tqcheckbox.h>
#include <tqcombobox.h>
#include <tqtooltip.h>
#include <tqwhatsthis.h>
#include <kdebug.h>

#include "kprintDialogPage_DJVUconversionoptions.h"
#include "kprintDialogPage_DJVUconversionoptions_basewidget.h"

KPrintDialogPage_DJVUConversionOptions::KPrintDialogPage_DJVUConversionOptions( TQWidget *parent, const char *name )
  : KPrintDialogPage( parent, name )
{
  setTitle( i18n("DJVU to PS Conversion") );

  kprintDialogPage_pageoptions_baseLayout = new TQVBoxLayout( this, 11, 6, "kprintDialogPage_pageoptions_baseLayout"); 
  if (kprintDialogPage_pageoptions_baseLayout == 0) {
    kdError(1223) << "KPrintDialogPage_DJVUPageOptions::KPrintDialogPage_DJVUPageOptions() cannot create tqlayout" << endl;
    return;
  }
  
  wdg = new kprintDialogPage_DJVUconversionoptions_basewidget(this, "basewdg" );
  if (wdg != 0) {
    kprintDialogPage_pageoptions_baseLayout->addWidget( wdg );
  }
}



void KPrintDialogPage_DJVUConversionOptions::getOptions( TQMap<TQString,TQString>& opts, bool )
{
  if (wdg == 0) 
    return;

  opts["kde-kdjvu-pslevel"] = TQString::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 TQMap<TQString,TQString>& 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
  TQString 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( TQString& )
{
  return true;
}