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
|
/**
* Copyright (C) 2003, Luís Pedro Coelho
*
* 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.
*/
#ifndef DISPLAYOPTIONS_H
#define DISPLAYOPTIONS_H
#include <tqstring.h>
#include <tqvaluelist.h>
#include "dscparse_adapter.h"
#include <kdemacros.h>
class TDECmdLineArgs;
class TDEConfig;
class KDE_EXPORT DisplayOptions
{
public:
DisplayOptions();
// default generated DisplayOptions(const DisplayOptions&);
// default generated ~DisplayOptions();
// default generated DisplayOptions& operator = (const DisplayOptions&);
void reset() { *this = DisplayOptions(); }
void restoreOverrideOrientation() { setOverrideOrientation( CDSC_ORIENT_UNKNOWN ); }
void setOverrideOrientation(CDSC_ORIENTATION_ENUM e) { _overrideOrientation = e; }
CDSC_ORIENTATION_ENUM overrideOrientation() const { return _overrideOrientation; }
void restoreOverridePageMedia() { _overridePageMedia = TQString(); }
void setOverridePageMedia(const TQString& newMedia) { _overridePageMedia = newMedia; }
const TQString& overridePageMedia() const { return _overridePageMedia; }
/**
* The current page.
* Note that the pages here are 0-based, although the user should see 1-based pages.
*
* In parsing cmdline-args, we transform --page=1 into setPage( 0 );
*/
int page() const { return _page; }
void setPage( int newPage ) { _page = newPage; }
double magnification() const;
void setMagnification( double );
/**
* Goes to the next degree of magnification if possible. If we cannot zoom in any more, it returns false,
* leaving the magnification untouched.
*/
bool zoomIn();
bool zoomOut();
bool canZoomIn() const;
bool canZoomOut() const;
/**
* Parses command line options.
*/
static DisplayOptions parse ( TDECmdLineArgs * );
/**
* Transforms the object in a string representation.
* Useful for storing in config files, for example.
*
* \return string representation or null on error.
*
* \sa fromString
*/
static TQString toString( const DisplayOptions& );
/**
* Reads the display options from a string formatted by toString.
*
* \return true if the convertion succeeded.
*/
static bool fromString( DisplayOptions&, const TQString& );
/**
* Returns a list of values that normally we can get through
* zoomIn() & zoomOut()
*/
static TQValueList<double> normalMagnificationValues();
private:
unsigned closestIndex() const;
CDSC_ORIENTATION_ENUM _overrideOrientation;
TQString _overridePageMedia;
int _page;
double _magnification;
};
inline
DisplayOptions::DisplayOptions()
:_overrideOrientation( CDSC_ORIENT_UNKNOWN ),
_overridePageMedia ( TQString() ),
_page( 0 )
{
setMagnification( 1.0 );
}
#endif // DISPLAYOPTIONS_H
|