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

« back to all changes in this revision

Viewing changes to libs/koreport/renderer/odtframe/KoOdtFrameReportLine.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
/*
 
2
   Calligra Report Engine
 
3
   Copyright (C) 2011, 2012 by Dag Andersen (danders@get2net.dk)
 
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.1 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 KOODTFRAMESREPORTLINE_H
 
22
#define KOODTFRAMESREPORTLINE_H
 
23
 
 
24
#include "KoOdtFrameReportPrimitive.h"
 
25
 
 
26
#include <QString>
 
27
 
 
28
class KoGenStyles;
 
29
class KoXmlWriter;
 
30
class OROLine;
 
31
class OROPrimitive;
 
32
 
 
33
// FIXME:
 
34
// This implementation is a hack because neither words nor libre writer
 
35
// implements lines in a good way.
 
36
 
 
37
class KoOdtFrameReportLine : public KoOdtFrameReportPrimitive
 
38
{
 
39
public:
 
40
    KoOdtFrameReportLine(OROLine *primitive);
 
41
    virtual ~KoOdtFrameReportLine();
 
42
 
 
43
    virtual void createStyle(KoGenStyles &coll);
 
44
    virtual void createBody(KoXmlWriter *bodyWriter) const;
 
45
 
 
46
    OROLine *line() const;
 
47
 
 
48
protected:
 
49
    void frameStyle(KoGenStyles &coll);
 
50
 
 
51
private:
 
52
    QString m_frameStyleName;
 
53
    QString m_paragraphStyleName;
 
54
    QString m_textStyleName;
 
55
};
 
56
 
 
57
#endif // KOODTFRAMESREPORTLINE_H