LibreOffice Module sc (master) 1
vbasheetobjects.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#pragma once
21
23#include <ooo/vba/excel/XGraphicObjects.hpp>
25#include <rtl/ref.hxx>
26
27namespace com::sun::star {
28 namespace container { class XEnumeration; }
29 namespace frame { class XModel; }
30 namespace sheet { class XSpreadsheet; }
31}
32
34typedef ::rtl::Reference< ScVbaObjectContainer > ScVbaObjectContainerRef;
35
37
42{
43public:
45 explicit ScVbaSheetObjectsBase( const ScVbaObjectContainerRef& rxContainer );
46 virtual ~ScVbaSheetObjectsBase() override;
47
52 void collectShapes();
53
54 // XEnumerationAccess
55 virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() override;
56
57 // XElementAccess
58 virtual css::uno::Type SAL_CALL getElementType() override;
59
60 // ScVbaCollectionBase
61 virtual css::uno::Any createCollectionObject( const css::uno::Any& rSource ) override;
62 virtual css::uno::Any getItemByStringIndex( const OUString& rIndex ) override;
63
64protected:
66};
67
68typedef ::cppu::ImplInheritanceHelper< ScVbaSheetObjectsBase, ov::excel::XGraphicObjects > ScVbaGraphicObjects_BASE;
69
74{
75public:
77 explicit ScVbaGraphicObjectsBase( const ScVbaObjectContainerRef& rxContainer );
78
79 // XGraphicObjects
80 virtual css::uno::Any SAL_CALL Add(
81 const css::uno::Any& rLeft,
82 const css::uno::Any& rTop,
83 const css::uno::Any& rWidth,
84 const css::uno::Any& rHeight ) override;
85};
86
89{
90public:
92 explicit ScVbaButtons(
93 const css::uno::Reference< ov::XHelperInterface >& rxParent,
94 const css::uno::Reference< css::uno::XComponentContext >& rxContext,
95 const css::uno::Reference< css::frame::XModel >& rxModel,
96 const css::uno::Reference< css::sheet::XSpreadsheet >& rxSheet,
97 bool bOptionButtons);
98
100};
101
102/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Collection containing all button controls from a sheet (not ActiveX controls).
ScVbaButtons(const css::uno::Reference< ov::XHelperInterface > &rxParent, const css::uno::Reference< css::uno::XComponentContext > &rxContext, const css::uno::Reference< css::frame::XModel > &rxModel, const css::uno::Reference< css::sheet::XSpreadsheet > &rxSheet, bool bOptionButtons)
Base class for collections containing a specific type of graphic object from a sheet.
ScVbaGraphicObjectsBase(const ScVbaObjectContainerRef &rxContainer)
virtual css::uno::Any SAL_CALL Add(const css::uno::Any &rLeft, const css::uno::Any &rTop, const css::uno::Any &rWidth, const css::uno::Any &rHeight) override
Container for a specific type of drawing object in a spreadsheet.
Base class for collections containing a specific type of drawing object embedded in a sheet (workshee...
virtual ~ScVbaSheetObjectsBase() override
ScVbaObjectContainerRef mxContainer
virtual css::uno::Any getItemByStringIndex(const OUString &rIndex) override
void collectShapes()
Updates the collection by fetching all shapes from the draw page.
ScVbaSheetObjectsBase(const ScVbaObjectContainerRef &rxContainer)
virtual css::uno::Any createCollectionObject(const css::uno::Any &rSource) override
virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() override
virtual css::uno::Type SAL_CALL getElementType() override
#define VBAHELPER_DECL_XHELPERINTERFACE
::rtl::Reference< ScVbaObjectContainer > ScVbaObjectContainerRef
CollTestImplHelper< ov::XCollection > ScVbaSheetObjects_BASE
::cppu::ImplInheritanceHelper< ScVbaSheetObjectsBase, ov::excel::XGraphicObjects > ScVbaGraphicObjects_BASE