summaryrefslogtreecommitdiff
path: root/Build/source/libs/poppler/poppler-src/poppler/ViewerPreferences.cc
blob: cba8d0ac5124f59cea0573880a2f0830bb847d0f (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
//========================================================================
//
// ViewerPreferences.cc
//
// This file is licensed under the GPLv2 or later
//
// Copyright 2011 Pino Toscano <pino@kde.org>
//
//========================================================================

#include <config.h>

#include "ViewerPreferences.h"

#include "Object.h"
#include "Dict.h"

ViewerPreferences::ViewerPreferences(Dict *prefDict)
{
  init();

  Object obj;

  if (prefDict->lookup("HideToolbar", &obj)->isBool()) {
    hideToolbar = obj.getBool();
  }
  obj.free();

  if (prefDict->lookup("HideMenubar", &obj)->isBool()) {
    hideMenubar = obj.getBool();
  }
  obj.free();

  if (prefDict->lookup("HideWindowUI", &obj)->isBool()) {
    hideWindowUI = obj.getBool();
  }
  obj.free();

  if (prefDict->lookup("FitWindow", &obj)->isBool()) {
    fitWindow = obj.getBool();
  }
  obj.free();

  if (prefDict->lookup("CenterWindow", &obj)->isBool()) {
    centerWindow = obj.getBool();
  }
  obj.free();

  if (prefDict->lookup("DisplayDocTitle", &obj)->isBool()) {
    displayDocTitle = obj.getBool();
  }
  obj.free();

  if (prefDict->lookup("NonFullScreenPageMode", &obj)->isName()) {
    const char *mode = obj.getName();
    if (!strcmp(mode, "UseNone")) {
      nonFullScreenPageMode = nfpmUseNone;
    } else if (!strcmp(mode, "UseOutlines")) {
      nonFullScreenPageMode = nfpmUseOutlines;
    } else if (!strcmp(mode, "UseThumbs")) {
      nonFullScreenPageMode = nfpmUseThumbs;
    } else if (!strcmp(mode, "UseOC")) {
      nonFullScreenPageMode = nfpmUseOC;
    }
  }
  obj.free();

  if (prefDict->lookup("Direction", &obj)->isName()) {
    const char *dir = obj.getName();
    if (!strcmp(dir, "L2R")) {
      direction = directionL2R;
    } else if (!strcmp(dir, "R2L")) {
      direction = directionR2L;
    }
  }
  obj.free();

  if (prefDict->lookup("PrintScaling", &obj)->isName()) {
    const char *ps = obj.getName();
    if (!strcmp(ps, "None")) {
      printScaling = printScalingNone;
    } else if (!strcmp(ps, "AppDefault")) {
      printScaling = printScalingAppDefault;
    }
  }
  obj.free();

  if (prefDict->lookup("Duplex", &obj)->isName()) {
    const char *d = obj.getName();
    if (!strcmp(d, "Simplex")) {
      duplex = duplexSimplex;
    } else if (!strcmp(d, "DuplexFlipShortEdge")) {
      duplex = duplexDuplexFlipShortEdge;
    } else if (!strcmp(d, "DuplexFlipLongEdge")) {
      duplex = duplexDuplexFlipLongEdge;
    }
  }
  obj.free();
}

ViewerPreferences::~ViewerPreferences()
{
}

void ViewerPreferences::init()
{
  hideToolbar = gFalse;
  hideMenubar = gFalse;
  hideWindowUI = gFalse;
  fitWindow = gFalse;
  centerWindow = gFalse;
  displayDocTitle = gFalse;
  nonFullScreenPageMode = nfpmUseNone;
  direction = directionL2R;
  printScaling = printScalingAppDefault;
  duplex = duplexNone;
}