~smartboyhw/ubuntu/raring/calligra/2.6.0-0ubuntu1

« back to all changes in this revision

Viewing changes to libs/flake/KoHatchBackground.h

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2012-10-23 21:09:16 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20121023210916-m82w6zxnxhaxz7va
Tags: 1:2.5.90-0ubuntu1
* New upstream alpha release (LP: #1070436)
  - Add libkactivities-dev and libopenimageio-dev to build-depends
  - Add kubuntu_build_calligraactive.diff to build calligraactive by default
  - Add package for calligraauthor and move files that are shared between
    calligrawords and calligraauthor to calligrawords-common
* Document the patches
* Remove numbers from patches so they follow the same naming scheme as
  the rest of our patches.
* calligra-data breaks replaces krita-data (<< 1:2.5.3) (LP: #1071686)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of the KDE project
 
2
 *
 
3
 * Copyright (C) 2012 Thorsten Zachmann <zachmann@kde.org>
 
4
 *
 
5
 * This library is free software; you can redistribute it and/or
 
6
 * modify it under the terms of the GNU Library General Public
 
7
 * License as published by the Free Software Foundation; either
 
8
 * version 2 of the License, or (at your option) any later version.
 
9
 *
 
10
 * This library is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
 * Library General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU Library General Public License
 
16
 * along with this library; see the file COPYING.LIB.  If not, write to
 
17
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
18
 * Boston, MA 02110-1301, USA.
 
19
 */
 
20
 
 
21
#ifndef KOHATCHBACKGROUND_H
 
22
#define KOHATCHBACKGROUND_H
 
23
 
 
24
#include "KoColorBackground.h"
 
25
 
 
26
class KoHatchBackgroundPrivate;
 
27
 
 
28
/**
 
29
 * A hatch shape background
 
30
 */
 
31
class KoHatchBackground : public KoColorBackground
 
32
{
 
33
public:
 
34
    enum HatchStyle {
 
35
        Single,
 
36
        Double,
 
37
        Triple
 
38
    };
 
39
 
 
40
    KoHatchBackground();
 
41
 
 
42
    // reimplemented
 
43
    virtual void paint(QPainter &painter, const KoViewConverter &converter, KoShapePaintingContext &context, const QPainterPath &fillPath) const;
 
44
 
 
45
    // reimplemented
 
46
    virtual void fillStyle(KoGenStyle &style, KoShapeSavingContext &context);
 
47
 
 
48
    // reimplemented
 
49
    virtual bool loadStyle(KoOdfLoadingContext &context, const QSizeF &shapeSize);
 
50
 
 
51
private:
 
52
    QString saveHatchStyle(KoShapeSavingContext &context) const;
 
53
 
 
54
    Q_DECLARE_PRIVATE(KoHatchBackground)
 
55
};
 
56
 
 
57
#endif /* KOHATCHBACKGROUND_H */