diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-03-14 10:06:16 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-03-14 10:06:16 +0000 |
commit | 2a2fd40eea446bc0de20c84e9558e9a560660800 (patch) | |
tree | 510d48686c3ef62d4c365c45a7946b1a0bbf5b6b | |
parent | 36d9d58447aa774438aee38c1845edd9bcd83336 (diff) |
INTEGRATION: CWS pbrwuno (1.1.2); FILE ADDED
2005/12/21 14:19:17 fs 1.1.2.2: corrected typos found by juergen.schmidt@sun.com - thanks
2005/10/14 08:42:27 fs 1.1.2.1: meta info about a property category
-rw-r--r-- | offapi/com/sun/star/inspection/PropertyCategoryDescriptor.idl | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/offapi/com/sun/star/inspection/PropertyCategoryDescriptor.idl b/offapi/com/sun/star/inspection/PropertyCategoryDescriptor.idl new file mode 100644 index 000000000000..5c9ff1fa1180 --- /dev/null +++ b/offapi/com/sun/star/inspection/PropertyCategoryDescriptor.idl @@ -0,0 +1,73 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: PropertyCategoryDescriptor.idl,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: vg $ $Date: 2006-03-14 11:06:16 $ + * + * The Contents of this file are made available subject to + * the terms of GNU Lesser General Public License Version 2.1. + * + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2005 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + ************************************************************************/ +#ifndef __com_sun_star_inspection_PropertyCategoryDescriptor_idl__ +#define __com_sun_star_inspection_PropertyCategoryDescriptor_idl__ + +//============================================================================= +module com { module sun { module star { module inspection { + +//----------------------------------------------------------------------------- +/** describes a category of properties + @see ObjectInspector + @see XObjectInspectorModel::describeCategory + @see LineDescriptor::Category +*/ +struct PropertyCategoryDescriptor +{ + /** contains the programmatic name of the category. + + <p>This programmatic name is used internally: <member>XPropertyHandler::describePropertyLine</member> + sets a programmatic category name at <member>LineDescriptor::Category</member>, + and an object inspector uses this to find the proper <type>PropertyCategoryDescriptor</type>.</p> + */ + string ProgrammaticName; + + /** provides a human-readable name (which can be presented at the UI) for a category. + */ + string UIName; + + /** provides a help URL to be associated with a category + */ + string HelpURL; +}; + +//============================================================================= + +}; }; }; }; + +#endif + + + |