summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XFont2.idl
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-01-10 11:37:07 +0000
committerOliver Bolte <obo@openoffice.org>2008-01-10 11:37:07 +0000
commitb5a09d28b95cfd78ce0263f089008fd3c3cd5fa2 (patch)
tree043d39f0b46f83e449f4aec52ea5dc69f6a02f06 /offapi/com/sun/star/awt/XFont2.idl
parent54b9f7e7b87ee70ac9a41d4f85e837deb17ee204 (diff)
INTEGRATION: CWS xmlfilter02 (1.1.2); FILE ADDED
2007/04/11 09:13:09 tbe 1.1.2.2: #i74754# API: get supported script types from font 2007/03/28 08:16:47 tbe 1.1.2.1: #i74754# API: get supported script types from font
Diffstat (limited to 'offapi/com/sun/star/awt/XFont2.idl')
-rw-r--r--offapi/com/sun/star/awt/XFont2.idl76
1 files changed, 76 insertions, 0 deletions
diff --git a/offapi/com/sun/star/awt/XFont2.idl b/offapi/com/sun/star/awt/XFont2.idl
new file mode 100644
index 000000000000..88c6cf474f65
--- /dev/null
+++ b/offapi/com/sun/star/awt/XFont2.idl
@@ -0,0 +1,76 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: XFont2.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: obo $ $Date: 2008-01-10 12:37:07 $
+ *
+ * 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_awt_XFont2_idl__
+#define __com_sun_star_awt_XFont2_idl__
+
+#ifndef __com_sun_star_awt_XFont_idl__
+#include <com/sun/star/awt/XFont.idl>
+#endif
+
+//=============================================================================
+
+module com { module sun { module star { module awt {
+
+//=============================================================================
+
+/** extends the <type>XFont</type> interface and provides additional
+ information for a font.
+
+ @since CWS xmlfilter02
+ */
+interface XFont2: com::sun::star::awt::XFont
+{
+ //-------------------------------------------------------------------------
+
+ /** checks whether or not this font has all the glyphs for the text
+ specified by aText.
+
+ @param aText
+ The specified text for which glyphs are needed.
+
+ @return
+ Returns whether or not this font has all the glyphs for the
+ specified text.
+ */
+ boolean hasGlyphs( [in] string aText );
+
+};
+
+//=============================================================================
+
+}; }; }; };
+
+#endif