File: vbapagesetup.hxx

package info (click to toggle)
libreoffice 4%3A7.4.7-1%2Bdeb12u8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,600,812 kB
  • sloc: cpp: 4,235,176; xml: 385,685; java: 273,650; python: 72,159; ansic: 36,750; perl: 31,520; javascript: 18,215; sh: 11,445; yacc: 10,839; makefile: 9,490; cs: 6,703; objc: 1,969; lex: 1,885; asm: 1,047; awk: 1,018; pascal: 940; php: 79; csh: 20; sed: 5
file content (90 lines) | stat: -rw-r--r-- 4,818 bytes parent folder | download | duplicates (2)
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
/* -*- 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 <cppuhelper/implbase.hxx>
#include <ooo/vba/excel/XPageSetup.hpp>
#include <com/sun/star/uno/XComponentContext.hpp>
#include <com/sun/star/sheet/XSpreadsheet.hpp>
#include <vbahelper/vbapagesetupbase.hxx>

typedef cppu::ImplInheritanceHelper<VbaPageSetupBase, ov::excel::XPageSetup> ScVbaPageSetup_BASE;

class ScVbaPageSetup : public ScVbaPageSetup_BASE
{
    css::uno::Reference<css::sheet::XSpreadsheet> mxSheet;
    bool mbIsLandscape;

public:
    /// @throws css::uno::RuntimeException
    ScVbaPageSetup(const css::uno::Reference<ov::XHelperInterface>& xParent,
                   const css::uno::Reference<css::uno::XComponentContext>& xContext,
                   const css::uno::Reference<css::sheet::XSpreadsheet>& xSheet,
                   const css::uno::Reference<css::frame::XModel>& xModel);

    // Attribute
    virtual OUString SAL_CALL getPrintArea() override;
    virtual void SAL_CALL setPrintArea(const OUString& rAreas) override;
    virtual double SAL_CALL getHeaderMargin() override;
    void SAL_CALL setHeaderMargin(double margin) override;
    double SAL_CALL getFooterMargin() override;
    void SAL_CALL setFooterMargin(double margin) override;
    virtual css::uno::Any SAL_CALL getFitToPagesTall() override;
    virtual void SAL_CALL setFitToPagesTall(const css::uno::Any& fitToPagesTall) override;
    virtual css::uno::Any SAL_CALL getFitToPagesWide() override;
    virtual void SAL_CALL setFitToPagesWide(const css::uno::Any& fitToPagesWide) override;
    virtual css::uno::Any SAL_CALL getZoom() override;
    virtual void SAL_CALL setZoom(const css::uno::Any& zoom) override;
    virtual OUString SAL_CALL getLeftHeader() override;
    virtual void SAL_CALL setLeftHeader(const OUString& leftHeader) override;
    virtual OUString SAL_CALL getCenterHeader() override;
    virtual void SAL_CALL setCenterHeader(const OUString& centerHeader) override;
    virtual OUString SAL_CALL getRightHeader() override;
    virtual void SAL_CALL setRightHeader(const OUString& rightHeader) override;
    virtual OUString SAL_CALL getLeftFooter() override;
    virtual void SAL_CALL setLeftFooter(const OUString& leftFooter) override;
    virtual OUString SAL_CALL getCenterFooter() override;
    virtual void SAL_CALL setCenterFooter(const OUString& centerFooter) override;
    virtual OUString SAL_CALL getRightFooter() override;
    virtual void SAL_CALL setRightFooter(const OUString& rightFooter) override;
    virtual sal_Int32 SAL_CALL getOrder() override;
    virtual void SAL_CALL setOrder(sal_Int32 order) override;
    virtual sal_Int32 SAL_CALL getFirstPageNumber() override;
    virtual void SAL_CALL setFirstPageNumber(sal_Int32 firstPageNumber) override;
    virtual sal_Bool SAL_CALL getCenterVertically() override;
    virtual void SAL_CALL setCenterVertically(sal_Bool centerVertically) override;
    virtual sal_Bool SAL_CALL getCenterHorizontally() override;
    virtual void SAL_CALL setCenterHorizontally(sal_Bool centerHorizontally) override;
    virtual sal_Bool SAL_CALL getPrintHeadings() override;
    virtual void SAL_CALL setPrintHeadings(sal_Bool printHeadings) override;

    virtual sal_Bool SAL_CALL getPrintGridlines() override;
    virtual void SAL_CALL setPrintGridlines(sal_Bool _printgridlines) override;
    virtual OUString SAL_CALL getPrintTitleRows() override;
    virtual void SAL_CALL setPrintTitleRows(const OUString& _printtitlerows) override;
    virtual OUString SAL_CALL getPrintTitleColumns() override;
    virtual void SAL_CALL setPrintTitleColumns(const OUString& _printtitlecolumns) override;
    virtual sal_Int32 SAL_CALL getPaperSize() override;
    virtual void SAL_CALL setPaperSize(sal_Int32 papersize) override;
    // XHelperInterface
    virtual OUString getServiceImplName() override;
    virtual css::uno::Sequence<OUString> getServiceNames() override;
};

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