File: ODe_ThumbnailsWriter.cpp

package info (click to toggle)
abiword 3.0.7~dfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 64,700 kB
  • sloc: cpp: 477,933; ansic: 16,754; makefile: 5,834; xml: 3,993; yacc: 1,818; lex: 1,104; perl: 812; python: 413; php: 183; sh: 169
file content (101 lines) | stat: -rw-r--r-- 2,838 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* AbiSource
 *
 * Copyright (C) 2012 Tanya Guza <tanya.guza@gmail.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301 USA.
 */


#include "ODe_ThumbnailsWriter.h"

// Internal includes
#include "ODe_Common.h"

// Abiword includes
#include <ut_types.h>
#include <ut_string_class.h>
#include "ut_std_string.h"
#include <pd_Document.h>
#include <xap_App.h>
#include <xap_Frame.h>
#include <fv_View.h>
#include <gr_Graphics.h>
#include <gr_Painter.h>

// External includes
#include <gsf/gsf-output-stdio.h>
#include <gsf/gsf-outfile.h>

bool ODe_ThumbnailsWriter::writeThumbnails(PD_Document* /*pDoc*/, GsfOutfile* oo) {

	GsfOutput* thumbnailsDir = gsf_outfile_new_child (oo, "Thumbnails", TRUE);
	if(thumbnailsDir == NULL){
		return false;
	}

	GsfOutput* thumbnail = gsf_outfile_new_child(GSF_OUTFILE(thumbnailsDir),
			 "thumbnail.png", FALSE);
	if(thumbnail == NULL){
		return false;
	}

    XAP_Frame *pFrame = XAP_App::getApp()->getLastFocussedFrame();
    // not sure we have a frame e.g. when running abiword -t odt myfile.abw
    if (!pFrame)
    {
        gsf_output_close(thumbnail);
        gsf_output_close(thumbnailsDir);
        g_object_unref(thumbnail);
        g_object_unref(thumbnailsDir);
        /* return true because it's better to export a file without thumbnails
         * than no file at all */
        return true;
    }
    FV_View* pView = static_cast<FV_View*>(pFrame->getCurrentView());

    GR_Graphics* pVG = pView->getGraphics();

    UT_sint32 iWidth = pView->getWindowWidth();
	UT_sint32 iHeight = pView->getWindowHeight();
    UT_Rect rect(0, 0, iWidth, iHeight);

	GR_Painter painter(pVG);
	GR_Image * pImage = painter.genImageFromRectangle(rect);

	if(pImage == NULL){
		gsf_output_close(thumbnail);
		gsf_output_close(thumbnailsDir);
		g_object_unref(thumbnail);
		g_object_unref(thumbnailsDir);
		return false;
	}

	UT_ByteBuf * pBuf = NULL;
	pImage->convertToBuffer(&pBuf);

	gsf_output_write(thumbnail, pBuf->getLength(),
			pBuf->getPointer(0));

	DELETEP(pBuf);
	DELETEP(pImage);

	gsf_output_close(thumbnail);
	gsf_output_close(thumbnailsDir);
	g_object_unref(thumbnail);
	g_object_unref(thumbnailsDir);

	return true;
}