Update ooo320-m1
[ooovba.git] / offapi / com / sun / star / util / XStringAbbreviation.idl
blob2284c728083fa45953621902c07fb596d84aeaa3
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: XStringAbbreviation.idl,v $
10 * $Revision: 1.6 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef __com_sun_star_util_XStringAbbreviation_idl__
32 #define __com_sun_star_util_XStringAbbreviation_idl__
34 #ifndef __com_sun_star_uno_XInterface_idl__
35 #include <com/sun/star/uno/XInterface.idl>
36 #endif
38 module com { module sun { module star { module util {
39 published interface XStringWidth;
40 }; }; }; };
42 module com { module sun { module star { module util {
44 //============================================================================
45 /** Abbreviate arbitrary strings.
47 <p>It is expected that there will be different implementations of this
48 interface, that each expect strings conforming to a certain structure
49 (e.g., URIs, platform-specific file paths, or newsgroup names). The
50 abbreviation algorithms will then take into account the structural
51 information.</p>
53 @see XStringWidth
55 published interface XStringAbbreviation: com::sun::star::uno::XInterface
57 //------------------------------------------------------------------------
58 /** Abbreviate a string, so that the resulting abbreviated string is not
59 wider than some given width.
61 <p>The width of a string is an abstract concept here, measured via
62 an <type>XStringWidth</type> interface. Examples are the number of
63 characters in the string (<type>XStringWidth</type> will measure the
64 string's length), or the width in pixel when displayed with a specific
65 font (which <type>XStringWidth</type> would encapsulate).</p>
67 @param xStringWidth
68 The interface that makes concrete the abstract notion of string width.
70 @param nWidth
71 The resulting abbreviated string's width will be no larger than this.
73 @param aString
74 The string that is abbreviated.
76 @returns
77 an abbreviated string.
79 string abbreviateString([in] XStringWidth xStringWidth,
80 [in] long nWidth,
81 [in] string aString);
84 }; }; }; };
86 #endif