LibreOffice Module svx (master) 1
layctrl.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#pragma once
20
22
24{
25public:
26 SvxTableToolBoxControl(const css::uno::Reference<css::uno::XComponentContext>& rContext);
27 virtual ~SvxTableToolBoxControl() override;
28
29 virtual std::unique_ptr<WeldToolbarPopup> weldPopupWindow() override;
30 virtual VclPtr<vcl::Window> createVclPopupWindow(vcl::Window* pParent) override;
31
32 // XServiceInfo
33 virtual OUString SAL_CALL getImplementationName() override;
34 virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
35
36 // XInitialization
37 virtual void SAL_CALL initialize(const css::uno::Sequence<css::uno::Any>& rArguments) override;
38
39 void TableDialog(const css::uno::Sequence<css::beans::PropertyValue>& rArgs);
41};
42
44{
45public:
46 SvxColumnsToolBoxControl(const css::uno::Reference<css::uno::XComponentContext>& rContext);
47 virtual ~SvxColumnsToolBoxControl() override;
48
49 virtual std::unique_ptr<WeldToolbarPopup> weldPopupWindow() override;
50 virtual VclPtr<vcl::Window> createVclPopupWindow(vcl::Window* pParent) override;
51
52 // XServiceInfo
53 virtual OUString SAL_CALL getImplementationName() override;
54 virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
55
56 // XInitialization
57 virtual void SAL_CALL initialize(const css::uno::Sequence<css::uno::Any>& rArguments) override;
58
59 void InsertColumns(const css::uno::Sequence<css::beans::PropertyValue>& rArgs);
60};
61
62/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override
Definition: layctrl.cxx:786
virtual VclPtr< vcl::Window > createVclPopupWindow(vcl::Window *pParent) override
Definition: layctrl.cxx:765
void InsertColumns(const css::uno::Sequence< css::beans::PropertyValue > &rArgs)
Definition: layctrl.cxx:655
virtual void SAL_CALL initialize(const css::uno::Sequence< css::uno::Any > &rArguments) override
Definition: layctrl.cxx:746
virtual ~SvxColumnsToolBoxControl() override
Definition: layctrl.cxx:756
virtual std::unique_ptr< WeldToolbarPopup > weldPopupWindow() override
Definition: layctrl.cxx:760
virtual OUString SAL_CALL getImplementationName() override
Definition: layctrl.cxx:781
SvxColumnsToolBoxControl(const css::uno::Reference< css::uno::XComponentContext > &rContext)
Definition: layctrl.cxx:741
virtual std::unique_ptr< WeldToolbarPopup > weldPopupWindow() override
Definition: layctrl.cxx:702
virtual VclPtr< vcl::Window > createVclPopupWindow(vcl::Window *pParent) override
Definition: layctrl.cxx:707
virtual ~SvxTableToolBoxControl() override
Definition: layctrl.cxx:698
virtual OUString SAL_CALL getImplementationName() override
Definition: layctrl.cxx:723
void CloseAndShowTableDialog()
Definition: layctrl.cxx:380
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override
Definition: layctrl.cxx:728
void TableDialog(const css::uno::Sequence< css::beans::PropertyValue > &rArgs)
Definition: layctrl.cxx:364
virtual void SAL_CALL initialize(const css::uno::Sequence< css::uno::Any > &rArguments) override
Definition: layctrl.cxx:688
SvxTableToolBoxControl(const css::uno::Reference< css::uno::XComponentContext > &rContext)
Definition: layctrl.cxx:683