1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_SDEXT_SOURCE_PRESENTER_PRESENTERCONFIGURATIONACCESS_HXX
21 #define INCLUDED_SDEXT_SOURCE_PRESENTER_PRESENTERCONFIGURATIONACCESS_HXX
23 #include <rtl/ustring.hxx>
24 #include <com/sun/star/beans/XPropertySet.hpp>
25 #include <com/sun/star/container/XNameAccess.hpp>
26 #include <com/sun/star/container/XHierarchicalNameAccess.hpp>
27 #include <com/sun/star/uno/XComponentContext.hpp>
32 namespace sdext::presenter
{
34 /** This class gives access to the configuration. Create an object of this
35 class for one node of the configuration. This will be the root node.
36 From this one you can use this class in two ways.
38 <p>In a stateless mode (with exception of the root node) you can use static
39 methods for obtaining child nodes, get values from properties at leaf
40 nodes and iterate over children of inner nodes.</p>
42 <p>In a stateful mode use non-static methods like GoToChild() to
43 navigate to children.</p>
45 <p>Note to call CommitChanges() after making changes to
46 PresenterConfigurationAccess object that was opened in READ_WRITE mode.</p>
48 class PresenterConfigurationAccess
51 enum WriteMode
{ READ_WRITE
, READ_ONLY
};
52 typedef ::std::function
<bool (
54 const css::uno::Reference
<css::beans::XPropertySet
>&)> Predicate
;
55 static constexpr OUStringLiteral msPresenterScreenRootName
=
56 u
"/org.openoffice.Office.PresenterScreen/";
58 /** Create a new object to access the configuration entries below the
61 Name of the root. You can use msPresenterScreenRootName to
62 access the configuration of the presenter screen.
64 This flag specifies whether to give read-write or read-only
67 PresenterConfigurationAccess(
68 const css::uno::Reference
<css::uno::XComponentContext
>& rxContext
,
69 const OUString
& rsRootName
,
72 ~PresenterConfigurationAccess();
74 /** Return a configuration node below the root of the called object.
76 The relative path from the root (as given the constructor) to the node.
78 css::uno::Any
GetConfigurationNode (
79 const OUString
& rsPathToNode
);
81 /** Return <TRUE/> when opening the configuration (via creating a new
82 PresenterConfigurationAccess object) or previous calls to
83 GoToChild() left the called PresenterConfigurationAccess object in a
88 /** Move the focused node to the (possibly indirect) child specified by the given path.
90 bool GoToChild (const OUString
& rsPathToNode
);
92 /** Move the focused node to the first direct child that fulfills the given predicate.
94 bool GoToChild (const Predicate
& rPredicate
);
96 /** Modify the property child of the currently focused node. Keep in
97 mind to call CommitChanges() to write the change back to the
100 bool SetProperty (const OUString
& rsPropertyName
, const css::uno::Any
& rValue
);
102 /** Return a configuration node below the given node.
104 The node that acts as root to the given relative path.
106 The relative path from the given node to the requested node.
107 When this string is empty then rxNode is returned.
109 The type of the returned node varies with the requested node.
110 It is empty when the node was not found.
112 static css::uno::Any
GetConfigurationNode (
113 const css::uno::Reference
<css::container::XHierarchicalNameAccess
>& rxNode
,
114 const OUString
& rsPathToNode
);
116 static css::uno::Reference
<css::beans::XPropertySet
> GetNodeProperties (
117 const css::uno::Reference
<css::container::XHierarchicalNameAccess
>& rxNode
,
118 const OUString
& rsPathToNode
);
120 /** Write any changes that have been made back to the configuration.
121 This call is ignored when the called ConfigurationAccess object was
122 not create with read-write mode.
124 void CommitChanges();
126 typedef ::std::function
<void (
127 const ::std::vector
<css::uno::Any
>&) > ItemProcessor
;
128 typedef ::std::function
<void (
130 const css::uno::Reference
<css::beans::XPropertySet
>&) > PropertySetProcessor
;
132 /** Execute a functor for all elements of the given container.
134 The container is a XNameAccess to a list of the configuration.
135 This can be a node returned by GetConfigurationNode().
137 The functor is called with arguments that are children of each
138 element of the container. The set of children is specified this
141 The functor to be executed for some or all of the elements in
145 const css::uno::Reference
<css::container::XNameAccess
>& rxContainer
,
146 const ::std::vector
<OUString
>& rArguments
,
147 const ItemProcessor
& rProcessor
);
149 const css::uno::Reference
<css::container::XNameAccess
>& rxContainer
,
150 const PropertySetProcessor
& rProcessor
);
152 static css::uno::Any
Find (
153 const css::uno::Reference
<css::container::XNameAccess
>& rxContainer
,
154 const Predicate
& rPredicate
);
156 static bool IsStringPropertyEqual (
157 std::u16string_view rsValue
,
158 const OUString
& rsPropertyName
,
159 const css::uno::Reference
<css::beans::XPropertySet
>& rxNode
);
161 /** This method wraps a call to getPropertyValue() and returns an empty
162 Any instead of throwing an exception when the property does not
165 static css::uno::Any
GetProperty (
166 const css::uno::Reference
<css::beans::XPropertySet
>& rxProperties
,
167 const OUString
& rsKey
);
170 css::uno::Reference
<css::uno::XInterface
> mxRoot
;
171 css::uno::Any maNode
;
174 } // end of namespace sdext::tools
178 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */