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

« back to all changes in this revision

Viewing changes to plan/libs/ui/reports/odt/KoSimpleOdtPicture.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
 
   KoReport Library
3
 
   Copyright (C) 2011 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 KOSIMPLEODTPICTURE_H
22
 
#define KOSIMPLEODTPICTURE_H
23
 
 
24
 
#include "KoSimpleOdtPrimitive.h"
25
 
 
26
 
#include <QString>
27
 
 
28
 
class KoXmlWriter;
29
 
class KoStore;
30
 
class OROPicture;
31
 
class OROPrimitive;
32
 
 
33
 
class KoSimpleOdtPicture : public KoSimpleOdtPrimitive
34
 
{
35
 
public:
36
 
    KoSimpleOdtPicture(OROPrimitive *primitive);
37
 
    virtual ~KoSimpleOdtPicture();
38
 
 
39
 
    virtual void createBody(KoXmlWriter *bodyWriter) const;
40
 
    bool saveData(KoStore* store, KoXmlWriter* manifestWriter) const;
41
 
    
42
 
    OROPicture *picture() const;
43
 
    //NOTE: Store as png atm
44
 
    QString pictureName() const { return QString("Picture_%1.png").arg(m_uid); }
45
 
};
46
 
 
47
 
#endif // KOSIMPLEODTPICTURE_H