forked from amazingfate/loongoffice
...which were used by ildc, which is gone since a8485d558fab53291e2530fd9a1be581c1628deb "[API CHANGE] Remove deprecated idlc and regmerge from the SDK", and have always been ignored as legacy by its unoidl-write replacement. This change has been carried out (making use of GNU sed extensions) with > for i in $(git ls-files \*.idl); do sed -i -z -E -e 's/\n\n((#[^\n]*\n)+\n)*(#[^\n]*\n)+\n?/\n\n/g' -e 's/\n(#[^\n]*\n)+/\n/g' "$i"; done && git checkout extensions/source/activex/so_activex.idl odk/examples/OLE/activex/so_activex.idl which apparently happened to do the work. (The final two files are not UNOIDL source files.) Change-Id: Ic9369e05d46e8f7e8a304ab01740b171b92335cd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135683 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
118 lines
5.3 KiB
Plaintext
118 lines
5.3 KiB
Plaintext
/* -*- 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 .
|
|
*/
|
|
|
|
module com { module sun { module star { module drawing { module framework {
|
|
|
|
interface XResourceId;
|
|
|
|
/** A configuration describes the resources of an application like panes,
|
|
views, and tool bars and their relationships that are currently active
|
|
or are requested to be activated. Resources are specified by ResourceId
|
|
structures rather than references so that not only the current
|
|
configuration but also a requested configuration can be represented.
|
|
|
|
<p>Direct manipulation of a configuration object is not advised with the
|
|
exception of the ConfigurationController and objects that
|
|
implement the XConfigurationChangeRequest interface.</p>
|
|
|
|
@see XConfigurationController
|
|
*/
|
|
interface XConfiguration
|
|
: ::com::sun::star::util::XCloneable
|
|
{
|
|
/** Returns the list of resources that are bound directly and/or
|
|
indirectly to the given anchor. A URL filter can reduce the set of
|
|
returned resource ids.
|
|
@param xAnchorId
|
|
This anchor typically is either a pane or an empty
|
|
XResourceId object. An
|
|
empty reference is treated like an XResourceId object.
|
|
@param sTargetURLPrefix
|
|
When a non-empty string is given then resource ids are returned
|
|
only when their resource URL matches this prefix, i.e. when it
|
|
begins with this prefix or is equal to it. Characters with
|
|
special meaning to URLs are not interpreted. In the typical
|
|
usage the prefix specifies the type of a resource. A typical
|
|
value is "private:resource/floater/", which is the prefix for
|
|
pane URLs. In a recursive search, only resource ids at the top
|
|
level are matched against this prefix.
|
|
<p>Use an empty string to prevent filtering out resource ids.</p>
|
|
@param eSearchMode
|
|
This flag defines whether to return only resources that are
|
|
directly bound to the given anchor or a recursive search is to
|
|
be made. Note that for the recursive search and an empty anchor
|
|
all resource ids are returned that belong to the configuration.
|
|
@return
|
|
The set of returned resource ids may be empty when there are no
|
|
resource ids that match all conditions. The resources in the
|
|
sequence are ordered with respect to the
|
|
XResourceId::compareTo() method.
|
|
*/
|
|
sequence<XResourceId> getResources (
|
|
[in] XResourceId xAnchorId,
|
|
[in] string sTargetURLPrefix,
|
|
[in] AnchorBindingMode eSearchMode);
|
|
|
|
/** <p>Returns whether the specified resource is part of the
|
|
configuration.</p>
|
|
This is independent of whether the resource does really exist and is
|
|
active, i.e. has a visible representation in the GUI.
|
|
@param xResourceId
|
|
The id of a resource. May be empty (empty reference or empty
|
|
XResourceId object) in which case `FALSE` is
|
|
returned.
|
|
@return
|
|
Returns `TRUE` when the resource is part of the configuration
|
|
and `FALSE` when it is not.
|
|
*/
|
|
boolean hasResource ([in] XResourceId xResourceId);
|
|
|
|
/** Add a resource to the configuration.
|
|
<p>This method should be used only by objects that implement the
|
|
XConfigurationRequest interface or by the configuration
|
|
controller.</p>
|
|
@param xResourceId
|
|
The resource to add to the configuration. When the specified
|
|
resource is already part of the configuration then this call is
|
|
silently ignored.
|
|
@throws IllegalArgumentException
|
|
When an empty resource id is given then an
|
|
IllegalArgumentException is thrown.
|
|
*/
|
|
void addResource ([in] XResourceId xResourceId);
|
|
|
|
/** Remove a resource from the configuration.
|
|
<p>This method should be used only by objects that implement the
|
|
XConfigurationRequest interface or by the configuration
|
|
controller.</p>
|
|
@param xResourceId
|
|
The resource to remove from the configuration. When the
|
|
specified resource is not part of the configuration then this
|
|
call is silently ignored.
|
|
@throws IllegalArgumentException
|
|
When an empty resource id is given then an
|
|
IllegalArgumentException is thrown.
|
|
*/
|
|
void removeResource ([in] XResourceId xResourceId);
|
|
};
|
|
|
|
}; }; }; }; }; // ::com::sun::star::drawing::framework
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|