summaryrefslogtreecommitdiff
path: root/svx/source/inc
diff options
context:
space:
mode:
authorMaxim Monastirsky <momonasmon@gmail.com>2018-07-06 19:19:38 +0300
committerMaxim Monastirsky <momonasmon@gmail.com>2018-07-07 23:31:26 +0200
commitdda14afa6e1cdf79d03a127163e238d088017304 (patch)
treeecc00878330a9bfc6512d328481c8d4748b0a5c6 /svx/source/inc
parent526a6baff85ae1f891c5d9af4e2e20b5b0e547d1 (diff)
Use UNO ctors for extrusion and fontwork toolbar controls
Change-Id: I075b1cbe648dfaf8bb7cee6d353cbdcf26c4465c Reviewed-on: https://gerrit.libreoffice.org/57143 Tested-by: Jenkins Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
Diffstat (limited to 'svx/source/inc')
-rw-r--r--svx/source/inc/coreservices.hxx77
1 files changed, 0 insertions, 77 deletions
diff --git a/svx/source/inc/coreservices.hxx b/svx/source/inc/coreservices.hxx
deleted file mode 100644
index f53ea85c2e81..000000000000
--- a/svx/source/inc/coreservices.hxx
+++ /dev/null
@@ -1,77 +0,0 @@
-/* -*- 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 .
- */
-
-#ifndef INCLUDED_SVX_SOURCE_INC_CORESERVICES_HXX
-#define INCLUDED_SVX_SOURCE_INC_CORESERVICES_HXX
-
-#include <sal/config.h>
-
-#include <com/sun/star/uno/Reference.hxx>
-#include <com/sun/star/uno/RuntimeException.hpp>
-#include <com/sun/star/uno/Sequence.hxx>
-#include <rtl/ustring.hxx>
-#include <sal/types.h>
-
-namespace com { namespace sun { namespace star {
- namespace lang { class XMultiServiceFactory; }
- namespace uno { class XInterface; }
-} } }
-
-namespace svx
-{
-OUString ExtrusionDepthController_getImplementationName();
-/// @throws css::uno::RuntimeException
-css::uno::Reference< css::uno::XInterface > ExtrusionDepthController_createInstance(const css::uno::Reference< css::lang::XMultiServiceFactory > &);
-/// @throws css::uno::RuntimeException
-css::uno::Sequence< OUString > ExtrusionDepthController_getSupportedServiceNames();
-
-OUString ExtrusionDirectionControl_getImplementationName();
-/// @throws css::uno::RuntimeException
-css::uno::Reference< css::uno::XInterface > ExtrusionDirectionControl_createInstance(const css::uno::Reference< css::lang::XMultiServiceFactory > &);
-/// @throws css::uno::RuntimeException
-css::uno::Sequence< OUString > ExtrusionDirectionControl_getSupportedServiceNames();
-
-OUString ExtrusionLightingControl_getImplementationName();
-/// @throws css::uno::RuntimeException
-css::uno::Reference< css::uno::XInterface > ExtrusionLightingControl_createInstance(const css::uno::Reference< css::lang::XMultiServiceFactory > &);
-/// @throws css::uno::RuntimeException
-css::uno::Sequence< OUString > ExtrusionLightingControl_getSupportedServiceNames();
-
-OUString ExtrusionSurfaceControl_getImplementationName();
-/// @throws css::uno::RuntimeException
-css::uno::Reference< css::uno::XInterface > ExtrusionSurfaceControl_createInstance(const css::uno::Reference< css::lang::XMultiServiceFactory > &);
-/// @throws css::uno::RuntimeException
-css::uno::Sequence< OUString > ExtrusionSurfaceControl_getSupportedServiceNames();
-
-OUString FontworkAlignmentControl_getImplementationName();
-/// @throws css::uno::RuntimeException
-css::uno::Reference< css::uno::XInterface > FontworkAlignmentControl_createInstance(const css::uno::Reference< css::lang::XMultiServiceFactory > &);
-/// @throws css::uno::RuntimeException
-css::uno::Sequence< OUString > FontworkAlignmentControl_getSupportedServiceNames();
-
-OUString FontworkCharacterSpacingControl_getImplementationName();
-/// @throws css::uno::RuntimeException
-css::uno::Reference< css::uno::XInterface > FontworkCharacterSpacingControl_createInstance(const css::uno::Reference< css::lang::XMultiServiceFactory > &);
-/// @throws css::uno::RuntimeException
-css::uno::Sequence< OUString > FontworkCharacterSpacingControl_getSupportedServiceNames();
-}
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */