5687eba49f
...which were used by ildc, which is gone since
a8485d558f
"[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>
96 lines
4 KiB
Text
96 lines
4 KiB
Text
/* -*- 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 {
|
|
|
|
/** A cache of preview bitmaps for the slides of one Impress or Draw
|
|
document in one size. There may be more than one cache for one
|
|
document. These are internally connected and for missing previews one
|
|
cache may take it from another cache and scale it to the desired size.
|
|
When a preview is not present then it is created asynchronously. On
|
|
creation all registered listeners are notified.
|
|
|
|
Slides are referenced via their index in an XIndexAccess container in
|
|
order to allow multiple references to a single slide (custom
|
|
presentations).
|
|
*/
|
|
interface XSlidePreviewCache
|
|
{
|
|
/** Set the set of slides for which the cache will provide the
|
|
previews. All slides in the given XIndexAccess are required to come
|
|
from the given model.
|
|
@param xSlides
|
|
The set of slides for which the called cache will provide the
|
|
previews. This container defines the indices that are used to
|
|
look up slides.
|
|
@param xDocument
|
|
The model that contains the slides reference by the xSlides argument.
|
|
*/
|
|
void setDocumentSlides (
|
|
[in] ::com::sun::star::container::XIndexAccess xSlides,
|
|
[in] ::com::sun::star::uno::XInterface xDocument);
|
|
|
|
/** Define which slides are currently visible on the screen and which
|
|
are not. This information is used for give preview creation for
|
|
visible slides a higher priority than for those slides that are not
|
|
visible.
|
|
*/
|
|
void setVisibleRange ([in] long nFirstVisibleSlideIndex, [in] long nLastVisibleSlideIndex);
|
|
|
|
/** Define the size of the previews that are managed by the called
|
|
cache.
|
|
*/
|
|
void setPreviewSize ([in] ::com::sun::star::geometry::IntegerSize2D aSize);
|
|
|
|
/** Return a preview for the given slide index.
|
|
The returned bitmap may be the requested preview, a preview of the
|
|
preview, i.e. a scaled up or down version, or an empty reference
|
|
when the preview is not yet present.
|
|
|
|
This call may lead to the asynchronous creation of the requested
|
|
preview. In that case all registered listeners are notified when
|
|
the preview has been created.
|
|
*/
|
|
::com::sun::star::rendering::XBitmap getSlidePreview (
|
|
[in] long nSlideIndex,
|
|
[in] ::com::sun::star::rendering::XCanvas xCanvas)
|
|
raises(::com::sun::star::lang::IllegalArgumentException);
|
|
|
|
/** Register a listener that is called when a preview has been created
|
|
asynchronously.
|
|
*/
|
|
void addPreviewCreationNotifyListener ([in] XSlidePreviewCacheListener xListener);
|
|
|
|
/** Remove a previously registered listener for preview creations.
|
|
*/
|
|
void removePreviewCreationNotifyListener ([in] XSlidePreviewCacheListener xListener);
|
|
|
|
/** Stop the asynchronous creation of previews temporarily.
|
|
Call resume() to restart it.
|
|
*/
|
|
void pause ();
|
|
|
|
/** Resume the asynchronous creation of slide previews.
|
|
*/
|
|
void resume ();
|
|
};
|
|
|
|
}; }; }; }; // ::com::sun::star::drawing
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|