summaryrefslogtreecommitdiffstats
path: root/scribus/text/fsize.h
blob: 0cc95384e3fcf0dcbdc1e118257bf4789d800e9c (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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
/****************************************************************************
** $Id$
**
** Definition of FSize class
**
** Created : 931028
**
** Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.
**
** This file is part of the kernel module of the Qt GUI Toolkit.
**
** This file may be distributed under the terms of the Q Public License
** as defined by Trolltech AS of Norway and appearing in the file
** LICENSE.QPL included in the packaging of this file.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
** licenses may use this file in accordance with the Qt Commercial License
** Agreement provided with the Software.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
**   information about Qt Commercial License Agreements.
** See http://www.trolltech.com/qpl/ for QPL licensing information.
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/

#ifndef FSIZE_H
#define FSIZE_H

// #ifndef QT_H
 #include "../fpoint.h" // ### change to qwindowdefs.h?
// #endif // QT_H

class FSize
// ### Make FSize inherit Qt in Qt 4.0
{
public:
    // ### Move this enum to qnamespace.h in Qt 4.0
    enum ScaleMode {
	ScaleFree,
	ScaleMin,
	ScaleMax
    };

    FSize();
    FSize( qreal w, qreal h );

    bool isNull() const;
    bool isEmpty() const;
    bool isValid() const;

    qreal width() const;
    qreal height() const;
    void setWidth( qreal w );
    void setHeight( qreal h );
    void transpose();

    void scale( qreal w, qreal h, Qt::AspectRatioMode mode );
    void scale( const FSize &s, Qt::AspectRatioMode mode );

    FSize expandedTo( const FSize & ) const;
    FSize boundedTo( const FSize & ) const;

    qreal &rwidth();
    qreal &rheight();

    FSize &operator+=( const FSize & );
    FSize &operator-=( const FSize & );
    FSize &operator*=( int c );
    FSize &operator*=( qreal c );
    FSize &operator/=( int c );
    FSize &operator/=( qreal c );

    friend inline bool operator==( const FSize &, const FSize & );
    friend inline bool operator!=( const FSize &, const FSize & );
    friend inline const FSize operator+( const FSize &, const FSize & );
    friend inline const FSize operator-( const FSize &, const FSize & );
    friend inline const FSize operator*( const FSize &, int );
    friend inline const FSize operator*( int, const FSize & );
    friend inline const FSize operator*( const FSize &, qreal );
    friend inline const FSize operator*( qreal, const FSize & );
    friend inline const FSize operator/( const FSize &, int );
    friend inline const FSize operator/( const FSize &, qreal );

private:
    static void warningDivByZero();

    qreal wd;
    qreal ht;
};


/*****************************************************************************
  FSize stream functions
 *****************************************************************************/

// QDataStream &operator<<( QDataStream &, const FSize & );
// QDataStream &operator>>( QDataStream &, FSize & );


/*****************************************************************************
  FSize inline functions
 *****************************************************************************/

inline FSize::FSize()
{ wd = ht = -1; }

inline FSize::FSize( qreal w, qreal h )
{ wd=(qreal)w; ht=(qreal)h; }

inline bool FSize::isNull() const
{ return wd==0 && ht==0; }

inline bool FSize::isEmpty() const
{ return wd<1 || ht<1; }

inline bool FSize::isValid() const
{ return wd>=0 && ht>=0; }

inline qreal FSize::width() const
{ return wd; }

inline qreal FSize::height() const
{ return ht; }

inline void FSize::setWidth( qreal w )
{ wd=(qreal)w; }

inline void FSize::setHeight( qreal h )
{ ht=(qreal)h; }

inline qreal &FSize::rwidth()
{ return wd; }

inline qreal &FSize::rheight()
{ return ht; }

inline FSize &FSize::operator+=( const FSize &s )
{ wd+=s.wd; ht+=s.ht; return *this; }

inline FSize &FSize::operator-=( const FSize &s )
{ wd-=s.wd; ht-=s.ht; return *this; }

inline FSize &FSize::operator*=( int c )
{ wd*=(qreal)c; ht*=(qreal)c; return *this; }

inline FSize &FSize::operator*=( qreal c )
{ wd=(qreal)(wd*c); ht=(qreal)(ht*c); return *this; }

inline bool operator==( const FSize &s1, const FSize &s2 )
{ return s1.wd == s2.wd && s1.ht == s2.ht; }

inline bool operator!=( const FSize &s1, const FSize &s2 )
{ return s1.wd != s2.wd || s1.ht != s2.ht; }

inline const FSize operator+( const FSize & s1, const FSize & s2 )
{ return FSize(s1.wd+s2.wd, s1.ht+s2.ht); }

inline const FSize operator-( const FSize &s1, const FSize &s2 )
{ return FSize(s1.wd-s2.wd, s1.ht-s2.ht); }

inline const FSize operator*( const FSize &s, int c )
{ return FSize(s.wd*c, s.ht*c); }

inline const FSize operator*( int c, const FSize &s )
{  return FSize(s.wd*c, s.ht*c); }

inline const FSize operator*( const FSize &s, qreal c )
{ return FSize((qreal)(s.wd*c), (qreal)(s.ht*c)); }

inline const FSize operator*( qreal c, const FSize &s )
{ return FSize((qreal)(s.wd*c), (qreal)(s.ht*c)); }

inline FSize &FSize::operator/=( int c )
{
#if defined(QT_CHECK_MATH)
    if ( c == 0 )
	warningDivByZero();
#endif
    wd/=(qreal)c; ht/=(qreal)c;
    return *this;
}

inline FSize &FSize::operator/=( qreal c )
{
#if defined(QT_CHECK_MATH)
    if ( c == 0.0 )
	warningDivByZero();
#endif
    wd=(qreal)(wd/c); ht=(qreal)(ht/c);
    return *this;
}

inline const FSize operator/( const FSize &s, int c )
{
#if defined(QT_CHECK_MATH)
    if ( c == 0 )
	FSize::warningDivByZero();
#endif
    return FSize(s.wd/c, s.ht/c);
}

inline const FSize operator/( const FSize &s, qreal c )
{
#if defined(QT_CHECK_MATH)
    if ( c == 0.0 )
	FSize::warningDivByZero();
#endif
    return FSize((qreal)(s.wd/c), (qreal)(s.ht/c));
}

inline FSize FSize::expandedTo( const FSize & otherSize ) const
{
    return FSize( qMax(wd,otherSize.wd), qMax(ht,otherSize.ht) );
}

inline FSize FSize::boundedTo( const FSize & otherSize ) const
{
    return FSize( qMin(wd,otherSize.wd), qMin(ht,otherSize.ht) );
}


#endif // QSIZE_H