tdf#130857 qt weld: Implement QtInstanceWidget::get_text_height
[LibreOffice.git] / offapi / com / sun / star / frame / XStorable2.idl
blob691cadc196fb6d04058cf97b275b3e9ca499ae17
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
22 module com { module sun { module star { module frame {
24 /** extends XStorable.
26 published interface XStorable2: XStorable
28 /** stores the data to the URL from which it was loaded.
30 <p>
31 Only objects which know their locations can be stored.
32 </p>
34 <p>
35 This is an extension of the XStorable::store().
36 This method allows to specify some additional parameters for
37 storing process.
38 </p>
40 @param lArguments
41 optional parameters for saving, can take values from subset of
42 com::sun::star::document::MediaDescriptor
44 @throws ::com::sun::star::lang::IllegalArgumentException
45 the optional parameters contain unacceptable for save entry
47 @throws com::sun::star::io::IOException
48 if an IO error occurred during save operation
50 @see XStorable::store
52 void storeSelf(
53 [in] sequence<com::sun::star::beans::PropertyValue> lArguments )
54 raises( com::sun::star::lang::IllegalArgumentException,
55 com::sun::star::io::IOException );
60 }; }; }; };
62 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */