diff options
author | Rüdiger Timm <rt@openoffice.org> | 2006-12-01 15:01:11 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2006-12-01 15:01:11 +0000 |
commit | ac281af8cedc1d8252cc1a4c98c3b426a183df0e (patch) | |
tree | 537ee94400064f38d1cf76f58a7dc960029644eb /offapi | |
parent | c6b52d254b21c9d86e6095daf214adfe62149326 (diff) |
INTEGRATION: CWS swautomatic01 (1.1.2); FILE ADDED
2006/06/23 14:46:01 fme 1.1.2.2: #i65476#: Automatic Styles
2006/05/19 10:39:59 os 1.1.2.1: #i65476# automatic style support
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/style/XAutoStyle.idl | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/offapi/com/sun/star/style/XAutoStyle.idl b/offapi/com/sun/star/style/XAutoStyle.idl new file mode 100644 index 000000000000..ae1b53e41e63 --- /dev/null +++ b/offapi/com/sun/star/style/XAutoStyle.idl @@ -0,0 +1,82 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: XAutoStyle.idl,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: rt $ $Date: 2006-12-01 16:01:11 $ + * + * 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_style_XAutoStyle_idl__ +#define __com_sun_star_style_XAutoStyle_idl__ + +#ifndef __com_sun_star_style_XStyle_idl__ +#include <com/sun/star/style/XStyle.idl> +#endif + +#ifndef __com_sun_star_beans_XPropertySet_idl__ +#include <com/sun/star/beans/XPropertySet.idl> +#endif +#ifndef __com_sun_star_beans_XMultiPropertySet_idl__ +#include <com/sun/star/beans/XMultiPropertySet.idl> +#endif +#ifndef __com_sun_star_beans_XMultiPropertyStates_idl__ +#include <com/sun/star/beans/XMultiPropertyStates.idl> +#endif +#ifndef __com_sun_star_beans_NamedValue_idl__ +#include <com/sun/star/beans/NamedValue.idl> +#endif +#ifndef __com_sun_star_beans_PropertyValues_idl__ +#include <com/sun/star/beans/PropertyValues.idl> +#endif + + + +//============================================================================= + + module com { module sun { module star { module style { + +//============================================================================= + +/** This interface allows access to a single automatic style. + */ +interface XAutoStyle +{ + interface com::sun::star::beans::XMultiPropertySet; + interface com::sun::star::beans::XMultiPropertyStates; + + /** + returns a sequence of all properties that are set in the style + */ + com::sun::star::beans::PropertyValues getProperties(); +}; + +//============================================================================= + +}; }; }; }; +#endif |