/usr/include/qzionrectangle.h is in libqzion-dev 0.4.0+lgpl-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
* Copyright (C) 2008 Instituto Nokia de Tecnologia. All rights reserved.
*
* This file is part of QZion.
*
* QZion is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* QZion 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with QZion. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __QZIONRECTANGLE_H__
#define __QZIONRECTANGLE_H__
#include "qzionobject.h"
class QZionRectanglePrivate;
/*!
\brief A solid rectangle.
A QZionRectangle is a rectangle that can be put in the canvas.
*/
class QZionRectangle : public QZionObject
{
Q_OBJECT
public:
/*!
Constructs a QZionRectangle with default parameters.
*/
QZionRectangle(QZionAbstractCanvas *canvas = NULL);
/*!
Constructs a QZionRectangle with specified parameters.
*/
QZionRectangle(QZionAbstractCanvas *canvas,
const QColor &color, const QSize &size);
virtual ~QZionRectangle();
/*!
Gets the rectangle color.
*/
virtual QColor color() const;
/*!
Sets the rectangle color.
*/
virtual void setColor(const QColor &color);
/*!
Gets the rectangle size.
*/
virtual QSize size() const;
/*!
Sets the rectangle size.
*/
virtual void setSize(const QSize &size);
/*!
Paint rectangle on canvas.
*/
virtual void paint(QPainter *p);
/*!
Returns rectangle geometry.
*/
virtual QRect rect() const;
virtual QColor effectiveColor() const;
virtual QRect effectiveRect() const;
virtual void changed();
virtual bool isClipper() const { return (_clipReferences > 0); }
protected:
QZionRectanglePrivate *_QZionRectangle_data;
private:
int _clipReferences;
void addClippee(QZionObject* clipee);
void removeClippee(QZionObject* clipee);
void incClipperRef();
void decClipperRef();
/* XXXX */
friend class QZionObject;
friend class QZionRectanglePrivate;
};
/*!
\internal
Add reference to this rectangle to be used as a clipper. If at least one
object is using a rectangle as a clipper, it won't be visible.
\sa decClipperRef()
*/
inline void QZionRectangle::incClipperRef()
{
_clipReferences++;
}
/*!
\internal
Remove reference to this rectangle to be used as a clipper.
\sa incClipperRef()
*/
inline void QZionRectangle::decClipperRef()
{
_clipReferences--;
}
#endif
|