From 7dca32d575ab974e5f42f579bdeda21d2e445efe Mon Sep 17 00:00:00 2001 From: Matúš Kukan Date: Thu, 9 Jan 2014 20:58:27 +0100 Subject: fwk: Use constructor feature for DocumentAcceleratorConfiguration. And avoid css::uno::XInitialization protocol. Change-Id: I14daf6409bf0d651d7b23246ba3855f647b3d1ef --- .../documentacceleratorconfiguration.hxx | 111 --------------------- 1 file changed, 111 deletions(-) delete mode 100644 framework/source/inc/accelerators/documentacceleratorconfiguration.hxx (limited to 'framework/source/inc') diff --git a/framework/source/inc/accelerators/documentacceleratorconfiguration.hxx b/framework/source/inc/accelerators/documentacceleratorconfiguration.hxx deleted file mode 100644 index fdf40459f585..000000000000 --- a/framework/source/inc/accelerators/documentacceleratorconfiguration.hxx +++ /dev/null @@ -1,111 +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_FRAMEWORK_SOURCE_INC_ACCELERATORS_DOCUMENTACCELERATORCONFIGURATION_HXX -#define INCLUDED_FRAMEWORK_SOURCE_INC_ACCELERATORS_DOCUMENTACCELERATORCONFIGURATION_HXX - -#include -#include -#include - -#include -#include -#include - -#include -#include - -#include -// definition - -namespace framework -{ - -//__________________________________________ -/** - implements a read/write access to a document - based accelerator configuration. - */ - -typedef ::cppu::ImplInheritanceHelper2< - XMLBasedAcceleratorConfiguration, - css::lang::XServiceInfo, - css::lang::XInitialization > DocumentAcceleratorConfiguration_BASE; - -class DocumentAcceleratorConfiguration : public DocumentAcceleratorConfiguration_BASE -{ - //______________________________________ - // member - - private: - - //---------------------------------- - /** points to the root storage of the outside document, - where we can read/save our configuration data. */ - css::uno::Reference< css::embed::XStorage > m_xDocumentRoot; - - //______________________________________ - // interface - - public: - - //---------------------------------- - /** initialize this instance and fill the internal cache. - - @param xSMGR - reference to an uno service manager, which is used internaly. - */ - DocumentAcceleratorConfiguration(const css::uno::Reference< css::uno::XComponentContext >& xContext); - virtual ~DocumentAcceleratorConfiguration(); - - // XInterface, XTypeProvider, XServiceInfo - DECLARE_XSERVICEINFO - - // XInitialization - virtual void SAL_CALL initialize(const css::uno::Sequence< css::uno::Any >& lArguments) - throw(css::uno::Exception , - css::uno::RuntimeException); - - // XUIConfigurationStorage - virtual void SAL_CALL setStorage(const css::uno::Reference< css::embed::XStorage >& xStorage) - throw(css::uno::RuntimeException); - - virtual sal_Bool SAL_CALL hasStorage() - throw(css::uno::RuntimeException); - - //______________________________________ - // helper - - private: - - //---------------------------------- - /** read all data into the cache. */ - void impl_ts_fillCache(); - - //---------------------------------- - /** forget all currently cached data AND(!) - forget all currently used storages. */ - void impl_ts_clearCache(); -}; - -} // namespace framework - -#endif // INCLUDED_FRAMEWORK_SOURCE_INC_ACCELERATORS_DOCUMENTACCELERATORCONFIGURATION_HXX - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit