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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* File export from the command line. This code use to be in main.cpp. It should be
* replaced by shared code (Gio::Actions?) for export from the file dialog.
*
* Copyright (C) 2018 Tavmjong Bah
*
* The contents of this file may be used under the GNU General Public License Version 2 or later.
*
*/
#ifndef INK_FILE_EXPORT_CMD_H
#define INK_FILE_EXPORT_CMD_H
#include <iostream>
#include <glibmm.h>
class SPDocument;
namespace Inkscape {
namespace Extension {
class Output;
}
} // namespace Inkscape
class InkFileExportCmd {
public:
InkFileExportCmd();
void do_export(SPDocument* doc, std::string filename_in="");
private:
guint32 get_bgcolor(SPDocument *doc);
std::string get_filename_out(std::string filename_in = "", std::string object_id = "");
int do_export_svg(SPDocument *doc, std::string const &filename_in);
int do_export_svg(SPDocument *doc, std::string const &filename_in, Inkscape::Extension::Output &extension);
int do_export_png(SPDocument *doc, std::string const &filename_in);
int do_export_ps_pdf(SPDocument *doc, std::string const &filename_in, std::string const &mime_type);
int do_export_ps_pdf(SPDocument *doc, std::string const &filename_in, std::string const &mime_type,
Inkscape::Extension::Output &extension);
int do_export_extension(SPDocument *doc, std::string const &filename_in, Inkscape::Extension::Output *extension);
Glib::ustring export_type_current;
public:
// Should be private, but this is just temporary code (I hope!).
// One-to-one correspondence with command line options
std::string export_filename; // Only if one file is processed!
Glib::ustring export_type;
Glib::ustring export_extension;
bool export_overwrite;
Glib::ustring export_area;
bool export_area_drawing;
bool export_area_page;
int export_margin;
bool export_area_snap;
int export_width;
int export_height;
double export_dpi;
bool export_ignore_filters;
bool export_text_to_path;
int export_ps_level;
Glib::ustring export_pdf_level;
bool export_latex;
Glib::ustring export_id;
bool export_id_only;
bool export_use_hints;
Glib::ustring export_background;
double export_background_opacity;
Glib::ustring export_png_color_mode;
bool export_plain_svg;
bool export_png_use_dithering;
};
#endif // INK_FILE_EXPORT_CMD_H
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :
|