summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/registry/XRegistryKey.idl
blob: c39357c54b6b578d8f98066a6a60fe3f5f7cd03b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
/* -*- 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 __com_sun_star_registry_XRegistryKey_idl__
#define __com_sun_star_registry_XRegistryKey_idl__

#include <com/sun/star/uno/XInterface.idl>
#include <com/sun/star/registry/InvalidRegistryException.idl>
#include <com/sun/star/registry/RegistryKeyType.idl>
#include <com/sun/star/registry/RegistryValueType.idl>
#include <com/sun/star/registry/InvalidValueException.idl>



module com { module sun { module star { module registry {

/** makes structural information (except regarding tree structures)
    of a single registry key accessible.

    <p>This is the main interface for registry keys.<p>

    @see XSimpleRegistry
*/
published interface XRegistryKey: com::sun::star::uno::XInterface
{
    /** This is the key of the entry relative to its parent.<p>

        <p>The access path starts with the root "/" and all parent
        entry names are delimited with slashes "/" too, like in a
        UNIX (R) file system. Slashes which are part of single names
        are represented as hexadecimals preceded with a "%" like in
        URL syntax.
     */
    [readonly, attribute] string    KeyName;

    /** checks if the key can be overwritten.

        @throws InvalidRegistryException
        if the registry is not open.
    */
    boolean isReadOnly()
            raises( com::sun::star::registry::InvalidRegistryException );

    /** checks if the key points to an open valid key in the data-source.
    */
    boolean isValid();

    /** @returns
        the type of the specified key.

        @param rKeyName
        specifies the relative path from the current key to
        the key of the type which will be returned.

        @throws InvalidRegistryException
        if the registry is not open.
    */
    com::sun::star::registry::RegistryKeyType getKeyType( [in] string rKeyName )
            raises( com::sun::star::registry::InvalidRegistryException );

    /** @returns
        the type of the key value or NOT_DEFINED if the key has no value.

        @throws InvalidRegistryException
        if the registry is not open.
    */
    com::sun::star::registry::RegistryValueType getValueType()
            raises( com::sun::star::registry::InvalidRegistryException );

    /** @returns
        a long value if the key contains one.

        @throws InvalidRegistryException
        if the registry is not open.

        @throws InvalidValueException
        if the value is not of type long.
    */
    long getLongValue()
            raises( com::sun::star::registry::InvalidRegistryException,
                    com::sun::star::registry::InvalidValueException );

    /** sets a long value to the key.

        <p>If the key already has a value, the value will be
        overridden.

        @throws InvalidRegistryException
        if the registry is not open.
    */
    void setLongValue( [in] long value )
            raises( com::sun::star::registry::InvalidRegistryException );

    // DOCUMENTATION CHANGED FOR XRegistryKey::getLongListValue
    /** @returns
        a sequence of longs if the key contains a long list value.

         @throws InvalidRegistryException
         if the registry is not open.

         @throws InvalidValueException
         if the actual value is not of type long list.
    */
    sequence<long> getLongListValue()
            raises( com::sun::star::registry::InvalidRegistryException,
                    com::sun::star::registry::InvalidValueException );

    /** sets a long list value to the key.

        <p>If the key already has a value, the value will be
        overridden.

        @throws InvalidRegistryException
        if the registry is not open.
    */
    void setLongListValue( [in] sequence<long> seqValue )
            raises( com::sun::star::registry::InvalidRegistryException );

    // DOCUMENTATION CHANGED FOR XRegistryKey::getAsciiValue
    /** @returns
        an ascii string value if the key contains one.

         @throws InvalidRegistryException
         if the registry is not open.

         @throws InvalidValueException
         if the actual value is not of type ascii.
    */
    string getAsciiValue()
            raises( com::sun::star::registry::InvalidRegistryException,
                    com::sun::star::registry::InvalidValueException );

    /** sets an ASCII string value to the key.

        <p>The high byte of the string should be NULL.  If not, there
        is no guarantee that the string will be correctly transported.
        If the key already has a value, the value will be overridden.

        @throws InvalidRegistryException
        if the registry is not open.
    */
    void setAsciiValue( [in] string value )
            raises( com::sun::star::registry::InvalidRegistryException );

    // DOCUMENTATION CHANGED FOR XRegistryKey::getAsciiListValue
    /** @returns
        a sequence of ascii strings if the key contains an asci list value.

         @throws InvalidRegistryException
         if the registry is not open.

         @throws InvalidValueException
         if the actual value is not of type ascii list.
    */
    sequence<string> getAsciiListValue()
            raises( com::sun::star::registry::InvalidRegistryException,
                    com::sun::star::registry::InvalidValueException );

    /** sets an ASCII string list value to the key.

        <p>The high byte of the string should be NULL. If not, there
        is no guarantee that the string will be correctly transported.
        If the key already has a value, the value will be overridden.

        @throws InvalidRegistryException
        if the registry is not open.
    */
    void setAsciiListValue( [in] sequence<string> seqValue )
            raises( com::sun::star::registry::InvalidRegistryException );

    // DOCUMENTATION CHANGED FOR XRegistryKey::getStringValue
    /** @returns
        a unicode string value if the key contains one.

         @throws InvalidRegistryException
         if the registry is not open.

         @throws InvalidValueException
         if the actual value is not of type string.
    */
    string getStringValue()
            raises( com::sun::star::registry::InvalidRegistryException,
                    com::sun::star::registry::InvalidValueException );

    /** sets a unicode string value to the key.

        <p> If the key already has a value, the value will be
        overridden.

        @throws InvalidRegistryException
        if the registry is not open.
    */
    void setStringValue( [in] string value )
            raises( com::sun::star::registry::InvalidRegistryException );

    // DOCUMENTATION CHANGED FOR XRegistryKey::getStringListValue
    /** @returns
        a sequence of unicode strings if the key contains an unicode string list value.

         @throws InvalidRegistryException
         if the registry is not open.

         @throws InvalidValueException
         if the actual value is not of type string list.
    */
    sequence<string> getStringListValue()
            raises( com::sun::star::registry::InvalidRegistryException,
                    com::sun::star::registry::InvalidValueException );

    /** sets a unicode string value to the key.

        <p>If the key already has a value, the value will be overridden.

        @throws InvalidRegistryException
        if the registry is not open.
    */
    void setStringListValue( [in] sequence<string> seqValue )
            raises( com::sun::star::registry::InvalidRegistryException );

    // DOCUMENTATION CHANGED FOR XRegistryKey::getBinaryValue
    /** @returns
        a binary value if the key contains one.

         @throws InvalidRegistryException
         if the registry is not open.

         @throws InvalidValueException
         if the actual value is not of type binary.
    */
    sequence<byte> getBinaryValue()
            raises( com::sun::star::registry::InvalidRegistryException,
                    com::sun::star::registry::InvalidValueException );

    /** sets a binary value to the key.

        <p>If the key already has a value, the value will be
        overridden.

        @throws InvalidRegistryException
        if the registry is not open.
    */
    void setBinaryValue( [in] sequence<byte> value )
            raises( com::sun::star::registry::InvalidRegistryException );

    /** opens a sub key of the key.

        <p>If the sub key does not exist, the function returns a
        NULL-interface.

        @param aKeyName
        the relative path from the current key to the key
        which will be created.

        @returns
        a NULL interface if the key does not exist.

        @throws InvalidRegistryException
        if the registry is not open.
    */
    com::sun::star::registry::XRegistryKey openKey( [in] string aKeyName )
            raises( com::sun::star::registry::InvalidRegistryException );

    /** creates a new key in the registry.<p>

        <p>If the key already exists, the function will open the key.

        @param aKeyName
        specifies the relative path from the current key to
        the key which will be created.

        @returns
        a NULL interface if the key could not be created.

        @throws InvalidRegistryException
        if the registry is not open, the registry is readonly
        or if the key exists and is of type LINK.
    */
    com::sun::star::registry::XRegistryKey createKey( [in] string aKeyName )
            raises( com::sun::star::registry::InvalidRegistryException );

    /** closes a key in the registry.

        @throws InvalidRegistryException
        if the registry is not open.
    */
    void closeKey()
            raises( com::sun::star::registry::InvalidRegistryException );

    /** deletes a key from the registry.

        @param KeyName
        specifies the relative path from the current key to
        the key which will be deleted.

        @throws InvalidRegistryException
        if the registry is not open, the registry is readonly,
        the key does not exists or if the key is of type LINK.
    */
    void deleteKey( [in] string KeyName )
            raises( com::sun::star::registry::InvalidRegistryException );

    // DOCUMENTATION CHANGED FOR XRegistryKey::openKeys
    /** opens all subkeys of the key. If a subkey is a link, the link will be
        resolved and the appropriate key will be opened.

           @returns
           an empty sequence if the key has no subkeys.

           @throws InvalidRegistryException
           if the registry is not open.
    */
    sequence<com::sun::star::registry::XRegistryKey> openKeys()
            raises( com::sun::star::registry::InvalidRegistryException );

    // DOCUMENTATION CHANGED FOR XRegistryKey::getKeyNames
    /** @returns a sequence with the names of all subkeys of the key.
          If the key has no subkeys, the function returns an empty sequence. If a subkey is
           a link, the name of the link will be returned.

         @throws InvalidRegistryException
         if the registry is not open.
     */
    sequence<string> getKeyNames()
            raises( com::sun::star::registry::InvalidRegistryException );

    /** creates a new link in the registry.

        @returns
        `TRUE` if the link was created. If the link already
        exists or the link target does not exist, the
        function returns `FALSE`.

        @param aLinkName
        specifies the relative path from the current key to
        the link which will be created.

        @param aLinkTarget
        specifies the full path of the key which will be
        referenced by the link.

        @throws InvalidRegistryException
        if the registry is not open or the registry is
        readonly.

    */
    boolean createLink( [in] string aLinkName,
             [in] string aLinkTarget )
            raises( com::sun::star::registry::InvalidRegistryException );

    /** deletes a link from the registry.

        @param LinkName
        specifies the relative path from the current key to
        the link which will be deleted.

        @throws InvalidRegistryException
        if the registry is not open, the registry is readonly,
        or if the link does not exist.
    */
    void deleteLink( [in] string LinkName )
            raises( com::sun::star::registry::InvalidRegistryException );

    // DOCUMENTATION CHANGED FOR XRegistryKey::getLinkTarget
    /** @returns
        the target (complete path of a key) of the link specified by rLinkName.

         @param LinkName
        specifies the relative path from the current key to
        the link which target will be returned.

         @throws InvalidRegistryException
         if the registry is not open or the link does not exists.
    */
    string getLinkTarget( [in] string LinkName )
            raises( com::sun::star::registry::InvalidRegistryException );

    // DOCUMENTATION CHANGED FOR XRegistryKey::getResolvedName
    /** @returns
        the resolved name of a key. The function resolve the complete name of the key.
        If a link could not be resolved, the linktarget concatenated with the unresolved rest
        of the name, will be returned.

         @param KeyName
         specifies a relative path from the current key which will be resolved from all links.

         @throws InvalidRegistryException
         if the registry is not open or a recursion was detected.
    */
    string getResolvedName( [in] string KeyName )
            raises( com::sun::star::registry::InvalidRegistryException );

};


}; }; }; };

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */