~ubuntu-branches/ubuntu/oneiric/koffice/oneiric-updates

« back to all changes in this revision

Viewing changes to kchart/shape/Surface.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-10-27 17:52:57 UTC
  • mfrom: (0.12.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101027175257-s04zqqk5bs8ckm9o
Tags: 1:2.2.83-0ubuntu1
* Merge with Debian git remaining changes:
 - Add build-deps on librcps-dev, opengtl-dev, libqtgtl-dev, freetds-dev,
   create-resources, libspnav-dev
 - Remove needless build-dep on libwv2-dev
 - koffice-libs recommends create-resources
 - krita recommends pstoedit
 - Keep our patches
* New upstream release 2.3 beta 3
  - Remove debian/patches fixed by upstream
  - Update install files

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* This file is part of the KDE project
2
 
 
3
 
   Copyright 2007 Johannes Simon <johannes.simon@gmail.com>
4
 
   Copyright 2009 Inge Wallin    <ingwa@lysator.liu.se>
5
 
 
6
 
   This library is free software; you can redistribute it and/or
7
 
   modify it under the terms of the GNU Library General Public
8
 
   License as published by the Free Software Foundation; either
9
 
   version 2 of the License, or (at your option) any later version.
10
 
 
11
 
   This library is distributed in the hope that it will be useful,
12
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 
   Library General Public License for more details.
15
 
 
16
 
   You should have received a copy of the GNU Library General Public License
17
 
   along with this library; see the file COPYING.LIB.  If not, write to
18
 
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
 
   Boston, MA 02110-1301, USA.
20
 
*/
21
 
 
22
 
#ifndef KCHART_SURFACE_H
23
 
#define KCHART_SURFACE_H
24
 
 
25
 
// Local
26
 
#include "ChartShape.h"
27
 
 
28
 
class KoStyleStack;
29
 
class KoOdfLoadingContext;
30
 
class QSizeF;
31
 
 
32
 
namespace KChart {
33
 
 
34
 
 
35
 
/**
36
 
 * @brief The Surface class represents either a chart wall, or chart floor.
37
 
 * 
38
 
 * Currently only the wall can be visualized, though support for a
39
 
 * chart floor is needed to load and save in ODF without loss of data.
40
 
 */
41
 
 
42
 
class Surface
43
 
{
44
 
public:
45
 
    Surface( PlotArea *parent );
46
 
    ~Surface();
47
 
 
48
 
    /**
49
 
     * Old method of loading a pattern style; Use the Flake KoPatternBackground now.
50
 
     * Not all properties can be stored in a QBrush so this concept is obsolete.
51
 
     */
52
 
    KDE_DEPRECATED static QBrush loadOdfPatternStyle(const KoStyleStack &styleStack, KoOdfLoadingContext &context, const QSizeF &size);
53
 
 
54
 
    QPointF position() const;
55
 
    int width() const;
56
 
    QBrush brush() const;
57
 
    QPen framePen() const;
58
 
 
59
 
    void setPosition( const QPointF &position );
60
 
    void setWidth( int );
61
 
    void setBrush( const QBrush &brush );
62
 
    void setFramePen( const QPen &pen );
63
 
    
64
 
    bool loadOdf( const KoXmlElement &surfaceElement, KoShapeLoadingContext &context );
65
 
    void saveOdf( KoShapeSavingContext &context, 
66
 
                  const char *elementName );
67
 
 
68
 
private:
69
 
    class Private;
70
 
    Private *const d;
71
 
};
72
 
 
73
 
}
74
 
 
75
 
#endif
76