summaryrefslogtreecommitdiff
path: root/framework/source/inc/accelerators/documentacceleratorconfiguration.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/inc/accelerators/documentacceleratorconfiguration.hxx')
-rw-r--r--framework/source/inc/accelerators/documentacceleratorconfiguration.hxx111
1 files changed, 0 insertions, 111 deletions
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 <accelerators/acceleratorconfiguration.hxx>
-#include <accelerators/istoragelistener.hxx>
-#include <accelerators/presethandler.hxx>
-
-#include <macros/xinterface.hxx>
-#include <macros/xtypeprovider.hxx>
-#include <macros/xserviceinfo.hxx>
-
-#include <com/sun/star/lang/XInitialization.hpp>
-#include <com/sun/star/ui/XUIConfigurationStorage.hpp>
-
-#include <cppuhelper/implbase2.hxx>
-// 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: */