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

« back to all changes in this revision

Viewing changes to plan/libs/ui/reports/odt/KoSimpleOdtPicture.cpp

  • 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, 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
 
#include "KoSimpleOdtPicture.h"
22
 
#include <KoXmlWriter.h>
23
 
#include <KoDpi.h>
24
 
#include <KoOdfGraphicStyles.h>
25
 
#include <KoGenStyle.h>
26
 
#include <KoGenStyles.h>
27
 
#include <KoUnit.h>
28
 
#include <KoStore.h>
29
 
#include <KoStoreDevice.h>
30
 
 
31
 
#include "renderobjects.h"
32
 
 
33
 
#include <KMimeType>
34
 
#include <kdebug.h>
35
 
 
36
 
#include <QPainter>
37
 
#include <QPicture>
38
 
 
39
 
#include "kptdebug.h"
40
 
 
41
 
KoSimpleOdtPicture::KoSimpleOdtPicture(OROPrimitive *primitive)
42
 
    : KoSimpleOdtPrimitive(primitive)
43
 
{
44
 
}
45
 
 
46
 
KoSimpleOdtPicture::~KoSimpleOdtPicture()
47
 
{
48
 
}
49
 
 
50
 
OROPicture *KoSimpleOdtPicture::picture() const
51
 
{
52
 
    return dynamic_cast<OROPicture*>(m_primitive);
53
 
}
54
 
 
55
 
void KoSimpleOdtPicture::createBody(KoXmlWriter *bodyWriter) const
56
 
{
57
 
    bodyWriter->startElement("draw:frame");
58
 
    bodyWriter->addAttribute("draw:id", itemName());
59
 
    bodyWriter->addAttribute("xml:id", itemName());
60
 
    bodyWriter->addAttribute("draw:name", itemName());
61
 
    bodyWriter->addAttribute("text:anchor-type", "page");
62
 
    bodyWriter->addAttribute("text:anchor-page-number", pageNumber());
63
 
    bodyWriter->addAttribute("draw:style-name", m_frameStyleName);
64
 
 
65
 
    commonAttributes(bodyWriter);
66
 
 
67
 
    bodyWriter->startElement("draw:image");
68
 
    bodyWriter->addAttribute("xlink:href", "Pictures/" + pictureName());
69
 
    bodyWriter->addAttribute("xlink:type", "simple");
70
 
    bodyWriter->addAttribute("xlink:show", "embed");
71
 
    bodyWriter->addAttribute("xlink:actuate", "onLoad");
72
 
    bodyWriter->endElement();
73
 
 
74
 
    bodyWriter->endElement(); // draw:frame
75
 
}
76
 
 
77
 
bool KoSimpleOdtPicture::saveData(KoStore* store, KoXmlWriter* manifestWriter) const
78
 
{
79
 
    QString name = "Pictures/" + pictureName();
80
 
    if (!store->open(name)) {
81
 
        return false;
82
 
    }
83
 
    KoStoreDevice device(store);
84
 
    QImage image(m_primitive->size().toSize(), QImage::Format_ARGB32);
85
 
    image.fill(0);
86
 
    QPainter painter;
87
 
    painter.begin(&image);
88
 
    painter.setRenderHint(QPainter::Antialiasing);
89
 
    painter.drawPicture(0, 0, *(picture()->picture()));
90
 
    painter.end();
91
 
    kDebug(planDbg())<<image.format();
92
 
    bool ok = image.save(&device, "PNG");
93
 
    if (ok) {
94
 
        const QString mimetype(KMimeType::findByPath(name, 0 , true)->name());
95
 
        manifestWriter->addManifestEntry(name,  mimetype);
96
 
    }
97
 
    ok = store->close() && ok;
98
 
    return ok;
99
 
}