summaryrefslogtreecommitdiff
path: root/svtools/source/filter/exportdialog.hxx
blob: 137279ee646446def2a3de2172b635a5ee96ff2e (plain)
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */


#pragma once

#include <FltCallDialogParameter.hxx>
#include <vcl/weld.hxx>
#include <tools/stream.hxx>
#include <com/sun/star/lang/XComponent.hpp>
#include <com/sun/star/drawing/XShape.hpp>
#include <com/sun/star/drawing/XShapes.hpp>
#include <com/sun/star/drawing/XDrawPage.hpp>
#include <com/sun/star/uno/XComponentContext.hpp>

#include <memory>

/*************************************************************************
|*
|* dialog to set filter options for pixel formats
|*
\************************************************************************/

class FilterConfigItem;
class ExportDialog : public weld::GenericDialogController
{
private:

    FltCallDialogParameter&    mrFltCallPara;

    const css::uno::Reference< css::uno::XComponentContext >
                               mxContext;
    const css::uno::Reference< css::lang::XComponent >&
                               mxSourceDocument;
    const css::uno::Reference< css::graphic::XGraphic >&
                               mxGraphic;

    OUString            msEstimatedSizePix1;
    OUString            msEstimatedSizePix2;
    OUString            msEstimatedSizeVec;

    OUString            ms1BitThreshold;
    OUString            ms1BitDithered;
    OUString            ms4BitGrayscale;
    OUString            ms4BitColorPalette;
    OUString            ms8BitGrayscale;
    OUString            ms8BitColorPalette;
    OUString            ms24BitColor;

    std::unique_ptr<FilterConfigItem> mpOptionsItem;
    std::unique_ptr<FilterConfigItem> mpFilterOptionsItem;

    OUString            maExt;
    sal_Int16           mnFormat;
    sal_Int32           mnMaxFilesizeForRealtimePreview;

    std::unique_ptr<SvMemoryStream> mpTempStream;

    css::awt::Size      maOriginalSize;     // the original graphic size in 1/100mm
    css::awt::Size      maSize;             // for vector graphics it always contains the logical size in 1/100mm

    bool                mbIsPixelFormat;
    bool                mbExportSelection;
    bool                mbGraphicsSource;   // whether source document is graphics (Draw, Impress) or not (Calc, Writer)

    sal_Int32           mnInitialResolutionUnit;

    // for pixel graphics it always contains the pixel count
    css::awt::Size      maResolution;       // it always contains the number of pixels per meter

    css::uno::Reference< css::drawing::XShape >
                        mxShape;
    css::uno::Reference< css::drawing::XShapes >
                        mxShapes;
    css::uno::Reference< css::drawing::XDrawPage >
                        mxPage;

    weld::Scale* mpSbCompression;
    weld::SpinButton* mpNfCompression;

    std::unique_ptr<weld::SpinButton> mxMfSizeX;
    std::unique_ptr<weld::ComboBox> mxLbSizeX;
    std::unique_ptr<weld::SpinButton> mxMfSizeY;
    std::unique_ptr<weld::Label> mxFtResolution;
    std::unique_ptr<weld::SpinButton> mxNfResolution;
    std::unique_ptr<weld::ComboBox> mxLbResolution;

    std::unique_ptr<weld::Widget> mxColorDepth;
    std::unique_ptr<weld::ComboBox> mxLbColorDepth;

    std::unique_ptr<weld::Widget> mxJPGQuality;
    std::unique_ptr<weld::Widget> mxPNGCompression;

    std::unique_ptr<weld::Scale> mxSbPngCompression;
    std::unique_ptr<weld::SpinButton> mxNfPngCompression;

    std::unique_ptr<weld::Scale> mxSbJpgCompression;
    std::unique_ptr<weld::SpinButton> mxNfJpgCompression;

    std::unique_ptr<weld::Widget> mxMode;
    std::unique_ptr<weld::CheckButton> mxCbInterlaced;

    std::unique_ptr<weld::Widget> mxBMPCompression;
    std::unique_ptr<weld::CheckButton> mxCbRLEEncoding;

    std::unique_ptr<weld::Widget> mxDrawingObjects;
    std::unique_ptr<weld::CheckButton> mxCbSaveTransparency;

    std::unique_ptr<weld::Widget> mxEncoding;
    std::unique_ptr<weld::RadioButton> mxRbBinary;
    std::unique_ptr<weld::RadioButton> mxRbText;

    std::unique_ptr<weld::Widget> mxEPSGrid;
    std::unique_ptr<weld::CheckButton> mxCbEPSPreviewTIFF;
    std::unique_ptr<weld::CheckButton> mxCbEPSPreviewEPSI;
    std::unique_ptr<weld::RadioButton> mxRbEPSLevel1;
    std::unique_ptr<weld::RadioButton> mxRbEPSLevel2;
    std::unique_ptr<weld::RadioButton> mxRbEPSColorFormat1;
    std::unique_ptr<weld::RadioButton> mxRbEPSColorFormat2;
    std::unique_ptr<weld::RadioButton> mxRbEPSCompressionLZW;
    std::unique_ptr<weld::RadioButton> mxRbEPSCompressionNone;

    std::unique_ptr<weld::Widget> mxInfo;
    std::unique_ptr<weld::Label> mxFtEstimatedSize;

    std::unique_ptr<weld::Button> mxBtnOK;

    DECL_LINK(UpdateHdl, weld::ToggleButton&, void);
    DECL_LINK(SelectListBoxHdl, weld::ComboBox&, void);
    DECL_LINK(SelectHdl, weld::SpinButton&, void);
    DECL_LINK(UpdateHdlMtfSizeX, weld::SpinButton&, void);
    DECL_LINK(UpdateHdlMtfSizeY, weld::SpinButton&, void);
    DECL_LINK(UpdateHdlNfResolution, weld::SpinButton&, void);
    DECL_LINK(SbCompressionUpdateHdl, weld::Scale&, void);

    DECL_LINK(OK, weld::Button&, void);

    void setupSizeControls();
    void createFilterOptions();
    void setupControls();
    void updateControls();

    void GetGraphicSource();
    void GetGraphicStream();
    css::uno::Sequence< css::beans::PropertyValue >
        GetFilterData( bool bUpdateConfig );

    sal_uInt32 GetRawFileSize() const;
    bool IsTempExportAvailable() const;

    css::awt::Size GetOriginalSize();

    sal_Int32 GetDefaultUnit() const;

public:
    ExportDialog( FltCallDialogParameter& rPara,
        const css::uno::Reference< css::uno::XComponentContext >& rxContext,
        const css::uno::Reference< css::lang::XComponent >& rxSourceDocument,
        bool bExportSelection, bool bIsExportVectorFormat, bool bGraphicsSource,
        const css::uno::Reference< css::graphic::XGraphic >& rxGraphic);
    virtual ~ExportDialog() override;
};



/* vim:set shiftwidth=4 softtabstop=4 expandtab: */