LibreOffice
LibreOffice 7.2 SDK API Reference
PropertyAttribute.idl
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19#ifndef __com_sun_star_beans_PropertyAttribute_idl__
20#define __com_sun_star_beans_PropertyAttribute_idl__
21
22
23 module com { module sun { module star { module beans {
24
25
28published constants PropertyAttribute
29{
30
35 const short MAYBEVOID = 1;
36
37
42 const short BOUND = 2;
43
44
51 const short CONSTRAINED = 4;
52
53
56 const short TRANSIENT = 8;
57
58
61 const short READONLY = 16;
62
63
66 const short MAYBEAMBIGUOUS = 32;
67
68
71 const short MAYBEDEFAULT = 64;
72
73
77 const short REMOVABLE = 128;
78
82 const short REMOVEABLE = 128;
83
94 const short OPTIONAL = 256;
95};
96
97
98}; }; }; };
99
100#endif
101
102/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
const short BOUND
indicates that a PropertyChangeEvent will be fired to all registered XPropertyChangeListeners wheneve...
Definition: PropertyAttribute.idl:42
const short REMOVEABLE
Definition: PropertyAttribute.idl:82
const short CONSTRAINED
indicates that a PropertyChangeEvent will be fired to all registered XVetoableChangeListeners wheneve...
Definition: PropertyAttribute.idl:51
const short TRANSIENT
indicates that the value of the property is not persistent.
Definition: PropertyAttribute.idl:56
const short REMOVABLE
indicates that the property can be removed (i.e., by calling XPropertyContainer::removeProperty()).
Definition: PropertyAttribute.idl:77
const short MAYBEAMBIGUOUS
indicates that the value of the property can be ambiguous.
Definition: PropertyAttribute.idl:66
const short MAYBEVOID
indicates that a property value can be void.
Definition: PropertyAttribute.idl:35
const short MAYBEDEFAULT
indicates that the property can be set to default.
Definition: PropertyAttribute.idl:71
const short READONLY
indicates that the value of the property is read-only.
Definition: PropertyAttribute.idl:61
const short OPTIONAL
indicates that a property is optional.
Definition: PropertyAttribute.idl:94
Definition: Accessible.idl:22