diff -x CVS -urN ooo_SRC680_m202_src.orig/canvas/source/java/aqua/WindowAdapter.java ooo_SRC680_m202_src.aquavcl01/canvas/source/java/aqua/WindowAdapter.java --- ooo_SRC680_m202_src.orig/canvas/source/java/aqua/WindowAdapter.java 1970-01-01 01:00:00.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/canvas/source/java/aqua/WindowAdapter.java 2006-01-31 01:07:05.000000000 +0100 @@ -0,0 +1,175 @@ +// UNO +import com.sun.star.uno.UnoRuntime; +import com.sun.star.uno.XComponentContext; +import com.sun.star.uno.AnyConverter; +import com.sun.star.lang.XInitialization; +import com.sun.star.lib.uno.helper.WeakBase; + +// OOo AWT +import com.sun.star.awt.*; + +// system-dependent stuff +import sun.awt.*; + +//Apple specifics +import apple.awt.*; + + +public class WindowAdapter +// defacto implementing the interface, but not deriving from it, since +// we're no real XInterface here +// implements com.sun.star.awt.XWindow +{ + public java.awt.Frame frame; + private boolean fullscreen; + + public WindowAdapter( int windowHandle, + boolean _fullscreen ) + { + fullscreen = false; + + if( _fullscreen ) + { + // create a normal Java frame, and set it into fullscreen mode + frame = new javax.swing.JFrame( "Presentation" ); + frame.setUndecorated( true ); + frame.setVisible( true ); + + java.awt.Graphics2D graphics = (java.awt.Graphics2D)frame.getGraphics(); + if( graphics.getDeviceConfiguration().getDevice().isFullScreenSupported() ) + { + CanvasUtils.printLog( "WindowAdapter(Aqua): entering fullscreen mode" ); + graphics.getDeviceConfiguration().getDevice().setFullScreenWindow( frame ); + fullscreen = true; + } + else + { + CanvasUtils.printLog( "WindowAdapter(Aqua): fullscreen not supported" ); + } + + graphics.dispose(); + } + else + { + // we're initialized with the operating system window handle + // as the parameter. We then generate a dummy Java frame with + // that window as the parent, to fake a root window for the + // Java implementation. + + // now, we're getting slightly system dependent here. + String os = (String) System.getProperty("os.name"); + + // create the embedded frame + if( os.startsWith("Mac OS X") ) + frame = new apple.awt.CEmbeddedFrame( windowHandle ); + else + throw new com.sun.star.uno.RuntimeException(); + + +// frame = new javax.swing.JFrame( "Test window" ); + +// // resize it according to the given bounds +// frame.setBounds( boundRect ); +// frame.setVisible( true ); + } + } + + //---------------------------------------------------------------------------------- + + public void dispose() + { + if( fullscreen ) + { + java.awt.Graphics2D graphics = (java.awt.Graphics2D)frame.getGraphics(); + if( graphics.getDeviceConfiguration().getDevice().isFullScreenSupported() ) + { + CanvasUtils.printLog( "WindowAdapter(Aqua): leaving fullscreen mode" ); + graphics.getDeviceConfiguration().getDevice().setFullScreenWindow( null ); + } + graphics.dispose(); + } + + if( frame != null ) + frame.dispose(); + } + + //---------------------------------------------------------------------------------- + + // + // XWindow interface + // ================= + // + public void setPosSize( int X, int Y, int Width, int Height, short Flags ) + { + frame.setBounds( new java.awt.Rectangle( X, Y, Width, Height ) ); + } + + public com.sun.star.awt.Rectangle getPosSize( ) + { + java.awt.Rectangle bounds = frame.getBounds(); + + return new com.sun.star.awt.Rectangle( bounds.x, bounds.y, bounds.width, bounds.height ); + } + + public void setVisible( boolean visible ) + { + frame.setVisible( visible ); + } + + public void setEnable( boolean enable ) + { + frame.setEnabled( enable ); + } + + public void setFocus() + { + } + + public void addWindowListener( XWindowListener xListener ) + { + } + + public void removeWindowListener( XWindowListener xListener ) + { + } + + public void addFocusListener( XFocusListener xListener ) + { + } + + public void removeFocusListener( XFocusListener xListener ) + { + } + + public void addKeyListener( XKeyListener xListener ) + { + } + + public void removeKeyListener( XKeyListener xListener ) + { + } + + public void addMouseListener( XMouseListener xListener ) + { + } + + public void removeMouseListener( XMouseListener xListener ) + { + } + + public void addMouseMotionListener( XMouseMotionListener xListener ) + { + } + + public void removeMouseMotionListener( XMouseMotionListener xListener ) + { + } + + public void addPaintListener( XPaintListener xListener ) + { + } + + public void removePaintListener( XPaintListener xListener ) + { + } +} diff -x CVS -urN ooo_SRC680_m202_src.orig/canvas/source/java/makefile.mk ooo_SRC680_m202_src.aquavcl01/canvas/source/java/makefile.mk --- ooo_SRC680_m202_src.orig/canvas/source/java/makefile.mk 2006-08-14 18:14:56.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/canvas/source/java/makefile.mk 2006-08-22 00:09:13.000000000 +0200 @@ -68,15 +68,19 @@ BezierPolyPolygon.java \ SpriteRunner.java -.IF "$(GUIBASE)"!="unx" +.IF "$(GUIBASE)"=="unx" -JAVAFILES += win/WindowAdapter.java +JAVAFILES += x11/WindowAdapter.java -.ELSE # "$(GUIBASE)"!="unx" +.ELIF "$(GUIBASE)"=="aqua" -JAVAFILES += x11/WindowAdapter.java +JAVAFILES += aqua/WindowAdapter.java + +.ELSE + +JAVAFILES += win/WindowAdapter.java -.ENDIF # "$(GUIBASE)"!="unx" +.ENDIF # "$(GUIBASE)"=="unx" JARFILES = jurt.jar unoil.jar ridl.jar juh.jar java_uno.jar #JAVACLASSFILES = $(foreach,i,$(JAVAFILES) $(CLASSDIR)$/$(PACKAGE)$/$(i:b).class) diff -x CVS -urN ooo_SRC680_m202_src.orig/canvas/source/tools/image.cxx ooo_SRC680_m202_src.aquavcl01/canvas/source/tools/image.cxx --- ooo_SRC680_m202_src.orig/canvas/source/tools/image.cxx 2006-10-12 13:31:36.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/canvas/source/tools/image.cxx 2006-11-26 21:22:37.000000000 +0100 @@ -88,11 +88,13 @@ # pragma warning(pop) # endif #else +#if !defined(QUARTZ) namespace unx { #include } #endif +#endif #include diff -x CVS -urN ooo_SRC680_m202_src.orig/dtrans/source/aqua/dtransaqua.xml ooo_SRC680_m202_src.aquavcl01/dtrans/source/aqua/dtransaqua.xml --- ooo_SRC680_m202_src.orig/dtrans/source/aqua/dtransaqua.xml 2003-03-25 15:05:32.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/dtrans/source/aqua/dtransaqua.xml 2005-11-27 11:12:33.000000000 +0100 @@ -1,55 +1,48 @@ - - - - - - Tino Rachui - - com.sun.star.comp.datatransfer.clipboard - - - The win32 implementation of the datatransfer service. - - - sysdtrans - - com.sun.star.loader.SharedLibrary - - c++ - - - - com.sun.star.datatransfer.clipboard.SystemClipboard - - ... - - cppuhelper - cppu - sal - - cppuhelper - cppu2 - sal2 - - com.sun.star.datatransfer.clipboard.XClipboardEx - com.sun.star.datatransfer.XTransferable - com.sun.star.datatransfer.XTransferableEx - com.sun.star.datatransfer.clipboard.XClipboardOwner - com.sun.star.datatransfer.clipboard.XClipboardListener - com.sun.star.datatransfer.clipboard.XClipboardNotifier - com.sun.star.datatransfer.XTransferDataAccess - com.sun.star.lang.XComponent - com.sun.star.lang.XMultiServiceFactory - com.sun.star.lang.XSingleServiceFactory - com.sun.star.lang.XServiceInfo - com.sun.star.lang.XTypeProvider - com.sun.star.lang.IllegalArgumentException - com.sun.star.uno.TypeClass - com.sun.star.uno.XWeak - com.sun.star.uno.XAggregation - com.sun.star.registry.XRegistryKey - com.sun.star.container.XSet - - - + + + + dtransaqua + + Tino Rachui + com.sun.star.comp.datatransfer.aqua + + The aqua implementation of the datatransfer service. + + com.sun.star.loader.SharedLibrary + c++ + + com.sun.star.datatransfer.clipboard.SystemClipboard + ... + com.sun.star.datatransfer.clipboard.XClipboardEx + com.sun.star.datatransfer.XTransferable + com.sun.star.datatransfer.clipboard.RenderingCapabilities + com.sun.star.datatransfer.clipboard.XClipboardOwner + com.sun.star.datatransfer.clipboard.XClipboardListener + com.sun.star.datatransfer.clipboard.XClipboardNotifier + com.sun.star.datatransfer.dnd.XDropTargetDropContext + com.sun.star.datatransfer.dnd.XDropTargetDragContext + com.sun.star.datatransfer.dnd.XDropTarget + com.sun.star.datatransfer.dnd.DNDConstants + com.sun.star.datatransfer.dnd.XDragSource + com.sun.star.datatransfer.dnd.XDragSourceContext + com.sun.star.awt.XDisplayConnection + com.sun.star.lang.DisposedException + com.sun.star.lang.IllegalArgumentException + com.sun.star.lang.XComponent + com.sun.star.lang.XMultiServiceFactory + com.sun.star.lang.XSingleServiceFactory + com.sun.star.lang.XServiceInfo + com.sun.star.lang.XTypeProvider + com.sun.star.uno.TypeClass + com.sun.star.uno.XWeak + com.sun.star.uno.XAggregation + com.sun.star.registry.XRegistryKey + com.sun.star.container.XSet + + cppuhelper + cppu + sal + cppuhelper + cppu2 + sal2 + diff -x CVS -urN ooo_SRC680_m202_src.orig/dtrans/source/aqua/makefile.mk ooo_SRC680_m202_src.aquavcl01/dtrans/source/aqua/makefile.mk --- ooo_SRC680_m202_src.orig/dtrans/source/aqua/makefile.mk 2007-01-25 16:41:57.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/dtrans/source/aqua/makefile.mk 2006-08-07 20:28:22.000000000 +0200 @@ -93,9 +93,7 @@ # --- Targets ------------------------------------------------------ ALL : ALLTAR -# hjs - do *not* call deliver out of makefiles -# deliver.pl - regcomp -register -r $(BIN)$/$(COMP1TYPELIST).rdb -c $(SHL1TARGET) + +cd $(LB) && regcomp -register -r ../bin/$(COMP1TYPELIST).rdb -c $(SHL1TARGET) .INCLUDE : target.mk diff -x CVS -urN ooo_SRC680_m202_src.orig/extensions/prj/build.lst ooo_SRC680_m202_src.aquavcl01/extensions/prj/build.lst --- ooo_SRC680_m202_src.orig/extensions/prj/build.lst 2006-12-13 17:28:39.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/extensions/prj/build.lst 2007-01-25 14:13:16.000000000 +0100 @@ -9,10 +9,11 @@ ex extensions\source\activex\main nmake - w ex_axmain ex_axmsidl.w ex_inc NULL ex extensions\source\ole nmake - w ex_ole ex_xmlextr ex_inc NULL ex extensions\source\resource nmake - all ex_resrc ex_inc NULL +ex extensions\source\plugin\aqua nmake - u ex_plaqua ex_plbase NULL ex extensions\source\plugin\base nmake - all ex_plbase ex_inc NULL ex extensions\source\plugin\win nmake - w ex_plwin ex_plbase ex_inc NULL ex extensions\source\plugin\unx nmake - u ex_plunx ex_inc NULL -ex extensions\source\plugin\util nmake - all ex_plutil ex_plbase ex_plunx.u ex_plwin.w ex_inc NULL +ex extensions\source\plugin\util nmake - all ex_plutil ex_plbase ex_plunx.u ex_plwin.w ex_plaqua.u ex_inc NULL ex extensions\source\scanner nmake - all ex_scan ex_resrc ex_inc NULL ex extensions\source\svg nmake - all ex_svg ex_scan ex_inc NULL ex extensions\source\packer nmake - all ex_pck ex_inc NULL diff -x CVS -urN ooo_SRC680_m202_src.orig/extensions/source/plugin/aqua/macmgr.cxx ooo_SRC680_m202_src.aquavcl01/extensions/source/plugin/aqua/macmgr.cxx --- ooo_SRC680_m202_src.orig/extensions/source/plugin/aqua/macmgr.cxx 1970-01-01 01:00:00.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/extensions/source/plugin/aqua/macmgr.cxx 2006-08-25 14:26:41.000000000 +0200 @@ -0,0 +1,273 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile$ + * + * $Revision$ + * + * last change: $Author$ $Date$ + * + * 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 + * + ************************************************************************/ + +#include +#include +#include +#include +#include +#include + +#include +#include + +using namespace rtl; +using namespace std; +using namespace com::sun::star::uno; +using namespace com::sun::star::plugin; + +// Unix specific implementation +static bool CheckPlugin( const ByteString& rPath, list< PluginDescription* >& rDescriptions ) +{ +#if OSL_DEBUG_LEVEL > 1 + fprintf( stderr, "Trying plugin %s ... ", rPath.GetBuffer() ); +#endif + + xub_StrLen nPos = rPath.SearchBackward( '/' ); + if( nPos == STRING_NOTFOUND ) + { +#if OSL_DEBUG_LEVEL > 1 + fprintf( stderr, "no absolute path to plugin\n" ); +#endif + return false; + } + + ByteString aBaseName = rPath.Copy( nPos+1 ); + if( aBaseName.Equals( "libnullplugin.so" ) ) + { +#if OSL_DEBUG_LEVEL > 1 + fprintf( stderr, "don't like %s\n", aBaseName.GetBuffer() ); +#endif + return false; + } + + struct stat aStat; + if( stat( rPath.GetBuffer(), &aStat ) || ! S_ISREG( aStat.st_mode ) ) + { +#if OSL_DEBUG_LEVEL > 1 + fprintf( stderr, "%s is not a regular file\n", rPath.GetBuffer() ); +#endif + return false; + } + + + rtl_TextEncoding aEncoding = osl_getThreadTextEncoding(); + + ByteString aCommand( "pluginapp.bin \"" ); + aCommand.Append( rPath ); + aCommand.Append( '"' ); + + FILE* pResult = popen( aCommand.GetBuffer(), "r" ); + int nDescriptions = 0; + if( pResult ) + { + OStringBuffer aMIME; + char buf[256]; + while( fgets( buf, sizeof( buf ), pResult ) ) + { + for( int i = 0; i < sizeof(buf) && buf[i]; ++i ) + { + if( buf[i] == '\n' ) + buf[i] = ';'; + } + aMIME.append( buf ); + } + pclose( pResult ); + + if( aMIME.getLength() > 0 ) + { + OString aLine = aMIME.makeStringAndClear(); + + sal_Int32 nIndex = 0; + while( nIndex != -1 ) + { + OString aType = aLine.getToken( 0, ';', nIndex ); + + sal_Int32 nTypeIndex = 0; + OString aMimetype = aType.getToken( 0, ':', nTypeIndex ); + OString aExtLine = aType.getToken( 0, ':', nTypeIndex ); + if( nTypeIndex < 0 ) // ensure at least three tokens + continue; + OString aDesc = aType.getToken( 0, ':', nTypeIndex ); + + // create extension list string + sal_Int32 nExtIndex = 0; + OStringBuffer aExtension; + while( nExtIndex != -1 ) + { + OString aExt = aExtLine.getToken( 0, ',', nExtIndex); + if( aExt.indexOf( "*." ) != 0 ) + aExtension.append( "*." ); + aExtension.append( aExt ); + if( nExtIndex != -1 ) + aExtension.append( ';' ); + } + + PluginDescription* pNew = new PluginDescription; + // set plugin name (path to library) + pNew->PluginName = OStringToOUString( rPath, aEncoding ); + // set mimetype + pNew->Mimetype = OStringToOUString( aMimetype, aEncoding ); + // set extension line + pNew->Extension = OStringToOUString( aExtension.makeStringAndClear(), aEncoding ); + // set description + pNew->Description= OStringToOUString( aDesc, aEncoding ); + rDescriptions.push_back( pNew ); +#if OSL_DEBUG_LEVEL > 1 + fprintf( stderr, "Mimetype: %s\nExtension: %s\n" + "Description: %s\n", + OUStringToOString( pNew->Mimetype, aEncoding ).getStr(), + OUStringToOString( pNew->Extension, aEncoding ).getStr(), + OUStringToOString( pNew->Description, aEncoding ).getStr() + ); +#endif + } + } +#if OSL_DEBUG_LEVEL > 1 + else + fprintf( stderr, "result of \"%s\" contains no mimtype\n", + aCommand.GetBuffer() ); +#endif + } +#if OSL_DEBUG_LEVEL > 1 + else + fprintf( stderr, "command \"%s\" failed\n", aCommand.GetBuffer() ); +#endif + return nDescriptions > 0; +} + +Sequence XPluginManager_Impl::getPluginDescriptions() throw() +{ + static Sequence aDescriptions; + static BOOL bHavePlugins = FALSE; + if( ! bHavePlugins ) + { + rtl_TextEncoding aEncoding = osl_getThreadTextEncoding(); + list aPlugins; + int i; + + // unix: search for plugins in /usr/lib/netscape/plugins, + // ~/.netscape/plugins und NPX_PLUGIN_PATH + // additionally: search in PluginsPath + static const char* pHome = getenv( "HOME" ); + static const char* pNPXPluginPath = getenv( "NPX_PLUGIN_PATH" ); + + ByteString aSearchPath( "/usr/lib/netscape/plugins" ); + if( pHome ) + { + aSearchPath.Append( ':' ); + aSearchPath.Append( pHome ); + aSearchPath += "/.netscape/plugins"; + } + if( pNPXPluginPath ) + { + aSearchPath.Append( ':' ); + aSearchPath += pNPXPluginPath; + } + + const Sequence< ::rtl::OUString >& rPaths( PluginManager::getAdditionalSearchPaths() ); + for( i = 0; i < rPaths.getLength(); i++ ) + { + aSearchPath += ":"; + aSearchPath += ByteString( String( rPaths.getConstArray()[i] ), aEncoding ); + } + + + long aBuffer[ sizeof( struct dirent ) + _PC_NAME_MAX +1 ]; + int nPaths = aSearchPath.GetTokenCount( ':' ); + for( i = 0; i < nPaths; i++ ) + { + ByteString aPath( aSearchPath.GetToken( i, ':' ) ); + if( aPath.Len() ) + { + DIR* pDIR = opendir( aPath.GetBuffer() ); + struct dirent* pDirEnt = NULL; + while( pDIR && ! readdir_r( pDIR, (struct dirent*)aBuffer, &pDirEnt ) && pDirEnt ) + { + char* pBaseName = ((struct dirent*)aBuffer)->d_name; + if( pBaseName[0] != '.' || + pBaseName[1] != '.' || + pBaseName[2] != 0 ) + { + ByteString aFileName( aPath ); + aFileName += "/"; + aFileName += pBaseName; + CheckPlugin( aFileName, aPlugins ); + } + } + if( pDIR ) + closedir( pDIR ); + } + } + + // try ~/.mozilla/pluginreg.dat + ByteString aMozPluginreg( pHome ); + aMozPluginreg.Append( "/.mozilla/pluginreg.dat" ); + FILE* fp = fopen( aMozPluginreg.GetBuffer(), "r" ); + if( fp ) + { +#if OSL_DEBUG_LEVEL > 1 + fprintf( stderr, "parsing %s\n", aMozPluginreg.GetBuffer() ); +#endif + char aLine[1024]; + while( fgets( aLine, sizeof( aLine ), fp ) ) + { + int nLineLen = strlen( aLine ); + int nDotPos; + for( nDotPos = nLineLen-1; nDotPos > 0 && aLine[nDotPos] != ':'; nDotPos-- ) + ; + if( aLine[0] == '/' && aLine[nDotPos] == ':' && aLine[nDotPos+1] == '$' ) + CheckPlugin( ByteString( aLine, nDotPos ), aPlugins ); + } + fclose( fp ); + } + + // create return value + aDescriptions = Sequence( aPlugins.size() ); +#if OSL_DEBUG_LEVEL > 1 + fprintf( stderr, "found %d plugins\n", aPlugins.size() ); +#endif + list::iterator iter; + for( iter = aPlugins.begin(), i=0; iter != aPlugins.end(); ++iter ,i++ ) + { + aDescriptions.getArray()[ i ] = **iter; + delete *iter; + } + aPlugins.clear(); + bHavePlugins = TRUE; + } + return aDescriptions; +} + diff -x CVS -urN ooo_SRC680_m202_src.orig/extensions/source/plugin/aqua/makefile.mk ooo_SRC680_m202_src.aquavcl01/extensions/source/plugin/aqua/makefile.mk --- ooo_SRC680_m202_src.orig/extensions/source/plugin/aqua/makefile.mk 1970-01-01 01:00:00.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/extensions/source/plugin/aqua/makefile.mk 2006-09-22 10:14:12.000000000 +0200 @@ -0,0 +1,79 @@ +#************************************************************************* +# +# OpenOffice.org - a multi-platform office productivity suite +# +# $RCSfile$ +# +# $Revision$ +# +# last change: $Author$ $Date$ +# +# 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 +# +#************************************************************************* +PRJ=..$/..$/.. + +PRJNAME=extensions +TARGET=plaqua +#ENABLE_EXCEPTIONS=TRUE +#TARGETTYPE=CUI + +.INCLUDE : ..$/util$/makefile.pmk + +.IF "$(GUIBASE)"!="aqua" || "$(WITH_MOZILLA)"=="NO" + +dummy: + @echo "Nothing to build for GUIBASE $(GUIBASE)." + +.ELSE + +# --- Files -------------------------------------------------------- + +INCPRE+=-I$(SOLARINCDIR)$/mozilla$/plugin +.IF "$(SOLAR_JAVA)" != "" +INCPRE+=-I$(SOLARINCDIR)$/mozilla$/java +INCPRE+=-I$(SOLARINCDIR)$/mozilla$/nspr +INCPRE+=-I$(SOLARINCDIR)$/npsdk +CDEFS+=-DOJI +.ENDIF + +SLOFILES=\ + $(SLO)$/macmgr.obj \ + $(SLO)$/sysplug.obj + +#APP1TARGET=pluginapp.bin +#APP1OBJS=$(OBJFILES) +#APP1STDLIBS=\ +# $(TOOLSLIB) \ +# $(VOSLIB) \ +# $(SALLIB) + +#APP1DEF= $(MISC)$/$(TARGET).def + + +# --- Targets ------------------------------------------------------ + +.INCLUDE : target.mk + +.ENDIF # $(GUIBASE)==aqua diff -x CVS -urN ooo_SRC680_m202_src.orig/extensions/source/plugin/aqua/sysplug.cxx ooo_SRC680_m202_src.aquavcl01/extensions/source/plugin/aqua/sysplug.cxx --- ooo_SRC680_m202_src.orig/extensions/source/plugin/aqua/sysplug.cxx 1970-01-01 01:00:00.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/extensions/source/plugin/aqua/sysplug.cxx 2006-08-25 14:26:41.000000000 +0200 @@ -0,0 +1,220 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile$ + * + * $Revision$ + * + * last change: $Author$ $Date$ + * + * 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 + * + ************************************************************************/ +#include + +#include +#include +#include +#include + +#include + +int MacPluginComm::nConnCounter = 0; + +MacPluginComm::MacPluginComm( + const String& mimetype, + const String& library, + WindowRef aParent, + int nDescriptor1, + int nDescriptor2 + ) : +PluginComm( ::rtl::OUStringToOString( library, osl_getThreadTextEncoding() ) )/*, +PluginConnector( nDescriptor2 )*/ +{ + //char pDesc[32]; +// char pWindow[32]; +// sprintf( pWindow, "%d", aParent ); +// sprintf( pDesc, "%d", nDescriptor1 ); +// ByteString aLib( library, osl_getThreadTextEncoding() ); +// +// char* pArgs[5]; +// pArgs[0] = "pluginapp.bin"; +// pArgs[1] = pDesc; +// pArgs[2] = const_cast(aLib.GetBuffer()); +// pArgs[3] = pWindow; +// pArgs[4] = NULL; +// +//#if OSL_DEBUG_LEVEL > 1 +// m_nCommPID = 10; +// fprintf( stderr, "Try to launch: %s %s %s %s, descriptors are %d, %d\n", pArgs[0], pArgs[1], pArgs[2], pArgs[3], nDescriptor1, nDescriptor2 ); +//#endif +// +// if( ! ( m_nCommPID = fork() ) ) +// { +// execvp( pArgs[0], pArgs ); +// fprintf( stderr, "Error: could not exec %s\n", pArgs[0] ); +// _exit(255); +// } +// +// if( m_nCommPID != -1 ) +// { +// // wait for pluginapp.bin to start up +// if( ! WaitForMessage( 5000 ) ) +// { +// fprintf( stderr, "Timeout on command: %s %s %s %s\n", pArgs[0], pArgs[1], pArgs[2], pArgs[3] ); +// invalidate(); +// } +// else +// { +// MediatorMessage* pMessage = GetNextMessage( TRUE ); +// Respond( pMessage->m_nID, +// "init ack",8, +// NULL ); +// delete pMessage; +// NPP_Initialize(); +// } +// } +} + +MacPluginComm::~MacPluginComm() +{ + NPP_Shutdown(); + if( m_nCommPID != -1 && m_nCommPID != 0 ) + { + int status = 16777216; + pid_t nExit = waitpid( m_nCommPID, &status, WUNTRACED ); +#if OSL_DEBUG_LEVEL > 1 + fprintf( stderr, "child %d (plugin app child %d) exited with status %d\n", nExit, m_nCommPID, WEXITSTATUS(status) ); +#endif + } +} + +NPError MacPluginComm::NPP_Destroy( NPP instance, + NPSavedData** save ) +{ + return 0; +} + +NPError MacPluginComm::NPP_DestroyStream( NPP instance, + NPStream* stream, + NPError reason ) +{ + return 0; +} + +jref MacPluginComm::NPP_GetJavaClass() +{ + return 0; +} + +NPError MacPluginComm::NPP_Initialize() +{ + return 0; +} + +NPError MacPluginComm::NPP_New( NPMIMEType pluginType, + NPP instance, + uint16 mode, + int16 argc, + char* argn[], + char* argv[], + NPSavedData *saved ) +{ + return 0; +} + +NPError MacPluginComm::NPP_NewStream( NPP instance, + NPMIMEType type, + NPStream* stream, + NPBool seekable, + uint16* stype ) +{ + return 0; +} + +void MacPluginComm::NPP_Print( NPP instance, + NPPrint* platformPrint ) +{ + +} + +NPError MacPluginComm::NPP_SetWindow( NPP instance, + NPWindow* window ) +{ + return 0; +} + +void MacPluginComm::NPP_Shutdown() +{ + +} + +void MacPluginComm::NPP_StreamAsFile( NPP instance, + NPStream* stream, + const char* fname ) +{ + +} + +void MacPluginComm::NPP_URLNotify( NPP instance, + const char* url, + NPReason reason, + void* notifyData ) +{ + +} + +int32 MacPluginComm::NPP_Write( NPP instance, + NPStream* stream, + int32 offset, + int32 len, + void* buffer ) +{ + return 0; +} + +int32 MacPluginComm::NPP_WriteReady( NPP instance, + NPStream* stream ) +{ + return 0; +} + +char* MacPluginComm::NPP_GetMIMEDescription() +{ + return ""; +} + +NPError MacPluginComm::NPP_GetValue( NPP instance, NPPVariable variable, void* value ) +{ + return 0; +} + +NPError MacPluginComm::NPP_SetValue( NPP instance, + NPNVariable variable, + void *value) +{ + return 0; +} + diff -x CVS -urN ooo_SRC680_m202_src.orig/extensions/source/plugin/base/xplugin.cxx ooo_SRC680_m202_src.aquavcl01/extensions/source/plugin/base/xplugin.cxx --- ooo_SRC680_m202_src.orig/extensions/source/plugin/base/xplugin.cxx 2006-09-16 15:09:27.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/extensions/source/plugin/base/xplugin.cxx 2006-12-31 00:15:13.000000000 +0100 @@ -526,7 +526,7 @@ } } const SystemEnvData* pEnvData = getSysChildSysData(); -#ifdef UNX +#if defined( UNX ) && !(defined(QUARTZ)) XSync( (Display*)pEnvData->pDisplay, False ); #endif if( ! getPluginComm() ) @@ -538,12 +538,21 @@ PluginComm* pComm = NULL; int sv[2]; if( !socketpair( AF_UNIX, SOCK_STREAM, 0, sv ) ) +#ifdef QUARTZ + pComm = new MacPluginComm( m_aDescription.Mimetype, + m_aDescription.PluginName, + (WindowRef)pEnvData->rWindow, + sv[0], + sv[1] + ); +#else pComm = new UnxPluginComm( m_aDescription.Mimetype, m_aDescription.PluginName, (XLIB_Window)pEnvData->aWindow, sv[0], sv[1] ); +#endif //QUARTZ #elif (defined WNT || defined OS2) PluginComm* pComm = new PluginComm_Impl( m_aDescription.Mimetype, m_aDescription.PluginName, @@ -565,13 +574,18 @@ (char**)(m_nArgs ? m_pArgv : NULL), NULL ); -#ifdef UNX +#if defined( UNX ) && !defined(QUARTZ) XSync( (Display*)pEnvData->pDisplay, False ); #endif #ifdef UNX +#if !defined(QUARTZ) m_aNPWindow.window = (void*)pEnvData->aWindow; m_aNPWindow.ws_info = NULL; #else + m_aNPWindow.window = (void*)pEnvData->rWindow; + m_aNPWindow.type = NPWindowTypeWindow; +#endif //QUARTZ +#else m_aNPWindow.window = (void*)pEnvData->hWnd; #endif com::sun::star::awt::Rectangle aPosSize = getPosSize(); diff -x CVS -urN ooo_SRC680_m202_src.orig/extensions/source/plugin/inc/plugin/aqua/sysplug.hxx ooo_SRC680_m202_src.aquavcl01/extensions/source/plugin/inc/plugin/aqua/sysplug.hxx --- ooo_SRC680_m202_src.orig/extensions/source/plugin/inc/plugin/aqua/sysplug.hxx 1970-01-01 01:00:00.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/extensions/source/plugin/inc/plugin/aqua/sysplug.hxx 2006-12-30 20:18:18.000000000 +0100 @@ -0,0 +1,100 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile$ + * + * $Revision$ + * + * last change: $Author$ $Date$ + * + * 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 __PLUGIN_INC_MACPLUG_HXX +#define __PLUGIN_INC_MACPLUG_HXX + +#include + +#include +#include +#include + +#include +#define GENERATINGCFM 0 +#include + +#include +//#include +//#include +//#include +#include + +//================================================================================================== +class MacPluginComm : public PluginComm +{ +private: + static int nConnCounter; + + pid_t m_nCommPID; +public: + MacPluginComm( const String& mimetype, + const String& library, + WindowRef aParent, + int nDescriptor1, + int nDescriptor2 + ); + virtual ~MacPluginComm(); + + virtual NPError NPP_Destroy( NPP instance, NPSavedData** save ); + virtual NPError NPP_DestroyStream( NPP instance, NPStream* stream, + NPError reason ); + virtual jref NPP_GetJavaClass(); + virtual NPError NPP_Initialize(); + virtual NPError NPP_New( NPMIMEType pluginType, NPP instance, + uint16 mode, int16 argc, + char* argn[], char* argv[], NPSavedData *saved ); + virtual NPError NPP_NewStream( NPP instance, NPMIMEType type, + NPStream* stream, + NPBool seekable, uint16* stype ); + virtual void NPP_Print( NPP instance, NPPrint* platformPrint ); + virtual NPError NPP_SetWindow( NPP instance, NPWindow* window ); + virtual void NPP_Shutdown(); + virtual void NPP_StreamAsFile( NPP instance, NPStream* stream, + const char* fname ); + virtual void NPP_URLNotify( NPP instance, const char* url, NPReason reason, + void* notifyData ); + virtual int32 NPP_Write( NPP instance, NPStream* stream, int32 offset, + int32 len, void* buffer ); + virtual int32 NPP_WriteReady( NPP instance, NPStream* stream ); + virtual char* NPP_GetMIMEDescription(); + virtual NPError NPP_GetValue( NPP instance, NPPVariable variable, void* value ); + virtual NPError NPP_SetValue( NPP instance, NPNVariable variable, + void *value); +}; + + +#endif + + diff -x CVS -urN ooo_SRC680_m202_src.orig/extensions/source/plugin/inc/plugin/impl.hxx ooo_SRC680_m202_src.aquavcl01/extensions/source/plugin/inc/plugin/impl.hxx --- ooo_SRC680_m202_src.orig/extensions/source/plugin/inc/plugin/impl.hxx 2005-09-08 21:52:49.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/extensions/source/plugin/inc/plugin/impl.hxx 2006-01-31 01:36:16.000000000 +0100 @@ -140,9 +140,13 @@ #include #endif -#ifdef UNX +#if defined(UNX) +#if defined(QUARTZ) +#include +#else #include #endif +#endif #include #include diff -x CVS -urN ooo_SRC680_m202_src.orig/extensions/source/plugin/unx/makefile.mk ooo_SRC680_m202_src.aquavcl01/extensions/source/plugin/unx/makefile.mk --- ooo_SRC680_m202_src.orig/extensions/source/plugin/unx/makefile.mk 2006-12-01 15:19:00.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/extensions/source/plugin/unx/makefile.mk 2006-12-07 15:29:41.000000000 +0100 @@ -40,6 +40,12 @@ .INCLUDE : ..$/util$/makefile.pmk +.IF "$(GUIBASE)"=="aqua" +dummy: + @echo "Nothing to build for GUIBASE aqua." + +.ELSE + # --- Files -------------------------------------------------------- INCPRE+=-I$(SOLARINCDIR)$/mozilla$/plugin @@ -91,6 +97,8 @@ .ENDIF # $(WITH_MOZILLA) != "NO" +.ENDIF # $(GUIBASE)==aqua + # --- Targets ------------------------------------------------------ .INCLUDE : target.mk diff -x CVS -urN ooo_SRC680_m202_src.orig/extensions/source/plugin/util/makefile.mk ooo_SRC680_m202_src.aquavcl01/extensions/source/plugin/util/makefile.mk --- ooo_SRC680_m202_src.orig/extensions/source/plugin/util/makefile.mk 2006-03-08 15:16:55.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/extensions/source/plugin/util/makefile.mk 2006-09-22 10:14:13.000000000 +0200 @@ -52,7 +52,13 @@ $(SHL1LINKLIB) .IF "$(GUI)" == "UNX" +.IF "$(GUIBASE)"=="aqua" +.IF "$(WITH_MOZILLA)"=="YES" +SHL1LINKLIB = $(SLB)$/plaqua.lib +.ENDIF +.ELSE SHL1LINKLIB = $(SLB)$/plunx.lib +.ENDIF # $(GUIBASE)==aqua .IF "$(OS)" == "SOLARIS" SHL1OWNLIBS = -lsocket .ENDIF # SOLARIS @@ -94,7 +100,7 @@ $(CPPULIB) \ $(SALLIB) -.IF "$(OS)"=="MACOSX" +.IF "$(OS)"=="MACOSX" && "$(GUIBASE)"=="unx" SHL1STDLIBS+= -lX11 .ENDIF diff -x CVS -urN ooo_SRC680_m202_src.orig/padmin/source/makefile.mk ooo_SRC680_m202_src.aquavcl01/padmin/source/makefile.mk --- ooo_SRC680_m202_src.orig/padmin/source/makefile.mk 2005-09-08 18:25:28.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/padmin/source/makefile.mk 2006-01-31 01:48:58.000000000 +0100 @@ -33,6 +33,13 @@ # #************************************************************************* +.IF "$(GUIBASE)"=="aqua" + +dummy: + @echo "Nothing to build for GUIBASE aqua." + +.ELSE + PRJ=.. PRJNAME=padmin TARGET=padmin @@ -111,3 +118,5 @@ .INCLUDE : target.mk +.ENDIF #aqua + diff -x CVS -urN ooo_SRC680_m202_src.orig/psprint/source/fontmanager/makefile.mk ooo_SRC680_m202_src.aquavcl01/psprint/source/fontmanager/makefile.mk --- ooo_SRC680_m202_src.orig/psprint/source/fontmanager/makefile.mk 2005-09-08 18:37:39.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/psprint/source/fontmanager/makefile.mk 2006-08-16 22:09:09.000000000 +0200 @@ -51,6 +51,13 @@ # --- Files -------------------------------------------------------- +.IF "$(GUIBASE)"=="aqua" + +dummy: + @echo "Nothing to build for GUIBASE $(GUIBASE)" + +.ELSE # "$(GUIBASE)"=="aqua" + SLOFILES=\ $(SLO)$/fontmanager.obj \ $(SLO)$/fontcache.obj \ @@ -61,6 +68,8 @@ NOOPTFILES=$(SLO)$/fontmanager.obj .ENDIF +.ENDIF + # --- Targets ------------------------------------------------------ .INCLUDE : target.mk diff -x CVS -urN ooo_SRC680_m202_src.orig/sal/osl/unx/makefile.mk ooo_SRC680_m202_src.aquavcl01/sal/osl/unx/makefile.mk --- ooo_SRC680_m202_src.orig/sal/osl/unx/makefile.mk 2007-01-25 16:24:24.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/sal/osl/unx/makefile.mk 2007-02-02 12:25:22.000000000 +0100 @@ -113,6 +113,10 @@ $(OBJ)$/file_stat.obj #.ENDIF +.IF "$(OS)"=="MACOSX" +SLOFILES += $(SLO)$/osxlocale.obj +.ENDIF + .IF "$(OS)"=="SOLARIS" || "$(OS)"=="FREEBSD" || "$(OS)"=="NETBSD" || "$(OS)$(CPU)"=="LINUXS" SLOFILES += $(SLO)$/backtrace.obj OBJFILES += $(OBJ)$/backtrace.obj diff -x CVS -urN ooo_SRC680_m202_src.orig/sal/osl/unx/module.c ooo_SRC680_m202_src.aquavcl01/sal/osl/unx/module.c --- ooo_SRC680_m202_src.orig/sal/osl/unx/module.c 2006-05-09 17:43:15.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/sal/osl/unx/module.c 2006-12-02 19:26:20.000000000 +0100 @@ -95,6 +95,8 @@ oslModule SAL_CALL osl_psz_loadModule(const sal_Char *pszModuleName, sal_Int32 nRtldMode); void* SAL_CALL osl_psz_getSymbol(oslModule hModule, const sal_Char* pszSymbolName); +oslProcessError SAL_CALL osl_bootstrap_getExecutableFile_Impl(rtl_uString ** ppFileURL); + /*****************************************************************************/ /* osl_loadModule */ /*****************************************************************************/ @@ -116,8 +118,21 @@ if (UnicodeToText(buffer, PATH_MAX, ustrTmp->buffer, ustrTmp->length)) pModule = osl_psz_loadModule(buffer, nRtldMode); + + if (!pModule && (0 == strchr(buffer, '/'))) + { + rtl_uString* ustrExecutableFile = NULL; + + if (osl_Process_E_None == osl_bootstrap_getExecutableFile_Impl(&ustrExecutableFile)) + { + sal_Int32 n = rtl_ustr_lastIndexOfChar(ustrExecutableFile->buffer, (sal_Unicode) '/'); + rtl_uString_newReplaceStrAt(&ustrTmp, ustrExecutableFile, n + 1, ustrExecutableFile->length - n - 1, ustrModuleName); + pModule = osl_loadModule(ustrTmp, nRtldMode); + rtl_uString_release(ustrExecutableFile); + } + } + rtl_uString_release(ustrTmp); } - rtl_uString_release(ustrTmp); return pModule; } @@ -134,23 +149,10 @@ { #ifndef NO_DL_FUNCTIONS void* pLib = dlopen(pszModuleName, rtld_mode); - if ((pLib == 0) && (strchr (pszModuleName, '/') == 0)) - { - /* module w/o pathname not found, try cwd as last chance */ - char buffer[PATH_MAX]; - - buffer[0] = '.', buffer[1] = '/', buffer[2] = '\0'; - strncat (buffer, pszModuleName, sizeof(buffer) - 2); - - pLib = dlopen(buffer, rtld_mode); - } #if OSL_DEBUG_LEVEL > 1 if (pLib == 0) - { - /* module not found, give up */ - fprintf (stderr, "Error osl_loadModule: %s\n", dlerror()); - } + OSL_TRACE("Error osl_loadModule: %s\n", dlerror()); #endif /* OSL_DEBUG_LEVEL */ return ((oslModule)(pLib)); diff -x CVS -urN ooo_SRC680_m202_src.orig/sal/osl/unx/nlsupport.c ooo_SRC680_m202_src.aquavcl01/sal/osl/unx/nlsupport.c --- ooo_SRC680_m202_src.orig/sal/osl/unx/nlsupport.c 2007-01-18 15:18:16.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/sal/osl/unx/nlsupport.c 2007-01-25 18:53:00.000000000 +0100 @@ -849,8 +849,9 @@ #include #include #include +#include -/* OS X locale discovery function from dylib */ +/* OS X locale discovery function */ int (*pGetOSXLocale)( char *, sal_uInt32 ); oslModule SAL_CALL osl_psz_loadModule(const sal_Char *pszModuleName, sal_Int32 nRtldMode); @@ -859,6 +860,8 @@ return the current process locale *****************************************************************************/ +int macosx_getLocale(char *locale, sal_uInt32 bufferLen); + void _imp_getProcessLocale( rtl_Locale ** ppLocale ) { static char *locale = NULL; @@ -869,46 +872,12 @@ /* Only fetch the locale once and cache it */ if ( NULL == locale ) { - unsigned int isDarwin; - unsigned int majorVersion; - unsigned int minorVersion; - unsigned int minorMinorVersion; - - /* If running on OS X, attempt to fetch the locale using CoreServices calls. */ - macxp_getSystemVersion( &isDarwin, &majorVersion, &minorVersion, &minorMinorVersion ); - if( !isDarwin ) - { - /* Load the locale discovery library if we are running on OS X */ - - const sal_Char *aLocaleLibName = "libsalsystools" SAL_DLLEXTENSION; - const sal_Char *aGetOSXLocaleFunctionName = "macosx_getLocale"; - oslModule pLocaleLib; - void *pFunc; - int err; - - pLocaleLib = osl_psz_loadModule( aLocaleLibName, SAL_LOADMODULE_DEFAULT ); - if( pLocaleLib ) - { - /* Grab a pointer to the locale function and call it */ - pFunc = osl_psz_getSymbol( pLocaleLib, aGetOSXLocaleFunctionName ); - if( pFunc ) - { - pGetOSXLocale = ( int(*)(char *, sal_uInt32) )( pFunc ); - locale = (char *)malloc( 20 ); - if ( locale ) - err = (*pGetOSXLocale)( locale, 20 ); - else - fprintf( stderr, "nlsupport.c: locale allocation returned NULL!\n" ); - } - else - fprintf( stderr, "Could not load the OS X locale discovery function! (%s)\n", aGetOSXLocaleFunctionName ); - } - else - fprintf( stderr, "Could not load the OS X locale discovery library! (%s)\n", aLocaleLibName ); - - /* Let go of the module, we don't need it anymore */ - osl_unloadModule( pLocaleLib ); - } + + locale = (char *)malloc( 20 ); + if ( locale ) + macosx_getLocale( locale, 20 ); + else + fprintf( stderr, "nlsupport.c: locale allocation returned NULL!\n" ); } /* handle the case where OS specific method of finding locale fails */ diff -x CVS -urN ooo_SRC680_m202_src.orig/sal/osl/unx/osxlocale.cxx ooo_SRC680_m202_src.aquavcl01/sal/osl/unx/osxlocale.cxx --- ooo_SRC680_m202_src.orig/sal/osl/unx/osxlocale.cxx 1970-01-01 01:00:00.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/sal/osl/unx/osxlocale.cxx 2007-01-25 18:53:00.000000000 +0100 @@ -0,0 +1,134 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile$ + * + * $Revision$ + * + * last change: $Author$ $Date$ + * + * 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 + * + ************************************************************************/ + +// MARKER(update_precomp.py): autogen include statement, do not remove +#include "precompiled_sal.hxx" + +#include +#include + +#include +#include +#include +#include + +namespace /* private */ +{ + template + class CFGuard + { + public: + explicit CFGuard(T& rT) : rT_(rT) {} + ~CFGuard() { if (rT_) CFRelease(rT_); } + private: + T& rT_; + }; + + typedef CFGuard CFArrayGuard; + typedef CFGuard CFStringGuard; + typedef CFGuard CFPropertyListGuard; + + /** Get the current process locale from system + */ + CFStringRef getProcessLocale() + { + CFPropertyListRef pref = CFPreferencesCopyAppValue(CFSTR("AppleLocale"), kCFPreferencesCurrentApplication); + CFPropertyListGuard proplGuard(pref); + + if (pref == NULL) // return fallback value 'en_US' + return CFStringCreateWithCString(kCFAllocatorDefault, "en_US", kCFStringEncodingASCII); + + CFStringRef sref = (CFGetTypeID(pref) == CFArrayGetTypeID()) ? (CFStringRef)CFArrayGetValueAtIndex((CFArrayRef)pref, 0) : (CFStringRef)pref; + + // NOTE: this API is only available with Mac OS X >=10.3. We need to use it because + // Apple used non-ISO values on systems <10.2 like "German" for instance but didn't + // upgrade those values during upgrade to newer Mac OS X versions. See also #i54337# + return CFLocaleCreateCanonicalLocaleIdentifierFromString(kCFAllocatorDefault, sref); + } +} // namespace private + +/** Grab current locale from system. +*/ +extern "C" { +int macosx_getLocale(char *locale, sal_uInt32 bufferLen) +{ + CFStringRef sref = getProcessLocale(); + CFStringGuard sGuard(sref); + + assert(sref != NULL && "osxlocale.cxx: getProcessLocale must return a non-NULL value"); + + // split the string into substrings; the first two (if there are two) substrings + // are language and country + CFArrayRef subs = CFStringCreateArrayBySeparatingStrings(NULL, sref, CFSTR("_")); + CFArrayGuard arrGuard(subs); + + CFStringRef lang = (CFStringRef)CFArrayGetValueAtIndex(subs, 0); + CFStringGetCString(lang, locale, bufferLen, kCFStringEncodingASCII); + + // country also available? Assumption: if the array contains more than one + // value the second value is always the country! + if (CFArrayGetCount(subs) > 1) + { + strlcat(locale, "_", bufferLen - strlen(locale)); + + CFStringRef country = (CFStringRef)CFArrayGetValueAtIndex(subs, 1); + CFStringGetCString(country, locale + strlen(locale), bufferLen - strlen(locale), kCFStringEncodingASCII); + } + // Append 'UTF-8' to the locale because the Mac OS X file + // system interface is UTF-8 based and sal tries to determine + // the file system locale from the locale information + strlcat(locale, ".UTF-8", bufferLen - strlen(locale)); + + return noErr; +} +} + + + +/* + * macxp_OSXConvertCFEncodingToIANACharSetName + * + * Convert a CoreFoundation text encoding to an IANA charset name. + */ +extern "C" int macxp_OSXConvertCFEncodingToIANACharSetName( char *buffer, unsigned int bufferLen, CFStringEncoding cfEncoding ) +{ + CFStringRef sCFEncodingName; + + sCFEncodingName = CFStringConvertEncodingToIANACharSetName( cfEncoding ); + CFStringGetCString( sCFEncodingName, buffer, bufferLen, cfEncoding ); + + return( noErr ); +} + diff -x CVS -urN ooo_SRC680_m202_src.orig/sal/prj/build.lst ooo_SRC680_m202_src.aquavcl01/sal/prj/build.lst --- ooo_SRC680_m202_src.orig/sal/prj/build.lst 2007-01-03 12:32:58.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/sal/prj/build.lst 2007-01-25 14:28:58.000000000 +0100 @@ -3,7 +3,6 @@ sa sal\inc nmake - all sa_inc NULL sa sal\typesconfig nmake - u sa_tc sa_inc NULL sa sal\cpprt nmake - u sa_cpprt sa_util sa_inc NULL -sa sal\systools\macxp_extras\x11osx nmake - u sa_mxpext_x11osx sa_tc.u sa_inc NULL sa sal\rtl\source nmake - all sa_rtl sa_tc.u sa_inc NULL sa sal\textenc nmake - all sa_textenc sa_tc.u sa_inc NULL sa sal\systools\win32\uwinapi nmake - n sa_uwinapi sa_inc NULL diff -x CVS -urN ooo_SRC680_m202_src.orig/sal/systools/macxp_extras/x11osx/makefile.mk ooo_SRC680_m202_src.aquavcl01/sal/systools/macxp_extras/x11osx/makefile.mk --- ooo_SRC680_m202_src.orig/sal/systools/macxp_extras/x11osx/makefile.mk 2006-04-06 13:54:20.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/sal/systools/macxp_extras/x11osx/makefile.mk 1970-01-01 01:00:00.000000000 +0100 @@ -1,73 +0,0 @@ -#************************************************************************* -# -# OpenOffice.org - a multi-platform office productivity suite -# -# $RCSfile$ -# -# $Revision$ -# -# last change: $Author$ $Date$ -# -# 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 -# -#************************************************************************* - -PRJ=..$/..$/.. -PRJINC=..$/..$/.. -PRJNAME=sal -TARGET=salsystools - -# --- Settings ---------------------------------- -.INCLUDE : settings.mk -.INCLUDE : $(PRJ)$/version.mk - -.IF "$(OS)"!="MACOSX" - -dummy: - @echo "Nothing to build for OS $(OS)" - -.ELSE # "$(OS)"!="MACOSX" - -# --- Files ------------------------------------- - -SLOFILES=\ - $(SLO)$/osxlocale.obj - -# --- Library ----------------------------------- - -SHL1TARGET=$(TARGET) -SHL1OBJS=$(SLOFILES) -NOSHAREDSTATICLIB=TRUE -NOCREATESTATICLIB=TRUE -SHL1STDLIBS=\ - -framework CoreServices - -SHL1DEPN= - -.ENDIF # "$(OS)"!="MACOSX" - -# --- Targets ---------------------------------- - -.INCLUDE : target.mk - diff -x CVS -urN ooo_SRC680_m202_src.orig/sal/systools/macxp_extras/x11osx/osxlocale.cxx ooo_SRC680_m202_src.aquavcl01/sal/systools/macxp_extras/x11osx/osxlocale.cxx --- ooo_SRC680_m202_src.orig/sal/systools/macxp_extras/x11osx/osxlocale.cxx 2006-09-17 11:06:24.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/sal/systools/macxp_extras/x11osx/osxlocale.cxx 1970-01-01 01:00:00.000000000 +0100 @@ -1,132 +0,0 @@ -/************************************************************************* - * - * OpenOffice.org - a multi-platform office productivity suite - * - * $RCSfile$ - * - * $Revision$ - * - * last change: $Author$ $Date$ - * - * 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 - * - ************************************************************************/ - -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_sal.hxx" - -#include -#include - -#include -#include -#include -#include - -namespace /* private */ -{ - template - class CFGuard - { - public: - explicit CFGuard(T& rT) : rT_(rT) {} - ~CFGuard() { if (rT_) CFRelease(rT_); } - private: - T& rT_; - }; - - typedef CFGuard CFArrayGuard; - typedef CFGuard CFStringGuard; - typedef CFGuard CFPropertyListGuard; - - /** Get the current process locale from system - */ - CFStringRef getProcessLocale() - { - CFPropertyListRef pref = CFPreferencesCopyAppValue(CFSTR("AppleLocale"), kCFPreferencesCurrentApplication); - CFPropertyListGuard proplGuard(pref); - - if (pref == NULL) // return fallback value 'en_US' - return CFStringCreateWithCString(kCFAllocatorDefault, "en_US", kCFStringEncodingASCII); - - CFStringRef sref = (CFGetTypeID(pref) == CFArrayGetTypeID()) ? (CFStringRef)CFArrayGetValueAtIndex((CFArrayRef)pref, 0) : (CFStringRef)pref; - - // NOTE: this API is only available with Mac OS X >=10.3. We need to use it because - // Apple used non-ISO values on systems <10.2 like "German" for instance but didn't - // upgrade those values during upgrade to newer Mac OS X versions. See also #i54337# - return CFLocaleCreateCanonicalLocaleIdentifierFromString(kCFAllocatorDefault, sref); - } -} // namespace private - -/** Grab current locale from system. -*/ -extern "C" int macosx_getLocale(char *locale, sal_uInt32 bufferLen) -{ - CFStringRef sref = getProcessLocale(); - CFStringGuard sGuard(sref); - - assert(sref != NULL && "osxlocale.cxx: getProcessLocale must return a non-NULL value"); - - // split the string into substrings; the first two (if there are two) substrings - // are language and country - CFArrayRef subs = CFStringCreateArrayBySeparatingStrings(NULL, sref, CFSTR("_")); - CFArrayGuard arrGuard(subs); - - CFStringRef lang = (CFStringRef)CFArrayGetValueAtIndex(subs, 0); - CFStringGetCString(lang, locale, bufferLen, kCFStringEncodingASCII); - - // country also available? Assumption: if the array contains more than one - // value the second value is always the country! - if (CFArrayGetCount(subs) > 1) - { - strlcat(locale, "_", bufferLen - strlen(locale)); - - CFStringRef country = (CFStringRef)CFArrayGetValueAtIndex(subs, 1); - CFStringGetCString(country, locale + strlen(locale), bufferLen - strlen(locale), kCFStringEncodingASCII); - } - // Append 'UTF-8' to the locale because the Mac OS X file - // system interface is UTF-8 based and sal tries to determine - // the file system locale from the locale information - strlcat(locale, ".UTF-8", bufferLen - strlen(locale)); - - return noErr; -} - - - -/* - * macxp_OSXConvertCFEncodingToIANACharSetName - * - * Convert a CoreFoundation text encoding to an IANA charset name. - */ -extern "C" int macxp_OSXConvertCFEncodingToIANACharSetName( char *buffer, unsigned int bufferLen, CFStringEncoding cfEncoding ) -{ - CFStringRef sCFEncodingName; - - sCFEncodingName = CFStringConvertEncodingToIANACharSetName( cfEncoding ); - CFStringGetCString( sCFEncodingName, buffer, bufferLen, cfEncoding ); - - return( noErr ); -} - diff -x CVS -urN ooo_SRC680_m202_src.orig/scp2/source/ooo/file_library_ooo.scp ooo_SRC680_m202_src.aquavcl01/scp2/source/ooo/file_library_ooo.scp --- ooo_SRC680_m202_src.orig/scp2/source/ooo/file_library_ooo.scp 2007-01-02 16:55:30.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/scp2/source/ooo/file_library_ooo.scp 2007-01-25 14:37:42.000000000 +0100 @@ -1582,7 +1582,7 @@ #endif End -#ifdef UNX +#if defined(UNX) && !defined(QUARTZ) File gid_File_Lib_Psp Name = LIBNAME(psp); TXT_FILE_BODY; @@ -1718,17 +1718,6 @@ Styles = (PACKED, PATCH); End -#ifdef MACOSX - -File gid_File_Lib_Salextra - TXT_FILE_BODY; - Name = STRING(CONCAT2(libsalsystools,UNXSUFFIX)); - Dir = gid_Dir_Program; - Styles = (PACKED,PATCH); -End - -#endif - File gid_File_Lib_Salhelper TXT_FILE_BODY; Styles = (PACKED,PATCH); @@ -1915,7 +1904,7 @@ STD_LIB_FILE_PATCH( gid_File_Lib_So, so ) STD_UNO_LIB_FILE_PATCH( gid_File_Lib_Sot, sot ) -#ifdef UNX +#if defined(UNX) && !defined(QUARTZ) File gid_File_Lib_Spa Name = LIBNAME(spa); @@ -2047,7 +2036,11 @@ RegistryID = gid_Starregistry_Services_Rdb; Dir = gid_Dir_Program; #ifdef UNX - Name = STRING(CONCAT4(libdtransX11,SUPD,DLLPOSTFIX,UNXSUFFIX)); + #ifdef QUARTZ + Name = STRING(CONCAT4(libdtransaqua,SUPD,DLLPOSTFIX,UNXSUFFIX)); + #else + Name = STRING(CONCAT4(libdtransX11,SUPD,DLLPOSTFIX,UNXSUFFIX)); + #endif #else Name = "sysdtrans.dll"; #endif diff -x CVS -urN ooo_SRC680_m202_src.orig/scp2/source/ooo/file_ooo.scp ooo_SRC680_m202_src.aquavcl01/scp2/source/ooo/file_ooo.scp --- ooo_SRC680_m202_src.orig/scp2/source/ooo/file_ooo.scp 2007-01-23 13:30:11.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/scp2/source/ooo/file_ooo.scp 2007-02-02 12:26:29.000000000 +0100 @@ -297,7 +297,7 @@ #endif -#if !defined(WITHOUT_MOZILLA) && defined(UNX) +#if !defined(WITHOUT_MOZILLA) && defined(UNX) && !defined(QUARTZ) File gid_File_Bin_Pluginapp BIN_FILE_BODY; @@ -419,7 +419,7 @@ #endif End -#ifdef UNX +#if defined(UNX) && !defined(QUARTZ) File gid_File_Bin_Spadmin_Bin BIN_FILE_BODY; diff -x CVS -urN ooo_SRC680_m202_src.orig/scp2/source/ooo/file_resource_ooo.scp ooo_SRC680_m202_src.aquavcl01/scp2/source/ooo/file_resource_ooo.scp --- ooo_SRC680_m202_src.orig/scp2/source/ooo/file_resource_ooo.scp 2007-01-23 09:09:31.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/scp2/source/ooo/file_resource_ooo.scp 2007-02-02 12:26:34.000000000 +0100 @@ -116,7 +116,7 @@ STD_RES_FILE_PATCH( gid_File_Res_Sfx, sfx ) -#ifdef UNX +#if defined(UNX) && !defined(QUARTZ) STD_RES_FILE_PATCH( gid_File_Res_Spa, spa ) diff -x CVS -urN ooo_SRC680_m202_src.orig/scp2/source/ooo/shortcut_ooo.scp ooo_SRC680_m202_src.aquavcl01/scp2/source/ooo/shortcut_ooo.scp --- ooo_SRC680_m202_src.orig/scp2/source/ooo/shortcut_ooo.scp 2006-12-21 15:00:12.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/scp2/source/ooo/shortcut_ooo.scp 2007-01-25 14:39:47.000000000 +0100 @@ -343,7 +343,7 @@ #endif -#ifdef UNX +#if defined(UNX) && !defined(QUARTZ) Shortcut gid_Shortcut_Spadmin_Program FileID = gid_File_Bin_Soffice; diff -x CVS -urN ooo_SRC680_m202_src.orig/sj2/source/jscpp/sjapplet_impl.cxx ooo_SRC680_m202_src.aquavcl01/sj2/source/jscpp/sjapplet_impl.cxx --- ooo_SRC680_m202_src.orig/sj2/source/jscpp/sjapplet_impl.cxx 2006-06-19 12:38:55.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/sj2/source/jscpp/sjapplet_impl.cxx 2006-12-31 14:48:09.000000000 +0100 @@ -55,7 +55,7 @@ #include #include -#ifdef UNX +#if defined(UNX) && !defined(QUARTZ) #define Time xlib_time #define Window xlib_window #define Font xlib_font @@ -114,7 +114,7 @@ #endif #ifdef SOLAR_JAVA -#ifdef UNX +#if defined (UNX) && !defined(QUARTZ) struct EmbeddedWindow { jobject _joWindow; @@ -187,7 +187,7 @@ #endif } -#else +#else // UNX && !QUARTZ struct EmbeddedWindow { jobject _joWindow; @@ -209,6 +209,22 @@ _joWindow = pEnv->NewGlobalRef(joFrame); } +#elif defined QUARTZ +EmbeddedWindow::EmbeddedWindow(JNIEnv * pEnv, SystemEnvData const * pEnvData) throw(com::sun::star::uno::RuntimeException) +{ + /* The WNT code (above) that this code derives from, may be using quite old + ways of interacting with native windows. More modern approaches seems to + point towards JAWT_* and com.apple.eawt */ + +jclass jcFrame = pEnv->FindClass("apple/awt/CEmbeddedFrame"); testJavaException(pEnv); +jmethodID jmFrame_rinit = pEnv->GetMethodID(jcFrame, "", "(I)V"); testJavaException(pEnv); + +jobject joFrame = pEnv->AllocObject(jcFrame); testJavaException(pEnv); +pEnv->CallVoidMethod(joFrame, jmFrame_rinit, (jint)pEnvData->rWindow); testJavaException(pEnv); + +_joWindow = pEnv->NewGlobalRef(joFrame); +} + #else EmbeddedWindow::EmbeddedWindow(JNIEnv * pEnv, SystemEnvData const * pEnvData) throw(com::sun::star::uno::RuntimeException) @@ -223,7 +239,7 @@ #endif -#endif +#endif // UNX && !QUARTZ void EmbeddedWindow::dispose(JNIEnv * pEnv) { diff -x CVS -urN ooo_SRC680_m202_src.orig/solenv/bin/deliver.pl ooo_SRC680_m202_src.aquavcl01/solenv/bin/deliver.pl --- ooo_SRC680_m202_src.orig/solenv/bin/deliver.pl 2007-01-31 09:41:55.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/solenv/bin/deliver.pl 2007-02-02 12:14:00.000000000 +0100 @@ -268,7 +268,8 @@ foreach $lib (@globbed_files) { $lib = basename($lib); if ( $lib =~ /^(lib[\w-]+(\.so|\.dylib))\.(\d+)\.(\d+)(\.(\d+))?$/ - || $lib =~ /^(lib[\w-]+(\.so|\.dylib))\.(\d+)$/ ) + || $lib =~ /^(lib[\w-]+(\.so|\.dylib))\.(\d+)$/ + || $lib =~ /^(lib[\w-]+(\.so|\.dylib))\.(\d+)\.jnilib$/ ) { push(@{$globbed_hash{$1}}, $lib); } diff -x CVS -urN ooo_SRC680_m202_src.orig/solenv/inc/postmac.h ooo_SRC680_m202_src.aquavcl01/solenv/inc/postmac.h --- ooo_SRC680_m202_src.orig/solenv/inc/postmac.h 2005-09-08 11:36:31.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/solenv/inc/postmac.h 2007-01-07 15:42:31.000000000 +0100 @@ -50,10 +50,11 @@ #undef LSize #undef ModalDialog #undef SetCursor -#undef ShowWindow +//#undef ShowWindow #undef StringPtr #undef DirInfo #undef BOOL #undef ULONG #undef Line #undef TimeValue +#undef Pattern diff -x CVS -urN ooo_SRC680_m202_src.orig/solenv/inc/premac.h ooo_SRC680_m202_src.aquavcl01/solenv/inc/premac.h --- ooo_SRC680_m202_src.orig/solenv/inc/premac.h 2005-09-08 11:37:32.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/solenv/inc/premac.h 2007-01-07 15:42:31.000000000 +0100 @@ -50,10 +50,11 @@ #define LSize MacOSLSize #define ModalDialog MacOSModalDialog #define SetCursor MacOSSetCursor -#define ShowWindow MacOSShowWindow +//#define ShowWindow MacOSShowWindow #define StringPtr MacOSStringPtr #define DirInfo MacOSDirInfo #define BOOL MacOSBOOL #define ULONG MacOSULONG #define Line MacOSLine #define TimeValue MacOSTimeValue +#define Pattern MacOSPattern diff -x CVS -urN ooo_SRC680_m202_src.orig/solenv/inc/rules.mk ooo_SRC680_m202_src.aquavcl01/solenv/inc/rules.mk --- ooo_SRC680_m202_src.orig/solenv/inc/rules.mk 2007-01-26 11:58:35.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/solenv/inc/rules.mk 2007-02-02 12:17:48.000000000 +0100 @@ -333,6 +333,72 @@ not_existing$/s_%.dpcc : %.c;@noop $(assign all_local_slo+:=$<) not_existing$/o_%.dpcc : %.c;@noop $(assign all_local_obj+:=$<) +# Objective-C++ files +$(OBJ)$/%.obj : %.mm + @echo ------------------------------ + @echo Making: $@ +.IF "$(OS)"=="MACOSX" +.IF "$(TEST)"!="" + $(objc) $(CFLAGS) $(CFLAGSCC) $(OBJCXXFLAGS) $(CFLAGSOBJ) $(CDEFS) $(CDEFSOBJ) -E $(CFLAGSAPPEND) $(CFLAGSOUTOBJ) $(OBJ)$/$*.o $*.mm +.ELSE + @$(RM) $@ $(@:s/.obj/.o/) + $(objc) $(CFLAGS) $(CFLAGSCC) $(OBJCXXFLAGS) $(CFLAGSOBJ) $(CDEFS) $(CDEFSOBJ) $(CFLAGSAPPEND) $(CFLAGSOUTOBJ) $(OBJ)$/$*.o $*.mm + +if ( -e $(@:s/.obj/.o/)) $(TOUCH) $@ +.ENDIF +.ELSE "$(OS)"=="MACOSX" + @echo "No recipe for compiling Objective-C++ files is available for this platform" +.ENDIF "$(OS)"=="MACOSX" + +# Objective-C++ files +$(OBJ)$/%.obj : $(MISC)$/%.mm + @echo ------------------------------ + @echo Making: $@ +.IF "$(OS)"=="MACOSX" + @$(RM) $@ $(@:s/.obj/.o/) + $(objc) $(CFLAGS) $(CFLAGSCC) $(OBJCXXFLAGS) $(CFLAGSOBJ) $(CDEFS) $(CDEFSOBJ) $(CFLAGSAPPEND) $(CFLAGSOUTOBJ) $(OBJ)$/$*.o $(MISC)$/$*.mm + +if ( -e $(@:s/.obj/.o/)) $(TOUCH) $@ +.ELSE "$(OS)"=="MACOSX" + @echo "No recipe for compiling Objective-C++ files is available for this platform" +.ENDIF "$(OS)"=="MACOSX" + +# Objective-C++ files +$(SLO)$/%.obj : $(MISC)$/%.mm + @echo ------------------------------ + @echo Making: $@ +.IF "$(OS)"=="MACOSX" + @$(RM) $@ $(@:s/.obj/.o/) + $(objc) $(CFLAGS) $(CFLAGSCC) $(OBJCXXFLAGS) $(CFLAGSSLO) $(CDEFS) $(CDEFSSLO) $(CFLAGSAPPEND) $(CFLAGSOUTOBJ) $(SLO)$/$*.o $(MISC)$/$*.mm + +if ( -e $(@:s/.obj/.o/)) $(TOUCH) $@ +.ELSE "$(OS)"=="MACOSX" + @echo "No recipe for compiling Objective-C++ files is available for this platform" +.ENDIF "$(OS)"=="MACOSX" + +# Objective-C++ files +$(SLO)$/%.obj : %.mm + @echo ------------------------------ + @echo Making: $@ +.IF "$(OS)"=="MACOSX" + @$(RM) $@ $(@:s/.obj/.o/) + $(objc) $(CFLAGS) $(CFLAGSCC) $(OBJCXXFLAGS) $(CFLAGSSLO) $(CDEFS) $(CDEFSSLO) $(CDEFSMT) $(CFLAGSAPPEND) $(CFLAGSOUTOBJ) $(SLO)$/$*.o $*.mm + +if ( -e $(@:s/.obj/.o/)) $(TOUCH) $@ +.ELSE "$(OS)"=="MACOSX" + @echo "No recipe for compiling Objective-C++ files is available for this platform" +.ENDIF "$(OS)"=="MACOSX" + +# dependencies c / c++ +.IF "$(verbose)"=="" +noout=>& $(NULLDEV) +.ENDIF + +$(MISC)$/s_%.dpcc : %.c + @+-$(RM) $@ >& $(NULLDEV) + @$(MAKEDEPEND) -f - -p$(SLO) $(MKDEPFLAGS) $(CDEFS) $(CDEFSSLO) $(CDEFSMT) $< > $@ +.IF "$(LAZY_DEPS)"=="" + @echo $@ : $(SLO)$/$(<:b).obj >> $@ +.ELSE # "$(LAZY_DEPS)"=="" + @echo LAZY_DEPS=were_used_to_generate >> $@ +.ENDIF # "$(LAZY_DEPS)"=="" + $(MISC)$/%.dpslo : $(MAKEDEPEND) @$(mktmp -f - -p$(SLO) $(MKDEPFLAGS) $(CDEFS) $(CDEFSSLO) $(CDEFSMT) $(all_local_slo) $(all_misc_slo)) > $@ $(TYPE) $(mktmp $(foreach,i,$(all_local_slo:b:+".obj") $@ : $(SLO)$/$(i:+"\n")) $(foreach,i,$(all_misc_slo:b:+".obj") $@ : $(SLO)$/$(i:+"\n"))) >> $@ @@ -400,6 +466,60 @@ @echo LAZY_DEPS=were_used_to_generate >> $@ .ENDIF # "$(LAZY_DEPS)"=="" +# dependencies objective-c++ + +$(MISC)$/s_%.dpcc : %.mm + @echo ------------------------------ $(noout) + @echo Making: $@ $(noout) + @+-$(RM) $@ >& $(NULLDEV) + @$(MAKEDEPEND) -f - -p$(SLO)$/ $(MKDEPFLAGS) $(CDEFS) $(CDEFSSLO) $(CDEFSMT) $< > $@ +.IF "$(LAZY_DEPS)"=="" + @+echo $@ : $(SLO)$/$(<:b).obj >> $@ +.ELSE # "$(LAZY_DEPS)"=="" + @+echo LAZY_DEPS=were_used_to_generate >> $@ +.ENDIF # "$(LAZY_DEPS)"=="" + +$(MISC)$/o_%.dpcc : %.mm + @echo ------------------------------ $(noout) + @echo Making: $@ $(noout) + @+-$(RM) $@ >& $(NULLDEV) + @$(MAKEDEPEND) -f - -p$(OBJ)$/ $(MKDEPFLAGS) $(CDEFS) $(CDEFSOBJ) $(CDEFSMT) $< > $@ +.IF "$(LAZY_DEPS)"=="" + @+echo $@ : $(OBJ)$/$(<:b).obj >> $@ +.ELSE # "$(LAZY_DEPS)"=="" + @+echo LAZY_DEPS=were_used_to_generate >> $@ +.ENDIF # "$(LAZY_DEPS)"=="" + +$(MISC)$/s_%.dpcc : $(MISC)$/%.mm + @echo ------------------------------ $(noout) + @echo Making: $@ $(noout) + @+-$(RM) $@ >& $(NULLDEV) +.IF "$(GUI)"=="UNX" + @$(MAKEDEPEND) -f - -p$(SLO)$/ $(MKDEPFLAGS) $(CDEFS) $(CDEFSSLO) $(CDEFSMT) $< | sed s\#$(MISC)$/\#\# > $@ +.ELSE # "$(GUI)"=="UNX" + @$(MAKEDEPEND) -f - -p$(SLO)$/ $(MKDEPFLAGS) $(CDEFS) $(CDEFSSLO) $(CDEFSMT) $< | $(SED) s/$(MISC:s/\/\\/)\\// > $@ +.ENDIF # "$(GUI)"=="UNX" +.IF "$(LAZY_DEPS)"=="" + @+echo $@ : $(SLO)$/$(<:b).obj >> $@ +.ELSE # "$(LAZY_DEPS)"=="" + @+echo LAZY_DEPS=were_used_to_generate >> $@ +.ENDIF # "$(LAZY_DEPS)"=="" + +$(MISC)$/o_%.dpcc : $(MISC)$/%.mm + @echo ------------------------------ $(noout) + @echo Making: $@ $(noout) + @+-$(RM) $@ >& $(NULLDEV) +.IF "$(GUI)"=="UNX" + @$(MAKEDEPEND) -f - -p$(OBJ)$/ $(MKDEPFLAGS) $(CDEFS) $(CDEFSOBJ) $(CDEFSMT) $< | sed s\#$(MISC)$/\#\# > $@ +.ELSE # "$(GUI)"=="UNX" + @$(MAKEDEPEND) -f - -p$(OBJ)$/ $(MKDEPFLAGS) $(CDEFS) $(CDEFSOBJ) $(CDEFSMT) $< | $(SED) s/$(MISC:s/\/\\/)\\// > $@ +.ENDIF # "$(GUI)"=="UNX" +.IF "$(LAZY_DEPS)"=="" + @echo $@ : $(OBJ)$/$(<:b).obj >> $@ +.ELSE # "$(LAZY_DEPS)"=="" + @echo LAZY_DEPS=were_used_to_generate >> $@ +.ENDIF # "$(LAZY_DEPS)"=="" + # dependency dummy for *.s files $(MISC)$/s_%.dpcc : %.s diff -x CVS -urN ooo_SRC680_m202_src.orig/solenv/inc/unxmacx.mk ooo_SRC680_m202_src.aquavcl01/solenv/inc/unxmacx.mk --- ooo_SRC680_m202_src.orig/solenv/inc/unxmacx.mk 2007-01-31 14:03:53.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/solenv/inc/unxmacx.mk 2007-02-02 12:20:28.000000000 +0100 @@ -97,7 +97,9 @@ CFLAGSCC=-pipe -fsigned-char -malign-natural $(ARCH_FLAGS) # Normal Objective C compilation flags -OBJCFLAGS=-no-precomp +#OBJCFLAGS=-no-precomp +OBJCFLAGS=-fobjc-exceptions +OBJCXXFLAGS=-x objective-c++ -fobjc-exceptions # Comp Flags for files that need exceptions enabled (C and C++) CFLAGSEXCEPTIONS=-fexceptions -fno-enforce-eh-specs @@ -227,10 +229,16 @@ STDSLOCUI= STDLIBGUIST=-lm -STDLIBCUIST=-lX11 -lpthread CPPRUNTIME -lm +.IF "$(GUIBASE)" == "aqua" + STDLIBCUIST=-lpthread CPPRUNTIME -lm + STDLIBCUIMT=CPPRUNTIME -lm + STDSHLGUIMT=-lpthread CPPRUNTIME -lm -framework CoreFoundation -framework Carbon +.ELSE + STDLIBCUIST=-lX11 -lpthread CPPRUNTIME -lm + STDLIBCUIMT=-lX11 CPPRUNTIME -lm + STDSHLGUIMT=-lX11 -lXext -lpthread CPPRUNTIME -lm -framework CoreFoundation +.ENDIF STDLIBGUIMT=-lpthread CPPRUNTIME -lm -STDLIBCUIMT=-lX11 CPPRUNTIME -lm -STDSHLGUIMT=-lX11 -lXext -lpthread CPPRUNTIME -lm -framework CoreFoundation STDSHLCUIMT=-lpthread CPPRUNTIME -lm LIBMGR=ar diff -x CVS -urN ooo_SRC680_m202_src.orig/toolkit/source/awt/vclxsystemdependentwindow.cxx ooo_SRC680_m202_src.aquavcl01/toolkit/source/awt/vclxsystemdependentwindow.cxx --- ooo_SRC680_m202_src.orig/toolkit/source/awt/vclxsystemdependentwindow.cxx 2006-09-16 14:15:11.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/toolkit/source/awt/vclxsystemdependentwindow.cxx 2006-12-30 20:36:28.000000000 +0100 @@ -41,7 +41,7 @@ #include #endif -#if defined UNX && ! defined _COM_SUN_STAR_AWT_SYSTEMDEPENDENTXWINDOW_HPP_ +#if defined UNX && ! defined QUARTZ && ! defined _COM_SUN_STAR_AWT_SYSTEMDEPENDENTXWINDOW_HPP_ #include #endif @@ -95,15 +95,7 @@ const SystemEnvData* pSysData = ((SystemChildWindow *)pWindow)->GetSystemData(); if( pSysData ) { -#ifdef UNX - if( SystemType == ::com::sun::star::lang::SystemDependent::SYSTEM_XWINDOW ) - { - ::com::sun::star::awt::SystemDependentXWindow aSD; - aSD.DisplayPointer = sal::static_int_cast< sal_Int64 >(reinterpret_cast< sal_IntPtr >(pSysData->pDisplay)); - aSD.WindowHandle = pSysData->aWindow; - aRet <<= aSD; - } -#elif (defined WNT) +#if (defined WNT) if( SystemType == ::com::sun::star::lang::SystemDependent::SYSTEM_WIN32 ) { aRet <<= (sal_Int32)pSysData->hWnd; @@ -113,6 +105,19 @@ { aRet <<= (sal_Int32)pSysData->hWnd; } +#elif (defined QUARTZ) + if( SystemType == ::com::sun::star::lang::SystemDependent::SYSTEM_MAC ) + { + aRet <<= (sal_IntPtr)pSysData->rWindow; + } +#elif (defined UNX) + if( SystemType == ::com::sun::star::lang::SystemDependent::SYSTEM_XWINDOW ) + { + ::com::sun::star::awt::SystemDependentXWindow aSD; + aSD.DisplayPointer = sal::static_int_cast< sal_Int64 >(reinterpret_cast< sal_IntPtr >(pSysData->pDisplay)); + aSD.WindowHandle = pSysData->aWindow; + aRet <<= aSD; + } #endif } } diff -x CVS -urN ooo_SRC680_m202_src.orig/toolkit/source/awt/vclxtoolkit.cxx ooo_SRC680_m202_src.aquavcl01/toolkit/source/awt/vclxtoolkit.cxx --- ooo_SRC680_m202_src.orig/toolkit/source/awt/vclxtoolkit.cxx 2006-12-20 14:52:30.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/toolkit/source/awt/vclxtoolkit.cxx 2007-01-25 14:04:10.000000000 +0100 @@ -254,12 +254,14 @@ #define VCLWINDOW_FRAMEWINDOW 0x1000 #define VCLWINDOW_SYSTEMCHILDWINDOW 0x1001 -#ifdef UNX -#define SYSTEM_DEPENDENT_TYPE ::com::sun::star::lang::SystemDependent::SYSTEM_XWINDOW -#elif (defined WNT) +#if (defined WNT) #define SYSTEM_DEPENDENT_TYPE ::com::sun::star::lang::SystemDependent::SYSTEM_WIN32 #elif (defined OS2) #define SYSTEM_DEPENDENT_TYPE ::com::sun::star::lang::SystemDependent::SYSTEM_OS2 +#elif (defined QUARTZ) +#define SYSTEM_DEPENDENT_TYPE ::com::sun::star::lang::SystemDependent::SYSTEM_MAC +#elif (defined UNX) +#define SYSTEM_DEPENDENT_TYPE ::com::sun::star::lang::SystemDependent::SYSTEM_XWINDOW #endif WinBits ImplGetWinBits( sal_uInt32 nComponentAttribs, sal_uInt16 nCompType ) @@ -982,27 +984,39 @@ ::com::sun::star::uno::Any anyHandle = xSystemDepParent->getWindowHandle(processIdSeq, SYSTEM_DEPENDENT_TYPE); -#if defined UNX - sal_Int32 x11_id = 0; +#if defined WNT - if (anyHandle >>= x11_id) + sal_Int32 hWnd; + + if (anyHandle >>= hWnd) { - printf("x11_id = %ld\n", x11_id); + printf("hWnd = %ld\n", hWnd); SystemParentData aParentData; aParentData.nSize = sizeof( aParentData ); - aParentData.aWindow = x11_id; + aParentData.hWnd = (HWND)hWnd; pNewWindow = new WorkWindow( &aParentData ); } -#elif defined WNT +#elif defined QUARTZ - sal_Int32 hWnd; + sal_IntPtr rWindow = 0; - if (anyHandle >>= hWnd) + if (anyHandle >>= rWindow) { - printf("hWnd = %ld\n", hWnd); + printf("rWindow = %ld\n", rWindow); SystemParentData aParentData; aParentData.nSize = sizeof( aParentData ); - aParentData.hWnd = (HWND)hWnd; + aParentData.rWindow = (WindowRef)rWindow; + pNewWindow = new WorkWindow( &aParentData ); + } +#elif defined UNX + sal_Int32 x11_id = 0; + + if (anyHandle >>= x11_id) + { + printf("x11_id = %ld\n", x11_id); + SystemParentData aParentData; + aParentData.nSize = sizeof( aParentData ); + aParentData.aWindow = x11_id; pNewWindow = new WorkWindow( &aParentData ); } #endif @@ -1175,14 +1189,14 @@ Window* pChildWindow = NULL; if ( nSystemType == SYSTEM_DEPENDENT_TYPE ) { -#if defined UNX - sal_Int32 x11_id = 0; - if ( Parent >>= x11_id ) +#if defined WNT + sal_Int32 hWnd; + if ( Parent >>= hWnd) { - printf("x11_id = %ld\n", x11_id); + printf("hWnd = %ld\n", hWnd); SystemParentData aParentData; aParentData.nSize = sizeof( aParentData ); - aParentData.aWindow = x11_id; + aParentData.hWnd = (HWND)hWnd; osl::Guard< vos::IMutex > aGuard( Application::GetSolarMutex() ); try { @@ -1198,14 +1212,37 @@ pChildWindow = NULL; } } -#elif defined WNT - sal_Int32 hWnd; - if ( Parent >>= hWnd) +#elif defined QUARTZ + sal_IntPtr rWindow = 0; + if ( Parent >>= rWindow) { - printf("hWnd = %ld\n", hWnd); + printf("rWindow = %ld\n", rWindow); SystemParentData aParentData; aParentData.nSize = sizeof( aParentData ); - aParentData.hWnd = (HWND)hWnd; + aParentData.rWindow = (WindowRef)rWindow; + osl::Guard< vos::IMutex > aGuard( Application::GetSolarMutex() ); + try + { + pChildWindow = new WorkWindow( &aParentData ); + } + catch ( ::com::sun::star::uno::RuntimeException & rEx ) + { + // system child window could not be created + OSL_TRACE( + "VCLXToolkit::createSystemChild: caught %s\n", + ::rtl::OUStringToOString( + rEx.Message, RTL_TEXTENCODING_UTF8).getStr()); + pChildWindow = NULL; + } + } +#elif defined UNX + sal_Int32 x11_id = 0; + if ( Parent >>= x11_id ) + { + printf("x11_id = %ld\n", x11_id); + SystemParentData aParentData; + aParentData.nSize = sizeof( aParentData ); + aParentData.aWindow = x11_id; osl::Guard< vos::IMutex > aGuard( Application::GetSolarMutex() ); try { diff -x CVS -urN ooo_SRC680_m202_src.orig/toolkit/source/awt/vclxtopwindow.cxx ooo_SRC680_m202_src.aquavcl01/toolkit/source/awt/vclxtopwindow.cxx --- ooo_SRC680_m202_src.orig/toolkit/source/awt/vclxtopwindow.cxx 2006-09-16 14:15:39.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/toolkit/source/awt/vclxtopwindow.cxx 2006-12-30 20:38:02.000000000 +0100 @@ -179,15 +179,7 @@ const SystemEnvData* pSysData = ((SystemWindow *)pWindow)->GetSystemData(); if( pSysData ) { -#ifdef UNX - if( SystemType == ::com::sun::star::lang::SystemDependent::SYSTEM_XWINDOW ) - { - ::com::sun::star::awt::SystemDependentXWindow aSD; - aSD.DisplayPointer = sal::static_int_cast< sal_Int64 >(reinterpret_cast< sal_IntPtr >(pSysData->pDisplay)); - aSD.WindowHandle = pSysData->aWindow; - aRet <<= aSD; - } -#elif (defined WNT) +#if (defined WNT) if( SystemType == ::com::sun::star::lang::SystemDependent::SYSTEM_WIN32 ) { aRet <<= (sal_Int32)pSysData->hWnd; @@ -197,6 +189,19 @@ { aRet <<= (sal_Int32)pSysData->hWnd; } +#elif (defined QUARTZ) + if( SystemType == ::com::sun::star::lang::SystemDependent::SYSTEM_MAC ) + { + aRet <<= (sal_IntPtr)pSysData->rWindow; + } +#elif (defined UNX) + if( SystemType == ::com::sun::star::lang::SystemDependent::SYSTEM_XWINDOW ) + { + ::com::sun::star::awt::SystemDependentXWindow aSD; + aSD.DisplayPointer = sal::static_int_cast< sal_Int64 >(reinterpret_cast< sal_IntPtr >(pSysData->pDisplay)); + aSD.WindowHandle = pSysData->aWindow; + aRet <<= aSD; + } #endif } } diff -x CVS -urN ooo_SRC680_m202_src.orig/toolkit/source/awt/vclxwindow1.cxx ooo_SRC680_m202_src.aquavcl01/toolkit/source/awt/vclxwindow1.cxx --- ooo_SRC680_m202_src.orig/toolkit/source/awt/vclxwindow1.cxx 2006-09-16 14:16:09.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/toolkit/source/awt/vclxwindow1.cxx 2006-12-30 20:38:32.000000000 +0100 @@ -72,6 +72,8 @@ aSysParentData.hWnd = (HWND) nHandle; #elif defined( OS2 ) aSysParentData.hWnd = (HWND) nHandle; +#elif defined( QUARTZ ) + aSysParentData.rWindow = (WindowRef) nHandle; #elif defined( UNX ) aSysParentData.aWindow = (long)nHandle; #endif diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/aquavclevents.hxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/aquavclevents.hxx --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/aquavclevents.hxx 1970-01-01 01:00:00.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/aquavclevents.hxx 2007-03-09 23:55:23.000000000 +0100 @@ -0,0 +1,62 @@ +#ifndef INCLUDED_AQUAVCLEVENTS_HXX +#define INCLUDED_AQUAVCLEVENTS_HXX + +#include +#include +#include + +/* Definition of custom OpenOffice.org events. + + Avoid conflict with Apple defined event class and type + definitions by using uppercase letters. Lowercase + letter definitions are reserved for Apple! + */ +enum { + cOOoSalUserEventClass = 'OOUE' +}; + +enum { + cOOoSalEventUser = 'UEVT', + cOOoSalEventTimer = 'EVTT', + cOOoSalEventData = 'EVTD', + cOOoSalEventParamTypePtr = 'EPPT' +}; + +/* Definition of all necessary EventTypeSpec's */ + +const EventTypeSpec cWindowBoundsChangedEvent = { kEventClassWindow, kEventWindowBoundsChanged }; +const EventTypeSpec cWindowCloseEvent = { kEventClassWindow, kEventWindowClose }; +const EventTypeSpec cOOoSalUserEvent = { cOOoSalUserEventClass, cOOoSalEventUser }; +const EventTypeSpec cOOoSalTimerEvent = { cOOoSalUserEventClass, cOOoSalEventTimer }; +const EventTypeSpec cWindowActivatedEvent = { kEventClassWindow, kEventWindowActivated }; +const EventTypeSpec cWindowPaintEvent = { kEventClassWindow, kEventWindowPaint }; +const EventTypeSpec cWindowDrawContentEvent = { kEventClassWindow, kEventWindowDrawContent }; + +const EventTypeSpec cWindowFocusEvent[] = { { kEventClassWindow, kEventWindowFocusAcquired }, + { kEventClassWindow, kEventWindowFocusRelinquish } }; + +const EventTypeSpec cMouseEvent[] = { { kEventClassMouse, kEventMouseDown }, + { kEventClassMouse, kEventMouseUp }, + { kEventClassMouse, kEventMouseMoved }, + { kEventClassMouse, kEventMouseDragged } }; +const EventTypeSpec cMouseWheelMovedEvent = { kEventClassMouse, kEventMouseWheelMoved }; +const EventTypeSpec cWindowResizeStarted = { kEventClassWindow, kEventWindowResizeStarted }; +const EventTypeSpec cWindowResizeCompleted = { kEventClassWindow, kEventWindowResizeCompleted }; + +/* Events for native menus */ +const EventTypeSpec cCommandProcessEvent = { kEventClassCommand, kEventCommandProcess }; +const EventTypeSpec cMenuPopulateEvent = { kEventClassMenu, kEventMenuPopulate }; +const EventTypeSpec cMenuClosedEvent = { kEventClassMenu, kEventMenuClosed }; +const EventTypeSpec cMenuTargetItemEvent = { kEventClassMenu, kEventMenuTargetItem }; + +/* Events for keyboard */ +const EventTypeSpec cKeyboardRawKeyEvents[] = { { kEventClassKeyboard, kEventRawKeyDown}, + { kEventClassKeyboard, kEventRawKeyUp}, + { kEventClassKeyboard, kEventRawKeyRepeat}, + { kEventClassKeyboard, kEventRawKeyModifiersChanged} }; + +const EventTypeSpec cTextInputEvents[] = { { kEventClassTextInput, kEventTextInputUpdateActiveInputArea}, + { kEventClassTextInput, kEventTextInputUnicodeForKeyEvent}, + { kEventClassTextInput, kEventTextInputOffsetToPos} }; + +#endif // INCLUDED_AQUAVCLEVENTS_HXX diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/aquavcltypes.h ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/aquavcltypes.h --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/aquavcltypes.h 1970-01-01 01:00:00.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/aquavcltypes.h 2006-08-23 07:15:19.000000000 +0200 @@ -0,0 +1,16 @@ +#ifndef _AQUAVCLTYPES_H +#define _AQUAVCLTYPES_H + +#include +#include +#include + +typedef WindowRef CarbonWindowRef; +typedef ControlRef CarbonViewRef; + +// Constants for menu property back pointers passing +#define APP_PROPERTY_CREATOR 'OOo2' +#define APP_PROPERTY_TAG_MENU_POINTER 'mptr' +#define APP_PROPERTY_TAG_MENU_ITEM_POINTER 'iptr' + +#endif _AQUAVCLTYPES_H diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/salbmp.h ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salbmp.h --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/salbmp.h 1970-01-01 01:00:00.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salbmp.h 2007-03-08 21:46:10.000000000 +0100 @@ -0,0 +1,151 @@ +/************************************************************************* +* +* OpenOffice.org - a multi-platform office productivity suite +* +* $RCSfile$ +* +* $Revision$ +* +* last change: $Author$ $Date$ +* +* 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 _SV_SALBMP_H +#define _SV_SALBMP_H + +#ifndef _GEN_HXX +#include +#endif + +#ifndef _SV_SV_H +#include +#endif + +#ifndef _SV_SALBTYPE_HXX +#include +#endif + +#ifndef _SV_SALDATA_HXX +#include +#endif + +#ifndef _SV_SALINST_HXX +#include +#endif + +#ifndef _SV_SALCONST_H +#include +#endif + +#ifndef _SV_SALVD_HXX +#include +#endif + +#ifndef _SV_SALCOLORUTILS_HXX +#include +#endif + +#ifndef _SV_SALPIXMAPUTILS_HXX +#include +#endif + +#ifndef _SV_SALBMP_HXX +#include +#endif + +#ifndef _SV_SALGDI_H +#include +#endif + +#ifndef INCLUDED_BASEBMP_BITMAPDEVICE_HXX +#include +#endif + +// -------------- +// - SalBitmap - +// -------------- + +struct BitmapBuffer; +class BitmapColor; +class BitmapPalette; +class AquaSalVirtualDevice; +class AquaSalGraphics; + +class AquaSalBitmap : public SalBitmap +{ +public: + CGContextRef mxGraphicContext; + BitmapPalette maPalette; + basebmp::RawMemorySharedArray maUserBuffer; + basebmp::RawMemorySharedArray maContextBuffer; + sal_uInt16 mnBits; + sal_uInt32 mnWidth; + sal_uInt32 mnHeight; + sal_uInt32 mnBytesPerRow; + +public: + AquaSalBitmap(); + ~AquaSalBitmap(); + +public: + + // SalBitmap methods + bool Create( const Size& rSize, USHORT nBitCount, const BitmapPalette& rPal ); + bool Create( const SalBitmap& rSalBmp ); + bool Create( const SalBitmap& rSalBmp, SalGraphics* pGraphics ); + bool Create( const SalBitmap& rSalBmp, USHORT nNewBitCount ); + + void Destroy(); + + Size GetSize() const; + USHORT GetBitCount() const; + + BitmapBuffer *AcquireBuffer( bool bReadOnly ); + void ReleaseBuffer( BitmapBuffer* pBuffer, bool bReadOnly ); + + bool GetSystemData( BitmapSystemData& rData ); + + // quartz helper + bool CreateContext(); + void DestroyContext(); + bool AllocateUserData(); + + void ConvertBitmapData( sal_uInt32 nWidth, sal_uInt32 nHeight, + sal_uInt16 nDestBits, sal_uInt32 nDestBytesPerRow, const BitmapPalette& rDestPalette, sal_uInt8* pDestData, + sal_uInt16 nSrcBits, sal_uInt32 nSrcBytesPerRow, const BitmapPalette& rSrcPalette, sal_uInt8* pSrcData ); + + bool Create( CGContextRef xContext, int nX, int nY, int nWidth, int nHeight ); + bool Create( sal_uInt32 nWidth, sal_uInt32 nHeight, sal_uInt16 nBits, sal_uInt32 nBytesPerRow, sal_uInt8* pBuffer, sal_uInt32 nX, sal_uInt32 nY, sal_uInt32 nDX, sal_uInt32 nDY ); + bool Create( CGImageRef& xImage ); + + CGImageRef CreateWithMask( const AquaSalBitmap& rMask, sal_uInt32 nX, sal_uInt32 nY, sal_uInt32 nDX, sal_uInt32 nDY ); + CGImageRef CreateColorMask( int nX, int nY, int nWidth, int nHeight, SalColor nMaskColor ) const; + CGImageRef CreateMask( int nX, int nY, int nWidth, int nHeight ) const; + CGImageRef CreateCroppedImage( int nX, int nY, int nWidth, int nHeight ); + static CGImageRef CreateCroppedImage( CGContextRef xContext, int nX, int nY, int nWidth, int nHeight ); +}; + +#endif // _SV_SALBMP_HXX diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/salcolorutils.hxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salcolorutils.hxx --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/salcolorutils.hxx 2005-09-09 12:32:59.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salcolorutils.hxx 2007-01-12 22:01:26.000000000 +0100 @@ -62,71 +62,9 @@ // ------------------------------------------------------------------ -SalColor RGBColor2SALColor ( const RGBColor *pRGBColor ); +SalColor GetSalColor( const float* pQuartzColor ); -SalColor RGB8BitColor2SALColor ( const RGBColor *pRGBColor ); - -SalColor RGB16BitColor2SALColor ( const RGBColor *pRGBColor ); - -SalColor RGB32BitColor2SALColor ( const RGBColor *pRGBColor ); - -// ------------------------------------------------------------------ - -RGBColor SALColor2RGBColor ( const SalColor nSalColor ); - -RGBColor SALColor2RGB32bitColor ( const SalColor nSalColor ); - -RGBColor SALColor2RGB18bitColor ( const SalColor nSalColor ); - -RGBColor SALColor2RGB8bitColor ( const SalColor nSalColor ); - -// ------------------------------------------------------------------ - -SalColor GetROPSalColor ( SalROPColor nROPColor ); - -// ------------------------------------------------------------------ - -RGBColor BitmapColor2RGBColor ( const BitmapColor &rBitmapColor ); - -void RGBColor2BitmapColor ( const RGBColor *rRGBColor, - BitmapColor &rBitmapColor - ); - -// ------------------------------------------------------------------ - -short GetMinColorCount ( const short nPixMapColorDepth, - const BitmapPalette &rBitmapPalette - ); - -// ------------------------------------------------------------------ - -void SetBlackForeColor ( ); - -void SetWhiteBackColor ( ); - -RGBColor GetBlackColor ( ); - -RGBColor GetWhiteColor ( ); - -// ------------------------------------------------------------------ - -CTabHandle CopyGDeviceCTab ( ); - -CTabHandle GetCTabFromStdCLUT ( const short nBitDepth ); - -CTabHandle CopyCTabIndexed ( CTabHandle hCTab ); - -CTabHandle CopyCTabRGBDirect ( CTabHandle hCTab ); - -// ------------------------------------------------------------------ - -CTabHandle CopyPixMapCTab ( PixMapHandle hPixMap ); - -// ------------------------------------------------------------------ - -void SetBitmapBufferColorFormat ( const PixMapHandle mhPixMap, - BitmapBuffer *rBuffer - ); +void SetSalColor( const SalColor& rColor, float* pQuartzColor ); // ------------------------------------------------------------------ diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/saldata.hxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/saldata.hxx --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/saldata.hxx 2005-09-09 12:33:28.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/saldata.hxx 2006-03-19 22:37:06.000000000 +0100 @@ -37,43 +37,30 @@ #define _SV_SALDATA_HXX #ifndef _SV_SV_H - #include +#include #endif -#ifdef __cplusplus - - #ifndef _SV_SVDATA_HXX - #include - #endif - -#endif // __cplusplus - -#ifndef _SV_SALWTYPE_HXX - #include +#ifndef _SV_SVDATA_HXX +#include #endif -#ifndef _SV_VCLWINDOW_H - #include +#ifndef _SV_SALWTYPE_HXX +#include #endif -#ifdef __cplusplus - - class SalInstance; - class SalObject; - class SalFrame; - class SalVirtualDevice; - class SalPrinter; - - class FontList; - -#else // __cplusplus - - #define SalInstance void - #define SalVirtualDevice void - #define SalPrinter void - #define FontList void +class SalInstance; +class SalObject; +class SalFrame; +class SalVirtualDevice; +class SalPrinter; + +class FontList; + +// ------------------ +// - Some constants - +// ------------------ -#endif // __cplusplus +#define SAL_CLIPRECT_COUNT 16 // ----------- // - SalData - @@ -90,24 +77,14 @@ FontList *mpFontList; // Mac OS font list }; -#ifdef __cplusplus - - inline void SetSalData( SalData* pData ) { ImplGetSVData()->mpSalData = (void*)pData; } - - inline SalData *GetSalData() { return (SalData*)ImplGetSVData()->mpSalData; } - inline SalData *GetAppSalData() { return (SalData*)ImplGetAppSVData()->mpSalData; } - -#else // __cplusplus - - // C wrapper functions around SetSalData, GetSalData, and GetAppSalData - - void SalSetSalData( struct SalData* pData ); - - struct SalData *SalGetSalData(); - struct SalData *SalGetAppSalData(); - - BOOL SalGetAppQuit(); - -#endif // __cplusplus +inline void SetSalData( SalData* pData ) { ImplGetSVData()->mpSalData = (void*)pData; } +inline SalData *GetSalData() { return (SalData*)ImplGetSVData()->mpSalData; } +inline SalData *GetAppSalData() { return (SalData*)ImplGetAppSVData()->mpSalData; } + +// --- Prototypes --- + +BOOL ImplSalYieldMutexTryToAcquire(); +void ImplSalYieldMutexAcquire(); +void ImplSalYieldMutexRelease(); #endif // _SV_SALDATA_HXX diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/salframe.h ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salframe.h --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/salframe.h 2005-09-09 12:33:56.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salframe.h 2007-03-09 23:49:22.000000000 +0100 @@ -36,32 +36,177 @@ #ifndef _SV_SALFRAME_H #define _SV_SALFRAME_H +#include + +#include + #ifndef _SV_SV_H #include #endif -#ifndef _SV_VCLWINDOW_H -#include -#endif #ifndef _SV_SYSDATA_HXX #include #endif +#include +#include +#include +#include + +class AquaSalGraphics; +class AquaSalFrame; +class AquaSalTimer; +class AquaSalInstance; + +typedef struct SalFrame::SalPointerState SalPointerState; + // ---------------- -// - SalFrameData - +// - AquaSalFrame - // ---------------- -struct SalFrameData +class AquaSalFrame : public SalFrame { - VCLWINDOW mhWnd; // Window handle - SalGraphics* mpGraphics; // current frame graphics - SalFrame* mpNextFrame; // pointer to next frame - SalFrame* mpParent; // pointer to parent frame +public: + CarbonWindowRef mrWindow; // Window handle + AquaSalGraphics* mpGraphics; // current frame graphics + AquaSalFrame* mpNextFrame; // pointer to next frame + AquaSalFrame* mpParent; // pointer to parent frame void* mpInst; // instance handle for callback - SALFRAMEPROC mpProc; // callback proc + SystemEnvData maSysData; // system data long mnWidth; // client width in pixels long mnHeight; // client height in pixels + int mnMinWidth; // min. client width in pixels + int mnMinHeight; // min. client height in pixels + int mnMaxWidth; // max. client width in pixels + int mnMaxHeight; // max. client height in pixels + Rect maFullScreenRect; // old window size when in FullScreen + WindowAttributes maFullScreenAttr; // old window attributes when in FullScreen BOOL mbGraphics; // is Graphics used? + BOOL mbFullScreen; // is Window in FullScreen? + AquaSalInstance* mpSalInstance; + + TSMDocumentID maTsmDocumentId; + SalExtTextInputEvent maInputEvent; // preedit text +public: + AquaSalFrame(); + + /** Constructor + + Creates a system window and connects this frame with it. + + @throws std::runtime_error in case window creation fails + */ + AquaSalFrame(SalFrame* pParent, ULONG salFrameStyle, AquaSalInstance* pSalInstance); + + virtual ~AquaSalFrame(); + + virtual SalGraphics* GetGraphics(); + virtual void ReleaseGraphics( SalGraphics* pGraphics ); + virtual BOOL PostEvent( void* pData ); + BOOL PostTimerEvent( AquaSalTimer *pTimer ); + virtual void SetTitle( const XubString& rTitle ); + virtual void SetIcon( USHORT nIcon ); + virtual void SetMenu( SalMenu* pSalMenu ); + virtual void DrawMenuBar(); + virtual void Show( BOOL bVisible, BOOL bNoActivate = FALSE ); + virtual void Enable( BOOL bEnable ); + virtual void SetMinClientSize( long nWidth, long nHeight ); + virtual void SetMaxClientSize( long nWidth, long nHeight ); + virtual void SetPosSize( long nX, long nY, long nWidth, long nHeight, USHORT nFlags ); + virtual void GetClientSize( long& rWidth, long& rHeight ); + virtual void GetWorkArea( Rectangle& rRect ); + virtual SalFrame* GetParent() const; + virtual void SetWindowState( const SalFrameState* pState ); + virtual BOOL GetWindowState( SalFrameState* pState ); + virtual void ShowFullScreen( BOOL bFullScreen, sal_Int32 nDisplay ); + virtual void StartPresentation( BOOL bStart ); + virtual void SetAlwaysOnTop( BOOL bOnTop ); + virtual void ToTop( USHORT nFlags ); + virtual void SetPointer( PointerStyle ePointerStyle ); + virtual void CaptureMouse( BOOL bMouse ); + virtual void SetPointerPos( long nX, long nY ); + virtual void Flush(); + virtual void Sync(); + virtual void SetInputContext( SalInputContext* pContext ); + virtual void EndExtTextInput( USHORT nFlags ); + virtual String GetKeyName( USHORT nKeyCode ); + virtual String GetSymbolKeyName( const XubString& rFontName, USHORT nKeyCode ); + virtual BOOL MapUnicodeToKeyCode( sal_Unicode aUnicode, LanguageType aLangType, KeyCode& rKeyCode ); + virtual LanguageType GetInputLanguage(); + virtual SalBitmap* SnapShot(); + virtual void UpdateSettings( AllSettings& rSettings ); + virtual void Beep( SoundType eSoundType ); + virtual const SystemEnvData* GetSystemData() const; + virtual SalPointerState GetPointerState(); + virtual void SetParent( SalFrame* pNewParent ); + virtual bool SetPluginParent( SystemParentData* pNewParent ); + virtual void SetExtendedFrameStyle( SalExtStyle ); + virtual void SetBackgroundBitmap( SalBitmap* ); + + // shaped system windows + // set clip region to none (-> rectangular windows, normal state) + virtual void ResetClipRegion(); + // start setting the clipregion consisting of nRects rectangles + virtual void BeginSetClipRegion( ULONG nRects ); + // add a rectangle to the clip region + virtual void UnionClipRegion( long nX, long nY, long nWidth, long nHeight ); + // done setting up the clipregion + virtual void EndSetClipRegion(); + + virtual void SetClientSize( long nWidth, long nHeight ); + + void UpdateFrameGeometry(); + + void ActivateTSM(); + void DeactivateTSM(); + + private: // methods + + /** Create a new system window. + The newly create window will be associated whith this frame. + + @param pParent + the parent of the window may be NULL + + @param nSalFrameStyle + the style of the new window + + @throws std::runtime_error in case window creation fails + */ + void CreateNewSystemWindow(CarbonWindowRef pParent, ULONG nSalFrameStyle); + + void InsertThisIntoFrameList(); + void RemoveThisFromFrameList(); + BOOL ImplPostUserEvent( UInt32 eventKind, void *pData ); + + /** Install a window event handler + + The window event handler and the corresponding Universal Procedure Pointer (UPP) pointer + need to be save during destruction of the frame instance we have to unregister all installed + event handlers and dispose the UPP. + + @param upp + a universal procedure pointer + + @param nEvents + number of events to register + + @param eventSpec + the event specification + + @return the status of the registration see Carbon Event Manager reference for details + */ + OSStatus InstallAndRegisterEventHandler(EventHandlerUPP upp, size_t nEvents, const EventTypeSpec* eventSpec); + void DeinstallAndUnregisterAllEventHandler(); + + private: // data + + typedef std::pair SysWindowEventHandlerData_t; + typedef std::vector SysWindowEventHandlerDataContainer_t; + SysWindowEventHandlerDataContainer_t mSysWindowEventHandlerDataContainer; + + // Menu associated with this SalFrame + SalMenu *mpMenu; }; #endif // _SV_SALFRAME_H diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/salgdi.h ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salgdi.h --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/salgdi.h 2005-09-09 12:34:10.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salgdi.h 2007-03-10 00:05:10.000000000 +0100 @@ -41,78 +41,343 @@ #include #ifndef _SV_SV_H - #include +#include #endif -#ifndef _SV_VCLWINDOW_H - #include +#ifndef _SV_OUTFONT_HXX +#include #endif -// ------------------- -// - Structures - -// ------------------- - -struct SalGraphicsData -{ - // NSView and NSWindow - - VCLVIEW mhDC; // VCLVIEW - - // QuickDraw graph port, offscreen graphic world, and graphic device handle - - CGrafPtr mpCGrafPort; // QD color graphics port - GWorldPtr mpGWorld; // QD offscreen GWorld - GDHandle mhGDevice; // QD GDevice - - // Graph port pixels, state and flags - - BOOL mbGWorldPixelsLocked; // GWorld pixels locked? - BOOL mbGWorldPixelsCopy; // GWorld pixels was a copy of the original? - BOOL mbGWorldPixelsNew; // GWorld pixels is brand new? - GWorldFlags mnGWorldFlags; // GWorld pixels status flags - PixMapHandle mhGWorldPixMap; // GWorld pixels +#ifndef _SV_SALGDI_HXX +#include +#endif - // Clip region - - BOOL mbClipRgnChanged; // Did the clip region change? - RgnHandle mhClipRgn; // Clip Region Handle +#ifndef _AQUAVCLTYPES_H +#include +#endif - // Font attributes +#include +//#include +class AquaSalBitmap; - short mnFontID; // Mac FontFamilyId - short mnFontSize; // Mac Font Size - RGBColor maFontColor; // Text Color - Style mnFontStyle; // Mac Font Style +// mac specific physically available font face +class ImplMacFontData : public ImplFontData +{ +public: + rtl_TextEncoding meScript; + FontFamily meFamily; + FontType meType; + AquaSalSystem mpSysData; + ATSUFontID mnFontID; + + +public: + ImplMacFontData( const ImplDevFontAttributes&, + int nFontHeight, int macCharSet, + int nPitchAndFamily ); + ~ImplMacFontData(); + + virtual ImplFontData* Clone() const; + virtual ImplFontEntry* CreateFontInstance( ImplFontSelectData& ) const; + // void UpdateFromHDC( HDC ); + + bool HasChar( sal_uInt32 cChar ) const; + +// int GetCharSet() const { return meWinCharSet; } +// int GetPitchAndFamily() const { return mnPitchAndFamily; } +// bool IsGlyphApiDisabled() const { return mbDisableGlyphApi; } +// bool SupportsKorean() const { return mbHasKoreanRange; } +// bool SupportsCJK() const { return mbHasCJKSupport; } +// bool AliasSymbolsHigh() const { return mbAliasSymbolsHigh; } +// bool AliasSymbolsLow() const { return mbAliasSymbolsLow; } + + ImplFontCharMap* GetImplFontCharMap(); + +private: +// bool mbDisableGlyphApi; +// bool mbHasKoreanRange; +// bool mbHasCJKSupport; +// +// ImplFontCharMap* mpUnicodeMap; +// +// // TODO: get rid of the members below needed to work with the Win9x non-unicode API +// int* mpFontCharSets; // all Charsets for the current font (used on W98 for kerning) +// int mnFontCharSetCount; // Number of Charsets of the current font; 0 - if not queried +// int meWinCharSet; +// int mnPitchAndFamily; +// bool mbAliasSymbolsHigh; +// bool mbAliasSymbolsLow; + +private: +// void ReadCmapTable( HDC ); +// void ReadOs2Table( HDC ); + +#ifdef GNG_VERT_HACK +// void ReadGsubTable( HDC ) const; + + typedef std::hash_set IntHashSet; + mutable IntHashSet maGsubTable; + mutable bool mbGsubRead; +public: +// bool HasGSUBstitutions( HDC ) const; +// bool IsGSUBstituted( sal_Unicode ) const; +#endif // GNG_VERT_HACK +}; - // Pen attributes and status - BOOL mbPenTransparent; // Is pen transparent? - SInt32 mnPenMode; // Pen Mode - RGBColor maPenColor; // Pen Color +// ------------------- +// - AquaSalGraphics - +// ------------------- - // Port's pen attributes +class AquaSalGraphics : public SalGraphics +{ + friend class ATSLayout; +protected: + CarbonViewRef mrView; // VCLVIEW + + CGContextRef mrBitmapContext; // bitmap graphics context (either from a virtual device(mrBitmapContext==mrContext) or an offscreen copy of mrContext + CGContextRef mrContext; // graphics context for Quartz 2D + CGLayerRef mrCGLayer; // CGLayer to store what we draw to mrContext and be able to repaint (replace mrBitmapContext) + CGContextRef mrCGLayerContext; // Context of CGLayer, used for drawing + CarbonWindowRef mrWindow; // Window if this is a Window graphics + + CGMutablePathRef mrClippingPath; // path representing current clip region + CGRect* mpStdClippingRect; // array for collecting clipping rectangles + CGRect* mpClippingRect; // used if more clipping rects are used than mpStdClippingRect can handle + CGRect* mpNextClippingRect; // points to next free slot in clipping rect array + long mnClippingRectCount; // number of clipping rects in current region + + // Drawing colors + CGColorSpaceRef mrRGBColorSpace; // the RGB color space + float mpLineColor[4]; // pen color RGBA + float mpFillColor[4]; // brush color RGBA + + ATSUStyle maATSUStyle; // style object which carries all font attributes + long mnATSUIRotation; // text rotation + + SInt32 mnPenMode; // Pen Mode + + // Graphics types + bool mbPrinter; // is this a printer graphics + bool mbVirDev; // is this a virtual device graphics + bool mbWindow; // is this a window graphics + bool mbScreen; // is this graphics screen compatible + + sal_Int32 mnGraphics; // guards BeginGraphics and EndGraphics from multiple calls + +/* + sal_uInt32 mnUpdateGraphicsEvent; + DECL_LINK( UpdateGraphics, void* ); +*/ - SInt32 mnPortPenMode; // Port's pen mode - MacOSPoint maPortPenSize; // Port's pen size; - MacOSPoint maPortPenLocation; // Port's pen location - PixPatHandle mhPortPenPattern; // Port's pen pattern +#if DEBUGLEVEL>1 + bool mbQDCG; //true if in QDCG +#endif - // Brush attributes and status +private: + /** returns the display id this window is mostly visible on */ + CGDirectDisplayID GetWindowDisplayID() const; +public: + AquaSalGraphics(); + virtual ~AquaSalGraphics(); + + bool IsPenTransparent() const { return (mpLineColor[3] == 0.0); } + bool IsBrushTransparent() const { return (mpFillColor[3] == 0.0); } + + void SetWindowGraphics( CarbonViewRef rView, CarbonWindowRef rWindow, bool bScreenCompatible ); + void SetPrinterGraphics( CarbonViewRef rView, bool bScreenCompatible ); + void SetVirDevGraphics( CGContextRef xContext, bool bSCreenCompatible ); + + bool IsWindowGraphics() const { return mbWindow; } + bool IsPrinterGraphics() const { return mbPrinter; } + bool IsVirDevGraphics() const { return mbVirDev; } + bool IsScreenCompatible() const { return mbScreen; } + + void ImplDrawPixel( long nX, long nY, float pColor[] ); // helper to draw single pixels + + bool isOffscreenCopy() const; +protected: + // set up and release graphics context, required for any drawing operation + // the view will be be flipped like the HIView coordinate system + // i.e. (0,0) is top left and the y-axis points to the bottom + bool BeginGraphics(); + bool EndGraphics(); + void InitContextForPainting( CGContextRef xContext ); + void RefreshWindow(); + void RefreshRect(float lX, float lY, float lWidth, float lHeight); + void RefreshRect(HIRect aHIRect); + + virtual BOOL unionClipRegion( long nX, long nY, long nWidth, long nHeight ); + // draw --> LineColor and FillColor and RasterOp and ClipRegion + virtual void drawPixel( long nX, long nY ); + virtual void drawPixel( long nX, long nY, SalColor nSalColor ); + virtual void drawLine( long nX1, long nY1, long nX2, long nY2 ); + virtual void drawRect( long nX, long nY, long nWidth, long nHeight ); + virtual void drawPolyLine( ULONG nPoints, const SalPoint* pPtAry ); + virtual void drawPolygon( ULONG nPoints, const SalPoint* pPtAry ); + virtual void drawPolyPolygon( ULONG nPoly, const ULONG* pPoints, PCONSTSALPOINT* pPtAry ); + virtual sal_Bool drawPolyLineBezier( ULONG nPoints, const SalPoint* pPtAry, const BYTE* pFlgAry ); + virtual sal_Bool drawPolygonBezier( ULONG nPoints, const SalPoint* pPtAry, const BYTE* pFlgAry ); + virtual sal_Bool drawPolyPolygonBezier( ULONG nPoly, const ULONG* pPoints, const SalPoint* const* pPtAry, const BYTE* const* pFlgAry ); + + // CopyArea --> No RasterOp, but ClipRegion + virtual void copyArea( long nDestX, long nDestY, long nSrcX, long nSrcY, long nSrcWidth, + long nSrcHeight, USHORT nFlags ); + + // CopyBits and DrawBitmap --> RasterOp and ClipRegion + // CopyBits() --> pSrcGraphics == NULL, then CopyBits on same Graphics + virtual void copyBits( const SalTwoRect* pPosAry, SalGraphics* pSrcGraphics ); + virtual void drawBitmap( const SalTwoRect* pPosAry, const SalBitmap& rSalBitmap ); + virtual void drawBitmap( const SalTwoRect* pPosAry, + const SalBitmap& rSalBitmap, + SalColor nTransparentColor ); + virtual void drawBitmap( const SalTwoRect* pPosAry, + const SalBitmap& rSalBitmap, + const SalBitmap& rTransparentBitmap ); + virtual void drawMask( const SalTwoRect* pPosAry, + const SalBitmap& rSalBitmap, + SalColor nMaskColor ); + + virtual SalBitmap* getBitmap( long nX, long nY, long nWidth, long nHeight ); + virtual SalColor getPixel( long nX, long nY ); + + // invert --> ClipRegion (only Windows or VirDevs) + virtual void invert( long nX, long nY, long nWidth, long nHeight, SalInvert nFlags); + virtual void invert( ULONG nPoints, const SalPoint* pPtAry, SalInvert nFlags ); + + virtual BOOL drawEPS( long nX, long nY, long nWidth, long nHeight, void* pPtr, ULONG nSize ); + + virtual bool drawAlphaBitmap( const SalTwoRect&, + const SalBitmap& rSourceBitmap, + const SalBitmap& rAlphaBitmap ); + + virtual bool drawAlphaRect( long nX, long nY, long nWidth, + long nHeight, sal_uInt8 nTransparency ); + + // native widget rendering methods that require mirroring + virtual BOOL hitTestNativeControl( ControlType nType, ControlPart nPart, const Region& rControlRegion, + const Point& aPos, SalControlHandle& rControlHandle, BOOL& rIsInside ); + virtual BOOL drawNativeControl( ControlType nType, ControlPart nPart, const Region& rControlRegion, + ControlState nState, const ImplControlValue& aValue, SalControlHandle& rControlHandle, + const rtl::OUString& aCaption ); + virtual BOOL drawNativeControlText( ControlType nType, ControlPart nPart, const Region& rControlRegion, + ControlState nState, const ImplControlValue& aValue, + SalControlHandle& rControlHandle, const rtl::OUString& aCaption ); + virtual BOOL getNativeControlRegion( ControlType nType, ControlPart nPart, const Region& rControlRegion, ControlState nState, + const ImplControlValue& aValue, SalControlHandle& rControlHandle, const rtl::OUString& aCaption, + Region &rNativeBoundingRegion, Region &rNativeContentRegion ); + +public: + // public SalGraphics methods, the interface to the independent vcl part + + // get device resolution + virtual void GetResolution( long& rDPIX, long& rDPIY ); + // get resolution for fonts (an implementations specific adjustment, + // ideally would be the same as the Resolution) + virtual void GetScreenFontResolution( long& rDPIX, long& rDPIY ); + // get the depth of the device + virtual USHORT GetBitCount(); + // get the width of the device + virtual long GetGraphicsWidth() const; + + // set the clip region to empty + virtual void ResetClipRegion(); + // begin setting the clip region, add rectangles to the + // region with the UnionClipRegion call + virtual void BeginSetClipRegion( ULONG nCount ); + // all rectangles were added and the clip region should be set now + virtual void EndSetClipRegion(); + + // set the line color to transparent (= don't draw lines) + virtual void SetLineColor(); + // set the line color to a specific color + virtual void SetLineColor( SalColor nSalColor ); + // set the fill color to transparent (= don't fill) + virtual void SetFillColor(); + // set the fill color to a specific color, shapes will be + // filled accordingly + virtual void SetFillColor( SalColor nSalColor ); + // enable/disable XOR drawing + virtual void SetXORMode( BOOL bSet ); + // set line color for raster operations + virtual void SetROPLineColor( SalROPColor nROPColor ); + // set fill color for raster operations + virtual void SetROPFillColor( SalROPColor nROPColor ); + // set the text color to a specific color + virtual void SetTextColor( SalColor nSalColor ); + // set the font + virtual USHORT SetFont( ImplFontSelectData*, int nFallbackLevel ); + // get the current font's etrics + virtual void GetFontMetric( ImplFontMetricData* ); + // get kernign pairs of the current font + // return only PairCount if (pKernPairs == NULL) + virtual ULONG GetKernPairs( ULONG nPairs, ImplKernPairData* pKernPairs ); + // get the repertoire of the current font + virtual ImplFontCharMap* GetImplFontCharMap() const; + // graphics must fill supplied font list + virtual void GetDevFontList( ImplDevFontList* ); + // graphics should call ImplAddDevFontSubstitute on supplied + // OutputDevice for all its device specific preferred font substitutions + virtual void GetDevFontSubstList( OutputDevice* ); + virtual bool AddTempDevFont( ImplDevFontList*, const String& rFileURL, const String& rFontName ); + // CreateFontSubset: a method to get a subset of glyhps of a font + // inside a new valid font file + // returns TRUE if creation of subset was successfull + // parameters: rToFile: contains a osl file URL to write the subset to + // pFont: describes from which font to create a subset + // pGlyphIDs: the glyph ids to be extracted + // pEncoding: the character code corresponding to each glyph + // pWidths: the advance widths of the correspoding glyphs (in PS font units) + // nGlyphs: the number of glyphs + // rInfo: additional outgoing information + // implementation note: encoding 0 with glyph id 0 should be added implicitly + // as "undefined character" + virtual BOOL CreateFontSubset( const rtl::OUString& rToFile, + ImplFontData* pFont, + long* pGlyphIDs, + sal_uInt8* pEncoding, + sal_Int32* pWidths, + int nGlyphs, + FontSubsetInfo& rInfo // out parameter + ); + + // GetFontEncodingVector: a method to get the encoding map Unicode + // to font encoded character; this is only used for type1 fonts and + // may return NULL in case of unknown encoding vector + // if ppNonEncoded is set and non encoded characters (that is type1 + // glyphs with only a name) exist it is set to the corresponding + // map for non encoded glyphs; the encoding vector contains -1 + // as encoding for these cases + virtual const std::map< sal_Unicode, sal_Int32 >* GetFontEncodingVector( ImplFontData* pFont, const std::map< sal_Unicode, rtl::OString >** ppNonEncoded ); + + // GetEmbedFontData: gets the font data for a font marked + // embeddable by GetDevFontList or NULL in case of error + // parameters: pFont: describes the font in question + // pWidths: the widths of all glyphs from char code 0 to 255 + // pWidths MUST support at least 256 members; + // rInfo: additional outgoing information + // pDataLen: out parameter, contains the byte length of the returned buffer + virtual const void* GetEmbedFontData( ImplFontData* pFont, + const sal_Unicode* pUnicodes, + sal_Int32* pWidths, + FontSubsetInfo& rInfo, + long* pDataLen ); + // frees the font data again + virtual void FreeEmbedFontData( const void* pData, long nDataLen ); - BOOL mbBrushTransparent; // Is brush transparent? - RGBColor maBrushColor; // Brush Color + virtual BOOL GetGlyphBoundRect( long nIndex, Rectangle& ); + virtual BOOL GetGlyphOutline( long nIndex, basegfx::B2DPolyPolygon& ); - // Miscellaneous status flags + virtual SalLayout* GetTextLayout( ImplLayoutArgs&, int nFallbackLevel ); + virtual void DrawServerFontLayout( const ServerFontLayout& ); - BOOL mbPrinter; // Is a printer available? - BOOL mbVirDev; // Is a virtual device available? - BOOL mbWindow; // Is a window availble? - BOOL mbScreen; // Is this screen compatiable? - OSStatus mnOSStatus; // The current MacOS error + // Query the platform layer for control support + virtual BOOL IsNativeControlSupported( ControlType nType, ControlPart nPart ); }; -typedef struct SalGraphicsData SalGraphicsData; -typedef SalGraphicsData *SalGraphicsDataPtr; -typedef SalGraphicsDataPtr *SalGraphicsDataHandle; +inline bool AquaSalGraphics::isOffscreenCopy() const +{ + return mrBitmapContext && (mrBitmapContext != mrContext); +} #endif // _SV_SALGDI_H diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/salinst.h ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salinst.h --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/salinst.h 2005-09-09 12:34:41.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salinst.h 2007-03-08 09:37:29.000000000 +0100 @@ -46,9 +46,12 @@ #include #endif -#ifndef _SV_VCLWINDOW_H -#include -#endif +#include +#include +#include +#include +#include +#include #ifdef __cplusplus @@ -69,7 +72,7 @@ ULONG mnCount; NAMESPACE_VOS(OThread)::TThreadIdentifier mnThreadId; -public: +public: SalYieldMutex(); virtual void acquire(); virtual void release(); @@ -82,12 +85,86 @@ // - SalInstanceData - // ------------------- -struct SalInstanceData +//struct SalInstanceData +//{ +//public: +//}; + +// ------------------ +// - AquaSalInstance - +// ------------------ + +class AquaSalInstance : public SalInstance { public: void* mpFilterInst; void* mpFilterCallback; SalYieldMutex* mpSalYieldMutex; // Sal-Yield-Mutex +public: + AquaSalInstance(); + virtual ~AquaSalInstance(); + + virtual SalSystem* CreateSystem(); + virtual void DestroySystem(SalSystem*); + virtual SalFrame* CreateChildFrame( SystemParentData* pParent, ULONG nStyle ); + virtual SalFrame* CreateFrame( SalFrame* pParent, ULONG nStyle ); + virtual void DestroyFrame( SalFrame* pFrame ); + virtual SalObject* CreateObject( SalFrame* pParent, SystemWindowData* pWindowData ); + virtual void DestroyObject( SalObject* pObject ); + virtual SalVirtualDevice* CreateVirtualDevice( SalGraphics* pGraphics, + long nDX, long nDY, + USHORT nBitCount, const SystemGraphicsData *pData ); + virtual void DestroyVirtualDevice( SalVirtualDevice* pDevice ); + + virtual SalInfoPrinter* CreateInfoPrinter( SalPrinterQueueInfo* pQueueInfo, + ImplJobSetup* pSetupData ); + virtual void DestroyInfoPrinter( SalInfoPrinter* pPrinter ); + virtual SalPrinter* CreatePrinter( SalInfoPrinter* pInfoPrinter ); + virtual void DestroyPrinter( SalPrinter* pPrinter ); + virtual void GetPrinterQueueInfo( ImplPrnQueueList* pList ); + virtual void GetPrinterQueueState( SalPrinterQueueInfo* pInfo ); + virtual void DeletePrinterQueueInfo( SalPrinterQueueInfo* pInfo ); + virtual String GetDefaultPrinter(); + virtual SalSound* CreateSalSound(); + virtual SalTimer* CreateSalTimer(); + virtual SalOpenGL* CreateSalOpenGL( SalGraphics* pGraphics ); + virtual SalI18NImeStatus* CreateI18NImeStatus(); + virtual SalSystem* CreateSalSystem(); + virtual SalBitmap* CreateSalBitmap(); + virtual vos::IMutex* GetYieldMutex(); + virtual ULONG ReleaseYieldMutex(); + virtual void AcquireYieldMutex( ULONG nCount ); + virtual void Yield( bool bWait, bool bHandleAllCurrentEvents ); + virtual bool AnyInput( USHORT nType ); + virtual SalMenu* CreateMenu( BOOL bMenuBar ); + virtual void DestroyMenu( SalMenu* ); + virtual SalMenuItem* CreateMenuItem( const SalItemParams* pItemData ); + virtual void DestroyMenuItem( SalMenuItem* ); + virtual SalSession* CreateSalSession(); + virtual void* GetConnectionIdentifier( ConnectionIdentifierType& rReturnedType, int& rReturnedBytes ); + virtual void SetEventCallback( void* pInstance, bool(*pCallback)(void*,void*,int) ); + virtual void SetErrorEventCallback( void* pInstance, bool(*pCallback)(void*,void*,int) ); + + static void TimerEventHandler(EventLoopTimerRef inTimer, void* pData); + + public: + /* During window resizing the standard event handler does + not dispatch VCL timer messages which (for some strange + reasons) trigger VCL painting. So when live resizing of + windows is enabled the window content will not be painted + at all especially when the user doesn't move the mouse + anymore but still holds the left mouse button pressed on + the resize area. + So to get timer messages delivered nevertheless we setup + a message loop timer. Events fired by this timer will also + be delivered during window resizing. + */ + void StartForceDispatchingPaintEvents(); + void StopForceDispatchingPaintEvents(); + EventLoopTimerRef mEventLoopTimerRef; + bool mbForceDispatchPaintEvents; + + friend class AquaSalFrame; }; #endif // _SV_SALINST_H diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/salmenu.h ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salmenu.h --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/salmenu.h 1970-01-01 01:00:00.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salmenu.h 2006-12-04 14:07:23.000000000 +0100 @@ -0,0 +1,101 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile$ + * + * $Revision$ + * + * last change: $Author$ $Date$ + * + * 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 _SV_SALMENU_H +#define _SV_SALMENU_H + +#include +#include +#include + +#ifndef _SV_SV_H +#include +#endif +#ifndef _SV_BITMAP_HXX +#include +#endif + +#ifndef _SV_SALMENU_HXX +#include +#endif + + +class AquaSalMenu : public SalMenu +{ +public: + AquaSalMenu() {} + virtual ~AquaSalMenu(); + + virtual BOOL VisibleMenuBar(); // must return TRUE to actually DISPLAY native menu bars + // otherwise only menu messages are processed (eg, OLE on Windows) + + virtual void InsertItem( SalMenuItem* pSalMenuItem, unsigned nPos ); + virtual void RemoveItem( unsigned nPos ); + virtual void SetSubMenu( SalMenuItem* pSalMenuItem, SalMenu* pSubMenu, unsigned nPos ); + virtual void SetFrame( const SalFrame* pFrame ); + virtual void CheckItem( unsigned nPos, BOOL bCheck ); + virtual void EnableItem( unsigned nPos, BOOL bEnable ); + virtual void SetItemText( unsigned nPos, SalMenuItem* pSalMenuItem, const XubString& rText ); + virtual void SetItemImage( unsigned nPos, SalMenuItem* pSalMenuItem, const Image& rImage); + virtual void SetAccelerator( unsigned nPos, SalMenuItem* pSalMenuItem, const KeyCode& rKeyCode, const XubString& rKeyName ); + virtual void GetSystemMenuData( SystemMenuData* pData ); + + XubString mText; // Title of this menu + MenuRef mrMenuRef; // The Carbon reference to this menu + BOOL mbMenuBar; // TRUE - Menubar, FALSE - Menu +}; + +class AquaSalMenuItem : public SalMenuItem +{ +public: + AquaSalMenuItem() {} + virtual ~AquaSalMenuItem(); + + USHORT mnId; // Item ID + Menu *mpMenu; // Menu into which this MenuItem is inserted + SalMenu *mpSubMenu; // Sub menu of this item (if defined) + XubString mText; // Title of this menu item + MenuRef mrParentMenuRef; // The menu in which this menu item is inserted + + MenuItemIndex mnMenuItemIndex; // The menu index of this menu item in mpMenu + // It is 1 based, so the first menu + // item's MenuItemIndex in the menu has value 1 + + MenuItemAttributes maMenuAttributes; + + Bitmap maBitmap; // item image +}; + +#endif // _SV_SALMENU_H diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/salnativewidgets.h ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salnativewidgets.h --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/salnativewidgets.h 1970-01-01 01:00:00.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salnativewidgets.h 2007-02-17 10:44:40.000000000 +0100 @@ -0,0 +1,48 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile$ + * + * $Revision$ + * + * last change: $Author$ $Date$ + * + * 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 _SV_NATIVEWIDGETS_H +#define _SV_NATIVEWIDGETS_H + +// since 10.4 ... no metrics are returned, and we have to fix the values +#define BUTTON_WIDTH 16 +#define BUTTON_HEIGHT 17 + +// for some controls, like spinbuttons + spinboxes, or listboxes +// we need it to adjust text position beside radio and check buttons + +#define TEXT_SEPARATOR 3 + +#endif // _SV_NATIVEWIDGETS_H diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/salobj.h ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salobj.h --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/salobj.h 2005-09-09 12:35:10.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salobj.h 2005-11-27 10:48:16.000000000 +0100 @@ -44,16 +44,57 @@ #include #endif +#include + +class AquaSalFrame; +class AquaSalObject; + + // ----------------- // - SalObjectData - // ----------------- struct SalObjectData { - SalFrame* mpFrame; // parent frame - SalObject* mpNextObject; // pointer to next object +}; + +class AquaSalObject : public SalObject +{ +public: + AquaSalFrame* mpFrame; // parent frame + AquaSalObject* mpNextObject; // pointer to next object void* mpInst; // instance handle for callback SALOBJECTPROC mpProc; // callback proc + + +// HWND mhWnd; // Window handle +// HWND mhWndChild; // Child Window handle +// HWND mhLastFocusWnd; // Child-Window, welches als letztes den Focus hatte +// SystemChildData maSysData; // SystemEnvData +// RGNDATA* mpClipRgnData; // ClipRegion-Data +// RGNDATA* mpStdClipRgnData; // Cache Standard-ClipRegion-Data +// RECT* mpNextClipRect; // Naechstes ClipRegion-Rect +// BOOL mbFirstClipRect; // Flag for first cliprect to insert +// WinSalObject* mpNextObject; // pointer to next object + + + AquaSalObject(); + virtual ~AquaSalObject(); + + virtual void ResetClipRegion(); + virtual USHORT GetClipRegionType(); + virtual void BeginSetClipRegion( ULONG nRects ); + virtual void UnionClipRegion( long nX, long nY, long nWidth, long nHeight ); + virtual void EndSetClipRegion(); + virtual void SetPosSize( long nX, long nY, long nWidth, long nHeight ); + virtual void Show( BOOL bVisible ); + virtual void Enable( BOOL nEnable ); + virtual void GrabFocus(); + virtual void SetBackground(); + virtual void SetBackground( SalColor nSalColor ); + virtual const SystemEnvData* GetSystemData() const; + + virtual void SetCallback( void* pInst, SALOBJECTPROC pProc ); }; #endif // _SV_SALOBJ_H diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/salogl.h ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salogl.h --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/salogl.h 1970-01-01 01:00:00.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salogl.h 2006-07-19 12:19:48.000000000 +0200 @@ -0,0 +1,118 @@ +/************************************************************************* +* +* OpenOffice.org - a multi-platform office productivity suite +* +* $RCSfile$ +* +* $Revision$ +* +* last change: $Author$ $Date$ +* +* 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 _SV_SALOGL_H +#define _SV_SALOGL_H + +//#if defined EXPLICITLY_INCLUDE_GLX_H +//#include +//#define GL_H +//#include +//#include +//#else +//typedef void* GLXContext; +//typedef XID GLXDrawable; +//// needed GLX_ constants +//#define GLX_USE_GL 1 +//#define GLX_DOUBLEBUFFER 5 +//#endif + +#ifndef _SV_SALOGL_HXX +#include +#endif + +#ifndef _OSL_MODULE_H +#include +#endif + +// ------------- +// - SalOpenGL - +// ------------- + +class SalGraphics; + +class AquaSalOpenGL : public SalOpenGL +{ +private: + static CarbonViewRef mhOGLLastDC; + static ULONG mnOGLState; + + // static oslModule mpGLLib; +// static GLXContext maGLXContext; +// static ULONG mnOGLState; +// static Display* mpDisplay; +// static XVisualInfo* mpVisualInfo; +// static BOOL mbHaveGLVisual; +// +// static BOOL ImplInit(); +// +// static GLXContext (*pCreateContext)( Display *, XVisualInfo *, GLXContext, Bool ); +// static void (*pDestroyContext)( Display *, GLXContext ); +// static GLXContext (*pGetCurrentContext)( ); +// static Bool (*pMakeCurrent)( Display *, GLXDrawable, GLXContext ); +// static void (*pSwapBuffers)( Display*, GLXDrawable ); +// static int (*pGetConfig)( Display*, XVisualInfo*, int, int* ); +// static void (*pFlush)(); +// +// Drawable maDrawable; +// +// static void* resolveSymbol( const char* pSym ); +public: + + AquaSalOpenGL( SalGraphics* pGraphics ); + ~AquaSalOpenGL(); + +// static void Release(); +// static void ReleaseLib(); +// static void MakeVisualWeights( +// Display *pDisplay, +// XVisualInfo* pInfos, +// int* pWeights, +// int nVisuals +// ); + + // overload all pure virtual methods + virtual bool IsValid(); + virtual oglFunction GetOGLFnc( const char * ); + virtual void OGLEntry( SalGraphics* pGraphics ); + virtual void OGLExit( SalGraphics* pGraphics ); + virtual void StartScene( SalGraphics* pGraphics ); + virtual void StopScene(); + virtual BOOL Create(); + virtual void Release(); + +}; + +#endif // _SV_SALOGL_H diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/salogl.hxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salogl.hxx --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/salogl.hxx 2005-09-09 12:35:24.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salogl.hxx 2006-02-27 22:33:53.000000000 +0100 @@ -69,7 +69,7 @@ class SalOpenGL { private: - static VCLVIEW mhOGLLastDC; + static CarbonViewRef mhOGLLastDC; static ULONG mnOGLState; public: diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/salpixmaputils.hxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salpixmaputils.hxx --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/salpixmaputils.hxx 2005-09-09 12:35:41.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salpixmaputils.hxx 2007-01-12 22:01:27.000000000 +0100 @@ -62,19 +62,7 @@ // ------------------------------------------------------------------ - -PixMapHandle GetNewPixMap ( const Size &rPixMapSize, - const USHORT nPixMapBits, - const BitmapPalette &rBitmapPalette - ); - -PixMapHandle CopyPixMap ( PixMapHandle hPixMap ); - -PixMapHandle GetCGrafPortPixMap ( const Size &rPixMapSize, - const USHORT nPixMapBits, - const BitmapPalette &rBitmapPalette, - const CGrafPtr pCGraf - ); +// Empty. Do we need this? // ------------------------------------------------------------------ diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/salprn.h ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salprn.h --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/salprn.h 2005-09-09 12:36:03.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salprn.h 2006-02-27 22:33:54.000000000 +0100 @@ -40,6 +40,9 @@ #include #endif +#ifndef _AQUAVCLTYPES_H +#include +#endif class SalGraphics; class SalInfoPrinter; @@ -84,7 +87,7 @@ ByteString maDriverNameA; // printer driver name ByteString maDeviceNameA; // printer device name ByteString maPortNameA; // printer port name - VCLVIEW mhDC; // printer hdc + CarbonViewRef mhDC; // printer hdc BOOL mbGraphics; // is Graphics used BOOL mbAnsi; }; @@ -99,4 +102,78 @@ SalInfoPrinter* mpInfoPrinter; // pointer to the compatible InfoPrinter }; +// --------------------- +// - AquaSalInfoPrinter - +// --------------------- + +class AquaSalGraphics; + +class AquaSalInfoPrinter : public SalInfoPrinter +{ +public: + AquaSalGraphics* mpGraphics; // current Printer graphics + XubString maDriverName; // printer driver name + XubString maDeviceName; // printer device name + XubString maPortName; // printer port name + ByteString maDriverNameA; // printer driver name + ByteString maDeviceNameA; // printer device name + ByteString maPortNameA; // printer port name +// HDC mhDC; // printer hdc + BOOL mbGraphics; // is Graphics used + BOOL mbAnsi; + +public: + AquaSalInfoPrinter(); + virtual ~AquaSalInfoPrinter(); + + virtual SalGraphics* GetGraphics(); + virtual void ReleaseGraphics( SalGraphics* pGraphics ); + virtual BOOL Setup( SalFrame* pFrame, ImplJobSetup* pSetupData ); + virtual BOOL SetPrinterData( ImplJobSetup* pSetupData ); + virtual BOOL SetData( ULONG nFlags, ImplJobSetup* pSetupData ); + virtual void GetPageInfo( const ImplJobSetup* pSetupData, + long& rOutWidth, long& rOutHeight, + long& rPageOffX, long& rPageOffY, + long& rPageWidth, long& rPageHeight ); + virtual ULONG GetCapabilities( const ImplJobSetup* pSetupData, USHORT nType ); + virtual ULONG GetPaperBinCount( const ImplJobSetup* pSetupData ); + virtual String GetPaperBinName( const ImplJobSetup* pSetupData, ULONG nPaperBin ); + virtual void InitPaperFormats( const ImplJobSetup* pSetupData ); + virtual int GetLandscapeAngle( const ImplJobSetup* pSetupData ); + virtual DuplexMode GetDuplexMode( const ImplJobSetup* pSetupData ); +}; + +// ----------------- +// - AquaSalPrinter - +// ----------------- + +class AquaSalPrinter : public SalPrinter +{ +public: + AquaSalGraphics* mpGraphics; // current Printer graphics + AquaSalInfoPrinter* mpInfoPrinter; // pointer to the compatible InfoPrinter + AquaSalPrinter* mpNextPrinter; // next printing printer +// HDC mhDC; // printer hdc + ULONG mnError; // Error Code + ULONG mnCopies; // Kopien + BOOL mbCollate; // Sortierte Kopien + BOOL mbAbort; // Job Aborted + +public: + AquaSalPrinter(); + virtual ~AquaSalPrinter(); + + virtual BOOL StartJob( const XubString* pFileName, + const XubString& rJobName, + const XubString& rAppName, + ULONG nCopies, BOOL bCollate, + ImplJobSetup* pSetupData ); + virtual BOOL EndJob(); + virtual BOOL AbortJob(); + virtual SalGraphics* StartPage( ImplJobSetup* pSetupData, BOOL bNewJobData ); + virtual BOOL EndPage(); + virtual ULONG GetErrorCode(); +}; + + #endif // _SV_SALPRN_H diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/salrectangleutils.hxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salrectangleutils.hxx --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/salrectangleutils.hxx 2005-09-09 12:36:17.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salrectangleutils.hxx 1970-01-01 01:00:00.000000000 +0100 @@ -1,87 +0,0 @@ -/************************************************************************* - * - * OpenOffice.org - a multi-platform office productivity suite - * - * $RCSfile$ - * - * $Revision$ - * - * last change: $Author$ $Date$ - * - * 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 _SV_SALRECTANGLEUTILS_HXX -#define _SV_SALRECTANGLEUTILS_HXX - -#include -#include -#include - -#ifndef _SV_SALBTYPE_HXX - #include -#endif - -#ifndef _SV_SALCONST_H - #include -#endif - -#ifndef _SV_SALBMP_HXX - #include -#endif - -// ------------------------------------------------------------------ - -void CheckRectBounds ( const Rect *rPortBoundsRect, - Rect *rSrcRect, - Rect *rDstRect - ); - -// ------------------------------------------------------------------ - -void SalTwoRect2QDDstRect ( const SalTwoRect *pPosAry, - Rect *rDstRect - ); - -void SalTwoRect2QDSrcRect ( const SalTwoRect *pPosAry, - Rect *rSrcRect - ); - -// ------------------------------------------------------------------ - -void GetQDRect ( const long nX, - const long nY, - const long nWidth, - const long nHeight, - Rect *rRect - ); - -void GetTwoRectFromSalBmp( const SalBitmap &rSalBmp, - SalTwoRect *rTwoRect - ); - -// ------------------------------------------------------------------ - -#endif // _SV_SALRECTANGLEUTILS_HXX diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/salsound.h ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salsound.h --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/salsound.h 1970-01-01 01:00:00.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salsound.h 2005-11-27 10:48:19.000000000 +0100 @@ -0,0 +1,109 @@ +/************************************************************************* +* +* OpenOffice.org - a multi-platform office productivity suite +* +* $RCSfile$ +* +* $Revision$ +* +* last change: $Author$ $Date$ +* +* 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 _SV_SALSOUND_H +#define _SV_SALSOUND_H + +//#ifndef _SV_WINCOMP_HXX +//#include +//#endif + +#ifndef _GEN_HXX +#include +#endif +#ifndef _STRING_HXX +#include +#endif + +#ifndef _SV_SV_H +#include +#endif + +#include + +#ifndef _SV_SALFRAME_HXX +#include +#endif +#ifndef _SV_SALSTYPE_HXX +#include +#endif +#ifndef _SV_SALSOUND_HXX +#include +#endif + +// ------------ +// - SalSound - +// ------------ + +class AquaSalSound : public SalSound +{ +private: +// static oslModule mhMCILib; + static ULONG mnSoundState; + SALSOUNDPROC mpProc; +// static void* mpMCIFnc; +// ULONG mnStartTime; +// ULONG mnPlayLen; +// HWND mhSoundWnd; +// UINT mnDeviceId; + bool mbLoop; + bool mbPaused; + +public: + void ImplSetError( int nMciErr ); + void ImplNotify( SoundNotification eNotification, ULONG nError ); + +public: + AquaSalSound(); + virtual ~AquaSalSound(); + + virtual bool IsValid(); + virtual bool Init( const String& rSoundName, + ULONG& rSoundLen ); + virtual void Play( ULONG nStartTime, ULONG nPlayTime, bool bLoop ); + virtual void Stop(); + virtual void Pause(); + virtual void Continue(); + virtual bool IsLoopMode() const; + virtual bool IsPlaying() const; + virtual bool IsPaused() const; + + + bool ImplCreate(); + void ImplDestroy(); + static void Release(); +}; + +#endif // _SV_SALSOUND_H diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/salsys.h ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salsys.h --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/salsys.h 2005-09-09 12:36:47.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salsys.h 2007-02-02 12:45:18.000000000 +0100 @@ -40,13 +40,42 @@ #include #endif +#include + +#include // ----------------- // - SalSystemData - // ----------------- -struct SalSystemData +//struct SalSystemData +//{ +//}; + +class VCL_DLLPUBLIC AquaSalSystem : public SalSystem { +public: + AquaSalSystem() {} + virtual ~AquaSalSystem(); + + // get info about the display + virtual unsigned int GetDisplayScreenCount(); + virtual bool IsMultiDisplay(); + virtual unsigned int GetDefaultDisplayNumber(); + virtual Rectangle GetDisplayScreenPosSizePixel( unsigned int nScreen ); + virtual Rectangle GetDisplayWorkAreaPosSizePixel( unsigned int nScreen ); + + virtual rtl::OUString GetScreenName( unsigned int nScreen ); + // overload pure virtual methods + virtual int ShowNativeDialog( const String& rTitle, + const String& rMessage, + const std::list< String >& rButtons, + int nDefButton ); + virtual int ShowNativeMessageBox( const String& rTitle, + const String& rMessage, + int nButtonCombination, + int nDefaultButton); }; + #endif // _SV_SALSYS_H diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/saltimer.h ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/saltimer.h --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/saltimer.h 1970-01-01 01:00:00.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/saltimer.h 2006-03-02 01:31:02.000000000 +0100 @@ -0,0 +1,68 @@ +/************************************************************************* +* +* OpenOffice.org - a multi-platform office productivity suite +* +* $RCSfile$ +* +* $Revision$ +* +* last change: $Author$ $Date$ +* +* 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 _SV_SALTIMER_H +#define _SV_SALTIMER_H + +#include +#include +#include + +#ifndef _SV_SALTIMER_HXX +#include +#endif + +class AquaSalTimer : public SalTimer +{ +private: + TMTask mTask; // the timer task + BOOL mbInstalled; // timer task is in queue + long mMS; // current timer interval in msec + BOOL InstallTask(); // installs timer task and returns status + +public: + AquaSalTimer(); + virtual ~AquaSalTimer(); + + // overload all pure virtual methods + void Start( ULONG nMS ); + void Stop(); + + // restarts active tasks using the current timeout + // optional with different timeout (when nMS is != 0) + void ReStart( ULONG nMS = 0 ); +}; + +#endif diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/inc/salvd.h ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salvd.h --- ooo_SRC680_m202_src.orig/vcl/aqua/inc/salvd.h 2005-09-09 12:37:00.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/inc/salvd.h 2007-02-25 08:29:50.000000000 +0100 @@ -56,6 +56,9 @@ #include #endif +#include +#include + #if PRAGMA_ONCE #pragma once #endif @@ -70,11 +73,6 @@ struct SalVirDevData { - SalGraphics *mpGraphics; // current VirDev graphics - USHORT mnBitCount; // GWorld pixel depth - long mnWidth; // GWorld width - long mnHeight; // GWorld height - BOOL mbGraphics; // is Graphics used? }; typedef struct SalVirDevData SalVirDevData; @@ -83,6 +81,32 @@ // ======================================================================= +class AquaSalGraphics; + +// ----------------- +// - SalVirDevData - +// ----------------- + +class AquaSalVirtualDevice : public SalVirtualDevice +{ +private: + bool mbGraphicsUsed; // is Graphics used + bool mbForeignContext; // is mxContext from outside VCL + CGContextRef mxContext; // native graphics context + AquaSalGraphics* mpGraphics; // current VirDev graphics + + void Destroy(); + +public: + AquaSalVirtualDevice( AquaSalGraphics* pGraphic, long nDX, long nDY, USHORT nBitCount, const SystemGraphicsData *pData ); + virtual ~AquaSalVirtualDevice(); + + virtual SalGraphics* GetGraphics(); + virtual void ReleaseGraphics( SalGraphics* pGraphics ); + virtual BOOL SetSize( long nNewDX, long nNewDY ); + virtual void GetSize( long& rWidth, long& rHeight ); +}; + // ======================================================================= #endif // _SV_SALVD_H diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/app/makefile.mk ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/app/makefile.mk --- ooo_SRC680_m202_src.orig/vcl/aqua/source/app/makefile.mk 2005-09-09 12:38:32.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/app/makefile.mk 2006-03-08 22:35:07.000000000 +0100 @@ -38,6 +38,7 @@ PRJNAME=vcl TARGET=salapp .INCLUDE : $(PRJ)$/util$/makefile.pmk +ENABLE_EXCEPTIONS=TRUE # --- Settings ----------------------------------------------------- @@ -55,19 +56,16 @@ .ELSE # "$(GUIBASE)"!="aqua" -OBJFILES= $(OBJ)$/salmain.obj \ - $(OBJ)$/VCLApplication.obj \ - $(OBJ)$/VCLAutoreleasePool.obj +#CFLAGS+=-x objective-c++ + +OBJFILES= $(OBJ)$/salmain.obj SLOFILES= $(SLO)$/salinst.obj \ $(SLO)$/saldata.obj \ $(SLO)$/saltimer.obj \ $(SLO)$/salsound.obj \ $(SLO)$/salsys.obj \ - $(SLO)$/salmain.obj \ - $(SLO)$/VCLApplication.obj \ - $(SLO)$/VCLAutoreleasePool.obj \ - $(SLO)$/VCLEvent.obj + $(SLO)$/salmain.obj EXCEPTIONSFILES=$(SLO)$/salmain.obj \ $(OBJ)$/salmain.obj diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/app/salinst.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/app/salinst.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/app/salinst.cxx 2006-09-17 13:42:16.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/app/salinst.cxx 2007-03-08 09:38:28.000000000 +0100 @@ -44,32 +44,49 @@ #ifndef _SV_SALINST_HXX #include #endif -#ifndef _SV_SALFRAME_HXX -#include +#ifndef _SV_SALINST_H +#include +#endif +#ifndef _SV_SALFRAME_H +#include #endif #ifndef _SV_SALOBJ_HXX #include #endif +#include +#ifndef _SV_SALOBJ_H +#include +#endif #ifndef _SV_SALSYS_HXX #include #endif +#ifndef _SV_SALSYS_H +#include +#endif #ifndef _SV_SALVD_HXX #include #endif +#ifndef _SV_SALVD_H +#include +#endif #ifndef _SV_DIALOG_HXX #include #endif -#ifndef _SV_VCLAPPLICATION_H -#include -#endif -#ifndef _SV_VCLAUTORELEASEPOOL_H -#include -#endif #ifndef _FSYS_HXX #include #endif +#ifndef _SV_SALIMESTATUS_HXX +#include +#endif -static VCLAUTORELEASEPOOL hMainAutoreleasePool = NULL; +#include +#include + +#include + +#include + +using namespace std; // ======================================================================= @@ -94,6 +111,14 @@ // ----------------------------------------------------------------------- +const ::rtl::OUString& SalGetDesktopEnvironment() +{ + static OUString aDesktopEnvironment(RTL_CONSTASCII_USTRINGPARAM( "MacOSX" )); + return aDesktopEnvironment; +} + +// ----------------------------------------------------------------------- + void DeInitSalData() { SalData *pSalData = GetSalData(); @@ -111,80 +136,59 @@ void InitSalMain() { - // [ed] 5/14/02 We need to use _NSGetEnviron() here and can't use the straight - // environ. This is due to two-level-namespaces not enjoying having funky - // global hack symbols lying around. -#ifdef QUARTZ - char **environ; - char *stackNULL=NULL; - if(_NSGetEnviron()) - environ=*_NSGetEnviron(); - else - environ=&stackNULL; -#else - extern char **environ; -#endif - - char **pEnviron; - - // Get full executable path. We cna't use __progname as that only holds - // the name of the executable and not the path. The full executable path - // is listed after the first NULL in *environ. - pEnviron = environ; - while ( *pEnviron++ ) - ; - - // Need to include the absolute path for this executable in the PATH - // and STAR_RESOURCEPATH environment variables so that the resource manager - // can find resource files and in the DYLD_LIBRARY_PATH environment - // variable so that the dynamic library loader can find shared libraries - ByteString aPath( getenv( "PATH" ) ); - ByteString aResPath( getenv( "STAR_RESOURCEPATH" ) ); - ByteString aLibPath( getenv( "DYLD_LIBRARY_PATH" ) ); - ByteString aCmdPath( *pEnviron ); - ByteString aTmpPath; - // Get absolute path of command's directory - if ( aCmdPath.Len() ) { - DirEntry aCmdDirEntry( aCmdPath ); - aCmdDirEntry.ToAbs(); - aCmdPath = ByteString( aCmdDirEntry.GetPath().GetFull(), RTL_TEXTENCODING_ASCII_US ); - } - // Assign to PATH environment variable - if ( aCmdPath.Len() ) - { - aTmpPath = ByteString( "PATH=" ); - aTmpPath += aCmdPath; - if ( aPath.Len() ) - aTmpPath += ByteString( DirEntry::GetSearchDelimiter(), RTL_TEXTENCODING_ASCII_US ); - aTmpPath += aPath; - putenv( aTmpPath.GetBuffer() ); - } - // Assign to STAR_RESOURCEPATH environment variable - if ( aCmdPath.Len() ) - { - aTmpPath = ByteString( "STAR_RESOURCEPATH=" ); - aTmpPath += aCmdPath; - if ( aResPath.Len() ) - aTmpPath += ByteString( DirEntry::GetSearchDelimiter(), RTL_TEXTENCODING_ASCII_US ); - aTmpPath += aResPath; - putenv( aTmpPath.GetBuffer() ); - } - // Assign to DYLD_LIBRARY_PATH environment variable - if ( aCmdPath.Len() ) - { - aTmpPath = ByteString( "DYLD_LIBRARY_PATH=" ); - aTmpPath += aCmdPath; - if ( aLibPath.Len() ) - aTmpPath += ByteString( DirEntry::GetSearchDelimiter(), RTL_TEXTENCODING_ASCII_US ); - aTmpPath += aLibPath; - putenv( aTmpPath.GetBuffer() ); - } + rtl_uString *urlWorkDir = NULL; + rtl_uString *sysWorkDir = NULL; - // Setup up autorelease pool for Objective-C objects - hMainAutoreleasePool = VCLAutoreleasePool_Init(); + oslProcessError err1 = osl_getProcessWorkingDir(&urlWorkDir); - // Initialize application's connection to the window server - VCLApplication_SharedApplication(); + if (err1 == osl_Process_E_None) + { + oslFileError err2 = osl_getSystemPathFromFileURL(urlWorkDir, &sysWorkDir); + if (err2 == osl_File_E_None) + { + ByteString aPath( getenv( "PATH" ) ); + ByteString aResPath( getenv( "STAR_RESOURCEPATH" ) ); + ByteString aLibPath( getenv( "DYLD_LIBRARY_PATH" ) ); + ByteString aCmdPath( OUStringToOString(OUString(sysWorkDir), RTL_TEXTENCODING_UTF8).getStr() ); + ByteString aTmpPath; + // Get absolute path of command's directory + if ( aCmdPath.Len() ) { + DirEntry aCmdDirEntry( aCmdPath ); + aCmdDirEntry.ToAbs(); + aCmdPath = ByteString( aCmdDirEntry.GetPath().GetFull(), RTL_TEXTENCODING_ASCII_US ); + } + // Assign to PATH environment variable + if ( aCmdPath.Len() ) + { + aTmpPath = ByteString( "PATH=" ); + aTmpPath += aCmdPath; + if ( aPath.Len() ) + aTmpPath += ByteString( DirEntry::GetSearchDelimiter(), RTL_TEXTENCODING_ASCII_US ); + aTmpPath += aPath; + putenv( (char*)aTmpPath.GetBuffer() ); + } + // Assign to STAR_RESOURCEPATH environment variable + if ( aCmdPath.Len() ) + { + aTmpPath = ByteString( "STAR_RESOURCEPATH=" ); + aTmpPath += aCmdPath; + if ( aResPath.Len() ) + aTmpPath += ByteString( DirEntry::GetSearchDelimiter(), RTL_TEXTENCODING_ASCII_US ); + aTmpPath += aResPath; + putenv( (char*)aTmpPath.GetBuffer() ); + } + // Assign to DYLD_LIBRARY_PATH environment variable + if ( aCmdPath.Len() ) + { + aTmpPath = ByteString( "DYLD_LIBRARY_PATH=" ); + aTmpPath += aCmdPath; + if ( aLibPath.Len() ) + aTmpPath += ByteString( DirEntry::GetSearchDelimiter(), RTL_TEXTENCODING_ASCII_US ); + aTmpPath += aLibPath; + putenv( (char*)aTmpPath.GetBuffer() ); + } + } + } } // ----------------------------------------------------------------------- @@ -192,7 +196,7 @@ void DeInitSalMain() { // Release autorelease pool - VCLAutoreleasePool_Release( hMainAutoreleasePool ); + //VCLAutoreleasePool_Release( hMainAutoreleasePool ); } @@ -200,9 +204,9 @@ void SetFilterCallback( void* pCallback, void* pInst ) { - SalData *pSalData = GetSalData(); - pSalData->mpFirstInstance->maInstData.mpFilterCallback = pCallback; - pSalData->mpFirstInstance->maInstData.mpFilterInst = pInst; + // SalData *pSalData = GetSalData(); + //[fheckl]pSalData->mpFirstInstance->mpFilterCallback = pCallback; + //[fheckl]pSalData->mpFirstInstance->mpFilterInst = pInst; } // ======================================================================= @@ -237,23 +241,56 @@ { mnThreadId = NAMESPACE_VOS(OThread)::getCurrentIdentifier(); mnCount++; - return True; + return sal_True; } else - return False; + return sal_False; +} + +// ----------------------------------------------------------------------- + +// some convenience functions regarding the yield mutex, aka solar mutex + +BOOL ImplSalYieldMutexTryToAcquire() +{ + AquaSalInstance* pInst = (AquaSalInstance*) GetSalData()->mpFirstInstance; + if ( pInst ) + return pInst->mpSalYieldMutex->tryToAcquire(); + else + return FALSE; +} + +void ImplSalYieldMutexAcquire() +{ + AquaSalInstance* pInst = (AquaSalInstance*) GetSalData()->mpFirstInstance; + if ( pInst ) + pInst->mpSalYieldMutex->acquire(); +} + +void ImplSalYieldMutexRelease() +{ + AquaSalInstance* pInst = (AquaSalInstance*) GetSalData()->mpFirstInstance; + if ( pInst ) + { + //GdiFlush(); + pInst->mpSalYieldMutex->release(); + } } // ======================================================================= SalInstance* CreateSalInstance() { - SalData* pSalData = GetSalData(); - SalInstance* pInst = new SalInstance; + SalData* pSalData = GetSalData(); + AquaSalInstance* pInst = new AquaSalInstance; + + EventLoopTimerUPP eventLoopTimer = NewEventLoopTimerUPP(AquaSalInstance::TimerEventHandler); + InstallEventLoopTimer(GetMainEventLoop(), 1, 0, eventLoopTimer, pInst, &pInst->mEventLoopTimerRef); - // init instance (only one instance in this version !!!) - pSalData->mpFirstInstance = pInst; + // init instance (only one instance in this version !!!) + pSalData->mpFirstInstance = pInst; - return pInst; + return pInst; } // ----------------------------------------------------------------------- @@ -265,34 +302,66 @@ // ----------------------------------------------------------------------- -SalInstance::SalInstance() +AquaSalInstance::AquaSalInstance() +{ + mpFilterCallback = NULL; + mpFilterInst = NULL; + mpSalYieldMutex = new SalYieldMutex; + mEventLoopTimerRef = NULL; + mbForceDispatchPaintEvents = false; + mpSalYieldMutex->acquire(); +} + +// ----------------------------------------------------------------------- + +AquaSalInstance::~AquaSalInstance() { - maInstData.mpFilterCallback = NULL; - maInstData.mpFilterInst = NULL; - maInstData.mpSalYieldMutex = new SalYieldMutex; - maInstData.mpSalYieldMutex->acquire(); + mpSalYieldMutex->release(); + delete mpSalYieldMutex; } // ----------------------------------------------------------------------- -SalInstance::~SalInstance() +void AquaSalInstance::TimerEventHandler(EventLoopTimerRef inTimer, void* pData) { - maInstData.mpSalYieldMutex->release(); - delete maInstData.mpSalYieldMutex; + AquaSalInstance* pInst = reinterpret_cast(pData); + + if (pInst->mbForceDispatchPaintEvents) + { + ULONG nCount = 0; + + // Release all locks so that we don't deadlock when we pull pending + // events from the event queue + nCount = pInst->ReleaseYieldMutex(); + + EventRef theEvent; + EventTargetRef theTarget = GetEventDispatcherTarget(); + + if (ReceiveNextEvent(1, &cOOoSalTimerEvent, 0, true, &theEvent) == noErr) + { + SendEventToEventTarget(theEvent, theTarget); + ReleaseEvent(theEvent); + } + + // Reset all locks + pInst->AcquireYieldMutex(nCount); + + SetEventLoopTimerNextFireTime(inTimer, 1); // restart timer + } } // ----------------------------------------------------------------------- -vos::IMutex* SalInstance::GetYieldMutex() +vos::IMutex* AquaSalInstance::GetYieldMutex() { - return maInstData.mpSalYieldMutex; + return mpSalYieldMutex; } // ----------------------------------------------------------------------- -ULONG SalInstance::ReleaseYieldMutex() +ULONG AquaSalInstance::ReleaseYieldMutex() { - SalYieldMutex* pYieldMutex = maInstData.mpSalYieldMutex; + SalYieldMutex* pYieldMutex = mpSalYieldMutex; if ( pYieldMutex->GetThreadId() == NAMESPACE_VOS(OThread)::getCurrentIdentifier() ) { @@ -312,9 +381,9 @@ // ----------------------------------------------------------------------- -void SalInstance::AcquireYieldMutex( ULONG nCount ) +void AquaSalInstance::AcquireYieldMutex( ULONG nCount ) { - SalYieldMutex* pYieldMutex = maInstData.mpSalYieldMutex; + SalYieldMutex* pYieldMutex = mpSalYieldMutex; while ( nCount ) { pYieldMutex->acquire(); @@ -324,16 +393,36 @@ // ----------------------------------------------------------------------- -void SalInstance::Yield( BOOL bWait ) +void AquaSalInstance::StartForceDispatchingPaintEvents() { - ULONG nCount = 0; + SetEventLoopTimerNextFireTime(mEventLoopTimerRef, 1); + mbForceDispatchPaintEvents = true; +} - // Release all locks so that we don't deadlock when we pull pending - // events from the event queue - nCount = ReleaseYieldMutex(); +void AquaSalInstance::StopForceDispatchingPaintEvents() +{ + mbForceDispatchPaintEvents = false; +} + +void AquaSalInstance::Yield( bool bWait, bool bHandleAllCurrentEvents ) +{ + ULONG nCount = 0; - // Pull pending events from the event queue and dispatch them. - VCLApplication_Run( bWait ); + // Release all locks so that we don't deadlock when we pull pending + // events from the event queue + nCount = ReleaseYieldMutex(); + + EventRef theEvent; + EventTargetRef theTarget = GetEventDispatcherTarget(); + EventTimeout timeout = bWait ? kEventDurationForever : 0; + + if (ReceiveNextEvent(0, NULL, timeout, true, &theEvent) == noErr) + { + //ImplSalYieldMutexAcquire(); + SendEventToEventTarget(theEvent, theTarget); + //ImplSalYieldMutexRelease(); + ReleaseEvent(theEvent); + } // Reset all locks AcquireYieldMutex( nCount ); @@ -341,50 +430,53 @@ // ----------------------------------------------------------------------- -BOOL SalInstance::AnyInput( USHORT nType ) +bool AquaSalInstance::AnyInput( USHORT nType ) { return FALSE; } // ----------------------------------------------------------------------- -SalFrame* SalInstance::CreateChildFrame( SystemParentData* pSystemParentData, ULONG nSalFrameStyle ) +SalFrame* AquaSalInstance::CreateChildFrame( SystemParentData* pSystemParentData, ULONG nSalFrameStyle ) { return NULL; } // ----------------------------------------------------------------------- -SalFrame* SalInstance::CreateFrame( SalFrame* pParent, ULONG nSalFrameStyle ) +SalFrame* AquaSalInstance::CreateFrame( SalFrame* pParent, ULONG nSalFrameStyle ) { - SalFrame *pFrame = new SalFrame; - - pFrame->maFrameData.mpParent = pParent; + SalFrame* pFrame = NULL; - // Create the native window - pFrame->maFrameData.mhWnd = VCLWindow_New( nSalFrameStyle, NULL, - pFrame, &(pFrame->maFrameData) ); - - return pFrame; + try + { + pFrame = new AquaSalFrame(pParent, nSalFrameStyle, this); + } + catch(runtime_error&) + { + // frame creation failed + } + return pFrame; } // ----------------------------------------------------------------------- -void SalInstance::DestroyFrame( SalFrame* pFrame ) +void AquaSalInstance::DestroyFrame( SalFrame* pFrame ) { delete pFrame; } // ----------------------------------------------------------------------- -SalObject* SalInstance::CreateObject( SalFrame* pParent ) +SalObject* AquaSalInstance::CreateObject( SalFrame* pParent, SystemWindowData* /* pWindowData */ ) { - SalObject *pObject = NULL; + // SystemWindowData is meaningless on Mac OS X + AquaSalObject *pObject = NULL; if ( pParent ) { - pObject = new SalObject; - pObject->maObjectData.mpFrame = pParent; + pObject = new AquaSalObject(); + pObject->mpFrame = (AquaSalFrame*)pParent; } return pObject; @@ -392,116 +484,159 @@ // ----------------------------------------------------------------------- -void SalInstance::DestroyObject( SalObject* pObject ) +void AquaSalInstance::DestroyObject( SalObject* pObject ) { delete ( pObject ); } // ----------------------------------------------------------------------- -SalVirtualDevice* SalInstance::CreateVirtualDevice( SalGraphics* pGraphics, - long nDX, long nDY, USHORT nBitCount ) +SalPrinter* AquaSalInstance::CreatePrinter( SalInfoPrinter* pInfoPrinter ) +{ + return NULL; +} + +// ----------------------------------------------------------------------- + +void AquaSalInstance::DestroyPrinter( SalPrinter* pPrinter ) +{ +} + +// ----------------------------------------------------------------------- + +void AquaSalInstance::GetPrinterQueueInfo( ImplPrnQueueList* pList ) +{ +} + +// ----------------------------------------------------------------------- + +void AquaSalInstance::GetPrinterQueueState( SalPrinterQueueInfo* pInfo ) { - SalVirtualDevice *pVirDev = new SalVirtualDevice; +} - // Cache values for when SalVirtualDevice::GetGraphics() is invoked - pVirDev->maVirDevData.mnBitCount = nBitCount; - pVirDev->maVirDevData.mnWidth = nDX; - pVirDev->maVirDevData.mnHeight = nDY; +// ----------------------------------------------------------------------- - return pVirDev; +void AquaSalInstance::DeletePrinterQueueInfo( SalPrinterQueueInfo* pInfo ) +{ } // ----------------------------------------------------------------------- -void SalInstance::DestroyVirtualDevice( SalVirtualDevice* pDevice ) +XubString AquaSalInstance::GetDefaultPrinter() { - delete pDevice; + return XubString(); } // ----------------------------------------------------------------------- -SalPrinter* SalInstance::CreatePrinter( SalInfoPrinter* pInfoPrinter ) +SalInfoPrinter* AquaSalInstance::CreateInfoPrinter( SalPrinterQueueInfo* pQueueInfo, + ImplJobSetup* pSetupData ) { return NULL; } // ----------------------------------------------------------------------- -void SalInstance::DestroyPrinter( SalPrinter* pPrinter ) +void AquaSalInstance::DestroyInfoPrinter( SalInfoPrinter* pPrinter ) { } // ----------------------------------------------------------------------- -void SalInstance::GetPrinterQueueInfo( ImplPrnQueueList* pList ) +SalSystem* AquaSalInstance::CreateSystem() { + return new AquaSalSystem(); } // ----------------------------------------------------------------------- -void SalInstance::GetPrinterQueueState( SalPrinterQueueInfo* pInfo ) +void AquaSalInstance::DestroySystem( SalSystem* pSystem ) { + delete pSystem; } // ----------------------------------------------------------------------- -void SalInstance::DeletePrinterQueueInfo( SalPrinterQueueInfo* pInfo ) +void AquaSalInstance::SetEventCallback( void* pInstance, bool(*pCallback)(void*,void*,int) ) { } // ----------------------------------------------------------------------- -XubString SalInstance::GetDefaultPrinter() +void AquaSalInstance::SetErrorEventCallback( void* pInstance, bool(*pCallback)(void*,void*,int) ) { - return XubString(); } // ----------------------------------------------------------------------- -SalInfoPrinter* SalInstance::CreateInfoPrinter( SalPrinterQueueInfo* pQueueInfo, - ImplJobSetup* pSetupData ) +void* AquaSalInstance::GetConnectionIdentifier( ConnectionIdentifierType& rReturnedType, int& rReturnedBytes ) { - return NULL; + rReturnedBytes = 1; + rReturnedType = AsciiCString; + return (void*)""; } // ----------------------------------------------------------------------- -void SalInstance::DestroyInfoPrinter( SalInfoPrinter* pPrinter ) +SalSound* AquaSalInstance::CreateSalSound() { + return new AquaSalSound(); } // ----------------------------------------------------------------------- -SalSystem* SalInstance::CreateSystem() +SalTimer* AquaSalInstance::CreateSalTimer() { - return new SalSystem(); + return new AquaSalTimer(); } // ----------------------------------------------------------------------- -void SalInstance::DestroySystem( SalSystem* pSystem ) +SalOpenGL* AquaSalInstance::CreateSalOpenGL( SalGraphics* pGraphics ) { - delete pSystem; + return new AquaSalOpenGL( pGraphics ); } // ----------------------------------------------------------------------- -void SalInstance::SetEventCallback( void* pInstance, bool(*pCallback)(void*,void*,int) ) +SalSystem* AquaSalInstance::CreateSalSystem() { + return new AquaSalSystem(); } // ----------------------------------------------------------------------- -void SalInstance::SetErrorEventCallback( void* pInstance, bool(*pCallback)(void*,void*,int) ) +SalBitmap* AquaSalInstance::CreateSalBitmap() { + return new AquaSalBitmap(); } // ----------------------------------------------------------------------- -void* SalInstance::GetConnectionIdentifier( ConnectionIdentifierType& rReturnedType, int& rReturnedBytes ) +SalSession* AquaSalInstance::CreateSalSession() { - rReturnedBytes = 1; - rReturnedType = AsciiCString; - return ""; + return NULL; } + +// ----------------------------------------------------------------------- + +class MacImeStatus : public SalI18NImeStatus +{ +public: + MacImeStatus() {} + virtual ~MacImeStatus() {} + + // asks whether there is a status window available + // to toggle into menubar + virtual bool canToggle() { return false; } + virtual void toggle() {} +}; + +// ----------------------------------------------------------------------- + +SalI18NImeStatus* AquaSalInstance::CreateI18NImeStatus() +{ + return new MacImeStatus(); +} + +////////////////////////////////////////////////////////////// diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/app/salmain.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/app/salmain.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/app/salmain.cxx 2006-09-17 13:42:29.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/app/salmain.cxx 2006-10-14 15:27:58.000000000 +0200 @@ -36,10 +36,12 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_vcl.hxx" +#include + #include #ifndef _SAL_MAIN_H_ -#include "sal/main.h" +#include #endif #ifndef _SV_SALINST_HXX diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/app/salsound.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/app/salsound.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/app/salsound.cxx 2006-09-17 13:42:43.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/app/salsound.cxx 2006-10-14 15:28:13.000000000 +0200 @@ -36,19 +36,19 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_vcl.hxx" -#ifndef _SV_SALSOUND_HXX -#include +#ifndef _SV_SALSOUND_H +#include #endif // ======================================================================== // Initialize static data members -ULONG SalSound::mnSoundState = SOUND_STATE_UNLOADED; +ULONG AquaSalSound::mnSoundState = SOUND_STATE_UNLOADED; // ======================================================================== -SalSound::SalSound() : +AquaSalSound::AquaSalSound() : mpProc ( NULL ), mbLoop ( FALSE ), mbPaused ( FALSE ) @@ -57,52 +57,85 @@ // ------------------------------------------------------------------------ -SalSound::~SalSound() +AquaSalSound::~AquaSalSound() { Stop(); } // ------------------------------------------------------------------------ -BOOL SalSound::Create() -{ - return FALSE; -} +//BOOL AquaSalSound::Create() +//{ +// return FALSE; +//} // ------------------------------------------------------------------------ -void SalSound::Release() +void AquaSalSound::Release() { } // ------------------------------------------------------------------------ -BOOL SalSound::Init( SalFrame* pFrame, const XubString& rSoundName, ULONG& rSoundLen ) +bool AquaSalSound::Init( /*SalFrame* pFrame,*/ const String& rSoundName, ULONG& rSoundLen ) { return FALSE; } // ------------------------------------------------------------------------ -BOOL SalSound::Init( SalFrame* pFrame, const BYTE* pSound, ULONG nDataLen, ULONG& rSoundLen ) +//BOOL AquaSalSound::Init( SalFrame* pFrame, const BYTE* pSound, ULONG nDataLen, ULONG& rSoundLen ) +//{ +// return FALSE; +//} + +// ------------------------------------------------------------------------ + +void AquaSalSound::Play( ULONG nStartTime, ULONG nPlayLen, bool bLoop ) { - return FALSE; } // ------------------------------------------------------------------------ -void SalSound::Play( ULONG nStartTime, ULONG nPlayLen, BOOL bLoop ) +void AquaSalSound::Stop() { } // ------------------------------------------------------------------------ -void SalSound::Stop() +void AquaSalSound::Pause() { } -// ------------------------------------------------------------------------ -void SalSound::Pause() + + + + + + + +bool AquaSalSound::IsValid() +{ + return false; +} + +void AquaSalSound::Continue() +{ + +} + +bool AquaSalSound::IsLoopMode() const +{ + return false; +} + +bool AquaSalSound::IsPlaying() const +{ + return false; +} + +bool AquaSalSound::IsPaused() const { + return false; } diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/app/salsys.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/app/salsys.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/app/salsys.cxx 2006-09-17 13:42:57.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/app/salsys.cxx 2007-02-17 17:16:49.000000000 +0100 @@ -39,33 +39,96 @@ #ifndef _SV_SALSYS_HXX #include #endif +#ifndef _SV_SALSYS_H +#include +#endif +#include +#include +#include // ======================================================================= -SalSystem::SalSystem() +//AquaSalSystem::AquaSalSystem() +//{ +//} + +// ----------------------------------------------------------------------- + +AquaSalSystem::~AquaSalSystem() { } // ----------------------------------------------------------------------- -SalSystem::~SalSystem() +//bool AquaSalSystem::StartProcess( SalFrame* pFrame, +// const XubString& rFileName, +// const XubString& rParam, +// const XubString& rWorkDir ) +//{ +// return FALSE; +//} + +// ----------------------------------------------------------------------- + +//BOOL AquaSalSystem::AddRecentDoc( SalFrame*, const XubString& rFileName ) +//{ +// return FALSE; +//} + +unsigned int AquaSalSystem::GetDisplayScreenCount() { +/* + CGDirectDisplayID displays[64]; // 64 displays are enough for everyone + CGDisplayCount displayCount; + if( noErr == CGGetActiveDisplayList( 64, displays, &displayCount ) ) + return displayCount; +*/ + return 1; } -// ----------------------------------------------------------------------- +bool AquaSalSystem::IsMultiDisplay() +{ + /* FIXME: add support for multiple displays. */ + return false; +} -BOOL SalSystem::StartProcess( SalFrame* pFrame, - const XubString& rFileName, - const XubString& rParam, - const XubString& rWorkDir ) +unsigned int AquaSalSystem::GetDefaultDisplayNumber() { - return FALSE; + return 0; } -// ----------------------------------------------------------------------- +Rectangle AquaSalSystem::GetDisplayScreenPosSizePixel( unsigned int nScreen ) +{ + CGRect aRect( CGDisplayBounds ( CGMainDisplayID() ) ); + Rectangle aRet( aRect.origin.x, aRect.origin.y, aRect.origin.x + aRect.size.width, aRect.origin.y + aRect.size.height ); + fprintf(stderr,"AquaSalSystem::GetDisplayScreenPosSizePixel(%d) (%ld,%ld,%ld,%ld)\n", nScreen, aRet.nLeft, aRet.nTop, aRet.nRight, aRet.nBottom ); + return aRet; +} + +Rectangle AquaSalSystem::GetDisplayWorkAreaPosSizePixel( unsigned int nScreen ) +{ + return Rectangle(); +} + +rtl::OUString AquaSalSystem::GetScreenName( unsigned int nScreen ) +{ + // FIXME + return rtl::OUString(); +} + +int AquaSalSystem::ShowNativeDialog( const String& rTitle, + const String& rMessage, + const std::list< String >& rButtons, + int nDefButton ) +{ + return 0; +} -BOOL SalSystem::AddRecentDoc( SalFrame*, const XubString& rFileName ) +int AquaSalSystem::ShowNativeMessageBox( const String& rTitle, + const String& rMessage, + int nButtonCombination, + int nDefaultButton) { - return FALSE; + return 0; } diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/app/saltimer.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/app/saltimer.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/app/saltimer.cxx 2006-09-17 13:43:11.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/app/saltimer.cxx 2006-10-14 15:28:53.000000000 +0200 @@ -36,34 +36,122 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_vcl.hxx" -#ifndef _SV_SALTIMER_HXX -#include +#ifndef _SV_SALTIMER_H +#include #endif #ifndef _SV_SALDATA_HXX #include #endif -#ifndef _SV_VCLEVENT_H -#include +#ifndef _SV_SALFRAME_H +#include #endif // ======================================================================= -void SalTimer::Start( ULONG nMS ) + +#define USEMAINTHREAD 1 + +void AquaSalTimerProc ( TMTaskPtr tmTaskPtr ) { - VCLEvent_StartPeriodicEvents( nMS ); -} + ImplSVData* pSVData = ImplGetSVData(); + + AquaSalTimer *pSalTimer = (AquaSalTimer*) pSVData->mpSalTimer; + if( pSalTimer ) + { +#ifdef USEMAINTHREAD + // send event to main thread + SalData* pSalData = GetSalData(); + AquaSalFrame *pFrame = dynamic_cast(pSalData->mpFirstFrame); + + if( pFrame ) + pFrame->PostTimerEvent( pSalTimer ); + // fire again using current timeout as this is a single shot timer + pSalTimer->ReStart(); +#else + // call back directly from timer thread + if( ImplSalYieldMutexTryToAcquire() ) + { + pSalTimer->CallCallback(); + ImplSalYieldMutexRelease(); + + // fire again using current timeout as this is a single shot timer + pSalTimer->ReStart(); + } + else + { + // could not acquire solar mutex, so + // fire again with a short delay (10ms) + //fprintf(stderr, "TIMER: solar mutex not free\n"); + pSalTimer->ReStart( 10 ); + } + +#endif + } +} // ----------------------------------------------------------------------- -void SalTimer::Stop() +AquaSalTimer::AquaSalTimer( ) { - VCLEvent_StopPeriodicEvents(); + mbInstalled = FALSE; + mMS = 0; + mTask.tmAddr = NewTimerUPP( AquaSalTimerProc ); +} + +AquaSalTimer::~AquaSalTimer() +{ + if( mbInstalled ) + RemoveTimeTask( (QElemPtr) &mTask ); + DisposeTimerUPP( mTask.tmAddr ); } // ----------------------------------------------------------------------- -void SalTimer::SetCallback( SALTIMERPROC pProc ) +void AquaSalTimer::Start( ULONG nMS ) { - SalData* pSalData = GetSalData(); - pSalData->mpTimerProc = pProc; + // cancel current timer + if( mbInstalled ) + RemoveTimeTask( (QElemPtr) &mTask ); + + // store new timeout + mMS = nMS; + + // install the timer task + mbInstalled = InstallTask(); + + // fire + if( mbInstalled ) + PrimeTimeTask( (QElemPtr) &mTask, mMS ); } + +void AquaSalTimer::ReStart( ULONG nMS ) +{ + if( mbInstalled ) + // use current timeout if nMS == 0 + PrimeTimeTask( (QElemPtr) &mTask, nMS ? nMS : mMS ); +} + +void AquaSalTimer::Stop() +{ + if( mbInstalled ) + { + RemoveTimeTask( (QElemPtr) &mTask ); + mbInstalled = FALSE; + } +} + +BOOL AquaSalTimer::InstallTask() +{ + // install the timer task + mTask.tmWakeUp = 0; + mTask.tmCount = 0; + if( InstallTimeTask( (QElemPtr) &mTask ) == noErr ) + return TRUE; + else + { + fprintf(stderr, "Could not install timer task!\n"); + return FALSE; + } +} + +// ----------------------------------------------------------------------- diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/makefile.mk ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/makefile.mk --- ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/makefile.mk 2005-09-09 12:40:51.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/makefile.mk 2007-03-08 21:46:44.000000000 +0100 @@ -56,14 +56,14 @@ .ELSE # "$(GUIBASE)"!="aqua" SLOFILES= $(SLO)$/salmathutils.obj \ - $(SLO)$/salrectangleutils.obj \ $(SLO)$/salcolorutils.obj \ $(SLO)$/salpixmaputils.obj \ $(SLO)$/salgdiutils.obj \ + $(SLO)$/salnativewidgets.obj \ $(SLO)$/salatsuifontutils.obj \ + $(SLO)$/salatslayout.obj \ $(SLO)$/salfontutils.obj \ $(SLO)$/salgdi.obj \ - $(SLO)$/VCLGraphics.obj \ $(SLO)$/salvd.obj \ $(SLO)$/salprn.obj \ $(SLO)$/salbmp.obj \ diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salatslayout.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salatslayout.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salatslayout.cxx 1970-01-01 01:00:00.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salatslayout.cxx 2007-03-18 16:46:05.000000000 +0100 @@ -0,0 +1,1195 @@ +/************************************************************************* +* +* OpenOffice.org - a multi-platform office productivity suite +* +* $RCSfile$ +* +* $Revision$ +* +* last change: $Author$ $Date$ +* +* 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 _SV_SALGDI_HXX +#include +#endif +#ifndef _SV_SALDATA_HXX +#include +#endif +#ifndef _SV_SALGDI_H +#include +#endif +//#ifndef _SV_SALGDIUTILS_HXX +//#include +//#endif + +#ifndef _SV_SALLAYOUT_HXX +#include +#endif + +#include +#include +#include +#include + +#include +#include +const sal_Char *dbg_dump(const rtl::OString &rStr) +{ + static rtl::OStringBuffer aStr; + + aStr = rtl::OStringBuffer(rStr); + aStr.append(static_cast(0)); + return aStr.getStr(); +} + +const sal_Char *dbg_dump(const rtl::OUString &rStr) +{ + return dbg_dump(rtl::OUStringToOString(rStr, RTL_TEXTENCODING_UTF8)); +} + +const sal_Char *dbg_dump(rtl_String *pStr) +{ + return dbg_dump(rtl::OString(pStr)); +} + +const sal_Char *dbg_dump(rtl_uString *pStr) +{ + return dbg_dump(rtl::OUString(pStr)); +} + +const sal_Char *dbg_dump(sal_Unicode *pStr) +{ + return dbg_dump(rtl::OUString(pStr)); +} + + + +#define DROPPED_OUTGLYPH 0xFFFF + +inline int Float32ToInt( Float32 f ) { return (int)(f+0.5); } + +// ======================================================================= + +CFPropertyListRef MyATSFontQueryCallback ( + ATSFontQueryMessageID msgid, + CFPropertyListRef data, + void * iRefCon) +{ + fprintf(stderr,">>>>>>>> MyATSFontQueryCallback\n"); + return NULL; +}; + +// ======================================================================= + +class ATSLayout : public SalLayout +{ +public: + ATSLayout( AquaSalGraphics *pGraphics ); + ~ATSLayout(); + + virtual bool LayoutText( ImplLayoutArgs& ); + virtual void AdjustLayout( ImplLayoutArgs& ); + virtual void DrawText( SalGraphics& ) const; + + virtual int GetNextGlyphs( int nLen, long* pGlyphs, Point& rPos, int&, + long* pGlyphAdvances, int* pCharIndexes ) const; + + virtual long GetTextWidth() const; + virtual long FillDXArray( long* pDXArray ) const; + virtual int GetTextBreak( long nMaxWidth, long nCharExtra, int nFactor ) const; + virtual void GetCaretPositions( int nArraySize, long* pCaretXArray ) const; + virtual bool GetGlyphOutlines( SalGraphics&, PolyPolyVector& ) const; + virtual bool GetBoundRect( SalGraphics&, Rectangle& ) const; + + // for glyph+font+script fallback + virtual void InitFont(); + virtual void MoveGlyph( int nStart, long nNewXPos ); + virtual void DropGlyph( int nStart ); + virtual void Simplify( bool bIsBase ); + +private: + AquaSalGraphics * mpGraphics; + ATSUTextLayout maATSULayout; + UniCharArrayOffset mnTextOfs; + UniCharCount mnTextLen; + mutable int mnGlyphCount; // Glyph count + mutable int mnCharCount; // Character count + mutable long mnWidth; // Layout width + bool mbDisableGlyphs; + int mnNotdefWidth; + BYTE mnCharSet; + int mnBaseAdv; // x-offset relative to Layout origin + +private: + bool InitGIA() const; + mutable int* mpGlyphsIDs; // Glyphs IDs + mutable int* mpGlyphsRealPos; + mutable int* mpCharWidths; // map rel char pos to charwidth + mutable int* mpChars2Glyphs; // map rel char pos to abs glyph pos + mutable int* mpGlyphs2Chars; // map abs glyph pos to abs char pos + mutable bool* mpGlyphRTLFlags; // BiDi status for glyphs: true=>RTL + mutable int* mpGlyphAdvances; // Contains glyph complete width for each glyph in current layout + mutable int* mpGlyphOrigAdvs; // Saves mpGlyphAdvances + mutable float* mpDeltaY; //Delta Y from baseline + mutable sal_Unicode* mpOutGlyphs; + mutable CFRunLoopSourceRef mrCFRunLoopSourceRef; + +}; + + +// ======================================================================= + +ATSLayout::ATSLayout( AquaSalGraphics *pGraphics ) +: mpGraphics( pGraphics ), + maATSULayout( NULL ), + mnTextOfs( 0 ), + mnTextLen( 0 ), + mnBaseAdv( 0 ), + mpGlyphsIDs( NULL ), + mpGlyphsRealPos( NULL ), + mpCharWidths( NULL ), + mpChars2Glyphs( NULL ), + mpGlyphs2Chars( NULL ), + mpGlyphRTLFlags( NULL ), + mpGlyphAdvances( NULL ), + mpGlyphOrigAdvs( NULL ), + mpDeltaY( NULL ), + mpOutGlyphs( NULL ), + mrCFRunLoopSourceRef( NULL ) +{ +} + +// ----------------------------------------------------------------------- + +ATSLayout::~ATSLayout() +{ + fprintf(stderr,"--->%s\n",__func__); + + if ( maATSULayout ) + ATSUDisposeTextLayout( maATSULayout ); + + if(mpGlyphRTLFlags) + delete[] mpGlyphRTLFlags; + delete[] mpGlyphs2Chars; + delete[] mpChars2Glyphs; + if( mpCharWidths != mpGlyphAdvances ) + delete[] mpCharWidths; + delete[] mpGlyphOrigAdvs; + delete[] mpGlyphAdvances; + delete[] mpOutGlyphs; + delete []mpDeltaY; + delete []mpGlyphsIDs; + delete []mpGlyphsRealPos; +} + +// ----------------------------------------------------------------------- +/** + * ATSLayout::LayoutText : Manage text layouting + * + * @param rArgs: contains array of char to be layouted, starting and ending position of the text to layout + * + * Manage text layouting : choose glyph to represent characters using the style maATSUStyle + * + * @return : true if everything is ok +**/ +bool ATSLayout::LayoutText( ImplLayoutArgs& rArgs ) +{ + + + fprintf(stderr,"-->%s - mnTextOfs:%d in %d : %s\n",__func__,rArgs.mnMinCharPos,rArgs.mnLength,dbg_dump(rArgs.mpStr)); + + if( maATSULayout ){ + ATSUDisposeTextLayout( maATSULayout ); + } + + maATSULayout = NULL; + OSStatus theErr; + + // Layout text + // set up our locals, verify parameters... + if (rArgs.mpStr == NULL || mpGraphics->maATSUStyle == NULL) return paramErr; + + // Text Length + mnCharCount = rArgs.mnEndCharPos - rArgs.mnMinCharPos ; + mnTextLen = rArgs.mnEndCharPos - rArgs.mnMinCharPos; + mnTextOfs = rArgs.mnMinCharPos; + mnMinCharPos = rArgs.mnMinCharPos; + mnEndCharPos = rArgs.mnEndCharPos; + + // Workaround a bug in ATSUI with empty string + if(mnCharCount<=0) + return false; + + UniCharCount totalLength = rArgs.mnLength; + UniCharArrayOffset runTo = (rArgs.mnEndCharPos == -1 ? totalLength : (unsigned int)rArgs.mnEndCharPos); + UniCharArrayOffset runFrom = rArgs.mnMinCharPos; + UniCharCount runLength = runTo - runFrom; + + //fprintf(stderr," rArgs.mnMinCharPos:%d rArgs.mnEndCharPos:%d rArgs.mnLength:%d\n",rArgs.mnMinCharPos,rArgs.mnEndCharPos,rArgs.mnLength); + + // create the ATSUI layout + theErr = ATSUCreateTextLayoutWithTextPtr( rArgs.mpStr, runFrom, + runLength, totalLength, 1, + &runLength, &mpGraphics->maATSUStyle, + &maATSULayout); + + if( theErr == noErr ){ + //fprintf( stderr, "ATSUCreateTextLayoutWithTextPtr OK\n"); + // Set pointer location + //FIXME : useful ? + theErr = ATSUSetTextPointerLocation(maATSULayout, rArgs.mpStr, 0, runLength, runLength); + } + else + { + fprintf( stderr, "ATSUCreateTextLayoutWithTextPtr => err=%d\n", (int) theErr); + return false; + } + + // Get infos about glyphs + InitGIA(); + + return true; + +} + +// ----------------------------------------------------------------------- +/** + * ATSLayout::AdjustLayout : Adjust layout style + * + * @param rArgs: contains array of char to be layouted, starting and ending position of the text to layout + * + * Adjust text layouting : choose glyph to represent characters using the style maATSUStyle + * + * @return : none +**/ +void ATSLayout::AdjustLayout( ImplLayoutArgs& rArgs ) +{ + fprintf(stderr,"-->%s\n",__func__); + + int nPixelWidth = rArgs.mnLayoutWidth; + if( !nPixelWidth && rArgs.mpDXArray ) { + // for now we are only interested in the layout width + // TODO: account for individual logical widths + nPixelWidth = rArgs.mpDXArray[ mnTextLen - 1 ]; + } + // return early if there is nothing to do + if( !nPixelWidth ) + return; + + ATSUAttributeTag nTags[2]; + ATSUAttributeValuePtr nVals[2]; + ByteCount nBytes[2]; + + Fixed nFixedWidth = Long2Fix( nPixelWidth ); + Fixed nFixedOne = Long2Fix( 1 ); + nTags[0] = kATSULineWidthTag; + nBytes[0] = sizeof( Fixed ); + nVals[0] = &nFixedWidth; + nTags[1] = kATSULineJustificationFactorTag; + nBytes[1] = sizeof( Fixed ); + nVals[1] = &nFixedOne; + ATSUSetLayoutControls( maATSULayout, 2, nTags, nBytes, nVals ); +} + +// ----------------------------------------------------------------------- +/** + * ATSLayout::DrawText : Draw text to screen + * + * @param rGraphics: device to draw to + * + * Draw the layouted text to screen and offscreen copy + * + * @return : none +**/ +void ATSLayout::DrawText( SalGraphics& rGraphics ) const +{ + fprintf(stderr,"-->%s\n",__func__); + + OSStatus theErr; + //CGLayerRef mrCGLayer; + //CGContextRef rCGContext; + Rect windowBounds; + ATSUAttributeTag theTags[10]; + ByteCount theSizes[10]; + ATSUAttributeValuePtr theValues[10]; + ItemCount numcontrols = 0; + ATSUAttributeTag theTagsOff[10]; + ByteCount theSizesOff[10]; + ATSUAttributeValuePtr theValuesOff[10]; + ItemCount numcontrolsOff = 0; + long height; + + if( mnTextLen <= 0 ) + return; + + // get posiiton of the beginniing of the line to write + Point aPos = GetDrawPosition( Point(mnBaseAdv, 0) ); + + Rect drawRect; // rect of the size in which we want to draw something + + + if ( mpGraphics->BeginGraphics() ) + { + // Get windows dimensions + GetWindowPortBounds( mpGraphics->mrWindow, &windowBounds ); + height = windowBounds.bottom - windowBounds.top; + // Modify Y for flipped view + aPos.Y() = height - aPos.Y(); + + if(mpGraphics->mrContext != NULL){ + // the flipped view leads to flipped glyphs as well + // so apply another transformation that flips back and adjust y-pos accordingly + + CGContextTranslateCTM ( mpGraphics->mrContext, 0, height ); + CGContextScaleCTM ( mpGraphics->mrContext, 1.0, -1.0 ); + + if (mpGraphics->isOffscreenCopy()) + { + CGContextTranslateCTM ( mpGraphics->mrBitmapContext, 0, height ); + CGContextScaleCTM ( mpGraphics->mrBitmapContext, 1.0, -1.0 ); + } + + + theTags[numcontrols] = kATSUCGContextTag; + theSizes[numcontrols] = sizeof( CGContextRef ); + theValues[numcontrols++] = &(mpGraphics->mrContext); + + } + else + { + fprintf(stderr,"-->%s : mpGraphics->mrContext is NULL\n",__func__); + } + + if (mpGraphics->isOffscreenCopy()){ + theTagsOff[numcontrolsOff] = kATSUCGContextTag; + theSizesOff[numcontrolsOff] = sizeof( CGContextRef ); + theValuesOff[numcontrolsOff++] = &(mpGraphics->mrBitmapContext); + } + + + // Rotate if necessary + if( mpGraphics->mnATSUIRotation != 0 ) + { + Fixed theAngle = Long2Fix( mpGraphics->mnATSUIRotation ); + theTags[numcontrols] = kATSULineRotationTag; + theSizes[numcontrols] = sizeof( Fixed ); + theValues[numcontrols++] = &theAngle; + + + if (mpGraphics->isOffscreenCopy()) + { + theTagsOff[numcontrolsOff] = kATSULineRotationTag; + theSizesOff[numcontrolsOff] = sizeof( Fixed ); + theValuesOff[numcontrolsOff++] = &theAngle; + } + + + } + + // Tell ATSUI to use CoreGraphics + theErr = ATSUSetLayoutControls (maATSULayout, numcontrols, theTags, theSizes, theValues); + + if(theErr == noErr) + { + // Draw the text + theErr = ATSUDrawText( maATSULayout, mnTextOfs, mnTextLen,Long2Fix(aPos.X()), Long2Fix(aPos.Y())); + + // Refresh Rect containing drawn text + OSStatus retVal = ATSUMeasureTextImage( maATSULayout,mnTextOfs, mnTextLen, 0, 0, &drawRect ); + if (retVal != noErr) + fprintf(stderr, "FIXME: ... ATSUMeasureTextImage returned %d!\n", (int) retVal); + mpGraphics->RefreshRect(drawRect.top,drawRect.left,drawRect.right-drawRect.left,drawRect.bottom-drawRect.top); + + if (theErr != noErr) + { + fprintf( stderr, "ATSLayout::DrawText(0x%p) : ATSUDrawText failed!\n", this ); + } + + + if (mpGraphics->isOffscreenCopy()) + { + ATSUSetLayoutControls( maATSULayout, numcontrolsOff, theTagsOff, theSizesOff, theValuesOff ); + + theErr = ATSUDrawText( maATSULayout, mnTextOfs, mnTextLen,Long2Fix(aPos.X()), Long2Fix(aPos.Y())); + + // Draw the text + if( theErr != noErr ) + { + fprintf( stderr, "ATSLayout::DrawText(0x%p) : ATSUDrawText failed for offscreen copy!\n", this ); + } + + } + } + + mpGraphics->EndGraphics(); + } +} + +// ----------------------------------------------------------------------- +/** + * ATSLayout::GetNextGlyphs : Get next glyphs informations + * + * @param nLen: max number of char + * @param pGlyphs: returned array of glyph ids + * @param rPos: returned x starting position + * @param nStart: index of the first requested glyph + * @param pGlyphAdvances: returned array of glyphs advances + * @param pCharIndexes: returned array of char indexes + * + * Returns infos about the next requested glyphs + * + * @return : index of next glyph +**/ +int ATSLayout::GetNextGlyphs( int nLen, long* pGlyphs, Point& rPos, int& nStart, + long* pGlyphAdvances, int* pCharIndexes ) const +{ + fprintf(stderr,"-->%s\n",__func__); + + if( nStart < 0 ) // first glyph requested? + nStart = 0; + + if( nStart >= mnGlyphCount ) // no glyph left? + return 0; + + // calculate glyph position relative to layout base + // TODO: avoid for nStart!=0 case by reusing rPos + long nXOffset = mnBaseAdv; + for( int i = 0; i < nStart; ++i ) + nXOffset += mpGlyphAdvances[ i ]; + + // calculate absolute position in pixel units + Point aRelativePos( nXOffset, 0 ); + rPos = GetDrawPosition( aRelativePos ); + + // update return values {nGlyphIndex,nCharPos,nGlyphAdvance} + int nCount = 0; + while( nCount < nLen ) + { + ++nCount; + *(pGlyphs++) = mpGlyphsIDs[nStart]; + if( pGlyphAdvances ) + *(pGlyphAdvances++) = mpGlyphAdvances[ nStart ]; + if( pCharIndexes ) + { + int nCharPos; + if( mpGlyphs2Chars[nStart] ) + nCharPos = nStart + mnMinCharPos; + else + nCharPos = mpGlyphs2Chars[nStart]; + *(pCharIndexes++) = nCharPos; + } + + // stop at last glyph + if( ++nStart >= mnGlyphCount ) + break; + + // stop when next x-position is unexpected + if( !pGlyphAdvances && mpGlyphOrigAdvs ) + if( mpGlyphAdvances[nStart-1] != mpGlyphOrigAdvs[nStart-1] ) + break; + } + + nStart += nCount; + return nCount; + +} + +// ----------------------------------------------------------------------- +/** + * ATSLayout::GetTextWidth : Get typographic width of layouted text + * + * Get typographic bounds of the text + * + * @return : text width +**/ +long ATSLayout::GetTextWidth() const +{ + fprintf(stderr,"-->%s\n",__func__); + + if(maATSULayout != NULL) + { + ItemCount nBoundsCount = 0; + ATSTrapezoid aTrapez; + ATSUGetGlyphBounds( maATSULayout, 0, 0, mnTextOfs, mnTextLen, kATSUseDeviceOrigins, 1, &aTrapez, &nBoundsCount ); + if( nBoundsCount != 1 ) + return 0; + + long nWidth = Fix2Long( aTrapez.lowerRight.x - aTrapez.lowerLeft.x ); + return ( nWidth ); + } + else + { + fprintf(stderr,"-->%s : maATSULayout is NULL !\n",__func__); + } + + return 0; +} + +// ----------------------------------------------------------------------- +/** + * ATSLayout::FillDXArray : Get DeltaX (GlyphAdvance) and Char widths + * + * @param pDXArray: returned array of DX + * + * Fill the pDXArray with horizontal deltas : GlyphAdvances / CharWidths + * + * @return : mnWidth +**/ +long ATSLayout::FillDXArray( long* pDXArray ) const +{ + fprintf(stderr,"-->%s\n",__func__); + + long nWidth=0; + + if( !mnWidth ) + { + nWidth = mnBaseAdv; + for( int i = 0; i < mnGlyphCount; ++i ) + nWidth += mpGlyphAdvances[ i ]; + + mnWidth = nWidth; + } + + if( pDXArray != NULL ) + { + for( int i = 0; i < mnCharCount; ++i ) + pDXArray[ i ] = mpCharWidths[ i ]; + } + + + return mnWidth; + +} + +// ----------------------------------------------------------------------- +/** + * ATSLayout::GetTextBreak : Find line break depending on width + * + * @param nMaxWidth : maximal width usable + * @param nCharExtra: tolerance by character + * @param nFactor: ? + * + * Find line break with ATSU + * + * @return : position of line break +**/ +int ATSLayout::GetTextBreak( long nMaxWidth, long nCharExtra, int nFactor ) const +{ + fprintf(stderr,"-->%s\n",__func__); + + // nMaxWidth usable is : nMaxWidth / nFactor to which we should substract the nCharExtra (for each char), and the base advance + ATSUTextMeasurement nATSUMaxWidth = Long2Fix( nMaxWidth / nFactor ) + - Long2Fix(nCharExtra * mnCharCount) + - Long2Fix(mnBaseAdv * nFactor); // FIXME : does ATSUBreakLine already take this in account ? + + // TODO: massage ATSUBreakLine to like inword breaks: + // we prefer BreakInWord instead of ATSUBreakLine trying to be smart + // and moving the soft break inbetween words, as the ATSUI API says + UniCharArrayOffset nBreakPos = mnTextOfs; + OSStatus nStatus = ATSUBreakLine( maATSULayout, mnTextOfs, + nATSUMaxWidth, false, &nBreakPos ); + if( (nStatus != noErr) && (nStatus != kATSULineBreakInWord) ) + { + fprintf(stderr,"ATSUBreakLine => %d\n", (int) nStatus); + return( STRING_LEN ); + } + + // FIXME: Set soft break manually (should we set it ?) : nStatus = ATSUSetSoftLineBreak (maATSULayout, nBreakPos); + + return( nBreakPos ); + +} + +// ----------------------------------------------------------------------- +/** + * ATSLayout::GetCaretPositions : Find positions of carets + * + * @param nMaxIndex position to which we want to find the carets + * + * Fill the array of positions of carets (place between glyph where cursor is to be drawn) + * + * @return : none +**/ +void ATSLayout::GetCaretPositions( int nMaxIndex, long* pCaretXArray ) const +{ + fprintf(stderr,"-->%s\n",__func__); + + long nXPos = mnBaseAdv; + + if( !mpGlyphs2Chars ) + { + for( int i = 0; i < nMaxIndex; i += 2 ) + { + pCaretXArray[ i ] = nXPos; + nXPos += mpGlyphAdvances[ i>>1 ]; + pCaretXArray[ i+1 ] = nXPos; + } + } + else + { + int i; + for( i = 0; i < nMaxIndex; ++i ) + pCaretXArray[ i ] = -1; + + // assign glyph positions to character positions + for( i = 0; i < mnGlyphCount; ++i ) + { + + int nCurrIdx = mpGlyphs2Chars[ i ] - mnMinCharPos; + long nXRight = nXPos + mpCharWidths[ nCurrIdx ]; + + //fprintf(stderr,"i=%ld < %ld nCurrIdx=%ld nXPos=%ld nXRight=%ld\n",i,mnGlyphCount,nCurrIdx,nXPos,nXRight); + nCurrIdx *= 2; + if( !(mpGlyphRTLFlags && mpGlyphRTLFlags[i]) ) + { + //fprintf(stderr,"nCurrIdx=%ld nXPos=%ld nXRight=%ld\n",nCurrIdx,nXPos,nXRight); + // normal positions for LTR case + pCaretXArray[ nCurrIdx ] = nXPos; + pCaretXArray[ nCurrIdx+1 ] = nXRight; + } + else + { + //fprintf(stderr,"RTL - nCurrIdx=%ld nXPos=%ld nXRight=%ld\n",nCurrIdx,nXPos,nXRight); + // reverse positions for RTL case + pCaretXArray[ nCurrIdx ] = nXRight; + pCaretXArray[ nCurrIdx+1 ] = nXPos; + } + nXPos += mpGlyphAdvances[ i ]; + } + } + +} + +// ----------------------------------------------------------------------- +/** + * ATSLayout::GetBoundRect : Get rectangle dim containing the layouted text + * + * @param rVCLRect: rectangle of text image (layout) measures + * + * Get ink bounds of the text + * + * @return : true +**/ +bool ATSLayout::GetBoundRect( SalGraphics&, Rectangle& rVCLRect ) const +{ + Rect aMacRect; + ATSUMeasureTextImage( maATSULayout, + mnTextOfs, mnTextLen, 0, 0, &aMacRect ); + rVCLRect.Left() = aMacRect.left; + rVCLRect.Top() = aMacRect.top; + rVCLRect.Right() = aMacRect.right; + rVCLRect.Bottom() = aMacRect.bottom; + return true; +} + +// ----------------------------------------------------------------------- +/** + * ATSLayout::InitGIA() : Get many informations about layouted text + * + * Fills arrays of information about the layouting of glyph previuosly done + * in ASTLayout::LayoutText() : glyph advance (width), glyph delta Y (from baseline), mapping between + * glyph index and character index, chars widths + * + * @return : true if everything could be computed, otherwise false +**/ +bool ATSLayout::InitGIA() const +{ + fprintf(stderr,"-->%s\n",__func__); + + OSStatus theErr; + ATSLayoutRecord* mpLRC;// ATSLayoutRecordCurrent + + // Workaround a bug in ATSUI with empty string + if(mnCharCount<=0) + return false; + + // Count glyphs + mnGlyphCount = 0; + ItemCount iLayoutDataCount; + ATSUDirectDataSelector iDataSelector = NULL; + iDataSelector = kATSUDirectDataLayoutRecordATSLayoutRecordCurrent; + /* Return an array of ATSLayoutRecord : + struct ATSLayoutRecord { + ATSGlyphRef glyphID; + ATSGlyphInfoFlags flags; + ByteCount originalOffset; + Fixed realPos; + };*/ + + theErr = ATSUDirectGetLayoutDataArrayPtrFromTextLayout(maATSULayout, + mnTextOfs,iDataSelector,(void**)&mpLRC,&iLayoutDataCount); + + if( theErr == noErr ){ + + mnGlyphCount = iLayoutDataCount - 1;// Do not count terminator glyph + + //fprintf( stderr, "mpLRC ok - mnglyphCount : %d\n",mnGlyphCount); + + mpGlyphsIDs = new int[mnGlyphCount]; + mpGlyphsRealPos = new int[mnGlyphCount]; + + for(int id=0;id err=%d\n", (int) theErr); + return false; + } + + // Get DeltaY array + ItemCount iLayoutDataCount2; + iDataSelector = kATSUDirectDataBaselineDeltaFixedArray; + void * mpDeltaYPtr; + + theErr = ATSUDirectGetLayoutDataArrayPtrFromTextLayout(maATSULayout, + mnTextOfs,iDataSelector,&mpDeltaYPtr,&iLayoutDataCount2); + + if( theErr == noErr ){ + //fprintf( stderr, "mpDeltaY ok - iLayoutDataCount2: %d\n",iLayoutDataCount2); + mpDeltaY = reinterpret_cast( mpDeltaYPtr ); + } + else + { + fprintf( stderr, "mpDeltaY - ATSUDirectGetLayoutDataArrayPtrFromTextLayout => err=%d\n", (int) theErr); + return false; + } + + //fprintf(stderr,"mnGlyphCount %d - iLayoutDataCount %d\n",mnGlyphCount,iLayoutDataCount); + + // Get GlyphAdvances and store them : ATSUGlyphGetIdealMetrics give it in ideal measure + if(mpGraphics->maATSUStyle != NULL) + { + mnWidth = 0; + mpGlyphAdvances = new int[mnGlyphCount]; + mpGlyphOrigAdvs = new int[mnGlyphCount]; + mpCharWidths = new int[mnCharCount]; + mpGlyphs2Chars = new int[mnGlyphCount]; + mpChars2Glyphs = new int[mnCharCount]; + ATSGlyphIdealMetrics *oIdealMetrics = new ATSGlyphIdealMetrics[1]; + + // initialize glyph width mapping to char to zero + for( int n = 0; n < mnCharCount; ++n ) + mpCharWidths[ n ] = 0; + + mnWidth = mnBaseAdv; + int j; + GlyphID iGlyphIDs; + + // Get infos glyph by glyph because with array of glyph ATSU always give the first glyph's measures + for(int id=0;idmaATSUStyle, mnGlyphCount, &iGlyphIDs,sizeof(GlyphID), oIdealMetrics); + theErr = ATSUGlyphGetIdealMetrics (mpGraphics->maATSUStyle, 1, &iGlyphIDs,0, oIdealMetrics); + //} + if( theErr == noErr ){ + //fprintf( stderr, "%d ieme has advance.x: %d - ATSUGlyphGetIdealMetrics ok\n",id,(int)oIdealMetrics[id].advance.x); + mpGlyphAdvances[id] = Float32ToInt(oIdealMetrics[0].advance.x); + mpGlyphOrigAdvs[id] = mpGlyphAdvances[id]; + mnWidth += Float32ToInt(mpGlyphAdvances[id]); + + // Map glyph width to character array + mpGlyphs2Chars[ id ] = (mpLRC[id].originalOffset)/2;// - mnTextOfs; + //bugged : mpChars2Glyphs[ mpGlyphs2Chars[ id ] - mnMinCharPos] = id; + mpChars2Glyphs[ mpGlyphs2Chars[ id ]] = id; + j = mpGlyphs2Chars[ id ];// - mnMinCharPos; + //fprintf( stderr, "Char Index for mpCharWidths: %d - originalOffset : %d - NbByte : %d\n",j, + // mpLRC[i].originalOffset,mpLRC[i].flags && kATSGlyphInfoByteSizeMask); + if( j >= 0 ){ + //fprintf( stderr, "Char Index for mpCharWidths: %d\n",j); + mpCharWidths[j] = mpGlyphAdvances[id]; + } + + } + else + { + fprintf( stderr, "ATSUGlyphGetIdealMetrics => err=%d\n", (int)theErr); + return false; + } + }// for id + + if(oIdealMetrics) + delete[]oIdealMetrics; + + }//if layout was ok + + + // Release data array ptr + ATSUDirectReleaseLayoutDataArrayPtr(NULL, + kATSUDirectDataLayoutRecordATSLayoutRecordCurrent, + (void**)&mpLRC); + ATSUDirectReleaseLayoutDataArrayPtr(NULL, + kATSUDirectDataBaselineDeltaFixedArray, + (void**) &mpDeltaYPtr); + + + fprintf(stderr,"Fin InitGIA\n"); + + return true; +} + +// ======================================================================= + +#if 0 +// helper class to convert ATSUI outlines to VCL PolyPolygons +class PolyArgs +{ +public: + PolyArgs(); + ~PolyArgs(); + + void Init( PolyPolygon* pPolyPoly, long nXOffset, long nYOffset ); + void AddPoint( const Float32Point&, PolyFlags ); + void ClosePolygon(); + +private: + PolyPolygon* mpPolyPoly; + long mnXOffset, mnYOffset; + + Point* mpPointAry; + BYTE* mpFlagAry; + USHORT mnMaxPoints; + + USHORT mnPointCount; + USHORT mnPolyCount; + bool mbHasOffline; +}; + +// ----------------------------------------------------------------------- + +PolyArgs::PolyArgs() +: mpPolyPoly(NULL), + mnPointCount(0), + mnPolyCount(0), + mbHasOffline(false) +{ + mnMaxPoints = 256; + mpPointAry = new Point[ mnMaxPoints ]; + mpFlagAry = new BYTE [ mnMaxPoints ]; +} + +// ----------------------------------------------------------------------- + +PolyArgs::~PolyArgs() +{ + delete[] mpFlagAry; + delete[] mpPointAry; +} + +// ----------------------------------------------------------------------- + +void PolyArgs::Init( PolyPolygon* pPolyPoly, long nXOffset, long nYOffset ) +{ + mnXOffset = nXOffset; + mnYOffset = nYOffset; + mpPolyPoly = pPolyPoly; + + mpPolyPoly->Clear(); + mnPointCount = 0; + mnPolyCount = 0; +} + +// ----------------------------------------------------------------------- + +void PolyArgs::AddPoint( const Float32Point& rPoint, PolyFlags eFlags ) +{ + if( mnPointCount >= mnMaxPoints ) + { + // resize if needed (TODO: use STL?) + mnMaxPoints *= 4; + Point* mpNewPoints = new Point[ mnMaxPoints ]; + BYTE* mpNewFlags = new BYTE[ mnMaxPoints ]; + for( int i = 0; i < mnPointCount; ++i ) + { + mpNewPoints[ i ] = mpPointAry[ i ]; + mpNewFlags[ i ] = mpFlagAry[ i ]; + } + delete[] mpFlagAry; + delete[] mpPointAry; + mpPointAry = mpNewPoints; + mpFlagAry = mpNewFlags; + } + + // convert to pixels and add startpoint offset + int nXPos = Float32ToInt( rPoint.x ); + int nYPos = Float32ToInt( rPoint.y ); + mpPointAry[ mnPointCount ] = Point( nXPos + mnXOffset, nYPos + mnYOffset ); + // set point flags + mpFlagAry[ mnPointCount++ ]= eFlags; + mbHasOffline |= (eFlags != POLY_NORMAL); +} + +// ----------------------------------------------------------------------- + +void PolyArgs::ClosePolygon() +{ + if( !mnPolyCount++ ) + return; + + // append finished polygon + Polygon aPoly( mnPointCount, mpPointAry, (mbHasOffline ? mpFlagAry : NULL) ); + mpPolyPoly->Insert( aPoly ); + + // prepare for new polygon + mnPointCount = 0; + mbHasOffline = false; +} +#endif +// ======================================================================= +#if 0 +// helper functions for ATSLayout::GetGlyphOutlines() +OSStatus MyATSCubicMoveToCallback( const Float32Point *pt1, + void* pData ) +{ + PolyArgs& rA = *reinterpret_cast(pData); + // MoveTo implies a new polygon => finish old polygon first + rA.ClosePolygon(); + rA.AddPoint( *pt1, POLY_NORMAL ); +} + +OSStatus MyATSCubicLineToCallback( const Float32Point* pt1, + void* pData ) +{ + PolyArgs& rA = *reinterpret_cast(pData); + rA.AddPoint( *pt1, POLY_NORMAL ); +} + +OSStatus MyATSCubicCurveToCallback( const Float32Point* pt1, + const Float32Point* pt2, const Float32Point* pt3, void* pData ) +{ + PolyArgs& rA = *reinterpret_cast(pData); + rA.AddPoint( *pt1, POLY_CONTROL ); + rA.AddPoint( *pt2, POLY_CONTROL ); + rA.AddPoint( *pt3, POLY_NORMAL ); +} + +OSStatus MyATSCubicClosePathCallback ( + void *pData ) +{ + PolyArgs& rA = *reinterpret_cast(pData); + rA.ClosePolygon(); +} +#endif +// ----------------------------------------------------------------------- + +bool ATSLayout::GetGlyphOutlines( SalGraphics&, PolyPolyVector& rPPV ) const +{ + fprintf(stderr,"-->%s\n",__func__); + + return false; + + + /* + rPPV.clear(); + + if( !InitGIA() ) + return false; + + rPPV.resize( mpGIA->numGlyphs ); + PolyArgs aPolyArgs; + const ATSUGlyphInfo* pG = mpGIA->glyphs; + for( int i = 0; i < mpGIA->numGlyphs; ++i, ++pG ) + { + // convert glyphid at glyphpos to outline + GlyphID nGlyphId = pG->glyphID; + long nDeltaY = Float32ToInt( pG->deltaY ); + aPolyArgs.Init( &rPPV[i], pG->screenX, nDeltaY ); + OSStatus nStatus, nCBStatus; + nStatus = ATSUGlyphGetCubicPaths( + mpGraphics->maATSUStyle, nGlyphId, + MyATSCubicMoveToCallback, MyATSCubicLineToCallback, + MyATSCubicCurveToCallback, MyATSCubicClosePathCallback, + &aPolyArgs, &nCBStatus ); + + if( (nStatus != noErr) && (nCBStatus != noErr) ) + { + fprintf( stderr,"ATSUCallback = %d,%d\n", nStatus, nCBStatus ); + rPPV.resize( i ); + break; + } + } + + return true; + */ +} + +// ----------------------------------------------------------------------- + +void ATSLayout::InitFont() +{ + // TODO to allow glyph fallback +} + +// ----------------------------------------------------------------------- + +void ATSLayout::MoveGlyph( int nStart, long nNewXPos ) +{ + fprintf(stderr,"-->%s\n",__func__); + + if( nStart > mnGlyphCount ) + return; + + // calculate the current x-position of the requested glyph + // TODO: cache absolute positions + int nXPos = mnBaseAdv; + for( int i = 0; i < nStart; ++i ) + nXPos += mpGlyphAdvances[i]; + + // calculate the difference to the current glyph position + int nDelta = nNewXPos - nXPos; + + // adjust the width of the layout if it was already cached + if( mnWidth ) + mnWidth += nDelta; + + // depending on whether the requested glyph is leftmost in the layout + // adjust either the layout's or the requested glyph's relative position + if( nStart > 0 ) + mpGlyphAdvances[ nStart-1 ] += nDelta; + else + mnBaseAdv += nDelta; +} + +// ----------------------------------------------------------------------- + +void ATSLayout::DropGlyph( int nStart ) +{ + fprintf(stderr,"-->%s\n",__func__); + + mpOutGlyphs[ nStart ] = DROPPED_OUTGLYPH; +} + +// ----------------------------------------------------------------------- + +void ATSLayout::Simplify( bool bIsBase ) +{ + fprintf(stderr,"-->%s\n",__func__); + + // return early if no glyph has been dropped + int i = mnGlyphCount; + while( (--i >= 0) && (mpOutGlyphs[ i ] != DROPPED_OUTGLYPH) ); + if( i < 0 ) + return; + + // convert the layout to a sparse layout if it is not already + if( !mpGlyphs2Chars ) + { + mpGlyphs2Chars = new int[ mnGlyphCount ]; + mpCharWidths = new int[ mnCharCount ]; + // assertion: mnGlyphCount == mnCharCount + for( int k = 0; k < mnGlyphCount; ++k ) + { + mpGlyphs2Chars[ k ] = mnMinCharPos + k; + mpCharWidths[ k ] = mpGlyphAdvances[ k ]; + } + } + + // remove dropped glyphs that are rightmost in the layout + for( i = mnGlyphCount; --i >= 0; ) + { + if( mpOutGlyphs[ i ] != DROPPED_OUTGLYPH ) + break; + if( mnWidth ) + mnWidth -= mpGlyphAdvances[ i ]; + int nRelCharPos = mpGlyphs2Chars[ i ] - mnMinCharPos; + if( nRelCharPos >= 0 ) + mpCharWidths[ nRelCharPos ] = 0; + } + mnGlyphCount = i + 1; + + // keep original glyph widths around + if( !mpGlyphOrigAdvs ) + { + mpGlyphOrigAdvs = new int[ mnGlyphCount ]; + for( int k = 0; k < mnGlyphCount; ++k ) + mpGlyphOrigAdvs[ k ] = mpGlyphAdvances[ k ]; + } + + // remove dropped glyphs inside the layout + int nNewGC = 0; + for( i = 0; i < mnGlyphCount; ++i ) + { + if( mpOutGlyphs[ i ] == DROPPED_OUTGLYPH ) + { + // adjust relative position to last valid glyph + int nDroppedWidth = mpGlyphAdvances[ i ]; + mpGlyphAdvances[ i ] = 0; + if( nNewGC > 0 ) + mpGlyphAdvances[ nNewGC-1 ] += nDroppedWidth; + else + mnBaseAdv += nDroppedWidth; + + // zero the virtual char width for the char that has a fallback + int nRelCharPos = mpGlyphs2Chars[ i ] - mnMinCharPos; + if( nRelCharPos >= 0 ) + mpCharWidths[ nRelCharPos ] = 0; + } + else + { + if( nNewGC != i ) + { + // rearrange the glyph array to get rid of the dropped glyph + mpOutGlyphs[ nNewGC ] = mpOutGlyphs[ i ]; + mpGlyphAdvances[ nNewGC ] = mpGlyphAdvances[ i ]; + mpGlyphOrigAdvs[ nNewGC ] = mpGlyphOrigAdvs[ i ]; + mpGlyphs2Chars[ nNewGC ] = mpGlyphs2Chars[ i ]; + } + ++nNewGC; + } + } + + mnGlyphCount = nNewGC; + if( mnGlyphCount <= 0 ) + mnWidth = mnBaseAdv = 0; + +} + +// ======================================================================= + +SalLayout* AquaSalGraphics::GetTextLayout( ImplLayoutArgs& rArgs, int nFallbackLevel ) +{ + ATSLayout* pATSLayout = new ATSLayout( this ); + return( pATSLayout ); +} + +// ======================================================================= diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salatsuifontutils.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salatsuifontutils.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salatsuifontutils.cxx 2006-09-17 13:43:25.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salatsuifontutils.cxx 2006-10-13 23:55:01.000000000 +0200 @@ -152,9 +152,9 @@ ByteCount nFontFamilyNameLength = 0; FontNamesPtr pFontFamilyNames = NULL; FontNameCode nFontFamilyNameCode = kFontFamilyName; - FontLanguageCode nFontFamilyLanguageCode = kFontNoLanguage; - FontPlatformCode nFontFamilyPlatformCode = kFontNoPlatform; - FontScriptCode nFontFamilyScriptCode = kFontNoScript; + FontLanguageCode nFontFamilyLanguageCode = kFontNoLanguageCode; + FontPlatformCode nFontFamilyPlatformCode = kFontNoPlatformCode; + FontScriptCode nFontFamilyScriptCode = kFontNoScriptCode; ItemCount nFontFamilyIndex = 0; OSStatus nStatus = noErr; MacOSPtr pFontFamilyName = NULL; @@ -1056,9 +1056,9 @@ { FontNameEncodingRecord aBestFontNameEncoding; FontNameCode *pFontNameCode = NULL; - FontPlatformCode nFontNamePlatformCode = kFontNoPlatform; - FontScriptCode nFontNameScriptCode = kFontNoScript; - FontLanguageCode nFontNameLanguageCode = kFontNoLanguage; + FontPlatformCode nFontNamePlatformCode = kFontNoPlatformCode; + FontScriptCode nFontNameScriptCode = kFontNoScriptCode; + FontLanguageCode nFontNameLanguageCode = kFontNoLanguageCode; ItemCount nBestFontIndex = ULONG_MAX; ItemCount nNextFontIndex = 0; ItemCount nFontNamesCount = 0; diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salbmp.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salbmp.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salbmp.cxx 2006-09-17 13:43:39.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salbmp.cxx 2007-03-18 16:46:38.000000000 +0100 @@ -36,456 +36,780 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_vcl.hxx" -#ifndef _SV_SALBMP_HXX - #include +#ifndef _TOOLS_COLOR_HXX +#include #endif +#ifndef _SV_SALBMP_H +#include "salbmp.h" +#endif + +#ifndef _SV_SALBTYPE_HXX +#include "salbtype.hxx" +#endif + +#include "salinst.h" + // ======================================================================= +static bool isValidBitCount( sal_uInt16 nBitCount ) +{ + return (nBitCount == 1) || (nBitCount == 4) || (nBitCount == 8) || (nBitCount == 16) || (nBitCount == 24) || (nBitCount == 32); +} + // ======================================================================= -SalBitmap::SalBitmap() : - mpVirDev( 0 ), - mnBitCount( 0 ) +AquaSalBitmap::AquaSalBitmap() +: mxGraphicContext( 0 ) +, mnBits(0) +, mnWidth(0) +, mnHeight(0) +, mnBytesPerRow(0) { } // ------------------------------------------------------------------ -SalBitmap::~SalBitmap() +AquaSalBitmap::~AquaSalBitmap() { Destroy(); } // ------------------------------------------------------------------ -BOOL SalBitmap::Create( const Size& rSize, - USHORT nBitCount, - const BitmapPalette& rBitmapPalette - ) +bool AquaSalBitmap::Create( CGContextRef xContext, int nX, int nY, int nWidth, int nHeight ) +{ + return Create( CGBitmapContextGetWidth( xContext ), CGBitmapContextGetHeight( xContext ), + CGBitmapContextGetBitsPerPixel( xContext ), CGBitmapContextGetBytesPerRow( xContext ), + static_cast< sal_uInt8* >( CGBitmapContextGetData( xContext ) ), + nX, nY, nWidth, nHeight ); +} + +/** creates an AquaSalBitmap from a rectangle inside a memory bitmap (only 16 und 32 bit supported!) + NOTE: This code flips the data upside down so sources must come from AQUA directly +*/ +bool AquaSalBitmap::Create( sal_uInt32 nWidth, sal_uInt32 nHeight, sal_uInt16 nBits, sal_uInt32 nBytesPerRow, sal_uInt8* pBuffer, sal_uInt32 nX, sal_uInt32 nY, sal_uInt32 nDX, sal_uInt32 nDY ) { - ImplSVData *pSVData = ImplGetSVData(); - BOOL bSalBitmapCreated = FALSE; + if( (nBits != 16) && (nBits != 32) || !nWidth || !nHeight ) + return false; - if ( pSVData != NULL ) + mnBits = nBits; + mnWidth = nDX; + mnHeight = nDY; + + if( AllocateUserData() ) { - const long nHeight = rSize.Height(); - const long nWidth = rSize.Width(); - - Destroy(); + sal_uInt8* pDest = maUserBuffer.get(); + + sal_uInt8* pSource = pBuffer; + if( nX ) + pSource += nX << (( nBits == 32 ) ? 2 : 1); - if ( ( nHeight > 0 ) && ( nWidth > 0 ) ) + nY = nHeight - nY - nDY; + pSource += nBytesPerRow * nY; + + sal_uInt32 y = nDY; + while( y-- ) { - // Create a SalVirtualDevice - - mpVirDev - = pSVData->mpDefInst->CreateVirtualDevice( NULL, - nWidth, - nHeight, - nBitCount - ); + memcpy( pDest, pSource, mnBytesPerRow ); + pDest += mnBytesPerRow; + pSource += nBytesPerRow; + } + return true; + } + return false; +} + +// ------------------------------------------------------------------ + +bool AquaSalBitmap::Create( CGImageRef& xImage ) +{ + mnBits = CGImageGetBitsPerPixel( xImage ); + if( (mnBits == 16) || (mnBits == 32) ) + { + mnWidth = CGImageGetWidth( xImage ); + mnHeight = CGImageGetHeight( xImage ); - if ( mpVirDev != NULL ) + if( AllocateUserData() ) + { + CreateContext(); + if( mxGraphicContext ) { - // Get the SalGraphics which contains the - // GWorld we will draw to - - SalGraphics *pGraphics = GetGraphics(); + CGContextDrawImage(mxGraphicContext, CGRectMake( 0, 0, mnWidth, mnHeight ), xImage); + return true; + } + } + } + return false; +} - if ( pGraphics != NULL ) - { - const CGrafPtr pCGraf = pGraphics->maGraphicsData.mpCGrafPort; - - if ( pCGraf != NULL ) - { - mhPixMap = GetCGrafPortPixMap( rSize, - nBitCount, - rBitmapPalette, - pCGraf - ); - - if ( ( mhPixMap != NULL ) && ( *mhPixMap != NULL ) ) - { - mnBitCount = GetPixDepth( mhPixMap); - mnSize = rSize; - - bSalBitmapCreated = TRUE; - } // if - - // Release the SalGraphics so that others can get a - // handle to it in future GetGraphics() calls - } // if - - ReleaseGraphics( pGraphics ); - } // if - } // if - } // if - } // if +// ------------------------------------------------------------------ - return bSalBitmapCreated; -} // SalBitmap::Create +bool AquaSalBitmap::Create( const Size& rSize, USHORT nBits, const BitmapPalette& rBitmapPalette ) +{ + if( !isValidBitCount( nBits ) ) + return false; + maPalette = rBitmapPalette; + mnBits = nBits; + mnWidth = rSize.Width(); + mnHeight = rSize.Height(); + return AllocateUserData(); +} // ------------------------------------------------------------------ -BOOL SalBitmap::Create( const SalBitmap& rSalBmp ) +bool AquaSalBitmap::Create( const SalBitmap& rSalBmp ) { return Create( rSalBmp, rSalBmp.GetBitCount() ); -} // SalBitmap::Create +} + +// ------------------------------------------------------------------ + +bool AquaSalBitmap::Create( const SalBitmap& rSalBmp, SalGraphics* pGraphics ) +{ + return Create( rSalBmp, pGraphics ? pGraphics->GetBitCount() : rSalBmp.GetBitCount() ); +} // ------------------------------------------------------------------ -BOOL SalBitmap::Create( const SalBitmap& rSalBmp, - SalGraphics* pGraphics - ) +bool AquaSalBitmap::Create( const SalBitmap& rSalBmp, USHORT nNewBitCount ) { - USHORT nSalBmpBitCount = 0; - BOOL bSalBitmapCreated = FALSE; + const AquaSalBitmap& rSourceBitmap = static_cast(rSalBmp); - if ( pGraphics != NULL ) + if( isValidBitCount( nNewBitCount ) && rSourceBitmap.maUserBuffer.get() ) { - const CGrafPtr pCGraf = pGraphics->maGraphicsData.mpCGrafPort; - - if ( pCGraf != NULL ) + mnBits = nNewBitCount; + mnWidth = rSourceBitmap.mnWidth; + mnHeight = rSourceBitmap.mnHeight; + maPalette = rSourceBitmap.maPalette; + + if( AllocateUserData() ) { - mhPixMap = GetCGrafPortPixMap( rSalBmp.GetSize(), - rSalBmp.GetBitCount(), - BitmapPalette(), - pCGraf - ); - - if ( ( mhPixMap != NULL ) && ( *mhPixMap != NULL ) ) - { - nSalBmpBitCount = GetPixDepth( mhPixMap ); - } // if - } // if - } // if - - if ( nSalBmpBitCount == 0 ) + ConvertBitmapData( mnWidth, mnHeight, mnBits, mnBytesPerRow, maPalette, maUserBuffer.get(), rSourceBitmap.mnBits, rSourceBitmap.mnBytesPerRow, rSourceBitmap.maPalette, rSourceBitmap.maUserBuffer.get() ); + return true; + } + } + return false; +} + +// ------------------------------------------------------------------ + +void AquaSalBitmap::Destroy() +{ + DestroyContext(); + maUserBuffer.reset(); +} + +// ------------------------------------------------------------------ + +void AquaSalBitmap::DestroyContext() +{ + if( mxGraphicContext ) { - nSalBmpBitCount = rSalBmp.GetBitCount(); - } // if - - bSalBitmapCreated = Create( rSalBmp, nSalBmpBitCount ); + CFRelease( mxGraphicContext ); + mxGraphicContext = 0; + maContextBuffer.reset(); + } +} + +// ------------------------------------------------------------------ + +bool AquaSalBitmap::CreateContext() +{ + DestroyContext(); + + size_t bitsPerComponent = (mnBits == 16) ? 5 : 8; + sal_uInt32 nContextBytesPerRow = mnBytesPerRow; + if( (mnBits == 16) || (mnBits ==32) ) + { + // simple, no conversion needed + maContextBuffer = maUserBuffer; + } + else + { + // convert user data to 32 bit + nContextBytesPerRow = mnWidth << 2; + maContextBuffer.reset( new sal_uInt8[ mnHeight * nContextBytesPerRow ] ); + + ConvertBitmapData( mnWidth, mnHeight, + 32, nContextBytesPerRow, maPalette, maContextBuffer.get(), + mnBits, mnBytesPerRow, maPalette, maUserBuffer.get() ); + } + + CGColorSpaceRef xColorSpace( CGColorSpaceCreateWithName(kCGColorSpaceGenericRGB) ); + mxGraphicContext = CGBitmapContextCreate( maContextBuffer.get(), mnWidth, mnHeight, bitsPerComponent, nContextBytesPerRow, xColorSpace, kCGImageAlphaNoneSkipFirst ); + CFRelease( xColorSpace ); - return bSalBitmapCreated; -} // SalBitmap::Create + if( mxGraphicContext ) + { + CGContextTranslateCTM (mxGraphicContext, 0, mnHeight); + CGContextScaleCTM (mxGraphicContext, 1.0, -1.0); + } + else + { + maContextBuffer.reset(); + } + + return mxGraphicContext != NULL; +} // ------------------------------------------------------------------ -BOOL SalBitmap::Create( const SalBitmap& rSalBmp, USHORT nNewBitCount ) +bool AquaSalBitmap::AllocateUserData() { - BOOL bSalBitmapCreated = FALSE; + Destroy(); - if ( Create( rSalBmp.mnSize, nNewBitCount, BitmapPalette() ) ) + if( mnWidth && mnHeight ) { - // Copy pixels from rSalBmp.mpVirDev to mpVirDev - - SalGraphics *pDstGraphics = GetGraphics(); + mnBytesPerRow = 0; - if ( pDstGraphics != NULL ) + switch( mnBits ) { - SalGraphics *pSrcGraphics = rSalBmp.GetGraphics(); + case 1: mnBytesPerRow = (mnWidth + 7) >> 3; break; + case 4: mnBytesPerRow = (mnWidth + 1) >> 1; break; + case 8: mnBytesPerRow = mnWidth; break; + case 16: mnBytesPerRow = mnWidth << 1; break; + case 24: mnBytesPerRow = (mnWidth << 1) + mnWidth; break; + case 32: mnBytesPerRow = mnWidth << 2; break; + default: + DBG_ERROR("vcl::AquaSalBitmap::AllocateUserData(), illegal bitcount!"); + } + } + + if( mnBytesPerRow ) + maUserBuffer.reset( new sal_uInt8[mnBytesPerRow * mnHeight] ); + + return maUserBuffer.get() != 0; +} - if ( ( pSrcGraphics != NULL ) - && ( pSrcGraphics->maGraphicsData.mpCGrafPort != NULL ) - ) - { - SalTwoRect aTwoRect; +// ------------------------------------------------------------------ - // Get size of graphics to copy from - - GetTwoRectFromSalBmp( rSalBmp, &aTwoRect ); - - // Copy bits from source graphics - - pDstGraphics->CopyBits( &aTwoRect, pSrcGraphics ); +class ImplPixelFormat +{ +protected: + sal_uInt8* pData; +public: + static ImplPixelFormat* GetFormat( sal_uInt16 nBits, const BitmapPalette& rPalette ); + + virtual void StartLine( sal_uInt8* pLine ) { pData = pLine; } + virtual void SkipPixel( sal_uInt32 nPixel ) = 0; + virtual ColorData ReadPixel() = 0; + virtual void WritePixel( ColorData nColor ) = 0; +}; - rSalBmp.ReleaseGraphics( pSrcGraphics ); +class ImplPixelFormat32 : public ImplPixelFormat +{ +public: + virtual void SkipPixel( sal_uInt32 nPixel ) + { + pData += nPixel << 2; + } + virtual ColorData ReadPixel() + { + pData++; + return RGB_COLORDATA( *pData++, *pData++, *pData++ ); + } + virtual void WritePixel( ColorData nColor ) + { + *pData++ = 0; + *pData++ = COLORDATA_RED( nColor ); + *pData++ = COLORDATA_GREEN( nColor ); + *pData++ = COLORDATA_BLUE( nColor ); + } +}; - bSalBitmapCreated = TRUE; - } // if +class ImplPixelFormat24 : public ImplPixelFormat +{ +public: + virtual void SkipPixel( sal_uInt32 nPixel ) + { + pData += (nPixel << 1) + nPixel; + } + virtual ColorData ReadPixel() + { + const ColorData c = RGB_COLORDATA( pData[2], pData[1], pData[0] ); + pData += 3; + return c; + } + virtual void WritePixel( ColorData nColor ) + { + *pData++ = COLORDATA_BLUE( nColor ); + *pData++ = COLORDATA_GREEN( nColor ); + *pData++ = COLORDATA_RED( nColor ); + } +}; - ReleaseGraphics( pDstGraphics ); - } // if - } // if +class ImplPixelFormat16 : public ImplPixelFormat +{ +protected: + sal_uInt16* pData16; +public: + + virtual void StartLine( sal_uInt8* pLine ) + { + pData16 = (sal_uInt16*)pLine; + } + virtual void SkipPixel( sal_uInt32 nPixel ) + { + pData += nPixel; + } + virtual ColorData ReadPixel() + { + const ColorData c = RGB_COLORDATA( (*pData & 0x7c00) >> 7, (*pData & 0x03e0) >> 2 , (*pData & 0x001f) << 3 ); + pData++; + return c; + } + virtual void WritePixel( ColorData nColor ) + { + *pData++ = ((COLORDATA_RED( nColor ) & 0xf8 ) << 7 ) || + ((COLORDATA_GREEN( nColor ) & 0xf8 ) << 2 ) || + ((COLORDATA_BLUE( nColor ) & 0xf8 ) >> 3 ); + } +}; - return bSalBitmapCreated; -} // SalBitmap::Create +class ImplPixelFormat8 : public ImplPixelFormat +{ +private: + const BitmapPalette& mrPalette; -// ------------------------------------------------------------------ +public: + ImplPixelFormat8( const BitmapPalette& rPalette ) + : mrPalette( rPalette ) + { + } + virtual void SkipPixel( sal_uInt32 nPixel ) + { + pData += nPixel; + } + virtual ColorData ReadPixel() + { + return mrPalette[ *pData++ ].operator Color().GetColor(); + } + virtual void WritePixel( ColorData nColor ) + { + const BitmapColor aColor( COLORDATA_RED( nColor ), COLORDATA_GREEN( nColor ), COLORDATA_BLUE( nColor ) ); + *pData++ = static_cast< sal_uInt8 >( mrPalette.GetBestIndex( aColor ) ); + } +}; -void SalBitmap::Destroy() +class ImplPixelFormat4 : public ImplPixelFormat { - ImplSVData *pSVData = ImplGetSVData(); - - if ( pSVData != NULL ) +private: + const BitmapPalette& mrPalette; + sal_uInt32 mnX; + sal_uInt32 mnShift; + +public: + ImplPixelFormat4( const BitmapPalette& rPalette ) + : mrPalette( rPalette ) { - if ( mpVirDev != NULL ) - { - pSVData->mpDefInst->DestroyVirtualDevice( mpVirDev ); - } // if - - mhPixMap = NULL; - mnSize = Size(); - mnBitCount = 0; - } // if -} // SalBitmap::Destroy + } + virtual void SkipPixel( sal_uInt32 nPixel ) + { + mnX += nPixel; + if( (nPixel & 1) ) + mnShift ^= 4; + } + virtual void StartLine( sal_uInt8* pLine ) + { + pData = pLine; + mnX = 0; + mnShift = 4; + } + virtual ColorData ReadPixel() + { + const BitmapColor& rColor = mrPalette[( pData[mnX >> 1] >> mnShift) & 0x0f]; + mnX++; + mnShift ^= 4; + return rColor.operator Color().GetColor(); + } + virtual void WritePixel( ColorData nColor ) + { + const BitmapColor aColor( COLORDATA_RED( nColor ), COLORDATA_GREEN( nColor ), COLORDATA_BLUE( nColor ) ); + pData[mnX>>1] &= (0xf0 >> mnShift); + pData[mnX>>1] |= (static_cast< sal_uInt8 >( mrPalette.GetBestIndex( aColor ) ) & 0x0f); + mnX++; + mnShift ^= 4; + } +}; -// ------------------------------------------------------------------ +class ImplPixelFormat1 : public ImplPixelFormat +{ +private: + const BitmapPalette& mrPalette; + sal_uInt32 mnX; + +public: + ImplPixelFormat1( const BitmapPalette& rPalette ) + : mrPalette( rPalette ) + { + } + virtual void SkipPixel( sal_uInt32 nPixel ) + { + mnX += nPixel; + } + virtual void StartLine( sal_uInt8* pLine ) + { + pData = pLine; + mnX = 0; + } + virtual ColorData ReadPixel() + { + const BitmapColor& rColor = mrPalette[ (pData[mnX >> 3 ] >> ( 7 - ( mnX & 7 ) )) & 1]; + mnX++; + return rColor.operator Color().GetColor(); + } + virtual void WritePixel( ColorData nColor ) + { + const BitmapColor aColor( COLORDATA_RED( nColor ), COLORDATA_GREEN( nColor ), COLORDATA_BLUE( nColor ) ); + if( mrPalette.GetBestIndex( aColor ) & 1 ) + pData[ mnX >> 3 ] |= 1 << ( 7 - ( mnX & 7 ) ); + else + pData[ mnX >> 3 ] &= ~( 1 << ( 7 - ( mnX & 7 ) ) ); + mnX++; + } +}; -BitmapBuffer* SalBitmap::AcquireBuffer( BOOL bReadOnly ) +ImplPixelFormat* ImplPixelFormat::GetFormat( sal_uInt16 nBits, const BitmapPalette& rPalette ) { - BitmapBuffer *pBuffer = NULL; + switch( nBits ) + { + case 1: return new ImplPixelFormat1( rPalette ); + case 4: return new ImplPixelFormat4( rPalette ); + case 8: return new ImplPixelFormat8( rPalette ); + case 16: return new ImplPixelFormat16; + case 24: return new ImplPixelFormat24; + case 32: return new ImplPixelFormat32; + } - if ( mpVirDev != NULL ) + return 0; +} + +void AquaSalBitmap::ConvertBitmapData( sal_uInt32 nWidth, sal_uInt32 nHeight, + sal_uInt16 nDestBits, sal_uInt32 nDestBytesPerRow, const BitmapPalette& rDestPalette, sal_uInt8* pDestData, + sal_uInt16 nSrcBits, sal_uInt32 nSrcBytesPerRow, const BitmapPalette& rSrcPalette, sal_uInt8* pSrcData ) + +{ + if( (nDestBytesPerRow == nSrcBytesPerRow) && (nDestBits == nSrcBits) && ((nSrcBits != 8) || (rDestPalette.operator==( rSrcPalette ))) ) + { + // simple case, same format, so just copy + memcpy( pDestData, pSrcData, nHeight * nDestBytesPerRow ); + } + else { - pBuffer = new BitmapBuffer(); + // TODO: this implementation is for clarety, not for speed - if ( ( pBuffer != NULL ) - && ( mhPixMap != NULL ) - && ( *mhPixMap != NULL ) - ) + ImplPixelFormat* pD = ImplPixelFormat::GetFormat( nDestBits, rDestPalette ); + ImplPixelFormat* pS = ImplPixelFormat::GetFormat( nSrcBits, rSrcPalette ); + + if( pD && pS ) { - GWorldFlags nPixMapFlags = noErr; - - nPixMapFlags = GetPixelsState( mhPixMap ); - - if ( nPixMapFlags == noErr ) + sal_uInt32 nY = nHeight; + while( nY-- ) { - if ( LockPixels( mhPixMap ) ) - { - SetBitmapBufferColorFormat( mhPixMap, pBuffer ); + pD->StartLine( pDestData ); + pS->StartLine( pSrcData ); - if ( BMP_SCANLINE_FORMAT( pBuffer->mnFormat ) ) - { - pBuffer->mnWidth = mpVirDev->maVirDevData.mnWidth; - pBuffer->mnHeight = mpVirDev->maVirDevData.mnHeight; - pBuffer->mnScanlineSize = GetPixRowBytes( mhPixMap ); - pBuffer->mpBits = (BYTE *)GetPixBaseAddr( mhPixMap ); - pBuffer->mnBitCount = GetPixDepth( mhPixMap); - - // If the pixel depth is <= 8, we need to map QD's - // internal color table to the platform independent - // BitmapPalette color table - - if ( pBuffer->mnBitCount <= kEightBitColor ) - { - CTabHandle hCTab = (**mhPixMap).pmTable; - - if ( ( hCTab != NULL ) && ( *hCTab != NULL ) ) - { - SInt8 nCTabFlags = noErr; - - nCTabFlags = HGetState( (Handle)hCTab ); - - if ( nCTabFlags == noErr ) - { - USHORT nCTabSize = 0; - USHORT nCTabIndex = 0; - BitmapPalette &rBitmapPalette = pBuffer->maPalette; - - HLock( (Handle)hCTab ); - - // Map each color in the QuickDraw color - // table to a BitmapColor - - nCTabSize = (**hCTab).ctSize + 1; - - rBitmapPalette.SetEntryCount( nCTabSize ); - - for ( nCTabIndex = 0; - nCTabIndex < nCTabSize; - nCTabIndex++ - ) - { - BitmapColor &rBitmapColor = rBitmapPalette[nCTabIndex]; - const RGBColor aRGBColor = (**hCTab).ctTable[nCTabIndex].rgb; - - RGBColor2BitmapColor( &aRGBColor, rBitmapColor ); - } // for - - HSetState( (Handle)hCTab, nCTabFlags ); - } // if - } // if - } // if - } // if - else - { - delete pBuffer; - - pBuffer = NULL; - } // else - - SetPixelsState( mhPixMap, nPixMapFlags ); - } // if - } // if - } // if - } // if + sal_uInt32 nX = nWidth; + while( nX-- ) + pD->WritePixel( pS->ReadPixel() ); + + pSrcData += nSrcBytesPerRow; + pDestData += nDestBytesPerRow; + } + } + delete pS; + delete pD; + } +} + +// ------------------------------------------------------------------ + +Size AquaSalBitmap::GetSize() const +{ + return Size( mnWidth, mnHeight ); +} + +// ------------------------------------------------------------------ + +USHORT AquaSalBitmap::GetBitCount() const +{ + return mnBits; +} + +// ------------------------------------------------------------------ + +BitmapBuffer* AquaSalBitmap::AcquireBuffer( bool bReadOnly ) +{ + BitmapBuffer* pBuffer = new BitmapBuffer; + pBuffer->mnWidth = mnWidth; + pBuffer->mnHeight = mnHeight; + pBuffer->maPalette = maPalette; + pBuffer->mnScanlineSize = mnBytesPerRow; + pBuffer->mpBits = maUserBuffer.get(); + pBuffer->mnBitCount = mnBits; + switch( mnBits ) + { + case 1: pBuffer->mnFormat = BMP_FORMAT_1BIT_MSB_PAL; break; + case 4: pBuffer->mnFormat = BMP_FORMAT_4BIT_MSN_PAL; break; + case 8: pBuffer->mnFormat = BMP_FORMAT_8BIT_PAL; break; + case 16: pBuffer->mnFormat = BMP_FORMAT_16BIT_TC_MSB_MASK; + pBuffer->maColorMask = ColorMask( k16BitRedColorMask, k16BitGreenColorMask, k16BitBlueColorMask ); + break; + case 24: pBuffer->mnFormat = BMP_FORMAT_24BIT_TC_BGR; break; + case 32: pBuffer->mnFormat = BMP_FORMAT_32BIT_TC_ARGB; + pBuffer->maColorMask = ColorMask( k32BitRedColorMask, k32BitGreenColorMask, k32BitBlueColorMask ); + break; + } return pBuffer; -} // SalBitmap::AcquireBuffer +} // ------------------------------------------------------------------ -void SalBitmap::ReleaseBuffer( BitmapBuffer* pBuffer, BOOL bReadOnly ) +void AquaSalBitmap::ReleaseBuffer( BitmapBuffer* pBuffer, bool bReadOnly ) { - if ( mpVirDev != NULL ) +// fprintf(stderr,"AquaSalBitmap::ReleaseBuffer(%lx)\n", this); + + // invalidate graphic context if we have different data + if( !bReadOnly ) { - // Get the SalGraphics which contains the GWorld - // we used as the buffer + maPalette = pBuffer->maPalette; + if( mxGraphicContext ) + DestroyContext(); + } + + delete pBuffer; +} + +// ------------------------------------------------------------------ + +CGImageRef AquaSalBitmap::CreateCroppedImage( int nX, int nY, int nWidth, int nHeight ) +{ + CGImageRef xImage = 0; + + if( !mxGraphicContext ) + CreateContext(); - SalGraphics *pGraphics = GetGraphics(); + if( mxGraphicContext ) + xImage = CreateCroppedImage( mxGraphicContext, nX, nY, nWidth, nHeight ); + + return xImage; +} - if ( ( pGraphics != NULL ) - && ( pGraphics->maGraphicsData.mpCGrafPort != NULL ) - ) +// ------------------------------------------------------------------ + +/*static*/ CGImageRef AquaSalBitmap::CreateCroppedImage( CGContextRef xContext, int nX, int nY, int nWidth, int nHeight ) +{ + CGImageRef xImage = 0; + if( xContext ) + { + xImage = CGBitmapContextCreateImage( xContext ); + if( nX || nY || (CGImageGetWidth(xImage) != static_cast (nWidth)) || (CGImageGetHeight(xImage) != static_cast(nHeight)) ) { - // Release the SalGraphics so that others can get a - // handle to it in future calls to GetGraphics() - - ReleaseGraphics( pGraphics ); - - pGraphics = NULL; - } // if - } // if - - if ( pBuffer != NULL ) + CGImageRef myTempImage = CGImageCreateWithImageInRect( xImage, CGRectMake( nX, nY, nWidth, nHeight ) ); + CGImageRelease( xImage ); + xImage = myTempImage; + } + } + return xImage; +} + +// ------------------------------------------------------------------ + +/** TODO: Optimize me, merge the bitmap and alpha mask ourself +*/ +CGImageRef AquaSalBitmap::CreateWithMask( const AquaSalBitmap& rMask, sal_uInt32 nX, sal_uInt32 nY, sal_uInt32 nDX, sal_uInt32 nDY ) +{ + AquaSalBitmap rMaskNew; + if(!rMaskNew.Create( rMask )) { + fprintf(stderr, "AquaSalBitmap::CreateWithMask: error can't copy rMask!"); + return NULL; + } + + //fprintf(stderr,"source: (%d,%d,%u) mask: (%d,%d,%u)\n", mnWidth, mnHeight, mnBits, rMask.mnWidth, rMask.mnHeight, rMask.mnBits ); + + CGImageRef xMaskedImage = 0; + + CGImageRef xImage( CreateCroppedImage( nX, nY, nDX, nDY ) ); + if( xImage ) + { + CGImageRef xMask = rMaskNew.CreateCroppedImage( nX, nY, nDX, nDY ); + if( xMask ) + { + + rMaskNew.Destroy();//destroy old context with a size which could be different from + //the xMaskedImage, xImage, xMask size (the three have the same size=(nDX, nDY)) + // and are part of the original image + rMaskNew.Create(xMask);//and create one which will fit to image + + //This code should be replaced by rMaskNew.invert() before the line containing + //rMaskNew.CreateCroppedImage when the AquaSalGraphic::invert function will be + //implemented (salgdi.cxx) + rMaskNew.CreateContext(); + CGContextTranslateCTM (rMaskNew.mxGraphicContext, 0, mnHeight); + CGContextScaleCTM (rMaskNew.mxGraphicContext, 1.0, -1.0); + CGContextSetGrayFillColor(rMaskNew.mxGraphicContext, 1.0, 1.0); + CGRect xImageRect=CGRectMake( 0, 0, nDX, nDY);//the rect has no offset + CGContextFillRect(rMaskNew.mxGraphicContext, xImageRect); + CGContextSetBlendMode(rMaskNew.mxGraphicContext, kCGBlendModeDifference); + CGContextDrawImage(rMaskNew.mxGraphicContext, xImageRect, xMask); + CFRelease( xMask ); + xMask=CGBitmapContextCreateImage(rMaskNew.mxGraphicContext); + + //we create the new image which has width and height equal to nDX and nDY + AquaSalBitmap xMaskedBmp; + xMaskedBmp.Create(xImage); + + CGContextSaveGState(mxGraphicContext); + + //we create the transparent image + CGContextBeginTransparencyLayer(xMaskedBmp.mxGraphicContext, NULL); + CGContextClipToMask(xMaskedBmp.mxGraphicContext, xImageRect, xMask); + CGContextClearRect (xMaskedBmp.mxGraphicContext, xImageRect); + CGContextDrawImage(xMaskedBmp.mxGraphicContext, xImageRect, xImage ); + xMaskedImage=CGBitmapContextCreateImage(xMaskedBmp.mxGraphicContext); + CGContextEndTransparencyLayer(xMaskedBmp.mxGraphicContext); + + //we revert it as its top was on the bottom and vice versa + CGContextBeginTransparencyLayer(xMaskedBmp.mxGraphicContext, NULL); + CGContextClearRect (xMaskedBmp.mxGraphicContext, xImageRect); + CGContextDrawImage(xMaskedBmp.mxGraphicContext, xImageRect, xMaskedImage ); + xMaskedImage=CGBitmapContextCreateImage(xMaskedBmp.mxGraphicContext); + CGContextEndTransparencyLayer(xMaskedBmp.mxGraphicContext); + + CGContextRestoreGState(mxGraphicContext); + + CFRelease( xMask ); + } + CFRelease( xImage ); + } + return xMaskedImage; +} + +// ------------------------------------------------------------------ + +/** creates an image from the given rectangle, replacing all black pixels with nMaskColor and make all other full transparent */ +CGImageRef AquaSalBitmap::CreateColorMask( int nX, int nY, int nWidth, int nHeight, SalColor nMaskColor ) const +{ + CGImageRef xMask = 0; + if( maUserBuffer.get() && (static_cast(nX + nWidth) <= mnWidth) && (static_cast(nY + nHeight) <= mnHeight) ) { - if ( !bReadOnly ) + const sal_uInt32 nDestBytesPerRow = nWidth << 2; + sal_uInt32* pMaskBuffer = static_cast( malloc( nHeight * nDestBytesPerRow ) ); + sal_uInt32* pDest = pMaskBuffer; + + ImplPixelFormat* pSourcePixels = ImplPixelFormat::GetFormat( mnBits, maPalette ); + + if( pMaskBuffer && pSourcePixels ) { - if ( ( mhPixMap != NULL ) && (*mhPixMap != NULL ) ) - { - GWorldFlags nPixMapFlags = noErr; - - nPixMapFlags = GetPixelsState( mhPixMap ); + sal_uInt32 nColor; + reinterpret_cast(&nColor)[0] = 0xff; + reinterpret_cast(&nColor)[1] = SALCOLOR_RED( nMaskColor ); + reinterpret_cast(&nColor)[2] = SALCOLOR_GREEN( nMaskColor ); + reinterpret_cast(&nColor)[3] = SALCOLOR_BLUE( nMaskColor ); + + sal_uInt8* pSource = maUserBuffer.get(); + if( nY ) + pSource += nY * mnBytesPerRow; - if ( nPixMapFlags == noErr ) + sal_uInt32 y = nHeight; + while( y-- ) + { + pSourcePixels->StartLine( pSource ); + pSourcePixels->SkipPixel(nX); + sal_uInt32 x = nWidth; + while( x-- ) { - if ( LockPixels( mhPixMap ) ) - { - if ( !!pBuffer->maPalette ) - { - CTabHandle hCTab = (**mhPixMap).pmTable; - - if ( ( hCTab != NULL ) && ( *hCTab != NULL ) ) - { - SInt8 nCTabFlags = noErr; - - nCTabFlags = HGetState( (Handle)hCTab ); - - if ( nCTabFlags == noErr ) - { - const BitmapPalette &rBitmapPalette = pBuffer->maPalette; - short nCTabSize = 0; - short nCTabMinSize = 0; - short nCTabIndex; - - HLock( (Handle)hCTab ); - - nCTabSize = (**hCTab).ctSize + 1; - nCTabMinSize = GetMinColorCount( nCTabSize, rBitmapPalette ); - - for( nCTabIndex = 0; - nCTabIndex < nCTabMinSize; - nCTabIndex++ - ) - { - const BitmapColor &rBitmapPaletteColor = rBitmapPalette[nCTabIndex]; - - (**hCTab).ctTable[nCTabIndex].value = nCTabIndex; - - (**hCTab).ctTable[nCTabIndex].rgb - = BitmapColor2RGBColor( rBitmapPaletteColor ); - } // for - - CTabChanged( hCTab ); - - HSetState( (Handle)hCTab, nCTabFlags ); - } // if - } // if - } // if - else - { - GDPtr pGDevice = NULL; - - pGDevice = *GetGDevice(); - - if ( pGDevice != NULL ) - { - PixMapPtr pPixMap = *pGDevice->gdPMap; - - if ( pPixMap != NULL ) - { - CTabPtr pCTable = *pPixMap->pmTable; - - if ( pCTable != NULL ) - { - ITabPtr pITable = *pGDevice->gdITable; - - if ( pITable != NULL ) - { - // Is the inverse color table up-to-date? - - if ( pITable->iTabSeed != pCTable->ctSeed ) - { - // Update our inverse color table - - MakeITable( pPixMap->pmTable, - pGDevice->gdITable, - pGDevice->gdResPref - ); - - pGDevice = *GetGDevice(); - pCTable = *pPixMap->pmTable; - } // if - } // if - - (**mhPixMap).pmTable = pPixMap->pmTable; - } // if - else - { - (**mhPixMap).pmTable = NULL; - } // else - } // if - } // if - } // else - - SetPixelsState( mhPixMap, nPixMapFlags ); - } // if - } //if - } // if - } // if - - delete pBuffer; - - pBuffer = NULL; - } // if -} // SalBitmap::ReleaseBuffer + *pDest++ = ( pSourcePixels->ReadPixel() == 0 ) ? nColor : 0; + } + pSource += mnBytesPerRow; + } + + CGColorSpaceRef xColorSpace( CGColorSpaceCreateWithName(kCGColorSpaceGenericRGB) ); + CGDataProviderRef xDataProvider( CGDataProviderCreateWithData(NULL, pMaskBuffer, nHeight * nDestBytesPerRow, NULL) ); + xMask = CGImageCreate(nWidth, nHeight, 8, 32, nDestBytesPerRow, xColorSpace, kCGImageAlphaPremultipliedFirst, xDataProvider, NULL, true, kCGRenderingIntentDefault); + CFRelease(xDataProvider); + CFRelease(xColorSpace); + } + + if( pMaskBuffer ) + free(pMaskBuffer); + delete pSourcePixels; + } + return xMask; +} // ------------------------------------------------------------------ -SalGraphics* SalBitmap::GetGraphics() +CGImageRef AquaSalBitmap::CreateMask( int nX, int nY, int nWidth, int nHeight ) const { - if ( mpVirDev != NULL ) - { - return mpVirDev->GetGraphics(); - } // if - else + CGImageRef xMask = 0; + if( (maUserBuffer.get()) && (static_cast(nX + nWidth) <= mnWidth) && (static_cast(nY + nHeight) <= mnHeight) ) { - return NULL; - } // else -} // SalBitmap::GetGraphics + if( mnBits == 1 ) + { + CGDataProviderRef xDataProvider( CGDataProviderCreateWithData(NULL, maUserBuffer.get(), nHeight * mnBytesPerRow, NULL) ); + xMask = CGImageMaskCreate(nWidth, nHeight, 1, 1, mnBytesPerRow, xDataProvider, NULL, true ); + CFRelease(xDataProvider); + } + else + { + basebmp::RawMemorySharedArray aMaskBuffer( new sal_uInt8[ nWidth * nHeight ] ); + sal_uInt8* pDest = aMaskBuffer.get(); + if( pDest ) + { + sal_uInt8* pSource = maUserBuffer.get(); + if( nY ) + pSource += nY * mnBytesPerRow; -// ------------------------------------------------------------------ + if( mnBits == 8 ) + { + if( nX ) + pSource += nX; -void SalBitmap::ReleaseGraphics( SalGraphics* pGraphics ) -{ - if ( mpVirDev != NULL ) - { - mpVirDev->ReleaseGraphics( pGraphics ); - } // if -} // SalBitmap::ReleaseGraphics + // simple convert alpha + sal_uInt32 y = nHeight; + while( y-- ) + { + sal_uInt32 x = nWidth; + while( x-- ) + *pDest++ = 0xff - *pSource++; + pSource += mnBytesPerRow; + } + } + else + { + ImplPixelFormat* pSourcePixels = ImplPixelFormat::GetFormat( mnBits, maPalette ); + if( pSourcePixels ) + { + sal_uInt32 y = nHeight; + while( y-- ) + { + pSourcePixels->StartLine(pSource); + pSourcePixels->SkipPixel(nX); + sal_uInt32 x = nWidth; + while( x-- ) + *pDest++ = (pSourcePixels->ReadPixel() == 0) ? 0x00 : 0xff; + + pSource += mnBytesPerRow; + } + delete pSourcePixels; + } + } + + CGDataProviderRef xDataProvider( CGDataProviderCreateWithData(NULL, aMaskBuffer.get(), nHeight * nWidth, NULL) ); + xMask = CGImageMaskCreate(nWidth, nHeight, 8, 8, nWidth, xDataProvider, NULL, true ); + CFRelease(xDataProvider); + } + } + } + return xMask; +} // ======================================================================= -// ======================================================================= +bool AquaSalBitmap::GetSystemData( BitmapSystemData& rData ) +{ + return false; +} diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salcolorutils.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salcolorutils.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salcolorutils.cxx 2006-09-17 13:43:53.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salcolorutils.cxx 2007-01-12 22:01:27.000000000 +0100 @@ -39,944 +39,22 @@ #ifndef _SV_SALCOLORUTILS_HXX #include #endif +#include // ======================================================================= -// ======================================================================= - -static unsigned long Compress32BitRGBColor ( const RGBColor *pRGBColor ) -{ - unsigned long nCTableIndex = 0; - - nCTableIndex = ( pRGBColor->red >> kOneByte ) << kTwoBytes; - nCTableIndex |= ( pRGBColor->green >> kOneByte ) << kOneByte; - nCTableIndex |= pRGBColor->blue >> kOneByte; - - return nCTableIndex; -} // Compress32BitRGBColor - -// ----------------------------------------------------------------------- - -static unsigned long Compress16BitRGBColor ( const RGBColor *pRGBColor ) -{ - unsigned long nCTableIndex = 0; - - nCTableIndex = ( pRGBColor->red >> kElevenBits ) << kTenBits; - nCTableIndex |= ( pRGBColor->green >> kElevenBits ) << kFiveBits; - nCTableIndex |= pRGBColor->blue >> kElevenBits; - - return nCTableIndex; -} // Compress16BitRGBColor - -// ----------------------------------------------------------------------- - -static void CompressRGBColor ( const PixMapPtr pPixMap, - const RGBColor *pRGBColor, - SalColor *rSalColor - ) -{ - if ( pPixMap->pixelSize == kTrueColor ) - { - *rSalColor = Compress32BitRGBColor( pRGBColor ); - } // if - else - { - *rSalColor = Compress16BitRGBColor( pRGBColor ); - } // else -} // CompressRGBColor - -// ----------------------------------------------------------------------- -// -// Here we shall utilize an approximation to Euclidian norm. Where as -// in a standard Euclidian norm one sums up the square of the RGB color -// distances before proceeding to take the square root, in our case, we -// only measure the RGB color difference before summing up the totals. -// This way of measuring distance is also called the "Manhattan distance." -// Manhattan distance takes advantage of the fact that the sum of the -// lengths of the three components of a 3D vector is a rough approxima- -// tion of the vector's length. -// -// ----------------------------------------------------------------------- - -static unsigned long RGBDistance ( const RGBColor *pRGBColor1, - const RGBColor *pRGBColor2 - ) -{ - unsigned long nRGBDist = 0; - LRectCoor aVec[2]; - - // Find |r'-r|, |g'-g|, and |b'-b| from (r,g,b) and (r',g',b') - // coordinates; where red lies on the x-axis, green lies on the - // y-axis, and blue lies on the z-axis of the RGB color cube. - - aVec[0].x = (long)pRGBColor1->red; - aVec[0].y = (long)pRGBColor1->green; - aVec[0].z = (long)pRGBColor1->blue; - - aVec[1].x = (long)pRGBColor2->red; - aVec[1].y = (long)pRGBColor2->green; - aVec[1].z = (long)pRGBColor2->blue; - - // Now Compute || (r',g',b') - (r,g,b) || - - nRGBDist = Euclidian2Norm( aVec ); - - return nRGBDist; -} // RGBDistance - -// ----------------------------------------------------------------------- - -static inline BOOL QDColorsMatch ( const RGBColor *pRGBColor1, - const RGBColor *pRGBColor2 - ) -{ - if ( ( pRGBColor2->red == pRGBColor1->red ) - && ( pRGBColor2->green == pRGBColor1->green ) - && ( pRGBColor2->blue == pRGBColor1->blue ) - ) - { - return TRUE; - } // if - else - { - return FALSE; - } // else -} // QDColorsMatch - -// ----------------------------------------------------------------------- - -static void GetBestSalColor ( const CTabPtr pCTable, - const RGBColor *pRGBColor, - unsigned long *pBestSalColor - ) -{ - unsigned short nCTableSize = 0; - unsigned long nCTableIndex = 0; - unsigned long nRGBNewDistance = 0; - unsigned long nRGBMinDistance = UID_MAX; - RGBColor *pRGBNextColor = NULL; - BOOL bRGBColorsMatch = FALSE; - - *pBestSalColor = 0; - - nCTableSize = pCTable->ctSize; - - while ( ( nCTableIndex < nCTableSize ) && ( bRGBColorsMatch == FALSE ) ) - { - pRGBNextColor = &pCTable->ctTable[nCTableIndex].rgb; - - bRGBColorsMatch = QDColorsMatch( pRGBColor, pRGBNextColor ); - - if ( bRGBColorsMatch == TRUE ) - { - *pBestSalColor = nCTableIndex; - } // if - else - { - nRGBNewDistance = RGBDistance( pRGBColor, pRGBNextColor ); - - if ( nRGBNewDistance < nRGBMinDistance ) - { - nRGBMinDistance = nRGBNewDistance; - *pBestSalColor = nCTableIndex; - } // if - - nCTableIndex++; - } //else - } // while -} // GetBestSalColor - -// ----------------------------------------------------------------------- - -static void GetCTableIndex ( const RGBColor *pRGBColor, - SalColor *rSalColor - ) -{ - GDPtr pGDevice = NULL; - - pGDevice = *GetGDevice(); - - if ( pGDevice != NULL ) - { - PixMapPtr pPixMap = *pGDevice->gdPMap; - - if ( pPixMap != NULL ) - { - CTabPtr pCTable = *pPixMap->pmTable; - - if ( pCTable != NULL ) - { - ITabPtr pITable = *pGDevice->gdITable; - - if ( pITable != NULL ) - { - // Is the inverse color table up-to-date? - - if ( pITable->iTabSeed != pCTable->ctSeed ) - { - // Update our inverse color table - - MakeITable( pPixMap->pmTable, - pGDevice->gdITable, - pGDevice->gdResPref - ); - - pGDevice = *GetGDevice(); - pITable = *pGDevice->gdITable; - pPixMap = *pGDevice->gdPMap; - pCTable = *pPixMap->pmTable; - } // if - } // if - - // Now we proceed to find the closest match in our - // color table. - - if ( pCTable != NULL ) - { - GetBestSalColor( pCTable, pRGBColor, rSalColor ); - - if ( *rSalColor > pCTable->ctSize ) - { - // Return the index for white color in case - // of an error - - *rSalColor = 255; - } // if - } // if - } // if - } // if - } // if -} // GetCTableIndex - -// ----------------------------------------------------------------------- -// -// Convert RGB color to Sal color. -// -// ----------------------------------------------------------------------- - -SalColor RGBColor2SALColor ( const RGBColor *pRGBColor ) -{ - GDPtr pGDevice = NULL; - SalColor nSalColor = 0; - - pGDevice = *GetGDevice( ); - - if ( pGDevice != NULL ) - { - PixMapPtr pPixMap = NULL; - - pPixMap = *(*pGDevice).gdPMap; - - if ( pPixMap != NULL ) - { - if ( pGDevice->gdType == directType ) - { - CompressRGBColor( pPixMap, pRGBColor, &nSalColor ); - } // if - else - { - GetCTableIndex( pRGBColor, &nSalColor ); - } // else - } // if - } // if - - return nSalColor; -} // RGBColor2SALColor - -// ======================================================================= - -// ======================================================================= - -SalColor RGB8BitColor2SALColor ( const RGBColor *pRGBColor ) -{ - GDPtr pGDevice = NULL; - SalColor nSalColor = 0; - - pGDevice = *GetGDevice( ); - - if ( pGDevice != NULL ) - { - PixMapPtr pPixMap = *(*pGDevice).gdPMap; - - if ( pPixMap != NULL ) - { - if ( pGDevice->gdType != directType ) - { - GetCTableIndex( pRGBColor, &nSalColor ); - } // else - } // if - } // if - - return nSalColor; -} // RGB8BitColor2SALColor - -// ----------------------------------------------------------------------- - -SalColor RGB16BitColor2SALColor ( const RGBColor *pRGBColor ) -{ - GDPtr pGDevice = NULL; - SalColor nSalColor = 0; - - pGDevice = *GetGDevice( ); - - if ( pGDevice != NULL ) - { - PixMapPtr pPixMap = *(*pGDevice).gdPMap; - - if ( pPixMap != NULL ) - { - if ( pGDevice->gdType == directType ) - { - if ( pPixMap->pixelSize == kThousandsColor ) - { - nSalColor = Compress16BitRGBColor( pRGBColor ); - } // if - } // if - } // if - } // if - - return nSalColor; -} // RGB16BitColor2SALColor - -// ----------------------------------------------------------------------- - -SalColor RGB32BitColor2SALColor ( const RGBColor *pRGBColor ) -{ - GDPtr pGDevice = NULL; - SalColor nSalColor = 0; - - pGDevice = *GetGDevice( ); - - if ( pGDevice != NULL ) - { - PixMapPtr pPixMap = *(*pGDevice).gdPMap; - - if ( pPixMap != NULL ) - { - if ( pGDevice->gdType == directType ) - { - if ( pPixMap->pixelSize == kTrueColor ) - { - nSalColor = Compress32BitRGBColor( pRGBColor ); - } // if - } // if - } // if - } // if - - return nSalColor; -} // RGB32BitColor2SALColor - -// ======================================================================= - -// ======================================================================= - -static unsigned short SalColorTo32BitDeviceColor ( SalColor *rSalColor ) -{ - unsigned short nDirectColor = 0; - unsigned short nUpperByte = 0; - unsigned short nLowerByte = 0; - - nLowerByte = *rSalColor & kByteMask; - nUpperByte = nLowerByte << kOneByte; - nDirectColor = nUpperByte | nLowerByte; - *rSalColor >>= kOneByte; - - return nDirectColor; -} // SalColorTo32BitDeviceColor - -// ----------------------------------------------------------------------- - -static void SalColor2DirectColor ( const SalColor nSalColor, - RGBColor *rRGBColor - ) +SalColor GetSalColor( const float* pQuartzColor ) { - SalColor nIndexedColor = nSalColor; - - rRGBColor->blue = SalColorTo32BitDeviceColor( &nIndexedColor ); - rRGBColor->green = SalColorTo32BitDeviceColor( &nIndexedColor ); - rRGBColor->red = SalColorTo32BitDeviceColor( &nIndexedColor ); - -} // SalColor2DirectColor - -// ----------------------------------------------------------------------- - -static unsigned short SalColorTo16BitDeviceColor ( SalColor *rSalColor ) -{ - unsigned short nColor16Bit = 0; - unsigned short nUpper5Bits = 0; - unsigned short nUpper10Bits = 0; - unsigned short nLower5Bits = 0; - - nUpper5Bits = *rSalColor << kElevenBits; - nUpper10Bits = nUpper5Bits | ( nUpper5Bits >> kFiveBits ); - nLower5Bits = nUpper10Bits >> kTenBits; - nColor16Bit = nUpper10Bits | nLower5Bits; - *rSalColor >>= kFiveBits; - - return nColor16Bit; + return MAKE_SALCOLOR( sal_uInt8( pQuartzColor[0] * 255.0), sal_uInt8( pQuartzColor[1] * 255.0 ), sal_uInt8( pQuartzColor[2] * 255.0 ) ); } - -// ----------------------------------------------------------------------- - -static void SalColor2ThousandsColor ( const SalColor nSalColor, - RGBColor *rRGBColor - ) -{ - SalColor nIndexedColor = nSalColor; - - rRGBColor->blue = SalColorTo16BitDeviceColor ( &nIndexedColor ); - rRGBColor->green = SalColorTo16BitDeviceColor ( &nIndexedColor ); - rRGBColor->red = SalColorTo16BitDeviceColor ( &nIndexedColor ); -} // SalColor2ThousandsColor - -// ----------------------------------------------------------------------- - -static void SalColor2EightBitColor ( const SalColor nSalColor, - RGBColor *rRGBColor - ) -{ - GDPtr pGDevice = NULL; - - pGDevice = *GetGDevice(); - - if ( pGDevice != NULL ) - { - CTabPtr pCTable = NULL; - PixMapPtr pPixMap = NULL; - - pPixMap = *(*pGDevice).gdPMap; - - if ( pPixMap != NULL ) - { - pCTable = *(*pPixMap).pmTable; - - if ( pCTable != NULL ) - { - if ( nSalColor <= pCTable->ctSize ) - { - RGBColor aRGBColor; - - aRGBColor = pCTable->ctTable[nSalColor].rgb; - rRGBColor->red = aRGBColor.red; - rRGBColor->green = aRGBColor.green; - rRGBColor->blue = aRGBColor.blue; - } // if - } // if - } // if - } // if -} // SalColor2EightBitColor - -// ----------------------------------------------------------------------- -// -// Here we will convert SAL color to either 8-bit or 32-bit color. -// For 16-bit color we shall let Mac OS compute the nearest color -// from that of 32-bit color using the Euclidean 2-norm in RGB color -// space. -// -// ----------------------------------------------------------------------- - -RGBColor SALColor2RGBColor ( const SalColor nSalColor ) -{ - GDPtr pGDevice = NULL; - RGBColor aRGBColor; - - memset( &aRGBColor, 0, sizeof(RGBColor) ); - - pGDevice = *GetGDevice(); - - if ( pGDevice != NULL ) - { - if ( pGDevice->gdType == directType ) - { - SalColor2DirectColor( nSalColor, &aRGBColor ); - } // if - else - { - SalColor2EightBitColor( nSalColor, &aRGBColor ); - } // else - } // if - - return aRGBColor; -} // SALColor2RGBColor - -// ======================================================================= - -// ======================================================================= - -RGBColor SALColor2RGB32bitColor ( const SalColor nSalColor ) -{ - RGBColor aRGBColor; - - SalColor2DirectColor ( nSalColor, &aRGBColor ); - - return aRGBColor; -} // SALColor2RGB32bitColor - -// ----------------------------------------------------------------------- - -RGBColor SALColor2RGB16bitColor ( const SalColor nSalColor ) -{ - RGBColor aRGBColor; - - SalColor2ThousandsColor ( nSalColor, &aRGBColor ); - - return aRGBColor; -} // SALColor2RGB16bitColor - -// ----------------------------------------------------------------------- - -RGBColor SALColor2RGB8bitColor ( const SalColor nSalColor ) -{ - RGBColor aRGBColor; - - SalColor2EightBitColor ( nSalColor, &aRGBColor ); - - return aRGBColor; -} // SALColor2RGB8bitColor - -// ======================================================================= - -// ======================================================================= - -SalColor GetROPSalColor( SalROPColor nROPColor ) -{ - SalColor nSalColor = 0; - - if ( nROPColor == SAL_ROP_0 ) - { - RGBColor aBlackColor; - - aBlackColor.red = 0x0000; - aBlackColor.green = 0x0000; - aBlackColor.blue = 0x0000; - - nSalColor = RGBColor2SALColor ( &aBlackColor ); - } // if - else - { - RGBColor aWhiteColor; - - aWhiteColor.red = 0xffff; - aWhiteColor.green = 0xffff; - aWhiteColor.blue = 0xffff; - - nSalColor = RGBColor2SALColor ( &aWhiteColor ); - } // else - - return nSalColor; -} // GetROPSalColor - -// ======================================================================= - -// ======================================================================= - -short GetMinColorCount( const short nPixMapColorDepth, - const BitmapPalette &rBitmapPalette - ) -{ - short nBitmapPaletteCount = rBitmapPalette.GetEntryCount(); - short nBitmapPaletteMinCount = 0; - - if ( nPixMapColorDepth < nBitmapPaletteCount ) - { - nBitmapPaletteMinCount = nPixMapColorDepth; - } // if - else - { - nBitmapPaletteMinCount = nBitmapPaletteCount; - } // else - - return nBitmapPaletteMinCount; -} // GetMinColorCount - -// ======================================================================= - -// ======================================================================= -RGBColor BitmapColor2RGBColor ( const BitmapColor &rBitmapColor ) +void SetSalColor( const SalColor& rColor, float* pQuartzColor ) { - const USHORT nBitmapRedColor = rBitmapColor.GetRed(); - const USHORT nBitmapGreenColor = rBitmapColor.GetGreen(); - const USHORT nBitmapBlueColor = rBitmapColor.GetBlue(); - RGBColor aRGBColor; - - aRGBColor.red = (short)(( nBitmapRedColor << kOneByte ) | nBitmapRedColor ); - aRGBColor.green = (short)(( nBitmapGreenColor << kOneByte ) | nBitmapGreenColor ); - aRGBColor.blue = (short)(( nBitmapBlueColor << kOneByte ) | nBitmapBlueColor ); - - return aRGBColor; -} // BitmapColor2RGBColor - -// ------------------------------------------------------------------ - -void RGBColor2BitmapColor ( const RGBColor *rRGBColor, - BitmapColor &rBitmapColor - ) -{ - if ( rRGBColor != NULL ) - { - const BYTE nRedColor = (BYTE)( rRGBColor->red >> kOneByte ); - const BYTE nGreenColor = (BYTE)( rRGBColor->green >> kOneByte ); - const BYTE nBlueColor = (BYTE)( rRGBColor->blue >> kOneByte ); - - rBitmapColor.SetRed ( nRedColor ); - rBitmapColor.SetGreen ( nGreenColor ); - rBitmapColor.SetBlue ( nBlueColor ); - } // if -} // RGBColor2BitmapColor - -// ======================================================================= - -// ======================================================================= - -void SetBlackForeColor ( ) -{ - RGBColor aBlackForeColor; - - // Black color - - aBlackForeColor.red = 0x0000; - aBlackForeColor.green = 0x0000; - aBlackForeColor.blue = 0x0000; - - // Set foreground color to black - - RGBForeColor( &aBlackForeColor ); -} // SetBlackForeColor - -// ----------------------------------------------------------------------- - -void SetWhiteBackColor ( ) -{ - RGBColor aWhiteBackColor; - - // White color - - aWhiteBackColor.red = 0xffff; - aWhiteBackColor.green = 0xffff; - aWhiteBackColor.blue = 0xffff; - - // Set background color to white - - RGBBackColor( &aWhiteBackColor ); -} // SetWhiteBackColor - -// ======================================================================= - -// ======================================================================= - -RGBColor GetBlackColor ( ) -{ - RGBColor aBlackColor; - - aBlackColor.red = 0x0000; - aBlackColor.green = 0x0000; - aBlackColor.blue = 0x0000; - - return aBlackColor; -} // GetBlackColor - -// ----------------------------------------------------------------------- - -RGBColor GetWhiteColor ( ) -{ - RGBColor aWhiteColor; - - aWhiteColor.red = 0xffff; - aWhiteColor.green = 0xffff; - aWhiteColor.blue = 0xffff; - - return aWhiteColor; -} // GetWhiteColor - -// ======================================================================= - -// ======================================================================= - -CTabHandle CopyGDeviceCTab ( ) -{ - GDPtr pGDevice = NULL; - CTabHandle hCTable = NULL; - - pGDevice = *GetGDevice ( ); - - if ( pGDevice != NULL ) - { - PixMapPtr pPixMap = NULL; - - pPixMap = *(*pGDevice).gdPMap; - - if ( pPixMap != NULL ) - { - CTabPtr pCTable = NULL; - - pCTable = *(*pPixMap).pmTable; - - if ( pCTable != NULL ) - { - const short nCTableSize = pCTable->ctSize + 1; - long nCTableHandleSize = 0; - - nCTableHandleSize = ( nCTableSize - * sizeof( ColorSpec ) - ) - + ( sizeof( ColorTable ) - - sizeof( CSpecArray ) - ); - - hCTable = (CTabHandle) NewHandleClear( nCTableHandleSize ); - - if ( ( hCTable != NULL ) && ( *hCTable != NULL ) ) - { - SInt8 nFlags = noErr; - - nFlags = HGetState( (Handle)hCTable ); - - if ( nFlags == noErr ) - { - unsigned long nCTableIndex; - - HLock( (Handle)hCTable ); - - (**hCTable).ctSize = pCTable->ctSize; - (**hCTable).ctFlags = pCTable->ctFlags; - (**hCTable).ctSeed = GetCTSeed(); - - for ( nCTableIndex = 0; - nCTableIndex < nCTableSize; - nCTableIndex++ - ) - { - (**hCTable).ctTable[nCTableIndex] - = pCTable->ctTable[nCTableIndex]; - } // for - - HSetState( (Handle)hCTable, nFlags ); - } // if - } // if - } // if - } // if - } // if - - return hCTable; -} // CopyGDeviceCTab - -// ------------------------------------------------------------------ - -CTabHandle GetCTabFromStdCLUT ( const short nBitDepth ) -{ - CTabHandle hCTab = NULL; - short nCLUTID = 0; - - nCLUTID = nBitDepth + 64; - - hCTab = GetCTable( nCLUTID ); - - return hCTab; -} // GetCTabFromStdCLUT - -// ======================================================================= - -// ======================================================================= - -CTabHandle CopyCTabIndexed ( CTabHandle hCTab ) -{ - CTabHandle hCTabCopy = NULL; - - if ( ( hCTab != NULL ) && ( *hCTab != NULL ) ) - { - SInt8 nhCTabFlags = noErr; - - nhCTabFlags = HGetState( (Handle)hCTabCopy ); - - if ( nhCTabFlags == noErr ) - { - long nCTabSize = 0; - long nCTabHandleSize = 0; - - HLock( (Handle)hCTab ); - - nCTabSize = (**hCTab).ctSize + 1; - - nCTabHandleSize = ( nCTabSize - * sizeof( ColorSpec ) - ) - + ( sizeof( ColorTable ) - - sizeof( CSpecArray ) - ); - - hCTabCopy = (CTabHandle)NewHandleClear( nCTabHandleSize ); - - if ( ( hCTabCopy != NULL ) && ( *hCTabCopy != NULL ) ) - { - SInt8 nCTabCopyFlags = noErr; - - nCTabCopyFlags = HGetState( (Handle)hCTabCopy ); - - if ( nCTabCopyFlags == noErr ) - { - unsigned long nPortPixMapCTabIndex; - - HLock( (Handle)hCTabCopy ); - - (**hCTabCopy).ctSize = (**hCTab).ctSize; - (**hCTabCopy).ctFlags = (**hCTab).ctFlags; - (**hCTabCopy).ctSeed = GetCTSeed(); - - for ( nPortPixMapCTabIndex = 0; - nPortPixMapCTabIndex < nCTabSize; - nPortPixMapCTabIndex++ - ) - { - (**hCTabCopy).ctTable[nPortPixMapCTabIndex] - = (**hCTab).ctTable[nPortPixMapCTabIndex]; - } // for - - HSetState( (Handle)hCTabCopy, nCTabCopyFlags ); - } // if - } // if - - HSetState( (Handle)hCTab, nhCTabFlags ); - } // if - } // if - else - { - hCTabCopy = GetCTabFromStdCLUT( kEightBitColor ); - - if ( hCTabCopy == NULL ) - { - hCTabCopy = CopyGDeviceCTab( ); - } // if - } // else - - return hCTabCopy; -} // CopyCTabIndexed - -// ------------------------------------------------------------------ - -CTabHandle CopyCTabRGBDirect ( CTabHandle hCTab ) -{ - CTabHandle hCTabCopy = NULL; - - if ( ( hCTab != NULL ) && ( *hCTab != NULL ) ) - { - SInt8 nhCTabFlags = noErr; - - nhCTabFlags = HGetState( (Handle)hCTabCopy ); - - if ( nhCTabFlags == noErr ) - { - HLock( (Handle)hCTab ); - - hCTabCopy = (CTabHandle)NewHandleClear( sizeof( ColorTable ) - - sizeof( CSpecArray ) - ); - - if ( ( hCTabCopy != NULL ) && ( *hCTabCopy != NULL ) ) - { - SInt8 nCTabCopyFlags = noErr; - - nCTabCopyFlags = HGetState( (Handle)hCTabCopy ); - - if ( nCTabCopyFlags == noErr ) - { - HLock( (Handle)hCTabCopy ); - - (**hCTabCopy).ctSeed = (**hCTab).ctSeed; - (**hCTabCopy).ctFlags = (**hCTab).ctFlags; - (**hCTabCopy).ctSize = (**hCTab).ctSize; - - HSetState( (Handle)hCTabCopy, nCTabCopyFlags ); - } // if - } // if - - HSetState( (Handle)hCTab, nhCTabFlags ); - } // if - } // if - - return hCTabCopy; -} // CopyCTabRGBDirect - -// ======================================================================= - -// ======================================================================= - -CTabHandle CopyPixMapCTab ( PixMapHandle hPixMap ) -{ - CTabHandle hCTabCopy = NULL; - short nPixMapBitDepth = GetPixDepth( hPixMap ); - - if ( nPixMapBitDepth <= kEightBitColor ) - { - hCTabCopy = CopyCTabIndexed( (**hPixMap).pmTable ); - } // if - else - { - hCTabCopy = CopyCTabRGBDirect( (**hPixMap).pmTable ); - } // else - - return hCTabCopy; -} // CopyPixMapCTab - -// ======================================================================= - -// ======================================================================= - -void SetBitmapBufferColorFormat ( const PixMapHandle mhPixMap, - BitmapBuffer *rBuffer - ) -{ - const short nPixMapCmpCount = (**mhPixMap).cmpCount; - const short nPixMapCmpSize = (**mhPixMap).cmpSize; - - rBuffer->mnFormat = BMP_FORMAT_TOP_DOWN; - - if( nPixMapCmpCount == 1 ) - { - // Indexed color mode - - switch ( nPixMapCmpSize ) - { - case ( kPixMapCmpSizeOneBit ): - rBuffer->mnFormat |= BMP_FORMAT_1BIT_MSB_PAL; - break; - case ( kPixMapCmpSizeFourBits ): - rBuffer->mnFormat |= BMP_FORMAT_4BIT_MSN_PAL; - break; - case ( kPixMapCmpSizeEightBits ): - rBuffer->mnFormat |= BMP_FORMAT_8BIT_PAL; - break; - default: - break; - } // switch - } // if - else - { - // Direct color mode - - switch ( nPixMapCmpSize ) - { - case ( kPixMapCmpSizeFiveBits ): - rBuffer->mnFormat |= BMP_FORMAT_16BIT_TC_MASK; - rBuffer->maColorMask = ColorMask( k16BitRedColorMask, - k16BitGreenColorMask, - k16BitBlueColorMask - ); - break; - case ( kPixMapCmpSizeEightBits ): - rBuffer->mnFormat |= BMP_FORMAT_32BIT_TC_ARGB; - rBuffer->maColorMask = ColorMask( k32BitRedColorMask, - k32BitGreenColorMask, - k32BitBlueColorMask - ); - break; - default: - break; - } // switch; - } //else -} // SetBitmapBufferColorFormat - -// ======================================================================= + pQuartzColor[0] = (float) SALCOLOR_RED(rColor) / 255.0; + pQuartzColor[1] = (float) SALCOLOR_GREEN(rColor) / 255.0; + pQuartzColor[2] = (float) SALCOLOR_BLUE(rColor) / 255.0; + pQuartzColor[3] = 1.0; +} // ======================================================================= diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salfontutils.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salfontutils.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salfontutils.cxx 2006-09-17 13:44:07.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salfontutils.cxx 2007-03-08 13:11:43.000000000 +0100 @@ -48,164 +48,320 @@ #include #endif +#include + // ======================================================================= // ======================================================================= -static rtl_Script GetRTLScriptFromFontScriptCode( const FontNameEncodingPtr pFontNameEncoding ) +static rtl_TextEncoding GetRTLScriptFromFontScriptCode( const FontNameEncodingPtr pFontNameEncoding ) { FontScriptCode nFontScriptCode = pFontNameEncoding->mnFontScriptCode; FontPlatformCode nFontPlatformCode = pFontNameEncoding->mnFontPlatformCode; - rtl_Script nFontRTLScript = SCRIPT_DONTKNOW; + rtl_TextEncoding nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; if ( nFontPlatformCode == kFontUnicodePlatform ) { - nFontRTLScript = SCRIPT_UNICODE; + nFontRTLScript = RTL_TEXTENCODING_UNICODE; } // if else { switch( nFontScriptCode ) { case kFontRomanScript: - nFontRTLScript = SCRIPT_LATIN; + nFontRTLScript = RTL_TEXTENCODING_APPLE_ROMAN; break; case kFontJapaneseScript: - nFontRTLScript = SCRIPT_JAPANESE; + nFontRTLScript = RTL_TEXTENCODING_APPLE_JAPANESE; break; case kFontTraditionalChineseScript: - nFontRTLScript = SCRIPT_CHINESE_TRADITIONAL; + nFontRTLScript = RTL_TEXTENCODING_APPLE_CHINTRAD; break; case kFontKoreanScript: - nFontRTLScript = SCRIPT_KOREAN; + nFontRTLScript = RTL_TEXTENCODING_APPLE_KOREAN; break; case kFontArabicScript: - nFontRTLScript = SCRIPT_ARABIC; + nFontRTLScript = RTL_TEXTENCODING_APPLE_ARABIC; break; case kFontHebrewScript: - nFontRTLScript = SCRIPT_HEBREW; + nFontRTLScript = RTL_TEXTENCODING_APPLE_HEBREW; break; case kFontGreekScript: - nFontRTLScript = SCRIPT_GREEK; + nFontRTLScript = RTL_TEXTENCODING_APPLE_GREEK; break; case kFontCyrillicScript: - nFontRTLScript = SCRIPT_CYRILLIC; + nFontRTLScript = RTL_TEXTENCODING_APPLE_CYRILLIC; break; case kFontRSymbolScript: - nFontRTLScript = SCRIPT_SYMBOL; + nFontRTLScript = RTL_TEXTENCODING_SYMBOL; break; case kFontDevanagariScript: - nFontRTLScript = SCRIPT_DEVANAGARI; + nFontRTLScript = RTL_TEXTENCODING_APPLE_DEVANAGARI; break; case kFontGurmukhiScript: - nFontRTLScript = SCRIPT_GURMUKHI; + nFontRTLScript = RTL_TEXTENCODING_APPLE_GURMUKHI; break; case kFontGujaratiScript: - nFontRTLScript = SCRIPT_GUJARATI; + nFontRTLScript = RTL_TEXTENCODING_APPLE_GUJARATI; break; case kFontOriyaScript: - nFontRTLScript = SCRIPT_ORIYA; + nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; break; case kFontBengaliScript: - nFontRTLScript = SCRIPT_BENGALI; + nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; break; case kFontTamilScript: - nFontRTLScript = SCRIPT_TAMIL; + nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; break; case kFontTeluguScript: - nFontRTLScript = SCRIPT_TELUGU; + nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; break; case kFontKannadaScript: - nFontRTLScript = SCRIPT_KANNADA; + nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; break; case kFontMalayalamScript: - nFontRTLScript = SCRIPT_MALAYALAM; + nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; break; case kFontSinhaleseScript: - nFontRTLScript = SCRIPT_DONTKNOW; + nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; break; case kFontBurmeseScript: - nFontRTLScript = SCRIPT_DONTKNOW; + nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; break; case kFontKhmerScript: - nFontRTLScript = SCRIPT_DONTKNOW; + nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; break; case kFontThaiScript: - nFontRTLScript = SCRIPT_THAI; + nFontRTLScript = RTL_TEXTENCODING_APPLE_THAI; break; case kFontLaotianScript: - nFontRTLScript = SCRIPT_LAO; + nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; break; case kFontGeorgianScript: - nFontRTLScript = SCRIPT_GEORGIEN; + nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; break; case kFontArmenianScript: - nFontRTLScript = SCRIPT_ARMENIAN; + nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; break; case kFontSimpleChineseScript: - nFontRTLScript = SCRIPT_CHINESE_SIMPLIFIED; + nFontRTLScript = RTL_TEXTENCODING_APPLE_CHINSIMP; break; case kFontTibetanScript: - nFontRTLScript = SCRIPT_DONTKNOW; + nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; break; case kFontMongolianScript: - nFontRTLScript = SCRIPT_DONTKNOW; + nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; break; case kFontGeezScript: - nFontRTLScript = SCRIPT_DONTKNOW; + nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; break; case kFontEastEuropeanRomanScript: - nFontRTLScript = SCRIPT_EASTEUROPE; + nFontRTLScript = RTL_TEXTENCODING_APPLE_CENTEURO; break; case kFontVietnameseScript: - nFontRTLScript = SCRIPT_VIETNAMESE; + nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; break; case kFontExtendedArabicScript: - nFontRTLScript = SCRIPT_DONTKNOW; + nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; break; case kFontUninterpretedScript: - nFontRTLScript = SCRIPT_DONTKNOW; + nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; break; default: - nFontRTLScript = SCRIPT_DONTKNOW; + nFontRTLScript = RTL_TEXTENCODING_DONTKNOW; break; } // switch } // else return nFontRTLScript; } // GetRTLScriptFromFontScriptCode +//static rtl_Script GetRTLScriptFromFontScriptCode( const FontNameEncodingPtr pFontNameEncoding ) +//{ +// FontScriptCode nFontScriptCode = pFontNameEncoding->mnFontScriptCode; +// FontPlatformCode nFontPlatformCode = pFontNameEncoding->mnFontPlatformCode; +// rtl_Script nFontRTLScript = SCRIPT_DONTKNOW; +// +// if ( nFontPlatformCode == kFontUnicodePlatform ) +// { +// nFontRTLScript = SCRIPT_UNICODE; +// } // if +// else +// { +// switch( nFontScriptCode ) +// { +// case kFontRomanScript: +// nFontRTLScript = SCRIPT_LATIN; +// break; +// +// case kFontJapaneseScript: +// nFontRTLScript = SCRIPT_JAPANESE; +// break; +// +// case kFontTraditionalChineseScript: +// nFontRTLScript = SCRIPT_CHINESE_TRADITIONAL; +// break; +// +// case kFontKoreanScript: +// nFontRTLScript = SCRIPT_KOREAN; +// break; +// +// case kFontArabicScript: +// nFontRTLScript = SCRIPT_ARABIC; +// break; +// +// case kFontHebrewScript: +// nFontRTLScript = SCRIPT_HEBREW; +// break; +// +// case kFontGreekScript: +// nFontRTLScript = SCRIPT_GREEK; +// break; +// +// case kFontCyrillicScript: +// nFontRTLScript = SCRIPT_CYRILLIC; +// break; +// +// case kFontRSymbolScript: +// nFontRTLScript = SCRIPT_SYMBOL; +// break; +// +// case kFontDevanagariScript: +// nFontRTLScript = SCRIPT_DEVANAGARI; +// break; +// +// case kFontGurmukhiScript: +// nFontRTLScript = SCRIPT_GURMUKHI; +// break; +// +// case kFontGujaratiScript: +// nFontRTLScript = SCRIPT_GUJARATI; +// break; +// +// case kFontOriyaScript: +// nFontRTLScript = SCRIPT_ORIYA; +// break; +// +// case kFontBengaliScript: +// nFontRTLScript = SCRIPT_BENGALI; +// break; +// +// case kFontTamilScript: +// nFontRTLScript = SCRIPT_TAMIL; +// break; +// +// case kFontTeluguScript: +// nFontRTLScript = SCRIPT_TELUGU; +// break; +// +// case kFontKannadaScript: +// nFontRTLScript = SCRIPT_KANNADA; +// break; +// +// case kFontMalayalamScript: +// nFontRTLScript = SCRIPT_MALAYALAM; +// break; +// +// case kFontSinhaleseScript: +// nFontRTLScript = SCRIPT_DONTKNOW; +// break; +// +// case kFontBurmeseScript: +// nFontRTLScript = SCRIPT_DONTKNOW; +// break; +// +// case kFontKhmerScript: +// nFontRTLScript = SCRIPT_DONTKNOW; +// break; +// +// case kFontThaiScript: +// nFontRTLScript = SCRIPT_THAI; +// break; +// +// case kFontLaotianScript: +// nFontRTLScript = SCRIPT_LAO; +// break; +// +// case kFontGeorgianScript: +// nFontRTLScript = SCRIPT_GEORGIEN; +// break; +// +// case kFontArmenianScript: +// nFontRTLScript = SCRIPT_ARMENIAN; +// break; +// +// case kFontSimpleChineseScript: +// nFontRTLScript = SCRIPT_CHINESE_SIMPLIFIED; +// break; +// +// case kFontTibetanScript: +// nFontRTLScript = SCRIPT_DONTKNOW; +// break; +// +// case kFontMongolianScript: +// nFontRTLScript = SCRIPT_DONTKNOW; +// break; +// +// case kFontGeezScript: +// nFontRTLScript = SCRIPT_DONTKNOW; +// break; +// +// case kFontEastEuropeanRomanScript: +// nFontRTLScript = SCRIPT_EASTEUROPE; +// break; +// +// case kFontVietnameseScript: +// nFontRTLScript = SCRIPT_VIETNAMESE; +// break; +// +// case kFontExtendedArabicScript: +// nFontRTLScript = SCRIPT_DONTKNOW; +// break; +// +// case kFontUninterpretedScript: +// nFontRTLScript = SCRIPT_DONTKNOW; +// break; +// +// default: +// nFontRTLScript = SCRIPT_DONTKNOW; +// break; +// } // switch +// } // else +// +// return nFontRTLScript; +//} // GetRTLScriptFromFontScriptCode // ----------------------------------------------------------------------- @@ -308,19 +464,20 @@ if ( hFontList != NULL ) { - short nItem = 1; - ImplFontData *pData = NULL; - ImplFontData *pCompare = NULL; + ItemCount nItem; + ImplDevFontAttributes pAttributes; + ImplMacFontData *pData = NULL; + ImplMacFontData *pCompare = NULL; ULONG nInsertPos = 0; char pFontFamilyName[kFontFamilyNameLength]; char pFontStyleName[kFontStyleNameLength]; - for ( nItem = 1; - nItem <= nFontListLength; + for ( nItem = 0; + nItem < nFontListLength; nItem++ ) { - pData = new ImplFontData; + pData = new ImplMacFontData(pAttributes,0,0,0); memset( pFontFamilyName, 0, kFontFamilyNameMemSize ); memset( pFontStyleName, 0, kFontStyleNameMemSize ); @@ -356,11 +513,15 @@ pData->meWeight = GetFontWeightFromFontNamesRecord( hFontList[ nItem ] ); - pData->mpSysData = NULL; // System-Data (only GSL) - pData->mnWidth = 0; // Font width in pixels - pData->mnHeight = 0; // Font height in pixels + // ATSUFontID + pData->mnFontID = hFontList[ nItem ]->mnFontID; + + //pData->mpSysData = (AquaSalSystem*)NULL; // System-Data (only GSL) +// pData->mnWidth = 0; // Font width in pixels +// pData->mnHeight = 0; // Font height in pixels +// pData->SetBitmapSize(0,0); pData->meFamily = FAMILY_DONTKNOW; // Font family - pData->meCharSet = 0; // Font character set +// pData->meCharSet = 0; // Font character set pData->mePitch = PITCH_DONTKNOW; // Font pitch pData->meWidthType = WIDTH_NORMAL; // Font weight type pData->meWeight = WEIGHT_NORMAL; // Font weight @@ -370,11 +531,11 @@ pData->mbDevice = TRUE; // Device font pData->mnQuality = 0; // Font quality - nInsertPos = nItem - 1; + nInsertPos = nItem /*- 1*/; while ( nInsertPos ) { - pCompare = pList->GetObject( nInsertPos - 1 ); + pCompare = (ImplMacFontData*)pList->GetObject( nInsertPos - 1 ); if ( pCompare->maName > pData->maName ) { diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salgdi.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salgdi.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salgdi.cxx 2006-09-17 13:44:22.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salgdi.cxx 2007-03-10 10:50:47.000000000 +0100 @@ -37,648 +37,494 @@ #include "precompiled_vcl.hxx" #ifndef _SV_SALCONST_H - #include +#include #endif #ifndef _SV_SALGDI_H - #include +#include #endif #ifndef _SV_SALBMP_HXX - #include +#include #endif -#ifndef _SV_VCLGRAPHICS_H - #include +#ifndef _SV_SALBMP_H +#include #endif #ifndef _SV_SALCOLORUTILS_HXX - #include +#include #endif #ifndef _SV_SALFONTUTILS_HXX - #include +#include #endif -#ifndef _SV_SALGDIUTILS_HXX - #include -#endif - -#ifndef _SV_SALRECTANGLEUTILS_HXX - #include -#endif +#include +#include -// ======================================================================= +typedef unsigned char Boolean; // copied from MacTypes.h, should be properly included // ======================================================================= -SalGraphics::SalGraphics() +ImplMacFontData::ImplMacFontData(const ImplDevFontAttributes& rDFA, + int nFontHeight=0, int macCharSet=0, + int nPitchAndFamily=0) : +ImplFontData(rDFA,0) { - // QuickDraw graph port, offscreen graphic world, and graphic device handle + +} - InitQD( &maGraphicsData ); +ImplMacFontData::~ImplMacFontData() +{ + +} - // GWorld attributes +ImplFontData* ImplMacFontData::Clone() const +{ + ImplFontData* pClone = new ImplMacFontData( *this ); + return pClone; +} - InitGWorld( &maGraphicsData ); +ImplFontEntry* ImplMacFontData::CreateFontInstance( ImplFontSelectData& rFSD ) const +{ + ImplFontEntry* pEntry = new ImplFontEntry( rFSD ); + return pEntry; +} - // Regions within a current port - - InitRegions( &maGraphicsData ); +// ======================================================================= - // Font attributes - - InitFont( &maGraphicsData ); +AquaSalGraphics::AquaSalGraphics() +{ + mrView = NULL; + mrWindow = NULL; + mrContext = NULL; + mrBitmapContext = NULL; - // Pen attributes and status - - InitPen( &maGraphicsData ); +#if DEBUGLEVEL>1 + mbQDCG=false; +#endif - // Brush attributes and status - - InitBrush( &maGraphicsData ); + mrRGBColorSpace = CGColorSpaceCreateDeviceRGB(); - // Miscellaneous status flags + mrClippingPath = NULL; + mpStdClippingRect = NULL; + mpClippingRect = NULL; + mpNextClippingRect = NULL; + mnClippingRectCount = 0; + + // init colors + for(int i=0; i<3; i++) + { + mpFillColor[i] = 0.0; // white + mpLineColor[i] = 1.0; // black + } + mpFillColor[3] = mpLineColor[3] = 1.0; // opaque colors + + // create the style object for font attributes + ATSUCreateStyle( &maATSUStyle ); + mnATSUIRotation = 0; + + mnPenMode = patCopy; + + mbPrinter = false; + mbVirDev = false; + mbWindow = false; + mbScreen = false; - InitStatusFlags( &maGraphicsData ); - -} // SalGraphics Class Constructor +// mnUpdateGraphicsEvent = 0; + mnGraphics = 0; +} // ----------------------------------------------------------------------- -SalGraphics::~SalGraphics() +AquaSalGraphics::~AquaSalGraphics() { - // Release memory taken up by clip region, off-screen - // graph world, and colour graph port - - if ( ( ( maGraphicsData.mbGWorldPixelsCopy == TRUE ) - || ( maGraphicsData.mbGWorldPixelsNew == TRUE ) - ) - && ( maGraphicsData.mhGWorldPixMap != NULL ) - ) - { - DisposePixMap( maGraphicsData.mhGWorldPixMap ); - - maGraphicsData.mhGWorldPixMap = NULL; - } // if - - if ( maGraphicsData.mhClipRgn != NULL ) - { - DisposeRgn( maGraphicsData.mhClipRgn ); + DBG_ASSERT( mnGraphics == 0, "vcl::AquaSalGraphics::~AquaSalGraphics(), BeginGraphics and EndGraphics calls do not match!" ); - maGraphicsData.mhClipRgn = NULL; - } // if - - if ( maGraphicsData.mpGWorld != NULL ) - { - DisposeGWorld( maGraphicsData.mpGWorld ); - - maGraphicsData.mpGWorld = NULL; - } // if - - if ( maGraphicsData.mpCGrafPort != NULL ) +/* + if( mnUpdateGraphicsEvent ) { - DisposeGWorld( maGraphicsData.mpCGrafPort ); - - maGraphicsData.mpCGrafPort = NULL; - } // if - - // Initialize the rest of the fields to zero + Application::RemoveUserEvent( mnUpdateGraphicsEvent ); + } +*/ + CGColorSpaceRelease( mrRGBColorSpace ); + CGPathRelease( mrClippingPath ); + ATSUDisposeStyle( maATSUStyle ); + delete [] mpStdClippingRect; - memset( &maGraphicsData, 0, sizeof(SalGraphicsData) ); -} // SalGraphics Class Destructor - -// ======================================================================= - -// ======================================================================= - -void SalGraphics::GetResolution( long& rDPIX, - long& rDPIY - ) -{ - long nHRes = 0; - long nVRes = 0; - - maGraphicsData.mnOSStatus = GetGDeviceResolution( &nHRes, &nVRes ); - - if ( maGraphicsData.mnOSStatus == noErr ) + if( mrBitmapContext && (mrBitmapContext != mrContext) ) { - rDPIX = nHRes; - rDPIY = nVRes; - } // if -} // SalGraphics::GetResolution + // destroy backbuffer bitmap context that we created ourselfs + void * pBuffer = CGBitmapContextGetData(mrBitmapContext); + CFRelease( mrBitmapContext ); + mrBitmapContext = 0; + if( pBuffer ) + free( pBuffer ); + } +} -// ----------------------------------------------------------------------- +// ======================================================================= -void SalGraphics::GetScreenFontResolution( long& rDPIX, - long& rDPIY - ) +void AquaSalGraphics::GetResolution( long& rDPIX, long& rDPIY ) { - long nHRes = 0; - long nVRes = 0; + CGDirectDisplayID display = GetWindowDisplayID(); - maGraphicsData.mnOSStatus = GetGDeviceResolution( &nHRes, &nVRes ); + // Returns the width and height of a display in millimeters. + CGSize aSize = CGDisplayScreenSize ( display ); - if ( maGraphicsData.mnOSStatus == noErr ) - { - rDPIX = nHRes; - rDPIY = nVRes; - } // if -} // SalGraphics::GetScreenFontResolution + rDPIX = static_cast(((double)CGDisplayPixelsWide( display ) * 25.4) / aSize.width ); + rDPIY = static_cast(((double)CGDisplayPixelsHigh( display ) * 25.4) / aSize.height ); +} // ----------------------------------------------------------------------- -USHORT SalGraphics::GetBitCount() +void AquaSalGraphics::GetScreenFontResolution( long& rDPIX, long& rDPIY ) { - unsigned short nBitDepth = 0; - - maGraphicsData.mnOSStatus = GetGDeviceBitDepth( &nBitDepth ); - - return nBitDepth; -} // SalGraphics::GetBitCount + // TODO: Is this correct? + GetResolution( rDPIX, rDPIY ); +} // ----------------------------------------------------------------------- -void SalGraphics::ResetClipRegion() +USHORT AquaSalGraphics::GetBitCount() { - if ( !maGraphicsData.mbWindow ) + if ( mrWindow ) { - if ( maGraphicsData.mhClipRgn != NULL ) - { - DisposeRgn( maGraphicsData.mhClipRgn ); - - maGraphicsData.mhClipRgn = NULL; - } // if - } // if + return static_cast( CGDisplayBitsPerPixel( GetWindowDisplayID() ) ); + } + else if( mrBitmapContext ) + { + return static_cast( CGBitmapContextGetBitsPerPixel(mrBitmapContext) ); + } else { - Rect aClipRect; - short nLeft = 0; - short nTop = 0; - short nRight = 0; - short nBottom = 0; - - if ( maGraphicsData.mhClipRgn == NULL ) - { - maGraphicsData.mhClipRgn = NewRgn(); - } // if - - GetPortBounds( maGraphicsData.mpCGrafPort, &aClipRect); - - nRight = aClipRect.right - aClipRect.left; - nBottom = aClipRect.bottom - aClipRect.top; - - MacSetRectRgn ( maGraphicsData.mhClipRgn, - nLeft, - nTop, - nRight, - nBottom - ); - } // else - - maGraphicsData.mbClipRgnChanged = TRUE; -} // SalGraphics::ResetClipRegion + return 32; + } +} // ----------------------------------------------------------------------- -void SalGraphics::BeginSetClipRegion( ULONG nRectCount ) +void AquaSalGraphics::ResetClipRegion() { - if ( maGraphicsData.mhClipRgn != NULL ) - { - DisposeRgn( maGraphicsData.mhClipRgn ); - - maGraphicsData.mhClipRgn = NULL; - } // if -} // SalGraphics::BeginSetClipRegion + // release old path and indicate no clipping + CGPathRelease( mrClippingPath ); + mrClippingPath = NULL; +} // ----------------------------------------------------------------------- -BOOL SalGraphics::UnionClipRegion( long nX, - long nY, - long nWidth, - long nHeight - ) -{ - RgnHandle hClipRegion = NULL; - BOOL bClipRegionsJoined = FALSE; - - hClipRegion = NewRgn(); +void AquaSalGraphics::BeginSetClipRegion( ULONG nRectCount ) +{ + // release old path + if( mrClippingPath ) + { + CGPathRelease( mrClippingPath ); + mrClippingPath = NULL; + } + + // allocate rect array or use existing + if( nRectCount < SAL_CLIPRECT_COUNT ) + { + if( !mpStdClippingRect ) + mpStdClippingRect = new CGRect[SAL_CLIPRECT_COUNT]; + mpClippingRect = mpStdClippingRect; + } + else + mpClippingRect = new CGRect[nRectCount]; + + // initialize index and count + mpNextClippingRect = mpClippingRect; + mnClippingRectCount = nRectCount; +} - if ( hClipRegion != NULL ) - { - short nLeft = nX; - short nTop = nY; - short nRight = nX+nWidth; - short nBottom = nY+nHeight; +// ----------------------------------------------------------------------- - MacSetRectRgn ( hClipRegion, - nLeft, - nTop, - nRight, - nBottom - ); +BOOL AquaSalGraphics::unionClipRegion( long nX, long nY, long nWidth, long nHeight ) +{ + if( nWidth && nHeight ) + { + *mpNextClippingRect++ = CGRectMake (nX, nY, nWidth, nHeight); + } + else + { + // do not add useless clipping rects but correct the count + mnClippingRectCount--; + } - if ( maGraphicsData.mhClipRgn != NULL ) - { - MacUnionRgn ( maGraphicsData.mhClipRgn, - hClipRegion, - maGraphicsData.mhClipRgn - ); - - maGraphicsData.mnOSStatus = QDErr(); - - DisposeRgn( hClipRegion ); - } // if - else - { - maGraphicsData.mhClipRgn = hClipRegion; - } // else - - if ( maGraphicsData.mnOSStatus == noErr ) - { - bClipRegionsJoined = TRUE; - } // if - } // if - - return bClipRegionsJoined; -} // SalGraphics::UnionClipRegion + return TRUE; +} // ----------------------------------------------------------------------- -void SalGraphics::EndSetClipRegion() +void AquaSalGraphics::EndSetClipRegion() { - maGraphicsData.mbClipRgnChanged = TRUE; - - if ( maGraphicsData.mhClipRgn == NULL ) - { - ResetClipRegion(); - } -} // SalGraphics::EndSetClipRegion + if( mnClippingRectCount ) + { + mrClippingPath = CGPathCreateMutable(); + if( mnClippingRectCount == 1 ) + CGPathAddRect( mrClippingPath, NULL, *mpClippingRect ); + else + CGPathAddRects( mrClippingPath, NULL, mpClippingRect, mnClippingRectCount ); + mnClippingRectCount = 0; + } + if ( mpClippingRect != mpStdClippingRect ) + { + delete [] mpClippingRect; + mpClippingRect = NULL; + } +} // ----------------------------------------------------------------------- -void SalGraphics::SetLineColor() +void AquaSalGraphics::SetLineColor() { - maGraphicsData.mbPenTransparent = TRUE; -} // SalGraphics::SetLineColor + mpLineColor[3] = 0.0; // set alpha component to 0 +} // ----------------------------------------------------------------------- -void SalGraphics::SetLineColor( SalColor nSalColor ) +void AquaSalGraphics::SetLineColor( SalColor nSalColor ) { - maGraphicsData.mbPenTransparent = FALSE; - maGraphicsData.maPenColor = SALColor2RGBColor( nSalColor ); -} // SalGraphics::SetLineColor + mpLineColor[0] = (float) SALCOLOR_RED(nSalColor) / 255.0; + mpLineColor[1] = (float) SALCOLOR_GREEN(nSalColor) / 255.0; + mpLineColor[2] = (float) SALCOLOR_BLUE(nSalColor) / 255.0; + mpLineColor[3] = 1.0; // opaque +} // ----------------------------------------------------------------------- -void SalGraphics::SetFillColor() +void AquaSalGraphics::SetFillColor() { - maGraphicsData.mbBrushTransparent = TRUE; -} // SalGraphics::SetFillColor + mpFillColor[3] = 0.0; // set alpha component to 0 +} // ----------------------------------------------------------------------- -void SalGraphics::SetFillColor( SalColor nSalColor ) +void AquaSalGraphics::SetFillColor( SalColor nSalColor ) { - RGBColor aRGBColor; - - aRGBColor = SALColor2RGBColor( nSalColor ); - - maGraphicsData.maBrushColor = aRGBColor; - maGraphicsData.mbBrushTransparent = FALSE; -} // SalGraphics::SetFillColor + mpFillColor[0] = (float) SALCOLOR_RED(nSalColor) / 255.0; + mpFillColor[1] = (float) SALCOLOR_GREEN(nSalColor) / 255.0; + mpFillColor[2] = (float) SALCOLOR_BLUE(nSalColor) / 255.0; + mpFillColor[3] = 1.0; // opaque +} // ----------------------------------------------------------------------- -void SalGraphics::SetXORMode( BOOL bSet ) +void AquaSalGraphics::SetXORMode( BOOL bSet ) { - if ( bSet == TRUE ) - { - maGraphicsData.mnPenMode = patXor; - } // if - else - { - maGraphicsData.mnPenMode = patCopy; - } // else -} // SalGraphics::SetXORMode +} // ----------------------------------------------------------------------- -void SalGraphics::SetROPLineColor( SalROPColor nROPColor ) +void AquaSalGraphics::SetROPLineColor( SalROPColor nROPColor ) { - SalColor nSalColor = GetROPSalColor( nROPColor ); - - SetLineColor( nSalColor ); -} // SalGraphics::SetROPLineColor +} // ----------------------------------------------------------------------- -void SalGraphics::SetROPFillColor( SalROPColor nROPColor ) +void AquaSalGraphics::SetROPFillColor( SalROPColor nROPColor ) { - SalColor nSalColor = GetROPSalColor( nROPColor ); - - SetFillColor( nSalColor ); -} // SalGraphics::SetROPFillColor +} // ----------------------------------------------------------------------- -void SalGraphics::DrawPixel( long nX, - long nY - ) +void AquaSalGraphics::ImplDrawPixel( long nX, long nY, float pColor[] ) { - if ( BeginGraphics( &maGraphicsData ) ) + // save fill color and replace it with the desired color + float oldFillColor[4]; + memcpy( (void*) oldFillColor, (void*) mpFillColor, sizeof( oldFillColor ) ); + memcpy( (void*) mpFillColor, (void*) pColor, sizeof( mpFillColor ) ); + + if ( BeginGraphics() ) { - RGBColor aPixelRGBColor = maGraphicsData.maPenColor; + // draw 1x1 rect, there is no pixel drawing in Quartz + CGContextFillRect (mrContext, CGRectMake (nX, nY, 1, 1)); - SetCPixel( nX, nY, &aPixelRGBColor ); + if( isOffscreenCopy() ) + CGContextFillRect (mrBitmapContext, CGRectMake (nX, nY, 1, 1)); + EndGraphics(); + } + + // restore fill color + memcpy( (void*) mpFillColor, (void*) oldFillColor, sizeof( mpFillColor ) ); + +} - EndGraphics( &maGraphicsData ); - } // if -} // SalGraphics::DrawPixel +void AquaSalGraphics::drawPixel( long nX, long nY ) +{ + // draw pixel with current line color + ImplDrawPixel( nX, nY, mpLineColor ); +} + +void AquaSalGraphics::drawPixel( long nX, long nY, SalColor nSalColor ) +{ + // draw pixel with specified color + float pColor[] = + { + (float) SALCOLOR_RED(nSalColor) / 255.0, + (float) SALCOLOR_GREEN(nSalColor) / 255.0, + (float) SALCOLOR_BLUE(nSalColor) / 255.0, + 1.0 // opaque + }; + + ImplDrawPixel(nX, nY, pColor); +} // ----------------------------------------------------------------------- -void SalGraphics::DrawPixel( long nX, - long nY, - SalColor nSalColor - ) +static void implDrawLine( CGContextRef& xContext, long nX1, long nY1, long nX2, long nY2 ) +{ + CGContextBeginPath( xContext ); + CGContextMoveToPoint( xContext, nX1, nY1 ); + CGContextAddLineToPoint( xContext, nX2, nY2 ); + CGContextDrawPath( xContext, kCGPathStroke ); +} + +void AquaSalGraphics::drawLine( long nX1, long nY1, long nX2, long nY2 ) { - if ( BeginGraphics( &maGraphicsData ) ) + if ( BeginGraphics() ) { - RGBColor aPixelRGBColor; - - aPixelRGBColor = SALColor2RGBColor( nSalColor ); - - SetCPixel( nX, nY, &aPixelRGBColor ); - - EndGraphics( &maGraphicsData ); - } // if -} // SalGraphics::DrawPixel + implDrawLine( mrContext, nX1, nY1, nX2, nY2 ); + if( isOffscreenCopy() ) + implDrawLine( mrBitmapContext, nX1, nY1, nX2, nY2 ); + EndGraphics(); + } +} // ----------------------------------------------------------------------- -void SalGraphics::DrawLine( long nX1, - long nY1, - long nX2, - long nY2 - ) +static void implDrawRect( CGContextRef& xContext, long nX, long nY, long nWidth, long nHeight, bool bFilled ) { - if ( BeginGraphics( &maGraphicsData ) ) - { - MoveTo( nX1, nY1 ); - - if ( maGraphicsData.mbPenTransparent == TRUE ) - { - SetBlackForeColor(); - } // if - else - { - RGBColor aPenColor = maGraphicsData.maPenColor; - - RGBForeColor( &aPenColor ); - } // else - - MacLineTo( nX2, nY2 ); - - EndGraphics( &maGraphicsData ); - } // if -} // SalGraphics::DrawLine - -// ----------------------------------------------------------------------- + if( bFilled ) + CGContextStrokeRect(xContext, CGRectMake (nX, nY, nWidth, nHeight)); + else + CGContextFillRect(xContext, CGRectMake (nX, nY, nWidth, nHeight)); +} -void SalGraphics::DrawRect( long nX, - long nY, - long nWidth, - long nHeight - ) +void AquaSalGraphics::drawRect( long nX, long nY, long nWidth, long nHeight ) { - if ( BeginGraphics( &maGraphicsData ) ) + if ( BeginGraphics() ) { - long nEndX = 0; - long nEndY = 0; - RGBColor aBrushColor = maGraphicsData.maBrushColor; - Rect aRect; - - // [ed] 12/1/01 Parameter checks. Limit all of the parameters to fit within - // the current port bounds - - Rect portBounds; - GetPortBounds(maGraphicsData.mpCGrafPort, &portBounds); - - if(nX < portBounds.left) - nX=portBounds.left; - - if(nY < portBounds.top) - nY=portBounds.top; - - if((nHeight > (portBounds.bottom-portBounds.top)-(nY-portBounds.top)) || (nHeight < 0)) - nHeight=portBounds.bottom-portBounds.top-(nY-portBounds.top)-1; - - if((nWidth > (portBounds.right-portBounds.left-(nX-portBounds.left))) || (nHeight < 0)) - nWidth=portBounds.right-portBounds.left-(nX-portBounds.left)-1; + const bool bFilled = IsBrushTransparent(); - // Compute the second set of (nX,nY) coordinates - - nEndX = nX + nWidth; - nEndY = nY + nHeight; - - RGBForeColor( &aBrushColor ); - - MoveTo( nX, nY ); - - MacSetRect( &aRect, nX, nY, nEndX, nEndY ); - - if ( maGraphicsData.mbBrushTransparent == TRUE ) - { - MacFrameRect( &aRect ); - } // if - else - { - PaintRect( &aRect ); - } // else - - EndGraphics( &maGraphicsData ); - } // if -} // SalGraphics::DrawRect + implDrawRect( mrContext, nX, nY, nWidth, nHeight, bFilled ); + if( isOffscreenCopy() ) + implDrawRect( mrBitmapContext, nX, nY, nWidth, nHeight, bFilled ); + EndGraphics(); + } +} // ----------------------------------------------------------------------- -void SalGraphics::DrawPolyLine( ULONG nPoints, - const SalPoint *pPtAry - ) +static void implDrawPolyLine( CGContextRef& xContext, ULONG nPoints, const SalPoint *pPtAry ) { - if ( ( nPoints > 1 ) && ( pPtAry != NULL ) ) - { - if ( BeginGraphics( &maGraphicsData ) ) - { - long nPolyEdges = 0; - PolyHandle hPolygon = NULL; - - SetBlackForeColor(); - - // Construct a polygon - - hPolygon = OpenPoly(); - - if ( hPolygon != NULL ) - { - MoveTo( pPtAry[0].mnX, pPtAry[0].mnY ); - - for ( nPolyEdges = 1; - nPolyEdges < nPoints; - nPolyEdges++ - ) - { - MacLineTo( pPtAry[nPolyEdges].mnX, - pPtAry[nPolyEdges].mnY - ); - } // for - - MacLineTo( pPtAry[0].mnX, - pPtAry[0].mnY - ); - } // if - - ClosePoly(); - - // Did a QD error occur whilst constructing a polygon? - - maGraphicsData.mnOSStatus = QDErr(); - - if ( ( maGraphicsData.mnOSStatus == noErr ) - && ( hPolygon != NULL ) - ) - { - FramePoly( hPolygon ); - - KillPoly( hPolygon ); - } // if - - EndGraphics( &maGraphicsData ); - } // if - } // if -} // SalGraphics::DrawPolyLine - -// ----------------------------------------------------------------------- + CGContextBeginPath( xContext ); + CGContextMoveToPoint( xContext, pPtAry->mnX, pPtAry->mnY ); + pPtAry++; + for( ULONG nPoint = 1; nPoint < nPoints; nPoint++, pPtAry++ ) + CGContextAddLineToPoint( xContext, pPtAry->mnX, pPtAry->mnY ); + CGContextDrawPath( xContext, kCGPathStroke ); +} -void SalGraphics::DrawPolygon( ULONG nPoints, - const SalPoint *pPtAry - ) +void AquaSalGraphics::drawPolyLine( ULONG nPoints, const SalPoint *pPtAry ) { - if ( ( nPoints > 1 ) && ( pPtAry != NULL ) ) + if( (nPoints > 1) && BeginGraphics() ) { - if ( BeginGraphics( &maGraphicsData ) ) - { - long nPolyEdges = 0; - PolyHandle hPolygon = NULL; - RGBColor aPolyColor = maGraphicsData.maBrushColor; - - RGBForeColor( &aPolyColor ); - - // Construct a polygon - - hPolygon = OpenPoly(); - - if ( hPolygon != NULL ) - { - MoveTo( pPtAry[0].mnX, pPtAry[0].mnY ); + implDrawPolyLine( mrContext, nPoints, pPtAry ); + if( isOffscreenCopy() ) + implDrawPolyLine( mrBitmapContext, nPoints, pPtAry ); + EndGraphics(); + } +} - for ( nPolyEdges = 1; - nPolyEdges < nPoints; - nPolyEdges++ - ) - { - MacLineTo( pPtAry[nPolyEdges].mnX, - pPtAry[nPolyEdges].mnY - ); - } // for - - MacLineTo( pPtAry[0].mnX, - pPtAry[0].mnY - ); - } // if +// ----------------------------------------------------------------------- - ClosePoly(); +static void ImplDrawPolygone( CGContextRef& xContext, ULONG nPoints, const SalPoint *pPtAry, float* pFillColor, float* pLineColor ) +{ + CGContextBeginPath( xContext ); + CGContextMoveToPoint( xContext, pPtAry->mnX, pPtAry->mnY ); + pPtAry++; + for( ULONG nPoint = 1; nPoint < nPoints; nPoint++, pPtAry++ ) + CGContextAddLineToPoint( xContext, pPtAry->mnX, pPtAry->mnY ); - // Did a QD error occur whilst constructing a polygon? + if( pFillColor[3] > 0.0 ) + { + CGContextClosePath(xContext); + CGContextDrawPath( xContext, kCGPathEOFill ); + } - maGraphicsData.mnOSStatus = QDErr(); - - if ( ( maGraphicsData.mnOSStatus == noErr ) - && ( hPolygon != NULL ) - ) - { - PaintPoly( hPolygon ); + if( pLineColor[3] > 0.0 ) + CGContextDrawPath( xContext, kCGPathStroke ); +} - KillPoly( hPolygon ); - } // if - - EndGraphics( &maGraphicsData ); - } // if - } // if -} // SalGraphics::DrawPolygon +void AquaSalGraphics::drawPolygon( ULONG nPoints, const SalPoint *pPtAry ) +{ + if( (nPoints > 1) && BeginGraphics() ) + { + ImplDrawPolygone( mrContext, nPoints, pPtAry, mpFillColor, mpLineColor ); + if( isOffscreenCopy() ) + ImplDrawPolygone( mrBitmapContext, nPoints, pPtAry, mpFillColor, mpLineColor ); + EndGraphics(); + } +} // ----------------------------------------------------------------------- -void SalGraphics::DrawPolyPolygon( ULONG nPoly, - const ULONG *pPoints, - PCONSTSALPOINT *ppPtAry - ) +static void ImplDrawPolyPolygone( CGContextRef& xContext, ULONG nPolyCount, const ULONG *pPoints, PCONSTSALPOINT *ppPtAry ) { - if ( ( nPoly > 1 ) && ( ppPtAry != NULL ) && ( ppPtAry != NULL ) ) + CGContextBeginPath( xContext ); + for( ULONG nPoly = 0; nPoly < nPolyCount; nPoly++ ) { - if ( BeginGraphics( &maGraphicsData ) ) + const ULONG nPoints = pPoints[nPoly]; + if( nPoints > 1 ) { - RgnHandle hPolyRgn = NULL; - RGBColor aPolyColor = maGraphicsData.maBrushColor; - OSStatus nOSStatus = noErr; - - RGBForeColor( &aPolyColor ); - - // Construct a polygon region - - hPolyRgn = GetPolygonRgn( nPoly, - pPoints, - ppPtAry, - &nOSStatus - ); - - if ( ( hPolyRgn != NULL ) && ( nOSStatus == noErr ) ) - { - MacPaintRgn( hPolyRgn ); - - DisposeRgn( hPolyRgn ); - - nOSStatus = QDErr(); + const SalPoint *pPtAry = ppPtAry[nPoly]; + CGContextBeginPath( xContext ); + CGContextMoveToPoint( xContext, pPtAry->mnX, pPtAry->mnY ); + pPtAry++; + for( ULONG nPoint = 1; nPoint < nPoints; nPoint++, pPtAry++ ) + CGContextAddLineToPoint( xContext, pPtAry->mnX, pPtAry->mnY ); + CGContextClosePath(xContext); + } + } + CGContextDrawPath( xContext, kCGPathEOFill ); +} - hPolyRgn = NULL; - } // if - - maGraphicsData.mnOSStatus = nOSStatus; +void AquaSalGraphics::drawPolyPolygon( ULONG nPolyCount, const ULONG *pPoints, PCONSTSALPOINT *ppPtAry ) +{ + if( nPolyCount && ( mpFillColor[3] > 0.0 ) && BeginGraphics() ) + { + ImplDrawPolyPolygone( mrContext, nPolyCount, pPoints, ppPtAry ); + if( isOffscreenCopy() ) + ImplDrawPolyPolygone( mrBitmapContext, nPolyCount, pPoints, ppPtAry ); + EndGraphics(); + } - EndGraphics( &maGraphicsData ); - } // if - } // if -} // SalGraphics::DrawPolyPolygon + if( mpLineColor[3] > 0.0 ) + { + for( ULONG nPoly = 0; nPoly < nPolyCount; nPoly++ ) + drawPolyLine( pPoints[nPoly], ppPtAry[nPoly] ); + } +} // ----------------------------------------------------------------------- -sal_Bool SalGraphics::DrawPolyLineBezier( ULONG nPoints, const SalPoint* pPtAry, const BYTE* pFlgAry ) +sal_Bool AquaSalGraphics::drawPolyLineBezier( ULONG nPoints, const SalPoint* pPtAry, const BYTE* pFlgAry ) { return sal_False; } // ----------------------------------------------------------------------- -sal_Bool SalGraphics::DrawPolygonBezier( ULONG nPoints, const SalPoint* pPtAry, const BYTE* pFlgAry ) +sal_Bool AquaSalGraphics::drawPolygonBezier( ULONG nPoints, const SalPoint* pPtAry, const BYTE* pFlgAry ) { return sal_False; } // ----------------------------------------------------------------------- -sal_Bool SalGraphics::DrawPolyPolygonBezier( ULONG nPoly, const ULONG* pPoints, +sal_Bool AquaSalGraphics::drawPolyPolygonBezier( ULONG nPoly, const ULONG* pPoints, const SalPoint* const* pPtAry, const BYTE* const* pFlgAry ) { return sal_False; @@ -686,776 +532,597 @@ // ----------------------------------------------------------------------- -void SalGraphics::CopyBits( const SalTwoRect *pPosAry, - SalGraphics *pSrcGraphics - ) +void AquaSalGraphics::copyBits( const SalTwoRect *pPosAry, SalGraphics *pSrcGraphics ) { - if ( ( pPosAry != NULL ) && ( pSrcGraphics != NULL ) ) - { - if ( BeginGraphics( &maGraphicsData ) ) - { - const BitMap *pDstBitMap = GetPortBitMapForCopyBits( maGraphicsData.mpCGrafPort ); - - if ( pDstBitMap != NULL ) - { - Rect aSrcRect; - Rect aDstRect; - Rect aPortBoundsRect; - RgnHandle hMaskRgn = NULL; // Mask Region for QD CopyBits - short nCopyMode = 0; - - SalTwoRect2QDSrcRect( pPosAry, &aSrcRect ); - - SalTwoRect2QDDstRect( pPosAry, &aDstRect ); - - GetPortBounds( pSrcGraphics->maGraphicsData.mpCGrafPort, &aPortBoundsRect ); - - CheckRectBounds( &aPortBoundsRect, &aSrcRect, &aDstRect ); - - nCopyMode = SelectCopyMode( &maGraphicsData ); - - // Now we can call QD CopyBits to copy the bits from source rectangle - // to the destination rectangle - - if ( LockGraphics( pSrcGraphics ) ) - { - const BitMap *pSrcBitMap - = GetPortBitMapForCopyBits( pSrcGraphics->maGraphicsData.mpCGrafPort ); - - if ( pSrcBitMap != NULL ) - { - ::CopyBits ( pSrcBitMap, - pDstBitMap, - &aSrcRect, - &aDstRect, - nCopyMode, - hMaskRgn - ); - } // if - - UnlockGraphics( pSrcGraphics ); - } // if - else - { - ::CopyBits ( pDstBitMap, - pDstBitMap, - &aSrcRect, - &aDstRect, - nCopyMode, - hMaskRgn - ); - } // else - } // if - - EndGraphics( &maGraphicsData ); - } // if - } // if -} // SalGraphics::CopyBits + if( !pSrcGraphics ) + pSrcGraphics = this; + + //from unix salgdi2.cxx + //[FIXME] find a better way to prevent calc from crashing when width and height are negative + if( pPosAry->mnSrcWidth <= 0 + || pPosAry->mnSrcHeight <= 0 + || pPosAry->mnDestWidth <= 0 + || pPosAry->mnDestHeight <= 0 ) + { + fprintf(stderr, ">>>AquaSalGraphics::copyBits: WARNING negative width and/or height\n"); + return; + } + + SalBitmap* pBitmap = static_cast(pSrcGraphics)->getBitmap( pPosAry->mnSrcX, pPosAry->mnSrcY, pPosAry->mnSrcWidth, pPosAry->mnSrcHeight ); + + if( pBitmap ) + { + SalTwoRect aPosAry( *pPosAry ); + aPosAry.mnSrcX = 0; + aPosAry.mnSrcY = 0; + drawBitmap( &aPosAry, *pBitmap ); + delete pBitmap; + } +} // ----------------------------------------------------------------------- -void SalGraphics::CopyArea( long nDstX, - long nDstY, - long nSrcX, - long nSrcY, - long nSrcWidth, - long nSrcHeight, - USHORT nFlags - ) +void AquaSalGraphics::copyArea( long nDstX, long nDstY,long nSrcX, long nSrcY, long nSrcWidth, long nSrcHeight, USHORT nFlags ) { - if ( BeginGraphics( &maGraphicsData ) ) + SalBitmap* pBitmap = getBitmap( nSrcX, nSrcY, nSrcWidth, nSrcHeight ); + if( pBitmap ) { - const BitMap *pDstBitMap = GetPortBitMapForCopyBits( maGraphicsData.mpCGrafPort ); - - if ( pDstBitMap != NULL ) - { - short nCopyMode = 0; - long nDstWidth = nSrcWidth; - long nDstHeight = nSrcHeight; - RgnHandle hMaskRgn = NULL; // Mask Region for QD CopyBits - Rect aSrcRect; - Rect aDstRect; - Rect aPortBoundsRect; - - GetQDRect( nSrcX, nSrcY, nSrcWidth, nSrcHeight, &aSrcRect ); - - GetQDRect( nDstX, nDstY, nDstWidth, nDstHeight, &aDstRect ); - - GetPortBounds( maGraphicsData.mpCGrafPort, &aPortBoundsRect ); - - CheckRectBounds( &aPortBoundsRect, &aSrcRect, &aDstRect ); - - nCopyMode = SelectCopyMode( &maGraphicsData ); - - // Now we can call QD CopyBits to copy the bits from source rectangle - // to the destination rectangle - - ::CopyBits ( pDstBitMap, - pDstBitMap, - &aSrcRect, - &aDstRect, - nCopyMode, - hMaskRgn - ); - } // if - - EndGraphics( &maGraphicsData ); - } // if -} // SalGraphics::CopyArea + SalTwoRect aPosAry; + aPosAry.mnSrcX = 0; + aPosAry.mnSrcY = 0; + aPosAry.mnSrcWidth = nSrcWidth; + aPosAry.mnSrcHeight = nSrcHeight; + aPosAry.mnDestX = nDstX; + aPosAry.mnDestY = nDstY; + aPosAry.mnDestWidth = nSrcWidth; + aPosAry.mnDestHeight = nSrcHeight; + drawBitmap( &aPosAry, *pBitmap ); + delete pBitmap; + } +} // ----------------------------------------------------------------------- -void SalGraphics::DrawBitmap( const SalTwoRect* pPosAry, - const SalBitmap& rSalBitmap - ) +void AquaSalGraphics::drawBitmap( const SalTwoRect* pPosAry, const SalBitmap& rSalBitmap ) { - if ( pPosAry != NULL ) + const AquaSalBitmap& rBitmap = static_cast(rSalBitmap); + if ( BeginGraphics() ) { - if ( BeginGraphics( &maGraphicsData ) ) - { - SalGraphics *pSrcGraphics = rSalBitmap.GetGraphics(); - - if ( LockGraphics( pSrcGraphics ) ) - { - const BitMap *pDstBitMap = GetPortBitMapForCopyBits( maGraphicsData.mpCGrafPort ); - - if ( pDstBitMap != NULL ) - { - const BitMap *pSrcBitMap - = GetPortBitMapForCopyBits( pSrcGraphics->maGraphicsData.mpCGrafPort ); - - if ( pSrcBitMap != NULL ) - { - Rect aSrcRect; - Rect aDstRect; - Rect aPortBoundsRect; - RgnHandle hMaskRgn = NULL; // Mask Region for QD CopyBits - short nCopyMode = 0; - - SalTwoRect2QDSrcRect( pPosAry, &aSrcRect ); - - SalTwoRect2QDDstRect( pPosAry, &aDstRect ); - - GetPortBounds( pSrcGraphics->maGraphicsData.mpCGrafPort, &aPortBoundsRect ); - - CheckRectBounds( &aPortBoundsRect, &aSrcRect, &aDstRect ); - - nCopyMode = SelectCopyMode( &maGraphicsData ); - - // Now we can call QD CopyBits to copy the bits from source rectangle - // to the destination rectangle + CGImageRef xImage = const_cast< AquaSalBitmap& >( rBitmap ).CreateCroppedImage( (int)pPosAry->mnSrcX, (int)pPosAry->mnSrcY, (int)pPosAry->mnSrcWidth, (int)pPosAry->mnSrcHeight ); - ::CopyBits ( pSrcBitMap, - pDstBitMap, - &aSrcRect, - &aDstRect, - nCopyMode, - hMaskRgn - ); - } // if - } // if + CGContextDrawImage(mrContext, CGRectMake ((int)pPosAry->mnDestX, (int)pPosAry->mnDestY, (int)pPosAry->mnDestWidth, (int)pPosAry->mnDestHeight), xImage); + if( isOffscreenCopy() ) + CGContextDrawImage(mrBitmapContext, CGRectMake ((int)pPosAry->mnDestX, (int)pPosAry->mnDestY, (int)pPosAry->mnDestWidth, (int)pPosAry->mnDestHeight), xImage); - UnlockGraphics( pSrcGraphics ); + RefreshRect((int)pPosAry->mnDestX, (int)pPosAry->mnDestY, (int)pPosAry->mnDestWidth, (int)pPosAry->mnDestHeight); - rSalBitmap.ReleaseGraphics( pSrcGraphics ); - } // if - - EndGraphics( &maGraphicsData ); - } // if - } // if -} // SalGraphics::DrawBitmap + CGImageRelease(xImage); + EndGraphics(); + } +} // ----------------------------------------------------------------------- -void SalGraphics::DrawBitmap( const SalTwoRect* pPosAry, - const SalBitmap& rSalBitmap, - SalColor nTransparentColor - ) +void AquaSalGraphics::drawBitmap( const SalTwoRect* pPosAry, const SalBitmap& rSalBitmap,SalColor nTransparentColor ) { - if ( pPosAry != NULL ) - { - if ( BeginGraphics( &maGraphicsData ) ) - { - SalGraphics *pSrcGraphics = rSalBitmap.GetGraphics(); - - if ( LockGraphics( pSrcGraphics ) ) - { - const BitMap *pDstBitMap = GetPortBitMapForCopyBits( maGraphicsData.mpCGrafPort ); - - if ( pDstBitMap != NULL ) - { - const BitMap *pSrcBitMap - = GetPortBitMapForCopyBits( pSrcGraphics->maGraphicsData.mpCGrafPort ); - - if ( pSrcBitMap != NULL ) - { - Rect aSrcRect; - Rect aDstRect; - Rect aPortBoundsRect; - RGBColor aBackColor; - RgnHandle hMaskRgn = NULL; // Mask Region for QD CopyBits - short nCopyMode = transparent; - - SalTwoRect2QDSrcRect( pPosAry, &aSrcRect ); - - SalTwoRect2QDDstRect( pPosAry, &aDstRect ); - - GetPortBounds( pSrcGraphics->maGraphicsData.mpCGrafPort, &aPortBoundsRect ); - - CheckRectBounds( &aPortBoundsRect, &aSrcRect, &aDstRect ); - - aBackColor = SALColor2RGBColor( nTransparentColor ); - - RGBBackColor( &aBackColor ); - - // Now we can call QD CopyBits to copy the bits from - // source rectangle to the destination rectangle - - ::CopyBits ( pSrcBitMap, - pDstBitMap, - &aSrcRect, - &aDstRect, - nCopyMode, - hMaskRgn - ); - } // if - } // if - - UnlockGraphics( pSrcGraphics ); - - rSalBitmap.ReleaseGraphics( pSrcGraphics ); - } // if - - EndGraphics( &maGraphicsData ); - } // if - } // if -} // SalGraphics::DrawBitmap + fprintf( stderr, "<> AquaSalGraphics::drawBitmap( const SalTwoRect* pPosAry, const SalBitmap& rSalBitmap,SalColor nTransparentColor ) not yet implemented!\n" ); + drawBitmap( pPosAry, rSalBitmap ); +} // ----------------------------------------------------------------------- -void SalGraphics::DrawBitmap( const SalTwoRect* pPosAry, - const SalBitmap& rSalBitmap, - const SalBitmap& rTransparentBitmap - ) +void AquaSalGraphics::drawBitmap( const SalTwoRect* pPosAry, const SalBitmap& rSalBitmap, const SalBitmap& rTransparentBitmap ) { - if ( pPosAry != NULL ) + AquaSalBitmap& rBitmap = const_cast< AquaSalBitmap& >( static_cast(rSalBitmap) ); + const AquaSalBitmap& rMask = static_cast(rTransparentBitmap); + if ( BeginGraphics() ) { - if ( BeginGraphics( &maGraphicsData ) ) + CGImageRef xMaskedImage( rBitmap.CreateWithMask( rMask, pPosAry->mnSrcX, pPosAry->mnSrcY, pPosAry->mnSrcWidth, pPosAry->mnSrcHeight ) ); + if( xMaskedImage ) { - SalGraphics *pSrcGraphics = rSalBitmap.GetGraphics(); - - if ( LockGraphics( pSrcGraphics ) ) - { - SalGraphics *pMskGraphics = rTransparentBitmap.GetGraphics(); + CGContextDrawImage(mrContext, CGRectMake (pPosAry->mnDestX, pPosAry->mnDestY, pPosAry->mnDestWidth, pPosAry->mnDestHeight), xMaskedImage); - if ( LockGraphics( pMskGraphics ) ) - { - const BitMap *pDstBitMap = GetPortBitMapForCopyBits( maGraphicsData.mpCGrafPort ); - - if ( pDstBitMap != NULL ) - { - const BitMap *pSrcBitMap - = GetPortBitMapForCopyBits( pSrcGraphics->maGraphicsData.mpCGrafPort ); - - if ( pSrcBitMap != NULL ) - { - const BitMap *pMskBitMap - = GetPortBitMapForCopyBits( pSrcGraphics->maGraphicsData.mpCGrafPort ); - - if ( pMskBitMap != NULL ) - { - Rect aSrcRect; - Rect aDstRect; - Rect aPortBoundsRect; - RgnHandle hMaskRgn = NULL; // Mask Region for QD CopyBits - short nCopyMode = 0; - - SalTwoRect2QDSrcRect( pPosAry, &aSrcRect ); - - SalTwoRect2QDDstRect( pPosAry, &aDstRect ); - - GetPortBounds( pSrcGraphics->maGraphicsData.mpCGrafPort, - &aPortBoundsRect - ); - - CheckRectBounds( &aPortBoundsRect, &aSrcRect, &aDstRect ); - - nCopyMode = SelectCopyMode( &maGraphicsData ); + RefreshRect((int)pPosAry->mnDestX, (int)pPosAry->mnDestY, (int)pPosAry->mnDestWidth, (int)pPosAry->mnDestHeight); - // Now we can call QD CopyDeepMask to copy the bits from - // source rectangle to the destination rectangle using the - // the mask bits - - ::CopyDeepMask( pSrcBitMap, - pMskBitMap, - pDstBitMap, - &aSrcRect, - &aSrcRect, - &aDstRect, - nCopyMode, - hMaskRgn - ); - } // if - } // if - } // if - - UnlockGraphics( pMskGraphics ); - - rSalBitmap.ReleaseGraphics( pMskGraphics ); - } // if - - UnlockGraphics( pSrcGraphics ); - - rSalBitmap.ReleaseGraphics( pSrcGraphics ); - } // if - - EndGraphics( &maGraphicsData ); - } // if - } //if -} // SalGraphics::DrawBitmap + if( isOffscreenCopy() ) + CGContextDrawImage(mrBitmapContext, CGRectMake (pPosAry->mnDestX, pPosAry->mnDestY, pPosAry->mnDestWidth, pPosAry->mnDestHeight), xMaskedImage); + CGImageRelease(xMaskedImage); + } + EndGraphics(); + } +} // ----------------------------------------------------------------------- -void SalGraphics::DrawMask( const SalTwoRect* pPosAry, - const SalBitmap& rSalBitmap, - SalColor nMaskColor - ) +void AquaSalGraphics::drawMask( const SalTwoRect* pPosAry, const SalBitmap& rSalBitmap, SalColor nMaskColor ) { - if ( pPosAry != NULL ) + const AquaSalBitmap& rBitmap = static_cast(rSalBitmap); + + if ( BeginGraphics() ) { - if ( BeginGraphics( &maGraphicsData ) ) + CGImageRef xImage = rBitmap.CreateColorMask( pPosAry->mnSrcX, pPosAry->mnSrcY, pPosAry->mnSrcWidth, pPosAry->mnSrcHeight, nMaskColor ); + if( xImage ) { - SalGraphics *pSrcGraphics = rSalBitmap.GetGraphics(); - - if ( LockGraphics( pSrcGraphics ) ) - { - const BitMap *pDstBitMap - = GetPortBitMapForCopyBits( maGraphicsData.mpCGrafPort ); - - if ( pDstBitMap != NULL ) - { - const BitMap *pSrcBitMap - = GetPortBitMapForCopyBits( pSrcGraphics->maGraphicsData.mpCGrafPort ); - - if ( pSrcBitMap != NULL ) - { - Rect aSrcRect; - Rect aDstRect; - Rect aPortBoundsRect; - RGBColor aMaskBackColor; - RgnHandle hMaskRgn = NULL; // Mask Region for QD CopyBits - short nCopyMode = 0; + CGContextDrawImage(mrContext, CGRectMake (pPosAry->mnDestX, pPosAry->mnDestY, pPosAry->mnDestWidth, pPosAry->mnDestHeight), xImage); - SalTwoRect2QDSrcRect( pPosAry, &aSrcRect ); + RefreshRect((int)pPosAry->mnDestX, (int)pPosAry->mnDestY, (int)pPosAry->mnDestWidth, (int)pPosAry->mnDestHeight); - SalTwoRect2QDDstRect( pPosAry, &aDstRect ); - - GetPortBounds( pSrcGraphics->maGraphicsData.mpCGrafPort, &aPortBoundsRect ); - - CheckRectBounds( &aPortBoundsRect, &aSrcRect, &aDstRect ); - - aMaskBackColor = SALColor2RGBColor( nMaskColor ); - - RGBBackColor( &aMaskBackColor ); - - nCopyMode = SelectCopyMode( &maGraphicsData ); - - // Now we can call QD CopyDeepMask to copy the bits from - // source rectangle to the destination rectangle using the - // the mask bits - - ::CopyDeepMask( pSrcBitMap, - pSrcBitMap, - pDstBitMap, - &aSrcRect, - &aSrcRect, - &aDstRect, - nCopyMode, - hMaskRgn - ); - } // if - } // if - - UnlockGraphics( pSrcGraphics ); - - rSalBitmap.ReleaseGraphics( pSrcGraphics ); - } // if - - EndGraphics( &maGraphicsData ); - } // if - } // if -} // SalGraphics::DrawMask + if( isOffscreenCopy() ) + CGContextDrawImage(mrBitmapContext, CGRectMake (pPosAry->mnDestX, pPosAry->mnDestY, pPosAry->mnDestWidth, pPosAry->mnDestHeight), xImage); + CGImageRelease(xImage); + } + EndGraphics(); + } +} // ----------------------------------------------------------------------- -SalBitmap* SalGraphics::GetBitmap( long nX, - long nY, - long nDX, - long nDY - ) +SalBitmap* AquaSalGraphics::getBitmap( long nX, long nY, long nDX, long nDY ) { - fprintf( stderr, - "<> SalGraphics::GetBitmap not yet implemented!\n" - ); + AquaSalBitmap* pBitmap = 0; + //from the win32 implementation in salgdi2.cxx + //prevent OOo from crashing when width and height are negative + //[FIXME] find a better way to prevent calc from crashing when width and height are negative + nDX = labs( nDX ); + nDY = labs( nDY ); + + if( mrBitmapContext ) + { + pBitmap = new AquaSalBitmap; + if( !pBitmap->Create( mrBitmapContext, nX, nY, nDX, nDY ) ) + { + delete pBitmap; + pBitmap = 0; + } + } + + if( !pBitmap ) + fprintf(stderr, "<> AquaSalGraphics::getBitmap() failed!\n" ); - return NULL; -} // SalGraphics::GetBitmap + return pBitmap; +} // ----------------------------------------------------------------------- -SalColor SalGraphics::GetPixel( long nX, - long nY - ) +SalColor AquaSalGraphics::getPixel( long nX, long nY ) { - RGBColor aRGBColor; SalColor nSalColor = 0; - short aHorizontalCoor = (short)nX; - short aVerticalCoor = (short)nY; - - GetCPixel( aHorizontalCoor, aVerticalCoor, &aRGBColor ); - - nSalColor = RGBColor2SALColor ( &aRGBColor ); - return nSalColor; -} // SalGraphics::GetPixel +} // ----------------------------------------------------------------------- -void SalGraphics::Invert( long nX, - long nY, - long nWidth, - long nHeight, - SalInvert nFlags - ) +void AquaSalGraphics::invert( long nX, long nY, long nWidth, long nHeight, SalInvert nFlags ) { - // Implementation not yet complete + HIRect aRect; + aRect.origin.x = static_cast(nX); + aRect.origin.y = static_cast(nY); + aRect.size.width = static_cast( nX) +static_cast(nWidth) - static_cast(nX); + aRect.size.height = static_cast(nY)+static_cast(nHeight) - static_cast(nY); + + printf("aRect.origin.x %.0f, aRect.origin.y %.0f , aRect.size.width %.0f , aRect.size.height %.0f\n", aRect.origin.x,aRect.origin.y ,aRect.size.width , aRect.size.height ); + + if ( nFlags & SAL_INVERT_TRACKFRAME ) + { + fprintf(stderr, "<<>> AquaSalGraphics::invert( long nX, long nY, long nWidth, long nHeight, SalInvert nFlags ) nFlags => SAL_INVERT_TRACKFRAME not yet implemented\n"); + } + else if ( nFlags & SAL_INVERT_50 ) + { + fprintf(stderr, ">>> AquaSalGraphics::invert ==> SAL_INVERT_50\n"); + if ( BeginGraphics() ) + { + SetFillColor( MAKE_SALCOLOR( 0, 0, 0 ) ); //MAKE_SALCOLOR( r, g, b ) + drawAlphaRect( nX, nY, nWidth, nHeight, 127 ); //0.5*255 as transparency is between 0 and 255 + //RefreshRect(nX,nY,nWidth,nHeight); + EndGraphics(); + } + } + else { + fprintf(stderr, ">>> AquaSalGraphics::invert ==> invert normal\n"); + if ( BeginGraphics() ) + { + CGContextSaveGState(mrContext); + CGContextSetBlendMode(mrContext, kCGBlendModeDifference); + CGContextSetRGBFillColor ( mrContext,1.0, 1.0, 1.0 , 1.0 ); + CGContextFillRect ( mrContext, aRect ); + + //CGContextFlush(mrContext); + //RefreshRect(nX,nY,nWidth,nHeight); - if ( BeginGraphics( &maGraphicsData ) ) - { - short left = (short)nX; - short top = (short)nY; - short right = (short)nX + (short)nWidth; - short bottom = (short)nY + (short)nHeight; - Rect aRect; - - MacSetRect( &aRect, left, top, right, bottom ); + CGContextRestoreGState( mrContext); - ::MacInvertRect( &aRect ); + EndGraphics(); + } - EndGraphics( &maGraphicsData ); - } // if -} // SalGraphics::Invert + } +} // ----------------------------------------------------------------------- -void SalGraphics::Invert( ULONG nPoints, - const SalPoint* pPtAry, - SalInvert nSalFlags - ) +void AquaSalGraphics::invert( ULONG nPoints, const SalPoint* pPtAry, SalInvert nSalFlags ) { - // Implementation not yet complete - - if ( ( pPtAry != NULL ) && ( nPoints > 1 ) ) - { - if ( BeginGraphics( &maGraphicsData ) ) - { - unsigned long nPolyEdges = nPoints; - unsigned long nPolyEdgeIndex = 0; - short nX = 0; - short nY = 0; - short nPenMode = patXor; - RgnHandle hPolyRgn = NULL; - CGrafPtr pCGrafPort = maGraphicsData.mpCGrafPort; - Pattern aPenPatGray; - - hPolyRgn = NewRgn (); - - if ( hPolyRgn != NULL ) - { - GetQDGlobalsGray( &aPenPatGray ); - - PenPat( &aPenPatGray ); + fprintf(stderr,"<<>> AquaSalGraphics::invert( ULONG nPoints, const SalPoint* pPtAry, SalInvert nSalFlags ), not implemented!\n"); +} - SetPortPenMode( pCGrafPort, nPenMode ); - - // Begin region construction +// ----------------------------------------------------------------------- - OpenRgn(); +BOOL AquaSalGraphics::drawEPS( long nX, long nY, long nWidth, long nHeight, void* pPtr, ULONG nSize ) +{ + fprintf( stderr, "<> AquaSalGraphics::DrawEPS not yet implemented!\n" ); - // Begin polygon regin construction + return FALSE; +} - MoveTo( pPtAry[0].mnX, pPtAry[0].mnY ); +// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= +bool AquaSalGraphics::drawAlphaBitmap( const SalTwoRect& rTR, + const SalBitmap& rSrcBitmap, const SalBitmap& rAlphaBmp ) +{ - for ( nPolyEdgeIndex = 1; - nPolyEdgeIndex < nPolyEdges; - nPolyEdgeIndex++ - ) - { - MacLineTo( pPtAry[nPolyEdgeIndex].mnX, - pPtAry[nPolyEdgeIndex].mnY - ); - } // for + fprintf( stderr, ">>> AquaSalGraphics::drawAlphaBitmap\n" ); - MacLineTo( pPtAry[0].mnX, pPtAry[0].mnY ); +// fprintf( stderr, "\t bitcount: %d rTR.mnDestWidth: %d rTR.mnDestHeight: %d rTR.mnSrcHeight:%d rTR.mnSrcWidth : %d \n", rAlphaBmp.GetBitCount(), rTR.mnDestWidth, rTR.mnDestHeight, rTR.mnSrcHeight, rTR.mnSrcWidth ); - // End polygon region construction + // An image mask can't have a depth > 8 bits (should be 1 to 8 bits) + if( rAlphaBmp.GetBitCount() > 8 ) + return false; - CloseRgn( hPolyRgn ); + // are these two tests really necessary? (see vcl/unx/source/gdi/salgdi2.cxx) + // horizontal/vertical mirroring not implemented yet + if( rTR.mnDestWidth < 0 || rTR.mnDestHeight < 0 ) + return false; - // End region construction + // stretched conversion is not implemented yet + if( rTR.mnDestWidth != rTR.mnSrcWidth ) + return false; + if( rTR.mnDestHeight!= rTR.mnSrcHeight ) + return false; - maGraphicsData.mnOSStatus = QDErr(); - - if ( maGraphicsData.mnOSStatus == noErr ) - { - MacInvertRgn( hPolyRgn ); + AquaSalBitmap& pSrcSalBmp = const_cast< AquaSalBitmap& >( static_cast(rSrcBitmap)); + const AquaSalBitmap& pMaskSalBmp = static_cast(rAlphaBmp); - DisposeRgn( hPolyRgn ); + CGImageRef xMaskedImage=pSrcSalBmp.CreateWithMask( pMaskSalBmp, rTR.mnSrcX, rTR.mnSrcY, rTR.mnSrcWidth, rTR.mnSrcHeight ); - hPolyRgn = NULL; - } // if - } // if - - EndGraphics( &maGraphicsData ); - } // if - } // if -} // SalGraphics::Invert + if(!xMaskedImage) return FALSE; -// ----------------------------------------------------------------------- + if ( BeginGraphics() ) + { -BOOL SalGraphics::DrawEPS( long nX, - long nY, - long nWidth, - long nHeight, - void* pPtr, - ULONG nSize - ) -{ - fprintf( stderr, - "<> SalGraphics::DrawEPS not yet implemented!\n" - ); + CGContextDrawImage(mrContext, CGRectMake( rTR.mnDestX, rTR.mnDestY, rTR.mnDestWidth, rTR.mnDestHeight), xMaskedImage ); - return FALSE; -} // SalGraphics::DrawEPS + if( isOffscreenCopy() ) + CGContextDrawImage(mrBitmapContext, CGRectMake( rTR.mnDestX, rTR.mnDestY, rTR.mnDestWidth, rTR.mnDestHeight), xMaskedImage ); -// ----------------------------------------------------------------------- + EndGraphics(); + } -void SalGraphics::SetTextColor( SalColor nSalColor ) -{ - maGraphicsData.maFontColor = SALColor2RGBColor( nSalColor ); -} // SalGraphics::SetTextColor + CGImageRelease(xMaskedImage); -// ----------------------------------------------------------------------- + return true; +} -USHORT SalGraphics::SetFont( ImplFontSelectData* pFont ) +// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= +bool AquaSalGraphics::drawAlphaRect( long nX, long nY, long nWidth, + long nHeight, sal_uInt8 nTransparency ) { - fprintf( stderr, - "<> SalGraphics::SetFont not yet implemented!\n" - ); + fprintf( stderr, "<> AquaSalGraphics::drawAlphaRect not yet implemented!\n" ); - return 0; -} // SalGraphics::SetFont + return FALSE; +} // ----------------------------------------------------------------------- -long SalGraphics::GetCharWidth( sal_Unicode nChar1, - sal_Unicode nChar2, - long* pWidthAry - ) +void AquaSalGraphics::SetTextColor( SalColor nSalColor ) { - // Stub code - - sal_Unicode nCharCount = nChar2 - nChar1 + 1; - sal_Unicode i = 0; - - // Put a stub width in the pWidthAry that is passed to this method for - // both of the two Unicode characters and all characters between them. - // The width of nChar1 is put in element 0 of pWidthAry and the width - // of nChar2 is put in element nChar2 - nChar1 of pWidthAry - - for ( i = 0 ; i < nCharCount ; i++ ) - { - pWidthAry[i] = 10; - } // for - - fprintf( stderr, - "<> SalGraphics::GetCharWidth not yet implemented!\n" - ); - - return 1; -} // SalGraphics::GetCharWidth + RGBColor color; + color.red = (unsigned short) SALCOLOR_RED(nSalColor) * 65535.0 / 255.0; + color.green = (unsigned short) SALCOLOR_GREEN(nSalColor) * 65535.0 / 255.0; + color.blue = (unsigned short) SALCOLOR_BLUE(nSalColor) * 65535.0 / 255.0; + + ATSUAttributeTag aTag = kATSUColorTag; + ByteCount aValueSize = sizeof( color ); + ATSUAttributeValuePtr aValue = &color; + + OSStatus err = ATSUSetAttributes( maATSUStyle, 1, &aTag, &aValueSize, &aValue ); + if( err != noErr ) + { + fprintf( stderr, "AquaSalGraphics::SetTextColor() : Could not set font attributes!\n"); + } +} // ----------------------------------------------------------------------- -void SalGraphics::GetFontMetric( ImplFontMetricData* pMetric ) -{ - // Stub Code - - pMetric->mnAscent = 10; - pMetric->mnDescent = 10; - - fprintf( stderr, - "<> SalGraphics::GetFontMetric not yet implemented!\n" - ); -} // SalGraphics::GetFontMetric +void AquaSalGraphics::GetFontMetric( ImplFontMetricData* pMetric ) +{ + OSStatus err; + + ATSUFontID fontId; + Fixed ptSize; + + err = ATSUGetAttribute( maATSUStyle, kATSUFontTag, sizeof(ATSUFontID), &fontId, 0 ); + if( err == noErr ) + err = ATSUGetAttribute( maATSUStyle, kATSUSizeTag, sizeof(Fixed), &ptSize, 0); + + if( err != noErr ) + { + fprintf(stderr, "AquaSalGraphics::GetFontMetric() : could not get font attributes\n"); + return; + } + + long dpiX, dpiY; + GetResolution( dpiX, dpiY ); + + double fontSize = Fix2X( ptSize ); + ATSFontRef rFont = FMGetATSFontRefFromFont( fontId ); + + ATSFontMetrics aMetrics; + err = ATSFontGetHorizontalMetrics ( rFont, kATSOptionFlagsDefault, &aMetrics ); + + if( err == noErr ) + { + double f = (double) dpiY / 72.0; + pMetric->mnAscent = (aMetrics.ascent * fontSize * f); + pMetric->mnDescent = -(aMetrics.descent * fontSize * f); + pMetric->mnExtLeading = (aMetrics.leading * fontSize * f); + pMetric->mnIntLeading = 0; + pMetric->mnWidth = (aMetrics.avgAdvanceWidth * fontSize * f); + +// fprintf(stderr, "Metrics: ascent: %d descent: %d\n", pMetric->mnAscent, pMetric->mnDescent); + } + else + fprintf(stderr, "AquaSalGraphics::GetFontMetric() : could not get font metrics\n"); +} // ----------------------------------------------------------------------- -ULONG SalGraphics::GetKernPairs( ULONG nPairs, - ImplKernPairData* pKernPairs - ) +ULONG AquaSalGraphics::GetKernPairs( ULONG nPairs, ImplKernPairData* pKernPairs ) { fprintf( stderr, "<> SalGraphics::GetKernPairs not yet implemented!\n" ); return 0; -} // SalGraphics::GetKernPairs - -// ----------------------------------------------------------------------- - -ULONG SalGraphics::GetFontCodeRanges( sal_uInt32* pCodePairs ) const -{ - // TODO: try to get the necessary info from Aqua - return 0; -} // SalGraphics::GetFontCodeRanges +} // ----------------------------------------------------------------------- -void SalGraphics::GetDevFontList( ImplDevFontList *pList ) +void AquaSalGraphics::GetDevFontList( ImplDevFontList *pList ) { - if ( pList != NULL ) + if ( pList != NULL ) { SalData *pSalData = GetSalData(); if ( pSalData != NULL ) { FontList *pMacFontList = NULL; - ImplFontData *pDevFontData = NULL; - ImplFontData *pSysFontData = NULL; - - if ( pSalData->mpFontList != NULL ) + ImplMacFontData *pDevFontData = NULL; + ImplMacFontData *pSysFontData = NULL; + + if ( pSalData->mpFontList == NULL ) { pSalData->mpFontList = GetMacFontList(); - + pMacFontList = pSalData->mpFontList; - pSysFontData = pMacFontList->First(); - + pSysFontData = (ImplMacFontData*)pMacFontList->First(); + while ( pSysFontData != NULL ) { - pDevFontData = new ImplFontData; - - pDevFontData->mpSysData = pSysFontData; + ImplDevFontAttributes pAttributes; + pDevFontData = new ImplMacFontData(pAttributes,0,0,0); + + // pDevFontData->mpSysData = pSysFontData; + pDevFontData->mnFontID = pSysFontData->mnFontID; pDevFontData->maName = pSysFontData->maName; pDevFontData->maStyleName = pSysFontData->maStyleName; - pDevFontData->mnWidth = pSysFontData->mnWidth; - pDevFontData->mnHeight = pSysFontData->mnHeight; + // pDevFontData->mnWidth = pSysFontData->mnWidth; + // pDevFontData->mnHeight = pSysFontData->mnHeight; pDevFontData->meFamily = pSysFontData->meFamily; - pDevFontData->meCharSet = pSysFontData->meCharSet; + // pDevFontData->meCharSet = pSysFontData->meCharSet; pDevFontData->meScript = pSysFontData->meScript; pDevFontData->mePitch = pSysFontData->mePitch; pDevFontData->meWidthType = pSysFontData->meWidthType; pDevFontData->meWeight = pSysFontData->meWeight; pDevFontData->meItalic = pSysFontData->meItalic; pDevFontData->meType = pSysFontData->meType; - pDevFontData->mnVerticalOrientation = pSysFontData->mnVerticalOrientation; + // pDevFontData->mnVerticalOrientation = pSysFontData->mnVerticalOrientation; pDevFontData->mbOrientation = pSysFontData->mbOrientation; pDevFontData->mbDevice = pSysFontData->mbDevice; pDevFontData->mnQuality = pSysFontData->mnQuality; - + pList->Add( pDevFontData ); + + pSysFontData = (ImplMacFontData*)pMacFontList->Next(); + } + } + } + } +} + +// ----------------------------------------------------------------------- - pSysFontData = pMacFontList->Next(); - } // while - } // if - } // if - } // if -} // SalGraphics::GetDevFontList +bool AquaSalGraphics::AddTempDevFont( ImplDevFontList*, const String& rFileURL, const String& rFontName ) +{ + return sal_False; +} // ----------------------------------------------------------------------- -void SalGraphics::DrawText( long nX, - long nY, - const xub_Unicode *pStr, - xub_StrLen nLen - ) +BOOL AquaSalGraphics::GetGlyphOutline( long nIndex, basegfx::B2DPolyPolygon& ) { - // The implementation is not yet complete + return sal_False; +} + +// ----------------------------------------------------------------------- + +BOOL AquaSalGraphics::CreateFontSubset( const rtl::OUString& rToFile, + ImplFontData* pFont, + long* pGlyphIDs, + sal_uInt8* pEncoding, + sal_Int32* pWidths, + int nGlyphs, + FontSubsetInfo& rInfo // out parameter + ) +{ + return sal_False; +} + +// ----------------------------------------------------------------------- + +const void* AquaSalGraphics::GetEmbedFontData( ImplFontData* pFont, + const sal_Unicode* pUnicodes, + sal_Int32* pWidths, + FontSubsetInfo& rInfo, + long* pDataLen ) +{ + return NULL; +} - if ( ( pStr != NULL ) && ( nLen > 0 ) ) +// ----------------------------------------------------------------------- + +long AquaSalGraphics::GetGraphicsWidth() const +{ + if( mrWindow ) + { + Rect windowBounds; + GetWindowPortBounds ( mrWindow, &windowBounds); + return windowBounds.right - windowBounds.left; + } + else if( mrBitmapContext ) { - if ( BeginGraphics( &maGraphicsData ) ) - { - ByteString aByteString( pStr, - nLen, - gsl_getSystemTextEncoding() - ); + return CGBitmapContextGetWidth( mrContext ); + } + else + return 0; +} - const char *pTextBuffer = aByteString.GetBuffer(); +// ----------------------------------------------------------------------- - if ( pTextBuffer != NULL ) - { - short nFirstByte = 0; - short nByteCount = nLen; - const RGBColor aFontForeColor = maGraphicsData.maFontColor; - - RGBForeColor( &aFontForeColor ); - - MoveTo( nX, nY ); - - ::MacDrawText( pTextBuffer, nFirstByte, nByteCount ); - } // if - - EndGraphics( &maGraphicsData ); - } // if - } // if -} // SalGraphics::DrawText +void AquaSalGraphics::FreeEmbedFontData( const void* pData, long nDataLen ) +{ + +} // ----------------------------------------------------------------------- -void SalGraphics::DrawTextArray( long nX, - long nY, - const xub_Unicode* pStr, - xub_StrLen nLen, - const long* pDXAry - ) +BOOL AquaSalGraphics::GetGlyphBoundRect( long nIndex, Rectangle& ) { - fprintf( stderr, - "<> SalGraphics::DrawTextArray not yet implemented!\n" - ); -} // SalGraphics::DrawTextArray + return sal_False; +} // ----------------------------------------------------------------------- -BOOL SalGraphics::GetGlyphBoundRect( xub_Unicode cChar, - long* pX, - long* pY, - long* pWidth, - long* pHeight - ) +void AquaSalGraphics::GetDevFontSubstList( OutputDevice* ) { - fprintf( stderr, - "<> SalGraphics::GetGlyphBoundRect not yet implemented!\n" - ); + +} - return FALSE; -} // SalGraphics::GetGlyphBoundRect +// ----------------------------------------------------------------------- + +void AquaSalGraphics::DrawServerFontLayout( const ServerFontLayout& ) +{ + +} // ----------------------------------------------------------------------- -ULONG SalGraphics::GetGlyphOutline( xub_Unicode cChar, - USHORT** ppPolySizes, - SalPoint** ppPoints, - BYTE** ppFlags - ) +const std::map< sal_Unicode, sal_Int32 >* AquaSalGraphics::GetFontEncodingVector( ImplFontData* pFont, + const std::map< sal_Unicode, + rtl::OString >** ppNonEncoded ) { - fprintf( stderr, - "<> SalGraphics::GetGlyphOutline not yet implemented!\n" - ); + return NULL; +} - return 0; -} // SalGraphics::GetGlyphOutline +// ----------------------------------------------------------------------- -// ======================================================================= +USHORT AquaSalGraphics::SetFont( ImplFontSelectData* pFont, int nFallbackLevel ) +{ -// ======================================================================= + if( !pFont ) + { + // TODO: deselect existing font, release resources +// fprintf( stderr, "AquaSalGraphics::SetFont() : DEFAULT Font!\n"); + return 0; + } + + // store fontid and attributes, will be used in LayoutText + ImplMacFontData *pMacFont = static_cast( pFont->mpFontData ); + if( pMacFont ) + { + // Set Style Attributes (i.e. font parameters) + // convert pixel to point + long dpiX, dpiY; + GetResolution( dpiX, dpiY ); + Fixed fSize = FloatToFixed( ((double) pFont->mnHeight * 72.0) / (double) dpiY ); + Boolean bBold = (pFont->GetWeight() == WEIGHT_BOLD) ? TRUE : FALSE; + Boolean bItalic = (pFont->GetSlant() == ITALIC_NORMAL) ? TRUE : FALSE; + + ATSUAttributeTag aTag[] = + { + kATSUFontTag, + kATSUSizeTag, + kATSUQDBoldfaceTag, + kATSUQDItalicTag + }; + + ByteCount aValueSize[] = + { + sizeof(pMacFont->mnFontID), + sizeof(fSize), + sizeof(bBold), + sizeof(bItalic) + }; + + ATSUAttributeValuePtr aValue[] = + { + &pMacFont->mnFontID, // the original font id + &fSize, // the requested attributes + &bBold, + &bItalic + }; + + OSStatus err = ATSUSetAttributes( maATSUStyle, + sizeof(aTag) / sizeof(ATSUAttributeTag), + aTag, aValueSize, aValue ); + if( err != noErr ) + { + fprintf( stderr, "AquaSalGraphics::SetFont() : Could not set font attributes!\n"); + } + + mnATSUIRotation = (long) (pFont->mnOrientation / 10.0); + + UniString aName; + if ( pFont->mpFontData ) + aName = pFont->mpFontData->maName; + else + aName = pFont->maName.GetToken( 0 ); + + fprintf(stderr, "SetFont: %s Weight: %s, Slant: %s, Height: %d, Orientation: %d id: %d\n", + ::rtl::OUStringToOString( aName, RTL_TEXTENCODING_UTF8 ).getStr(), + bBold ? "bold" : "normal", + bItalic ? "italic" : "normal", + pFont->mnHeight, + pFont->mnOrientation, + pMacFont->mnFontID); + } + else + return 0; + + return 0; +} + +// ----------------------------------------------------------------------- + +ImplFontCharMap* AquaSalGraphics::GetImplFontCharMap() const +{ + return NULL; +} + +// ----------------------------------------------------------------------- + +/** returns the display id this window is mostly visible on */ +CGDirectDisplayID AquaSalGraphics::GetWindowDisplayID() const +{ + // TODO: Find the correct display! + return CGMainDisplayID(); +} + +// ----------------------------------------------------------------------- diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salgdiutils.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salgdiutils.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salgdiutils.cxx 2006-09-17 13:44:35.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salgdiutils.cxx 2007-03-13 09:57:43.000000000 +0100 @@ -36,551 +36,250 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_vcl.hxx" -#ifndef _SV_SALGDIUTILS_HXX - #include +#ifndef _SV_SALGDI_H +#include #endif -// ======================================================================= +#include -// ======================================================================= +// ---------------------------------------------------------------------- -short SelectCopyMode ( const SalGraphicsDataPtr pSalGraphicsData ) +void AquaSalGraphics::SetWindowGraphics( CarbonViewRef rView, CarbonWindowRef rWindow, bool bScreenCompatible ) { - short nCopyMode = 0; + mrView = rView; + mrWindow = rWindow; + mbScreen = bScreenCompatible; - if ( pSalGraphicsData->mnPenMode == patCopy ) - { - nCopyMode = srcCopy; - } // if - else - { - nCopyMode = srcXor; - } // else - - return nCopyMode; -} // SelectCopyMode - -// ======================================================================= - -// ======================================================================= - -RgnHandle GetPolygonRgn ( const unsigned long nPolyCount, - const unsigned long *pPoints, - PCONSTSALPOINT *ppPtAry, - OSStatus *rQDStatus - ) -{ - RgnHandle hSrcRgnA = NULL; - - hSrcRgnA = NewRgn(); - - if ( hSrcRgnA != NULL ) - { - RgnHandle hSrcRgnB = NULL; - - hSrcRgnB = NewRgn(); - - if ( hSrcRgnB != NULL ) - { - unsigned short nPolyEdgeIndex = 0; - unsigned short nPolyIndex = 0; - unsigned short nPolyEdges = 0; - - for ( nPolyIndex = 0; - nPolyIndex < nPolyCount; - nPolyIndex++ - ) - { - const SalPoint *pPtAry = ppPtAry[nPolyIndex]; - - nPolyEdges = pPoints[nPolyIndex]; - - // Begin region construction - - OpenRgn(); - - // Begin polygon construction - - MoveTo( pPtAry[0].mnX, pPtAry[0].mnY ); - - for ( nPolyEdgeIndex = 1; - nPolyEdgeIndex < nPolyEdges; - nPolyEdgeIndex++ - ) - { - MacLineTo( pPtAry[nPolyEdgeIndex].mnX, - pPtAry[nPolyEdgeIndex].mnY - ); - } // for - - MacLineTo( pPtAry[0].mnX, pPtAry[0].mnY ); - - // End polygon construction - - CloseRgn( hSrcRgnB ); - - // End region construction - - *rQDStatus = QDErr(); - - if ( *rQDStatus == noErr ) - { - if ( nPolyIndex == 0 ) - { - MacCopyRgn( hSrcRgnB, hSrcRgnA ); - } // if - else - { - MacXorRgn( hSrcRgnA, hSrcRgnB, hSrcRgnA ); - } // else - } // if - } // for - - DisposeRgn( hSrcRgnB ); - - *rQDStatus = QDErr(); + mbWindow = true; + mbPrinter = false; + mbVirDev = false; +} - if ( *rQDStatus != noErr ) - { - DisposeRgn( hSrcRgnA ); - - hSrcRgnA = NULL; - } - - hSrcRgnB = NULL; - } // if - } // if - - return hSrcRgnA; -} // GetPolygonRgn - -// ======================================================================= - -// ======================================================================= - -OSStatus GetGDeviceBitDepth ( unsigned short *rGDeviceBitDepth ) +void AquaSalGraphics::SetPrinterGraphics( CarbonViewRef rView, bool bScreenCompatible ) { - GDPtr pGDevice = NULL; - OSStatus nOSStatus = noErr; - - pGDevice = *GetGDevice ( ); - - nOSStatus = QDErr(); - - if ( ( pGDevice != NULL ) && ( nOSStatus == noErr ) ) - { - *rGDeviceBitDepth = GetPixDepth( pGDevice->gdPMap ); - } // if - - return nOSStatus; -} // GetGDeviceBitDepth - -// ----------------------------------------------------------------------- - -OSStatus GetGDeviceResolution ( long *rGDeviceHRes, - long *rGDeviceVRes - ) -{ - GDPtr pGDevice = NULL; - OSStatus nOSStatus = noErr; - - pGDevice = *GetGDevice ( ); - - nOSStatus = QDErr(); - - if ( ( pGDevice != NULL ) && ( nOSStatus == noErr ) ) - { - long nGDeviceTop = pGDevice->gdRect.top; - long nGDeviceLeft = pGDevice->gdRect.left; - long nGDeviceBottom = pGDevice->gdRect.bottom; - long nGDeviceRight = pGDevice->gdRect.right; + mrView = rView; + mbScreen = bScreenCompatible; - // From the current GDevice get its horizontal resolution + mbWindow = false; + mbPrinter = true; + mbVirDev = false; +} - *rGDeviceHRes = abs( nGDeviceRight - nGDeviceLeft ); - - // From the current GDevice get its vertical resolution - - *rGDeviceVRes = abs( nGDeviceBottom - nGDeviceTop ); - } // if - - return nOSStatus; -} // GetGDeviceResolution - -// ======================================================================= - -// ======================================================================= - -BOOL LockGraphics ( SalGraphics *rSalGraphics ) +void AquaSalGraphics::SetVirDevGraphics( CGContextRef xContext, bool bScreenCompatible ) { - BOOL bCGrafPortLocked = FALSE; - - // [ed] 12/16/01 Don't lock QDView grafports. - - if ( ( rSalGraphics != NULL ) - && ( rSalGraphics->maGraphicsData.mpCGrafPort != NULL ) - && ( rSalGraphics->maGraphicsData.mbWindow != TRUE) - ) - { - rSalGraphics->maGraphicsData.mnOSStatus - = LockPortBits( rSalGraphics->maGraphicsData.mpCGrafPort ); - - if ( rSalGraphics->maGraphicsData.mnOSStatus == noErr ) - { - rSalGraphics->maGraphicsData.mhGWorldPixMap - = GetPortPixMap( rSalGraphics->maGraphicsData.mpCGrafPort ); + mrView = 0; + mbScreen = bScreenCompatible; - rSalGraphics->maGraphicsData.mnOSStatus = QDErr(); - - bCGrafPortLocked = TRUE; - } // if - } // if + mbWindow = false; + mbPrinter = false; + mbVirDev = true; - return bCGrafPortLocked; -} // LockGraphics + mrContext = xContext; + mrBitmapContext = xContext; +} -// ----------------------------------------------------------------------- +// ---------------------------------------------------------------------- -BOOL UnlockGraphics ( SalGraphics *rSalGraphics ) +void AquaSalGraphics::InitContextForPainting( CGContextRef xContext ) { - BOOL bCGrafPortUnlocked = FALSE; - - if ( ( rSalGraphics->maGraphicsData.mpCGrafPort != NULL ) - && ( rSalGraphics->maGraphicsData.mnOSStatus == noErr ) - ) + // set up clipping area + if( mrClippingPath ) { - rSalGraphics->maGraphicsData.mnOSStatus - = UnlockPortBits( rSalGraphics->maGraphicsData.mpCGrafPort ); - - bCGrafPortUnlocked = TRUE; - } // if + CGContextBeginPath( xContext ); // discard any existing path + CGContextAddPath( xContext, mrClippingPath ); // set the current path to the clipping path + CGContextClip( xContext ); // use it for clipping + } - return bCGrafPortUnlocked; -} // UnlockGraphics + // set RGB colorspace and line and fill colors + CGContextSetFillColorSpace( xContext, mrRGBColorSpace ); + CGContextSetFillColor( xContext, mpFillColor ); + CGContextSetStrokeColorSpace( xContext, mrRGBColorSpace ); + CGContextSetStrokeColor( xContext, mpLineColor ); +} -// ======================================================================= +// ---------------------------------------------------------------------- -// ======================================================================= - -BOOL BeginGraphics ( SalGraphicsDataPtr rSalGraphicsData ) +bool AquaSalGraphics::BeginGraphics () { - BOOL bStartGraphics = FALSE; - - // Previous to entering this function, was there a QD error? - - if ( rSalGraphicsData->mnOSStatus == noErr ) + if( mnGraphics++ == 0 ) { - // Get the graph port and lock focus on it - - if ( rSalGraphicsData->mbWindow == TRUE ) - { - rSalGraphicsData->mpCGrafPort - = VCLGraphics_LockFocusCGrafPort( rSalGraphicsData->mhDC ); - } // if - - // [ed] 12/3/01 Check to make sure we've got a valid graph port - - if(rSalGraphicsData->mpCGrafPort && !IsValidPort(rSalGraphicsData->mpCGrafPort)) + if( mrWindow != NULL && mrContext == 0) { - fprintf(stderr, "Invalid port in BeginGraphics()\n"); - } - - if ( ( rSalGraphicsData->mpCGrafPort != NULL ) && IsValidPort(rSalGraphicsData->mpCGrafPort)) - { - // Get the port's pen attributes - - GetPortPenPixPat( rSalGraphicsData->mpCGrafPort, - rSalGraphicsData->mhPortPenPattern - ); - - GetPortPenSize( rSalGraphicsData->mpCGrafPort, - &(rSalGraphicsData->maPortPenSize) - ); - - GetPortPenLocation( rSalGraphicsData->mpCGrafPort, - &(rSalGraphicsData->maPortPenLocation) - ); - - rSalGraphicsData->mnPortPenMode - = GetPortPenMode( rSalGraphicsData->mpCGrafPort ); - - // Set the port pen mode to its new value - - SetPortPenMode( rSalGraphicsData->mpCGrafPort, - rSalGraphicsData->mnPenMode - ); + Rect windowBounds; + GetWindowPortBounds ( mrWindow, &windowBounds); + const unsigned int nWidth = windowBounds.right - windowBounds.left; + const unsigned int nHeight = windowBounds.bottom - windowBounds.top; - // Set to the current offscreen world for Mac OS X - // only as everything is written to GWorld here - - SetGWorld( rSalGraphicsData->mpCGrafPort, NULL ); - - // Was there a QD error when we set the GWorld? - - rSalGraphicsData->mnOSStatus = QDErr(); + if( mrBitmapContext ) + { + // check if window size changed and we need to create a new bitmap context + if( (CGBitmapContextGetWidth(mrBitmapContext) != nWidth) || (CGBitmapContextGetHeight(mrBitmapContext) != nHeight) ) + { + void* pBuffer = CGBitmapContextGetData(mrBitmapContext); + CFRelease( mrBitmapContext ); + mrBitmapContext = 0; + free( pBuffer ); + } + } - if ( rSalGraphicsData->mnOSStatus == noErr ) + if( !mrBitmapContext ) { - // Get the PixMap associated with this particular CGrafPort - - rSalGraphicsData->mhGWorldPixMap - = GetPortPixMap( rSalGraphicsData->mpCGrafPort ); - - rSalGraphicsData->mnOSStatus = QDErr(); - - if ( ( rSalGraphicsData->mnOSStatus == noErr ) - && ( rSalGraphicsData->mhGWorldPixMap != NULL ) - ) + void* pData = malloc( nWidth * 4 * nHeight ); + if (pData ) { - // Get the current PixMap state, i.e., - // is it the memory associated with this - // PixMap is marked to be moved? - - rSalGraphicsData->mnGWorldFlags - = GetPixelsState( rSalGraphicsData->mhGWorldPixMap ); + mrBitmapContext = CGBitmapContextCreate( pData, nWidth, nHeight, 8, nWidth * 4, mrRGBColorSpace, kCGImageAlphaNoneSkipFirst ); - if ( rSalGraphicsData->mnGWorldFlags == noErr ) - { - // if the PixMap is a relocatable block, - // then mark it as locked. - - // [ed] 12/16/01 Don't lock pixels of QDViews - - if ( !rSalGraphicsData->mbWindow && - LockPixels( rSalGraphicsData->mhGWorldPixMap ) ) - { - rSalGraphicsData->mbGWorldPixelsLocked = TRUE; - } // if - else - { - rSalGraphicsData->mbGWorldPixelsLocked = FALSE; - } // else - - // Set background color to white on this GWorld - - SetWhiteBackColor(); - - // Set foreground color to black on this GWorld - - SetBlackForeColor(); - - // If we get here then we may safely start drawing - // to our GWorld - - bStartGraphics = TRUE; - - // Now begin to set the clip region - - if ( ( rSalGraphicsData->mbClipRgnChanged == TRUE ) - && ( rSalGraphicsData->mhClipRgn != NULL ) - ) - { - // Set to the clip region - - SetClip( rSalGraphicsData->mhClipRgn ); - - // Was there an error after setting the clip region? - - rSalGraphicsData->mnOSStatus = QDErr(); - - // Set the new status flag for our port - - rSalGraphicsData->mbClipRgnChanged = FALSE; - } // if - } // if - else + if( !mrBitmapContext ) { - // [ed] 12/13/01 GWord graphics error flags set - - fprintf(stderr, "GWorld graphics flags indicate error in BeginGraphics()\n"); + free( pData ); } - } // if - else - { - // [ed] 12/13/01 GWorld graphics has no PixMap handle - - fprintf(stderr, "Valid GWorld, but no pixmap in BeginGraphics()\n"); } - } // if - else - { - // [ed] 12/13/01 Error checking - - fprintf(stderr, "QuickDraw error in BeginGraphics()\n"); } - } // if - } // if - - return bStartGraphics; -} // BeginGraphics - -// ----------------------------------------------------------------------- - -BOOL EndGraphics ( SalGraphicsDataPtr rSalGraphicsData ) -{ - BOOL bEndGraphics = FALSE; - - // Previous to entering this function, was there a QD error? - if ( rSalGraphicsData->mnOSStatus == noErr ) - { - // Unlock our CGrafPort - - if ( ( rSalGraphicsData->mhGWorldPixMap != NULL ) - && ( rSalGraphicsData->mnGWorldFlags == noErr ) - && ( rSalGraphicsData->mbGWorldPixelsLocked ) - ) - { - // Set pixel state to its original state - // thus unlocking the PixMap - - SetPixelsState( rSalGraphicsData->mhGWorldPixMap, - rSalGraphicsData->mnGWorldFlags - ); - - rSalGraphicsData->mnOSStatus = QDErr(); - rSalGraphicsData->mbGWorldPixelsLocked = FALSE; - } // if - - // Reset the port's pen to its original attributes - - /* - - [ed] 12/19/01 Apparently the pen pattern handle we retrieved - in BeginGraphics() is invalid by this point on OS 10.1. - By not attempting to revert the pen pattern, we can avoid - seg faulting the next time we draw into the port. - - +++ Is it necessary to reset the pen pattern? - - SetPortPenPixPat( rSalGraphicsData->mpCGrafPort, - rSalGraphicsData->mhPortPenPattern - ); - */ - - SetPortPenSize( rSalGraphicsData->mpCGrafPort, - rSalGraphicsData->maPortPenSize - ); - - SetPortPenMode( rSalGraphicsData->mpCGrafPort, - rSalGraphicsData->mnPortPenMode - ); - - // When we get here then the QD port must have changed(?) - // [ed] 12/19/01 This will commit the changes to reset the pen size - // and pen mode. - - PortChanged( rSalGraphicsData->mpCGrafPort ); - - // [ed] 6/1/02 Always flush the buffer, regardless of whether we're in - // a debug or non-debug build. - - // [ed] 12/19/01 Flush the QuickDraw buffer immediately. This helps - // with VCL debugging. + SetPortWindowPort (mrWindow); + if( noErr == QDBeginCGContext (GetWindowPort (mrWindow), &mrContext)) + { +#if DEBUGLEVEL>1 + mbQDCG = true; +#endif + if( mrBitmapContext ) + { + CGContextSaveGState( mrBitmapContext ); + InitContextForPainting( mrBitmapContext ); + } - if(QDIsPortBuffered(rSalGraphicsData->mpCGrafPort)) - QDFlushPortBuffer( rSalGraphicsData->mpCGrafPort, NULL ); + CGContextTranslateCTM (mrContext, 0, nHeight); + CGContextScaleCTM (mrContext, 1.0, -1.0); - // Unlock focus on the current NSView + InitContextForPainting( mrContext ); - if ( rSalGraphicsData->mbWindow == TRUE ) + //RefreshWindow(); + } + } + else if( mbVirDev ) { - VCLGraphics_UnLockFocusCGrafPort( rSalGraphicsData->mhDC ); - } // if - - // Was there an error after flushing the QuickDraw buffer - - rSalGraphicsData->mnOSStatus = QDErr(); - - // Set the new status flag for clip region - - rSalGraphicsData->mbClipRgnChanged = FALSE; - - // If we get here then we have safely written to our GWorld - - bEndGraphics = TRUE; - } // if - - return bEndGraphics; -} // EndGraphics + CGContextSaveGState( mrBitmapContext ); + InitContextForPainting( mrBitmapContext ); + } + } -// ======================================================================= + if( mrContext ) + { + return true; + } + else + { + fprintf(stderr,"<<>> AquaSalGraphics::BeginGraphics() FAILED!!!!\n" ); + return false; + } +} + + +void AquaSalGraphics::RefreshWindow() +{ + // Refresh windows content + Rect myRect; + GetWindowBounds(mrWindow, kWindowContentRgn, &myRect); + InvalWindowRect(mrWindow, &myRect); +} + +void AquaSalGraphics::RefreshRect(float lX, float lY, float lWidth, float lHeight) +{ + fprintf(stderr,"-->%s refresh %d - %d - %d - %d\n", __func__, static_cast(lX), static_cast(lY), static_cast(lWidth), static_cast(lHeight)); + + // Refresh windows rect content +#if 1 + HIRect aHIRect; + aHIRect.origin.x = static_cast(lX); + aHIRect.origin.y = static_cast(lY); + aHIRect.size.width = static_cast(lWidth); + aHIRect.size.height = static_cast(lHeight); + OSStatus retVal = HIViewSetNeedsDisplayInRect(mrView,&aHIRect,true); + if (retVal) + fprintf(stderr, "FIXME: HIViewSetNeedsDisplayInRect returned %d\n", (int) retVal); +#else + Rect aRect; + aRect.left = lX; + aRect.top = lY; + aRect.right = lX + lWidth; + aRect.bottom = lY + lHeight; -// ======================================================================= + InvalWindowRect(mrWindow, &aRect); +#endif +} -void InitBrush ( SalGraphicsDataPtr rSalGraphicsData ) +void AquaSalGraphics::RefreshRect(HIRect aHIRect) { - rSalGraphicsData->mbBrushTransparent = FALSE; - rSalGraphicsData->maBrushColor = GetBlackColor(); -} // InitBrush + fprintf(stderr,"-->%s\n",__func__); + // Refresh windows content -// ----------------------------------------------------------------------- - -void InitFont ( SalGraphicsDataPtr rSalGraphicsData ) -{ - rSalGraphicsData->maFontColor = GetBlackColor(); - rSalGraphicsData->mnFontID = kFontIDGeneva; - rSalGraphicsData->mnFontSize = 10; - rSalGraphicsData->mnFontStyle = normal; -} // InitFont + HIViewSetNeedsDisplayInRect(mrView,&aHIRect,true); +} // ----------------------------------------------------------------------- -void InitGWorld ( SalGraphicsDataPtr rSalGraphicsData ) +bool AquaSalGraphics::EndGraphics () { - rSalGraphicsData->mbGWorldPixelsLocked = FALSE; - rSalGraphicsData->mbGWorldPixelsCopy = FALSE; - rSalGraphicsData->mbGWorldPixelsNew = FALSE; - rSalGraphicsData->mnGWorldFlags = noErr; - rSalGraphicsData->mhGWorldPixMap = NULL; -} // InitGWorld - -// ----------------------------------------------------------------------- + if( (mnGraphics > 0) && (--mnGraphics == 0) ) + { + if( mrContext != NULL && mrWindow != NULL ) + { +/* TODO: Optimize this so we synchronize only on user event? + if( !mnUpdateGraphicsEvent ) + mnUpdateGraphicsEvent = Application::PostUserEvent( LINK( this, AquaSalGraphics, UpdateGraphics), 0 ); +*/ + //RefreshWindow(); + //CGContextSynchronize(mrContext); -void InitPen ( SalGraphicsDataPtr rSalGraphicsData ) -{ - long nMacOSPointSize = sizeof(MacOSPoint); + QDEndCGContext (GetWindowPort(mrWindow), &mrContext); +#if DEBUGLEVEL>1 + mbQDCG = false; +#endif + mrContext = 0; - rSalGraphicsData->maPenColor = GetBlackColor(); - rSalGraphicsData->mnPenMode = patCopy; - rSalGraphicsData->mbPenTransparent = FALSE; - - rSalGraphicsData->mnPortPenMode = patCopy; - rSalGraphicsData->mhPortPenPattern = NULL; - - memset( &(rSalGraphicsData->maPortPenSize), 0, nMacOSPointSize ); - memset( &(rSalGraphicsData->maPortPenLocation), 0, nMacOSPointSize ); -} // InitPen + if( mrBitmapContext ) + CGContextRestoreGState( mrBitmapContext ); + } + else if( mbVirDev ) + { + if( mrBitmapContext ) + CGContextRestoreGState( mrBitmapContext ); + } + } +#if DEBUGLEVEL>1 + if(mbQDCG) + fprintf(stderr,"-->%s unmatched QDEndCGContext\n",__func__); + else + fprintf(stderr,"-->%s OK\n",__func__); +#endif + return true; +} // ----------------------------------------------------------------------- -void InitQD ( SalGraphicsDataPtr rSalGraphicsData ) +/* +IMPL_LINK( AquaSalGraphics, UpdateGraphics, void*, EMPTYARG ) { - rSalGraphicsData->mhDC = NULL; - rSalGraphicsData->mpCGrafPort = NULL; - rSalGraphicsData->mpGWorld = NULL; -} // InitQD - -// ----------------------------------------------------------------------- + mnUpdateGraphicsEvent = 0; -void InitRegions ( SalGraphicsDataPtr rSalGraphicsData ) -{ - rSalGraphicsData->mhClipRgn = NULL; - rSalGraphicsData->mbClipRgnChanged = FALSE; -} // InitRegions + if( mrContext != NULL && mrWindow != NULL ) + { + SetPortWindowPort (mrWindow); + if( noErr == QDBeginCGContext (GetWindowPort (mrWindow), &mrWindowContext)) + { + Rect windowBounds; + GetWindowPortBounds ( mrWindow, &windowBounds); + CGImageRef xImage = CGBitmapContextCreateImage( mrContext ); + CGContextDrawImage(mrWindowContext, CGRectMake (windowBounds.left, windowBounds.top, windowBounds.right - windowBounds.left, windowBounds.bottom - windowBounds.top ), xImage); + CGImageRelease(xImage); + CGContextSynchronize(mrWindowContext); + QDEndCGContext (GetWindowPort(mrWindow), &mrWindowContext); + mrWindowContext = 0; + } + } + return 0; +} +*/ // ----------------------------------------------------------------------- -void InitStatusFlags ( SalGraphicsDataPtr rSalGraphicsData ) -{ - rSalGraphicsData->mbPrinter = FALSE; - rSalGraphicsData->mbVirDev = FALSE; - rSalGraphicsData->mbWindow = FALSE; - rSalGraphicsData->mbScreen = FALSE; - rSalGraphicsData->mnOSStatus = noErr; -} // InitStatusFlags - -// ======================================================================= - -// ======================================================================= - diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salmathutils.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salmathutils.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salmathutils.cxx 2006-09-17 13:44:50.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salmathutils.cxx 2006-10-13 23:55:43.000000000 +0200 @@ -40,6 +40,8 @@ #include #endif +#include + // ======================================================================= // ======================================================================= diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salnativewidgets.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salnativewidgets.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salnativewidgets.cxx 1970-01-01 01:00:00.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salnativewidgets.cxx 2007-03-10 10:58:42.000000000 +0100 @@ -0,0 +1,800 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile$ + * + * $Revision$ + * + * last change: $Author$ $Date$ + * + * 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 _SV_SALCONST_H +#include +#endif + +#ifndef _SV_SALGDI_H +#include +#endif + +#ifndef _SV_NATIVEWIDGETS_HXX +#include +#endif + +#ifndef _SV_NATIVEWIDGETS_H +#include +#endif + +using ::rtl::OUString; + +/* + * AquaGet* are helpers for native controls + */ + +static ThemeButtonValue ImplGetButtonValue( ButtonValue aButtonValue ) +{ + switch( aButtonValue ) + { + case BUTTONVALUE_ON: + return kThemeButtonOn; + break; + + case BUTTONVALUE_OFF: + return kThemeButtonOff; + break; + + case BUTTONVALUE_MIXED: + case BUTTONVALUE_DONTKNOW: + default: + return kThemeButtonMixed; + break; + } +} + +static Rectangle AquaGetScrollButtonRect( /*implement me : int nScreen, */ ControlPart nPart, Rectangle aAreaRect ) +{ + Rectangle buttonRect; + + switch (nPart) + { + case PART_BUTTON_UP: + buttonRect.setX( aAreaRect.Left() ); + buttonRect.setY( aAreaRect.Top() ); + break; + + case PART_BUTTON_LEFT: + buttonRect.setX( aAreaRect.Left() ); + buttonRect.setY( aAreaRect.Top() ); + break; + + case PART_BUTTON_DOWN: + buttonRect.setX( aAreaRect.Left() ); + buttonRect.setY( aAreaRect.Top() + aAreaRect.GetHeight() - BUTTON_HEIGHT ); + break; + + case PART_BUTTON_RIGHT: + buttonRect.setX( aAreaRect.Left() + aAreaRect.GetWidth() - BUTTON_WIDTH ); + buttonRect.setY( aAreaRect.Top() ); + break; + } + + buttonRect.SetSize( Size( BUTTON_WIDTH, BUTTON_HEIGHT ) ); + + return( buttonRect ); +} + +char *ImplDbgGetStringControlType(ControlType nType) +{ + switch (nType) + { + case CTRL_PUSHBUTTON: return "PUSHBUTTON"; + case CTRL_RADIOBUTTON: return "RADIOBUTTON"; + case CTRL_CHECKBOX: return "CHECKBOX"; + case CTRL_COMBOBOX: return "COMBOBOX"; + case CTRL_EDITBOX: return "EDITBOX"; + case CTRL_EDITBOX_NOBORDER: return "EDITBOX_NOBORDER"; + case CTRL_MULTILINE_EDITBOX: return "MULTILINE_EDITBOX"; + case CTRL_LISTBOX: return "LISTBOX"; + case CTRL_SPINBOX: return "SPINBOX"; + case CTRL_SPINBUTTONS: return "SPINBUTTONS"; + case CTRL_TAB_ITEM: return "TAB_ITEM"; + case CTRL_TAB_PANE: return "TAB_PANE"; + case CTRL_TAB_BODY: return "TAB_BODY"; + case CTRL_SCROLLBAR: return "SCROLLBAR"; + case CTRL_GROUPBOX: return "GROUPBOX"; + case CTRL_FIXEDLINE: return "FIXEDLINE"; + case CTRL_FIXEDBORDER: return "FIXEDBORDER"; + case CTRL_TOOLBAR: return "TOOLBAR"; + case CTRL_MENUBAR: return "MENUBAR"; + case CTRL_MENU_POPUP: return "MENU_POPUP"; + case CTRL_STATUSBAR: return "STATUSBAR"; + case CTRL_TOOLTIP: return "TOOLTIP"; + } + + fprintf (stderr, "UNKNOWN ControlType %d!\n", (int) nType); + return "UNKNOWN"; +} + +char *ImplDbgGetStringControlPart(ControlPart nPart) +{ + switch (nPart) + { + case PART_ENTIRE_CONTROL: return "ENTIRE_CONTROL"; + case PART_WINDOW: return "WINDOW"; + case PART_BUTTON: return "BUTTON"; + case PART_BUTTON_UP: return "BUTTON_UP"; + case PART_BUTTON_DOWN: return "BUTTON_DOWN"; + case PART_BUTTON_LEFT: return "BUTTON_LEFT"; + case PART_BUTTON_RIGHT: return "BUTTON_RIGHT"; + case PART_ALL_BUTTONS: return "ALL_BUTTONS"; + case PART_TRACK_HORZ_LEFT: return "TRACK_HORZ_LEFT"; + case PART_TRACK_VERT_UPPER: return "TRACK_VERT_UPPER"; + case PART_TRACK_HORZ_RIGHT: return "TRACK_HORZ_RIGHT"; + case PART_TRACK_VERT_LOWER: return "TRACK_VERT_LOWER"; + case PART_THUMB_HORZ: return "THUMB_HORZ"; + case PART_THUMB_VERT: return "THUMB_VERT"; + case PART_MENU_ITEM: return "MENU_ITEM"; + case PART_MENU_ITEM_CHECK_MARK: return "MENU_ITEM_CHECK_MARK"; + case PART_MENU_ITEM_RADIO_MARK: return "MENU_ITEM_RADIO_MARK"; + case PART_SUB_EDIT: return "SUB_EDIT"; + case PART_DRAW_BACKGROUND_HORZ: return "DRAW_BACKGROUND_HORZ"; + case PART_DRAW_BACKGROUND_VERT: return "DRAW_BACKGROUND_VERT"; + case PART_TABS_DRAW_RTL: return "TABS_DRAW_RTL"; + + case HAS_BACKGROUND_TEXTURE: return "HAS_BACKGROUND_TEXTURE"; + case HAS_THREE_BUTTONS: return "HAS_THREE_BUTTONS"; +} + + fprintf (stderr, "UNKNOWN ControlPart %d!\n", (int) nPart); + return "UNKNOWN"; +} + + +/* + * IsNativeControlSupported() + * -------------------------- + * Returns TRUE if the platform supports native + * drawing of the control defined by nPart. + * + */ +BOOL AquaSalGraphics::IsNativeControlSupported( ControlType nType, ControlPart nPart ) +{ + bool bOk = FALSE; + + // Native controls are now defaults + // If you want to disable experimental native controls code, + // just set the environment variable SAL_NO_NWF to something + // and vcl controls will be used as default again. + + fprintf(stderr, "%s (%s, %s)\n", __func__, ImplDbgGetStringControlType(nType), ImplDbgGetStringControlPart(nPart)); + + switch( nType ) + { + case CTRL_PUSHBUTTON: + case CTRL_RADIOBUTTON: + case CTRL_CHECKBOX: + if( nPart == PART_ENTIRE_CONTROL ) + return true; + break; + + case CTRL_SCROLLBAR: + if( nPart == PART_DRAW_BACKGROUND_HORZ || + nPart == PART_DRAW_BACKGROUND_VERT || + nPart == PART_ENTIRE_CONTROL || + nPart == HAS_THREE_BUTTONS ) + return true; + break; + + case CTRL_EDITBOX: // ** TO DO ** + if( nPart == PART_ENTIRE_CONTROL || + nPart == HAS_BACKGROUND_TEXTURE ) + return false; + break; + + case CTRL_MULTILINE_EDITBOX: // ** TO DO ** + if( nPart == PART_ENTIRE_CONTROL || + nPart == HAS_BACKGROUND_TEXTURE ) + return false; + break; + + case CTRL_SPINBOX: // ** TO DO ** + if( nPart == PART_ENTIRE_CONTROL || + nPart == PART_ALL_BUTTONS || + nPart == HAS_BACKGROUND_TEXTURE ) + return false; + break; + + case CTRL_SPINBUTTONS: // ** TO DO ** + if( nPart == PART_ENTIRE_CONTROL || + nPart == PART_ALL_BUTTONS ) + return false; + break; + + case CTRL_COMBOBOX: // ** TO DO ** + if( nPart == PART_ENTIRE_CONTROL || + nPart == HAS_BACKGROUND_TEXTURE ) + return false; + break; + + case CTRL_LISTBOX: // ** TO DO ** + if( nPart == PART_ENTIRE_CONTROL //|| + // nPart == PART_WINDOW || + // nPart == HAS_BACKGROUND_TEXTURE + ) + return true; + break; + + case CTRL_TAB_ITEM: + case CTRL_TAB_PANE: + case CTRL_TAB_BODY: + case CTRL_FIXEDBORDER: // ** TO DO + CHECK IF NEEDED ** + if( nPart == PART_ENTIRE_CONTROL || + nPart == PART_TABS_DRAW_RTL ) + return false; + break; + + case CTRL_TOOLBAR: // ** TO DO + CHECK IF NEEDED ** + if( nPart == PART_ENTIRE_CONTROL || + nPart == PART_DRAW_BACKGROUND_HORZ || + nPart == PART_DRAW_BACKGROUND_VERT || + nPart == PART_THUMB_HORZ || + nPart == PART_THUMB_VERT || + nPart == PART_BUTTON ) + return false; + break; + + case CTRL_MENUBAR: // ** TO DO + CHECK IF NEEDED ** + if( nPart == PART_ENTIRE_CONTROL ) + return false; + break; + + case CTRL_TOOLTIP: // ** TO DO + CHECK IF NEEDED ** + if( nPart == PART_ENTIRE_CONTROL ) + return false; + break; + + case CTRL_MENU_POPUP: + if( nPart == PART_ENTIRE_CONTROL || + nPart == PART_MENU_ITEM ) + return true; + break; + } + + return bOk; +} + +/* + * HitTestNativeControl() + * + * If the return value is TRUE, bIsInside contains information whether + * aPos was or was not inside the native widget specified by the + * nType/nPart combination. + */ +BOOL AquaSalGraphics::hitTestNativeControl( ControlType nType, ControlPart nPart, const Region& rControlRegion, + const Point& rPos, SalControlHandle& rControlHandle, BOOL& rIsInside ) +{ + fprintf(stderr, "%s (%s, %s)\n", __func__, ImplDbgGetStringControlType(nType), ImplDbgGetStringControlPart(nPart)); + + if ( nType == CTRL_SCROLLBAR ) + { + // outside by default + rIsInside = FALSE; + + ControlPart nCounterPart = 0; + switch (nPart) + { + case PART_BUTTON_UP: + nCounterPart = PART_BUTTON_DOWN; + break; + case PART_BUTTON_DOWN: + nCounterPart = PART_BUTTON_UP; + break; + case PART_BUTTON_LEFT: + nCounterPart = PART_BUTTON_RIGHT; + break; + case PART_BUTTON_RIGHT: + nCounterPart = PART_BUTTON_LEFT; + break; + } + // make position relative to rControlRegion + + // [ericb] rControlRegion.GetBoundRect() returns the rectangle where vcl control is located + // when a control is hit on the scrollbar (native control), the coordinates of the click + // are translated to vcl control coordinates + // rPos : the structure containing the cursor position + // aPos = relative position of current cursor + + Point aPos; + aPos = rPos - rControlRegion.GetBoundRect().TopLeft(); + + // button_leftRect contains the left/top button hit in the scrollbar + // button_rightRect contains the right/bottom button hit in the scrollbar + Rectangle button_leftRect; + Rectangle button_rightRect; + + // controlRect contains the scrollbar + Rectangle controlRect = rControlRegion.GetBoundRect(); + + // Get respective areas + button_leftRect = AquaGetScrollButtonRect( /* m_nScreen, implement me */ nPart, rControlRegion.GetBoundRect() ); + button_rightRect = AquaGetScrollButtonRect( /* m_nScreen, implement me */ nCounterPart, rControlRegion.GetBoundRect() ); + + short offset_button_left = 0; // from left of scrollbar area to the left side of left button + short offset_button_top = 0; // from top of scrollbar area to top of top button + + // right / bottom butons have always the same position + short offset_button_right = controlRect.GetWidth() - button_rightRect.GetWidth(); // from left of scrollbar area to left side of right button + short offset_button_bottom = controlRect.GetHeight() - button_rightRect.GetHeight(); // from top of scrollbar area to top of bottom button + + CFStringRef AppleScrollBarType = CFSTR("AppleScrollBarVariant"); + CFStringRef ScrollBarVariant; + ScrollBarVariant = ((CFStringRef)CFPreferencesCopyAppValue(AppleScrollBarType,kCFPreferencesCurrentApplication)); + CFRelease(AppleScrollBarType); + + if ( ScrollBarVariant && !CFStringCompare( ScrollBarVariant, CFSTR("DoubleMax"), kCFCompareCaseInsensitive)) + { + offset_button_left = controlRect.GetWidth() - (button_leftRect.GetWidth() + button_rightRect.GetWidth()); + offset_button_top = controlRect.GetHeight() - (button_leftRect.GetHeight() + button_rightRect.GetHeight()); + CFRelease(ScrollBarVariant); + } + + // depending on nPart, we have to test different regions + switch ( nPart ) + { + case PART_BUTTON_LEFT: + if ( (aPos.getY() > 0 ) && (aPos.getY() < controlRect.GetHeight() ) + && (aPos.getX() > offset_button_left) && (aPos.getX() < (offset_button_left + button_leftRect.GetWidth()) ) ) + { + fprintf(stderr, "button left \n"); + rIsInside = TRUE; + } + break; + + case PART_BUTTON_RIGHT: + if ( (aPos.getY() > 0 ) && (aPos.getY() < controlRect.GetHeight() ) + && (aPos.getX() > offset_button_right ) && (aPos.getX() < controlRect.GetWidth() + 1)) // + 1 because of the borders + { + fprintf(stderr, "button right \n"); + rIsInside = TRUE; + } + break; + + case PART_BUTTON_UP: + if ( (aPos.getX() > 0 ) && (aPos.getX() < controlRect.GetWidth() ) + && (aPos.getY() > offset_button_top) && (aPos.getY() < (offset_button_top + button_leftRect.GetHeight() )) ) + { + fprintf(stderr, "button up \n"); + rIsInside = TRUE; + } + break; + + case PART_BUTTON_DOWN: + if ((aPos.getX() > 0 ) && (aPos.getX() < controlRect.GetWidth() ) + && ( aPos.getY() > (offset_button_bottom)) && (aPos.getY() < (controlRect.GetHeight() + 1) ) ) + { + fprintf(stderr, "button down \n"); + rIsInside = TRUE; + } + break; + + default: + rIsInside = FALSE; + break; + } + + return TRUE; + + } // CTRL_SCROLLBAR + + return FALSE; +} + +/* + kThemeStateInactive = 0, + kThemeStateActive = 1, + kThemeStatePressed = 2, + kThemeStateRollover = 6, + kThemeStateUnavailable = 7, + kThemeStateUnavailableInactive = 8 + kThemeStatePressedUp = 2, + kThemeStatePressedDown = 3 + +#define CTRL_STATE_ENABLED 0x0001 +#define CTRL_STATE_FOCUSED 0x0002 +#define CTRL_STATE_PRESSED 0x0004 +#define CTRL_STATE_ROLLOVER 0x0008 +#define CTRL_STATE_HIDDEN 0x0010 +#define CTRL_STATE_DEFAULT 0x0020 +#define CTRL_STATE_SELECTED 0x0040 +#define CTRL_CACHING_ALLOWED 0x8000 // set when the control is completely visible (i.e. not clipped) +*/ +static ThemeDrawState getState( ControlState nState ) +{ + if( (nState & CTRL_STATE_ENABLED) == 0 ) + { + if( (nState & CTRL_STATE_HIDDEN) == 0 ) + return kThemeStateInactive; + else + return kThemeStateUnavailableInactive; + } + + if( (nState & CTRL_STATE_HIDDEN) != 0 ) + return kThemeStateUnavailable; + + if( (nState & CTRL_STATE_PRESSED) != 0 ) + return kThemeStatePressed; + + return kThemeStateActive; +} + +/* + * DrawNativeControl() + * + * Draws the requested control described by nPart/nState. + * + * rControlRegion: The bounding region of the complete control in VCL frame coordinates. + * aValue: An optional value (tristate/numerical/string) + * rControlHandle: Carries platform dependent data and is maintained by the AquaSalGraphics implementation. + * aCaption: A caption or title string (like button text etc) + */ +BOOL AquaSalGraphics::drawNativeControl(ControlType nType, + ControlPart nPart, + const Region& rControlRegion, + ControlState nState, + const ImplControlValue& aValue, + SalControlHandle& rControlHandle, + const rtl::OUString& aCaption ) +{ + fprintf(stderr, "%s (%s, %s)\n", __func__, ImplDbgGetStringControlType(nType), ImplDbgGetStringControlPart(nPart)); + BOOL bOk = FALSE; + + Rectangle buttonRect = rControlRegion.GetBoundRect(); + + HIRect rc; + rc.origin.x = static_cast(buttonRect.Left()); + rc.origin.y = static_cast(buttonRect.Top()); + rc.size.width = static_cast(buttonRect.Right()) - static_cast(buttonRect.Left()); + rc.size.height = static_cast(buttonRect.Bottom()) - static_cast(buttonRect.Top()); + + /** Scrollbar parts code equivalent ** + PART_BUTTON_UP 101 + PART_BUTTON_DOWN 102 + PART_THUMB_VERT 211 + PART_TRACK_VERT_UPPER 201 + PART_TRACK_VERT_LOWER 203 + + PART_DRAW_BACKGROUND_HORZ 1000 + PART_DRAW_BACKGROUND_VERT 1001 + **/ + + switch( nType ) + { + case CTRL_MENU_POPUP: + { + if ((nPart == PART_ENTIRE_CONTROL) || (nPart == PART_MENU_ITEM )|| (nPart == HAS_BACKGROUND_TEXTURE )) + { + HIThemeMenuDrawInfo aMenuInfo; + aMenuInfo.version = 0; + aMenuInfo.menuType = kThemeMenuTypePullDown; + + HIThemeMenuItemDrawInfo aMenuItemDrawInfo; + // the Aqua grey theme when the item is selected is drawn here. + aMenuItemDrawInfo.itemType = kThemeMenuItemPlain; + + if ((nPart == PART_MENU_ITEM )) + { + // the blue theme when the item is selected is drawn here. + aMenuItemDrawInfo.state = kThemeMenuSelected; + } + else + { + // normal color for non selected item + aMenuItemDrawInfo.state = kThemeMenuActive; + } + + if( BeginGraphics() ) + { + + // repaints the background of the pull down menu + HIThemeDrawMenuBackground(&rc,&aMenuInfo,mrContext,kHIThemeOrientationNormal); + + // repaints the item either blue (selected) and/or Aqua grey (active only) + HIThemeDrawMenuItem(&rc,&rc,&aMenuItemDrawInfo,mrContext,kHIThemeOrientationNormal,&rc); + + // Draw POPUP menu item to the offscreen bitmap + if ( isOffscreenCopy() ) + { + HIThemeDrawMenuBackground(&rc,&aMenuInfo,mrBitmapContext,kHIThemeOrientationNormal); + HIThemeDrawMenuItem(&rc,&rc,&aMenuItemDrawInfo,mrBitmapContext,kHIThemeOrientationNormal,&rc); + } + + EndGraphics(); + return true; + } + else + return false; + } + } + break; + + case CTRL_PUSHBUTTON: + { + + // [ FIXME] : instead of use a value, vcl can retrieve corect values on the fly (to be implemented) + int max_height = 20; + + // [FIXME]: for width, better use (native) text length to define width. How retrieve the text length ? + int max_width = 68; + + // [FIXME] find a better criteria to differentiate several buttons who are square, but are not Bewel buttons. + if((rc.size.width < 17) && (rc.size.width == rc.size.height ) ) + { + HIThemeButtonDrawInfo aBevelInfo; + aBevelInfo.version = 0; + aBevelInfo.kind = kThemeBevelButton; + aBevelInfo.state = getState( nState ); + + ButtonValue aButtonValue = aValue.getTristateVal(); + aBevelInfo.value = ImplGetButtonValue( aButtonValue ); + + aBevelInfo.adornment = (( nState & CTRL_STATE_DEFAULT ) != 0) ? + kThemeAdornmentDefault : + kThemeAdornmentNone; + if( (nState & CTRL_STATE_FOCUSED) != 0 ) + aBevelInfo.adornment |= kThemeAdornmentFocus; + + if( BeginGraphics() ) + { + HIThemeDrawButton( &rc, &aBevelInfo, mrContext, kHIThemeOrientationNormal, NULL ); + if ( isOffscreenCopy() ) + HIThemeDrawButton( &rc, &aBevelInfo, mrBitmapContext, kHIThemeOrientationNormal, NULL ); + EndGraphics(); + return true; + } + else + return false; + break; + } + else + { + HIThemeButtonDrawInfo aPushInfo; + aPushInfo.version = 0; + if(( rc.size.width >= max_width) || ( rc.size.height >= max_height )) + { + aPushInfo.kind = kThemePushButton; + // just in case people don't like push button with iconn inside + if (rc.size.width > max_width ) + { + // translate the origin of the button from the half of the offset + // translation value must be an integrer + int delta_y = floor((rc.size.height - max_height) / 2.0); + rc.origin.y += delta_y + 1; + + // button height must be limited ( height value collected from OSXHIGuidelines ) + rc.size.height = max_height; + } + + aPushInfo.state = getState( nState ); + + aPushInfo.value = ImplGetButtonValue( aValue.getTristateVal() ); + + aPushInfo.adornment = (( nState & CTRL_STATE_DEFAULT ) != 0) ? + kThemeAdornmentDefault : + kThemeAdornmentNone; + if( (nState & CTRL_STATE_FOCUSED) != 0 ) + aPushInfo.adornment |= kThemeAdornmentFocus; + + if( BeginGraphics() ) + { + HIThemeDrawButton( &rc, &aPushInfo, mrContext, kHIThemeOrientationNormal, NULL ); + if ( isOffscreenCopy() ) + HIThemeDrawButton( &rc, &aPushInfo, mrBitmapContext, kHIThemeOrientationNormal, NULL ); + EndGraphics(); + return true; + } + else + return false; + } + break; + } + } + + case CTRL_RADIOBUTTON: + case CTRL_CHECKBOX: + { + HIThemeButtonDrawInfo aInfo; + switch( nType ) + { + case CTRL_RADIOBUTTON: aInfo.kind = kThemeRadioButton; + break; + case CTRL_CHECKBOX: aInfo.kind = kThemeCheckBox; + break; + } + + aInfo.state = getState( nState ); + + ButtonValue aButtonValue = aValue.getTristateVal(); + aInfo.value = ImplGetButtonValue( aButtonValue ); + + aInfo.adornment = (( nState & CTRL_STATE_DEFAULT ) != 0) ? + kThemeAdornmentDefault : + kThemeAdornmentNone; + if( (nState & CTRL_STATE_FOCUSED) != 0 ) + aInfo.adornment |= kThemeAdornmentFocus; + if( BeginGraphics() ) + { + HIThemeDrawButton( &rc, &aInfo, mrContext, kHIThemeOrientationNormal, NULL ); + if ( isOffscreenCopy() ) + HIThemeDrawButton( &rc, &aInfo, mrBitmapContext, kHIThemeOrientationNormal, NULL ); + EndGraphics(); + return true; + } + else + return false; + } + break; + + case CTRL_SCROLLBAR: + { + ScrollbarValue* pScrollbarVal = (ScrollbarValue *)(aValue.getOptionalVal()); + + if( nPart == PART_DRAW_BACKGROUND_VERT || + nPart == PART_DRAW_BACKGROUND_HORZ ) + { + HIThemeTrackDrawInfo aTrackDraw; + aTrackDraw.version = 0; + aTrackDraw.kind = kThemeMediumScrollBar; + aTrackDraw.bounds = rc; + aTrackDraw.min = pScrollbarVal->mnMin; + aTrackDraw.max = pScrollbarVal->mnMax - pScrollbarVal->mnVisibleSize; + aTrackDraw.value = pScrollbarVal->mnCur; + aTrackDraw.reserved = 0; + aTrackDraw.attributes = kThemeTrackShowThumb; + if( nPart == PART_DRAW_BACKGROUND_HORZ ) + aTrackDraw.attributes |= kThemeTrackHorizontal; + aTrackDraw.enableState = kThemeTrackActive; + + ScrollBarTrackInfo aScrollInfo; + aScrollInfo.viewsize = pScrollbarVal->mnVisibleSize; + aScrollInfo.pressState = 0; + + if ( pScrollbarVal->mnButton1State & CTRL_STATE_ENABLED ) + { + if ( pScrollbarVal->mnButton1State & CTRL_STATE_PRESSED ) + aScrollInfo.pressState = kThemeTopOutsideArrowPressed; + } + + if ( pScrollbarVal->mnButton2State & CTRL_STATE_ENABLED ) + { + if ( pScrollbarVal->mnButton2State & CTRL_STATE_PRESSED ) + aScrollInfo.pressState = kThemeBottomOutsideArrowPressed; + } + + if ( pScrollbarVal->mnThumbState & CTRL_STATE_ENABLED ) + { + if ( pScrollbarVal->mnThumbState & CTRL_STATE_PRESSED ) + aScrollInfo.pressState = kThemeThumbPressed; + } + + aTrackDraw.trackInfo.scrollbar = aScrollInfo; + + if ( BeginGraphics() ) + { + HIThemeDrawTrack( &aTrackDraw, NULL, mrContext, kHIThemeOrientationNormal ); + if ( isOffscreenCopy() ) + HIThemeDrawTrack( &aTrackDraw, NULL, mrBitmapContext, kHIThemeOrientationNormal ); + EndGraphics(); + return true; + } + else + return false; + } + } + } + return bOk; +} + +/* + * DrawNativeControlText() + * + * OPTIONAL. Draws the requested text for the control described by nPart/nState. + * Used if text not drawn by DrawNativeControl(). + * + * rControlRegion: The bounding region of the complete control in VCL frame coordinates. + * aValue: An optional value (tristate/numerical/string) + * rControlHandle: Carries platform dependent data and is maintained by the AquaSalGraphics implementation. + * aCaption: A caption or title string (like button text etc) + */ +BOOL AquaSalGraphics::drawNativeControlText( ControlType nType, ControlPart nPart, const Region& rControlRegion, + ControlState nState, const ImplControlValue& aValue, + SalControlHandle& rControlHandle, const rtl::OUString& aCaption ) +{ + printf("In text\n"); + return( FALSE ); +} + + +/* + * GetNativeControlRegion() + * + * If the return value is TRUE, rNativeBoundingRegion + * contains the true bounding region covered by the control + * including any adornment, while rNativeContentRegion contains the area + * within the control that can be safely drawn into without drawing over + * the borders of the control. + * + * rControlRegion: The bounding region of the control in VCL frame coordinates. + * aValue: An optional value (tristate/numerical/string) + * rControlHandle: Carries platform dependent data and is maintained by the AquaSalGraphics implementation. + * aCaption: A caption or title string (like button text etc) + */ +BOOL AquaSalGraphics::getNativeControlRegion( ControlType nType, ControlPart nPart, const Region& rControlRegion, ControlState nState, + const ImplControlValue& aValue, SalControlHandle& rControlHandle, const rtl::OUString& aCaption, + Region &rNativeBoundingRegion, Region &rNativeContentRegion ) + +{ + fprintf(stderr, "%s (%s, %s)\n", __func__, ImplDbgGetStringControlType(nType), ImplDbgGetStringControlPart(nPart)); + BOOL toReturn = FALSE; + + switch (nType) + { + case CTRL_PUSHBUTTON: + case CTRL_RADIOBUTTON: + case CTRL_CHECKBOX: + + short x = rControlRegion.GetBoundRect().Left(); + short y = rControlRegion.GetBoundRect().Top(); + short w, h; + + sal_uInt8 nBorderCleanup = 0; + + if ( nType == CTRL_PUSHBUTTON ) + { + w = rControlRegion.GetBoundRect().GetWidth(); + h = rControlRegion.GetBoundRect().GetHeight(); + } + else + { + // checkbox and radio borders need cleanup after unchecking them + nBorderCleanup = 4; + + // TEXT_SEPARATOR to respect Aqua HIG + w = BUTTON_WIDTH + TEXT_SEPARATOR; + h = BUTTON_HEIGHT; + + } + + rNativeContentRegion = Rectangle( Point( x, y ), Size( w, h + nBorderCleanup) ); + rNativeBoundingRegion = Rectangle( Point( x, y ), Size( w, h ) ); + + toReturn = TRUE; + break; + } + + fprintf(stderr, "AquaSalGraphics::getNativeControlRegion will return: %d\n", toReturn); + return toReturn; +} diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salogl.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salogl.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salogl.cxx 2006-09-17 13:45:02.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salogl.cxx 2007-03-08 09:39:21.000000000 +0100 @@ -39,57 +39,85 @@ #ifndef _SV_SALGDI_HXX #include #endif +#ifndef _SV_SALGDI_H +#include +#endif #ifndef _SV_SALOGL_HXX #include #endif +#ifndef _SV_SALOGL_H +#include +#endif // ======================================================================== // Initialize static data members -VCLVIEW SalOpenGL::mhOGLLastDC = 0; -ULONG SalOpenGL::mnOGLState = OGL_STATE_UNLOADED; +CarbonViewRef AquaSalOpenGL::mhOGLLastDC = 0; +ULONG AquaSalOpenGL::mnOGLState = OGL_STATE_UNLOADED; // ======================================================================== -SalOpenGL::SalOpenGL( SalGraphics* pGraphics ) +AquaSalOpenGL::AquaSalOpenGL( SalGraphics* pGraphics ) { } // ------------------------------------------------------------------------ -SalOpenGL::~SalOpenGL() +AquaSalOpenGL::~AquaSalOpenGL() { } // ------------------------------------------------------------------------ -BOOL SalOpenGL::Create() +BOOL AquaSalOpenGL::Create() { return FALSE; } // ------------------------------------------------------------------------ -void SalOpenGL::Release() +void AquaSalOpenGL::Release() { } // ------------------------------------------------------------------------ -void *SalOpenGL::GetOGLFnc( const char* pFncName ) +oglFunction AquaSalOpenGL::GetOGLFnc( const char* pFncName ) { return NULL; } // ------------------------------------------------------------------------ -void SalOpenGL::OGLEntry( SalGraphics* pGraphics ) +void AquaSalOpenGL::OGLEntry( SalGraphics* pGraphics ) { } // ------------------------------------------------------------------------ -void SalOpenGL::OGLExit( SalGraphics* pGraphics ) +void AquaSalOpenGL::OGLExit( SalGraphics* pGraphics ) +{ +} + + + + + + + + +void AquaSalOpenGL::StartScene( SalGraphics* pGraphics ) +{ + +} + +bool AquaSalOpenGL::IsValid() +{ + return FALSE; +} + +void AquaSalOpenGL::StopScene() { + } diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salpixmaputils.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salpixmaputils.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salpixmaputils.cxx 2006-09-17 13:45:15.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salpixmaputils.cxx 2007-01-12 22:01:27.000000000 +0100 @@ -44,568 +44,3 @@ // ======================================================================= -static inline long GetPixMapHeight( const Rect *rPixMapBoundsRect ) -{ - long nPixMapHeight = rPixMapBoundsRect->bottom - rPixMapBoundsRect->top; - - return nPixMapHeight; -} // GetPixMapHeight - -// ------------------------------------------------------------------ - -static inline long GetPixMapWidth ( const Rect *rPixMapBoundsRect ) -{ - long nPixMapWidth = rPixMapBoundsRect->right - rPixMapBoundsRect->left; - - return nPixMapWidth; -} // GetPixMapWidth - -// ------------------------------------------------------------------ - -static inline Fixed GetPixMapRes( const long nPixMapRes ) -{ - Fixed aPixMapRes = Long2Fix( nPixMapRes ); - - return aPixMapRes; -} // GetPixMapHRes - -// ------------------------------------------------------------------ - -static inline long GetPixMapBitDepth( const USHORT nPixMapBits ) -{ - long nPixMapBitDepth = 0; - - if ( nPixMapBits <= kThousandsColor ) - { - nPixMapBitDepth = (long)nPixMapBits; - } // if - else - { - nPixMapBitDepth = kTrueColor; - } // else - - return nPixMapBitDepth; -} // GetNewPixMapDepth - -// ------------------------------------------------------------------ - -static inline long GetPixMapOffset ( const long nPixMapBitDepth, - const short nPixMapWidth - ) -{ - long nPixMapImageWidth = nPixMapBitDepth * (long)nPixMapWidth; - long nPixMapOffset = ( ( nPixMapImageWidth + 15L ) >> 4L ) << 1L; - - return nPixMapOffset; -} // GetPixMapOffset - -// ------------------------------------------------------------------ - -static inline long GetPixMapImageSize ( const short nPixMapHeight, - const long nPixMapRowOffset - ) -{ - long nPixMapImageSize = (long)nPixMapHeight * nPixMapRowOffset; - - return nPixMapImageSize; -} // GetPixMapImageSize - -// ------------------------------------------------------------------ - -static inline short GetPixMapRowBytes ( const long nPixMapRowOffset ) -{ - short nPixMapRowBytes = (short)nPixMapRowOffset + 0x8000; - - return nPixMapRowBytes; -} // GetPixMapRowBytes - -// ------------------------------------------------------------------ - -static inline short GetPixMapColorDepth ( const USHORT nPixMapBits ) -{ - short nPixMapColorDepth = 0; - - if ( nPixMapBits <= kEightBits ) - { - nPixMapColorDepth = kOneBit << ((short)nPixMapBits); - } - - return nPixMapColorDepth; -} // GetPixMapColorDepth - -// ------------------------------------------------------------------ - -static void GetPixMapBoudsRect ( const short nPixMapWidth, - const short nPixMapHeight, - Rect *rPixMapBoundsRect - ) -{ - short nPixMapRectLeft = 0; - short nPixMapRectTop = 0; - short nPixMapRectRight = nPixMapWidth; - short nPixMapRectBottom = nPixMapHeight; - - // Set the dimensions of the PixMap - - MacSetRect( rPixMapBoundsRect, - nPixMapRectLeft, - nPixMapRectTop, - nPixMapRectRight, - nPixMapRectBottom - ); -} // GetPixMapBoudsRect - -// ------------------------------------------------------------------ - -static inline short GetPixMapCmpSize ( const long nPixMapBitDepth ) -{ - short nPixMapCmpSize = 0; - - if ( nPixMapBitDepth <= kEightBitColor ) - { - nPixMapCmpSize = nPixMapBitDepth; - } // if - else if ( nPixMapBitDepth == kThousandsColor ) - { - nPixMapCmpSize = kPixMapCmpSizeFiveBits; - } // else if - else - { - nPixMapCmpSize = kPixMapCmpSizeEightBits; - } // else - - return nPixMapCmpSize; -} // GetPixMapCmpSize - -// ------------------------------------------------------------------ - -static inline short GetPixMapCmpCount ( const long nPixMapBitDepth ) -{ - short nPixMapCmpCount = 0; - - if ( nPixMapBitDepth <= kEightBitColor ) - { - nPixMapCmpCount = 1; - } // if - else - { - nPixMapCmpCount = 3; - } // else - - return nPixMapCmpCount; -} // GetPixMapCmpCount - -// ------------------------------------------------------------------ - -static inline short GetPixMapPixelType ( const long nPixMapBitDepth ) -{ - short nPixMapPixelType = 0; - - if ( nPixMapBitDepth <= kEightBitColor ) - { - nPixMapPixelType = 0; - } // if - else - { - nPixMapPixelType = RGBDirect; - } // else - - return nPixMapPixelType; -} // GetPixMapPixelType - -// ------------------------------------------------------------------ - -static inline OSType GetPixMapPixelFormat ( ) -{ - OSType nPixMapPixelFormat = NULL; - GDPtr pGDevice = NULL; - - pGDevice = *GetGDevice( ); - - if ( pGDevice != NULL ) - { - PixMapPtr pPixMap = NULL; - - pPixMap = *(*pGDevice).gdPMap; - - if ( pPixMap != NULL ) - { - nPixMapPixelFormat = pPixMap->pixelFormat; - } // if - } // if - - return nPixMapPixelFormat; -} // GetPixMapPixelFormat - -// ======================================================================= - -// ======================================================================= - -static CTabHandle GetPixMapCTabBitmapPalette ( const short nPixMapColorDepth, - const BitmapPalette &rBitmapPalette - ) -{ - CTabHandle hPixMapCTab = NULL; - - hPixMapCTab = (CTabHandle) NewHandleClear( sizeof( ColorTable ) - + sizeof( ColorSpec ) - * ( nPixMapColorDepth - 1 ) - ); - - if ( ( hPixMapCTab != NULL ) && ( *hPixMapCTab != NULL ) ) - { - SInt8 nFlags = noErr; - - nFlags = HGetState( (Handle)hPixMapCTab ); - - if ( nFlags == noErr ) - { - short nBitmapPaletteMinCount = GetMinColorCount(nPixMapColorDepth, rBitmapPalette); - short nBitmapPaletteIndex = 0; - - HLock( (Handle)hPixMapCTab ); - - (**hPixMapCTab).ctSeed = GetCTSeed(); - (**hPixMapCTab).ctFlags = 0; - (**hPixMapCTab).ctSize = nPixMapColorDepth - 1; - - for ( nBitmapPaletteIndex = 0; - nBitmapPaletteIndex < nBitmapPaletteMinCount; - nBitmapPaletteIndex++ - ) - { - const BitmapColor &rBitmapPaletteColor = rBitmapPalette[nBitmapPaletteIndex]; - - (**hPixMapCTab).ctTable[nBitmapPaletteIndex].value - = nBitmapPaletteIndex; - - (**hPixMapCTab).ctTable[nBitmapPaletteIndex].rgb - = BitmapColor2RGBColor( rBitmapPaletteColor ); - } // for - - HSetState( (Handle)hPixMapCTab, nFlags ); - } // if - } // if - - return hPixMapCTab; -} // GetPixMapCTabBitmapPalette - -// ------------------------------------------------------------------ - -static CTabHandle GetCTabRGBDirect ( const short nPixMapCmpSize ) -{ - CTabHandle hPixMapCTab = NULL; - - hPixMapCTab = (CTabHandle)NewHandleClear( sizeof( ColorTable ) - - sizeof( CSpecArray ) - ); - - if ( ( hPixMapCTab != NULL ) && ( *hPixMapCTab != NULL ) ) - { - SInt8 nFlags = noErr; - - nFlags = HGetState( (Handle)hPixMapCTab ); - - if ( nFlags == noErr ) - { - HLock( (Handle)hPixMapCTab ); - - (**hPixMapCTab).ctSeed = 3 * nPixMapCmpSize; - (**hPixMapCTab).ctFlags = 0; - (**hPixMapCTab).ctSize = 0; - - HSetState( (Handle)hPixMapCTab, nFlags ); - } // if - } // if - - return hPixMapCTab; -} // GetCTabRGBDirect - -// ------------------------------------------------------------------ - -static CTabHandle GetPixMapCTab ( const long nPixMapBitDepth, - const short nPixMapColorDepth, - const short nPixMapCmpSize, - const BitmapPalette &rBitmapPalette - ) -{ - CTabHandle hPixMapCTab = NULL; - - if ( nPixMapBitDepth <= kEightBitColor ) - { - hPixMapCTab = GetPixMapCTabBitmapPalette( nPixMapColorDepth, - rBitmapPalette - ); - - if ( hPixMapCTab == NULL ) - { - hPixMapCTab = GetCTabFromStdCLUT( nPixMapBitDepth ); - - if ( hPixMapCTab == NULL ) - { - hPixMapCTab = CopyGDeviceCTab( ); - } // if - } // if - } // if - else - { - hPixMapCTab = GetCTabRGBDirect( nPixMapCmpSize ); - } // else - - return hPixMapCTab; -} // GetPixMapCTab - -// ======================================================================= - -// ======================================================================= - -PixMapHandle GetNewPixMap ( const Size &rPixMapSize, - const USHORT nPixMapBits, - const BitmapPalette &rBitmapPalette - ) -{ - PixMapHandle hPixMap = NULL; - short nPixMapWidth = rPixMapSize.Width(); - short nPixMapHeight = rPixMapSize.Height(); - - if ( ( nPixMapWidth > 0 ) && ( nPixMapHeight > 0 ) ) - { - hPixMap = NewPixMap(); - - if ( ( hPixMap != NULL ) && ( *hPixMap != NULL ) ) - { - const long nPixMapBitDepth = GetPixMapBitDepth( nPixMapBits); - const long nPixMapRowOffset = GetPixMapOffset( nPixMapBitDepth, nPixMapWidth ); - const long nPixMapImageSize = GetPixMapImageSize( nPixMapHeight, nPixMapRowOffset ); - char *pPixMapData = NewPtrClear( nPixMapImageSize ); - - if ( pPixMapData != NULL ) - { - GWorldFlags nPixMapFlags = noErr; - - nPixMapFlags = GetPixelsState( hPixMap ); - - if ( nPixMapFlags == noErr ) - { - if ( LockPixels( hPixMap ) ) - { - const short nPixMapRowBytes = GetPixMapRowBytes( nPixMapRowOffset ); - const short nPixMapColorDepth = GetPixMapColorDepth( nPixMapBits ); - const short nPixMapCmpSize = GetPixMapCmpSize( nPixMapBitDepth ); - const short nPixMapCmpCount = GetPixMapCmpCount( nPixMapBitDepth ); - const short nPixMapPixelType = GetPixMapPixelType( nPixMapBitDepth ); - const OSType aPixMapPixelFormat = GetPixMapPixelFormat( ); - const Fixed aPixMapHRes = GetPixMapRes( kPixMapHRes ); - const Fixed aPixMapVRes = GetPixMapRes( kPixMapVRes ); - Rect aPixMapBoundsRect; - - GetPixMapBoudsRect( nPixMapWidth, nPixMapHeight, &aPixMapBoundsRect ); - - (**hPixMap).baseAddr = pPixMapData; // Pointer to pixels - (**hPixMap).rowBytes = nPixMapRowBytes; // Offset to next line - (**hPixMap).bounds = aPixMapBoundsRect; // Bounding bitmap rectangle - (**hPixMap).pmVersion = 0; // PixMap version number - (**hPixMap).packType = 0; // Defines packing format - (**hPixMap).packSize = 0; // Length of pixel data - (**hPixMap).hRes = aPixMapHRes; // Horizontal resolution (ppi) - (**hPixMap).vRes = aPixMapVRes; // Vertical resolution (ppi) - (**hPixMap).pixelType = nPixMapPixelType; // Defines pixel type - (**hPixMap).pixelSize = nPixMapBitDepth; // Number of bits in a pixel - (**hPixMap).cmpCount = nPixMapCmpCount; // Number of components in a pixel - (**hPixMap).cmpSize = nPixMapCmpSize; // Number of bits per component - (**hPixMap).pixelFormat = aPixMapPixelFormat; // Four character code representation - (**hPixMap).pmExt = NULL; // Handle to PixMap extension - - // Get the color table based on the desired screen depth - - (**hPixMap).pmTable = GetPixMapCTab( nPixMapBitDepth, - nPixMapColorDepth, - nPixMapCmpSize, - rBitmapPalette - ); - - SetPixelsState( hPixMap, nPixMapFlags ); - } // if - else - { - DisposePixMap( hPixMap ); - - hPixMap = NULL; - } // else - } // if - else - { - DisposePixMap( hPixMap ); - - hPixMap = NULL; - } // else - } // if - else - { - DisposePixMap( hPixMap ); - - hPixMap = NULL; - } // else - } // if - } // if - - return hPixMap; -} // GetNewPixMap - -// ======================================================================= - -// ======================================================================= - -PixMapHandle CopyPixMap ( PixMapHandle hPixMap ) -{ - PixMapHandle hPixMapCopy = NULL; - GWorldFlags nPixMapFlags = noErr; - - nPixMapFlags = GetPixelsState( hPixMap ); - - if ( nPixMapFlags == noErr ) - { - if ( LockPixels( hPixMap ) ) - { - const char *pPixMapData = (**hPixMap).baseAddr; - - if ( pPixMapData != NULL ) - { - hPixMapCopy = NewPixMap(); - - if ( ( hPixMapCopy != NULL ) - && ( *hPixMapCopy != NULL ) - ) - { - hPixMapCopy = NewPixMap(); - - if ( ( hPixMapCopy != NULL ) - && ( *hPixMapCopy != NULL ) - ) - { - const Rect aPixMapBoundsRect = (**hPixMap).bounds; - const long nPixMapBitDepth = (**hPixMap).pixelSize; - const long nPixMapWidth = GetPixMapWidth( &aPixMapBoundsRect ); - const long nPixMapHeight = GetPixMapHeight( &aPixMapBoundsRect ); - const long nPixMapRowOffset = GetPixMapOffset( nPixMapBitDepth, nPixMapWidth ); - const long nPixMapImageSize = GetPixMapImageSize( nPixMapHeight, nPixMapRowOffset ); - char *pPixMapDataCopy = NewPtrClear( nPixMapImageSize ); - - if ( pPixMapDataCopy != NULL ) - { - GWorldFlags nPixMapCopyFlags = noErr; - - nPixMapCopyFlags = GetPixelsState( hPixMapCopy ); - - if ( nPixMapCopyFlags == noErr ) - { - if ( LockPixels( hPixMapCopy ) ) - { - - BlockMoveData( pPixMapData, pPixMapDataCopy, nPixMapImageSize ); - - (**hPixMapCopy).rowBytes = (**hPixMap).rowBytes; // Offset to next line - (**hPixMapCopy).bounds = (**hPixMap).bounds; // Bounding bitmap rectangle - (**hPixMapCopy).pmVersion = (**hPixMap).pmVersion; // PixMap version number - (**hPixMapCopy).packType = (**hPixMap).packType; // Defines packing format - (**hPixMapCopy).packSize = (**hPixMap).packSize; // Length of pixel data - (**hPixMapCopy).hRes = (**hPixMap).hRes; // Horizontal resolution (ppi) - (**hPixMapCopy).vRes = (**hPixMap).vRes; // Vertical resolution (ppi) - (**hPixMapCopy).pixelType = (**hPixMap).pixelType; // Defines pixel type - (**hPixMapCopy).pixelSize = (**hPixMap).pixelSize; // Number of bits in a pixel - (**hPixMapCopy).cmpCount = (**hPixMap).cmpCount; // Number of components in a pixel - (**hPixMapCopy).cmpSize = (**hPixMap).cmpSize; // Number of bits per component - (**hPixMapCopy).pixelFormat = (**hPixMap).pixelFormat; // Four character code representation - (**hPixMapCopy).pmExt = (**hPixMap).pmExt; // Handle to PixMap extension - - // Copy the color table from the original port - - (**hPixMapCopy).pmTable = CopyPixMapCTab( hPixMap ); - - SetPixelsState( hPixMapCopy, nPixMapCopyFlags ); - } // if - else - { - DisposePixMap( hPixMapCopy ); - - hPixMapCopy = NULL; - } // else - } // if - else - { - DisposePixMap( hPixMapCopy ); - - hPixMapCopy = NULL; - } // else - } // if - else - { - DisposePixMap( hPixMapCopy ); - - hPixMapCopy = NULL; - } // else - } // if - } // if - } // if - - SetPixelsState( hPixMap, nPixMapFlags ); - } // if - } // if - - return hPixMapCopy; -} // CopyPixMap - -// ======================================================================= - -// ======================================================================= - -PixMapHandle GetCGrafPortPixMap ( const Size &rPixMapSize, - const USHORT nPixMapBits, - const BitmapPalette &rBitmapPalette, - const CGrafPtr pCGraf - ) -{ - PixMapHandle hNewPixMap = GetPortPixMap( pCGraf ); - - if ( hNewPixMap == NULL ) - { - hNewPixMap = GetNewPixMap( rPixMapSize, - nPixMapBits, - rBitmapPalette - ); - - if ( hNewPixMap == NULL ) - { - GDHandle hGDevice = GetGDevice( ); - - if ( ( hGDevice != NULL ) && ( *hGDevice != NULL ) ) - { - SInt8 nGDeviceFlags = noErr; - - nGDeviceFlags = HGetState( (Handle)hGDevice ); - - if ( nGDeviceFlags == noErr ) - { - PixMapHandle hPixMap = NULL; - - HLock( (Handle)hGDevice ); - - hPixMap = (**hGDevice).gdPMap; - - if ( ( hPixMap != NULL ) && ( *hPixMap != NULL ) ) - { - hNewPixMap = CopyPixMap( hPixMap ); - } // if - - HSetState( (Handle)hGDevice, nGDeviceFlags ); - } //if - } // if - } // if - } // if - - return hNewPixMap; -} // GetCGrafPortPixMap - -// ======================================================================= - -// ======================================================================= diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salprn.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salprn.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salprn.cxx 2006-09-17 13:45:29.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salprn.cxx 2006-10-13 23:56:07.000000000 +0200 @@ -45,78 +45,81 @@ #ifndef _SV_SALPRN_HXX #include #endif +#ifndef _SV_SALPRN_H +#include +#endif // ======================================================================= -SalInfoPrinter::SalInfoPrinter() +AquaSalInfoPrinter::AquaSalInfoPrinter() { } // ----------------------------------------------------------------------- -SalInfoPrinter::~SalInfoPrinter() +AquaSalInfoPrinter::~AquaSalInfoPrinter() { } // ----------------------------------------------------------------------- -SalGraphics* SalInfoPrinter::GetGraphics() +SalGraphics* AquaSalInfoPrinter::GetGraphics() { return NULL; } // ----------------------------------------------------------------------- -void SalInfoPrinter::ReleaseGraphics( SalGraphics* ) +void AquaSalInfoPrinter::ReleaseGraphics( SalGraphics* ) { } // ----------------------------------------------------------------------- -BOOL SalInfoPrinter::Setup( SalFrame* pFrame, ImplJobSetup* pSetupData ) +BOOL AquaSalInfoPrinter::Setup( SalFrame* pFrame, ImplJobSetup* pSetupData ) { return FALSE; } // ----------------------------------------------------------------------- -BOOL SalInfoPrinter::SetPrinterData( ImplJobSetup* pSetupData ) +BOOL AquaSalInfoPrinter::SetPrinterData( ImplJobSetup* pSetupData ) { return FALSE; } // ----------------------------------------------------------------------- -BOOL SalInfoPrinter::SetData( ULONG nFlags, ImplJobSetup* pSetupData ) +BOOL AquaSalInfoPrinter::SetData( ULONG nFlags, ImplJobSetup* pSetupData ) { return FALSE; } // ----------------------------------------------------------------------- -ULONG SalInfoPrinter::GetPaperBinCount( const ImplJobSetup* pSetupData ) +ULONG AquaSalInfoPrinter::GetPaperBinCount( const ImplJobSetup* pSetupData ) { return 0; } // ----------------------------------------------------------------------- -XubString SalInfoPrinter::GetPaperBinName( const ImplJobSetup* pSetupData, ULONG nPaperBin ) +XubString AquaSalInfoPrinter::GetPaperBinName( const ImplJobSetup* pSetupData, ULONG nPaperBin ) { return XubString(); } // ----------------------------------------------------------------------- -ULONG SalInfoPrinter::GetCapabilities( const ImplJobSetup* pSetupData, USHORT nType ) +ULONG AquaSalInfoPrinter::GetCapabilities( const ImplJobSetup* pSetupData, USHORT nType ) { return 0; } // ----------------------------------------------------------------------- -void SalInfoPrinter::GetPageInfo( const ImplJobSetup*, +void AquaSalInfoPrinter::GetPageInfo( const ImplJobSetup*, long& rOutWidth, long& rOutHeight, long& rPageOffX, long& rPageOffY, long& rPageWidth, long& rPageHeight ) @@ -125,19 +128,19 @@ // ======================================================================= -SalPrinter::SalPrinter() +AquaSalPrinter::AquaSalPrinter() { } // ----------------------------------------------------------------------- -SalPrinter::~SalPrinter() +AquaSalPrinter::~AquaSalPrinter() { } // ----------------------------------------------------------------------- -BOOL SalPrinter::StartJob( const XubString* pFileName, +BOOL AquaSalPrinter::StartJob( const XubString* pFileName, const XubString& rJobName, const XubString&, ULONG nCopies, BOOL bCollate, @@ -148,35 +151,54 @@ // ----------------------------------------------------------------------- -BOOL SalPrinter::EndJob() +BOOL AquaSalPrinter::EndJob() { return TRUE; } // ----------------------------------------------------------------------- -BOOL SalPrinter::AbortJob() +BOOL AquaSalPrinter::AbortJob() { return TRUE; } // ----------------------------------------------------------------------- -SalGraphics* SalPrinter::StartPage( ImplJobSetup* pSetupData, BOOL bNewJobData ) +SalGraphics* AquaSalPrinter::StartPage( ImplJobSetup* pSetupData, BOOL bNewJobData ) { return NULL; } // ----------------------------------------------------------------------- -BOOL SalPrinter::EndPage() +BOOL AquaSalPrinter::EndPage() { return TRUE; } // ----------------------------------------------------------------------- -ULONG SalPrinter::GetErrorCode() +ULONG AquaSalPrinter::GetErrorCode() { return 0; } + +//////////////////////////// +////// IMPLEMENT US ///// +//////////////////////////// + +DuplexMode AquaSalInfoPrinter::GetDuplexMode( const ImplJobSetup* pSetupData ) +{ + return DUPLEX_UNKNOWN; +} + +void AquaSalInfoPrinter::InitPaperFormats( const ImplJobSetup* pSetupData ) +{ + +} + +int AquaSalInfoPrinter::GetLandscapeAngle( const ImplJobSetup* pSetupData ) +{ + return 0; +} \ No newline at end of file diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salrectangleutils.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salrectangleutils.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salrectangleutils.cxx 2006-09-17 13:45:50.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salrectangleutils.cxx 1970-01-01 01:00:00.000000000 +0100 @@ -1,147 +0,0 @@ -/************************************************************************* - * - * OpenOffice.org - a multi-platform office productivity suite - * - * $RCSfile$ - * - * $Revision$ - * - * last change: $Author$ $Date$ - * - * 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 - * - ************************************************************************/ - -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_vcl.hxx" - -#ifndef _SV_SALRECTANGLEUTILS_HXX - #include -#endif - -// ======================================================================= - -// ======================================================================= - -void CheckRectBounds ( const Rect *rPortBoundsRect, - Rect *rSrcRect, - Rect *rDstRect - ) -{ - if ( rSrcRect->top < rPortBoundsRect->top ) - { - rDstRect->top += (rPortBoundsRect->top - rSrcRect->top); - rSrcRect->top = rPortBoundsRect->top; - } // if - - if ( rSrcRect->left < rPortBoundsRect->left ) - { - rDstRect->left += (rPortBoundsRect->left - rSrcRect->left); - rSrcRect->left = rPortBoundsRect->left; - } // if - - if ( rSrcRect->bottom > rPortBoundsRect->bottom ) - { - - rDstRect->bottom += (rPortBoundsRect->bottom - rSrcRect->bottom); - rSrcRect->bottom = rPortBoundsRect->bottom; - } // if - - if ( rSrcRect->right > rPortBoundsRect->right ) - { - rDstRect->right += (rPortBoundsRect->right - rSrcRect->right); - rSrcRect->right = rPortBoundsRect->right; - } // if -} // CheckRectBounds - -// ======================================================================= - -// ======================================================================= - -void SalTwoRect2QDDstRect ( const SalTwoRect *pPosAry, - Rect *rDstRect - ) -{ - MacSetRect( rDstRect, - pPosAry->mnDestX, - pPosAry->mnDestY, - pPosAry->mnDestX + pPosAry->mnDestWidth, - pPosAry->mnDestY + pPosAry->mnDestHeight - ); -} // GetSalSourceRect - -// ----------------------------------------------------------------------- - -void SalTwoRect2QDSrcRect ( const SalTwoRect *pPosAry, - Rect *rSrcRect - ) -{ - MacSetRect( rSrcRect, - pPosAry->mnSrcX, - pPosAry->mnSrcY, - pPosAry->mnSrcX + pPosAry->mnSrcWidth, - pPosAry->mnSrcY + pPosAry->mnSrcHeight - ); -} // SalTwoRect2QDSrcRect - -// ======================================================================= - -// ======================================================================= - -void GetQDRect ( const long nX, - const long nY, - const long nWidth, - const long nHeight, - Rect *rRect - ) -{ - MacSetRect( rRect, nX, nY, nX + nWidth, nY + nHeight ); -} // GetQDRect - -// ----------------------------------------------------------------------- - -void GetTwoRectFromSalBmp( const SalBitmap &rSalBmp, - SalTwoRect *rTwoRect - ) -{ - const long nWidth = rSalBmp.GetSize().Width(); - const long nHeight = rSalBmp.GetSize().Height(); - - // Get size of graphics to copy from - - rTwoRect->mnSrcX = 0; - rTwoRect->mnDestX = 0; - rTwoRect->mnSrcY = 0; - rTwoRect->mnDestY = 0; - - rTwoRect->mnSrcWidth = nWidth; - rTwoRect->mnDestWidth = nWidth; - rTwoRect->mnSrcHeight = nHeight; - rTwoRect->mnDestHeight = nHeight; -} // GetTwoRectFromSalBmp - -// ======================================================================= - -// ======================================================================= - diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salvd.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salvd.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/gdi/salvd.cxx 2006-09-17 13:46:05.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/gdi/salvd.cxx 2007-03-08 13:53:31.000000000 +0100 @@ -37,230 +37,171 @@ #include "precompiled_vcl.hxx" #ifndef _SV_SALVD_HXX - #include +#include +#endif +#ifndef _SV_SALVD_H +#include +#endif +#ifndef _SV_SALINST_H +#include #endif -// ======================================================================= - -// ======================================================================= +// ----------------------------------------------------------------------- -static BOOL InitVirtualDeviceGWorld ( SalVirDevDataPtr rSalVirDevData ) +SalVirtualDevice* AquaSalInstance::CreateVirtualDevice( SalGraphics* pGraphics, + long nDX, long nDY, USHORT nBitCount, const SystemGraphicsData *pData ) { - BOOL bVirtualDeviceGWorldInited = FALSE; - - if ( ( rSalVirDevData != NULL ) - && ( rSalVirDevData->mpGraphics != NULL ) - ) - { - Rect aBoundsRect; - short nRectLeft = 0; - short nRectTop = 0; - short nRectRight = rSalVirDevData->mnWidth; - short nRectBottom = rSalVirDevData->mnHeight; - short nPixelDepth = rSalVirDevData->mnBitCount; - GWorldPtr pGWorld = NULL; - CTabHandle hCTable = NULL; - GDHandle hGDevice = NULL; - GWorldFlags nFlags = 0; // [ed] 12/1/01 Allow offscreen gworlds - OSStatus nOSStatus = noErr; - - // Set the dimensions of the GWorldPtr - - MacSetRect( &aBoundsRect, nRectLeft, nRectTop, nRectRight, nRectBottom ); - - // Create the offscreen graphics context - - nOSStatus = NewGWorld( &pGWorld, - nPixelDepth, - &aBoundsRect, - hCTable, - hGDevice, - nFlags - ); - - // If NewGWorld failed, try again with different flags - - if ( nOSStatus != noErr ) - { - nFlags = noErr; + return new AquaSalVirtualDevice( static_cast< AquaSalGraphics* >( pGraphics ), nDX, nDY, nBitCount, pData ); +} - nOSStatus = NewGWorld( &pGWorld, - nPixelDepth, - &aBoundsRect, - hCTable, - hGDevice, - nFlags - ); - } // if - - if ( ( nOSStatus == noErr ) - && ( pGWorld != NULL ) - ) - { - // Lock the virtual GWorld's port bits - - rSalVirDevData->mpGraphics->maGraphicsData.mnOSStatus - = LockPortBits( pGWorld ); - - if ( rSalVirDevData->mpGraphics->maGraphicsData.mnOSStatus == noErr ) - { - // Initialize the virtual graph port - - rSalVirDevData->mpGraphics->maGraphicsData.mpCGrafPort - = pGWorld; - - rSalVirDevData->mpGraphics->maGraphicsData.mpGWorld - = pGWorld; - - // Initialize virtual port's GWorld attributes - - rSalVirDevData->mpGraphics->maGraphicsData.mhGWorldPixMap - = GetGWorldPixMap( pGWorld ); - - // Unlock virtual GWorld's port bits - - UnlockPortBits( pGWorld ); - } // if - - // Initialize virtual port's GWorld attributes - - rSalVirDevData->mpGraphics->maGraphicsData.mbGWorldPixelsLocked = FALSE; - rSalVirDevData->mpGraphics->maGraphicsData.mbGWorldPixelsCopy = FALSE; - rSalVirDevData->mpGraphics->maGraphicsData.mbGWorldPixelsNew = FALSE; - rSalVirDevData->mpGraphics->maGraphicsData.mnGWorldFlags = noErr; - - // Initialize the virtual port's brush attributes - - rSalVirDevData->mpGraphics->maGraphicsData.mbBrushTransparent = FALSE; - rSalVirDevData->mpGraphics->maGraphicsData.maBrushColor = GetBlackColor( ); - - // Initialize the virtual port's font attributes - - rSalVirDevData->mpGraphics->maGraphicsData.maFontColor = GetBlackColor( ); - rSalVirDevData->mpGraphics->maGraphicsData.mnFontID = kFontIDGeneva; - rSalVirDevData->mpGraphics->maGraphicsData.mnFontSize = 10; - rSalVirDevData->mpGraphics->maGraphicsData.mnFontStyle = normal; - - // Initialize virtual port's clip regions - - rSalVirDevData->mpGraphics->maGraphicsData.mhClipRgn = NULL; - rSalVirDevData->mpGraphics->maGraphicsData.mbClipRgnChanged = FALSE; - - // Initilaize virtual port's status flags - - rSalVirDevData->mpGraphics->maGraphicsData.mbPrinter = FALSE; - rSalVirDevData->mpGraphics->maGraphicsData.mbVirDev = TRUE; - rSalVirDevData->mpGraphics->maGraphicsData.mbWindow = FALSE; - rSalVirDevData->mpGraphics->maGraphicsData.mbScreen = TRUE; - - bVirtualDeviceGWorldInited = TRUE; - } // if - } // if - - return bVirtualDeviceGWorldInited; -} //InitVirtualDeviceGWorld +// ----------------------------------------------------------------------- -// ======================================================================= +void AquaSalInstance::DestroyVirtualDevice( SalVirtualDevice* pDevice ) +{ + delete pDevice; +} // ======================================================================= -SalVirtualDevice::SalVirtualDevice() +AquaSalVirtualDevice::AquaSalVirtualDevice( AquaSalGraphics* pGraphic, long nDX, long nDY, USHORT nBitCount, const SystemGraphicsData *pData ) +: mbGraphicsUsed( false ), + mxContext( 0 ) { - maVirDevData.mpGraphics = NULL; - maVirDevData.mnBitCount = 0; - maVirDevData.mnWidth = 0; - maVirDevData.mnHeight = 0; - maVirDevData.mbGraphics = FALSE; -} // Constructor + if( pGraphic && pData && pData->rCGContext) + { + // Create virtual device based on existing SystemGraphicsData + // We ignore nDx and nDY, as the desired size comes from the SystemGraphicsData + mxContext = pData->rCGContext; + mbForeignContext = true; // the mxContext is from pData + mpGraphics = pGraphic; + mpGraphics->SetVirDevGraphics( mxContext, true ); + + fprintf(stderr, "vcl::AquaSalVirtualDevice::%s(): Created virtual device based on existing SystemGraphicsData w:%ld h:%ld b:\n", __func__,CGBitmapContextGetWidth(mxContext),CGBitmapContextGetHeight(mxContext)); + } + else + { + // create empty new virtual device + + //fprintf(stderr, "vcl::AquaSalVirtualDevice::%s(): Creating empty virtual device\n", __func__); + mbForeignContext = false; // the mxContext is created within VCL + mpGraphics = new AquaSalGraphics(); // never fails + + if( nDX && nDY ) + SetSize( nDX, nDY ); + + // NOTE: if SetSize does not succeed, we just ignore the nDX and nDY + } +} // ----------------------------------------------------------------------- -SalVirtualDevice::~SalVirtualDevice() +AquaSalVirtualDevice::~AquaSalVirtualDevice() { - if ( maVirDevData.mpGraphics != NULL ) + if( mpGraphics ) { - // Delete exisiting clip regions, offscreen graphic world, - // and its associated colour graph port - - delete maVirDevData.mpGraphics; - } // if -} // Destructor + mpGraphics->SetVirDevGraphics( 0, true ); + delete mpGraphics; + mpGraphics = 0; + } + Destroy(); +} // ----------------------------------------------------------------------- -SalGraphics* SalVirtualDevice::GetGraphics() +void AquaSalVirtualDevice::Destroy() { - if ( maVirDevData.mbGraphics ) - { - return NULL; - } // if - - if ( !maVirDevData.mpGraphics ) - { - maVirDevData.mpGraphics = new SalGraphics; - - maVirDevData.mbGraphics = InitVirtualDeviceGWorld( &maVirDevData ); + if( mbForeignContext ) { + // Do not delete mxContext that we have received from outside VCL + return; + } + + if( mxContext ) + { + if( mpGraphics ) + mpGraphics->SetVirDevGraphics( 0, true ); + void* pBuffer = CGBitmapContextGetData(mxContext); + CFRelease( mxContext ); + mxContext = 0; + if( pBuffer ) + free( pBuffer ); + } +} +// ----------------------------------------------------------------------- - if ( !maVirDevData.mbGraphics ) - { - delete maVirDevData.mpGraphics; - maVirDevData.mpGraphics = NULL; - } // if - } // if +SalGraphics* AquaSalVirtualDevice::GetGraphics() +{ + if( mbGraphicsUsed || !mpGraphics ) + return 0; - return maVirDevData.mpGraphics; -} // SalVirtualDevice::GetGraphics + mbGraphicsUsed = true; + return mpGraphics; +} // ----------------------------------------------------------------------- -void SalVirtualDevice::ReleaseGraphics( SalGraphics *pGraphics ) +void AquaSalVirtualDevice::ReleaseGraphics( SalGraphics *pGraphics ) { - maVirDevData.mbGraphics = FALSE; -} // SalVirtualDevice::ReleaseGraphics + mbGraphicsUsed = false; +} // ----------------------------------------------------------------------- -BOOL SalVirtualDevice::SetSize( long nDX, long nDY ) +BOOL AquaSalVirtualDevice::SetSize( long nDX, long nDY ) { - BOOL bSizeSet = FALSE; - - // If we have already created a graphics context, dispose of it, - // by deleting exisiting clip regions, offscreen graphic worlds, - // and its associated colour graph port - - if ( ( ( maVirDevData.mpGraphics->maGraphicsData.mbGWorldPixelsCopy == TRUE ) - || ( maVirDevData.mpGraphics->maGraphicsData.mbGWorldPixelsNew == TRUE ) - ) - && ( maVirDevData.mpGraphics->maGraphicsData.mhGWorldPixMap != NULL ) - ) - { - DisposePixMap( maVirDevData.mpGraphics->maGraphicsData.mhGWorldPixMap ); - } // if - - if ( maVirDevData.mpGraphics->maGraphicsData.mhClipRgn != NULL ) - { - DisposeRgn( maVirDevData.mpGraphics->maGraphicsData.mhClipRgn ); - } // if + if( mbForeignContext ) + { + // Do not delete/resize mxContext that we have received from outside VCL + return true; + } + + if( mxContext && + ( nDX == static_cast (CGBitmapContextGetWidth( mxContext ) ) ) && + ( nDY == static_cast (CGBitmapContextGetHeight( mxContext ) ) ) ) + { + // Yay, we do not have to do anything :) + return true; + } + + Destroy(); + + void* pData = malloc( nDX * 4 * nDY ); + if (pData) + { + CGColorSpaceRef xColorSpace( CGColorSpaceCreateWithName(kCGColorSpaceGenericRGB) ); + mxContext = CGBitmapContextCreate( pData, nDX, nDY, 8, nDX * 4, xColorSpace, kCGImageAlphaNoneSkipFirst ); + CFRelease( xColorSpace ); - if ( maVirDevData.mpGraphics->maGraphicsData.mpCGrafPort != NULL ) + if( mxContext ) + { + if( mpGraphics ) + mpGraphics->SetVirDevGraphics( mxContext, true ); + } + else + { + free (pData); + DBG_ERROR( "vcl::AquaSalVirtualDevice::SetSize(), could not create Bitmap Context" ); + } + } + else { - DisposeGWorld( maVirDevData.mpGraphics->maGraphicsData.mpCGrafPort ); - - maVirDevData.mpGraphics->maGraphicsData.mpGWorld = NULL; - maVirDevData.mpGraphics->maGraphicsData.mpCGrafPort = NULL; - } // if - - // Create the offscreen graphics context - - maVirDevData.mnWidth = nDX; - maVirDevData.mnHeight = nDY; + DBG_ERROR( "vcl::AquaSalVirtualDevice::SetSize(), could not allocate bitmap data" ); + } - bSizeSet = InitVirtualDeviceGWorld( &maVirDevData ); - - return bSizeSet; -} // SalVirtualDevice::SetSize - -// ======================================================================= + return mxContext != 0; +} -// ======================================================================= +// ----------------------------------------------------------------------- +void AquaSalVirtualDevice::GetSize( long& rWidth, long& rHeight ) +{ + if( mxContext ) + { + rWidth = CGBitmapContextGetWidth( mxContext ); + rHeight = CGBitmapContextGetHeight( mxContext ); + } + else + { + rWidth = 0; + rHeight = 0; + } +} diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/window/makefile.mk ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/window/makefile.mk --- ooo_SRC680_m202_src.orig/vcl/aqua/source/window/makefile.mk 2005-09-09 12:45:06.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/window/makefile.mk 2006-08-07 20:52:43.000000000 +0200 @@ -59,9 +59,8 @@ SLOFILES= \ $(SLO)/salframe.obj \ - $(SLO)/salobj.obj \ - $(SLO)/VCLView.obj \ - $(SLO)/VCLWindow.obj + $(SLO)/salmenu.obj \ + $(SLO)/salobj.obj .ENDIF # "$(GUIBASE)"!="aqua" diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/window/salframe.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/window/salframe.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/window/salframe.cxx 2006-10-06 11:56:27.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/window/salframe.cxx 2007-03-18 13:17:15.000000000 +0100 @@ -44,319 +44,2050 @@ #ifndef _SV_SALGDI_HXX #include #endif -#ifndef _SV_SALFRAME_HXX -#include +#ifndef _SV_SALGDI_H +#include #endif -#ifndef _SV_VCLWINDOW_H -#include +#ifndef _SV_SALFRAME_H +#include #endif -#ifndef _SV_VCLGRAPHICS_H -#include +#ifndef _SV_SALMENU_H +#include #endif +#ifndef _SV_SALTIMER_H +#include +#endif +#ifndef _SV_SALINST_H +#include +#endif +#ifndef _SV_SALWTYPE_HXX +#include +#endif + +#include + +#include +#include + +using namespace std; // ======================================================================= + +static void ImplSalCalcFullScreenSize( const AquaSalFrame* pFrame, Rect* pSize ) +{ + /** FIXME ** + * Implement multiple displays here. That's why a pointer + * to frame is passed. But pointer not currently used. + **/ + CGDirectDisplayID mainDisplayID = CGMainDisplayID(); + printf("Display ID %p\n", mainDisplayID); -static long ImplSalFrameCallbackDummy( void*, SalFrame*, USHORT, const void* ) -{ - return 0; + CGRect rect; + rect = CGDisplayBounds( mainDisplayID ); + printf( "Screen resolution: %.0fx%.0f\n", rect.size.width, rect.size.height ); + + // Stores current resolution in pSize. + // Rect made out of ints -> cast required -> CGRect made out of floats. + pSize->top = 0; + pSize->left = 0; + pSize->bottom = static_cast(rect.size.height); + pSize->right = static_cast(rect.size.width); } // ======================================================================= -SalFrame::SalFrame() -{ - SalData* pSalData = GetSalData(); - - maFrameData.mhWnd = NULL; - maFrameData.mpGraphics = NULL; - maFrameData.mpInst = NULL; - maFrameData.mpProc = ImplSalFrameCallbackDummy; - maFrameData.mnWidth = 0; - maFrameData.mnHeight = 0; - maFrameData.mbGraphics = FALSE; +AquaSalFrame::AquaSalFrame() : + mrWindow(NULL), + mpGraphics(NULL), + mpParent(NULL), + mpInst(NULL), + mnWidth(0), + mnHeight(0), + mnMinWidth(0), + mnMinHeight(0), + mnMaxWidth(0), + mnMaxHeight(0), + mbGraphics(FALSE), + maTsmDocumentId(0), + mpMenu(NULL) +{ + maSysData.nSize = sizeof( SystemEnvData ); + + fprintf(stderr, ">*>_> %s\n",__func__); + InsertThisIntoFrameList(); +} + +AquaSalFrame::AquaSalFrame(SalFrame* pParent, ULONG salFrameStyle, AquaSalInstance* pSalInstance) : + mpGraphics(NULL), + mpParent(NULL), + mpInst(NULL), + mnWidth(0), + mnHeight(0), + mnMinWidth(0), + mnMinHeight(0), + mnMaxWidth(0), + mnMaxHeight(0), + mbGraphics(FALSE), + mpSalInstance(pSalInstance), + maTsmDocumentId(0), + mpMenu(NULL) +{ + maSysData.nSize = sizeof( SystemEnvData ); + + InsertThisIntoFrameList(); + mpParent = dynamic_cast(pParent); +// FIXME: pFrame is not defined in this scope... +// BOOST_ASSERT((pParent && pFrame->mpParent) || (pParent == NULL) && "Parent frame is no AquaSalFrame!"); + CreateNewSystemWindow(mpParent ? mpParent->mrWindow : NULL, salFrameStyle); +} - // insert frame in framelist - maFrameData.mpNextFrame = pSalData->mpFirstFrame; +void AquaSalFrame::InsertThisIntoFrameList() +{ + SalData* pSalData = GetSalData(); + mpNextFrame = dynamic_cast(pSalData->mpFirstFrame); pSalData->mpFirstFrame = this; } -// ----------------------------------------------------------------------- - -SalFrame::~SalFrame() +void AquaSalFrame::RemoveThisFromFrameList() { SalData* pSalData = GetSalData(); - if ( maFrameData.mpGraphics ) - delete maFrameData.mpGraphics; - - if ( maFrameData.mhWnd ) - VCLWindow_Release( maFrameData.mhWnd ); - - // remove frame from framelist - if ( this == pSalData->mpFirstFrame ) - pSalData->mpFirstFrame = maFrameData.mpNextFrame; + if (this == pSalData->mpFirstFrame) + pSalData->mpFirstFrame = mpNextFrame; else { - SalFrame* pTempFrame = pSalData->mpFirstFrame; - while ( pTempFrame->maFrameData.mpNextFrame != this ) - pTempFrame = pTempFrame->maFrameData.mpNextFrame; + AquaSalFrame* pTempFrame = (AquaSalFrame*)pSalData->mpFirstFrame; + while (pTempFrame->mpNextFrame != this) + pTempFrame = (AquaSalFrame*)pTempFrame->mpNextFrame; - pTempFrame->maFrameData.mpNextFrame = maFrameData.mpNextFrame; + pTempFrame->mpNextFrame = mpNextFrame; } } // ----------------------------------------------------------------------- -SalGraphics* SalFrame::GetGraphics() +AquaSalFrame::~AquaSalFrame() { - if ( maFrameData.mbGraphics ) + fprintf(stderr, ">*>_> %s\n",__func__); + + if ( mpGraphics ) + delete mpGraphics; + + if (mrWindow) + { + HideWindow(mrWindow); + DeinstallAndUnregisterAllEventHandler(); + ReleaseWindow(mrWindow); + } + + if (maTsmDocumentId) + DeleteTSMDocument(maTsmDocumentId); + + RemoveThisFromFrameList(); +} + +// ----------------------------------------------------------------------- + +SalGraphics* AquaSalFrame::GetGraphics() +{ + if ( mbGraphics ) return NULL; - if ( !maFrameData.mpGraphics ) + if ( !mpGraphics ) { - VCLVIEW hView = NULL; - SalFrame *pFrame = this; + CarbonViewRef hView = NULL; + AquaSalFrame *pFrame = this; // Search for the parent SalFrame that has a native window and // use that window to get an NSView - while ( !pFrame->maFrameData.mhWnd ) { - pFrame = pFrame->maFrameData.mpParent; + + while ( !pFrame->mrWindow ) { + pFrame = (AquaSalFrame*)pFrame->mpParent; if ( !pFrame ) break; } - hView = VCLWindow_ContentView( pFrame->maFrameData.mhWnd ); - if ( hView ) + // create root control if it does not exist + // however, this is currently not used + OSErr errval = GetRootControl( pFrame->mrWindow, &hView ); + if( errval == errNoRootControl ) + errval = CreateRootControl( pFrame->mrWindow, &hView ); + + if( errval == noErr ) { - maFrameData.mpGraphics = new SalGraphics; - maFrameData.mpGraphics->maGraphicsData.mhDC = hView; - maFrameData.mpGraphics->maGraphicsData.mbPrinter = FALSE; - maFrameData.mpGraphics->maGraphicsData.mbVirDev = FALSE; - maFrameData.mpGraphics->maGraphicsData.mbWindow = TRUE; - maFrameData.mpGraphics->maGraphicsData.mbScreen = TRUE; + mpGraphics = new AquaSalGraphics; + mpGraphics->SetWindowGraphics( hView, mrWindow, true ); + mbGraphics = TRUE; } + else + fprintf(stderr, "could not get graphics (get/create root control returned %d)\n", errval); } - maFrameData.mbGraphics = TRUE; - - return maFrameData.mpGraphics; + return mpGraphics; } // ----------------------------------------------------------------------- -void SalFrame::ReleaseGraphics( SalGraphics *pGraphics ) +void AquaSalFrame::ReleaseGraphics( SalGraphics *pGraphics ) { - maFrameData.mbGraphics = FALSE; + fprintf(stderr, ">*>_> %s\n",__func__); + mbGraphics = FALSE; } // ----------------------------------------------------------------------- -BOOL SalFrame::PostEvent( void *pData ) +BOOL AquaSalFrame::ImplPostUserEvent( UInt32 eventKind, void *pData ) { - VCLWINDOW hWindow = NULL; - SalFrame *pFrame = this; - + //fprintf(stderr, "implpost user event\n"); + // Search for the parent SalFrame that has a native window and // use that window to post the event to - while ( !pFrame->maFrameData.mhWnd ) { - pFrame = pFrame->maFrameData.mpParent; - if ( !pFrame ) + AquaSalFrame *pFrame = this; + while (!pFrame->mrWindow) + { + pFrame = pFrame->mpParent; + if (!pFrame) break; } - return VCLWindow_PostEvent( pFrame->maFrameData.mhWnd, pData ); + + bool bret = false; + + if (pFrame) + { + EventRef eventRef; + if (CreateEvent(NULL, cOOoSalUserEventClass, eventKind, 0, kEventAttributeNone, &eventRef) == noErr) + { + EventTargetRef eventTargetRef = GetWindowEventTarget(pFrame->mrWindow); + if (SetEventParameter(eventRef, kEventParamPostTarget, typeEventTargetRef, sizeof(EventTargetRef), &eventTargetRef) == noErr && + SetEventParameter(eventRef, cOOoSalEventData, cOOoSalEventParamTypePtr, sizeof(pData), &pData) == noErr && + PostEventToQueue(GetMainEventQueue(), eventRef, kEventPriorityStandard) == noErr) + { + bret = true; + } + ReleaseEvent(eventRef); + } + } + return bret; } -// ----------------------------------------------------------------------- +BOOL AquaSalFrame::PostEvent( void *pData ) +{ + fprintf(stderr, ">*>_> %s\n",__func__); + return ImplPostUserEvent( cOOoSalEventUser, pData ); +} -void SalFrame::SetTitle( const XubString& rTitle ) +BOOL AquaSalFrame::PostTimerEvent( AquaSalTimer *pTimer ) { - ByteString aByteTitle( rTitle, gsl_getSystemTextEncoding() ); - char *pTitle = (char *)aByteTitle.GetBuffer(); + //fprintf(stderr, ">*>_> %s\n",__func__); + return ImplPostUserEvent( cOOoSalEventTimer, (void*) pTimer ); +} - if ( maFrameData.mhWnd ) - VCLWindow_SetTitle( maFrameData.mhWnd, pTitle ); +// ----------------------------------------------------------------------- +void AquaSalFrame::SetTitle(const XubString& rTitle) +{ + BOOST_ASSERT(mrWindow && "Precondition violated, no window associated with frame"); + ByteString aByteTitle(rTitle, gsl_getSystemTextEncoding()); + char *pTitle = (char *)aByteTitle.GetBuffer(); + CFStringRef pString = CFStringCreateWithCString(kCFAllocatorDefault,pTitle,kCFStringEncodingUTF8); + SetWindowTitleWithCFString(mrWindow, pString); + if (pString) + CFRelease(pString); } // ----------------------------------------------------------------------- -void SalFrame::SetIcon( USHORT nIcon ) +void AquaSalFrame::SetIcon( USHORT nIcon ) { + fprintf(stderr, ">*>_> %s\n",__func__); } // ----------------------------------------------------------------------- -void SalFrame::Show( BOOL bVisible ) +void AquaSalFrame::Show(BOOL bVisible, BOOL bNoActivate) { - if ( bVisible ) - { - if ( maFrameData.mhWnd ) - VCLWindow_Show( maFrameData.mhWnd ); - } // if - else - { - if ( maFrameData.mhWnd ) - { - VCLWindow_Close( maFrameData.mhWnd ); - if ( maFrameData.mpParent ) - maFrameData.mpParent->Show( TRUE ); - } - } // else -} // SalFrame::Show + BOOST_ASSERT(mrWindow && "Precondition violation - no window associated with frame yet"); + + fprintf(stderr, ">*>_> %s\n",__func__); + + if(bVisible) + { + ShowWindow(mrWindow); + if(!bNoActivate) + SelectWindow(mrWindow); //ActivateWindow(mrWindow, true); + + // FIXME: create empty menu bar for SalFrame without menu yet! + if (!mpMenu) + mpMenu = mpSalInstance->CreateMenu(TRUE); + + if (mpMenu) + { + AquaSalMenu *pAquaSalMenu = (AquaSalMenu *) mpMenu; + SetRootMenu(pAquaSalMenu->mrMenuRef); + } + } + else + HideWindow(mrWindow); +} // ----------------------------------------------------------------------- -void SalFrame::Enable( BOOL bEnable ) +void AquaSalFrame::Enable( BOOL bEnable ) { + fprintf(stderr, ">*>_> %s\n",__func__); } // ----------------------------------------------------------------------- -void SalFrame::SetMinClientSize( long nWidth, long nHeight ) +void AquaSalFrame::SetMinClientSize( long nWidth, long nHeight ) { + fprintf(stderr, ">*>_> %s\n",__func__); + mnMinWidth = nWidth; + mnMinHeight = nHeight; } // ----------------------------------------------------------------------- -void SalFrame::SetClientSize( long nWidth, long nHeight ) +void AquaSalFrame::SetClientSize( long nWidth, long nHeight ) { - maFrameData.mnWidth = nWidth; - maFrameData.mnHeight = nHeight; + fprintf(stderr, ">*>_> %s\n",__func__); + mnWidth = nWidth; + mnHeight = nHeight; // If this is a native window, resize it - if ( maFrameData.mhWnd ) - VCLWindow_SetSize( maFrameData.mhWnd, nWidth, nHeight ); + if ( mrWindow ) + { + Rect bounds; + GetWindowBounds( mrWindow, kWindowContentRgn, &bounds ); + bounds.right = bounds.left + nWidth; + bounds.bottom = bounds.top + nHeight; + SetWindowBounds( mrWindow, kWindowContentRgn, &bounds ); + } } // ----------------------------------------------------------------------- -void SalFrame::GetClientSize( long& rWidth, long& rHeight ) +void AquaSalFrame::GetClientSize( long& rWidth, long& rHeight ) { - rWidth = maFrameData.mnWidth; - rHeight = maFrameData.mnHeight; + fprintf(stderr, ">*>_> %s\n",__func__); + rWidth = mnWidth; + rHeight = mnHeight; } // ----------------------------------------------------------------------- -void SalFrame::SetWindowState( const SalFrameState* pState ) +void AquaSalFrame::SetWindowState( const SalFrameState* pState ) { + fprintf(stderr, ">*>_> %s\n",__func__); } // ----------------------------------------------------------------------- -BOOL SalFrame::GetWindowState( SalFrameState* pState ) +BOOL AquaSalFrame::GetWindowState( SalFrameState* pState ) { + fprintf(stderr, ">*>_> %s\n",__func__); return FALSE; } // ----------------------------------------------------------------------- -void SalFrame::ShowFullScreen( BOOL /* bFullScreen */, sal_Int32 /* nDisplay */ ) +void AquaSalFrame::ShowFullScreen( BOOL bFullScreen, sal_Int32 /* nDisplay */ ) { + fprintf(stderr, ">*>_> %s\n",__func__); + + if( mbFullScreen == bFullScreen ) + return; + + mbFullScreen = bFullScreen; + AquaSalFrame* pFrame = this; + if( bFullScreen ) + { + Rect newBounds; + ImplSalCalcFullScreenSize( pFrame, &newBounds ); // Get new bounds + GetWindowAttributes( mrWindow, &maFullScreenAttr ); // Save attributes + ChangeWindowAttributes( mrWindow, kWindowNoAttributes, maFullScreenAttr ); + GetWindowBounds( mrWindow, kWindowContentRgn, &maFullScreenRect ); + SetWindowBounds( mrWindow, kWindowContentRgn, &newBounds ); + SetSystemUIMode( kUIModeAllHidden, kUIOptionAutoShowMenuBar ); + // -> Shows menubar when we move the mouse over it. + } + else + { + SetWindowBounds( mrWindow, kWindowContentRgn, &maFullScreenRect ); + ChangeWindowAttributes( mrWindow, maFullScreenAttr, kWindowNoAttributes ); + SetSystemUIMode( kUIModeNormal, nil ); + } } // ----------------------------------------------------------------------- -void SalFrame::StartPresentation( BOOL bStart ) +void AquaSalFrame::StartPresentation( BOOL bStart ) { + fprintf(stderr, ">*>_> %s\n",__func__); } // ----------------------------------------------------------------------- -void SalFrame::SetAlwaysOnTop( BOOL bOnTop ) +void AquaSalFrame::SetAlwaysOnTop( BOOL bOnTop ) { + fprintf(stderr, ">*>_> %s\n",__func__); } // ----------------------------------------------------------------------- -void SalFrame::ToTop( USHORT nFlags ) +void AquaSalFrame::ToTop(USHORT nFlags) { - if ( maFrameData.mhWnd ) - VCLWindow_Show( maFrameData.mhWnd ); + fprintf(stderr, ">*>_> %s\n",__func__); + BOOST_ASSERT(mrWindow && "Precondition violation - no window associated with frame yet"); + Show(true, false); } // ----------------------------------------------------------------------- -void SalFrame::SetPointer( PointerStyle ePointerStyle ) +void AquaSalFrame::SetPointer( PointerStyle ePointerStyle ) { + fprintf(stderr, ">*>_> %s\n",__func__); } // ----------------------------------------------------------------------- -void SalFrame::CaptureMouse( BOOL bCapture ) +void AquaSalFrame::CaptureMouse( BOOL bCapture ) { + fprintf(stderr, ">*>_> %s\n",__func__); } // ----------------------------------------------------------------------- -void SalFrame::SetPointerPos( long nX, long nY ) +void AquaSalFrame::SetPointerPos( long nX, long nY ) { + fprintf(stderr, ">*>_> %s\n",__func__); } // ----------------------------------------------------------------------- -void SalFrame::Flush() +void AquaSalFrame::Flush() { + fprintf(stderr, ">*>_> %s\n",__func__); } // ----------------------------------------------------------------------- -void SalFrame::Sync() +void AquaSalFrame::Sync() { + fprintf(stderr, ">*>_> %s\n",__func__); } // ----------------------------------------------------------------------- -void SalFrame::SetInputContext( SalInputContext* pContext ) +void AquaSalFrame::SetInputContext( SalInputContext* pContext ) { + fprintf(stderr, ">*>_> %s\n",__func__); + + if (!pContext) + return; + + if(!(pContext->mnOptions & SAL_INPUTCONTEXT_TEXT)) + return; + + // create a new im context + if (!maTsmDocumentId) + { + InterfaceTypeList typeList; + typeList[0] = kUnicodeDocumentInterfaceType; + + NewTSMDocument(1, typeList, &maTsmDocumentId, (long)pContext); + fprintf(stderr, "create NewTSMDocument\n"); + ActivateTSM(); + } } // ----------------------------------------------------------------------- -void SalFrame::EndExtTextInput( USHORT nFlags ) +void AquaSalFrame::EndExtTextInput( USHORT nFlags ) { + fprintf(stderr, ">*>_> %s\n",__func__); } // ----------------------------------------------------------------------- -XubString SalFrame::GetKeyName( USHORT nKeyCode ) +XubString AquaSalFrame::GetKeyName( USHORT nKeyCode ) { + fprintf(stderr, ">*>_> %s\n",__func__); return XubString(); } // ----------------------------------------------------------------------- -XubString SalFrame::GetSymbolKeyName( const XubString&, USHORT nKeyCode ) +XubString AquaSalFrame::GetSymbolKeyName( const XubString&, USHORT nKeyCode ) { + fprintf(stderr, ">*>_> %s\n",__func__); return GetKeyName( nKeyCode ); } // ----------------------------------------------------------------------- -void SalFrame::UpdateSettings( AllSettings& rSettings ) +void AquaSalFrame::UpdateSettings( AllSettings& rSettings ) { + StyleSettings aStyleSettings = rSettings.GetStyleSettings(); + + // Query Fonts + Font aMenuFont = aStyleSettings.GetMenuFont(); + Font aTitleFont = aStyleSettings.GetTitleFont(); + Font aFloatTitleFont = aStyleSettings.GetFloatTitleFont(); + Font aHelpFont = aStyleSettings.GetHelpFont(); + Font aAppFont = aStyleSettings.GetAppFont(); + Font aIconFont = aStyleSettings.GetIconFont(); + + // TODO: read correct facename and size from system + aMenuFont.SetSize( Size(0, 13) ); + aAppFont.SetSize( Size(0, 13) ); + + aStyleSettings.SetMenuFont( aMenuFont ); + aStyleSettings.SetTitleFont( aTitleFont ); + aStyleSettings.SetFloatTitleFont( aFloatTitleFont ); + aStyleSettings.SetHelpFont( aHelpFont ); + aStyleSettings.SetIconFont( aIconFont ); + aStyleSettings.SetAppFont( aAppFont ); + aStyleSettings.SetGroupFont( aAppFont ); + aStyleSettings.SetLabelFont( aAppFont ); + aStyleSettings.SetRadioCheckFont( aAppFont ); + aStyleSettings.SetPushButtonFont( aAppFont ); + aStyleSettings.SetFieldFont( aAppFont ); + aStyleSettings.SetInfoFont( aAppFont ); + aStyleSettings.SetToolFont( aAppFont ); + + aStyleSettings.SetCursorBlinkTime( 500 ); + + rSettings.SetStyleSettings( aStyleSettings ); } // ----------------------------------------------------------------------- -const SystemEnvData* SalFrame::GetSystemData() const +const SystemEnvData* AquaSalFrame::GetSystemData() const { - return NULL; + fprintf(stderr, ">*>_> %s\n",__func__); + return &maSysData; } // ----------------------------------------------------------------------- -void SalFrame::Beep( SoundType eSoundType ) +void AquaSalFrame::Beep( SoundType eSoundType ) { - VCLWindow_Beep(); + SysBeep(1); } // ----------------------------------------------------------------------- -void SalFrame::SetCallback( void* pInst, SALFRAMEPROC pProc ) +void AquaSalFrame::SetPosSize(long nX, long nY, long nWidth, long nHeight, USHORT nFlags) { - maFrameData.mpInst = pInst; - if ( pProc ) - maFrameData.mpProc = pProc; - else - maFrameData.mpProc = ImplSalFrameCallbackDummy; + /* + fprintf(stderr, "SetPosSize: nX: %d nY: %d nWidth: %d nHeight: %d, set_x: %s, set_y: %s, set_width: %s, set_height: %s\n", + nX, nY, nWidth, nHeight, + (nFlags&SAL_FRAME_POSSIZE_X) ? "yes" : "no", + (nFlags&SAL_FRAME_POSSIZE_Y) ? "yes" : "no", + (nFlags&SAL_FRAME_POSSIZE_WIDTH) ? "yes" : "no", + (nFlags&SAL_FRAME_POSSIZE_HEIGHT) ? "yes" : "no" ); + + fprintf(stderr, "maGeometry: left: %d top: %d right: %d bottom: %d\n", + maGeometry.nLeftDecoration, maGeometry.nTopDecoration, + maGeometry.nRightDecoration, maGeometry.nBottomDecoration ); + */ + USHORT nEvent = 0; + + if (IsWindowCollapsed(mrWindow)) + CollapseWindow(mrWindow, false); // expand the window + + if (nFlags & (SAL_FRAME_POSSIZE_X | SAL_FRAME_POSSIZE_Y)) + nEvent = SALEVENT_MOVE; + + if (nFlags & (SAL_FRAME_POSSIZE_WIDTH | SAL_FRAME_POSSIZE_HEIGHT)) + nEvent = (nEvent == SALEVENT_MOVE) ? SALEVENT_MOVERESIZE : SALEVENT_RESIZE; + + Rect currentWindowRect; + GetWindowBounds(mrWindow, kWindowStructureRgn, ¤tWindowRect); + + Rect currentContentRect; + GetWindowBounds(mrWindow, kWindowContentRgn, ¤tContentRect); + + // position is always relative to parent frame + Rect parentContentRect; + + if( mpParent ) + GetWindowBounds(mpParent->mrWindow, kWindowContentRgn, &parentContentRect); + else + ImplSalCalcFullScreenSize( this, &parentContentRect); // use screen if no parent + + // use old window pos if no new pos requested + if (!(nFlags & SAL_FRAME_POSSIZE_X)) + nX = currentWindowRect.left; + else + nX += parentContentRect.left; + + if (!(nFlags & SAL_FRAME_POSSIZE_Y)) + nY = currentWindowRect.top; + else + nY += parentContentRect.top; + + // use old window width if no new width requested + if (!(nFlags & SAL_FRAME_POSSIZE_WIDTH)) + nWidth = currentContentRect.right - currentContentRect.left; + + // always add the decoration as nWidth concerns only the content rect + nWidth += maGeometry.nLeftDecoration + maGeometry.nRightDecoration; + + // use old window height if no new height requested + if (!(nFlags & SAL_FRAME_POSSIZE_HEIGHT)) + nHeight = currentContentRect.bottom - currentContentRect.top; + + // always add the decoration as nHeight concerns only the content rect + nHeight += maGeometry.nTopDecoration + maGeometry.nBottomDecoration; + + Rect newWindowRect; + + newWindowRect.left = nX; + newWindowRect.top = nY; + newWindowRect.right = nX + nWidth; + newWindowRect.bottom = nY + nHeight; + + /* + fprintf(stderr, "SetPosSize: Old rect (x: %d, y: %d, w: %d, h: %d)\n", + currentWindowRect.left, currentWindowRect.top, currentWindowRect.right - currentWindowRect.left, currentWindowRect.bottom - currentWindowRect.top); + fprintf(stderr, "SetPosSize: New rect (x: %d, y: %d, w: %d, h: %d)\n", nX, nY, nWidth, nHeight); + */ + SetWindowBounds(mrWindow, kWindowStructureRgn, &newWindowRect); + + UpdateFrameGeometry(); + + if (nEvent) + CallCallback(nEvent, NULL); +} + +void AquaSalFrame::DrawMenuBar() +{ + fprintf(stderr, ">*>_> %s\n",__func__); + + if (mpMenu) + { + AquaSalMenu *pAquaSalMenu = (AquaSalMenu *) mpMenu; + SetRootMenu(pAquaSalMenu->mrMenuRef); + } +} + +void AquaSalFrame::GetWorkArea( Rectangle& rRect ) +{ + Rect aRect; + AquaSalFrame* pFrame = this; + ImplSalCalcFullScreenSize( pFrame, &aRect ); + rRect.nLeft = aRect.left; + rRect.nRight = aRect.right; + rRect.nTop = aRect.top; + rRect.nBottom = aRect.bottom; +} + +SalPointerState AquaSalFrame::GetPointerState() +{ + fprintf(stderr, ">*>_> %s\n",__func__); + //TODO: implement + SalPointerState state; + return state; +} + +bool AquaSalFrame::SetPluginParent( SystemParentData* pNewParent ) +{ + // plugin parent may be killed unexpectedly by + // plugging process; + + fprintf(stderr, ">*>_> %s\n",__func__); + //TODO: implement + return sal_False; +} + +BOOL AquaSalFrame::MapUnicodeToKeyCode( sal_Unicode , LanguageType , KeyCode& ) +{ + fprintf(stderr, ">*>_> %s\n",__func__); + // not supported yet + return FALSE; +} + +LanguageType AquaSalFrame::GetInputLanguage() +{ + fprintf(stderr, ">*>_> %s\n",__func__); + //TODO: implement + return LANGUAGE_DONTKNOW; +} + +void AquaSalFrame::SetMaxClientSize( long nWidth, long nHeight ) +{ + fprintf(stderr, ">*>_> %s\n",__func__); + mnMaxWidth = nWidth; + mnMaxHeight = nHeight; +} + +void AquaSalFrame::SetMenu( SalMenu* pSalMenu ) +{ + fprintf(stderr, ">*>_> %s\n",__func__); + + mpMenu = pSalMenu; +} + +void AquaSalFrame::SetExtendedFrameStyle( SalExtStyle nStyle ) +{ + fprintf(stderr, ">*>_> %s\n",__func__); + //TODO: implement +} + +void AquaSalFrame::SetBackgroundBitmap( SalBitmap* ) +{ + fprintf(stderr, ">*>_> %s\n",__func__); + //TODO: implement +} + +SalBitmap* AquaSalFrame::SnapShot() +{ + fprintf(stderr, ">*>_> %s\n",__func__); + //TODO: implement + return NULL; +} + +SalFrame* AquaSalFrame::GetParent() const +{ + fprintf(stderr, ">*>_> %s\n",__func__); + //TODO: implement + return mpParent; +} + +void AquaSalFrame::SetParent( SalFrame* pNewParent ) +{ + fprintf(stderr, ">*>_> %s\n",__func__); + //TODO: implement + mpParent = (AquaSalFrame*)pNewParent; +} + +void DbgPrintFrameGeometry(Rect fullWndRect, Rect cntRect, Rect titleBarRect, SalFrameGeometry salGeo) +{ + fprintf(stderr, "=======================================\n"); + fprintf(stderr, "Full window rect (l: %d, t: %d, b: %d, r: %d)\n", fullWndRect.left, fullWndRect.top, fullWndRect.bottom, fullWndRect.right); + fprintf(stderr, "Content rect (l: %d, t: %d, b: %d, r: %d)\n", cntRect.left, cntRect.top, cntRect.bottom, cntRect.right); + fprintf(stderr, "Title bar rect (l: %d, t: %d, b: %d, r: %d)\n", titleBarRect.left, titleBarRect.top, titleBarRect.bottom, titleBarRect.right); + fprintf(stderr, "nX: %d, nY: %d, nWidth: %d, nHeight: %d, LeftDeco %d, RightDeco %d, TopDeco %d, BottomDeco %d\n", salGeo.nX, salGeo.nY, salGeo.nWidth, salGeo.nHeight, salGeo.nLeftDecoration, salGeo.nRightDecoration, salGeo.nTopDecoration, salGeo.nBottomDecoration); + fprintf(stderr, "=======================================\n"); +} + +void AquaSalFrame::UpdateFrameGeometry() +{ + memset(&maGeometry, 0, sizeof(SalFrameGeometry)); + + if (IsWindowCollapsed(mrWindow)) + return; + + Rect fullWindowRect; + GetWindowBounds(mrWindow, kWindowStructureRgn, &fullWindowRect); + + Rect contentRect; + GetWindowBounds(mrWindow, kWindowContentRgn, &contentRect); + + maGeometry.nX = contentRect.left; + maGeometry.nY = contentRect.top; + + maGeometry.nLeftDecoration = contentRect.left - fullWindowRect.left; + maGeometry.nRightDecoration = fullWindowRect.right - contentRect.right; + + maGeometry.nTopDecoration = contentRect.top - fullWindowRect.top; + maGeometry.nBottomDecoration = fullWindowRect.bottom - contentRect.bottom; + + Rect titleBarRect; + GetWindowBounds(mrWindow, kWindowTitleBarRgn, &titleBarRect); + + int width = fullWindowRect.right - fullWindowRect.left - maGeometry.nRightDecoration - maGeometry.nLeftDecoration; + int height = fullWindowRect.bottom - fullWindowRect.top - maGeometry.nBottomDecoration - maGeometry.nTopDecoration; + + maGeometry.nWidth = width < 0 ? 0 : width; + maGeometry.nHeight = height < 0 ? 0 : height; + + //DbgPrintFrameGeometry(fullWindowRect, contentRect, titleBarRect, maGeometry); +} + +OSStatus HandleCommandProcessEvent(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void * inUserData) +{ + + ImplSalYieldMutexAcquire(); + AquaSalFrame* pSalFrame = reinterpret_cast(inUserData); + + OSStatus result = eventNotHandledErr; + HICommand commandStruct; + + GetEventParameter (inEvent, kEventParamDirectObject, typeHICommand, NULL, sizeof(HICommand), NULL, &commandStruct); + + // If the CommandProcess event is from menu, print its MenuRef and MenuItemIndex + if ( commandStruct.attributes & kHICommandFromMenu ) { + + // handling Quit from Application menu! + if (commandStruct.commandID == kHICommandQuit) + fprintf(stderr, "Quit from application menu received!\n"); + + SalMenuItem *pSalMenuItem; + + OSStatus errval; + errval = GetMenuItemProperty (commandStruct.menu.menuRef, commandStruct.menu.menuItemIndex, + APP_PROPERTY_CREATOR, APP_PROPERTY_TAG_MENU_ITEM_POINTER, + sizeof(pSalMenuItem), NULL, &pSalMenuItem); + + // Only use pSalMenuItem value if the menu item property was found! + if ( (errval == noErr) && pSalMenuItem) + { + // Posting native menu event... + SalMenuEvent aMenuEvt; + aMenuEvt.mnId = ((AquaSalMenuItem *)pSalMenuItem)->mnId; + aMenuEvt.mpMenu = ((AquaSalMenuItem *)pSalMenuItem)->mpMenu; + pSalFrame->CallCallback(SALEVENT_MENUCOMMAND, &aMenuEvt); + + result = noErr; + } + } + + ImplSalYieldMutexRelease(); + + return result; +} + +OSStatus HandleMenuPopulateEvent(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void * inUserData) +{ + + ImplSalYieldMutexAcquire(); + AquaSalFrame* pSalFrame = reinterpret_cast(inUserData); + + MenuRef pMenuRef; + + GetEventParameter (inEvent, kEventParamDirectObject, typeMenuRef, NULL, sizeof(typeMenuRef), NULL, &pMenuRef); + + SalMenu *pSalMenu; + OSStatus errval; + + errval = GetMenuItemProperty (pMenuRef, 0, + APP_PROPERTY_CREATOR, APP_PROPERTY_TAG_MENU_POINTER, + sizeof(pSalMenu), NULL, &pSalMenu); + + if ( (errval == noErr) && pSalMenu) + { + + // To send native menu event, we need its VCL *Menu + // So we query first item in the menu for it. + + SalMenuItem *pSalMenuItem; + + errval = GetMenuItemProperty (pMenuRef, 1, + APP_PROPERTY_CREATOR, APP_PROPERTY_TAG_MENU_ITEM_POINTER, + sizeof(pSalMenuItem), NULL, &pSalMenuItem); + + if ( (errval == noErr) && pSalMenuItem) + { + // Posting native menu event... + SalMenuEvent aMenuEvt; + aMenuEvt.mpMenu = ((AquaSalMenuItem *) pSalMenuItem)->mpMenu; + + // FIXME: looks like it crashes when some menus are activated... + pSalFrame->CallCallback(SALEVENT_MENUACTIVATE, &aMenuEvt); + pSalFrame->CallCallback(SALEVENT_MENUDEACTIVATE, &aMenuEvt); + } + } + + ImplSalYieldMutexRelease(); + + return noErr; +} + +OSStatus HandleMenuClosedEvent(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void * inUserData) +{ + + ImplSalYieldMutexAcquire(); + + MenuRef pMenuRef; + + GetEventParameter (inEvent, kEventParamDirectObject, typeMenuRef, NULL, sizeof(typeMenuRef), NULL, &pMenuRef); + + SalMenu *pSalMenu; + OSStatus errval; + + errval = GetMenuItemProperty (pMenuRef, 0, + APP_PROPERTY_CREATOR, APP_PROPERTY_TAG_MENU_POINTER, + sizeof(pSalMenu), NULL, &pSalMenu); + + if ( (errval == noErr) && pSalMenu) + { + // Posting native menu event... + SalMenuEvent aMenuEvt; + aMenuEvt.mpMenu = pSalMenu; + // FIXME: This does not propagate to the application yet. WHY? + // pSalFrame->CallCallback(SALEVENT_MENUDEACTIVATE, &aMenuEvt); + } + + ImplSalYieldMutexRelease(); + + return noErr; +} + +OSStatus HandleMenuTargetItemEvent(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void * inUserData) +{ + + ImplSalYieldMutexAcquire(); + AquaSalFrame* pSalFrame = reinterpret_cast(inUserData); + OSStatus result = eventNotHandledErr; + + MenuRef pMenuRef; + MenuItemIndex mnMenuItemIndex; + + GetEventParameter (inEvent, kEventParamDirectObject, typeMenuRef, NULL, sizeof(typeMenuRef), NULL, &pMenuRef); + GetEventParameter (inEvent, kEventParamMenuItemIndex, typeMenuItemIndex, NULL, sizeof(typeMenuItemIndex), NULL, &mnMenuItemIndex); + + // kEventMenuTargetItem is sent also for top-level items. Ignore + // them (MenuItemIndex == 0 for them). Or should we send + // MENUACTIVATE events for them? + if (mnMenuItemIndex != 0) + { + SalMenuItem *pSalMenuItem; + OSStatus errval; + + errval = GetMenuItemProperty (pMenuRef, mnMenuItemIndex, + APP_PROPERTY_CREATOR, APP_PROPERTY_TAG_MENU_ITEM_POINTER, + sizeof(pSalMenuItem), NULL, &pSalMenuItem); + + fprintf(stderr, "PJ: in HandleMenuTargetItemEvent, pSalMenuItem = %p\n", pSalMenuItem); + + // We also receive kEventMenuTargetItem events for + // non-application menus (Apple menu or Application menu). But + // they do not have SalMenuItem attached with them. + if ( (errval == noErr) && pSalMenuItem) + { + // Posting native menu event... + SalMenuEvent aMenuEvt; + aMenuEvt.mnId = ((AquaSalMenuItem *)pSalMenuItem)->mnId; + aMenuEvt.mpMenu = ((AquaSalMenuItem *)pSalMenuItem)->mpMenu; + pSalFrame->CallCallback(SALEVENT_MENUHIGHLIGHT, &aMenuEvt); + + result = noErr; + } + } + + ImplSalYieldMutexRelease(); + + return result; +} + +OSStatus HandleWindowFocusEvent(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void * inUserData) +{ + ImplSalYieldMutexAcquire(); + AquaSalFrame* pSalFrame = reinterpret_cast(inUserData); + + fprintf(stderr, "sending focus event %s for AquaSalFrame %p\n", + (GetEventKind(inEvent) == kEventWindowFocusAcquired) ? "GETFOCUS" : "LOSEFOCUS", pSalFrame); + + pSalFrame->CallCallback( (GetEventKind(inEvent) == kEventWindowFocusAcquired) ? SALEVENT_GETFOCUS : SALEVENT_LOSEFOCUS, 0); + + if (GetEventKind(inEvent) == kEventWindowFocusAcquired) + pSalFrame->ActivateTSM(); + else + pSalFrame->DeactivateTSM(); + + ImplSalYieldMutexRelease(); + return noErr; +} + +OSStatus HandleWindowCloseEvent(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void * inUserData) +{ + BOOST_ASSERT(GetEventClass(inEvent) == kEventClassWindow && GetEventKind(inEvent) == kEventWindowClose && "Only WindowClose event expected"); + + ImplSalYieldMutexAcquire(); + AquaSalFrame* pSalFrame = reinterpret_cast(inUserData); + + pSalFrame->CallCallback(SALEVENT_CLOSE, 0); + ImplSalYieldMutexRelease(); + return noErr; +} + +OSStatus HandleWindowBoundsChangedEvent(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void* inUserData) +{ + fprintf(stdout, "Bounds changed event\n"); + + BOOST_ASSERT(GetEventClass(inEvent) == kEventClassWindow && GetEventKind(inEvent) == kEventWindowBoundsChanged && "Only WindowBoundsChanged event expected"); + + //fprintf(stderr, "received resize event\n"); + + // HACK: + // during live resize our own event loop will not be active so private timer events + // that were posted into the event queue will not be handled + // it seems that all event scheduling takes place in the standard + // event handlers in this case + // calling SalInstance::Yield() will allow to dispatch events from the queue and repaints will + // occur during live resize + SalData* pSalData = GetSalData(); + pSalData->mpFirstInstance->Yield( false, false /* FIXME: bAllEvents */ ); + + ImplSalYieldMutexAcquire(); + + AquaSalFrame* pSalFrame = reinterpret_cast(inUserData); + + pSalFrame->UpdateFrameGeometry(); + + // compose sal resize event + Rect windowBounds; + GetEventParameter(inEvent, kEventParamCurrentBounds, typeQDRectangle, NULL, sizeof(Rect), NULL, &windowBounds); + + long windowWidth = windowBounds.right - windowBounds.left; + long windowHeight = windowBounds.bottom - windowBounds.top; + + // Get the size of the window's content area + if (windowWidth != pSalFrame->mnWidth || windowHeight != pSalFrame->mnHeight) + { + // Cache the new size + pSalFrame->mnWidth = windowWidth; + pSalFrame->mnHeight = windowHeight; + + + pSalFrame->CallCallback( SALEVENT_RESIZE, NULL); + } + + ImplSalYieldMutexRelease(); + + return noErr; +} + +OSStatus HandleOOoSalUserEvent(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void* inUserData) +{ + BOOST_ASSERT(GetEventClass(inEvent) == cOOoSalUserEventClass && "Only SalUserEvents expected"); + + //fprintf(stderr, "received user event\n"); + + ImplSalYieldMutexAcquire(); + AquaSalFrame* pSalFrame = reinterpret_cast(inUserData); + void* pData = NULL; + + GetEventParameter(inEvent, cOOoSalEventData, cOOoSalEventParamTypePtr, NULL, sizeof(pData), NULL, &pData); + + pSalFrame->CallCallback(SALEVENT_USEREVENT, pData); + + ImplSalYieldMutexRelease(); + + return noErr; +} +OSStatus HandleOOoSalTimerEvent(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void* inUserData) +{ + BOOST_ASSERT(GetEventClass(inEvent) == cOOoSalUserEventClass && "Only SalUserEvents expected"); + + //fprintf(stderr, "received timer event\n"); + + ImplSalYieldMutexAcquire(); + + void* pData = NULL; + + GetEventParameter(inEvent, cOOoSalEventData, cOOoSalEventParamTypePtr, NULL, sizeof(pData), NULL, &pData); + + AquaSalTimer *pTimer = reinterpret_cast(pData); + pTimer->CallCallback(); + + ImplSalYieldMutexRelease(); + + return noErr; +} + +OSStatus HandleWindowActivatedEvent(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void* inUserData) +{ + ImplSalYieldMutexAcquire(); + + AquaSalFrame* pSalFrame = reinterpret_cast(inUserData); + pSalFrame->DrawMenuBar(); + + ImplSalYieldMutexRelease(); + + return noErr; +} + +OSStatus HandleWindowPaintEvent(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void* inUserData) +{ + fprintf(stderr, "received full paint event\n"); + ImplSalYieldMutexAcquire(); + AquaSalFrame* pSalFrame = reinterpret_cast(inUserData); + + Rect contentBounds; + GetWindowBounds( pSalFrame->mrWindow, kWindowContentRgn, &contentBounds ); + + SalPaintEvent aPaintEvt; + aPaintEvt.mnBoundX = 0; + aPaintEvt.mnBoundY = 0; + aPaintEvt.mnBoundWidth = pSalFrame->mnWidth; + aPaintEvt.mnBoundHeight = pSalFrame->mnHeight; + + fprintf(stderr, "Full paint event: (%ld, %ld, %ld, %ld)\n", + aPaintEvt.mnBoundX, aPaintEvt.mnBoundY, + aPaintEvt.mnBoundWidth, aPaintEvt.mnBoundHeight); + + pSalFrame->CallCallback(SALEVENT_PAINT, &aPaintEvt); + ImplSalYieldMutexRelease(); + + return noErr; +} + +OSStatus HandleWindowDrawContentEvent(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void* inUserData) +{ + //fprintf(stderr, "received draw content event\n"); + ImplSalYieldMutexAcquire(); + + AquaSalFrame* pSalFrame = reinterpret_cast(inUserData); + + Rect portBounds; + GetWindowBounds (pSalFrame->mrWindow, kWindowContentRgn, &portBounds ); + + SalPaintEvent aPaintEvt; + aPaintEvt.mnBoundX = 0; + aPaintEvt.mnBoundY = 0; + aPaintEvt.mnBoundWidth = pSalFrame->mnWidth; + aPaintEvt.mnBoundHeight = pSalFrame->mnHeight; + + fprintf(stderr, "Paint event: (%ld, %ld, %ld, %ld)\n", + aPaintEvt.mnBoundX, aPaintEvt.mnBoundY, + aPaintEvt.mnBoundWidth, aPaintEvt.mnBoundHeight); + + pSalFrame->CallCallback(SALEVENT_PAINT, &aPaintEvt); + ImplSalYieldMutexRelease(); + + return noErr; +} + +OSStatus HandleWindowResizeStarted(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void * inUserData) +{ + AquaSalFrame* pSalFrame = reinterpret_cast(inUserData); + pSalFrame->mpSalInstance->StartForceDispatchingPaintEvents(); + return noErr; +} + +OSStatus HandleWindowResizeCompleted(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void * inUserData) +{ + AquaSalFrame* pSalFrame = reinterpret_cast(inUserData); + pSalFrame->mpSalInstance->StopForceDispatchingPaintEvents(); + return noErr; +} + +OSStatus HandleMouseEvent(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void* inUserData) +{ + BOOST_ASSERT(GetEventClass(inEvent) == kEventClassMouse && ( + GetEventKind(inEvent) == kEventMouseDown || + GetEventKind(inEvent) == kEventMouseUp || + GetEventKind(inEvent) == kEventMouseMoved || + GetEventKind(inEvent) == kEventMouseDragged + ) && "Mouse up, mouse down, mouse moved or mouse drag events expected"); + + ImplSalYieldMutexAcquire(); + + AquaSalFrame* pSalFrame = reinterpret_cast(inUserData); + + // use window bounds to convert from screen to window coordinates + Rect bounds; + GetWindowBounds( pSalFrame->mrWindow, kWindowContentRgn, &bounds ); + + // get mouse coordinates in screen space + MacOSPoint aPt; + GetEventParameter(inEvent, kEventParamMouseLocation, typeQDPoint, NULL, sizeof(aPt), NULL, &aPt); + + SalMouseEvent aMouseEvt; + aMouseEvt.mnX = aPt.h - bounds.left; + aMouseEvt.mnY = aPt.v - bounds.top; + + aMouseEvt.mnCode = 0; + aMouseEvt.mnTime = static_cast(GetEventTime(inEvent) * 1000); + + // Which modifier keys pressed? + // + // Please note: + // The system automatically preserves the state of the modifier keys during + // mouse down for the corresponding MouseUp event + UInt32 modifierKeys; + GetEventParameter(inEvent, kEventParamKeyModifiers, typeUInt32, NULL, sizeof(modifierKeys), NULL, &modifierKeys); + + if (modifierKeys & shiftKey) + aMouseEvt.mnCode |= KEY_SHIFT; + if (modifierKeys & controlKey) + aMouseEvt.mnCode |= KEY_MOD1; + if (modifierKeys & optionKey) + aMouseEvt.mnCode |= KEY_MOD2; + + // Which mouse button pressed? + EventMouseButton aButtonEvt; + GetEventParameter(inEvent, kEventParamMouseButton, typeMouseButton, NULL, sizeof(aButtonEvt), NULL, &aButtonEvt); + + switch (aButtonEvt) + { + case kEventMouseButtonPrimary: + aMouseEvt.mnButton = MOUSE_LEFT; + aMouseEvt.mnCode |= MOUSE_LEFT; + break; + + case kEventMouseButtonSecondary: + aMouseEvt.mnButton = MOUSE_RIGHT; + aMouseEvt.mnCode |= MOUSE_RIGHT; + break; + + case kEventMouseButtonTertiary: + aMouseEvt.mnButton = MOUSE_MIDDLE; + aMouseEvt.mnCode |= MOUSE_MIDDLE; + break; + } + + USHORT eventkind = 0; + + switch (GetEventKind(inEvent)) + { + case kEventMouseDown: + eventkind = SALEVENT_MOUSEBUTTONDOWN; + break; + case kEventMouseUp: + eventkind = SALEVENT_MOUSEBUTTONUP; + break; + case kEventMouseMoved: + case kEventMouseDragged: + eventkind = SALEVENT_MOUSEMOVE; + break; + } + + pSalFrame->CallCallback(eventkind, &aMouseEvt); + ImplSalYieldMutexRelease(); + + // Note: we have to return eventNotHandledErr otherwise + // the window will not be activated and stay in the background + return eventNotHandledErr; +} + +OSStatus HandleMouseWheelMovedEvent(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void* inUserData) +{ + BOOST_ASSERT(GetEventClass(inEvent) == kEventClassMouse && GetEventKind(inEvent) == kEventMouseWheelMoved && "Mouse wheel moved event expected"); + + fprintf(stderr, "WheelMoved event received.\n"); + + ImplSalYieldMutexAcquire(); + + AquaSalFrame* pSalFrame = reinterpret_cast(inUserData); + + // use window bounds to convert from screen to window coordinates + Rect bounds; + GetWindowBounds( pSalFrame->mrWindow, kWindowContentRgn, &bounds ); + + // get mouse coordinates in screen space + MacOSPoint aPt; + GetEventParameter(inEvent, kEventParamMouseLocation, typeQDPoint, NULL, sizeof(aPt), NULL, &aPt); + + SalWheelMouseEvent aWheelEvt; + aWheelEvt.mnX = aPt.h - bounds.left; + aWheelEvt.mnY = aPt.v - bounds.top; + + aWheelEvt.mnCode = 0; + aWheelEvt.mnTime = static_cast(GetEventTime(inEvent) * 1000); + + // Which modifier keys pressed? + UInt32 modifierKeys; + GetEventParameter(inEvent, kEventParamKeyModifiers, typeUInt32, NULL, sizeof(modifierKeys), NULL, &modifierKeys); + + if (modifierKeys & shiftKey) + aWheelEvt.mnCode |= KEY_SHIFT; + if (modifierKeys & controlKey) + aWheelEvt.mnCode |= KEY_MOD1; + if (modifierKeys & optionKey) + aWheelEvt.mnCode |= KEY_MOD2; + + EventMouseWheelAxis wheelAxis; // kEventMouseWheelAxisX or kEventMouseWheelAxisY + SInt32 wheelDelta; + GetEventParameter(inEvent, kEventParamMouseWheelAxis, typeMouseWheelAxis, NULL, sizeof(wheelAxis), NULL, &wheelAxis); + + if ( wheelAxis == kEventMouseWheelAxisX ) + aWheelEvt.mbHorz = TRUE; + else + aWheelEvt.mbHorz = FALSE; + + GetEventParameter(inEvent, kEventParamMouseWheelDelta, typeLongInteger, NULL, sizeof(wheelDelta), NULL, &wheelDelta); + + static ULONG nLines = 0; + if( ! nLines ) + { + char* pEnv = getenv( "SAL_WHEELLINES" ); + nLines = pEnv ? atoi( pEnv ) : 3; + if( nLines > 10 ) + nLines = SAL_WHEELMOUSE_EVENT_PAGESCROLL; + } + + aWheelEvt.mnScrollLines=nLines; + + // FIXME: This all is a bit suspect ;-) + aWheelEvt.mnDelta = wheelDelta; + aWheelEvt.mnNotchDelta = (wheelDelta>0) ? 1 : -1; + + fprintf(stderr, "... %ld, %ld - %d, %ld\n", aWheelEvt.mnX, aWheelEvt.mnY, + wheelAxis, aWheelEvt.mnDelta); + + pSalFrame->CallCallback(SALEVENT_WHEELMOUSE, &aWheelEvt); + + ImplSalYieldMutexRelease(); + + return noErr; +} + +void DbgPrintModifiers (UInt32 keyModifiers) { + + fprintf (stderr, "...... keyModifiers: "); + if (keyModifiers & cmdKey) + fprintf (stderr, "cmdKey, "); + if (keyModifiers & shiftKey) + fprintf (stderr, "shiftKey, "); + if (keyModifiers & alphaLock) + fprintf (stderr, "alphaLock (CapsLock), "); + if (keyModifiers & optionKey) + fprintf (stderr, "optionKey, "); + if (keyModifiers & controlKey) + fprintf (stderr, "controlKey, "); + if (keyModifiers & kEventKeyModifierNumLockMask) + fprintf (stderr, "NumLock key, "); + if (keyModifiers & kEventKeyModifierFnMask) + fprintf (stderr, "Fn key, "); + fprintf (stderr, "\n"); +} + +// Table for translation of system key code to sal keycodes +#define KEY_TAB_SIZE 131 + +static USHORT aImplTranslateKeyTab[KEY_TAB_SIZE] = +{ + // sal key code constant + KEY_A, /* 0 */ + KEY_S, + KEY_D, + KEY_F, + KEY_H, + KEY_G, + KEY_Z, + KEY_X, + KEY_C, + KEY_V, + 0, /* 10 */ + KEY_B, + KEY_Q, + KEY_W, + KEY_E, + KEY_R, + KEY_Y, + KEY_T, + KEY_1, + KEY_2, + KEY_3, /* 20 */ + KEY_4, + KEY_6, + KEY_5, + 0, + KEY_9, + KEY_7, + 0, + KEY_8, + KEY_0, + 0, /* 30 */ + KEY_O, + KEY_U, + 0, + KEY_I, + KEY_P, + KEY_RETURN, + KEY_L, + KEY_J, + 0, + KEY_K, /* 40 */ + 0, + 0, + 0, + 0, + KEY_N, + KEY_M, + 0, + KEY_TAB, + KEY_SPACE, + 0, /* 50 */ + KEY_BACKSPACE, + 0, + KEY_ESCAPE, + 0, + 0, + 0, + 0, + 0, + 0, + 0, /* 60 */ + 0, + 0, + 0, + 0, + KEY_DECIMAL, /* ? Dot in numpad */ + 0, + 0, + 0, + 0, + 0, /* 70 */ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, /* 80 */ + 0, + KEY_0, + KEY_1, + KEY_2, + KEY_3, + KEY_4, + KEY_5, + KEY_6, + KEY_7, + 0, /* 90 */ + KEY_8, + KEY_9, + 0, + 0, + 0, + KEY_F5, + KEY_F6, + KEY_F7, + KEY_F3, + KEY_F8, /* 100 */ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, /* 110 */ + 0, + 0, + 0, + KEY_INSERT, + KEY_HOME, + KEY_PAGEUP, + KEY_DELETE, + KEY_F3, + KEY_END, + KEY_F2, /* 120 */ + KEY_PAGEDOWN, + KEY_F1, + KEY_LEFT, + KEY_RIGHT, + KEY_DOWN, /* 125 */ + KEY_UP, /* 126 */ + 0, + 0, + 0, + 0 /* 130 */ +}; + +OSStatus HandleKeyboardEvent(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void * inUserData) +{ + static ULONG nRepeatCount = 0; + UInt32 keyModifiers; + USHORT nModCode = 0; + + ImplSalYieldMutexAcquire(); + + AquaSalFrame* pSalFrame = reinterpret_cast(inUserData); + + fprintf(stderr, ">>>> HandleKeyboardEvent\n"); + + UInt32 eventKind = GetEventKind(inEvent); + + switch (eventKind) { + case kEventRawKeyUp: + case kEventRawKeyDown: + case kEventRawKeyRepeat: + + if (eventKind == kEventRawKeyDown) + fprintf(stderr, " ... kEventRawKeyDown\n"); + else if (eventKind == kEventRawKeyUp) + fprintf(stderr, " ... kEventRawKeyUp\n"); + else if (eventKind == kEventRawKeyRepeat) + fprintf(stderr, " ... kEventRawKeyRepeat\n"); + + UInt32 keyCode, keyboardType; + char keyChar; + + GetEventParameter (inEvent, kEventParamKeyCode, typeUInt32, NULL, sizeof(keyCode), NULL, &keyCode); + fprintf(stderr, " ...... keyCode = %ld (%lx)\n", keyCode, keyCode); + + GetEventParameter (inEvent, kEventParamKeyMacCharCodes, typeChar, NULL, sizeof(keyChar), NULL, &keyChar); + fprintf(stderr, " ...... keyChar = %c (%x)\n", keyChar, keyChar); + + GetEventParameter (inEvent, kEventParamKeyModifiers, typeUInt32, NULL, sizeof(keyModifiers), NULL, &keyModifiers); + fprintf(stderr, " ...... keyModifiers = %ld (%ld)\n", keyModifiers, keyModifiers); + + DbgPrintModifiers(keyModifiers); + + GetEventParameter (inEvent, kEventParamKeyboardType, typeUInt32, NULL, sizeof(keyboardType), NULL, &keyboardType); + fprintf(stderr, " ...... keyboardType = %ld (%lx)\n", keyboardType, keyboardType); + + SalKeyEvent aKeyEvt; + + if ( (keyChar >= '0') && (keyChar <= '9') ) + aKeyEvt.mnCode = sal::static_int_cast(KEYGROUP_NUM + keyChar - '0'); + else if ( (keyChar >= 'A') && (keyChar <= 'Z') ) + aKeyEvt.mnCode = sal::static_int_cast(KEYGROUP_ALPHA + keyChar - 'A'); + else if ( (keyChar >= 'a') && (keyChar <= 'z') ) + aKeyEvt.mnCode = sal::static_int_cast(KEYGROUP_ALPHA + keyChar - 'a'); + else if ( keyChar == 0x0d ) // RETURN + aKeyEvt.mnCode = KEY_RETURN; + else if ( keyChar == 0x1b ) // ESCAPE + aKeyEvt.mnCode = KEY_ESCAPE; + else if ( keyChar == 0x09 ) // TAB + aKeyEvt.mnCode = KEY_TAB; + else if ( keyChar == 0x20 ) // SPACE + aKeyEvt.mnCode = KEY_SPACE; + else + aKeyEvt.mnCode = aImplTranslateKeyTab[keyCode]; + + aKeyEvt.mnCharCode = keyChar; + + // Set modifiers + // FIXME: how to map them? shift, option, control and command! + if (keyModifiers & shiftKey) + nModCode |= KEY_SHIFT; + if (keyModifiers & controlKey) + nModCode |= KEY_MOD1; + if (keyModifiers & optionKey) + nModCode |= KEY_MOD2; + + aKeyEvt.mnCode |= nModCode; + aKeyEvt.mnTime = static_cast(GetEventTime(inEvent) * 1000); + + if (eventKind == kEventRawKeyRepeat) + nRepeatCount++; + else + // Not repeat event -> reset repeat counter + nRepeatCount = 0; + + aKeyEvt.mnRepeat = nRepeatCount; + + if (eventKind == kEventRawKeyDown || eventKind == kEventRawKeyRepeat) + pSalFrame->CallCallback( SALEVENT_KEYINPUT, &aKeyEvt ); + if (eventKind == kEventRawKeyUp) + pSalFrame->CallCallback( SALEVENT_KEYUP, &aKeyEvt ); + + break; + + case kEventRawKeyModifiersChanged: + fprintf(stderr, " ... kEventRawKeyModifiersChanged\n"); + + GetEventParameter (inEvent, kEventParamKeyModifiers, typeUInt32, NULL, sizeof(keyModifiers), NULL, &keyModifiers); + fprintf(stderr, " ...... keyModifiers = %ld (%ld)\n", keyModifiers, keyModifiers); + + DbgPrintModifiers(keyModifiers); + + // FIXME: send KEYMODCHANGE event... + + break; + + default: + fprintf(stderr, " ... UNKNOWN!!!\n"); + } + + ImplSalYieldMutexRelease(); + + fprintf(stderr, "<<<< HandleKeyboardEvent\n"); + + return noErr; +} + +OSStatus GetInputText(EventRef inEvent, CFMutableStringRef outString, UInt32 *outLength) +{ + UInt32 len; + OSStatus status; + UniChar *text; + + status = GetEventParameter(inEvent, kEventParamTextInputSendText, + typeUnicodeText, NULL, 0, &len, NULL); + + *outLength = len / sizeof(UniChar); + + if (status != noErr) + return status; + + fprintf(stderr, "GetInputText len: %ld (%ld)\n", len, len/sizeof(UniChar)); + if (len > 0) + { + text = (UniChar *)malloc(len); + status= GetEventParameter(inEvent, kEventParamTextInputSendText, + typeUnicodeText, NULL, len, NULL, text); + + CFStringAppendCharacters(outString, text, len / sizeof(UniChar)); + free((void *)text); + } + + return status; +} + +static void CommitInputText(CFMutableStringRef text, UInt32 len, AquaSalFrame* pSalFrame) +{ + SalExtTextInputEvent InputEvent; + char str[BUFSIZ]; + + CFStringGetCString(text, str, BUFSIZ, kCFStringEncodingUTF8); + fprintf(stderr, "CommitInputText: %s\n", str); + + InputEvent.mnTime = 0; + InputEvent.mpTextAttr = 0; + InputEvent.maText = String(str, RTL_TEXTENCODING_UTF8); + InputEvent.mnCursorPos = len / sizeof(UniChar); + InputEvent.mnCursorFlags = 0; + InputEvent.mnDeltaStart = 0; + InputEvent.mbOnlyCursor = FALSE; + + pSalFrame->CallCallback(SALEVENT_EXTTEXTINPUT, (void *)&InputEvent); + pSalFrame->CallCallback(SALEVENT_ENDEXTTEXTINPUT, NULL); +} + +OSStatus HandleUpdateActiveInputArea(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void * inUserData) +{ + UInt32 textLength, fixLength, rngSize; + OSStatus status = eventParameterNotFoundErr; + long refcon; + CFMutableStringRef mutString; + + fprintf(stderr, ">>>> HandleUpdateActiveInputArea\n"); + + status = GetEventParameter(inEvent, kEventParamTextInputSendRefCon, + typeLongInteger, NULL, sizeof(UInt32), NULL, &refcon); + + if (status != noErr) + return status; + + mutString = CFStringCreateMutable(NULL, 0); + status = GetInputText(inEvent, mutString, &textLength); + + char p[BUFSIZ]; + CFStringGetCString(mutString, p, BUFSIZ, kCFStringEncodingUTF8); + fprintf(stderr, "text: %s\n", p); + + if (status != noErr) + goto error; + + status = GetEventParameter(inEvent, kEventParamTextInputSendFixLen, + typeLongInteger, NULL, sizeof(UInt32), NULL, &fixLength); + + if (status != noErr) + goto error; + + fprintf(stderr, "fixLen: %ld (%ld)\n", fixLength, fixLength/sizeof(UniChar)); + + if (fixLength) + { + AquaSalFrame* pSalFrame = reinterpret_cast(inUserData); + CommitInputText(mutString, fixLength, pSalFrame); + } + + status = GetEventParameter(inEvent, kEventParamTextInputSendHiliteRng, + typeTextRangeArray, NULL, 0, &rngSize, NULL); + + if (status == noErr) + { + TextRangeArray *hiliteRngArray = (TextRangeArray *)malloc(rngSize); + if (hiliteRngArray) + { + status = GetEventParameter(inEvent, + kEventParamTextInputSendHiliteRng, + typeTextRangeArray, NULL, rngSize, NULL, + hiliteRngArray); + + if (status != noErr) + goto error; + } + free(hiliteRngArray); + } + +error: + CFRelease(mutString); + return status; +} + +static USHORT GetKeyCode(UniChar uc, UInt32 keyCode) +{ + USHORT nCode = 0; + if ( (uc >= '0') && (uc <= '9') ) + nCode = sal::static_int_cast(KEYGROUP_NUM + uc - '0'); + else if ( (uc >= 'A') && (uc <= 'Z') ) + nCode = sal::static_int_cast(KEYGROUP_ALPHA + uc - 'A'); + else if ( (uc >= 'a') && (uc <= 'z') ) + nCode = sal::static_int_cast(KEYGROUP_ALPHA + uc - 'a'); + else if ( uc == 0x0d ) // RETURN + nCode = KEY_RETURN; + else if ( uc == 0x1b ) // ESCAPE + nCode = KEY_ESCAPE; + else if ( uc == 0x09 ) // TAB + nCode = KEY_TAB; + else if ( uc == 0x20 ) // SPACE + nCode = KEY_SPACE; + else + nCode = aImplTranslateKeyTab[keyCode]; + + return nCode; +} + +static USHORT GetKeyModCode(UInt32 modifier) +{ + USHORT nCode = 0; + + // FIXME: how to map them? shift, option, control and command! + if (modifier & shiftKey) + nCode |= KEY_SHIFT; + if (modifier & controlKey) + nCode |= KEY_MOD1; + if (modifier & optionKey) + nCode |= KEY_MOD2; + + return nCode; +} + +OSStatus HandleUnicodeForKeyEvent(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void * inUserData) +{ + // gettting the Unicode char in the TextInputUnicodeForKey event + + UniChar uc, translated_uc = 0; + + AquaSalFrame* pSalFrame = reinterpret_cast(inUserData); + + fprintf(stderr, ">>>> HandleUnicodeForKeyEvent\n"); + + GetEventParameter(inEvent, kEventParamTextInputSendText, typeUnicodeText, + NULL, sizeof(uc), NULL, &uc); + fprintf(stderr, "in HandleTextInputUnicodeForKeyEvent, uniChar is %04x=%c\n", uc, (char)uc); + + // gettting the original keyDown event in the TextInputUnicodeForKey event + EventRef origEvent; + GetEventParameter(inEvent, kEventParamTextInputSendKeyboardEvent, + typeEventRef, NULL, sizeof(origEvent), NULL, &origEvent); + + // gettting the Unicode char in the original keyDown event + GetEventParameter(origEvent, kEventParamKeyUnicodes, + typeUnicodeText, NULL, sizeof(uc), NULL, &uc); + fprintf(stderr, ", in original Keyboard Event, uniChar is %04x=%c\n", uc, (char)uc); + + // gettting the Mac OS ASCII char in the original keyDown event (may be meaningless) + unsigned char c; + GetEventParameter(origEvent, kEventParamKeyMacCharCodes, typeChar, NULL, + sizeof(c), NULL, &c); + fprintf(stderr, ", mac char is %04x=%c\n", c, c); + + // gettting the key code in the original keyDown event (may be meaningless) + UInt32 keyCode; + GetEventParameter(origEvent, kEventParamKeyCode, typeUInt32, NULL, + sizeof(keyCode), NULL, &keyCode); + fprintf(stderr, ", key code is %ld\n", keyCode); + + // gettting the keyboard type in the original keyDown event + UInt32 keyboardType = 0; + GetEventParameter(origEvent, kEventParamKeyboardType, typeUInt32, NULL, + sizeof(keyboardType), NULL, &keyboardType); + + // gettting the key modifiers in the original keyDown event + UInt32 modifier; + GetEventParameter(origEvent, kEventParamKeyModifiers, typeUInt32, NULL, + sizeof(modifier), NULL, &modifier); + fprintf(stderr, ", modifier is %ld\n", modifier); + if (modifier & controlKey) { + KeyboardLayoutRef keyboardLayout; + const UCKeyboardLayout *uchrData; + UInt32 dummy = 0; + + KLGetCurrentKeyboardLayout(&keyboardLayout); + KLGetKeyboardLayoutProperty(keyboardLayout, kKLuchrData, + (const void **)&uchrData); + UCKeyTranslate(uchrData, keyCode, + kUCKeyActionDisplay, (modifier & ~controlKey) >> 8, + keyboardType, kUCKeyTranslateNoDeadKeysMask, &dummy, + 1, &dummy, &translated_uc); + fprintf(stderr, ", it's a Control-%c\n", translated_uc); + } + + SalKeyEvent aKeyEvt; + + aKeyEvt.mnTime = static_cast(GetEventTime(origEvent) * 1000); + aKeyEvt.mnCharCode = uc; + aKeyEvt.mnRepeat = 0; + aKeyEvt.mnCode = GetKeyCode(translated_uc, keyCode); + // Set modifiers + aKeyEvt.mnCode |= GetKeyModCode(modifier); + + pSalFrame->CallCallback( SALEVENT_KEYINPUT, &aKeyEvt ); + pSalFrame->CallCallback( SALEVENT_KEYUP, &aKeyEvt ); + fprintf(stderr, "<<<< HandleUnicodeForKeyEvent\n"); + + return eventNotHandledErr; +} + +OSStatus HandleOffsetToPos(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void * inUserData) +{ + OSStatus status = eventNotHandledErr; + UInt32 offset; + + fprintf(stderr, ">>>> HandleOffsetToPos\n"); + + status = GetEventParameter(inEvent, kEventParamTextInputSendTextOffset, + typeLongInteger, NULL, sizeof(UInt32), NULL, &offset); + + if (status != noErr) + return status; + + // FIXME + return status; +} + + +OSStatus HandleTSMEvent(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void * inUserData) +{ + OSStatus result = eventNotHandledErr; + + ImplSalYieldMutexAcquire(); + + fprintf(stderr, ">>>> HandleTSMEvent\n"); + + UInt32 eventClass = GetEventClass(inEvent); + UInt32 eventKind = GetEventKind(inEvent); + + if (eventClass == kEventClassTextInput) + { + switch (eventKind) { + case kEventTextInputUpdateActiveInputArea: + result = HandleUpdateActiveInputArea(inHandlerCallRef, inEvent, inUserData); + break; + case kEventTextInputUnicodeForKeyEvent: + result = HandleUnicodeForKeyEvent(inHandlerCallRef, inEvent, inUserData); + break; + case kEventTextInputOffsetToPos: + result = HandleOffsetToPos(inHandlerCallRef, inEvent, inUserData); + break; + default: + fprintf(stderr, " ... unknown eventkind in HandleTSMEvent!!!\n"); + break; + } + } + + ImplSalYieldMutexRelease(); + fprintf(stderr, "<<<< HandleTSMEvent\n"); + + return result; +} + +OSStatus GetOptimalWindowSize(Rect* rect); + +void DbgWhichSalFrameStyle(ULONG style) +{ + fprintf(stderr, "==============================\n"); + + if (style & SAL_FRAME_STYLE_DEFAULT) + fprintf(stderr, "SAL_FRAME_STYLE_DEFAULT\n"); + if (style & SAL_FRAME_STYLE_MOVEABLE) + fprintf(stderr, "SAL_FRAME_STYLE_MOVEABLE\n"); + if (style & SAL_FRAME_STYLE_SIZEABLE) + fprintf(stderr, "SAL_FRAME_STYLE_SIZEABLE\n"); + if (style & SAL_FRAME_STYLE_CLOSEABLE) + fprintf(stderr, "SAL_FRAME_STYLE_CLOSEABLE\n"); + if (style & SAL_FRAME_STYLE_NOSHADOW) + fprintf(stderr, "SAL_FRAME_STYLE_NOSHADOW\n"); + if (style & SAL_FRAME_STYLE_TOOLTIP) + fprintf(stderr, "SAL_FRAME_STYLE_TOOLTIP\n"); + if (style & SAL_FRAME_STYLE_OWNERDRAWDECORATION) + fprintf(stderr, "SAL_FRAME_STYLE_OWNERDRAWDECORATION\n"); + if (style & SAL_FRAME_STYLE_DIALOG) + fprintf(stderr, "SAL_FRAME_STYLE_DIALOG\n"); + if (style & SAL_FRAME_STYLE_CHILD) + fprintf(stderr, "SAL_FRAME_STYLE_CHILD\n"); + if (style & SAL_FRAME_STYLE_FLOAT) + fprintf(stderr, "SAL_FRAME_STYLE_FLOAT\n"); + if (style & SAL_FRAME_STYLE_TOOLWINDOW) + fprintf(stderr, "SAL_FRAME_STYLE_TOOLWINDOW\n"); + if (style & SAL_FRAME_STYLE_INTRO) + fprintf(stderr, "SAL_FRAME_STYLE_INTRO\n"); + + fprintf(stderr, "==============================\n"); +} + +void AquaSalFrame::CreateNewSystemWindow(CarbonWindowRef pParent, ULONG nSalFrameStyle) +{ + DbgWhichSalFrameStyle(nSalFrameStyle); + + // in order to receive windowupdate events we must not use compositing (kWindowCompositingAttribute)! + + // initialize with useful defaults + unsigned int nWindowAttributes = kWindowStandardHandlerAttribute; + WindowClass windowClass = kDocumentWindowClass; + + if (nSalFrameStyle & SAL_FRAME_STYLE_CHILD) + { + BOOST_ASSERT(false && "Not yet implemented! How to handle child windows on Mac OS X?"); + } + else // none-child windows + { + if (nSalFrameStyle & SAL_FRAME_STYLE_DEFAULT) + nWindowAttributes |= kWindowStandardDocumentAttributes; + + if( nSalFrameStyle & SAL_FRAME_STYLE_FLOAT ) + windowClass = kFloatingWindowClass; + if (nSalFrameStyle & SAL_FRAME_STYLE_OWNERDRAWDECORATION) + windowClass = kToolbarWindowClass; + if (nSalFrameStyle & SAL_FRAME_STYLE_TOOLTIP) + windowClass = kHelpWindowClass; + + // check moveable, sizeable, closeable + if( !(nSalFrameStyle & SAL_FRAME_STYLE_MOVEABLE) ) // window without decoration + //nWindowAttributes |= kWindowNoTitleBarAttribute; // requires Mac OS X 10.4, may be choose another windows class like toolbar window + windowClass = kToolbarWindowClass; + else + { + // close box requires a titlebar + if( nSalFrameStyle & SAL_FRAME_STYLE_CLOSEABLE ) + nWindowAttributes |= kWindowCloseBoxAttribute; + else + nWindowAttributes &= ~kWindowCloseBoxAttribute; + } + + if( nSalFrameStyle & SAL_FRAME_STYLE_SIZEABLE ) + { + nWindowAttributes |= (kWindowResizableAttribute | kWindowLiveResizeAttribute); + if( (nSalFrameStyle & SAL_FRAME_STYLE_MOVEABLE) && (windowClass == kDocumentWindowClass)) + nWindowAttributes |= (kWindowCollapseBoxAttribute | kWindowFullZoomAttribute); // requires titlebar (moveable) and not allowed for floating windows + } + else + nWindowAttributes &= ~(kWindowResizableAttribute | kWindowLiveResizeAttribute | kWindowCollapseBoxAttribute | kWindowFullZoomAttribute); + } + + Rect aContentRect; + GetOptimalWindowSize(&aContentRect); + + // Directly connect the frame with the window in contrast to Win32 where frame and + // window will be connected in the WM_CREATE message handler + OSStatus rc = CreateNewWindow(windowClass, nWindowAttributes, &aContentRect, &mrWindow); + + if (rc != noErr) + throw runtime_error("System window creation failed"); + + UpdateFrameGeometry(); + + // Store window handle + maSysData.rWindow = mrWindow; + + // Cache the size of the content area of the window + mnHeight = aContentRect.bottom - aContentRect.top; + mnWidth = aContentRect.right - aContentRect.left; + + InstallAndRegisterEventHandler(NewEventHandlerUPP(HandleWindowCloseEvent), 1, &cWindowCloseEvent); + InstallAndRegisterEventHandler(NewEventHandlerUPP(HandleWindowBoundsChangedEvent), 1, &cWindowBoundsChangedEvent); + + InstallAndRegisterEventHandler(NewEventHandlerUPP(HandleWindowFocusEvent), GetEventTypeCount(cWindowFocusEvent), cWindowFocusEvent); + + InstallAndRegisterEventHandler(NewEventHandlerUPP(HandleOOoSalUserEvent), 1, &cOOoSalUserEvent); + InstallAndRegisterEventHandler(NewEventHandlerUPP(HandleOOoSalTimerEvent), 1, &cOOoSalTimerEvent); + + // do not register for paint events as this would result in no draw content events during resize anymore + // draw content events, however, are more effective as they do not require a full window repaint + //InstallAndRegisterEventHandler(NewEventHandlerUPP(HandleWindowPaintEvent), 1, &cWindowPaintEvent); + InstallAndRegisterEventHandler(NewEventHandlerUPP(HandleWindowDrawContentEvent), 1, &cWindowDrawContentEvent); + + InstallAndRegisterEventHandler(NewEventHandlerUPP(HandleWindowActivatedEvent), 1, &cWindowActivatedEvent); + InstallAndRegisterEventHandler(NewEventHandlerUPP(HandleMouseEvent), GetEventTypeCount(cMouseEvent), cMouseEvent); + InstallAndRegisterEventHandler(NewEventHandlerUPP(HandleMouseWheelMovedEvent), 1, &cMouseWheelMovedEvent); + InstallAndRegisterEventHandler(NewEventHandlerUPP(HandleWindowResizeStarted), 1, &cWindowResizeStarted); + InstallAndRegisterEventHandler(NewEventHandlerUPP(HandleWindowResizeCompleted), 1, &cWindowResizeCompleted); + + /* Menu event handlers */ + + InstallAndRegisterEventHandler(NewEventHandlerUPP(HandleCommandProcessEvent), 1, &cCommandProcessEvent); + InstallAndRegisterEventHandler(NewEventHandlerUPP(HandleMenuPopulateEvent), 1, &cMenuPopulateEvent); + InstallAndRegisterEventHandler(NewEventHandlerUPP(HandleMenuClosedEvent), 1, &cMenuClosedEvent); + InstallAndRegisterEventHandler(NewEventHandlerUPP(HandleMenuTargetItemEvent), 1, &cMenuTargetItemEvent); + + /* Keyboard event handlers*/ + +#if 0 + InstallAndRegisterEventHandler(NewEventHandlerUPP(HandleKeyboardEvent), GetEventTypeCount(cKeyboardRawKeyEvents), cKeyboardRawKeyEvents); +#else + // TSM! + InstallAndRegisterEventHandler(NewEventHandlerUPP(HandleTSMEvent), GetEventTypeCount(cTextInputEvents), cTextInputEvents); +#endif + +} + +OSStatus AquaSalFrame::InstallAndRegisterEventHandler(EventHandlerUPP upp, size_t nEvents, const EventTypeSpec* eventSpec) +{ + EventHandlerRef evtHandler; + OSStatus rc = InstallWindowEventHandler(mrWindow, upp, nEvents, eventSpec, this, &evtHandler); + + if (rc == noErr) + mSysWindowEventHandlerDataContainer.push_back(make_pair(upp, evtHandler)); + + return rc; +} + +void AquaSalFrame::DeinstallAndUnregisterAllEventHandler() +{ + SysWindowEventHandlerDataContainer_t::iterator iter = mSysWindowEventHandlerDataContainer.begin(); + SysWindowEventHandlerDataContainer_t::iterator iter_end = mSysWindowEventHandlerDataContainer.end(); + for (/*NOP*/; iter != iter_end; ++iter) + { + DisposeEventHandlerUPP((*iter).first); + RemoveEventHandler((*iter).second); + } + mSysWindowEventHandlerDataContainer.clear(); +} + +OSStatus GetOptimalWindowSize(Rect* rect) +{ + OSStatus err = noErr; + + BOOST_ASSERT(rect != NULL && "Precondition violated"); + + // [FIXME] : define better the main window size and implement screen detection + // In multiscreen mode, the fullscreen always fill the active windows + Rect aRect; + ImplSalCalcFullScreenSize( NULL, &aRect ); + + rect->left = aRect.left + floor( 0.10 * (aRect.right - aRect.left) ); + rect->right = aRect.right - floor( 0.10 * (aRect.right - aRect.left) ); + rect->top = aRect.top + floor( 0.10 * (aRect.bottom - aRect.top) ); + rect->bottom = aRect.bottom - floor( 0.10 * (aRect.bottom - aRect.top) ); + + return err; +} + +void AquaSalFrame::ActivateTSM() +{ + fprintf(stderr, ">*>_> %s\n",__func__); + if (maTsmDocumentId) + ActivateTSMDocument(maTsmDocumentId); +} + +void AquaSalFrame::DeactivateTSM() +{ + fprintf(stderr, ">*>_> %s\n",__func__); + if (maTsmDocumentId) + DeactivateTSMDocument(maTsmDocumentId); +} + +void AquaSalFrame::ResetClipRegion() +{ + /* FIXME: implement */ +} + +void AquaSalFrame::BeginSetClipRegion( ULONG nRects ) +{ + /* FIXME: implement */ +} + +void AquaSalFrame::UnionClipRegion( long nX, long nY, long nWidth, long nHeight ) +{ + /* FIXME: implement */ +} + +void AquaSalFrame::EndSetClipRegion() +{ + /* FIXME: implement */ } diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/window/salmenu.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/window/salmenu.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/window/salmenu.cxx 1970-01-01 01:00:00.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/window/salmenu.cxx 2007-02-18 22:17:34.000000000 +0100 @@ -0,0 +1,373 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile$ + * + * $Revision$ + * + * last change: $Author$ $Date$ + * + * 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 _SV_SALDATA_HXX +#include +#endif +#ifndef _SV_SALINST_H +#include +#endif +#ifndef _SV_SALMENU_H +#include +#endif +#ifndef _SV_IMPBMP_HXX +#include +#endif + +#define XUBSTRINGTOCFSTRING(string) \ + CFStringCreateWithCString(NULL, \ + ByteString( (string), RTL_TEXTENCODING_UTF8).GetBuffer(), \ + kCFStringEncodingUTF8) + +// nPos is 0 based, MenuItemIndex is 1 based +#define GETITEMINDEXBYPOS(nPos) (nPos+1) + +// ======================================================================= + +SalMenu* AquaSalInstance::CreateMenu( BOOL bMenuBar ) +{ + AquaSalMenu *pAquaSalMenu = new AquaSalMenu(); + static MenuID inMenuID=0; + + pAquaSalMenu->mbMenuBar = bMenuBar; + + CreateNewMenu (inMenuID++, 0, &pAquaSalMenu->mrMenuRef); + + /* Associate the pointer to this SalMenu with the menu */ + SetMenuItemProperty (pAquaSalMenu->mrMenuRef, 0, + APP_PROPERTY_CREATOR, APP_PROPERTY_TAG_MENU_POINTER, + sizeof(pAquaSalMenu), &pAquaSalMenu); + + return pAquaSalMenu; +} + +void AquaSalInstance::DestroyMenu( SalMenu* pSalMenu ) +{ + + AquaSalMenu *pAquaSalMenu = (AquaSalMenu *) pSalMenu; + + RemoveMenuItemProperty (pAquaSalMenu->mrMenuRef, 0, + APP_PROPERTY_CREATOR, APP_PROPERTY_TAG_MENU_POINTER); + delete pSalMenu; +} + +SalMenuItem* AquaSalInstance::CreateMenuItem( const SalItemParams* pItemData ) +{ + if( !pItemData ) + return NULL; + + AquaSalMenuItem *pSalMenuItem = new AquaSalMenuItem(); + + pSalMenuItem->maMenuAttributes = 0; + pSalMenuItem->mpSubMenu = NULL; + pSalMenuItem->mnId = pItemData->nId; + pSalMenuItem->mText = pItemData->aText; + + // Delete mnemonics + pSalMenuItem->mText.EraseAllChars( '~' ); + + pSalMenuItem->mpMenu = pItemData->pMenu; + + if (pItemData->eType == MENUITEM_SEPARATOR) + pSalMenuItem->maMenuAttributes |= kMenuItemAttrSeparator; + + return pSalMenuItem; +} + +void AquaSalInstance::DestroyMenuItem( SalMenuItem* pSalMenuItem ) +{ + delete pSalMenuItem; +} + + +// ======================================================================= + + +/* + * AquaSalMenu + */ + +AquaSalMenu::~AquaSalMenu() +{ + if (this->mrMenuRef) + { + DisposeMenu(this->mrMenuRef); + } +} + +BOOL AquaSalMenu::VisibleMenuBar() +{ + // Enable/disable experimental native menus code? + // + // To enable, set the environment variable AQUA_NATIVE_MENUS to TRUE + + static const char *pExperimental = getenv ("AQUA_NATIVE_MENUS"); + + if ( !pExperimental || strcasecmp(pExperimental, "TRUE") ) + return FALSE; + + // End of experimental code enable/disable part + + return TRUE; +} + +void AquaSalMenu::SetFrame( const SalFrame *pFrame ) +{ + fprintf(stderr, ">*>_> %s\n",__func__); +} + +void AquaSalMenu::InsertItem( SalMenuItem* pSalMenuItem, unsigned nPos ) +{ + AquaSalMenuItem *pAquaSalMenuItem = (AquaSalMenuItem *) pSalMenuItem; + + // save MenuRef of the menu for future reference + pAquaSalMenuItem->mrParentMenuRef = mrMenuRef; + + if (mbMenuBar) + AppendMenuItemTextWithCFString( mrMenuRef, NULL, pAquaSalMenuItem->maMenuAttributes, 0, &pAquaSalMenuItem->mnMenuItemIndex); + else + { + CFStringRef menuText = XUBSTRINGTOCFSTRING(pAquaSalMenuItem->mText); + + AppendMenuItemTextWithCFString( mrMenuRef, menuText, pAquaSalMenuItem->maMenuAttributes, 0, &pAquaSalMenuItem->mnMenuItemIndex); + CFRelease(menuText); + } + + /* Associate the pointer to this SalMenuItem with the menu item */ + SetMenuItemProperty (mrMenuRef, pAquaSalMenuItem->mnMenuItemIndex, + APP_PROPERTY_CREATOR, APP_PROPERTY_TAG_MENU_ITEM_POINTER, + sizeof(pSalMenuItem), &pSalMenuItem); +} + +void AquaSalMenu::RemoveItem( unsigned nPos ) +{ + if (mrMenuRef) + DeleteMenuItem (mrMenuRef, GETITEMINDEXBYPOS(nPos)); +} + +void AquaSalMenu::SetSubMenu( SalMenuItem* pSalMenuItem, SalMenu* pSubMenu, unsigned nPos ) +{ + AquaSalMenuItem *pAquaSalMenuItem = (AquaSalMenuItem *) pSalMenuItem; + + AquaSalMenu *subAquaSalMenu = (AquaSalMenu *) pSubMenu; + + // FIXME: in svtools - workben - svdem, pSubMenu is NULL! + if (subAquaSalMenu) + { + CFStringRef menuText = XUBSTRINGTOCFSTRING(pAquaSalMenuItem->mText); + + pAquaSalMenuItem->mpSubMenu = pSubMenu; + SetMenuTitleWithCFString(subAquaSalMenu->mrMenuRef, menuText); + CFRelease(menuText); + SetMenuItemHierarchicalMenu (mrMenuRef, pAquaSalMenuItem->mnMenuItemIndex, subAquaSalMenu->mrMenuRef); + } +} + +void AquaSalMenu::CheckItem( unsigned nPos, BOOL bCheck ) +{ + CheckMenuItem(this->mrMenuRef, GETITEMINDEXBYPOS(nPos), bCheck); +} + +void AquaSalMenu::EnableItem( unsigned nPos, BOOL bEnable ) +{ + if (bEnable) + EnableMenuItem(this->mrMenuRef, GETITEMINDEXBYPOS(nPos)); + else + DisableMenuItem(this->mrMenuRef, GETITEMINDEXBYPOS(nPos)); +} + +void AquaSalMenu::SetItemImage( unsigned nPos, SalMenuItem* pSalMenuItem, const Image& rImage ) +{ + fprintf(stderr, ">*>_> %s\n",__func__); + + if (!pSalMenuItem) + return; + + AquaSalMenuItem *pAquaSalMenuItem = static_cast(pSalMenuItem); + + BitmapEx aBitmapEx = rImage.GetBitmapEx(); + aBitmapEx.Mirror(BMP_MIRROR_VERT); + + pAquaSalMenuItem->maBitmap = aBitmapEx.GetBitmap(); + + Bitmap aBitmap (pAquaSalMenuItem->maBitmap); + + ImpBitmap *aImpBitmap = aBitmap.ImplGetImpBitmap(); + + if (aImpBitmap) + { + AquaSalBitmap *pSalBmp = static_cast(aImpBitmap->ImplGetSalBitmap()); + CGImageRef xImage = NULL; + + // check alpha + if (aBitmapEx.IsAlpha()) + { + AquaSalBitmap *pSalMask = static_cast(aBitmapEx.GetAlpha().GetBitmap().ImplGetImpBitmap()->ImplGetSalBitmap()); + + if (pSalMask) + xImage = pSalBmp->CreateWithMask ( *pSalMask, 0, 0, pSalBmp->mnWidth, pSalBmp->mnHeight); + } + + if (!xImage) + xImage = pSalBmp->CreateCroppedImage( 0, 0, pSalBmp->mnWidth, pSalBmp->mnHeight ); + + SetMenuItemIconHandle(mrMenuRef, pAquaSalMenuItem->mnMenuItemIndex, kMenuCGImageRefType, (Handle)xImage); + + CGImageRelease(xImage); + } +} + +void AquaSalMenu::SetItemText( unsigned nPos, SalMenuItem* pSalMenuItem, const XubString& rText ) +{ + if (!pSalMenuItem) + return; + + AquaSalMenuItem *pAquaSalMenuItem = (AquaSalMenuItem *) pSalMenuItem; + + pAquaSalMenuItem->mText = rText; + + // Delete mnemonics + pAquaSalMenuItem->mText.EraseAllChars( '~' ); + + CFStringRef menuText = XUBSTRINGTOCFSTRING(pAquaSalMenuItem->mText); + + SetMenuItemTextWithCFString( mrMenuRef, pAquaSalMenuItem->mnMenuItemIndex, menuText); + + // if the menu item has a submenu, change its title as well + if (pAquaSalMenuItem->mpSubMenu) + { + AquaSalMenu *subMenu = (AquaSalMenu *) pAquaSalMenuItem->mpSubMenu; + SetMenuTitleWithCFString(subMenu->mrMenuRef, menuText); + } + CFRelease(menuText); +} + +void AquaSalMenu::SetAccelerator( unsigned nPos, SalMenuItem* pSalMenuItem, const KeyCode& rKeyCode, const XubString& rKeyName ) +{ + fprintf(stderr, ">*>_> %s\n",__func__); + + USHORT nModifier; + int nCommandKey = -1, nKeyGlyph = -1; + + if (rKeyCode.GetCode()) + { + USHORT nKeyCode=rKeyCode.GetCode(); + + if ((nKeyCode>=KEY_A) && (nKeyCode<=KEY_Z)) // letter A..Z + nCommandKey=nKeyCode-KEY_A+'A'; + else if ((nKeyCode>=KEY_0) && (nKeyCode<=KEY_9)) // numbers 0..9 + nCommandKey=nKeyCode-KEY_0+'0'; + else if ((nKeyCode>=KEY_F1) && (nKeyCode<=KEY_F12)) // function keys F1..F12 + nKeyGlyph=kMenuF1Glyph+nKeyCode-KEY_F1; // only for n<13! + else if ((nKeyCode>=KEY_F13) && (nKeyCode<=KEY_F15)) + nKeyGlyph=kMenuF13Glyph+nKeyCode-KEY_F13; // function keys F13, F14, F15 + else if (nKeyCode==KEY_SPACE) + nKeyGlyph=kMenuSpaceGlyph; + else + switch (nKeyCode) + { + case KEY_ADD: + nCommandKey='+'; + break; + case KEY_SUBTRACT: + nCommandKey='-'; + break; + case KEY_MULTIPLY: + nCommandKey='*'; + break; + case KEY_DIVIDE: + nCommandKey='/'; + break; + case KEY_POINT: + nCommandKey='.'; + break; + case KEY_LESS: + nCommandKey='<'; + break; + case KEY_GREATER: + nCommandKey='>'; + break; + case KEY_EQUAL: + nCommandKey='='; + break; + } + + if (nCommandKey > -1) + SetMenuItemCommandKey (mrMenuRef, GETITEMINDEXBYPOS(nPos), 0, nCommandKey); + + if (nKeyGlyph > -1) + SetMenuItemKeyGlyph (mrMenuRef, GETITEMINDEXBYPOS(nPos), nKeyGlyph); + + if((nKeyGlyph <= -1) && (nCommandKey <= -1)) + fprintf(stderr, "%s: Couldn't process rKeyCode.GetCode()=%d\n",__func__, rKeyCode.GetCode()); + } + + nModifier=rKeyCode.GetAllModifier(); + + int nItemModifier = kMenuNoCommandModifier; + + if (nModifier & KEY_MOD1) + nItemModifier = kMenuNoModifiers; // for the cmd key + // = and not += because should replace kMenuNoCommandModifier + + if (nModifier & KEY_SHIFT) + nItemModifier += kMenuShiftModifier; + + if (nModifier & KEY_MOD5) + //should use mod3 or 2 + nItemModifier += kMenuOptionModifier; // for the ALT key + + if(nModifier & KEY_MOD2) + nItemModifier += kMenuControlModifier; // maybe for the ctrl key + + SetMenuItemModifiers (mrMenuRef, GETITEMINDEXBYPOS(nPos), nItemModifier); +} + +void AquaSalMenu::GetSystemMenuData( SystemMenuData* pData ) +{ + fprintf(stderr, ">*>_> %s\n",__func__); +} + +// ======================================================================= + +/* + * SalMenuItem + */ + +AquaSalMenuItem::~AquaSalMenuItem() +{ +} + +// ------------------------------------------------------------------- diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/aqua/source/window/salobj.cxx ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/window/salobj.cxx --- ooo_SRC680_m202_src.orig/vcl/aqua/source/window/salobj.cxx 2006-09-17 13:46:32.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/aqua/source/window/salobj.cxx 2006-10-13 23:56:48.000000000 +0200 @@ -41,8 +41,8 @@ #ifndef _SV_SALDATA_HXX #include #endif -#ifndef _SV_SALOBJ_HXX -#include +#ifndef _SV_SALOBJ_H +#include #endif // ======================================================================= @@ -54,118 +54,118 @@ // ======================================================================= -SalObject::SalObject() +AquaSalObject::AquaSalObject() { SalData* pSalData = GetSalData(); - maObjectData.mpFrame = NULL; - maObjectData.mpInst = NULL; - maObjectData.mpProc = ImplSalObjectCallbackDummy; + mpFrame = NULL; + mpInst = NULL; + mpProc = ImplSalObjectCallbackDummy; // Insert object in objectlist - maObjectData.mpNextObject = pSalData->mpFirstObject; + mpNextObject = (AquaSalObject*)pSalData->mpFirstObject; pSalData->mpFirstObject = this; } // ----------------------------------------------------------------------- -SalObject::~SalObject() +AquaSalObject::~AquaSalObject() { SalData* pSalData = GetSalData(); // remove frame from framelist if ( this == pSalData->mpFirstObject ) - pSalData->mpFirstObject = maObjectData.mpNextObject; + pSalData->mpFirstObject = mpNextObject; else { - SalObject* pTempObject = pSalData->mpFirstObject; - while ( pTempObject->maObjectData.mpNextObject != this ) - pTempObject = pTempObject->maObjectData.mpNextObject; - pTempObject->maObjectData.mpNextObject = maObjectData.mpNextObject; + AquaSalObject* pTempObject = (AquaSalObject*)pSalData->mpFirstObject; + while ( pTempObject->mpNextObject != this ) + pTempObject = pTempObject->mpNextObject; + pTempObject->mpNextObject = mpNextObject; } } // ----------------------------------------------------------------------- -void SalObject::ResetClipRegion() +void AquaSalObject::ResetClipRegion() { } // ----------------------------------------------------------------------- -USHORT SalObject::GetClipRegionType() +USHORT AquaSalObject::GetClipRegionType() { return SAL_OBJECT_CLIP_INCLUDERECTS; } // ----------------------------------------------------------------------- -void SalObject::BeginSetClipRegion( ULONG nRectCount ) +void AquaSalObject::BeginSetClipRegion( ULONG nRectCount ) { } // ----------------------------------------------------------------------- -void SalObject::UnionClipRegion( long nX, long nY, long nWidth, long nHeight ) +void AquaSalObject::UnionClipRegion( long nX, long nY, long nWidth, long nHeight ) { } // ----------------------------------------------------------------------- -void SalObject::EndSetClipRegion() +void AquaSalObject::EndSetClipRegion() { } // ----------------------------------------------------------------------- -void SalObject::SetPosSize( long nX, long nY, long nWidth, long nHeight ) +void AquaSalObject::SetPosSize( long nX, long nY, long nWidth, long nHeight ) { } // ----------------------------------------------------------------------- -void SalObject::Show( BOOL bVisible ) +void AquaSalObject::Show( BOOL bVisible ) { } // ----------------------------------------------------------------------- -void SalObject::Enable( BOOL bEnable ) +void AquaSalObject::Enable( BOOL bEnable ) { } // ----------------------------------------------------------------------- -void SalObject::GrabFocus() +void AquaSalObject::GrabFocus() { } // ----------------------------------------------------------------------- -void SalObject::SetBackground() +void AquaSalObject::SetBackground() { } // ----------------------------------------------------------------------- -void SalObject::SetBackground( SalColor nSalColor ) +void AquaSalObject::SetBackground( SalColor nSalColor ) { } // ----------------------------------------------------------------------- -const SystemEnvData* SalObject::GetSystemData() const +const SystemEnvData* AquaSalObject::GetSystemData() const { return NULL; } // ----------------------------------------------------------------------- -void SalObject::SetCallback( void* pInst, SALOBJECTPROC pProc ) +void AquaSalObject::SetCallback( void* pInst, SALOBJECTPROC pProc ) { - maObjectData.mpInst = pInst; + mpInst = pInst; if ( pProc ) - maObjectData.mpProc = pProc; + mpProc = pProc; else - maObjectData.mpProc = ImplSalObjectCallbackDummy; + mpProc = ImplSalObjectCallbackDummy; } diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/inc/bitmap.hxx ooo_SRC680_m202_src.aquavcl01/vcl/inc/bitmap.hxx --- ooo_SRC680_m202_src.orig/vcl/inc/bitmap.hxx 2006-12-13 15:59:58.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/vcl/inc/bitmap.hxx 2007-01-25 14:07:57.000000000 +0100 @@ -260,6 +260,8 @@ #if defined WNT void* pDIB; // device independent byte buffer void* pDDB; // if not NULL then this is actually an HBITMAP + #elif defined( QUARTZ ) + void* pImageData; #else void* aPixmap; #endif diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/inc/sysdata.hxx ooo_SRC680_m202_src.aquavcl01/vcl/inc/sysdata.hxx --- ooo_SRC680_m202_src.orig/vcl/inc/sysdata.hxx 2006-02-28 11:46:12.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/vcl/inc/sysdata.hxx 2006-12-30 20:25:28.000000000 +0100 @@ -36,6 +36,12 @@ #ifndef _SV_SYSDATA_HXX #define _SV_SYSDATA_HXX +#if defined( QUARTZ ) +#include +#include +#include +#endif + // ----------------- // - SystemEnvData - // ----------------- @@ -45,6 +51,8 @@ unsigned long nSize; // size in bytes of this structure #if defined( WNT ) HWND hWnd; // the window hwnd +#elif defined( QUARTZ ) + WindowRef rWindow; // Window reference #elif defined( UNX ) void* pDisplay; // the relevant display connection long aWindow; // the window of the object @@ -70,6 +78,8 @@ unsigned long nSize; // size in bytes of this structure #if defined( WNT ) HWND hWnd; // the window hwnd +#elif defined( QUARTZ ) + WindowRef rWindow; // Window reference #elif defined( UNX ) long aWindow; // the window of the object #endif @@ -98,6 +108,8 @@ unsigned long nSize; // size in bytes of this structure #if defined( WNT ) HDC hDC; // handle to a device context +#elif defined( QUARTZ ) + CGContextRef rCGContext; // QUARTZ graphic context #elif defined( UNX ) long hDrawable; // a drawable void* pRenderFormat; // render format for drawable @@ -113,6 +125,7 @@ { unsigned long nSize; // size in bytes of this structure #if defined( WNT ) // meaningless on Windows +#elif defined( QUARTZ ) // meaningless on Mac OS X / Quartz #elif defined( UNX ) void* pVisual; // the visual to be used #endif diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/prj/build.lst ooo_SRC680_m202_src.aquavcl01/vcl/prj/build.lst --- ooo_SRC680_m202_src.orig/vcl/prj/build.lst 2006-12-12 17:09:07.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/vcl/prj/build.lst 2007-01-25 14:09:25.000000000 +0100 @@ -1,4 +1,4 @@ -vc vcl : BOOST:boost NAS:nas FREETYPE:freetype psprint rsc sot ucbhelper unotools rvpapi ICU:icu i18npool unoil ridljar X11_EXTENSIONS:x11_extensions offuh basegfx SNDFILE:sndfile PORTAUDIO:portaudio transex3 NULL +vc vcl : BOOST:boost NAS:nas FREETYPE:freetype psprint rsc sot ucbhelper unotools rvpapi ICU:icu i18npool unoil ridljar X11_EXTENSIONS:x11_extensions offuh basegfx SNDFILE:sndfile PORTAUDIO:portaudio transex3 basebmp NULL vc vcl usr1 - all vc_mkout NULL vc vcl\inc nmake - all vc_inc NULL vc vcl\source\glyphs nmake - all vc_glyphs vc_inc NULL @@ -30,5 +30,5 @@ vc vcl\mac\source\gdi nmake - m vc__gdim vc_inc NULL vc vcl\mac\source\window nmake - m vc__winm vc_inc NULL vc vcl\mac\source\src nmake - m vc__srcm vc_inc NULL -vc vcl\util nmake - all vc_util vc__plug.u vc__appa.u vc__appm.m vc__appu.u vc__appw.w vc__gdim.m vc__gdiu.u vc__gdiw.w vc__srcm.m vc__srcw.w vc__wina.u vc__winm.m vc__winu.u vc__winw.w vc__du.u vc__gtka.u vc__gtky.u vc__gtkw.u vc__gtkg.u vc__kde.u vc_app vc_ctrl vc_gdi vc_hlp vc_src vc_win vc_glyphs vc_components NULL +vc vcl\util nmake - all vc_util vc__plug.u vc__appa.u vc__appm.m vc__appu.u vc__appw.w vc__gdia.u vc__gdim.m vc__gdiu.u vc__gdiw.w vc__srcm.m vc__srcw.w vc__wina.u vc__winm.m vc__winu.u vc__winw.w vc__du.u vc__gtka.u vc__gtky.u vc__gtkw.u vc__gtkg.u vc__kde.u vc_app vc_ctrl vc_gdi vc_hlp vc_src vc_win vc_glyphs vc_components NULL vc vcl\workben nmake - all vc_wrkb vc_util NULL diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/source/app/settings.cxx ooo_SRC680_m202_src.aquavcl01/vcl/source/app/settings.cxx --- ooo_SRC680_m202_src.orig/vcl/source/app/settings.cxx 2006-10-11 10:19:40.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/source/app/settings.cxx 2006-11-07 20:03:28.000000000 +0100 @@ -79,8 +79,10 @@ #endif #ifdef UNX +#if !defined(QUARTZ) #include #include +#endif #include #include #endif diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/source/app/svmainhook.cxx ooo_SRC680_m202_src.aquavcl01/vcl/source/app/svmainhook.cxx --- ooo_SRC680_m202_src.orig/vcl/source/app/svmainhook.cxx 2006-09-17 13:50:19.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/source/app/svmainhook.cxx 2006-11-02 09:48:08.000000000 +0100 @@ -48,6 +48,49 @@ } #else +#ifdef QUARTZ // only Mac OS X / X11 needs this trick, the Aqua version has its own native event loop +#include +//#include +#include +#include +#include + +extern BOOL ImplSVMain(); + +static BOOL* gpbInit = 0; + +static pascal void MainRunLoopForThreadedApps( EventLoopTimerRef inTimer, void *inUserData ) +{ + fprintf(stderr,">>>> MainRunLoopForThreadedApps()\n"); + + BOOL bRet = ImplSVMain(); + if( gpbInit ) + *gpbInit = bRet; + + QuitApplicationEventLoop(); + + fprintf(stderr,"<<<< MainRunLoopForThreadedApps()\n"); +} + +BOOL ImplSVMainHook( BOOL * pbInit ) +{ + fprintf(stderr,">>>> ImplSVMainHook()\n"); + + gpbInit = pbInit; + + EventLoopTimerRef aMainRunLoopTimerRef; + (void) InstallEventLoopTimer( GetCurrentEventLoop(), 0, 0, NewEventLoopTimerUPP( MainRunLoopForThreadedApps ), NULL, &aMainRunLoopTimerRef ); + + // We really only call RunApplicationEventLoop() to install the default CarbonEvent handlers. Once the timer installed above + // fires, we remain in the MainRunLoopForThreadedApps() routine which is designed to yield to other cooperative threads. + RunApplicationEventLoop(); + + fprintf(stderr,"<<<<< ImplSVMainHook()\n"); + + return TRUE; // indicate that ImplSVMainHook is implemented +} + +#else // MACOSX (X11) needs the CFRunLoop() #include #include #include @@ -122,3 +165,4 @@ } #endif // MACOSX +#endif diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/source/window/javachild.cxx ooo_SRC680_m202_src.aquavcl01/vcl/source/window/javachild.cxx --- ooo_SRC680_m202_src.orig/vcl/source/window/javachild.cxx 2006-09-17 14:19:00.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/source/window/javachild.cxx 2006-12-30 20:33:58.000000000 +0100 @@ -134,6 +134,8 @@ #if defined WNT nRet = reinterpret_cast< sal_Int32 >( GetSystemData()->hWnd ); +#elif defined QUARTZ + nRet = reinterpret_cast< sal_IntPtr >( GetSystemData()->rWindow ); #elif defined UNX #ifdef SOLAR_JAVA uno::Reference< lang::XMultiServiceFactory > xFactory( vcl::unohelper::GetMultiServiceFactory() ); @@ -213,7 +215,7 @@ } } #endif // SOLAR_JAVA -#else // WNT || UNX +#else // WNT || QUARTZ || UNX // TBD #endif diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/source/window/window.cxx ooo_SRC680_m202_src.aquavcl01/vcl/source/window/window.cxx --- ooo_SRC680_m202_src.orig/vcl/source/window/window.cxx 2007-01-29 17:04:40.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/vcl/source/window/window.cxx 2007-02-02 12:08:40.000000000 +0100 @@ -8325,6 +8325,13 @@ aDropTargetSN = OUString::createFromAscii( "com.sun.star.datatransfer.dnd.OleDropTarget" ); aDragSourceAL[ 1 ] = makeAny( (sal_uInt32) pEnvData->hWnd ); aDropTargetAL[ 0 ] = makeAny( (sal_uInt32) pEnvData->hWnd ); +#elif defined QUARTZ + /* FIXME: Mac OS X specific dnd interface does not exist! * + * Using Windows based dnd as a temporary solution */ + aDragSourceSN = OUString::createFromAscii( "com.sun.star.datatransfer.dnd.OleDragSource" ); + aDropTargetSN = OUString::createFromAscii( "com.sun.star.datatransfer.dnd.OleDropTarget" ); + aDragSourceAL[ 1 ] = makeAny( (sal_uInt32) pEnvData->rWindow ); + aDropTargetAL[ 0 ] = makeAny( (sal_uInt32) pEnvData->rWindow ); #elif defined UNX aDropTargetAL.realloc( 3 ); aDragSourceAL.realloc( 3 ); @@ -9397,6 +9404,10 @@ // take HWND for Windows if( pSysData ) aArg[ 1 ] = makeAny( reinterpret_cast(pSysData->hWnd) ); +#elif defined( QUARTZ ) + // take WindowRef for Mac OS X / Quartz + if( pSysData ) + aArg[ 1 ] = makeAny( reinterpret_cast(pSysData->rWindow) ); #elif defined( UNX ) // take XLIB window for X11, and fake a motif widget ID from // that. diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/util/defs/wntmsci7 ooo_SRC680_m202_src.aquavcl01/vcl/util/defs/wntmsci7 --- ooo_SRC680_m202_src.orig/vcl/util/defs/wntmsci7 2002-09-12 16:56:36.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/util/defs/wntmsci7 1970-01-01 01:00:00.000000000 +0100 @@ -1,8165 +0,0 @@ -??0AccessNotification@@QAE@KJJJ@Z -??0AccessNotification@@QAE@KPBVMenu@@@Z -??0AccessNotification@@QAE@KPBVToolBox@@@Z -??0AccessNotification@@QAE@KPBVWindow@@@Z -??0AccessObject@@QAE@PAXKJJJ@Z -??1AccessNotification@@QAE@XZ -??1AccessObject@@UAE@XZ -??1AccessObjectRef@@QAE@XZ -??4AccessObjectRef@@QAEAAV0@ABV0@@Z -??_7AccessObject@@6B@ -??_7SvRefBase@@6B@ -??_GAccessObject@@UAEPAXI@Z -??_GSvRefBase@@MAEPAXI@Z -?AddRef@SvRefBase@@QAEKXZ -?CreateType@AccessObject@@SAPAXXZ -?Execute@AccessObject@@QAEXJ@Z -?GetAccessObject@AccessNotification@@QAE?AVAccessObjectRef@@XZ -?GetDescription@AccessObject@@QAE?AVString@@XZ -?GetHelpText@AccessObject@@QAE?AVString@@XZ -?GetQuickHelpText@AccessObject@@QAE?AVString@@XZ -?GetState@AccessObject@@QAE?AVString@@XZ -?GetText@AccessObject@@QAE?AVString@@XZ -?GetType@AccessObject@@QAE?AVString@@XZ -?GetValue@AccessObject@@QAE?AVString@@XZ -?ImplNavigateMenu@AccessObject@@AAE?AVAccessObjectRef@@PAVMenu@@W4AccNavigate@@@Z -?ImplNavigateMenuItem@AccessObject@@AAE?AVAccessObjectRef@@PAVMenu@@W4AccNavigate@@@Z -?ImplNavigateTabControl@AccessObject@@AAE?AVAccessObjectRef@@PAVTabControl@@W4AccNavigate@@@Z -?ImplNavigateWnd@AccessObject@@AAE?AVAccessObjectRef@@PAVWindow@@W4AccNavigate@@@Z -?IsA@AccessObject@@UBEEP6APAXXZ@Z -?IsOf@AccessObject@@SAEP6APAXXZ@Z -?Navigate@AccessObject@@QAE?AVAccessObjectRef@@W4AccNavigate@@@Z -?StaticType@AccessObject@@SAP6APAXXZXZ -?Type@AccessObject@@UBEP6APAXXZXZ -??0DbgDialog@@QAE@XZ -??0DbgInfoDialog@@QAE@PAVWindow@@E@Z -??0DbgWindow@@QAE@XZ -??_7DbgDialog@@6B@ -??_7DbgInfoDialog@@6B@ -??_7DbgWindow@@6B@ -??_GDbgDialog@@UAEPAXI@Z -??_GDbgInfoDialog@@UAEPAXI@Z -??_GDbgWindow@@UAEPAXI@Z -?ClickHdl@DbgDialog@@QAEJPAVButton@@@Z -?Close@DbgWindow@@UAEEXZ -?DbgDialogTest@@YAXPAVWindow@@@Z -?DbgGUIDeInit@@YAXXZ -?DbgGUIInit@@YAXXZ -?DbgGUIStart@@YAXXZ -?DbgPrintMsgBox@@YAXPBD@Z -?DbgPrintShell@@YAXPBD@Z -?DbgPrintWindow@@YAXPBD@Z -?InsertLine@DbgWindow@@QAEXABVString@@@Z -?LinkStubClickHdl@DbgDialog@@SAJPAX0@Z -?RequestHelp@DbgDialog@@UAEXABVHelpEvent@@@Z -?Resize@DbgWindow@@UAEXXZ -?SetInfoText@DbgInfoDialog@@QAEXABVString@@@Z -??0Help@@QAE@XZ -??0HelpTextWindow@@QAE@PAVWindow@@ABVString@@GG@Z -??0Rectangle@@QAE@ABVPoint@@ABVSize@@@Z -??1HelpTextWindow@@UAE@XZ -??_7Help@@6B@ -??_7HelpTextWindow@@6B@ -??_GHelpTextWindow@@UAEPAXI@Z -?CalcOutSize@HelpTextWindow@@QBE?AVSize@@XZ -?DisableBalloonHelp@Help@@SAXXZ -?DisableContextHelp@Help@@SAXXZ -?DisableExtHelp@Help@@SAXXZ -?DisableQuickHelp@Help@@SAXXZ -?EnableBalloonHelp@Help@@SAXXZ -?EnableContextHelp@Help@@SAXXZ -?EnableExtHelp@Help@@SAXXZ -?EnableQuickHelp@Help@@SAXXZ -?EndExtHelp@Help@@SAEXZ -?GetHelpText@Help@@UAE?AVString@@KPBVWindow@@@Z -?GetOutputSizePixel@OutputDevice@@QBE?AVSize@@XZ -?HideTip@Help@@SAXK@Z -?ImplDestroyHelpWindow@@YAXE@Z -?ImplSetHelpWindowPos@@YAXPAVWindow@@GGABVPoint@@PBVRectangle@@@Z -?ImplShow@HelpTextWindow@@IAEXXZ -?ImplShowHelpWindow@@YAXPAVWindow@@GGABVString@@1ABVPoint@@PBVRectangle@@@Z -?IsBalloonHelpEnabled@Help@@SAEXZ -?IsContextHelpEnabled@Help@@SAEXZ -?IsExtHelpActive@Help@@SAEXZ -?IsExtHelpEnabled@Help@@SAEXZ -?IsQuickHelpEnabled@Help@@SAEXZ -?LinkStubTimerHdl@HelpTextWindow@@KAJPAX0@Z -?Paint@HelpTextWindow@@MAEXABVRectangle@@@Z -?RequestHelp@HelpTextWindow@@MAEXABVHelpEvent@@@Z -?ShowBalloon@Help@@SAEPAVWindow@@ABVPoint@@ABVRectangle@@ABVString@@@Z -?ShowBalloon@Help@@SAEPAVWindow@@ABVPoint@@ABVString@@@Z -?ShowHelp@HelpTextWindow@@QAEXG@Z -?ShowQuickHelp@Help@@SAEPAVWindow@@ABVRectangle@@ABVString@@2G@Z -?ShowTip@Help@@SAKPAVWindow@@ABVRectangle@@ABVString@@G@Z -?Start@Help@@UAEEABVString@@PBVWindow@@@Z -?Start@Help@@UAEEKPBVWindow@@@Z -?StartContextHelp@Help@@SAEXZ -?StartExtHelp@Help@@SAEXZ -?TimerHdl@HelpTextWindow@@IAEJPAVTimer@@@Z -??0ImplIdleMgr@@QAE@XZ -??1ImplIdleMgr@@QAE@XZ -?InsertIdleHdl@ImplIdleMgr@@QAEEABVLink@@G@Z -?LinkStubTimeoutHdl@ImplIdleMgr@@SAJPAX0@Z -?RemoveIdleHdl@ImplIdleMgr@@QAEXABVLink@@@Z -?TimeoutHdl@ImplIdleMgr@@QAEJPAVTimer@@@Z -??0WaitObject@@QAE@XZ -??_H@YGXPAXIHP6EX0@Z@Z -?AppEvent@Application@@UAEXABVApplicationEvent@@@Z -?CallEvent@ImplAppEventClass@@SAJPAV1@PAX@Z -?CreateFileDialog@Application@@UAEPAVVclFileDialog@@PAVWindow@@K@Z -?CreateType@ApplicationProperty@@SAPAXXZ -?DispatchAppEvents@Application@@SAGHQAPAD@Z -?DispatchAppEvents@Application@@SAGXZ -?EnterWait@Application@@SAXXZ -?GetBackgroundBrush@OutputDevice@@QBEABVBrush@@XZ -?GetFillInBrush@OutputDevice@@QBEABVBrush@@XZ -?GetPen@OutputDevice@@QBEABVPen@@XZ -?GetSolidColor@OutputDevice@@QBE?AVColor@@ABV2@@Z -?GetStandardFont@System@@SA?AVFont@@W4StandardFont@@@Z -?GetVCLFillColor@Brush@@QBE?AVColor@@XZ -?ImplPostAppEvent@@YAXPAVApplicationEvent@@@Z -?InvertRect@OutputDevice@@QAEXABVRectangle@@@Z -?IsA@ApplicationProperty@@UBEEP6APAXXZ@Z -?IsMaximized@WorkWindow@@QBEEXZ -?IsOf@ApplicationProperty@@SAEP6APAXXZ@Z -?IsWait@Application@@SAEXZ -?LeaveWait@Application@@SAXXZ -?Maximize@WorkWindow@@QAEXXZ -?Minimize@WorkWindow@@QAEXXZ -?Property@Application@@UAEXAAVApplicationProperty@@@Z -?Restore@WorkWindow@@QAEXXZ -?SetBackgroundBrush@OutputDevice@@QAEXABVBrush@@@Z -?SetFillInBrush@OutputDevice@@QAEXABVBrush@@@Z -?SetPen@OutputDevice@@QAEXABVPen@@@Z -?StartApplication@Application@@SAEABVString@@00PAVApplicationAddress@@@Z -?StaticType@ApplicationProperty@@SAP6APAXXZXZ -?Type@ApplicationProperty@@UBEP6APAXXZXZ -??0ResStringArray@@QAE@ABVResId@@@Z -??1ResStringArray@@QAE@XZ -?FindIndex@ResStringArray@@QBEGJ@Z -??0ResMgr@@QAE@PBVString@@@Z -?Create@SimpleResMgr@@SAPAV1@PBDG@Z -?CreateResMgr@ResMgr@@SAPAV1@PBDG@Z -?GetLang@ResMgr@@SAPBDG@Z -??0AllSettings@@QAE@ABV0@@Z -??0AllSettings@@QAE@XZ -??0HelpSettings@@QAE@ABV0@@Z -??0HelpSettings@@QAE@XZ -??0ImplAllSettingsData@@AAE@ABV0@@Z -??0ImplAllSettingsData@@AAE@XZ -??0ImplHelpData@@AAE@ABV0@@Z -??0ImplHelpData@@AAE@XZ -??0ImplKeyboardData@@AAE@ABV0@@Z -??0ImplKeyboardData@@AAE@XZ -??0ImplMachineData@@AAE@ABV0@@Z -??0ImplMachineData@@AAE@XZ -??0ImplMiscData@@AAE@ABV0@@Z -??0ImplMiscData@@AAE@XZ -??0ImplMouseData@@AAE@ABV0@@Z -??0ImplMouseData@@AAE@XZ -??0ImplNotificationData@@AAE@ABV0@@Z -??0ImplNotificationData@@AAE@XZ -??0ImplSoundData@@AAE@ABV0@@Z -??0ImplSoundData@@AAE@XZ -??0ImplStyleData@@AAE@ABV0@@Z -??0ImplStyleData@@AAE@XZ -??0KeyboardSettings@@QAE@ABV0@@Z -??0KeyboardSettings@@QAE@XZ -??0MachineSettings@@QAE@ABV0@@Z -??0MachineSettings@@QAE@XZ -??0MiscSettings@@QAE@ABV0@@Z -??0MiscSettings@@QAE@XZ -??0MouseSettings@@QAE@ABV0@@Z -??0MouseSettings@@QAE@XZ -??0NotificationSettings@@QAE@ABV0@@Z -??0NotificationSettings@@QAE@XZ -??0SoundSettings@@QAE@ABV0@@Z -??0SoundSettings@@QAE@XZ -??0StyleSettings@@QAE@ABV0@@Z -??0StyleSettings@@QAE@XZ -??1AllSettings@@QAE@XZ -??1HelpSettings@@QAE@XZ -??1KeyboardSettings@@QAE@XZ -??1MachineSettings@@QAE@XZ -??1MiscSettings@@QAE@XZ -??1MouseSettings@@QAE@XZ -??1NotificationSettings@@QAE@XZ -??1SoundSettings@@QAE@XZ -??1StyleSettings@@QAE@XZ -??4AllSettings@@QAEABV0@ABV0@@Z -??4HelpSettings@@QAEABV0@ABV0@@Z -??4KeyboardSettings@@QAEABV0@ABV0@@Z -??4MachineSettings@@QAEABV0@ABV0@@Z -??4MiscSettings@@QAEABV0@ABV0@@Z -??4MouseSettings@@QAEABV0@ABV0@@Z -??4NotificationSettings@@QAEABV0@ABV0@@Z -??4SoundSettings@@QAEABV0@ABV0@@Z -??4StyleSettings@@QAEABV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVAllSettings@@@Z -??5@YAAAVSvStream@@AAV0@AAVHelpSettings@@@Z -??5@YAAAVSvStream@@AAV0@AAVKeyboardSettings@@@Z -??5@YAAAVSvStream@@AAV0@AAVMachineSettings@@@Z -??5@YAAAVSvStream@@AAV0@AAVMiscSettings@@@Z -??5@YAAAVSvStream@@AAV0@AAVMouseSettings@@@Z -??5@YAAAVSvStream@@AAV0@AAVNotificationSettings@@@Z -??5@YAAAVSvStream@@AAV0@AAVSoundSettings@@@Z -??5@YAAAVSvStream@@AAV0@AAVStyleSettings@@@Z -??6@YAAAVSvStream@@AAV0@ABVAllSettings@@@Z -??6@YAAAVSvStream@@AAV0@ABVHelpSettings@@@Z -??6@YAAAVSvStream@@AAV0@ABVKeyboardSettings@@@Z -??6@YAAAVSvStream@@AAV0@ABVMachineSettings@@@Z -??6@YAAAVSvStream@@AAV0@ABVMiscSettings@@@Z -??6@YAAAVSvStream@@AAV0@ABVMouseSettings@@@Z -??6@YAAAVSvStream@@AAV0@ABVNotificationSettings@@@Z -??6@YAAAVSvStream@@AAV0@ABVSoundSettings@@@Z -??6@YAAAVSvStream@@AAV0@ABVStyleSettings@@@Z -??8AllSettings@@QBEEABV0@@Z -??8HelpSettings@@QBEEABV0@@Z -??8KeyboardSettings@@QBEEABV0@@Z -??8MachineSettings@@QBEEABV0@@Z -??8MiscSettings@@QBEEABV0@@Z -??8MouseSettings@@QBEEABV0@@Z -??8NotificationSettings@@QBEEABV0@@Z -??8SoundSettings@@QBEEABV0@@Z -??8StyleSettings@@QBEEABV0@@Z -?CopyData@AllSettings@@AAEXXZ -?CopyData@HelpSettings@@AAEXXZ -?CopyData@KeyboardSettings@@AAEXXZ -?CopyData@MachineSettings@@AAEXXZ -?CopyData@MiscSettings@@AAEXXZ -?CopyData@MouseSettings@@AAEXXZ -?CopyData@NotificationSettings@@AAEXXZ -?CopyData@SoundSettings@@AAEXXZ -?CopyData@StyleSettings@@AAEXXZ -?DbgName_AllSettings@@YAPAUDbgDataType@@XZ -?GetChangeFlags@AllSettings@@QBEKABV1@@Z -?GetLocale@AllSettings@@QBEABULocale@lang@star@sun@com@@XZ -?ImplCompareLocales@@YAEABULocale@lang@star@sun@com@@0@Z -?Set3DColors@StyleSettings@@QAEXABVColor@@@Z -?SetStandardMacStyles@ImplStyleData@@AAEXXZ -?SetStandardMacStyles@StyleSettings@@QAEXXZ -?SetStandardOS2Styles@ImplStyleData@@AAEXXZ -?SetStandardOS2Styles@StyleSettings@@QAEXXZ -?SetStandardStyles@ImplStyleData@@AAEXXZ -?SetStandardStyles@StyleSettings@@QAEXXZ -?SetStandardUnixStyles@ImplStyleData@@AAEXXZ -?SetStandardUnixStyles@StyleSettings@@QAEXXZ -?SetStandardWinStyles@ImplStyleData@@AAEXXZ -?SetStandardWinStyles@StyleSettings@@QAEXXZ -?Update@AllSettings@@QAEKKABV1@@Z -??0Sound@@QAE@PAVWindow@@@Z -??1Sound@@QAE@XZ -??_7Sound@@6B@ -?Beep@Sound@@SAXGPAVWindow@@@Z -?ClearError@Sound@@QAEXXZ -?GetSoundPath@Sound@@SAABVString@@XZ -?ImplNotify@Sound@@QAEXW4SoundNotification@@K@Z -?Notify@Sound@@UAEXXZ -?Pause@Sound@@QAEXXZ -?Play@Sound@@QAEXXZ -?SalSoundProc@@YAXPAXW4SoundNotification@@K@Z -?SetLoopMode@Sound@@QAEXE@Z -?SetPlayTime@Sound@@QAEXK@Z -?SetSoundData@Sound@@QAEEPBEK@Z -?SetSoundName@Sound@@QAEEABVString@@@Z -?SetSoundPath@Sound@@SAXABVString@@@Z -?SetStartTime@Sound@@QAEXK@Z -?Stop@Sound@@QAEXXZ -?GetStandardText@@YA?AVString@@G@Z -?ShowServiceNotAvailableError@@YAXPAVWindow@@ABVString@@E@Z -??0Application@@QAE@XZ -??0ClassData1@cppu@@QAE@J@Z -??1?$Reference@VXConnection@connection@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXToolkit@awt@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1Application@@QAE@XZ -??1ClassData1@cppu@@QAE@XZ -??1OUString@rtl@@QAE@XZ -??3OWeakObject@cppu@@SAXPAX@Z -??_7Application@@6B@ -??_B?1???s_aCD@?$WeakImplHelper1@VXDisplayConnection@awt@star@sun@com@@@$D@@9@51 -?Abort@Application@@SAXABVString@@@Z -?AccessNotify@Application@@SAXABVAccessNotification@@@Z -?AcquireSolarMutex@Application@@SAXK@Z -?ActivateExtHelp@Application@@UAEXXZ -?AddAccessHdl@Application@@SAXABVLink@@@Z -?AddEventHook@Application@@SAKP6AJAAVNotifyEvent@@PAX@Z1@Z -?AddHotKey@Application@@SAKABVKeyCode@@ABVLink@@PAX@Z -?AnyInput@Application@@SAEG@Z -?CallEvent@Application@@SAJAAVNotifyEvent@@@Z -?CallEventHooks@Application@@SAJAAVNotifyEvent@@@Z -?CallNextAccessHdl@Application@@SAXPAVAccessNotification@@@Z -?CallPreNotify@Application@@SAJAAVNotifyEvent@@@Z -?CreateUniqueId@Application@@SA?AVUniqueItemId@@XZ -?DataChanged@Application@@UAEXABVDataChangedEvent@@@Z -?DeInit@Application@@UAEXXZ -?DeactivateExtHelp@Application@@UAEXXZ -?EnableAutoHelpId@Application@@SAXE@Z -?EnableAutoMnemonic@Application@@SAXE@Z -?EnableDialogCancel@Application@@SAXE@Z -?EnableHeadlessMode@Application@@SAXE@Z -?EnterMultiThread@Application@@SAXE@Z -?Exception@Application@@UAEGG@Z -?Execute@Application@@SAXXZ -?FlushAccel@Application@@SAXXZ -?FocusChanged@Application@@UAEXXZ -?GenerateAccessEvent@Application@@SAEKJJJ@Z -?GetAccessHdlCount@Application@@SAGXZ -?GetAppFileName@Application@@SAABVString@@XZ -?GetAppInternational@Application@@SAABVInternational@@XZ -?GetAppName@Application@@SA?AVString@@XZ -?GetAppWindow@Application@@SAPAVWorkWindow@@XZ -?GetClientSystem@Application@@SAKXZ -?GetCommandLineParam@Application@@SA?AVString@@G@Z -?GetCommandLineParamCount@Application@@SAGXZ -?GetDefDialogParent@Application@@SAPAVWindow@@XZ -?GetDefaultDevice@Application@@SAPAVOutputDevice@@XZ -?GetDialogScaleX@Application@@SAFXZ -?GetDispatchLevel@Application@@SAGXZ -?GetDisplayConnection@Application@@SA?AV?$Reference@VXDisplayConnection@awt@star@sun@com@@@uno@star@sun@com@@XZ -?GetDisplayName@Application@@SA?AVString@@XZ -?GetFilterHdl@Application@@SAABVLink@@XZ -?GetFirstAccessHdl@Application@@SA?AVLink@@XZ -?GetFirstTopLevelWindow@Application@@SAPAVWindow@@XZ -?GetFocusWindow@Application@@SAPAVWindow@@XZ -?GetFontPath@Application@@SAABVString@@XZ -?GetHelp@Application@@SAPAVHelp@@XZ -?GetLastInputInterval@Application@@SAKXZ -?GetMainThreadIdentifier@Application@@SAKXZ -?GetNextTopLevelWindow@Application@@SAPAVWindow@@PAV2@@Z -?GetRemoteEnvironment@Application@@SAPAXXZ -?GetResourcePath@Application@@SAABVString@@XZ -?GetServerSystem@Application@@SAKXZ -?GetSettings@Application@@SAABVAllSettings@@XZ -?GetSolarMutex@Application@@SAAAVIMutex@vos@@XZ -?GetSystemWindowMode@Application@@SAGXZ -?GetUnoInstance@Application@@SA?AV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXConnection@connection@star@sun@com@@@3456@ABVOUString@rtl@@@Z -?GetUnoWrapper@Application@@SAPAVUnoWrapperBase@@E@Z -?GetVCLToolkit@Application@@SA?AV?$Reference@VXToolkit@awt@star@sun@com@@@uno@star@sun@com@@XZ -?GetpApp@@YAPAVApplication@@XZ -?HideHelpStatusText@Application@@UAEXXZ -?HideStatusText@Application@@UAEXXZ -?ImplCallHotKey@@YAEABVKeyCode@@@Z -?ImplFreeEventHookData@@YAXXZ -?ImplFreeHotKeyData@@YAXXZ -?ImplQuitMsg@ImplSVAppData@@SAJPAU1@PAX@Z -?Init@Application@@UAEXXZ -?InitAppRes@Application@@SAXABVResId@@@Z -?InsertAccel@Application@@SAEPAVAccelerator@@@Z -?InsertIdleHdl@Application@@SAEABVLink@@G@Z -?IsAutoHelpIdEnabled@Application@@SAEXZ -?IsAutoMnemonicEnabled@Application@@SAEXZ -?IsDialogCancelEnabled@Application@@SAEXZ -?IsHeadlessModeEnabled@Application@@SAEXZ -?IsInExecute@Application@@SAEXZ -?IsInMain@Application@@SAEXZ -?IsInModalMode@Application@@SAEXZ -?IsMultiThread@Application@@SAEXZ -?IsRemoteServer@Application@@SAEXZ -?IsShutDown@Application@@SAEXZ -?IsUICaptured@Application@@SAEXZ -?IsUserActive@Application@@SAEG@Z -?MergeSystemSettings@Application@@SAXAAVAllSettings@@@Z -?NotifyAllWindows@Application@@SAXAAVDataChangedEvent@@@Z -?PostUserEvent@Application@@SAEAAKABVLink@@PAX@Z -?PostUserEvent@Application@@SAEAAKKPAX@Z -?PostUserEvent@Application@@SAKABVLink@@PAX@Z -?PostUserEvent@Application@@SAKKPAX@Z -?QueryExit@Application@@UAEEXZ -?Quit@Application@@SAXXZ -?ReleaseSolarMutex@Application@@SAKXZ -?RemoveAccel@Application@@SAXPAVAccelerator@@@Z -?RemoveAccessHdl@Application@@SAXABVLink@@@Z -?RemoveEventHook@Application@@SAXK@Z -?RemoveHotKey@Application@@SAXK@Z -?RemoveIdleHdl@Application@@SAXABVLink@@@Z -?RemoveUserEvent@Application@@SAXK@Z -?Reschedule@Application@@SAXXZ -?SetAppInternational@Application@@SAXABVInternational@@@Z -?SetAppName@Application@@SAXABVString@@@Z -?SetDefDialogParent@Application@@SAXPAVWindow@@@Z -?SetDialogScaleX@Application@@SAXF@Z -?SetDisplayName@Application@@SAXABVString@@@Z -?SetFilterHdl@Application@@SAXABVLink@@@Z -?SetFontPath@Application@@SAXABVString@@@Z -?SetHelp@Application@@SAXPAVHelp@@@Z -?SetResourcePath@Application@@SAXABVString@@@Z -?SetSettings@Application@@SAXABVAllSettings@@@Z -?SetSystemWindowMode@Application@@SAXG@Z -?SetUnoWrapper@Application@@SAXPAVUnoWrapperBase@@@Z -?ShowHelpStatusText@Application@@UAEXABVString@@@Z -?ShowStatusText@Application@@UAEXABVString@@@Z -?SystemSettingsChanging@Application@@UAEXAAVAllSettings@@PAVWindow@@@Z -?UserEvent@Application@@UAEXKPAX@Z -?Yield@Application@@SAXXZ -?s_aCD@?$WeakImplHelper1@VXDisplayConnection@awt@star@sun@com@@@$E -?s_aCD@?$WeakImplHelper1@VXDisplayConnection@awt@star@sun@com@@@cppu@@0UClassData1@2@A -??_C@_0BN@FLDH@com?4sun?4star?4lang?4XComponent?$AA@ -?ImplDeInitSVData@@YAXXZ -?ImplDestroySVData@@YAXXZ -?ImplFindWindow@@YAPAVWindow@@PBVSalFrame@@AAVPoint@@@Z -?ImplGetDefaultWindow@@YAPAVWindow@@XZ -?ImplGetResMgr@@YAPAVResMgr@@XZ -?ImplInitSVData@@YAXXZ -?aImplSVShlData@@3UImplSVShlData@@A -?pImplSVData@@3PAUImplSVData@@A -?private_aImplSVData@@3UImplSVData@@A -?rImplSVEmptyByteStr@@3AAVByteString@@A -?rImplSVEmptyStr@@3AAVString@@A -?s_pType_com_sun_star_lang_XComponent@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXComponent@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -cpp_release -??1?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1ImplVCLExceptionHandler@@UAE@XZ -??1List@@QAE@XZ -??1UniqueIdContainer@@QAE@XZ -??1UniqueIndex@@QAE@XZ -??_7Application_Impl@@6B@ -??_7ImplVCLExceptionHandler@@6B@ -??_GImplVCLExceptionHandler@@UAEPAXI@Z -?CreateMainLoopThread@@YAXP6AXPAX@Z0@Z -?DeInitVCL@@YAXXZ -?InitVCL@@YAEABV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@@Z -?JoinMainLoopThread@@YAXXZ -?Main@Application_Impl@@UAEXXZ -?SVMain@@YAEXZ -?pExceptionHandler@@3PAVImplVCLExceptionHandler@@A -?signal@ImplVCLExceptionHandler@@UAA?AW4TSignalAction@OSignalHandler@vos@@PAUoslSignalInfo@@@Z -?AddRecentDoc@System@@SAEPAVWindow@@ABVString@@@Z -?GetSummarySystemInfos@System@@SA?AVString@@K@Z -?StartProcess@System@@SAEPAVWindow@@ABVString@@1@Z -?StartProcess@System@@SAEPAVWindow@@ABVString@@@Z -??0AutoTimer@@QAE@ABV0@@Z -??0AutoTimer@@QAE@XZ -??0Timer@@QAE@ABV0@@Z -??0Timer@@QAE@XZ -??1Timer@@QAE@XZ -??4AutoTimer@@QAEAAV0@ABV0@@Z -??4Timer@@QAEAAV0@ABV0@@Z -??_7AutoTimer@@6B@ -??_7Timer@@6B@ -?ImplDeInitTimer@@YAXXZ -?ImplTimerCallbackProc@@YAXXZ -?SetTimeout@Timer@@QAEXK@Z -?Start@Timer@@QAEXXZ -?Stop@Timer@@QAEXXZ -?Timeout@Timer@@UAEXXZ -??0DragAndDropWrapper@unohelper@vcl@@QAE@PAVDragAndDropClient@12@@Z -??1Any@uno@star@sun@com@@QAE@XZ -??1DragAndDropWrapper@unohelper@vcl@@UAE@XZ -??_7DragAndDropWrapper@unohelper@vcl@@6BOWeakObject@cppu@@@ -??_7DragAndDropWrapper@unohelper@vcl@@6BXDragGestureListener@dnd@datatransfer@star@sun@com@@@ -??_7DragAndDropWrapper@unohelper@vcl@@6BXDragSourceListener@dnd@datatransfer@star@sun@com@@@ -??_7DragAndDropWrapper@unohelper@vcl@@6BXDropTargetListener@dnd@datatransfer@star@sun@com@@@ -??_7OWeakObject@cppu@@6B@ -??_7XDragGestureListener@dnd@datatransfer@star@sun@com@@6B@ -??_7XDragSourceListener@dnd@datatransfer@star@sun@com@@6B@ -??_7XDropTargetListener@dnd@datatransfer@star@sun@com@@6B@ -??_7XEventListener@lang@star@sun@com@@6B@ -??_7XInterface@uno@star@sun@com@@6B@ -??_7XWeak@uno@star@sun@com@@6B@ -??_C@_0CB@CGCO@com?4sun?4star?4lang?4XEventListener@ -??_C@_0DC@IB@com?4sun?4star?4datatransfer?4dnd?4XD@ -??_C@_0DC@IPFE@com?4sun?4star?4datatransfer?4dnd?4XD@ -??_C@_0DD@OJGK@com?4sun?4star?4datatransfer?4dnd?4XD@ -??_GDragAndDropWrapper@unohelper@vcl@@UAEPAXI@Z -??_GOWeakObject@cppu@@MAEPAXI@Z -?acquire@DragAndDropWrapper@unohelper@vcl@@UAAXXZ -?acquire@DragAndDropWrapper@unohelper@vcl@@W3AAXXZ -?acquire@DragAndDropWrapper@unohelper@vcl@@W7AAXXZ -?acquire@DragAndDropWrapper@unohelper@vcl@@WM@AAXXZ -?disposing@DragAndDropWrapper@unohelper@vcl@@UAAXABUEventObject@lang@star@sun@com@@@Z -?disposing@DragAndDropWrapper@unohelper@vcl@@W3AAXABUEventObject@lang@star@sun@com@@@Z -?disposing@DragAndDropWrapper@unohelper@vcl@@W7AAXABUEventObject@lang@star@sun@com@@@Z -?dragDropEnd@DragAndDropClient@unohelper@vcl@@UAEXABUDragSourceDropEvent@dnd@datatransfer@star@sun@com@@@Z -?dragDropEnd@DragAndDropWrapper@unohelper@vcl@@UAAXABUDragSourceDropEvent@dnd@datatransfer@star@sun@com@@@Z -?dragEnter@DragAndDropClient@unohelper@vcl@@UAEXABUDragSourceDragEvent@dnd@datatransfer@star@sun@com@@@Z -?dragEnter@DragAndDropClient@unohelper@vcl@@UAEXABUDropTargetDragEnterEvent@dnd@datatransfer@star@sun@com@@@Z -?dragEnter@DragAndDropWrapper@unohelper@vcl@@UAAXABUDragSourceDragEvent@dnd@datatransfer@star@sun@com@@@Z -?dragEnter@DragAndDropWrapper@unohelper@vcl@@UAAXABUDropTargetDragEnterEvent@dnd@datatransfer@star@sun@com@@@Z -?dragExit@DragAndDropClient@unohelper@vcl@@UAEXABUDragSourceEvent@dnd@datatransfer@star@sun@com@@@Z -?dragExit@DragAndDropClient@unohelper@vcl@@UAEXABUDropTargetEvent@dnd@datatransfer@star@sun@com@@@Z -?dragExit@DragAndDropWrapper@unohelper@vcl@@UAAXABUDragSourceEvent@dnd@datatransfer@star@sun@com@@@Z -?dragExit@DragAndDropWrapper@unohelper@vcl@@UAAXABUDropTargetEvent@dnd@datatransfer@star@sun@com@@@Z -?dragGestureRecognized@DragAndDropClient@unohelper@vcl@@UAEXABUDragGestureEvent@dnd@datatransfer@star@sun@com@@@Z -?dragGestureRecognized@DragAndDropWrapper@unohelper@vcl@@UAAXABUDragGestureEvent@dnd@datatransfer@star@sun@com@@@Z -?dragOver@DragAndDropClient@unohelper@vcl@@UAEXABUDragSourceDragEvent@dnd@datatransfer@star@sun@com@@@Z -?dragOver@DragAndDropClient@unohelper@vcl@@UAEXABUDropTargetDragEvent@dnd@datatransfer@star@sun@com@@@Z -?dragOver@DragAndDropWrapper@unohelper@vcl@@UAAXABUDragSourceDragEvent@dnd@datatransfer@star@sun@com@@@Z -?dragOver@DragAndDropWrapper@unohelper@vcl@@UAAXABUDropTargetDragEvent@dnd@datatransfer@star@sun@com@@@Z -?drop@DragAndDropClient@unohelper@vcl@@UAEXABUDropTargetDropEvent@dnd@datatransfer@star@sun@com@@@Z -?drop@DragAndDropWrapper@unohelper@vcl@@UAAXABUDropTargetDropEvent@dnd@datatransfer@star@sun@com@@@Z -?dropActionChanged@DragAndDropClient@unohelper@vcl@@UAEXABUDragSourceDragEvent@dnd@datatransfer@star@sun@com@@@Z -?dropActionChanged@DragAndDropClient@unohelper@vcl@@UAEXABUDropTargetDragEvent@dnd@datatransfer@star@sun@com@@@Z -?dropActionChanged@DragAndDropWrapper@unohelper@vcl@@UAAXABUDragSourceDragEvent@dnd@datatransfer@star@sun@com@@@Z -?dropActionChanged@DragAndDropWrapper@unohelper@vcl@@UAAXABUDropTargetDragEvent@dnd@datatransfer@star@sun@com@@@Z -?queryInterface@DragAndDropWrapper@unohelper@vcl@@UAA?AVAny@uno@star@sun@com@@ABVType@5678@@Z -?queryInterface@DragAndDropWrapper@unohelper@vcl@@W3AA?AVAny@uno@star@sun@com@@ABVType@5678@@Z -?queryInterface@DragAndDropWrapper@unohelper@vcl@@W7AA?AVAny@uno@star@sun@com@@ABVType@5678@@Z -?queryInterface@DragAndDropWrapper@unohelper@vcl@@WM@AA?AVAny@uno@star@sun@com@@ABVType@5678@@Z -?queryInterface@cppu@@YA?AVAny@uno@star@sun@com@@ABVType@3456@PAVXDragGestureListener@dnd@datatransfer@456@PAVXDragSourceListener@9datatransfer@456@PAVXDropTargetListener@9datatransfer@456@@Z -?release@DragAndDropWrapper@unohelper@vcl@@UAAXXZ -?release@DragAndDropWrapper@unohelper@vcl@@W3AAXXZ -?release@DragAndDropWrapper@unohelper@vcl@@W7AAXXZ -?release@DragAndDropWrapper@unohelper@vcl@@WM@AAXXZ -?s_pType_com_sun_star_datatransfer_dnd_XDragGestureListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragGestureListener@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_datatransfer_dnd_XDragSourceListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragSourceListener@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_datatransfer_dnd_XDropTargetListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_lang_XEventListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXEventListener@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -cpp_acquire -??1?$Reference@VXBreakIterator@i18n@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXCharacterClassification@i18n@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXCollator@i18n@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXImplementationRegistration@registry@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXSimpleRegistry@registry@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??_C@_0BM@BIKD@com?4sun?4star?4i18n?4XCollator?$AA@ -??_C@_0CB@GIJC@com?4sun?4star?4i18n?4XBreakIterator@ -??_C@_0CL@OPJN@com?4sun?4star?4i18n?4XCharacterClas@ -??_C@_0DC@BHBK@com?4sun?4star?4registry?4XImplement@ -??_R0?AVException@uno@star@sun@com@@@8 -??_R0?AVRuntimeException@uno@star@sun@com@@@8 -?CreateBreakIterator@unohelper@vcl@@YA?AV?$Reference@VXBreakIterator@i18n@star@sun@com@@@uno@star@sun@com@@XZ -?CreateCharacterClassification@unohelper@vcl@@YA?AV?$Reference@VXCharacterClassification@i18n@star@sun@com@@@uno@star@sun@com@@XZ -?CreateCollator@unohelper@vcl@@YA?AV?$Reference@VXCollator@i18n@star@sun@com@@@uno@star@sun@com@@XZ -?CreateLibraryName@unohelper@vcl@@YA?AVOUString@rtl@@PBDE@Z -?GetMultiServiceFactory@unohelper@vcl@@YA?AV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@XZ -?__query@?$Reference@VXImplementationRegistration@registry@star@sun@com@@@uno@star@sun@com@@CAPAVXImplementationRegistration@registry@345@PAVXInterface@2345@@Z -?createFromAscii@OUString@rtl@@SA?AV12@PBD@Z -?s_pType_com_sun_star_i18n_XBreakIterator@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXBreakIterator@i18n@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_i18n_XCharacterClassification@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXCharacterClassification@i18n@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_i18n_XCollator@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXCollator@i18n@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_registry_XImplementationRegistration@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXImplementationRegistration@registry@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?set@?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAAEPAVXMultiServiceFactory@lang@345@@Z -?valueOf@OUString@rtl@@SA?AV12@JF@Z -cpp_queryInterface -??4BitmapColor@@QAEAAV0@ABV0@@Z -??8BitmapColor@@QBEEABV0@@Z -??_C@_0BL@CPPC@No?5color?5buffer?5available?$CB?$AA@ -??_C@_0BP@KBL@Pixel?5represents?5color?5values?$CB?$AA@ -??_C@_0BP@MMOI@Palette?5index?5is?5out?5of?5range?$CB?$AA@ -??_C@_0CI@BJIA@Pixel?5represents?5index?5into?5colo@ -?DbgIsErrorOut@@YAKXZ -?GetColorError@BitmapColor@@QBEKABV1@@Z -?GetIndex@BitmapColor@@QBEEXZ -?ImplCalcMaskShift@ColorMask@@ABEJKAAK0@Z -?SetIndex@BitmapColor@@QAEXE@Z -?StretchAndConvert@@YAPAUBitmapBuffer@@ABU1@ABUSalTwoRect@@KPAVBitmapPalette@@PAVColorMask@@@Z -_real@8@00000000000000000000 -_real@8@3ffe8000000000000000 -??0Animation@@QAE@ABV0@@Z -??0Animation@@QAE@XZ -??1Animation@@QAE@XZ -??4Animation@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVAnimation@@@Z -??6@YAAAVSvStream@@AAV0@ABVAnimation@@@Z -??8Animation@@QBEEABV0@@Z -?Adjust@Animation@@QAEEFFFFFNE@Z -?Clear@Animation@@QAEXXZ -?Convert@Animation@@QAEEW4BmpConversion@@@Z -?DbgName_Animation@@YAPAUDbgDataType@@XZ -?Dither@Animation@@QAEEKPBVBitmapPalette@@@Z -?Draw@Animation@@QBEXPAVOutputDevice@@ABVPoint@@@Z -?Draw@Animation@@QBEXPAVOutputDevice@@ABVPoint@@ABVSize@@@Z -?Filter@Animation@@QAEEW4BmpFilter@@PBVBmpFilterParam@@PBVLink@@@Z -?Get@Animation@@QBEABUAnimationBitmap@@G@Z -?GetChecksum@Animation@@QBEKXZ -?GetChecksum@AnimationBitmap@@QBEKXZ -?GetSizeBytes@Animation@@QBEKXZ -?ImplRestartTimer@Animation@@AAEXK@Z -?ImplTimeoutHdl@Animation@@AAEJPAVTimer@@@Z -?Insert@Animation@@QAEEABUAnimationBitmap@@@Z -?Invert@Animation@@QAEEXZ -?IsEmpty@Animation@@QBEEXZ -?IsEqual@Animation@@QBEEABV1@@Z -?IsTransparent@Animation@@QBEEXZ -?LinkStubImplTimeoutHdl@Animation@@CAJPAX0@Z -?Mirror@Animation@@QAEEK@Z -?ReduceColors@Animation@@QAEEGW4BmpReduce@@@Z -?Replace@Animation@@QAEXABUAnimationBitmap@@G@Z -?ResetLoopCount@Animation@@QAEXXZ -?SetEmpty@Animation@@QAEXXZ -?SetLoopCount@Animation@@QAEXK@Z -?Start@Animation@@QAEEPAVOutputDevice@@ABVPoint@@ABVSize@@J0@Z -?Start@Animation@@QAEEPAVOutputDevice@@ABVPoint@@J0@Z -?Stop@Animation@@QAEXPAVOutputDevice@@J@Z -?mnAnimCount@Animation@@0KA -??0ImplAnimView@@QAE@PAVAnimation@@PAVOutputDevice@@ABVPoint@@ABVSize@@K1@Z -??1ImplAnimView@@QAE@XZ -?ImplCreateAInfo@ImplAnimView@@QBEPAUAInfo@@XZ -?ImplDraw@ImplAnimView@@QAEXK@Z -?ImplDraw@ImplAnimView@@QAEXKPAVVirtualDevice@@@Z -?ImplDrawToPos@ImplAnimView@@QAEXK@Z -?ImplGetPosSize@ImplAnimView@@QAEXABUAnimationBitmap@@AAVPoint@@AAVSize@@@Z -?ImplMatches@ImplAnimView@@QBEEPAVOutputDevice@@J@Z -?ImplRepaint@ImplAnimView@@QAEXXZ -??0Bitmap@@QAE@ABV0@@Z -??0Bitmap@@QAE@ABVResId@@@Z -??0Bitmap@@QAE@ABVSize@@GPBVBitmapPalette@@@Z -??0Bitmap@@QAE@XZ -??0BitmapColor@@QAE@ABV0@@Z -??0BitmapColor@@QAE@ABVColor@@@Z -??0BitmapColor@@QAE@E@Z -??0BitmapColor@@QAE@EEE@Z -??1Bitmap@@QAE@XZ -??1BitmapColor@@QAE@XZ -??4Bitmap@@QAEAAV0@ABV0@@Z -??4BitmapPalette@@QAEAAV0@ABV0@@Z -??ABitmapPalette@@QAEAAVBitmapColor@@G@Z -??_7BitmapWriteAccess@@6B@ -??_C@_0BF@DCHJ@Access?5is?5not?5valid?$CB?$AA@ -??_C@_0BH@IOIA@Bitmap?5has?5no?5palette?$CB?$AA@ -??_C@_0BL@CBMD@x?9coordinate?5out?5of?5range?$CB?$AA@ -??_C@_0BL@JMJN@y?9coordinate?5out?5of?5range?$CB?$AA@ -??_C@_0DA@PNKC@Drawing?5with?5index?5into?5palette?5@ -??_EBitmapColor@@QAEPAXI@Z -??_GBitmapWriteAccess@@UAEPAXI@Z -??_I@YGXPAXIHP6EX0@Z@Z -?AcquireReadAccess@Bitmap@@QAEPAVBitmapReadAccess@@XZ -?AcquireWriteAccess@Bitmap@@QAEPAVBitmapWriteAccess@@XZ -?CombineSimple@Bitmap@@QAEEABV1@W4BmpCombine@@@Z -?CopyPixel@Bitmap@@QAEEABVRectangle@@0PBV1@@Z -?CreateDisplayBitmap@Bitmap@@QAE?AV1@PAVOutputDevice@@@Z -?CreateMask@Bitmap@@QBE?AV1@ABVColor@@K@Z -?CreateRegion@Bitmap@@QBE?AVRegion@@ABVColor@@ABVRectangle@@@Z -?Crop@Bitmap@@QAEEABVRectangle@@@Z -?Erase@Bitmap@@QAEEABVColor@@@Z -?Expand@Bitmap@@QAEEKKPBVColor@@@Z -?GetBitCount@Bitmap@@QBEGXZ -?GetBlue@BitmapColor@@QBEEXZ -?GetChecksum@Bitmap@@QBEKXZ -?GetGreen@BitmapColor@@QBEEXZ -?GetGreyPalette@Bitmap@@SAABVBitmapPalette@@G@Z -?GetHeight@Rectangle@@QBEJXZ -?GetPaletteColor@BitmapReadAccess@@QBEABVBitmapColor@@G@Z -?GetPixel@BitmapReadAccess@@QBE?AVBitmapColor@@JJ@Z -?GetRed@BitmapColor@@QBEEXZ -?GetSizePixel@Bitmap@@QBE?AVSize@@XZ -?GetWidth@Rectangle@@QBEJXZ -?HasGreyPalette@Bitmap@@QBEEXZ -?HasPalette@BitmapReadAccess@@QBEEXZ -?ImplAssignWithSize@Bitmap@@QAEXABV1@@Z -?ImplGetImpBitmap@Bitmap@@QBEPAVImpBitmap@@XZ -?ImplMakeUnique@Bitmap@@QAEXXZ -?ImplReleaseRef@Bitmap@@QAEXXZ -?ImplSetImpBitmap@Bitmap@@QAEXPAVImpBitmap@@@Z -?Invert@Bitmap@@QAEEXZ -?IsEqual@Bitmap@@QBEEABV1@@Z -?Mirror@Bitmap@@QAEEK@Z -?ReleaseAccess@Bitmap@@QAEXPAVBitmapReadAccess@@@Z -?Replace@Bitmap@@QAEEABV1@ABVColor@@@Z -?Replace@Bitmap@@QAEEABVAlphaMask@@ABVColor@@@Z -?Replace@Bitmap@@QAEEABVColor@@0K@Z -?Replace@Bitmap@@QAEEPBVColor@@0KPAK@Z -?Rotate@Bitmap@@QAEEJABVColor@@@Z -?SetEmpty@Bitmap@@QAEXXZ -?SetEntryCount@BitmapPalette@@QAEXG@Z -?SetPixel@BitmapWriteAccess@@QAEXJJABVBitmapColor@@@Z -?SetSizePixel@Bitmap@@QAEXABVSize@@@Z -_real@8@3ff5e4c3881dbae02800 -_real@8@40058000000000000000 -??5@YAAAVSvStream@@AAV0@AAVBitmap@@@Z -??6@YAAAVSvStream@@AAV0@ABVBitmap@@@Z -?ImplDecodeRLE@Bitmap@@SAXPAEAAUDIBInfoHeader@@AAVBitmapWriteAccess@@E@Z -?ImplReadDIB@Bitmap@@SAEAAVSvStream@@AAV1@K@Z -?ImplReadDIBBits@Bitmap@@SAEAAVSvStream@@AAUDIBInfoHeader@@AAVBitmapWriteAccess@@@Z -?ImplReadDIBFileHeader@Bitmap@@SAEAAVSvStream@@AAK@Z -?ImplReadDIBInfoHeader@Bitmap@@SAEAAVSvStream@@AAUDIBInfoHeader@@@Z -?ImplReadDIBPalette@Bitmap@@SAEAAVSvStream@@AAVBitmapWriteAccess@@E@Z -?ImplWriteDIB@Bitmap@@QBEEAAVSvStream@@AAVBitmapReadAccess@@E@Z -?ImplWriteDIBBits@Bitmap@@SAEAAVSvStream@@AAVBitmapReadAccess@@KAAK@Z -?ImplWriteDIBFileHeader@Bitmap@@SAEAAVSvStream@@AAVBitmapReadAccess@@@Z -?ImplWriteDIBPalette@Bitmap@@SAEAAVSvStream@@AAVBitmapReadAccess@@@Z -?ImplWriteRLE@Bitmap@@SAEAAVSvStream@@AAVBitmapReadAccess@@E@Z -?IsTopDown@BitmapReadAccess@@QBEEXZ -?Read@Bitmap@@QAEEAAVSvStream@@E@Z -?Write@Bitmap@@QBEEAAVSvStream@@EE@Z -??4ImpErrorQuad@@QAEXABVBitmapColor@@@Z -??8BitmapPalette@@QAEEABV0@@Z -??BBitmapColor@@QBEEXZ -?Adjust@Bitmap@@QAEEFFFFFNE@Z -?Convert@Bitmap@@QAEEW4BmpConversion@@@Z -?Dither@Bitmap@@QAEEKPBVBitmapPalette@@@Z -?FloydError1@@3PAJA -?FloydError3@@3PAJA -?FloydError5@@3PAJA -?FloydError7@@3PAJA -?FloydIndexMap@@3PAJA -?FloydMap@@3PAJA -?GetBestPaletteIndex@InverseColorMap@@QAEGABVBitmapColor@@@Z -?GetColor@BitmapReadAccess@@QBE?AVBitmapColor@@JJ@Z -?GetLuminance@BitmapColor@@QBEEXZ -?GetScanline@BitmapReadAccess@@QBEPAEJ@Z -?ImplAddColorError1@ImpErrorQuad@@QAEXABV1@@Z -?ImplAddColorError3@ImpErrorQuad@@QAEXABV1@@Z -?ImplAddColorError5@ImpErrorQuad@@QAEXABV1@@Z -?ImplAddColorError7@ImpErrorQuad@@QAEXABV1@@Z -?ImplConvertDown@Bitmap@@QAEEGPAVColor@@@Z -?ImplConvertGhosted@Bitmap@@QAEEXZ -?ImplConvertUp@Bitmap@@QAEEGPAVColor@@@Z -?ImplCreateDitherMatrix@@YAXPAY1BA@BA@E@Z -?ImplDitherFloyd16@Bitmap@@QAEEXZ -?ImplDitherFloyd@Bitmap@@QAEEPBVBitmapPalette@@@Z -?ImplDitherMatrix@Bitmap@@QAEEPBVBitmapPalette@@@Z -?ImplGetColor@ImpErrorQuad@@QAE?AVBitmapColor@@XZ -?ImplMakeGreyscales@Bitmap@@QAEEG@Z -?ImplMakeMono@Bitmap@@QAEEE@Z -?ImplMakeMonoDither@Bitmap@@QAEEXZ -?ImplMedianCut@Bitmap@@QAEXPAKAAVBitmapPalette@@JJJJJJJJAAJ@Z -?ImplReduceMedian@Bitmap@@QAEEG@Z -?ImplReducePopular@Bitmap@@QAEEG@Z -?ImplReduceSimple@Bitmap@@QAEEG@Z -?ImplScaleFast@Bitmap@@QAEEABN0@Z -?ImplScaleInterpolate@Bitmap@@QAEEABN0@Z -?ReduceColors@Bitmap@@QAEEGW4BmpReduce@@@Z -?Scale@Bitmap@@QAEEABN0K@Z -?Scale@Bitmap@@QAEEABVSize@@K@Z -?SetBlue@BitmapColor@@QAEXE@Z -?SetGreen@BitmapColor@@QAEXE@Z -?SetRed@BitmapColor@@QAEXE@Z -?Vectorize@Bitmap@@QAEEAAVGDIMetaFile@@EKPBVLink@@@Z -?Vectorize@Bitmap@@QAEEAAVPolyPolygon@@KPBVLink@@@Z -?nVCLBLut@@3PAKA -?nVCLDitherLut@@3PAKA -?nVCLGLut@@3PAKA -?nVCLLut@@3PAKA -?nVCLRLut@@3PAKA -ImplPopularCmpFnc -_real@8@3fff8000000000000000 -_real@8@3fffa28f5c28f5c29000 -_real@8@4000a333333333333000 -_real@8@4002a000000000000000 -_real@8@40038000000000000000 -_real@8@40068000000000000000 -_real@8@4006fe00000000000000 -_real@8@4006ff00000000000000 -_real@8@40098000000000000000 -?Filter@Bitmap@@QAEEW4BmpFilter@@PBVBmpFilterParam@@PBVLink@@@Z -?ImplConvolute3@Bitmap@@QAEEPBJJPBVBmpFilterParam@@PBVLink@@@Z -?ImplEmbossGrey@Bitmap@@QAEEPBVBmpFilterParam@@PBVLink@@@Z -?ImplMedianFilter@Bitmap@@QAEEPBVBmpFilterParam@@PBVLink@@@Z -?ImplMosaic@Bitmap@@QAEEPBVBmpFilterParam@@PBVLink@@@Z -?ImplPopArt@Bitmap@@QAEEPBVBmpFilterParam@@PBVLink@@@Z -?ImplSepia@Bitmap@@QAEEPBVBmpFilterParam@@PBVLink@@@Z -?ImplSobelGrey@Bitmap@@QAEEPBVBmpFilterParam@@PBVLink@@@Z -?ImplSolarize@Bitmap@@QAEEPBVBmpFilterParam@@PBVLink@@@Z -?Invert@BitmapColor@@QAEAAV1@XZ -?SetPaletteColor@BitmapWriteAccess@@QAEXGABVBitmapColor@@@Z -ImplPopArtCmpFnc -_real@8@3ff8a3d70a3d70a3d800 -_real@8@3ff98efa351294cc1800 -??0AlphaMask@@QAE@ABV0@@Z -??0AlphaMask@@QAE@ABVBitmap@@@Z -??0AlphaMask@@QAE@ABVSize@@PAE@Z -??0AlphaMask@@QAE@XZ -??1AlphaMask@@QAE@XZ -??4AlphaMask@@QAEAAV0@ABVBitmap@@@Z -?CopyPixel@AlphaMask@@QAEEABVRectangle@@0PBV1@@Z -?Crop@AlphaMask@@QAEEABVRectangle@@@Z -?Erase@AlphaMask@@QAEEE@Z -?Expand@AlphaMask@@QAEEKKPAE@Z -?ImplGetBitmap@AlphaMask@@ABEABVBitmap@@XZ -?ImplSetBitmap@AlphaMask@@AAEXABVBitmap@@@Z -?Invert@AlphaMask@@QAEEXZ -?Mirror@AlphaMask@@QAEEK@Z -?ReleaseAccess@AlphaMask@@QAEXPAVBitmapReadAccess@@@Z -?Replace@AlphaMask@@QAEEABVBitmap@@E@Z -?Replace@AlphaMask@@QAEEEEK@Z -?Replace@AlphaMask@@QAEEPAE0KPAK@Z -?Rotate@AlphaMask@@QAEEJE@Z -?Scale@AlphaMask@@QAEEABN0K@Z -?Scale@AlphaMask@@QAEEABVSize@@K@Z -??0BitmapEx@@QAE@ABV0@@Z -??0BitmapEx@@QAE@ABVBitmap@@0@Z -??0BitmapEx@@QAE@ABVBitmap@@@Z -??0BitmapEx@@QAE@ABVBitmap@@ABVAlphaMask@@@Z -??0BitmapEx@@QAE@ABVBitmap@@ABVColor@@@Z -??0BitmapEx@@QAE@XZ -??1BitmapEx@@QAE@XZ -??4BitmapEx@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVBitmapEx@@@Z -??6@YAAAVSvStream@@AAV0@ABVBitmapEx@@@Z -??8BitmapEx@@QBEEABV0@@Z -?Adjust@BitmapEx@@QAEEFFFFFNE@Z -?Clear@BitmapEx@@QAEXXZ -?Convert@BitmapEx@@QAEEW4BmpConversion@@@Z -?CopyPixel@BitmapEx@@QAEEABVRectangle@@0PBV1@@Z -?Crop@BitmapEx@@QAEEABVRectangle@@@Z -?Dither@BitmapEx@@QAEEKPBVBitmapPalette@@@Z -?Draw@BitmapEx@@QBEXPAVOutputDevice@@ABVPoint@@@Z -?Draw@BitmapEx@@QBEXPAVOutputDevice@@ABVPoint@@ABVSize@@12@Z -?Draw@BitmapEx@@QBEXPAVOutputDevice@@ABVPoint@@ABVSize@@@Z -?Erase@BitmapEx@@QAEEABVColor@@@Z -?Expand@BitmapEx@@QAEEKKPBVColor@@E@Z -?Filter@BitmapEx@@QAEEW4BmpFilter@@PBVBmpFilterParam@@PBVLink@@@Z -?GetAlpha@BitmapEx@@QBE?AVAlphaMask@@XZ -?GetBitmap@BitmapEx@@QBE?AVBitmap@@PBVColor@@@Z -?GetChecksum@BitmapEx@@QBEKXZ -?GetMask@BitmapEx@@QBE?AVBitmap@@XZ -?GetSizeBytes@BitmapEx@@QBEKXZ -?Invert@BitmapEx@@QAEEXZ -?IsAlpha@BitmapEx@@QBEEXZ -?IsEmpty@BitmapEx@@QBEEXZ -?IsEqual@BitmapEx@@QBEEABV1@@Z -?IsTransparent@BitmapEx@@QBEEXZ -?Mirror@BitmapEx@@QAEEK@Z -?ReduceColors@BitmapEx@@QAEEGW4BmpReduce@@@Z -?Replace@BitmapEx@@QAEEABVColor@@0K@Z -?Replace@BitmapEx@@QAEEPBVColor@@0KPBK@Z -?Rotate@BitmapEx@@QAEEJABVColor@@@Z -?Scale@BitmapEx@@QAEEABN0K@Z -?Scale@BitmapEx@@QAEEABVSize@@K@Z -?SetEmpty@BitmapEx@@QAEXXZ -?SetSizePixel@BitmapEx@@QAEXABVSize@@@Z -??0ImageConsumer@@QAE@XZ -??0ImplColorMapper@@QAE@KKKK@Z -??1ImageConsumer@@UAE@XZ -??1ImplColorMapper@@QAE@XZ -??_7ImageConsumer@@6B@ -??_GImageConsumer@@UAEPAXI@Z -?Completed@ImageConsumer@@UAEXK@Z -?DataChanged@ImageConsumer@@MAEXXZ -?GetData@ImageConsumer@@QBEEAAVBitmapEx@@@Z -?GetData@ImageConsumer@@QBEEAAVImage@@@Z -?GetStatus@ImageConsumer@@QBEKXZ -?ImplCalcMaskShift@ImplColorMapper@@AAEKK@Z -?Init@ImageConsumer@@UAEXKK@Z -?SetColorModel@ImageConsumer@@UAEXGKPBKKKKK@Z -?SetPixelsByBytes@ImageConsumer@@UAEXKKKKPBEKK@Z -?SetPixelsByLongs@ImageConsumer@@UAEXKKKKPBKKK@Z -??0BitmapReadAccess@@IAE@AAVBitmap@@E@Z -??0BitmapReadAccess@@QAE@AAVBitmap@@@Z -??1BitmapReadAccess@@UAE@XZ -??1BitmapWriteAccess@@UAE@XZ -??_7BitmapReadAccess@@6B@ -??_GBitmapReadAccess@@UAEPAXI@Z -?CopyBuffer@BitmapWriteAccess@@QAEXABVBitmapReadAccess@@@Z -?CopyScanline@BitmapWriteAccess@@QAEXJABVBitmapReadAccess@@@Z -?CopyScanline@BitmapWriteAccess@@QAEXJQAEKK@Z -?Flush@BitmapReadAccess@@IAEXXZ -?GetBestPaletteIndex@BitmapReadAccess@@QBEGABVBitmapColor@@@Z -?ImplCreate@BitmapReadAccess@@IAEXAAVBitmap@@@Z -?ImplDestroy@BitmapReadAccess@@IAEXXZ -?ImplInitDraw@BitmapWriteAccess@@IAEXXZ -?ImplSetAccessPointers@BitmapReadAccess@@IAEEK@Z -?ImplZeroInitUnusedBits@BitmapReadAccess@@QAEXXZ -?ReAccess@BitmapReadAccess@@IAEXE@Z -?GetPixelFor_16BIT_TC_MASK@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_1BIT_LSB_PAL@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_1BIT_MSB_PAL@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_24BIT_TC_BGR@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_24BIT_TC_MASK@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_24BIT_TC_RGB@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_32BIT_TC_ABGR@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_32BIT_TC_ARGB@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_32BIT_TC_BGRA@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_32BIT_TC_MASK@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_32BIT_TC_RGBA@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_4BIT_LSN_PAL@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_4BIT_MSN_PAL@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_8BIT_PAL@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_8BIT_TC_MASK@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?SetPixelFor_16BIT_TC_MASK@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_1BIT_LSB_PAL@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_1BIT_MSB_PAL@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_24BIT_TC_BGR@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_24BIT_TC_MASK@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_24BIT_TC_RGB@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_32BIT_TC_ABGR@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_32BIT_TC_ARGB@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_32BIT_TC_BGRA@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_32BIT_TC_MASK@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_32BIT_TC_RGBA@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_4BIT_LSN_PAL@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_4BIT_MSN_PAL@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_8BIT_PAL@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_8BIT_TC_MASK@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?DrawLine@BitmapWriteAccess@@QAEXABVPoint@@0@Z -?DrawPolyPolygon@BitmapWriteAccess@@QAEXABVPolyPolygon@@@Z -?DrawPolygon@BitmapWriteAccess@@QAEXABVPolygon@@@Z -?DrawRect@BitmapWriteAccess@@QAEXABVRectangle@@@Z -?Erase@BitmapWriteAccess@@QAEXABVColor@@@Z -?FillRect@BitmapWriteAccess@@QAEXABVRectangle@@@Z -??0Color@@QAE@ABVResId@@@Z -??0SVMConverter@@QAE@AAVSvStream@@AAVGDIMetaFile@@K@Z -?ImplConvertFromSVM1@SVMConverter@@AAEXAAVSvStream@@AAVGDIMetaFile@@@Z -?ImplConvertToSVM1@SVMConverter@@AAEXAAVSvStream@@AAVGDIMetaFile@@@Z -?ImplReadColor@@YAXAAVSvStream@@AAVColor@@@Z -?ImplReadMapMode@@YAXAAVSvStream@@AAVMapMode@@@Z -?ImplReadPoly@@YAXAAVSvStream@@AAVPolygon@@@Z -?ImplReadPolyPoly@@YAXAAVSvStream@@AAVPolyPolygon@@@Z -?ImplReadRect@@YAXAAVSvStream@@AAVRectangle@@@Z -?ImplReadUnicodeComment@@YAXKAAVSvStream@@AAVString@@@Z -?ImplSkipActions@@YAXAAVSvStream@@K@Z -?ImplWriteActions@SVMConverter@@AAEKAAVSvStream@@AAVGDIMetaFile@@AAVVirtualDevice@@AAEAAVColor@@AAVStack@@AAG@Z -?ImplWriteColor@@YAXAAVSvStream@@ABVColor@@@Z -?ImplWriteFillColor@@YAXAAVSvStream@@ABVColor@@F@Z -?ImplWriteFont@@YAXAAVSvStream@@ABVFont@@AAG@Z -?ImplWriteLineColor@@YAXAAVSvStream@@ABVColor@@FJ@Z -?ImplWriteMapMode@@YAXAAVSvStream@@ABVMapMode@@@Z -?ImplWritePoly@@YAXAAVSvStream@@ABVPolygon@@@Z -?ImplWritePolyPolyAction@@YAXAAVSvStream@@ABVPolyPolygon@@@Z -?ImplWritePopAction@@YAXAAVSvStream@@@Z -?ImplWritePushAction@@YAXAAVSvStream@@@Z -?ImplWriteRasterOpAction@@YAXAAVSvStream@@F@Z -?ImplWriteRect@@YAXAAVSvStream@@ABVRectangle@@@Z -?ImplWriteUnicodeComment@@YAEAAVSvStream@@ABVString@@@Z -??0GraphicConverter@@QAE@XZ -??1GraphicConverter@@QAE@XZ -?Export@GraphicConverter@@SAKAAVSvStream@@ABVGraphic@@K@Z -?ImplConvert@GraphicConverter@@QAEKKPAXKPAPAXK@Z -?ImplFilterCallback@@YAKPAXK0KKPAPAX@Z -?Import@GraphicConverter@@SAKAAVSvStream@@AAVGraphic@@K@Z -??0Font@@QAE@ABV0@@Z -??0Font@@QAE@ABVString@@0ABVSize@@@Z -??0Font@@QAE@ABVString@@ABVSize@@@Z -??0Font@@QAE@W4FontFamily@@ABVSize@@@Z -??0Font@@QAE@XZ -??0Impl_Font@@QAE@ABV0@@Z -??0Impl_Font@@QAE@XZ -??1Font@@QAE@XZ -??4Font@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVFont@@@Z -??5@YAAAVSvStream@@AAV0@AAVImpl_Font@@@Z -??6@YAAAVSvStream@@AAV0@ABVFont@@@Z -??6@YAAAVSvStream@@AAV0@ABVImpl_Font@@@Z -??8Font@@QBEEABV0@@Z -?DbgName_Font@@YAPAUDbgDataType@@XZ -?MakeUnique@Font@@AAEXXZ -?Merge@Font@@QAEXABV1@@Z -?SetAlign@Font@@QAEXW4TextAlign@@@Z -?SetCJKContextLanguage@Font@@QAEXG@Z -?SetCharSet@Font@@QAEXG@Z -?SetColor@Font@@QAEXABVColor@@@Z -?SetEmphasisMark@Font@@QAEXG@Z -?SetFamily@Font@@QAEXW4FontFamily@@@Z -?SetFillColor@Font@@QAEXABVColor@@@Z -?SetItalic@Font@@QAEXW4FontItalic@@@Z -?SetKerning@Font@@QAEXE@Z -?SetLanguage@Font@@QAEXG@Z -?SetName@Font@@QAEXABVString@@@Z -?SetOrientation@Font@@QAEXF@Z -?SetOutline@Font@@QAEXE@Z -?SetPitch@Font@@QAEXW4FontPitch@@@Z -?SetRelief@Font@@QAEXW4FontRelief@@@Z -?SetShadow@Font@@QAEXE@Z -?SetSize@Font@@QAEXABVSize@@@Z -?SetStrikeout@Font@@QAEXW4FontStrikeout@@@Z -?SetStyleName@Font@@QAEXABVString@@@Z -?SetTransparent@Font@@QAEXE@Z -?SetUnderline@Font@@QAEXW4FontUnderline@@@Z -?SetVertical@Font@@QAEXE@Z -?SetWeight@Font@@QAEXW4FontWeight@@@Z -?SetWidthType@Font@@QAEXW4FontWidth@@@Z -?SetWordLineMode@Font@@QAEXE@Z -??0GDIMetaFile@@QAE@ABV0@@Z -??0GDIMetaFile@@QAE@XZ -??0ImpLabelList@@QAE@ABV0@@Z -??1GDIMetaFile@@QAE@XZ -??1ImpLabelList@@QAE@XZ -??4GDIMetaFile@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVGDIMetaFile@@@Z -??6@YAAAVSvStream@@AAV0@ABVGDIMetaFile@@@Z -??8GDIMetaFile@@QBEEABV0@@Z -??_7GDIMetaFile@@6B@ -?AddAction@GDIMetaFile@@QAEXPAVMetaAction@@@Z -?AddAction@GDIMetaFile@@QAEXPAVMetaAction@@K@Z -?Adjust@GDIMetaFile@@QAEXFFFFFNE@Z -?Clear@GDIMetaFile@@QAEXXZ -?Convert@GDIMetaFile@@QAEXW4MtfConversion@@@Z -?CopyAction@GDIMetaFile@@QBEPAVMetaAction@@K@Z -?GetActionPos@GDIMetaFile@@QAEKABVString@@@Z -?GetChecksum@GDIMetaFile@@QBEKXZ -?GetLabel@GDIMetaFile@@QAE?AVString@@K@Z -?GetLabelCount@GDIMetaFile@@QBEKXZ -?GetMonochromeMtf@GDIMetaFile@@QBE?AV1@ABVColor@@@Z -?Hook@GDIMetaFile@@MAEJXZ -?ImplBmpAdjustFnc@GDIMetaFile@@CA?AVBitmapEx@@ABV2@PBX@Z -?ImplBmpConvertFnc@GDIMetaFile@@CA?AVBitmapEx@@ABV2@PBX@Z -?ImplBmpMonoFnc@GDIMetaFile@@CA?AVBitmapEx@@ABV2@PBX@Z -?ImplBmpReplaceFnc@GDIMetaFile@@CA?AVBitmapEx@@ABV2@PBX@Z -?ImplColAdjustFnc@GDIMetaFile@@CA?AVColor@@ABV2@PBX@Z -?ImplColConvertFnc@GDIMetaFile@@CA?AVColor@@ABV2@PBX@Z -?ImplColMonoFnc@GDIMetaFile@@CA?AVColor@@ABV2@PBX@Z -?ImplColReplaceFnc@GDIMetaFile@@CA?AVColor@@ABV2@PBX@Z -?ImplExchangeColors@GDIMetaFile@@AAEXP6A?AVColor@@ABV2@PBX@Z1P6A?AVBitmapEx@@ABV3@1@Z1@Z -?ImplGetLabelPos@ImpLabelList@@QAEKABVString@@@Z -?InsertLabel@GDIMetaFile@@QAEEABVString@@K@Z -?Linker@GDIMetaFile@@MAEXPAVOutputDevice@@E@Z -?Move@GDIMetaFile@@QAEXJJ@Z -?Pause@GDIMetaFile@@QAEXE@Z -?Play@GDIMetaFile@@QAEXAAV1@K@Z -?Play@GDIMetaFile@@QAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?Play@GDIMetaFile@@QAEXPAVOutputDevice@@K@Z -?Read@GDIMetaFile@@QAEAAVSvStream@@AAV2@@Z -?Record@GDIMetaFile@@QAEXPAVOutputDevice@@@Z -?RemoveLabel@GDIMetaFile@@QAEXABVString@@@Z -?RenameLabel@GDIMetaFile@@QAEXABVString@@0@Z -?ReplaceColors@GDIMetaFile@@QAEXABVColor@@0K@Z -?ReplaceColors@GDIMetaFile@@QAEXPBVColor@@0KPAK@Z -?SaveStatus@GDIMetaFile@@QAEEXZ -?Scale@GDIMetaFile@@QAEXABVFraction@@0@Z -?Scale@GDIMetaFile@@QAEXNN@Z -?Stop@GDIMetaFile@@QAEXXZ -?Wind@GDIMetaFile@@QAEXK@Z -?WindEnd@GDIMetaFile@@QAEXXZ -?WindNext@GDIMetaFile@@QAEXXZ -?WindPrev@GDIMetaFile@@QAEXXZ -?WindStart@GDIMetaFile@@QAEXXZ -?Write@GDIMetaFile@@QAEAAVSvStream@@AAV2@@Z -??0GfxLink@@QAE@ABV0@@Z -??0GfxLink@@QAE@PAEKW4GfxLinkType@@E@Z -??0GfxLink@@QAE@XZ -??0ImpSwap@@QAE@PAEK@Z -??1?$Reference@VXCommandEnvironment@ucb@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1GfxLink@@QAE@XZ -??1INetURLObject@@QAE@XZ -??1ImpSwap@@QAE@XZ -??4GfxLink@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVGfxLink@@@Z -??6@YAAAVSvStream@@AAV0@ABVGfxLink@@@Z -??_R0?AVCommandAbortedException@ucb@star@sun@com@@@8 -??_R0?AVContentCreationException@ucb@star@sun@com@@@8 -?GetData@GfxLink@@QBEPBEXZ -?GetData@ImpSwap@@QBEPAEXZ -?GetDataSize@GfxLink@@QBEKXZ -?GetMainURL@INetURLObject@@QBE?AVString@@W4DecodeMechanism@1@G@Z -?GetType@GfxLink@@QBE?AW4GfxLinkType@@XZ -?ImplCopy@GfxLink@@AAEXABV1@@Z -?IsNative@GfxLink@@QBEEXZ -?LoadNative@GfxLink@@QAEEAAVGraphic@@@Z -?SwapIn@GfxLink@@QAEXXZ -?SwapOut@GfxLink@@QAEXXZ -?WriteTo@ImpSwap@@QBEXAAVSvStream@@@Z -?decode@INetURLObject@@SA?AVString@@ABV2@DW4DecodeMechanism@1@G@Z -?makeAny@uno@star@sun@com@@YA?AVAny@1234@ABE@Z -??0Gradient@@QAE@ABV0@@Z -??0Gradient@@QAE@W4GradientStyle@@@Z -??0Gradient@@QAE@W4GradientStyle@@ABVColor@@1@Z -??0Gradient@@QAE@XZ -??0Impl_Gradient@@QAE@ABV0@@Z -??0Impl_Gradient@@QAE@XZ -??1Gradient@@QAE@XZ -??4Gradient@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVGradient@@@Z -??5@YAAAVSvStream@@AAV0@AAVImpl_Gradient@@@Z -??6@YAAAVSvStream@@AAV0@ABVGradient@@@Z -??6@YAAAVSvStream@@AAV0@ABVImpl_Gradient@@@Z -??8Gradient@@QBEEABV0@@Z -?DbgName_Gradient@@YAPAUDbgDataType@@XZ -?MakeUnique@Gradient@@AAEXXZ -?SetAngle@Gradient@@QAEXG@Z -?SetBorder@Gradient@@QAEXG@Z -?SetEndColor@Gradient@@QAEXABVColor@@@Z -?SetEndIntensity@Gradient@@QAEXG@Z -?SetOfsX@Gradient@@QAEXG@Z -?SetOfsY@Gradient@@QAEXG@Z -?SetStartColor@Gradient@@QAEXABVColor@@@Z -?SetStartIntensity@Gradient@@QAEXG@Z -?SetSteps@Gradient@@QAEXG@Z -?SetStyle@Gradient@@QAEXW4GradientStyle@@@Z -??0Hatch@@QAE@ABV0@@Z -??0Hatch@@QAE@W4HatchStyle@@ABVColor@@JG@Z -??0Hatch@@QAE@XZ -??0ImplHatch@@QAE@ABU0@@Z -??0ImplHatch@@QAE@XZ -??1Hatch@@QAE@XZ -??4Hatch@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAUImplHatch@@@Z -??5@YAAAVSvStream@@AAV0@AAVHatch@@@Z -??6@YAAAVSvStream@@AAV0@ABUImplHatch@@@Z -??6@YAAAVSvStream@@AAV0@ABVHatch@@@Z -??8Hatch@@QBEEABV0@@Z -?DbgName_Hatch@@YAPAUDbgDataType@@XZ -?ImplMakeUnique@Hatch@@AAEXXZ -?SetAngle@Hatch@@QAEXG@Z -?SetColor@Hatch@@QAEXABVColor@@@Z -?SetDistance@Hatch@@QAEXJ@Z -?SetStyle@Hatch@@QAEXW4HatchStyle@@@Z -??0Graphic@@QAE@ABV0@@Z -??0Graphic@@QAE@ABVAnimation@@@Z -??0Graphic@@QAE@ABVBitmap@@@Z -??0Graphic@@QAE@ABVBitmapEx@@@Z -??0Graphic@@QAE@ABVGDIMetaFile@@@Z -??0Graphic@@QAE@XZ -??1Graphic@@UAE@XZ -??4Graphic@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVGraphic@@@Z -??6@YAAAVSvStream@@AAV0@ABVGraphic@@@Z -??7Graphic@@QBEEXZ -??8Graphic@@QBEEABV0@@Z -??9Graphic@@QBEEABV0@@Z -??_7Graphic@@6B@ -??_7SvDataCopyStream@@6B@ -??_GGraphic@@UAEPAXI@Z -??_GSvDataCopyStream@@UAEPAXI@Z -?Assign@Graphic@@UAEXABVSvDataCopyStream@@@Z -?Clear@Graphic@@QAEXXZ -?ClipboardHasFormat@Graphic@@SAEXZ -?Copy@Graphic@@QBEEXZ -?CreateType@Graphic@@SAPAXXZ -?DragServerHasFormat@Graphic@@SAEG@Z -?Draw@Graphic@@QBEXPAVOutputDevice@@ABVPoint@@@Z -?Draw@Graphic@@QBEXPAVOutputDevice@@ABVPoint@@ABVSize@@@Z -?Draw@Graphic@@SAXPAVOutputDevice@@ABVString@@AAVFont@@ABVBitmap@@ABVPoint@@ABVSize@@@Z -?GetAnimation@Graphic@@QBE?AVAnimation@@XZ -?GetAnimationInfoList@Graphic@@QBEPAVList@@XZ -?GetAnimationLoopCount@Graphic@@QBEKXZ -?GetAnimationNotifyHdl@Graphic@@QBE?AVLink@@XZ -?GetBitmap@Graphic@@QBE?AVBitmap@@XZ -?GetBitmapEx@Graphic@@QBE?AVBitmapEx@@XZ -?GetChecksum@Graphic@@QBEKXZ -?GetContext@Graphic@@QAEPAVGraphicReader@@XZ -?GetDocFileName@Graphic@@QBEABVString@@XZ -?GetDocFilePos@Graphic@@QBEKXZ -?GetGDIMetaFile@Graphic@@QBEABVGDIMetaFile@@XZ -?GetGraphicsCompressMode@Graphic@@SAGAAVSvStream@@@Z -?GetLink@Graphic@@QAE?AVGfxLink@@XZ -?GetPrefMapMode@Graphic@@QBE?AVMapMode@@XZ -?GetPrefSize@Graphic@@QBE?AVSize@@XZ -?GetSizeBytes@Graphic@@QBEKXZ -?GetType@Graphic@@QBE?AW4GraphicType@@XZ -?ImplTestRefCount@Graphic@@QAEXXZ -?IsA@Graphic@@UBEEP6APAXXZ@Z -?IsAlpha@Graphic@@QBEEXZ -?IsAnimated@Graphic@@QBEEXZ -?IsLink@Graphic@@QBEEXZ -?IsOf@Graphic@@SAEP6APAXXZ@Z -?IsSupportedGraphic@Graphic@@QBEEXZ -?IsSwapOut@Graphic@@QBEEXZ -?IsTransparent@Graphic@@QBEEXZ -?Load@Graphic@@UAEXAAVSvStream@@@Z -?Paste@Graphic@@QAEEXZ -?ReadEmbedded@Graphic@@QAEEAAVSvStream@@E@Z -?RegisterClipboardFormatName@Graphic@@SAKXZ -?ResetAnimationLoopCount@Graphic@@QAEXXZ -?Save@Graphic@@UAEXAAVSvStream@@@Z -?SetAnimationNotifyHdl@Graphic@@QAEXABVLink@@@Z -?SetContext@Graphic@@QAEXPAVGraphicReader@@@Z -?SetDefaultType@Graphic@@QAEXXZ -?SetDocFileName@Graphic@@QAEXABVString@@K@Z -?SetLink@Graphic@@QAEXABVGfxLink@@@Z -?SetPrefMapMode@Graphic@@QAEXABVMapMode@@@Z -?SetPrefSize@Graphic@@QAEXABVSize@@@Z -?StartAnimation@Graphic@@QAEXPAVOutputDevice@@ABVPoint@@ABVSize@@J0@Z -?StartAnimation@Graphic@@QAEXPAVOutputDevice@@ABVPoint@@J0@Z -?StaticType@Graphic@@SAP6APAXXZXZ -?StopAnimation@Graphic@@QAEXPAVOutputDevice@@J@Z -?SwapIn@Graphic@@QAEEPAVSvStream@@@Z -?SwapIn@Graphic@@QAEEXZ -?SwapOut@Graphic@@QAEEPAVSvStream@@@Z -?SwapOut@Graphic@@QAEEXZ -?Type@Graphic@@UBEP6APAXXZXZ -?WriteEmbedded@Graphic@@QAEEAAVSvStream@@@Z -??0Image@@QAE@ABV0@@Z -??0Image@@QAE@ABVBitmap@@0@Z -??0Image@@QAE@ABVBitmap@@@Z -??0Image@@QAE@ABVBitmap@@ABVColor@@@Z -??0Image@@QAE@ABVBitmapEx@@@Z -??0Image@@QAE@ABVResId@@@Z -??0Image@@QAE@XZ -??0ImageList@@QAE@ABV0@@Z -??0ImageList@@QAE@ABVBitmap@@0GPAGG@Z -??0ImageList@@QAE@ABVBitmap@@ABVColor@@GPAGG@Z -??0ImageList@@QAE@ABVBitmap@@GPAGG@Z -??0ImageList@@QAE@ABVResId@@@Z -??0ImageList@@QAE@GG@Z -??0ImplImageData@@QAE@ABVBitmap@@0@Z -??0ImplImageData@@QAE@ABVBitmap@@ABVColor@@@Z -??1Image@@QAE@XZ -??1ImageList@@QAE@XZ -??1ImplImage@@QAE@XZ -??1ImplImageData@@QAE@XZ -??1ImplImageList@@QAE@XZ -??1ImplImageRefData@@QAE@XZ -??4Image@@QAEAAV0@ABV0@@Z -??4ImageList@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVImageList@@@Z -??6@YAAAVSvStream@@AAV0@ABVImageList@@@Z -??8Image@@QBEEABV0@@Z -??8ImageList@@QBEEABV0@@Z -?AddImage@ImageList@@QAEXGABVImage@@@Z -?Clear@ImageList@@QAEXXZ -?CopyImage@ImageList@@QAEXGG@Z -?DbgName_Image@@YAPAUDbgDataType@@XZ -?DbgName_ImageList@@YAPAUDbgDataType@@XZ -?DrawImage@OutputDevice@@QAEXABVPoint@@ABVImage@@G@Z -?DrawImage@OutputDevice@@QAEXABVPoint@@ABVSize@@ABVImage@@G@Z -?GetBitmap@ImageList@@QBE?AVBitmap@@XZ -?GetImage@ImageList@@QBE?AVImage@@G@Z -?GetImageCount@ImageList@@QBEGXZ -?GetImageId@ImageList@@QBEGG@Z -?GetImagePos@ImageList@@QBEGG@Z -?GetImageSize@ImageList@@QBE?AVSize@@XZ -?GetMaskBitmap@ImageList@@QBE?AVBitmap@@XZ -?GetMaskColor@ImageList@@QBE?AVColor@@XZ -?GetSizePixel@Image@@QBE?AVSize@@XZ -?HasMaskBitmap@ImageList@@QBEEXZ -?HasMaskColor@ImageList@@QBEEXZ -?IsEqual@ImplImageData@@QAEEABV1@@Z -?IsEqual@ImplImageRefData@@QAEEABU1@@Z -?MergeImage@ImageList@@QAEXGG@Z -?RemoveImage@ImageList@@QAEXG@Z -?ReplaceImage@ImageList@@QAEXGABVImage@@@Z -?ReplaceImage@ImageList@@QAEXGG@Z -??0ImpBitmap@@QAE@XZ -??1ImpBitmap@@QAE@XZ -?ImplAcquireBuffer@ImpBitmap@@QAEPAUBitmapBuffer@@E@Z -?ImplCreate@ImpBitmap@@QAEEABV1@@Z -?ImplCreate@ImpBitmap@@QAEEABV1@G@Z -?ImplCreate@ImpBitmap@@QAEEABV1@PAVSalGraphics@@@Z -?ImplCreate@ImpBitmap@@QAEEABVSize@@GABVBitmapPalette@@@Z -?ImplDestroy@ImpBitmap@@QAEXXZ -?ImplGetBitCount@ImpBitmap@@QBEGXZ -?ImplGetSize@ImpBitmap@@QBE?AVSize@@XZ -?ImplReleaseBuffer@ImpBitmap@@QAEXPAUBitmapBuffer@@E@Z -?ImplSetSalBitmap@ImpBitmap@@QAEXPAVSalBitmap@@@Z -??0INetURLObject@@QAE@XZ -??0ImpGraphic@@AAE@ABV0@@Z -??0ImpGraphic@@AAE@ABVAnimation@@@Z -??0ImpGraphic@@AAE@ABVBitmap@@@Z -??0ImpGraphic@@AAE@ABVBitmapEx@@@Z -??0ImpGraphic@@AAE@ABVGDIMetaFile@@@Z -??0ImpGraphic@@AAE@XZ -??1GraphicReader@@UAE@XZ -??1ImpGraphic@@EAE@XZ -??1ImpSwapInfo@@QAE@XZ -??4ImpGraphic@@AAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVImpGraphic@@@Z -??6@YAAAVSvStream@@AAV0@ABVImpGraphic@@@Z -??8ImpGraphic@@ABEEABV0@@Z -??_7GraphicReader@@6B@ -??_7ImpGraphic@@6B@ -??_GGraphicReader@@UAEPAXI@Z -??_GImpGraphic@@EAEPAXI@Z -?ImplClear@ImpGraphic@@AAEXXZ -?ImplClearGraphics@ImpGraphic@@AAEXE@Z -?ImplCopy@ImpGraphic@@ABEEXZ -?ImplDraw@ImpGraphic@@ABEXPAVOutputDevice@@ABVPoint@@@Z -?ImplDraw@ImpGraphic@@ABEXPAVOutputDevice@@ABVPoint@@ABVSize@@@Z -?ImplGetAnimation@ImpGraphic@@ABE?AVAnimation@@XZ -?ImplGetAnimationInfoList@ImpGraphic@@ABEPAVList@@XZ -?ImplGetAnimationLoopCount@ImpGraphic@@ABEKXZ -?ImplGetAnimationNotifyHdl@ImpGraphic@@ABE?AVLink@@XZ -?ImplGetBitmap@ImpGraphic@@ABE?AVBitmap@@XZ -?ImplGetBitmapEx@ImpGraphic@@ABE?AVBitmapEx@@XZ -?ImplGetChecksum@ImpGraphic@@ABEKXZ -?ImplGetContext@ImpGraphic@@AAEPAVGraphicReader@@XZ -?ImplGetDocFileName@ImpGraphic@@ABEABVString@@XZ -?ImplGetDocFilePos@ImpGraphic@@ABEKXZ -?ImplGetGDIMetaFile@ImpGraphic@@ABEABVGDIMetaFile@@XZ -?ImplGetLink@ImpGraphic@@AAE?AVGfxLink@@XZ -?ImplGetPrefMapMode@ImpGraphic@@ABE?AVMapMode@@XZ -?ImplGetPrefSize@ImpGraphic@@ABE?AVSize@@XZ -?ImplGetSizeBytes@ImpGraphic@@ABEKXZ -?ImplGetType@ImpGraphic@@ABE?AW4GraphicType@@XZ -?ImplIsAlpha@ImpGraphic@@ABEEXZ -?ImplIsAnimated@ImpGraphic@@ABEEXZ -?ImplIsLink@ImpGraphic@@ABEEXZ -?ImplIsSupportedGraphic@ImpGraphic@@ABEEXZ -?ImplIsSwapOut@ImpGraphic@@ABEEXZ -?ImplIsTransparent@ImpGraphic@@ABEEXZ -?ImplPaste@ImpGraphic@@AAEEXZ -?ImplReadEmbedded@ImpGraphic@@AAEEAAVSvStream@@E@Z -?ImplResetAnimationLoopCount@ImpGraphic@@AAEXXZ -?ImplSetAnimationNotifyHdl@ImpGraphic@@AAEXABVLink@@@Z -?ImplSetContext@ImpGraphic@@AAEXPAVGraphicReader@@@Z -?ImplSetDefaultType@ImpGraphic@@AAEXXZ -?ImplSetDocFileName@ImpGraphic@@AAEXABVString@@K@Z -?ImplSetLink@ImpGraphic@@AAEXABVGfxLink@@@Z -?ImplSetPrefMapMode@ImpGraphic@@AAEXABVMapMode@@@Z -?ImplSetPrefSize@ImpGraphic@@AAEXABVSize@@@Z -?ImplStartAnimation@ImpGraphic@@AAEXPAVOutputDevice@@ABVPoint@@ABVSize@@J0@Z -?ImplStartAnimation@ImpGraphic@@AAEXPAVOutputDevice@@ABVPoint@@J0@Z -?ImplStopAnimation@ImpGraphic@@AAEXPAVOutputDevice@@J@Z -?ImplSwapIn@ImpGraphic@@AAEEPAVSvStream@@@Z -?ImplSwapIn@ImpGraphic@@AAEEXZ -?ImplSwapOut@ImpGraphic@@AAEEPAVSvStream@@@Z -?ImplSwapOut@ImpGraphic@@AAEEXZ -?ImplWriteEmbedded@ImpGraphic@@AAEEAAVSvStream@@@Z -_real@8@400a8000000000000000 -??0ImplImageBmp@@QAE@XZ -??1ImplImageBmp@@QAE@XZ -?Create@ImplImageBmp@@QAEXABVBitmap@@0ABVColor@@EJJG@Z -?Create@ImplImageBmp@@QAEXJJG@Z -?Draw@ImplImageBmp@@QAEXGPAVOutputDevice@@ABVPoint@@GPBVSize@@@Z -?Expand@ImplImageBmp@@QAEXG@Z -?GetBitmap@ImplImageBmp@@QBE?AVBitmap@@GPAG@Z -?GetMaskBitmap@ImplImageBmp@@QBE?AVBitmap@@GPAG@Z -?GetMaskColor@ImplImageBmp@@QBE?AVColor@@XZ -?HasMaskBitmap@ImplImageBmp@@QBEEXZ -?HasMaskColor@ImplImageBmp@@QBEEXZ -?ImplClearCaches@ImplImageBmp@@AAEXXZ -?ImplUpdateDisaBmp@ImplImageBmp@@AAEXG@Z -?ImplUpdatePaintBmp@ImplImageBmp@@AAEXG@Z -?Merge@ImplImageBmp@@QAEXGG@Z -?Replace@ImplImageBmp@@QAEXGABV1@G@Z -?Replace@ImplImageBmp@@QAEXGABVBitmap@@0@Z -?Replace@ImplImageBmp@@QAEXGABVBitmap@@@Z -?Replace@ImplImageBmp@@QAEXGABVBitmap@@ABVColor@@@Z -?Replace@ImplImageBmp@@QAEXGG@Z -??0ImplQPrinter@@QAE@PAVPrinter@@@Z -??1ImplQPrinter@@EAE@XZ -??1QueuePage@@QAE@XZ -??_7ImplQPrinter@@6B@ -??_GImplQPrinter@@EAEPAXI@Z -?AbortQueuePrint@ImplQPrinter@@QAEXXZ -?AddQueuePage@ImplQPrinter@@QAEXPAVGDIMetaFile@@GE@Z -?Destroy@ImplQPrinter@@QAEXXZ -?EndQueuePrint@ImplQPrinter@@QAEXXZ -?ImplPrintHdl@ImplQPrinter@@AAEJPAVTimer@@@Z -?ImplPrintMtf@ImplQPrinter@@AAEXAAVGDIMetaFile@@JJ@Z -?LinkStubImplPrintHdl@ImplQPrinter@@CAJPAX0@Z -?StartQueuePrint@ImplQPrinter@@QAEXXZ -??0ImplChain@@QAE@KJ@Z -??0ImplPointArray@@QAE@XZ -??0ImplVectMap@@QAE@JJ@Z -??0ImplVectorizer@@QAE@XZ -??1ImplChain@@QAE@XZ -??1ImplPointArray@@QAE@XZ -??1ImplVectMap@@QAE@XZ -??1ImplVectorizer@@QAE@XZ -??_C@_0CJ@JILC@O?3?2SRC632?2src?2vcl?2source?2gdi?2imp@ -??_C@_0CP@FLHN@ImplPointArray?3?3operator?$FL?$FN?3?5nPos@ -?ImplBeginAdd@ImplChain@@QAEXABVPoint@@@Z -?ImplCalculate@ImplVectorizer@@AAEXPAVImplVectMap@@AAVPolyPolygon@@EK@Z -?ImplCreatePoly@ImplPointArray@@QBEXAAVPolygon@@@Z -?ImplEndAdd@ImplChain@@QAEXK@Z -?ImplExpand@ImplVectorizer@@AAEPAVImplVectMap@@PAVBitmapReadAccess@@ABVColor@@@Z -?ImplGetChain@ImplVectorizer@@AAEEPAVImplVectMap@@ABVPoint@@AAVImplChain@@@Z -?ImplGetSpace@ImplChain@@AAEXXZ -?ImplIsUp@ImplVectorizer@@ABEEPAVImplVectMap@@JJ@Z -?ImplLimitPolyPoly@ImplVectorizer@@AAEXAAVPolyPolygon@@@Z -?ImplPostProcess@ImplChain@@AAEXABVImplPointArray@@@Z -?ImplSetSize@ImplPointArray@@QAEXK@Z -?ImplVectorize@ImplVectorizer@@QAEEABVBitmap@@AAVGDIMetaFile@@EKPBVLink@@@Z -?ImplVectorize@ImplVectorizer@@QAEEABVBitmap@@AAVPolyPolygon@@KPBVLink@@@Z -?Set@ImplVectMap@@QAEXJJE@Z -ImplColorSetCmpFnc -_real@8@4004b400000000000000 -??0ImplLineConverter@@QAE@ABVPolygon@@ABVLineInfo@@PBVPoint@@@Z -??1ImplLineConverter@@QAE@XZ -??_EImplFloatPoint@@QAEPAXI@Z -?GetNVec@ImplFloatPoint@@QBE?AU1@ABU1@@Z -?GetOVec@ImplFloatPoint@@QBE?AU1@ABU1@@Z -?ImplGetFirst@ImplLineConverter@@QAEPBVPolygon@@XZ -?ImplGetNext@ImplLineConverter@@QAEPBVPolygon@@XZ -_real@8@40008000000000000000 -??0?$_Ht_It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_C_Tr@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@PBU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@PBV?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@1@@Z -??0?$_Ht_It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@PBU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@PBV?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@1@@Z -??0?$_STL_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@PAPAX@Z -??0?$_Vector_base@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@@Z -??0?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAE@IABQAXABV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@@Z -??0ImplJobSetup@@QAE@ABU0@@Z -??0ImplJobSetup@@QAE@XZ -??0JobSetup@@QAE@ABV0@@Z -??0JobSetup@@QAE@XZ -??0OUString@rtl@@QAE@ABV01@@Z -??1?$pair@$$CBVOUString@rtl@@V12@@_STL@@QAE@XZ -??1?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAE@XZ -??1ImplJobSetup@@QAE@XZ -??1JobSetup@@QAE@XZ -??4JobSetup@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVJobSetup@@@Z -??6@YAAAVSvStream@@AAV0@ABVJobSetup@@@Z -??8@YAEABVOUString@rtl@@0@Z -??8JobSetup@@QBEEABV0@@Z -??_G?$pair@$$CBVOUString@rtl@@V12@@_STL@@QAEPAXI@Z -?DbgName_JobSetup@@YAPAUDbgDataType@@XZ -?GetDriverName@JobSetup@@QBE?AVString@@XZ -?GetPrinterName@JobSetup@@QBE?AVString@@XZ -?GetValue@JobSetup@@QBE?AVString@@ABV2@@Z -?ImplGetConstData@JobSetup@@QAEPAUImplJobSetup@@XZ -?ImplGetConstData@JobSetup@@QBEPBUImplJobSetup@@XZ -?ImplGetData@JobSetup@@QAEPAUImplJobSetup@@XZ -?SetValue@JobSetup@@QAEXABVString@@0@Z -?_M_acquire_lock@_STL_mutex_base@_STL@@QAEXXZ -?_M_bkt_num@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@ABEIABU?$pair@$$CBVOUString@rtl@@V12@@2@I@Z -?_M_do_lock@?$_STL_mutex_spin@$0A@@_STL@@SAXPCK@Z -?_M_fill_insert@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAEXPAPAXIABQAX@Z -?_M_initialize_buckets@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@AAEXI@Z -?_M_insert_overflow@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@IAEXPAPAXABQAXI@Z -?_M_list@?$_Stl_prime@_N@_STL@@2QBKB -?_M_new_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@AAEPAU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@ABU?$pair@$$CBVOUString@rtl@@V12@@2@@Z -?_M_release_lock@_STL_mutex_base@_STL@@QAEXXZ -?_S_chunk_alloc@?$D__A@$00$0A@@_STL@@CAPADIAAH@Z -?_S_end_free@?$D__A@$00$0A@@_STL@@0PADA -?_S_free_list@?$D__A@$00$0A@@_STL@@0RCRAV_Node_alloc_obj@2@C -?_S_heap_size@?$D__A@$00$0A@@_STL@@0IA -?_S_lock@?$_Node_Alloc_Lock@$00$0A@@_STL@@2U_STL_mutex_base@2@A -?_S_refill@?$D__A@$00$0A@@_STL@@CAPAXI@Z -?_S_start_free@?$D__A@$00$0A@@_STL@@0PADA -?__copy@_STL@@YAPAPAXPAPAX00U_Ra__ItT@1@PAH@Z -?__copy_backward@_STL@@YAPAPAXPAPAX00U_Ra__ItT@1@PAH@Z -?__last@?$_STL_mutex_spin@$0A@@_STL@@2IA -?__lower_bound@_STL@@YAPBIPBI0ABIPAH@Z -?__max@?$_STL_mutex_spin@$0A@@_STL@@2IA -?allocate@?$D__A@$00$0A@@_STL@@SAPAXI@Z -?compareTo@OUString@rtl@@QBEJABV12@@Z -?copy@_STL@@YAPAPAXPAPAX00@Z -?deallocate@?$D__A@$00$0A@@_STL@@SAXPAXI@Z -?deallocate@?$allocator@U?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QBEXPAU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@I@Z -?erase@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAEPAPAXPAPAX0@Z -?fill_n@_STL@@YAPAPAXPAPAXIABQAX@Z -?find_or_insert@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEAAU?$pair@$$CBVOUString@rtl@@V12@@2@ABU32@@Z -?get_allocator@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QBE?AV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@XZ -?reserve@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAEXI@Z -?swap@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAEXAAV12@@Z -?Enum@Line@@QAEXABVLink@@@Z -?GetDistance@Line@@QBENABN0@Z -?Intersection@Line@@QBEEABV1@AAN1@Z -?Intersection@Line@@QBEEABV1@AAVPoint@@@Z -?NearestPoint@Line@@QBE?AVPoint@@ABV2@@Z -_real@8@bfff8000000000000000 -??0ImplLineInfo@@QAE@ABU0@@Z -??0ImplLineInfo@@QAE@XZ -??0LineInfo@@QAE@ABV0@@Z -??0LineInfo@@QAE@W4LineStyle@@J@Z -??1LineInfo@@QAE@XZ -??4LineInfo@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAUImplLineInfo@@@Z -??5@YAAAVSvStream@@AAV0@AAVLineInfo@@@Z -??6@YAAAVSvStream@@AAV0@ABUImplLineInfo@@@Z -??6@YAAAVSvStream@@AAV0@ABVLineInfo@@@Z -??8LineInfo@@QBEEABV0@@Z -?DbgName_LineInfo@@YAPAUDbgDataType@@XZ -?ImplMakeUnique@LineInfo@@AAEXXZ -?SetDashCount@LineInfo@@QAEXG@Z -?SetDashLen@LineInfo@@QAEXJ@Z -?SetDistance@LineInfo@@QAEXJ@Z -?SetDotCount@LineInfo@@QAEXG@Z -?SetDotLen@LineInfo@@QAEXJ@Z -?SetStyle@LineInfo@@QAEXW4LineStyle@@@Z -?SetWidth@LineInfo@@QAEXJ@Z -??0ImplMapMode@@QAE@ABV0@@Z -??0ImplMapMode@@QAE@XZ -??0MapMode@@QAE@ABV0@@Z -??0MapMode@@QAE@W4MapUnit@@@Z -??0MapMode@@QAE@W4MapUnit@@ABVPoint@@ABVFraction@@2@Z -??0MapMode@@QAE@XZ -??1MapMode@@QAE@XZ -??4MapMode@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVImplMapMode@@@Z -??5@YAAAVSvStream@@AAV0@AAVMapMode@@@Z -??6@YAAAVSvStream@@AAV0@ABVImplMapMode@@@Z -??6@YAAAVSvStream@@AAV0@ABVMapMode@@@Z -??8MapMode@@QBEEABV0@@Z -?DbgName_MapMode@@YAPAUDbgDataType@@XZ -?IsDefault@MapMode@@QBEEXZ -?SetMapUnit@MapMode@@QAEXW4MapUnit@@@Z -?SetOrigin@MapMode@@QAEXABVPoint@@@Z -?SetScaleX@MapMode@@QAEXABVFraction@@@Z -?SetScaleY@MapMode@@QAEXABVFraction@@@Z -??0MetaAction@@QAE@G@Z -??0MetaAction@@QAE@XZ -??0MetaArcAction@@QAE@ABVRectangle@@ABVPoint@@1@Z -??0MetaArcAction@@QAE@XZ -??0MetaBmpAction@@QAE@ABVPoint@@ABVBitmap@@@Z -??0MetaBmpAction@@QAE@XZ -??0MetaBmpExAction@@QAE@ABVPoint@@ABVBitmapEx@@@Z -??0MetaBmpExAction@@QAE@XZ -??0MetaBmpExScaleAction@@QAE@ABVPoint@@ABVSize@@ABVBitmapEx@@@Z -??0MetaBmpExScaleAction@@QAE@XZ -??0MetaBmpExScalePartAction@@QAE@ABVPoint@@ABVSize@@01ABVBitmapEx@@@Z -??0MetaBmpExScalePartAction@@QAE@XZ -??0MetaBmpScaleAction@@QAE@ABVPoint@@ABVSize@@ABVBitmap@@@Z -??0MetaBmpScaleAction@@QAE@XZ -??0MetaBmpScalePartAction@@QAE@ABVPoint@@ABVSize@@01ABVBitmap@@@Z -??0MetaBmpScalePartAction@@QAE@XZ -??0MetaChordAction@@QAE@ABVRectangle@@ABVPoint@@1@Z -??0MetaChordAction@@QAE@XZ -??0MetaClipRegionAction@@QAE@ABVRegion@@E@Z -??0MetaClipRegionAction@@QAE@XZ -??0MetaCommentAction@@QAE@ABV0@@Z -??0MetaCommentAction@@QAE@ABVByteString@@JPBEK@Z -??0MetaCommentAction@@QAE@J@Z -??0MetaCommentAction@@QAE@PBEK@Z -??0MetaEPSAction@@QAE@ABVPoint@@ABVSize@@ABVGfxLink@@ABVGDIMetaFile@@@Z -??0MetaEPSAction@@QAE@XZ -??0MetaEllipseAction@@QAE@ABVRectangle@@@Z -??0MetaEllipseAction@@QAE@XZ -??0MetaFillColorAction@@QAE@ABVColor@@E@Z -??0MetaFillColorAction@@QAE@XZ -??0MetaFloatTransparentAction@@QAE@ABVGDIMetaFile@@ABVPoint@@ABVSize@@ABVGradient@@@Z -??0MetaFloatTransparentAction@@QAE@XZ -??0MetaFontAction@@QAE@ABVFont@@@Z -??0MetaFontAction@@QAE@XZ -??0MetaGradientAction@@QAE@ABVRectangle@@ABVGradient@@@Z -??0MetaGradientAction@@QAE@XZ -??0MetaGradientExAction@@QAE@ABVPolyPolygon@@ABVGradient@@@Z -??0MetaGradientExAction@@QAE@XZ -??0MetaHatchAction@@QAE@ABVPolyPolygon@@ABVHatch@@@Z -??0MetaHatchAction@@QAE@XZ -??0MetaISectRectClipRegionAction@@QAE@ABVRectangle@@@Z -??0MetaISectRectClipRegionAction@@QAE@XZ -??0MetaISectRegionClipRegionAction@@QAE@ABVRegion@@@Z -??0MetaISectRegionClipRegionAction@@QAE@XZ -??0MetaLineAction@@QAE@ABVPoint@@0@Z -??0MetaLineAction@@QAE@ABVPoint@@0ABVLineInfo@@@Z -??0MetaLineAction@@QAE@XZ -??0MetaLineColorAction@@QAE@ABVColor@@E@Z -??0MetaLineColorAction@@QAE@XZ -??0MetaMapModeAction@@QAE@ABVMapMode@@@Z -??0MetaMapModeAction@@QAE@XZ -??0MetaMaskAction@@QAE@ABVPoint@@ABVBitmap@@ABVColor@@@Z -??0MetaMaskAction@@QAE@XZ -??0MetaMaskScaleAction@@QAE@ABVPoint@@ABVSize@@ABVBitmap@@ABVColor@@@Z -??0MetaMaskScaleAction@@QAE@XZ -??0MetaMaskScalePartAction@@QAE@ABVPoint@@ABVSize@@01ABVBitmap@@ABVColor@@@Z -??0MetaMaskScalePartAction@@QAE@XZ -??0MetaMoveClipRegionAction@@QAE@JJ@Z -??0MetaMoveClipRegionAction@@QAE@XZ -??0MetaPieAction@@QAE@ABVRectangle@@ABVPoint@@1@Z -??0MetaPieAction@@QAE@XZ -??0MetaPixelAction@@QAE@ABVPoint@@ABVColor@@@Z -??0MetaPixelAction@@QAE@XZ -??0MetaPointAction@@QAE@ABVPoint@@@Z -??0MetaPointAction@@QAE@XZ -??0MetaPolyLineAction@@QAE@ABVPolygon@@@Z -??0MetaPolyLineAction@@QAE@ABVPolygon@@ABVLineInfo@@@Z -??0MetaPolyLineAction@@QAE@XZ -??0MetaPolyPolygonAction@@QAE@ABVPolyPolygon@@@Z -??0MetaPolyPolygonAction@@QAE@XZ -??0MetaPolygonAction@@QAE@ABVPolygon@@@Z -??0MetaPolygonAction@@QAE@XZ -??0MetaPopAction@@QAE@XZ -??0MetaPushAction@@QAE@G@Z -??0MetaPushAction@@QAE@XZ -??0MetaRasterOpAction@@QAE@W4RasterOp@@@Z -??0MetaRasterOpAction@@QAE@XZ -??0MetaRectAction@@QAE@ABVRectangle@@@Z -??0MetaRectAction@@QAE@XZ -??0MetaRefPointAction@@QAE@ABVPoint@@E@Z -??0MetaRefPointAction@@QAE@XZ -??0MetaRoundRectAction@@QAE@ABVRectangle@@JJ@Z -??0MetaRoundRectAction@@QAE@XZ -??0MetaStretchTextAction@@QAE@ABVPoint@@KABVString@@GG@Z -??0MetaStretchTextAction@@QAE@XZ -??0MetaTextAction@@QAE@ABVPoint@@ABVString@@GG@Z -??0MetaTextAction@@QAE@XZ -??0MetaTextAlignAction@@QAE@W4TextAlign@@@Z -??0MetaTextAlignAction@@QAE@XZ -??0MetaTextArrayAction@@QAE@ABV0@@Z -??0MetaTextArrayAction@@QAE@ABVPoint@@ABVString@@PBJGG@Z -??0MetaTextArrayAction@@QAE@XZ -??0MetaTextColorAction@@QAE@ABVColor@@@Z -??0MetaTextColorAction@@QAE@XZ -??0MetaTextFillColorAction@@QAE@ABVColor@@E@Z -??0MetaTextFillColorAction@@QAE@XZ -??0MetaTextLineAction@@QAE@ABVPoint@@JW4FontStrikeout@@W4FontUnderline@@@Z -??0MetaTextLineAction@@QAE@XZ -??0MetaTextLineColorAction@@QAE@ABVColor@@E@Z -??0MetaTextLineColorAction@@QAE@XZ -??0MetaTextRectAction@@QAE@ABVRectangle@@ABVString@@G@Z -??0MetaTextRectAction@@QAE@XZ -??0MetaTransparentAction@@QAE@ABVPolyPolygon@@G@Z -??0MetaTransparentAction@@QAE@XZ -??0MetaWallpaperAction@@QAE@ABVRectangle@@ABVWallpaper@@@Z -??0MetaWallpaperAction@@QAE@XZ -??0Rectangle@@QAE@ABVPoint@@0@Z -??1MetaAction@@UAE@XZ -??1MetaArcAction@@UAE@XZ -??1MetaBmpAction@@UAE@XZ -??1MetaBmpExAction@@UAE@XZ -??1MetaBmpExScaleAction@@UAE@XZ -??1MetaBmpExScalePartAction@@UAE@XZ -??1MetaBmpScaleAction@@UAE@XZ -??1MetaBmpScalePartAction@@UAE@XZ -??1MetaChordAction@@UAE@XZ -??1MetaClipRegionAction@@UAE@XZ -??1MetaCommentAction@@UAE@XZ -??1MetaEPSAction@@UAE@XZ -??1MetaEllipseAction@@UAE@XZ -??1MetaFillColorAction@@UAE@XZ -??1MetaFloatTransparentAction@@UAE@XZ -??1MetaFontAction@@UAE@XZ -??1MetaGradientAction@@UAE@XZ -??1MetaGradientExAction@@UAE@XZ -??1MetaHatchAction@@UAE@XZ -??1MetaISectRectClipRegionAction@@UAE@XZ -??1MetaISectRegionClipRegionAction@@UAE@XZ -??1MetaLineAction@@UAE@XZ -??1MetaLineColorAction@@UAE@XZ -??1MetaMapModeAction@@UAE@XZ -??1MetaMaskAction@@UAE@XZ -??1MetaMaskScaleAction@@UAE@XZ -??1MetaMaskScalePartAction@@UAE@XZ -??1MetaMoveClipRegionAction@@UAE@XZ -??1MetaPieAction@@UAE@XZ -??1MetaPixelAction@@UAE@XZ -??1MetaPointAction@@UAE@XZ -??1MetaPolyLineAction@@UAE@XZ -??1MetaPolyPolygonAction@@UAE@XZ -??1MetaPolygonAction@@UAE@XZ -??1MetaPopAction@@UAE@XZ -??1MetaPushAction@@UAE@XZ -??1MetaRasterOpAction@@UAE@XZ -??1MetaRectAction@@UAE@XZ -??1MetaRefPointAction@@UAE@XZ -??1MetaRoundRectAction@@UAE@XZ -??1MetaStretchTextAction@@UAE@XZ -??1MetaTextAction@@UAE@XZ -??1MetaTextAlignAction@@UAE@XZ -??1MetaTextArrayAction@@UAE@XZ -??1MetaTextColorAction@@UAE@XZ -??1MetaTextFillColorAction@@UAE@XZ -??1MetaTextLineAction@@UAE@XZ -??1MetaTextLineColorAction@@UAE@XZ -??1MetaTextRectAction@@UAE@XZ -??1MetaTransparentAction@@UAE@XZ -??1MetaWallpaperAction@@UAE@XZ -??_7MetaAction@@6B@ -??_7MetaArcAction@@6B@ -??_7MetaBmpAction@@6B@ -??_7MetaBmpExAction@@6B@ -??_7MetaBmpExScaleAction@@6B@ -??_7MetaBmpExScalePartAction@@6B@ -??_7MetaBmpScaleAction@@6B@ -??_7MetaBmpScalePartAction@@6B@ -??_7MetaChordAction@@6B@ -??_7MetaClipRegionAction@@6B@ -??_7MetaCommentAction@@6B@ -??_7MetaEPSAction@@6B@ -??_7MetaEllipseAction@@6B@ -??_7MetaFillColorAction@@6B@ -??_7MetaFloatTransparentAction@@6B@ -??_7MetaFontAction@@6B@ -??_7MetaGradientAction@@6B@ -??_7MetaGradientExAction@@6B@ -??_7MetaHatchAction@@6B@ -??_7MetaISectRectClipRegionAction@@6B@ -??_7MetaISectRegionClipRegionAction@@6B@ -??_7MetaLineAction@@6B@ -??_7MetaLineColorAction@@6B@ -??_7MetaMapModeAction@@6B@ -??_7MetaMaskAction@@6B@ -??_7MetaMaskScaleAction@@6B@ -??_7MetaMaskScalePartAction@@6B@ -??_7MetaMoveClipRegionAction@@6B@ -??_7MetaPieAction@@6B@ -??_7MetaPixelAction@@6B@ -??_7MetaPointAction@@6B@ -??_7MetaPolyLineAction@@6B@ -??_7MetaPolyPolygonAction@@6B@ -??_7MetaPolygonAction@@6B@ -??_7MetaPopAction@@6B@ -??_7MetaPushAction@@6B@ -??_7MetaRasterOpAction@@6B@ -??_7MetaRectAction@@6B@ -??_7MetaRefPointAction@@6B@ -??_7MetaRoundRectAction@@6B@ -??_7MetaStretchTextAction@@6B@ -??_7MetaTextAction@@6B@ -??_7MetaTextAlignAction@@6B@ -??_7MetaTextArrayAction@@6B@ -??_7MetaTextColorAction@@6B@ -??_7MetaTextFillColorAction@@6B@ -??_7MetaTextLineAction@@6B@ -??_7MetaTextLineColorAction@@6B@ -??_7MetaTextRectAction@@6B@ -??_7MetaTransparentAction@@6B@ -??_7MetaWallpaperAction@@6B@ -??_GMetaAction@@UAEPAXI@Z -??_GMetaArcAction@@UAEPAXI@Z -??_GMetaBmpAction@@UAEPAXI@Z -??_GMetaBmpExAction@@UAEPAXI@Z -??_GMetaBmpExScaleAction@@UAEPAXI@Z -??_GMetaBmpExScalePartAction@@UAEPAXI@Z -??_GMetaBmpScaleAction@@UAEPAXI@Z -??_GMetaBmpScalePartAction@@UAEPAXI@Z -??_GMetaChordAction@@UAEPAXI@Z -??_GMetaClipRegionAction@@UAEPAXI@Z -??_GMetaCommentAction@@UAEPAXI@Z -??_GMetaEPSAction@@UAEPAXI@Z -??_GMetaEllipseAction@@UAEPAXI@Z -??_GMetaFillColorAction@@UAEPAXI@Z -??_GMetaFloatTransparentAction@@UAEPAXI@Z -??_GMetaFontAction@@UAEPAXI@Z -??_GMetaGradientAction@@UAEPAXI@Z -??_GMetaGradientExAction@@UAEPAXI@Z -??_GMetaHatchAction@@UAEPAXI@Z -??_GMetaISectRectClipRegionAction@@UAEPAXI@Z -??_GMetaISectRegionClipRegionAction@@UAEPAXI@Z -??_GMetaLineAction@@UAEPAXI@Z -??_GMetaLineColorAction@@UAEPAXI@Z -??_GMetaMapModeAction@@UAEPAXI@Z -??_GMetaMaskAction@@UAEPAXI@Z -??_GMetaMaskScaleAction@@UAEPAXI@Z -??_GMetaMaskScalePartAction@@UAEPAXI@Z -??_GMetaMoveClipRegionAction@@UAEPAXI@Z -??_GMetaPieAction@@UAEPAXI@Z -??_GMetaPixelAction@@UAEPAXI@Z -??_GMetaPointAction@@UAEPAXI@Z -??_GMetaPolyLineAction@@UAEPAXI@Z -??_GMetaPolyPolygonAction@@UAEPAXI@Z -??_GMetaPolygonAction@@UAEPAXI@Z -??_GMetaPopAction@@UAEPAXI@Z -??_GMetaPushAction@@UAEPAXI@Z -??_GMetaRasterOpAction@@UAEPAXI@Z -??_GMetaRectAction@@UAEPAXI@Z -??_GMetaRefPointAction@@UAEPAXI@Z -??_GMetaRoundRectAction@@UAEPAXI@Z -??_GMetaStretchTextAction@@UAEPAXI@Z -??_GMetaTextAction@@UAEPAXI@Z -??_GMetaTextAlignAction@@UAEPAXI@Z -??_GMetaTextArrayAction@@UAEPAXI@Z -??_GMetaTextColorAction@@UAEPAXI@Z -??_GMetaTextFillColorAction@@UAEPAXI@Z -??_GMetaTextLineAction@@UAEPAXI@Z -??_GMetaTextLineColorAction@@UAEPAXI@Z -??_GMetaTextRectAction@@UAEPAXI@Z -??_GMetaTransparentAction@@UAEPAXI@Z -??_GMetaWallpaperAction@@UAEPAXI@Z -?Clone@MetaAction@@UAEPAV1@XZ -?Clone@MetaArcAction@@UAEPAVMetaAction@@XZ -?Clone@MetaBmpAction@@UAEPAVMetaAction@@XZ -?Clone@MetaBmpExAction@@UAEPAVMetaAction@@XZ -?Clone@MetaBmpExScaleAction@@UAEPAVMetaAction@@XZ -?Clone@MetaBmpExScalePartAction@@UAEPAVMetaAction@@XZ -?Clone@MetaBmpScaleAction@@UAEPAVMetaAction@@XZ -?Clone@MetaBmpScalePartAction@@UAEPAVMetaAction@@XZ -?Clone@MetaChordAction@@UAEPAVMetaAction@@XZ -?Clone@MetaClipRegionAction@@UAEPAVMetaAction@@XZ -?Clone@MetaCommentAction@@UAEPAVMetaAction@@XZ -?Clone@MetaEPSAction@@UAEPAVMetaAction@@XZ -?Clone@MetaEllipseAction@@UAEPAVMetaAction@@XZ -?Clone@MetaFillColorAction@@UAEPAVMetaAction@@XZ -?Clone@MetaFloatTransparentAction@@UAEPAVMetaAction@@XZ -?Clone@MetaFontAction@@UAEPAVMetaAction@@XZ -?Clone@MetaGradientAction@@UAEPAVMetaAction@@XZ -?Clone@MetaGradientExAction@@UAEPAVMetaAction@@XZ -?Clone@MetaHatchAction@@UAEPAVMetaAction@@XZ -?Clone@MetaISectRectClipRegionAction@@UAEPAVMetaAction@@XZ -?Clone@MetaISectRegionClipRegionAction@@UAEPAVMetaAction@@XZ -?Clone@MetaLineAction@@UAEPAVMetaAction@@XZ -?Clone@MetaLineColorAction@@UAEPAVMetaAction@@XZ -?Clone@MetaMapModeAction@@UAEPAVMetaAction@@XZ -?Clone@MetaMaskAction@@UAEPAVMetaAction@@XZ -?Clone@MetaMaskScaleAction@@UAEPAVMetaAction@@XZ -?Clone@MetaMaskScalePartAction@@UAEPAVMetaAction@@XZ -?Clone@MetaMoveClipRegionAction@@UAEPAVMetaAction@@XZ -?Clone@MetaPieAction@@UAEPAVMetaAction@@XZ -?Clone@MetaPixelAction@@UAEPAVMetaAction@@XZ -?Clone@MetaPointAction@@UAEPAVMetaAction@@XZ -?Clone@MetaPolyLineAction@@UAEPAVMetaAction@@XZ -?Clone@MetaPolyPolygonAction@@UAEPAVMetaAction@@XZ -?Clone@MetaPolygonAction@@UAEPAVMetaAction@@XZ -?Clone@MetaPopAction@@UAEPAVMetaAction@@XZ -?Clone@MetaPushAction@@UAEPAVMetaAction@@XZ -?Clone@MetaRasterOpAction@@UAEPAVMetaAction@@XZ -?Clone@MetaRectAction@@UAEPAVMetaAction@@XZ -?Clone@MetaRefPointAction@@UAEPAVMetaAction@@XZ -?Clone@MetaRoundRectAction@@UAEPAVMetaAction@@XZ -?Clone@MetaStretchTextAction@@UAEPAVMetaAction@@XZ -?Clone@MetaTextAction@@UAEPAVMetaAction@@XZ -?Clone@MetaTextAlignAction@@UAEPAVMetaAction@@XZ -?Clone@MetaTextArrayAction@@UAEPAVMetaAction@@XZ -?Clone@MetaTextColorAction@@UAEPAVMetaAction@@XZ -?Clone@MetaTextFillColorAction@@UAEPAVMetaAction@@XZ -?Clone@MetaTextLineAction@@UAEPAVMetaAction@@XZ -?Clone@MetaTextLineColorAction@@UAEPAVMetaAction@@XZ -?Clone@MetaTextRectAction@@UAEPAVMetaAction@@XZ -?Clone@MetaTransparentAction@@UAEPAVMetaAction@@XZ -?Clone@MetaWallpaperAction@@UAEPAVMetaAction@@XZ -?Execute@MetaAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaArcAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaBmpAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaBmpExAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaBmpExScaleAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaBmpExScalePartAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaBmpScaleAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaBmpScalePartAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaChordAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaClipRegionAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaCommentAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaEPSAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaEllipseAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaFillColorAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaFloatTransparentAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaFontAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaGradientAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaGradientExAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaHatchAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaISectRectClipRegionAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaISectRegionClipRegionAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaLineAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaLineColorAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaMapModeAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaMaskAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaMaskScaleAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaMaskScalePartAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaMoveClipRegionAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaPieAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaPixelAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaPointAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaPolyLineAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaPolyPolygonAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaPolygonAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaPopAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaPushAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaRasterOpAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaRectAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaRefPointAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaRoundRectAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaStretchTextAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaTextAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaTextAlignAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaTextArrayAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaTextColorAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaTextFillColorAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaTextLineAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaTextLineColorAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaTextRectAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaTransparentAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaWallpaperAction@@UAEXPAVOutputDevice@@@Z -?ImplInitDynamicData@MetaCommentAction@@AAEXPBEK@Z -?Move@MetaAction@@UAEXJJ@Z -?Move@MetaArcAction@@UAEXJJ@Z -?Move@MetaBmpAction@@UAEXJJ@Z -?Move@MetaBmpExAction@@UAEXJJ@Z -?Move@MetaBmpExScaleAction@@UAEXJJ@Z -?Move@MetaBmpExScalePartAction@@UAEXJJ@Z -?Move@MetaBmpScaleAction@@UAEXJJ@Z -?Move@MetaBmpScalePartAction@@UAEXJJ@Z -?Move@MetaChordAction@@UAEXJJ@Z -?Move@MetaClipRegionAction@@UAEXJJ@Z -?Move@MetaEPSAction@@UAEXJJ@Z -?Move@MetaEllipseAction@@UAEXJJ@Z -?Move@MetaFloatTransparentAction@@UAEXJJ@Z -?Move@MetaGradientAction@@UAEXJJ@Z -?Move@MetaGradientExAction@@UAEXJJ@Z -?Move@MetaHatchAction@@UAEXJJ@Z -?Move@MetaISectRectClipRegionAction@@UAEXJJ@Z -?Move@MetaISectRegionClipRegionAction@@UAEXJJ@Z -?Move@MetaLineAction@@UAEXJJ@Z -?Move@MetaMaskAction@@UAEXJJ@Z -?Move@MetaMaskScaleAction@@UAEXJJ@Z -?Move@MetaMaskScalePartAction@@UAEXJJ@Z -?Move@MetaPieAction@@UAEXJJ@Z -?Move@MetaPixelAction@@UAEXJJ@Z -?Move@MetaPointAction@@UAEXJJ@Z -?Move@MetaPolyLineAction@@UAEXJJ@Z -?Move@MetaPolyPolygonAction@@UAEXJJ@Z -?Move@MetaPolygonAction@@UAEXJJ@Z -?Move@MetaRectAction@@UAEXJJ@Z -?Move@MetaRoundRectAction@@UAEXJJ@Z -?Move@MetaStretchTextAction@@UAEXJJ@Z -?Move@MetaTextAction@@UAEXJJ@Z -?Move@MetaTextArrayAction@@UAEXJJ@Z -?Move@MetaTextLineAction@@UAEXJJ@Z -?Move@MetaTextRectAction@@UAEXJJ@Z -?Move@MetaTransparentAction@@UAEXJJ@Z -?Move@MetaWallpaperAction@@UAEXJJ@Z -?Read@MetaAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaArcAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaBmpAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaBmpExAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaBmpExScaleAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaBmpExScalePartAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaBmpScaleAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaBmpScalePartAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaChordAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaClipRegionAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaCommentAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaEPSAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaEllipseAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaFillColorAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaFloatTransparentAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaFontAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaGradientAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaGradientExAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaHatchAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaISectRectClipRegionAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaISectRegionClipRegionAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaLineAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaLineColorAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaMapModeAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaMaskAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaMaskScaleAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaMaskScalePartAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaMoveClipRegionAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaPieAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaPixelAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaPointAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaPolyLineAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaPolyPolygonAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaPolygonAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaPopAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaPushAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaRasterOpAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaRectAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaRefPointAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaRoundRectAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaStretchTextAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaTextAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaTextAlignAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaTextArrayAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaTextColorAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaTextFillColorAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaTextLineAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaTextLineColorAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaTextRectAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaTransparentAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?Read@MetaWallpaperAction@@UAEXAAVSvStream@@PAUImplMetaReadData@@@Z -?ReadMetaAction@MetaAction@@SAPAV1@AAVSvStream@@PAUImplMetaReadData@@@Z -?Scale@MetaAction@@UAEXNN@Z -?Scale@MetaArcAction@@UAEXNN@Z -?Scale@MetaBmpAction@@UAEXNN@Z -?Scale@MetaBmpExAction@@UAEXNN@Z -?Scale@MetaBmpExScaleAction@@UAEXNN@Z -?Scale@MetaBmpExScalePartAction@@UAEXNN@Z -?Scale@MetaBmpScaleAction@@UAEXNN@Z -?Scale@MetaBmpScalePartAction@@UAEXNN@Z -?Scale@MetaChordAction@@UAEXNN@Z -?Scale@MetaClipRegionAction@@UAEXNN@Z -?Scale@MetaEPSAction@@UAEXNN@Z -?Scale@MetaEllipseAction@@UAEXNN@Z -?Scale@MetaFloatTransparentAction@@UAEXNN@Z -?Scale@MetaFontAction@@UAEXNN@Z -?Scale@MetaGradientAction@@UAEXNN@Z -?Scale@MetaGradientExAction@@UAEXNN@Z -?Scale@MetaHatchAction@@UAEXNN@Z -?Scale@MetaISectRectClipRegionAction@@UAEXNN@Z -?Scale@MetaISectRegionClipRegionAction@@UAEXNN@Z -?Scale@MetaLineAction@@UAEXNN@Z -?Scale@MetaMapModeAction@@UAEXNN@Z -?Scale@MetaMaskAction@@UAEXNN@Z -?Scale@MetaMaskScaleAction@@UAEXNN@Z -?Scale@MetaMaskScalePartAction@@UAEXNN@Z -?Scale@MetaMoveClipRegionAction@@UAEXNN@Z -?Scale@MetaPieAction@@UAEXNN@Z -?Scale@MetaPixelAction@@UAEXNN@Z -?Scale@MetaPointAction@@UAEXNN@Z -?Scale@MetaPolyLineAction@@UAEXNN@Z -?Scale@MetaPolyPolygonAction@@UAEXNN@Z -?Scale@MetaPolygonAction@@UAEXNN@Z -?Scale@MetaRectAction@@UAEXNN@Z -?Scale@MetaRoundRectAction@@UAEXNN@Z -?Scale@MetaStretchTextAction@@UAEXNN@Z -?Scale@MetaTextAction@@UAEXNN@Z -?Scale@MetaTextArrayAction@@UAEXNN@Z -?Scale@MetaTextLineAction@@UAEXNN@Z -?Scale@MetaTextRectAction@@UAEXNN@Z -?Scale@MetaTransparentAction@@UAEXNN@Z -?Scale@MetaWallpaperAction@@UAEXNN@Z -?Write@MetaAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaArcAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaBmpAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaBmpExAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaBmpExScaleAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaBmpExScalePartAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaBmpScaleAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaBmpScalePartAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaChordAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaClipRegionAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaCommentAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaEPSAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaEllipseAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaFillColorAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaFloatTransparentAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaFontAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaGradientAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaGradientExAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaHatchAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaISectRectClipRegionAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaISectRegionClipRegionAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaLineAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaLineColorAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaMapModeAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaMaskAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaMaskScaleAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaMaskScalePartAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaMoveClipRegionAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaPieAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaPixelAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaPointAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaPolyLineAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaPolyPolygonAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaPolygonAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaPopAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaPushAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaRasterOpAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaRectAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaRefPointAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaRoundRectAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaStretchTextAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaTextAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaTextAlignAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaTextArrayAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaTextColorAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaTextFillColorAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaTextLineAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaTextLineColorAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaTextRectAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaTransparentAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -?Write@MetaWallpaperAction@@UAEXAAVSvStream@@PAUImplMetaWriteData@@@Z -??0FontInfo@@QAE@ABV0@@Z -??0FontInfo@@QAE@XZ -??1FontInfo@@QAE@XZ -??4FontInfo@@QAEAAV0@ABV0@@Z -??8FontInfo@@QBEEABV0@@Z -??0ImpNodeCache@@QAE@K@Z -??0InverseColorMap@@QAE@ABVBitmapPalette@@@Z -??0Octree@@QAE@ABVBitmapReadAccess@@K@Z -??0Octree@@QAE@K@Z -??1ImpNodeCache@@QAE@XZ -??1InverseColorMap@@QAE@XZ -??1Octree@@QAE@XZ -?AddColor@Octree@@QAEXABVBitmapColor@@@Z -?CreatePalette@Octree@@AAEXPAUOctreeNode@@@Z -?GetPalIndex@Octree@@AAEXPAUOctreeNode@@@Z -?ImplAdd@Octree@@AAEXPAPAUOctreeNode@@@Z -?ImplCreateBuffers@InverseColorMap@@AAEXK@Z -?ImplCreateOctree@Octree@@AAEXXZ -?ImplDeleteOctree@Octree@@AAEXPAPAUOctreeNode@@@Z -?ImplReduce@Octree@@AAEXXZ -?ImplDevicePixelToLogic@OutputDevice@@QBE?AVRectangle@@ABV2@@Z -?ImplDevicePixelToLogicHeight@OutputDevice@@QBEJJ@Z -?ImplDevicePixelToLogicWidth@OutputDevice@@QBEJJ@Z -?ImplLogicHeightToDevicePixel@OutputDevice@@QBEJJ@Z -?ImplLogicToDevicePixel@OutputDevice@@QBE?AVLineInfo@@ABV2@@Z -?ImplLogicToDevicePixel@OutputDevice@@QBE?AVPoint@@ABV2@@Z -?ImplLogicToDevicePixel@OutputDevice@@QBE?AVPolyPolygon@@ABV2@@Z -?ImplLogicToDevicePixel@OutputDevice@@QBE?AVPolygon@@ABV2@@Z -?ImplLogicToDevicePixel@OutputDevice@@QBE?AVRectangle@@ABV2@@Z -?ImplLogicToDevicePixel@OutputDevice@@QBE?AVSize@@ABV2@@Z -?ImplLogicUnitToPixelX@Window@@QAEJJW4MapUnit@@@Z -?ImplLogicUnitToPixelY@Window@@QAEJJW4MapUnit@@@Z -?ImplLogicWidthToDevicePixel@OutputDevice@@QBEJJ@Z -?ImplLogicXToDevicePixel@OutputDevice@@QBEJJ@Z -?ImplLogicYToDevicePixel@OutputDevice@@QBEJJ@Z -?ImplPixelToDevicePixel@OutputDevice@@QBE?AVRegion@@ABV2@@Z -?LogicToLogic@OutputDevice@@QBE?AVPoint@@ABV2@PBVMapMode@@1@Z -?LogicToLogic@OutputDevice@@QBE?AVRectangle@@ABV2@PBVMapMode@@1@Z -?LogicToLogic@OutputDevice@@QBE?AVSize@@ABV2@PBVMapMode@@1@Z -?LogicToLogic@OutputDevice@@QBEPAJPAJGPBVMapMode@@1@Z -?LogicToLogic@OutputDevice@@SA?AVPoint@@ABV2@ABVMapMode@@1@Z -?LogicToLogic@OutputDevice@@SA?AVRectangle@@ABV2@ABVMapMode@@1@Z -?LogicToLogic@OutputDevice@@SA?AVSize@@ABV2@ABVMapMode@@1@Z -?LogicToLogic@OutputDevice@@SAJJW4MapUnit@@0@Z -?LogicToPixel@OutputDevice@@QBE?AVPoint@@ABV2@@Z -?LogicToPixel@OutputDevice@@QBE?AVPoint@@ABV2@ABVMapMode@@@Z -?LogicToPixel@OutputDevice@@QBE?AVPolyPolygon@@ABV2@@Z -?LogicToPixel@OutputDevice@@QBE?AVPolyPolygon@@ABV2@ABVMapMode@@@Z -?LogicToPixel@OutputDevice@@QBE?AVPolygon@@ABV2@@Z -?LogicToPixel@OutputDevice@@QBE?AVPolygon@@ABV2@ABVMapMode@@@Z -?LogicToPixel@OutputDevice@@QBE?AVRectangle@@ABV2@@Z -?LogicToPixel@OutputDevice@@QBE?AVRectangle@@ABV2@ABVMapMode@@@Z -?LogicToPixel@OutputDevice@@QBE?AVRegion@@ABV2@@Z -?LogicToPixel@OutputDevice@@QBE?AVRegion@@ABV2@ABVMapMode@@@Z -?LogicToPixel@OutputDevice@@QBE?AVSize@@ABV2@@Z -?LogicToPixel@OutputDevice@@QBE?AVSize@@ABV2@ABVMapMode@@@Z -?PixelToLogic@OutputDevice@@QBE?AVPoint@@ABV2@@Z -?PixelToLogic@OutputDevice@@QBE?AVPoint@@ABV2@ABVMapMode@@@Z -?PixelToLogic@OutputDevice@@QBE?AVPolyPolygon@@ABV2@@Z -?PixelToLogic@OutputDevice@@QBE?AVPolyPolygon@@ABV2@ABVMapMode@@@Z -?PixelToLogic@OutputDevice@@QBE?AVPolygon@@ABV2@@Z -?PixelToLogic@OutputDevice@@QBE?AVPolygon@@ABV2@ABVMapMode@@@Z -?PixelToLogic@OutputDevice@@QBE?AVRectangle@@ABV2@@Z -?PixelToLogic@OutputDevice@@QBE?AVRectangle@@ABV2@ABVMapMode@@@Z -?PixelToLogic@OutputDevice@@QBE?AVRegion@@ABV2@@Z -?PixelToLogic@OutputDevice@@QBE?AVRegion@@ABV2@ABVMapMode@@@Z -?PixelToLogic@OutputDevice@@QBE?AVSize@@ABV2@@Z -?PixelToLogic@OutputDevice@@QBE?AVSize@@ABV2@ABVMapMode@@@Z -?SetMapMode@OutputDevice@@QAEXABVMapMode@@@Z -?SetMapMode@OutputDevice@@QAEXXZ -?SetRelativeMapMode@OutputDevice@@QAEXABVMapMode@@@Z -??0OutputDevice@@IAE@XZ -??1?$Reference@VXGraphics@awt@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1DbgXtorObj@@QAE@XZ -??1ImplGetDevFontList@@QAE@XZ -??1ImplGetDevSizeList@@QAE@XZ -??1OutputDevice@@UAE@XZ -??1Resource@@QAE@XZ -??_7OutputDevice@@6B@ -??_GOutputDevice@@UAEPAXI@Z -?CreateUnoGraphics@OutputDevice@@QAE?AV?$Reference@VXGraphics@awt@star@sun@com@@@uno@star@sun@com@@XZ -?DbgName_OutputDevice@@YAPAUDbgDataType@@XZ -?DrawLine@OutputDevice@@QAEXABVPoint@@0@Z -?DrawLine@OutputDevice@@QAEXABVPoint@@0ABVLineInfo@@@Z -?DrawPolyLine@OutputDevice@@QAEXABVPolygon@@@Z -?DrawPolyLine@OutputDevice@@QAEXABVPolygon@@ABVLineInfo@@@Z -?DrawPolyPolygon@OutputDevice@@QAEXABVPolyPolygon@@@Z -?DrawPolygon@OutputDevice@@QAEXABVPolygon@@@Z -?DrawRect@OutputDevice@@QAEXABVRectangle@@@Z -?GetActiveClipRegion@OutputDevice@@QBE?AVRegion@@XZ -?GetBitCount@OutputDevice@@QBEGXZ -?GetClipRegion@OutputDevice@@QBE?AVRegion@@XZ -?GetColorCount@OutputDevice@@QBEKXZ -?GetOpenGL@OutputDevice@@QAEPAVOpenGL@@XZ -?ImplDbgCheckOutputDevice@@YAPBDPBX@Z -?ImplDeInitOutDevData@OutputDevice@@QAEXXZ -?ImplGetGraphics@OutputDevice@@QAEHXZ -?ImplInitClipRegion@OutputDevice@@QAEXXZ -?ImplInitFillColor@OutputDevice@@QAEXXZ -?ImplInitLineColor@OutputDevice@@QAEXXZ -?ImplInitOutDevData@OutputDevice@@QAEXXZ -?ImplReleaseGraphics@OutputDevice@@QAEXE@Z -?ImplSelectClipRegion@OutputDevice@@SAEPAVSalGraphics@@ABVRegion@@@Z -?ImplSetClipRegion@OutputDevice@@QAEXPBVRegion@@@Z -?IntersectClipRegion@OutputDevice@@QAEXABVRectangle@@@Z -?IntersectClipRegion@OutputDevice@@QAEXABVRegion@@@Z -?MoveClipRegion@OutputDevice@@QAEXJJ@Z -?Pop@OutputDevice@@QAEXXZ -?Push@OutputDevice@@QAEXG@Z -?SetBackground@OutputDevice@@QAEXABVWallpaper@@@Z -?SetBackground@OutputDevice@@QAEXXZ -?SetClipRegion@OutputDevice@@QAEXABVRegion@@@Z -?SetClipRegion@OutputDevice@@QAEXXZ -?SetDrawMode@OutputDevice@@QAEXK@Z -?SetFillColor@OutputDevice@@QAEXABVColor@@@Z -?SetFillColor@OutputDevice@@QAEXXZ -?SetLineColor@OutputDevice@@QAEXABVColor@@@Z -?SetLineColor@OutputDevice@@QAEXXZ -?SetRasterOp@OutputDevice@@QAEXW4RasterOp@@@Z -?SetRefPoint@OutputDevice@@QAEXABVPoint@@@Z -?SetRefPoint@OutputDevice@@QAEXXZ -?CopyArea@OutputDevice@@QAEXABVPoint@@0ABVSize@@G@Z -?DrawBitmap@OutputDevice@@QAEXABVPoint@@ABVBitmap@@@Z -?DrawBitmap@OutputDevice@@QAEXABVPoint@@ABVSize@@01ABVBitmap@@@Z -?DrawBitmap@OutputDevice@@QAEXABVPoint@@ABVSize@@ABVBitmap@@@Z -?DrawBitmapEx@OutputDevice@@QAEXABVPoint@@ABVBitmapEx@@@Z -?DrawBitmapEx@OutputDevice@@QAEXABVPoint@@ABVSize@@01ABVBitmapEx@@@Z -?DrawBitmapEx@OutputDevice@@QAEXABVPoint@@ABVSize@@ABVBitmapEx@@@Z -?DrawMask@OutputDevice@@QAEXABVPoint@@ABVBitmap@@ABVColor@@@Z -?DrawMask@OutputDevice@@QAEXABVPoint@@ABVSize@@01ABVBitmap@@ABVColor@@@Z -?DrawMask@OutputDevice@@QAEXABVPoint@@ABVSize@@ABVBitmap@@ABVColor@@@Z -?DrawOutDev@OutputDevice@@QAEXABVPoint@@ABVSize@@01@Z -?DrawOutDev@OutputDevice@@QAEXABVPoint@@ABVSize@@01ABV1@@Z -?DrawPixel@OutputDevice@@QAEXABVPoint@@@Z -?DrawPixel@OutputDevice@@QAEXABVPoint@@ABVColor@@@Z -?DrawPixel@OutputDevice@@QAEXABVPolygon@@ABVColor@@@Z -?DrawPixel@OutputDevice@@QAEXABVPolygon@@PBVColor@@@Z -?GetBitmap@OutputDevice@@QBE?AVBitmap@@ABVPoint@@ABVSize@@@Z -?GetPixel@OutputDevice@@QBE?AVColor@@ABVPoint@@@Z -?GetPixel@OutputDevice@@QBEPAVColor@@ABVPolygon@@@Z -?ImplAdjustTwoRect@@YAKAAUSalTwoRect@@ABVSize@@@Z -?ImplDrawAlpha@OutputDevice@@QAEXABVBitmap@@ABVAlphaMask@@ABVPoint@@ABVSize@@23@Z -?ImplDrawBitmap@OutputDevice@@QAEXABVPoint@@ABVSize@@01ABVBitmap@@K@Z -?ImplDrawBitmapEx@OutputDevice@@QAEXABVPoint@@ABVSize@@01ABVBitmapEx@@K@Z -?ImplDrawFrameDev@OutputDevice@@QAEXABVPoint@@0ABVSize@@ABV1@ABVRegion@@@Z -?ImplDrawMask@OutputDevice@@QAEXABVPoint@@ABVSize@@01ABVBitmap@@ABVColor@@K@Z -?ImplDrawOutDevDirect@OutputDevice@@QAEXPBV1@PAX@Z -?ImplGetFrameBitmap@OutputDevice@@QBEXABVPoint@@ABVSize@@AAVBitmap@@@Z -?ImplGetFrameDev@OutputDevice@@QAEXABVPoint@@0ABVSize@@AAV1@@Z -?ImplPrintMask@OutputDevice@@QAEXABVBitmap@@ABVColor@@ABVPoint@@ABVSize@@23@Z -?ImplPrintTransparent@OutputDevice@@QAEXABVBitmap@@0ABVPoint@@ABVSize@@12@Z -?Merge@BitmapColor@@QAEAAV1@ABV1@E@Z -?Merge@BitmapColor@@QAEAAV1@EEEE@Z -?TopLeft@Rectangle@@QBE?AVPoint@@XZ -??0?$Reference@VXHyphenator@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0ImplDevFontList@@QAE@XZ -??0ImplFontCache@@QAE@E@Z -??0ImplMultiTextLineInfo@@QAE@XZ -??1ImplDevFontList@@QAE@XZ -??1ImplFontCache@@QAE@XZ -??1ImplFontEntry@@QAE@XZ -??1ImplMultiTextLineInfo@@QAE@XZ -??_C@_0CB@CIHO@com?4sun?4star?4beans?4PropertyValue@ -??_C@_0CB@HBKG@com?4sun?4star?4beans?4PropertyState@ -?Add@ImplDevFontList@@QAEXPAUImplFontData@@@Z -?Add@ImplGetDevSizeList@@QAEXJ@Z -?AddFontSubstitute@OutputDevice@@SAXABVString@@0G@Z -?AddLine@ImplMultiTextLineInfo@@QAEXPAVImplTextLineInfo@@@Z -?BeginFontSubstitution@OutputDevice@@SAXXZ -?Clear@ImplDevFontList@@QAEXXZ -?Clear@ImplFontCache@@QAEXXZ -?Clear@ImplMultiTextLineInfo@@QAEXXZ -?DrawCtrlText@OutputDevice@@QAEXABVPoint@@ABVString@@GGG@Z -?DrawStretchText@OutputDevice@@QAEXABVPoint@@KABVString@@GG@Z -?DrawText@OutputDevice@@QAEXABVPoint@@ABVString@@GG@Z -?DrawText@OutputDevice@@QAEXABVRectangle@@ABVString@@G@Z -?DrawTextArray@OutputDevice@@QAEXABVPoint@@ABVString@@PBJGG@Z -?DrawTextLine@OutputDevice@@QAEXABVPoint@@JW4FontStrikeout@@W4FontUnderline@@E@Z -?DrawWaveLine@OutputDevice@@QAEXABVPoint@@0G@Z -?EndFontSubstitution@OutputDevice@@SAXXZ -?FindFont@ImplDevFontList@@QBEPAUImplDevFontListData@@ABVString@@@Z -?Get@ImplFontCache@@QAEPAUImplFontEntry@@PAVImplDevFontList@@ABVFont@@ABVSize@@@Z -?GetCharWidth@OutputDevice@@QBEXGGPAJ@Z -?GetCtrlTextWidth@OutputDevice@@QBEJABVString@@GGG@Z -?GetDefaultFont@OutputDevice@@SA?AVFont@@GGEPBV1@@Z -?GetDevFont@OutputDevice@@QBE?AVFontInfo@@G@Z -?GetDevFontCount@OutputDevice@@QBEGXZ -?GetDevFontSize@OutputDevice@@QBE?AVSize@@ABVFont@@G@Z -?GetDevFontSizeCount@OutputDevice@@QBEGABVFont@@@Z -?GetEllipsisString@OutputDevice@@QBE?AVString@@ABV2@JG@Z -?GetFontMetric@OutputDevice@@QBE?AVFontMetric@@ABVFont@@@Z -?GetFontMetric@OutputDevice@@QBE?AVFontMetric@@XZ -?GetFontSubstitute@OutputDevice@@SAXGAAVString@@0AAG@Z -?GetFontSubstituteCount@OutputDevice@@SAGXZ -?GetGlyphBoundRect@OutputDevice@@QAEEGAAVRectangle@@E@Z -?GetGlyphOutline@OutputDevice@@QAEEGAAVPolyPolygon@@E@Z -?GetKerningPairCount@OutputDevice@@QBEKXZ -?GetKerningPairs@OutputDevice@@QBEXKPAUKerningPair@@@Z -?GetNonMnemonicString@OutputDevice@@SA?AVString@@ABV2@AAG@Z -?GetTextArray@OutputDevice@@QBEJABVString@@PAJGG@Z -?GetTextBreak@OutputDevice@@QBEGABVString@@JGAAGGGJ@Z -?GetTextBreak@OutputDevice@@QBEGABVString@@JGGJ@Z -?GetTextFillColor@OutputDevice@@QBE?AVColor@@XZ -?GetTextHeight@OutputDevice@@QBEJXZ -?GetTextRect@OutputDevice@@QBE?AVRectangle@@ABV2@ABVString@@GPAVTextRectInfo@@@Z -?GetTextWidth@OutputDevice@@QBEJABVString@@GG@Z -?ImplCalcKerning@OutputDevice@@QBEJPBGGPAJG@Z -?ImplClear@ImplDevFontList@@QAEXXZ -?ImplDrawEmphasisMark@OutputDevice@@QAEXJJABVPolyPolygon@@EABVRectangle@@1@Z -?ImplDrawEmphasisMarks@OutputDevice@@QAEXJJPBGGPBJ@Z -?ImplDrawMnemonicLine@OutputDevice@@QAEXJJG@Z -?ImplDrawRotateText@OutputDevice@@QAEEJJPBGGPBJ@Z -?ImplDrawSpecialText@OutputDevice@@QAEXJJPBGGPBJ@Z -?ImplDrawText@OutputDevice@@QAEXJJPBGGPBJ@Z -?ImplDrawTextBackground@OutputDevice@@QAEXJJPBGGPBJ@Z -?ImplDrawTextDirect@OutputDevice@@QAEXJJPBGGPBJE@Z -?ImplDrawTextLine@OutputDevice@@QAEXJJJJW4FontStrikeout@@W4FontUnderline@@E@Z -?ImplDrawTextLines@OutputDevice@@QAEXJJPBGGPBJW4FontStrikeout@@W4FontUnderline@@EE@Z -?ImplDrawTextRect@OutputDevice@@QAEXJJJJJJ@Z -?ImplDrawWaveLine@OutputDevice@@QAEXJJJJJJJFABVColor@@@Z -?ImplFillDXAry@OutputDevice@@QAEXPAJPBGGJ@Z -?ImplFind@ImplDevFontList@@QBEPAUImplDevFontListData@@ABVString@@PAK@Z -?ImplFindFontFromToken@ImplDevFontList@@QBEPAUImplDevFontListData@@PBD@Z -?ImplFreeOutDevFontData@@YAXXZ -?ImplGetCharWidth@OutputDevice@@QBEJG@Z -?ImplGetCharWidths@OutputDevice@@QBEEGGPAJ@Z -?ImplGetEmphasisMark@OutputDevice@@QAEXAAVPolyPolygon@@AAEAAVRectangle@@2AAJ3GJF@Z -?ImplGetTextBoundRect@OutputDevice@@QAE?AVRectangle@@JJPBGGPBJ@Z -?ImplGetTextLines@OutputDevice@@QBEJAAVImplMultiTextLineInfo@@JABVString@@G@Z -?ImplGetTextWidth@OutputDevice@@QAEJPBGGPBJ@Z -?ImplInitAboveTextLineSize@OutputDevice@@QAEXXZ -?ImplInitFont@OutputDevice@@QAEXXZ -?ImplInitKerningPairs@OutputDevice@@QAEXPAUImplKernPairData@@J@Z -?ImplInitTextColor@OutputDevice@@QAEXXZ -?ImplInitTextLineSize@OutputDevice@@QAEXXZ -?ImplNewFont@OutputDevice@@QAEHXZ -?ImplUpdateAllFontData@OutputDevice@@SAXE@Z -?ImplUpdateFontData@OutputDevice@@QAEXE@Z -?IsFontAvailable@OutputDevice@@QBEEABVString@@@Z -?IsTextUnderlineAbove@OutputDevice@@SAEABVFont@@@Z -?Release@ImplFontCache@@QAEXPAUImplFontEntry@@@Z -?RemoveFontSubstitute@OutputDevice@@SAXG@Z -?SetAntialiasing@OutputDevice@@QAEXG@Z -?SetFont@OutputDevice@@QAEXABVFont@@@Z -?SetTextAlign@OutputDevice@@QAEXW4TextAlign@@@Z -?SetTextColor@OutputDevice@@QAEXABVColor@@@Z -?SetTextFillColor@OutputDevice@@QAEXABVColor@@@Z -?SetTextFillColor@OutputDevice@@QAEXXZ -?SetTextLineColor@OutputDevice@@QAEXABVColor@@@Z -?SetTextLineColor@OutputDevice@@QAEXXZ -?getCppuType@@YAABVType@uno@star@sun@com@@PBUPropertyValue@beans@345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@UPropertyValue@beans@star@sun@com@@@2345@@Z -?s_pType@?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_beans_PropertyState@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBW4PropertyState@beans@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_beans_PropertyValue@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUPropertyValue@beans@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?set@?$Reference@VXBreakIterator@i18n@star@sun@com@@@uno@star@sun@com@@QAAEPAVXBreakIterator@i18n@345@@Z -_real@8@4007fa00000000000000 -_real@8@4008fa00000000000000 -?AddGradientActions@OutputDevice@@QAEXABVRectangle@@ABVGradient@@AAVGDIMetaFile@@@Z -?AddHatchActions@OutputDevice@@QAEXABVPolyPolygon@@ABVHatch@@AAVGDIMetaFile@@@Z -?DrawGradient@OutputDevice@@QAEXABVPolyPolygon@@ABVGradient@@@Z -?DrawGradient@OutputDevice@@QAEXABVRectangle@@ABVGradient@@@Z -?DrawHatch@OutputDevice@@QAEXABVPolyPolygon@@ABVHatch@@@Z -?ImplCalcHatchValues@OutputDevice@@QAEXABVRectangle@@JGAAVPoint@@1AAVSize@@1@Z -?ImplDrawHatch@OutputDevice@@QAEXABVPolyPolygon@@ABVHatch@@E@Z -?ImplDrawHatchLine@OutputDevice@@QAEXABVLine@@ABVPolyPolygon@@PAVPoint@@E@Z -?ImplDrawLinearGradient@OutputDevice@@QAEXABVRectangle@@ABVGradient@@EPBVPolyPolygon@@@Z -?ImplDrawPolyPolygon@OutputDevice@@QAEXABVPolyPolygon@@PBV2@@Z -?ImplDrawPolygon@OutputDevice@@QAEXABVPolygon@@PBVPolyPolygon@@@Z -?ImplDrawRadialGradient@OutputDevice@@QAEXABVRectangle@@ABVGradient@@EPBVPolyPolygon@@@Z -?ImplDrawRectGradient@OutputDevice@@QAEXABVRectangle@@ABVGradient@@EPBVPolyPolygon@@@Z -ImplHatchCmpFnc -_real@8@3fe7d6bf94d5e57a4000 -_real@8@3fffb504816f0068d800 -?DrawArc@OutputDevice@@QAEXABVRectangle@@ABVPoint@@1@Z -?DrawChord@OutputDevice@@QAEXABVRectangle@@ABVPoint@@1@Z -?DrawEllipse@OutputDevice@@QAEXABVRectangle@@@Z -?DrawPie@OutputDevice@@QAEXABVRectangle@@ABVPoint@@1@Z -?DrawRect@OutputDevice@@QAEXABVRectangle@@KK@Z -??1?$Sequence@J@uno@star@sun@com@@QAE@XZ -??A?$Sequence@J@uno@star@sun@com@@QAAAAJJ@Z -??_C@_0BP@FGMI@?$CD?$CD?$CD?5illegal?5index?5of?5sequence?$CB?$AA@ -??_C@_0DF@LFFN@o?3?2SRC632?2wntmsci7?2inc?2com?1sun?1s@ -?DrawEPS@OutputDevice@@QAEXABVPoint@@ABVSize@@ABVGfxLink@@PAVGDIMetaFile@@@Z -?DrawGrid@OutputDevice@@QAEXABVRectangle@@ABVSize@@K@Z -?DrawTransparent@OutputDevice@@QAEXABVGDIMetaFile@@ABVPoint@@ABVSize@@ABVGradient@@@Z -?DrawTransparent@OutputDevice@@QAEXABVPolyPolygon@@G@Z -?DrawWallpaper@OutputDevice@@QAEXABVRectangle@@ABVWallpaper@@@Z -?Erase@OutputDevice@@QAEXXZ -?ImplDraw2ColorFrame@OutputDevice@@QAEXABVRectangle@@ABVColor@@1@Z -?ImplDrawBitmapWallpaper@OutputDevice@@QAEXJJJJABVWallpaper@@@Z -?ImplDrawColorWallpaper@OutputDevice@@QAEXJJJJABVWallpaper@@@Z -?ImplDrawGradientWallpaper@OutputDevice@@QAEXJJJJABVWallpaper@@@Z -?ImplDrawWallpaper@OutputDevice@@QAEXJJJJABVWallpaper@@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@J@2345@@Z -?s_pType@?$Sequence@J@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -_real@8@40079600000000000000 -??0?$_STL_alloc_proxy@PAVPoint@@V1@V?$allocator@VPoint@@@_STL@@@_STL@@QAE@ABV?$allocator@VPoint@@@1@PAVPoint@@@Z -??0ImplPolygon@@QAE@ABV0@@Z -??0ImplPolygon@@QAE@GE@Z -??0ImplPolygon@@QAE@GPBVPoint@@PBE@Z -??0Polygon@@QAE@ABV0@@Z -??0Polygon@@QAE@ABVPoint@@000G@Z -??0Polygon@@QAE@ABVPoint@@JJG@Z -??0Polygon@@QAE@ABVRectangle@@@Z -??0Polygon@@QAE@ABVRectangle@@ABVPoint@@1W4PolyStyle@@@Z -??0Polygon@@QAE@ABVRectangle@@KK@Z -??0Polygon@@QAE@G@Z -??0Polygon@@QAE@GPBVPoint@@PBE@Z -??0Polygon@@QAE@XZ -??1ImplPolygon@@QAE@XZ -??1Polygon@@QAE@XZ -??4Polygon@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVPolygon@@@Z -??6@YAAAVSvStream@@AAV0@ABVPolygon@@@Z -??8Polygon@@QBEEABV0@@Z -??APolygon@@QAEAAVPoint@@G@Z -??_7ImplEdgePointFilter@@6B@ -??_7ImplPointFilter@@6B@ -??_7ImplPolygonPointFilter@@6B@ -??_C@_0BA@IBCB@Wrong?5data?5type?$AA@ -??_C@_0BD@FFNA@?4?4?2?4?4?2inc?2poly?4hxx?$AA@ -?CalcDistance@Polygon@@QAENGG@Z -?Clear@Polygon@@QAEXXZ -?Clip@Polygon@@QAEXABVRectangle@@E@Z -?DbgName_Polygon@@YAPAUDbgDataType@@XZ -?Distort@Polygon@@QAEXABVRectangle@@ABV1@@Z -?EdgeSection@ImplEdgePointFilter@@QBE?AVPoint@@ABV2@H@Z -?GetArea@Polygon@@QBENXZ -?GetBoundRect@Polygon@@QBE?AVRectangle@@XZ -?GetDifference@Polygon@@QBEXABVPolyPolygon@@AAV2@@Z -?GetFlags@Polygon@@QBE?AW4PolyFlags@@G@Z -?GetIntersection@Polygon@@QBEXABVPolyPolygon@@AAV2@@Z -?GetPoint@Polygon@@QBEABVPoint@@G@Z -?GetSignedArea@Polygon@@QBENXZ -?GetSimple@Polygon@@QBEXAAV1@J@Z -?GetSize@Polygon@@QBEGXZ -?GetUnion@Polygon@@QBEXABVPolyPolygon@@AAV2@@Z -?GetXOR@Polygon@@QBEXABVPolyPolygon@@AAV2@@Z -?ImplCreateFlagArray@ImplPolygon@@QAEXXZ -?ImplGetConstFlagAry@Polygon@@QBEPBEXZ -?ImplGetConstPointAry@Polygon@@QBEPBVPoint@@XZ -?ImplGetFlagAry@Polygon@@QAEPAEXZ -?ImplGetPointAry@Polygon@@QAEPAVPoint@@XZ -?ImplReduceEdges@Polygon@@SAXAAV1@ABNG@Z -?ImplRemove@ImplPolygon@@QAEXGG@Z -?ImplSetSize@ImplPolygon@@QAEXGE@Z -?ImplSplit@ImplPolygon@@QAEXGGPAV1@@Z -?Input@ImplEdgePointFilter@@UAEXABVPoint@@@Z -?Input@ImplPolygonPointFilter@@UAEXABVPoint@@@Z -?Insert@Polygon@@QAEXGABV1@@Z -?Insert@Polygon@@QAEXGABVPoint@@W4PolyFlags@@@Z -?IsControl@Polygon@@QBEEG@Z -?IsInside@Polygon@@QBEEABVPoint@@@Z -?IsRect@Polygon@@QBEEXZ -?IsRightOrientated@Polygon@@QBEEXZ -?IsSmooth@Polygon@@QBEEG@Z -?LastPoint@ImplEdgePointFilter@@UAEXXZ -?LastPoint@ImplPolygonPointFilter@@UAEXXZ -?Move@Polygon@@QAEXJJ@Z -?Optimize@Polygon@@QAEXKPBVPolyOptimizeData@@@Z -?Remove@Polygon@@QAEXGG@Z -?Rotate@Polygon@@QAEXABVPoint@@G@Z -?Rotate@Polygon@@QAEXABVPoint@@NN@Z -?Scale@Polygon@@QAEXNN@Z -?SetFlags@Polygon@@QAEXGW4PolyFlags@@@Z -?SetPoint@Polygon@@QAEXABVPoint@@G@Z -?SetSize@Polygon@@QAEXG@Z -?SlantX@Polygon@@QAEXJNN@Z -?SlantY@Polygon@@QAEXJNN@Z -?Translate@Polygon@@QAEXABVPoint@@@Z -?_M_insert_overflow@?$vector@VPoint@@V?$allocator@VPoint@@@_STL@@@_STL@@IAEXPAVPoint@@ABV3@I@Z -_real@8@3ffca2f98089fe1b2000 -_real@8@3ffefffffe5280d65800 -_real@8@3fff800000d6bf94d800 -_real@8@3fffb504f40ab9734000 -_real@8@3fffc000000000000000 -_real@8@3fffc90fdaa22168c000 -_real@8@4000c000000000000000 -_real@8@4000c90fdaa22168c000 -_real@8@4001c90fdaa22168c000 -_real@8@4009fa00000000000000 -_real@8@4012f424000000000000 -??0ImplPolyPolygon@@QAE@ABV0@@Z -??0ImplPolyPolygon@@QAE@G@Z -??0PolyPolygon@@QAE@ABV0@@Z -??0PolyPolygon@@QAE@ABVPolygon@@@Z -??0PolyPolygon@@QAE@GG@Z -??0PolyPolygon@@QAE@GPBGPBVPoint@@@Z -??1ImplPolyPolygon@@QAE@XZ -??1PolyPolygon@@QAE@XZ -??4PolyPolygon@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVPolyPolygon@@@Z -??6@YAAAVSvStream@@AAV0@ABVPolyPolygon@@@Z -??8PolyPolygon@@QBEEABV0@@Z -??APolyPolygon@@QAEAAVPolygon@@G@Z -?Clear@PolyPolygon@@QAEXXZ -?Clip@PolyPolygon@@QAEXABVRectangle@@@Z -?Count@PolyPolygon@@QBEGXZ -?DbgName_PolyPolygon@@YAPAUDbgDataType@@XZ -?Distort@PolyPolygon@@QAEXABVRectangle@@ABVPolygon@@@Z -?GetBoundRect@PolyPolygon@@QBE?AVRectangle@@XZ -?GetDifference@PolyPolygon@@QBEXABV1@AAV1@@Z -?GetIntersection@PolyPolygon@@QBEXABV1@AAV1@@Z -?GetObject@PolyPolygon@@QBEABVPolygon@@G@Z -?GetSimple@PolyPolygon@@QBEXAAV1@J@Z -?GetUnion@PolyPolygon@@QBEXABV1@AAV1@@Z -?GetXOR@PolyPolygon@@QBEXABV1@AAV1@@Z -?ImplCreateGPCPolygon@PolyPolygon@@ABEPAXXZ -?ImplDoOperation@PolyPolygon@@ABEXABV1@AAV1@K@Z -?Insert@PolyPolygon@@QAEXABVPolygon@@G@Z -?IsRect@PolyPolygon@@QBEEXZ -?Move@PolyPolygon@@QAEXJJ@Z -?Optimize@PolyPolygon@@QAEXKPBVPolyOptimizeData@@@Z -?Remove@PolyPolygon@@QAEXG@Z -?Replace@PolyPolygon@@QAEXABVPolygon@@G@Z -?Rotate@PolyPolygon@@QAEXABVPoint@@G@Z -?Rotate@PolyPolygon@@QAEXABVPoint@@NN@Z -?Scale@PolyPolygon@@QAEXNN@Z -?SlantX@PolyPolygon@@QAEXJNN@Z -?SlantY@PolyPolygon@@QAEXJNN@Z -?Translate@PolyPolygon@@QAEXABVPoint@@@Z -??0Printer@@QAE@ABVJobSetup@@@Z -??0Printer@@QAE@ABVQueueInfo@@@Z -??0Printer@@QAE@ABVString@@@Z -??0Printer@@QAE@PBVWindow@@@Z -??0Printer@@QAE@XZ -??0PrinterOptions@@QAE@XZ -??0QueueInfo@@QAE@ABV0@@Z -??0QueueInfo@@QAE@XZ -??0SalPrinterQueueInfo@@QAE@XZ -??1Printer@@UAE@XZ -??1PrinterOptions@@QAE@XZ -??1QueueInfo@@QAE@XZ -??1SalPrinterQueueInfo@@QAE@XZ -??5@YAAAVSvStream@@AAV0@AAVQueueInfo@@@Z -??6@YAAAVSvStream@@AAV0@ABVQueueInfo@@@Z -??8QueueInfo@@QAEABV0@ABV0@@Z -??_7Printer@@6B@ -??_GPrinter@@UAEPAXI@Z -?AbortJob@Printer@@QAEEXZ -?Add@ImplPrnQueueList@@QAEXPAUSalPrinterQueueInfo@@@Z -?EndJob@Printer@@QAEEXZ -?EndPage@Printer@@QAEEXZ -?EndPrint@Printer@@UAEXXZ -?Error@Printer@@UAEXXZ -?GetCapabilities@Printer@@QBEKG@Z -?GetDefaultPrinterName@Printer@@SA?AVString@@XZ -?GetOrientation@Printer@@QBE?AW4Orientation@@XZ -?GetPaper@Printer@@QBEGXZ -?GetPaperBin@Printer@@QBEGXZ -?GetPaperBinCount@Printer@@QBEGXZ -?GetPaperBinName@Printer@@QBE?AVString@@G@Z -?GetQueueCount@Printer@@SAGXZ -?GetQueueInfo@Printer@@SAABVQueueInfo@@G@Z -?GetQueueInfo@Printer@@SAABVQueueInfo@@GE@Z -?HasSupport@Printer@@QBEEW4PrinterSupport@@E@Z -?ImplDeletePrnQueueList@@YAXXZ -?ImplDestroyPrinterAsync@Printer@@AAEJPAX@Z -?ImplEndPrint@Printer@@QAEXXZ -?ImplGetPaperFormat@@YAGJJ@Z -?ImplGetQueueInfo@Printer@@CAPAUSalPrinterQueueInfo@@ABVString@@PBV3@@Z -?ImplInit@Printer@@AAEXPAUSalPrinterQueueInfo@@@Z -?ImplInitData@Printer@@AAEXXZ -?ImplInitDisplay@Printer@@AAEXPBVWindow@@@Z -?ImplSalPrinterErrorCodeToVCL@@YAKK@Z -?ImplUpdateFontList@Printer@@AAEXXZ -?ImplUpdateJobSetupPaper@@YAXAAVJobSetup@@@Z -?ImplUpdatePageData@Printer@@AAEXXZ -?LinkStubImplDestroyPrinterAsync@Printer@@CAJPAX0@Z -?PrintPage@Printer@@UAEXXZ -?SetCopyCount@Printer@@QAEEGE@Z -?SetJobSetup@Printer@@QAEEABVJobSetup@@@Z -?SetOrientation@Printer@@QAEEW4Orientation@@@Z -?SetPaper@Printer@@QAEEG@Z -?SetPaperBin@Printer@@QAEEG@Z -?SetPaperSizeUser@Printer@@QAEEABVSize@@@Z -?SetPrinterProps@Printer@@QAEEPBV1@@Z -?Setup@Printer@@QAEEPAVWindow@@@Z -?StartJob@Printer@@QAEEABVString@@@Z -?StartPage@Printer@@QAEEXZ -?StartPrint@Printer@@UAEXXZ -?nImplSysDialog@@3HA -??_EImplCheckRect@@QAEPAXI@Z -?DrawGradientEx@Printer@@QAEXPAVOutputDevice@@ABVPolyPolygon@@ABVGradient@@@Z -?DrawGradientEx@Printer@@QAEXPAVOutputDevice@@ABVRectangle@@ABVGradient@@@Z -?GetPreparedBitmap@Printer@@QAE?AVBitmap@@ABVPoint@@ABVSize@@01ABV2@JJ@Z -?GetPreparedBitmapEx@Printer@@QAE?AVBitmapEx@@ABVPoint@@ABVSize@@01ABV2@JJ@Z -?GetPreparedMetaFile@Printer@@QAEXABVGDIMetaFile@@AAV2@JJ@Z -?ImplCreate@ImplCheckRect@@QAEXPAVMetaAction@@PAVOutputDevice@@E@Z -_real@8@3ffd8000000000000000 -_real@8@40018000000000000000 -_real@8@4009b400000000000000 -??0ImplRegionBand@@QAE@ABV0@@Z -??0ImplRegionBand@@QAE@JJ@Z -??1ImplRegionBand@@QAE@XZ -??8ImplRegionBand@@QBEEABV0@@Z -?Exclude@ImplRegionBand@@QAEXJJ@Z -?GetXLeftBoundary@ImplRegionBand@@QBEJXZ -?GetXRightBoundary@ImplRegionBand@@QBEJXZ -?InsertPoint@ImplRegionBand@@QAEEJJEW4LineType@@@Z -?Intersect@ImplRegionBand@@QAEXJJ@Z -?IsInside@ImplRegionBand@@QAEEJ@Z -?IsInside@ImplRegionBand@@QAEEJJ@Z -?IsOver@ImplRegionBand@@QAEEJJ@Z -?MoveX@ImplRegionBand@@QAEXJ@Z -?OptimizeBand@ImplRegionBand@@QAEEXZ -?ProcessPoints@ImplRegionBand@@QAEXXZ -?ScaleX@ImplRegionBand@@QAEXN@Z -?Union@ImplRegionBand@@QAEXJJ@Z -?XOr@ImplRegionBand@@QAEXJJ@Z -??0ImplRegion@@QAE@ABV0@@Z -??0ImplRegion@@QAE@ABVPolyPolygon@@@Z -??0ImplRegion@@QAE@XZ -??0Region@@QAE@ABV0@@Z -??0Region@@QAE@ABVPolyPolygon@@@Z -??0Region@@QAE@ABVPolygon@@@Z -??0Region@@QAE@ABVRectangle@@@Z -??0Region@@QAE@W4RegionType@@@Z -??0Region@@QAE@XZ -??1ImplRegion@@QAE@XZ -??1Region@@QAE@XZ -??4Region@@QAEAAV0@ABV0@@Z -??4Region@@QAEAAV0@ABVRectangle@@@Z -??5@YAAAVSvStream@@AAV0@AAVRegion@@@Z -??6@YAAAVSvStream@@AAV0@ABVRegion@@@Z -??8Region@@QBEEABV0@@Z -?BeginEnumRects@Region@@QAEJXZ -?CreateBandRange@ImplRegion@@QAEXJJ@Z -?DbgName_Region@@YAPAUDbgDataType@@XZ -?EndEnumRects@Region@@QAEXJ@Z -?Exclude@ImplRegion@@QAEXJJJJ@Z -?Exclude@Region@@QAEEABV1@@Z -?Exclude@Region@@QAEEABVRectangle@@@Z -?GetBoundRect@Region@@QBE?AVRectangle@@XZ -?GetEnumRects@Region@@QAEEJAAVRectangle@@@Z -?GetOverlapType@Region@@QBE?AW4RegionOverlapType@@ABVRectangle@@@Z -?GetRectCount@Region@@QBEKXZ -?GetType@Region@@QBE?AW4RegionType@@XZ -?ImplAddRect@Region@@QAEEABVRectangle@@@Z -?ImplBeginAddRect@Region@@QAEXXZ -?ImplCopyData@Region@@AAEXXZ -?ImplCreatePolyPolyRegion@Region@@AAEXABVPolyPolygon@@@Z -?ImplCreateRectRegion@Region@@AAEXABVRectangle@@@Z -?ImplDbgTestRegion@@YAPBDPBX@Z -?ImplEndAddRect@Region@@QAEXXZ -?ImplGetFirstRect@Region@@QBEEAAUImplRegionInfo@@AAJ111@Z -?ImplGetNextRect@Region@@QBEEAAUImplRegionInfo@@AAJ111@Z -?ImplPolyPolyRegionToBandRegionFunc@Region@@AAEXXZ -?InsertBands@ImplRegion@@QAEXJJ@Z -?InsertLine@ImplRegion@@QAEEABVPoint@@0J@Z -?InsertPoint@ImplRegion@@QAEEABVPoint@@JEW4LineType@@@Z -?InsertSingleBand@ImplRegion@@QAEEPAVImplRegionBand@@J@Z -?Intersect@Region@@QAEEABV1@@Z -?Intersect@Region@@QAEEABVRectangle@@@Z -?IsInside@Region@@QBEEABVPoint@@@Z -?IsInside@Region@@QBEEABVRectangle@@@Z -?IsOver@Region@@QBEEABVRectangle@@@Z -?Move@Region@@QAEXJJ@Z -?OptimizeBandList@ImplRegion@@QAEEXZ -?Scale@Region@@QAEXNN@Z -?SetEmpty@Region@@QAEXXZ -?SetNull@Region@@QAEXXZ -?Union@ImplRegion@@QAEXJJJJ@Z -?Union@Region@@QAEEABV1@@Z -?Union@Region@@QAEEABVRectangle@@@Z -?XOr@ImplRegion@@QAEXJJJJ@Z -?XOr@Region@@QAEEABV1@@Z -?XOr@Region@@QAEEABVRectangle@@@Z -??0VirtualDevice@@QAE@ABVOutputDevice@@G@Z -??0VirtualDevice@@QAE@G@Z -??1VirtualDevice@@UAE@XZ -??_7VirtualDevice@@6B@ -??_GVirtualDevice@@UAEPAXI@Z -?ImplInitVirDev@VirtualDevice@@AAEXPBVOutputDevice@@JJG@Z -?SetOutputSizePixel@VirtualDevice@@QAEEABVSize@@E@Z -??0ImplWallpaper@@QAE@ABV0@@Z -??0ImplWallpaper@@QAE@XZ -??0Wallpaper@@QAE@ABV0@@Z -??0Wallpaper@@QAE@ABVBitmapEx@@@Z -??0Wallpaper@@QAE@ABVColor@@@Z -??0Wallpaper@@QAE@ABVGradient@@@Z -??0Wallpaper@@QAE@XZ -??1ImplWallpaper@@QAE@XZ -??1Wallpaper@@QAE@XZ -??4Wallpaper@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVImplWallpaper@@@Z -??5@YAAAVSvStream@@AAV0@AAVWallpaper@@@Z -??6@YAAAVSvStream@@AAV0@ABVImplWallpaper@@@Z -??6@YAAAVSvStream@@AAV0@ABVWallpaper@@@Z -??8Wallpaper@@QBEEABV0@@Z -?DbgName_Wallpaper@@YAPAUDbgDataType@@XZ -?GetBitmap@Wallpaper@@QBE?AVBitmapEx@@XZ -?GetGradient@Wallpaper@@QBE?AVGradient@@XZ -?GetRect@Wallpaper@@QBE?AVRectangle@@XZ -?ImplReleaseCachedBitmap@ImplWallpaper@@QAEXXZ -?ImplSetCachedBitmap@ImplWallpaper@@QAEXAAVBitmapEx@@@Z -?IsFixed@Wallpaper@@QBEEXZ -?IsScrollable@Wallpaper@@QBEEXZ -?SetBitmap@Wallpaper@@QAEXABVBitmapEx@@@Z -?SetBitmap@Wallpaper@@QAEXXZ -?SetColor@Wallpaper@@QAEXABVColor@@@Z -?SetGradient@Wallpaper@@QAEXABVGradient@@@Z -?SetGradient@Wallpaper@@QAEXXZ -?SetRect@Wallpaper@@QAEXABVRectangle@@@Z -?SetRect@Wallpaper@@QAEXXZ -?SetStyle@Wallpaper@@QAEXW4WallpaperStyle@@@Z -??0OpenGL@@QAE@PAVOutputDevice@@@Z -??1OpenGL@@QAE@XZ -?AreTexturesResident@OpenGL@@QAEEHPBIPAE@Z -?ArrayElement@OpenGL@@QAEXH@Z -?Begin@OpenGL@@QAEXI@Z -?BindTexture@OpenGL@@QAEXII@Z -?BlendFunc@OpenGL@@QAEXII@Z -?Clear@OpenGL@@QAEXI@Z -?ClearDepth@OpenGL@@QAEXN@Z -?Color4ub@OpenGL@@QAEXEEEE@Z -?ColorPointer@OpenGL@@QAEXHIHPBX@Z -?CopyTexImage1D@OpenGL@@QAEXIHIHHHH@Z -?CopyTexImage2D@OpenGL@@QAEXIHIHHHHH@Z -?CopyTexSubImage1D@OpenGL@@QAEXIHHHHH@Z -?CopyTexSubImage2D@OpenGL@@QAEXIHHHHHHH@Z -?CullFace@OpenGL@@QAEXI@Z -?DeleteTextures@OpenGL@@QAEXHPBI@Z -?DepthFunc@OpenGL@@QAEXI@Z -?DepthMask@OpenGL@@QAEXE@Z -?Disable@OpenGL@@QAEXI@Z -?DisableClientState@OpenGL@@QAEXI@Z -?DrawArrays@OpenGL@@QAEXIHH@Z -?DrawElements@OpenGL@@QAEXIHIPBX@Z -?EdgeFlag@OpenGL@@QAEXE@Z -?EdgeFlagPointer@OpenGL@@QAEXHPBX@Z -?Enable@OpenGL@@QAEXI@Z -?EnableClientState@OpenGL@@QAEXI@Z -?End@OpenGL@@QAEXXZ -?Finish@OpenGL@@QAEXXZ -?Flush@OpenGL@@QAEXXZ -?GenTextures@OpenGL@@QAEXHPAI@Z -?GetIntegerv@OpenGL@@QAEXIPAH@Z -?GetTexLevelParameterfv@OpenGL@@QAEXIHIPAM@Z -?GetTexLevelParameteriv@OpenGL@@QAEXIHIPAH@Z -?GetTexParameterfv@OpenGL@@QAEXIIPAM@Z -?GetTexParameteriv@OpenGL@@QAEXIIPAH@Z -?ImplInit@OpenGL@@QAEXXZ -?ImplInitFncPointers@OpenGL@@QAEEXZ -?IndexPointer@OpenGL@@QAEXIHPBX@Z -?InterleavedArrays@OpenGL@@QAEXIHPBX@Z -?IsTexture@OpenGL@@QAEEI@Z -?LightModelf@OpenGL@@QAEXIM@Z -?LightModelfv@OpenGL@@QAEXIPBM@Z -?Lightf@OpenGL@@QAEXIIM@Z -?Lightfv@OpenGL@@QAEXIIPBM@Z -?LineWidth@OpenGL@@QAEXM@Z -?LoadIdentity@OpenGL@@QAEXXZ -?LoadMatrixd@OpenGL@@QAEXPBN@Z -?Materialf@OpenGL@@QAEXIIM@Z -?Materialfv@OpenGL@@QAEXIIPBM@Z -?MatrixMode@OpenGL@@QAEXI@Z -?Normal3dv@OpenGL@@QAEXPBN@Z -?NormalPointer@OpenGL@@QAEXIHPBX@Z -?PixelStoref@OpenGL@@QAEXIM@Z -?PixelStorei@OpenGL@@QAEXIH@Z -?PixelTransferf@OpenGL@@QAEXIM@Z -?PixelTransferi@OpenGL@@QAEXIH@Z -?PointSize@OpenGL@@QAEXM@Z -?PolygonMode@OpenGL@@QAEXII@Z -?PolygonOffset@OpenGL@@QAEXMM@Z -?PrioritizeTextures@OpenGL@@QAEXHPBIPBM@Z -?Scissor@OpenGL@@QAEXHHHH@Z -?SetConnectOutputDevice@OpenGL@@QAEXPAVOutputDevice@@@Z -?ShadeModel@OpenGL@@QAEXI@Z -?TexCoord2dv@OpenGL@@QAEXPBN@Z -?TexCoord3dv@OpenGL@@QAEXPBN@Z -?TexCoordPointer@OpenGL@@QAEXHIHPBX@Z -?TexEnvf@OpenGL@@QAEXIIM@Z -?TexEnvfv@OpenGL@@QAEXIIPBM@Z -?TexEnvi@OpenGL@@QAEXIIH@Z -?TexEnviv@OpenGL@@QAEXIIPBH@Z -?TexGend@OpenGL@@QAEXIIN@Z -?TexGendv@OpenGL@@QAEXIIPBN@Z -?TexGenf@OpenGL@@QAEXIIM@Z -?TexGenfv@OpenGL@@QAEXIIPBM@Z -?TexGeni@OpenGL@@QAEXIIH@Z -?TexGeniv@OpenGL@@QAEXIIPBH@Z -?TexImage1D@OpenGL@@QAEXIHHHHIIPBX@Z -?TexImage2D@OpenGL@@QAEXIHHHHHIIPBX@Z -?TexParameterf@OpenGL@@QAEXIIM@Z -?TexParameterfv@OpenGL@@QAEXIIPBM@Z -?TexParameteri@OpenGL@@QAEXIIH@Z -?TexParameteriv@OpenGL@@QAEXIIPBH@Z -?TexSubImage1D@OpenGL@@QAEXIHHHIIPBX@Z -?TexSubImage2D@OpenGL@@QAEXIHHHHHIIPBX@Z -?Vertex3dv@OpenGL@@QAEXPBN@Z -?VertexPointer@OpenGL@@QAEXHIHPBX@Z -?Viewport@OpenGL@@QAEXHHHH@Z -??0Accelerator@@QAE@ABV0@@Z -??0Accelerator@@QAE@ABVResId@@@Z -??0Accelerator@@QAE@XZ -??1Accelerator@@QAE@XZ -??4Accelerator@@QAEAAV0@ABV0@@Z -??_7Accelerator@@6B@ -?Activate@Accelerator@@UAEXXZ -?Call@Accelerator@@QAEEABVKeyCode@@G@Z -?Clear@Accelerator@@QAEXXZ -?DbgName_Accelerator@@YAPAUDbgDataType@@XZ -?Deactivate@Accelerator@@UAEXXZ -?EnableItem@Accelerator@@QAEXGE@Z -?EnableItem@Accelerator@@QAEXVKeyCode@@E@Z -?GetAccel@Accelerator@@QBEPAV1@G@Z -?GetAccel@Accelerator@@QBEPAV1@VKeyCode@@@Z -?GetItemCount@Accelerator@@QBEGXZ -?GetItemId@Accelerator@@QBEGABVKeyCode@@@Z -?GetItemId@Accelerator@@QBEGG@Z -?GetItemKeyCode@Accelerator@@QBE?AVKeyCode@@G@Z -?GetKeyCode@Accelerator@@QBE?AVKeyCode@@G@Z -?ImplAccelEntryGetIndex@@YAGPAVImplAccelList@@GPAG@Z -?ImplCopyData@Accelerator@@AAEXAAVImplAccelData@@@Z -?ImplDeleteData@Accelerator@@AAEXXZ -?ImplGetAccelData@Accelerator@@ABEPAVImplAccelEntry@@ABVKeyCode@@@Z -?ImplInit@Accelerator@@AAEXXZ -?ImplInsertAccel@Accelerator@@AAEXGABVKeyCode@@EPAV1@@Z -?ImplLoadRes@Accelerator@@IAEXABVResId@@@Z -?InsertItem@Accelerator@@QAEXABVResId@@@Z -?InsertItem@Accelerator@@QAEXGABVKeyCode@@@Z -?IsIdValid@Accelerator@@QBEEG@Z -?IsItemEnabled@Accelerator@@QBEEG@Z -?IsItemEnabled@Accelerator@@QBEEVKeyCode@@@Z -?IsKeyCodeValid@Accelerator@@QBEEVKeyCode@@@Z -?RemoveItem@Accelerator@@QAEXG@Z -?RemoveItem@Accelerator@@QAEXVKeyCode@@@Z -?Select@Accelerator@@UAEXXZ -?SetAccel@Accelerator@@QAEXGPAV1@@Z -?SetAccel@Accelerator@@QAEXVKeyCode@@PAV1@@Z -??1ImplAccelManager@@QAE@XZ -?EndSequence@ImplAccelManager@@QAEXE@Z -?InsertAccel@ImplAccelManager@@QAEEPAVAccelerator@@@Z -?IsAccelKey@ImplAccelManager@@QAEEABVKeyCode@@G@Z -?RemoveAccel@ImplAccelManager@@QAEXPAVAccelerator@@@Z -??0ImplBorderWindow@@QAE@PAVWindow@@KG@Z -??0ImplBorderWindow@@QAE@PAVWindow@@KGABVAny@uno@star@sun@com@@@Z -??0ImplBorderWindow@@QAE@PAVWindow@@PAUSystemParentData@@KG@Z -??0ImplMacBorderWindowView@@QAE@PAVImplBorderWindow@@@Z -??0ImplNoBorderWindowView@@QAE@PAVImplBorderWindow@@@Z -??0ImplOS2BorderWindowView@@QAE@PAVImplBorderWindow@@@Z -??0ImplSmallBorderWindowView@@QAE@PAVImplBorderWindow@@@Z -??0ImplStdBorderWindowView@@QAE@PAVImplBorderWindow@@@Z -??0ImplUnxBorderWindowView@@QAE@PAVImplBorderWindow@@@Z -??1ImplBorderWindow@@UAE@XZ -??1ImplBorderWindowView@@UAE@XZ -??1ImplMacBorderWindowView@@UAE@XZ -??1ImplOS2BorderWindowView@@UAE@XZ -??1ImplStdBorderWindowView@@UAE@XZ -??1ImplUnxBorderWindowView@@UAE@XZ -??_7ImplBorderWindow@@6B@ -??_7ImplBorderWindowView@@6B@ -??_7ImplMacBorderWindowView@@6B@ -??_7ImplNoBorderWindowView@@6B@ -??_7ImplOS2BorderWindowView@@6B@ -??_7ImplSmallBorderWindowView@@6B@ -??_7ImplStdBorderWindowView@@6B@ -??_7ImplUnxBorderWindowView@@6B@ -??_GImplBorderWindow@@UAEPAXI@Z -??_GImplBorderWindowView@@UAEPAXI@Z -??_GImplMacBorderWindowView@@UAEPAXI@Z -??_GImplNoBorderWindowView@@UAEPAXI@Z -??_GImplOS2BorderWindowView@@UAEPAXI@Z -??_GImplSmallBorderWindowView@@UAEPAXI@Z -??_GImplStdBorderWindowView@@UAEPAXI@Z -??_GImplUnxBorderWindowView@@UAEPAXI@Z -?Activate@ImplBorderWindow@@UAEXXZ -?CalcTitleWidth@ImplBorderWindow@@QBEJXZ -?CalcTitleWidth@ImplMacBorderWindowView@@UBEJXZ -?CalcTitleWidth@ImplNoBorderWindowView@@UBEJXZ -?CalcTitleWidth@ImplOS2BorderWindowView@@UBEJXZ -?CalcTitleWidth@ImplSmallBorderWindowView@@UBEJXZ -?CalcTitleWidth@ImplStdBorderWindowView@@UBEJXZ -?CalcTitleWidth@ImplUnxBorderWindowView@@UBEJXZ -?DataChanged@ImplBorderWindow@@UAEXABVDataChangedEvent@@@Z -?Deactivate@ImplBorderWindow@@UAEXXZ -?Draw@ImplBorderWindow@@QAEXABVRectangle@@PAVOutputDevice@@ABVPoint@@@Z -?DrawMacTitleButton@ImplMacBorderWindowView@@QAE?AVRectangle@@ABV2@G@Z -?DrawOS2TitleButton@ImplOS2BorderWindowView@@QAE?AVRectangle@@ABV2@G@Z -?DrawUnxTitleButton@ImplUnxBorderWindowView@@QAE?AVRectangle@@ABV2@G@Z -?DrawWindow@ImplMacBorderWindowView@@UAEXGPAVOutputDevice@@PBVPoint@@@Z -?DrawWindow@ImplNoBorderWindowView@@UAEXGPAVOutputDevice@@PBVPoint@@@Z -?DrawWindow@ImplOS2BorderWindowView@@UAEXGPAVOutputDevice@@PBVPoint@@@Z -?DrawWindow@ImplSmallBorderWindowView@@UAEXGPAVOutputDevice@@PBVPoint@@@Z -?DrawWindow@ImplStdBorderWindowView@@UAEXGPAVOutputDevice@@PBVPoint@@@Z -?DrawWindow@ImplUnxBorderWindowView@@UAEXGPAVOutputDevice@@PBVPoint@@@Z -?GetBorder@ImplBorderWindow@@QBEXAAJ000@Z -?GetBorder@ImplMacBorderWindowView@@UBEXAAJ000@Z -?GetBorder@ImplNoBorderWindowView@@UBEXAAJ000@Z -?GetBorder@ImplOS2BorderWindowView@@UBEXAAJ000@Z -?GetBorder@ImplSmallBorderWindowView@@UBEXAAJ000@Z -?GetBorder@ImplStdBorderWindowView@@UBEXAAJ000@Z -?GetBorder@ImplUnxBorderWindowView@@UBEXAAJ000@Z -?ImplCalcSymbolRect@Window@@SAXAAVRectangle@@@Z -?ImplCalcTitleWidth@ImplBorderWindowView@@QBEJPBUImplBorderFrameData@@@Z -?ImplHitTest@ImplBorderWindowView@@QAEGPAUImplBorderFrameData@@ABVPoint@@@Z -?ImplInit@ImplBorderWindow@@AAEXPAVWindow@@KGABVAny@uno@star@sun@com@@@Z -?ImplInit@ImplBorderWindow@@AAEXPAVWindow@@KGPAUSystemParentData@@@Z -?ImplInitTitle@ImplBorderWindowView@@QAEXPAUImplBorderFrameData@@@Z -?ImplMouseButtonDown@ImplBorderWindowView@@QAEEPAUImplBorderFrameData@@ABVMouseEvent@@@Z -?ImplMouseMove@ImplBorderWindowView@@QAEEPAUImplBorderFrameData@@ABVMouseEvent@@@Z -?ImplRequestHelp@ImplBorderWindowView@@QAEGPAUImplBorderFrameData@@ABVPoint@@AAVRectangle@@@Z -?ImplTracking@ImplBorderWindowView@@QAEEPAUImplBorderFrameData@@ABVTrackingEvent@@@Z -?Init@ImplMacBorderWindowView@@UAEXPAVOutputDevice@@JJ@Z -?Init@ImplNoBorderWindowView@@UAEXPAVOutputDevice@@JJ@Z -?Init@ImplOS2BorderWindowView@@UAEXPAVOutputDevice@@JJ@Z -?Init@ImplSmallBorderWindowView@@UAEXPAVOutputDevice@@JJ@Z -?Init@ImplStdBorderWindowView@@UAEXPAVOutputDevice@@JJ@Z -?Init@ImplUnxBorderWindowView@@UAEXPAVOutputDevice@@JJ@Z -?InitView@ImplBorderWindow@@QAEXXZ -?InvalidateBorder@ImplBorderWindow@@QAEXXZ -?MouseButtonDown@ImplBorderWindow@@UAEXABVMouseEvent@@@Z -?MouseButtonDown@ImplBorderWindowView@@UAEEABVMouseEvent@@@Z -?MouseButtonDown@ImplMacBorderWindowView@@UAEEABVMouseEvent@@@Z -?MouseButtonDown@ImplOS2BorderWindowView@@UAEEABVMouseEvent@@@Z -?MouseButtonDown@ImplStdBorderWindowView@@UAEEABVMouseEvent@@@Z -?MouseButtonDown@ImplUnxBorderWindowView@@UAEEABVMouseEvent@@@Z -?MouseMove@ImplBorderWindow@@UAEXABVMouseEvent@@@Z -?MouseMove@ImplBorderWindowView@@UAEEABVMouseEvent@@@Z -?MouseMove@ImplMacBorderWindowView@@UAEEABVMouseEvent@@@Z -?MouseMove@ImplOS2BorderWindowView@@UAEEABVMouseEvent@@@Z -?MouseMove@ImplStdBorderWindowView@@UAEEABVMouseEvent@@@Z -?MouseMove@ImplUnxBorderWindowView@@UAEEABVMouseEvent@@@Z -?Paint@ImplBorderWindow@@UAEXABVRectangle@@@Z -?RequestHelp@ImplBorderWindow@@UAEXABVHelpEvent@@@Z -?RequestHelp@ImplBorderWindowView@@UAEGABVPoint@@AAVRectangle@@@Z -?RequestHelp@ImplMacBorderWindowView@@UAEGABVPoint@@AAVRectangle@@@Z -?RequestHelp@ImplOS2BorderWindowView@@UAEGABVPoint@@AAVRectangle@@@Z -?RequestHelp@ImplStdBorderWindowView@@UAEGABVPoint@@AAVRectangle@@@Z -?RequestHelp@ImplUnxBorderWindowView@@UAEGABVPoint@@AAVRectangle@@@Z -?Resize@ImplBorderWindow@@UAEXXZ -?SetBorderStyle@ImplBorderWindow@@QAEXG@Z -?SetCloser@ImplBorderWindow@@QAEXXZ -?SetDisplayActive@ImplBorderWindow@@QAEXE@Z -?SetDockButton@ImplBorderWindow@@QAEXE@Z -?SetHelpButton@ImplBorderWindow@@QAEXE@Z -?SetHideButton@ImplBorderWindow@@QAEXE@Z -?SetMenuBarMode@ImplBorderWindow@@QAEXE@Z -?SetMenuBarWindow@ImplBorderWindow@@QAEXPAVWindow@@@Z -?SetPin@ImplBorderWindow@@QAEXE@Z -?SetRollUp@ImplBorderWindow@@QAEXEABVSize@@@Z -?SetTitleType@ImplBorderWindow@@QAEXGABVSize@@@Z -?StateChanged@ImplBorderWindow@@UAEXG@Z -?Tracking@ImplBorderWindow@@UAEXABVTrackingEvent@@@Z -?Tracking@ImplBorderWindowView@@UAEEABVTrackingEvent@@@Z -?Tracking@ImplMacBorderWindowView@@UAEEABVTrackingEvent@@@Z -?Tracking@ImplOS2BorderWindowView@@UAEEABVTrackingEvent@@@Z -?Tracking@ImplStdBorderWindowView@@UAEEABVTrackingEvent@@@Z -?Tracking@ImplUnxBorderWindowView@@UAEEABVTrackingEvent@@@Z -?UpdateMenuHeight@ImplBorderWindow@@QAEXXZ -?UpdateView@ImplBorderWindow@@QAEXEABVSize@@@Z -??0ButtonDialog@@IAE@G@Z -??0ButtonDialog@@QAE@PAVWindow@@ABVResId@@@Z -??0ButtonDialog@@QAE@PAVWindow@@K@Z -??1ButtonDialog@@UAE@XZ -??_7ButtonDialog@@6B@ -??_GButtonDialog@@UAEPAXI@Z -?AddButton@ButtonDialog@@QAEXABVString@@GGJ@Z -?AddButton@ButtonDialog@@QAEXGGGJ@Z -?AddButton@ButtonDialog@@QAEXPAVPushButton@@GGJ@Z -?Clear@ButtonDialog@@QAEXXZ -?Click@ButtonDialog@@UAEXXZ -?GetButtonCount@ButtonDialog@@QBEGXZ -?GetButtonHelpId@ButtonDialog@@QBEKG@Z -?GetButtonHelpText@ButtonDialog@@QBE?AVString@@G@Z -?GetButtonId@ButtonDialog@@QBEGG@Z -?GetButtonText@ButtonDialog@@QBE?AVString@@G@Z -?GetPushButton@ButtonDialog@@QBEPAVPushButton@@G@Z -?ImplClickHdl@ButtonDialog@@AAEJPAVPushButton@@@Z -?ImplCreatePushButton@ButtonDialog@@AAEPAVPushButton@@G@Z -?ImplGetButtonSize@ButtonDialog@@IAEJXZ -?ImplGetItem@ButtonDialog@@ABEPAUImplBtnDlgItem@@G@Z -?ImplInitData@ButtonDialog@@AAEXXZ -?ImplPosControls@ButtonDialog@@AAEXXZ -?LinkStubImplClickHdl@ButtonDialog@@CAJPAX0@Z -?RemoveButton@ButtonDialog@@QAEXG@Z -?Resize@ButtonDialog@@UAEXXZ -?SetButtonHelpId@ButtonDialog@@QAEXGK@Z -?SetButtonHelpText@ButtonDialog@@QAEXGABVString@@@Z -?SetButtonText@ButtonDialog@@QAEXGABVString@@@Z -?StateChanged@ButtonDialog@@UAEXG@Z -??0CommandExtTextInputData@@QAE@ABV0@@Z -??0CommandExtTextInputData@@QAE@ABVString@@PBGGGGGE@Z -??0CommandExtTextInputData@@QAE@XZ -??1CommandExtTextInputData@@QAE@XZ -??0Cursor@@QAE@ABV0@@Z -??0Cursor@@QAE@XZ -??1Cursor@@QAE@XZ -??4Cursor@@QAEAAV0@ABV0@@Z -??8Cursor@@QBEEABV0@@Z -?Hide@Cursor@@QAEXXZ -?ImplDraw@Cursor@@QAEXXZ -?ImplHide@Cursor@@QAEXXZ -?ImplNew@Cursor@@QAEXXZ -?ImplRestore@Cursor@@QAEXXZ -?ImplShow@Cursor@@QAEXE@Z -?ImplTimerHdl@Cursor@@QAEJPAVAutoTimer@@@Z -?LinkStubImplTimerHdl@Cursor@@SAJPAX0@Z -?SetHeight@Cursor@@QAEXJ@Z -?SetOffsetY@Cursor@@QAEXJ@Z -?SetOrientation@Cursor@@QAEXF@Z -?SetPos@Cursor@@QAEXABVPoint@@@Z -?SetSize@Cursor@@QAEXABVSize@@@Z -?SetSlant@Cursor@@QAEXJ@Z -?SetStyle@Cursor@@QAEXG@Z -?SetWidth@Cursor@@QAEXJ@Z -?SetWindow@Cursor@@QAEXPAVWindow@@@Z -?Show@Cursor@@QAEXXZ -??0DockingWindow@@IAE@G@Z -??0DockingWindow@@QAE@PAVWindow@@ABVResId@@@Z -??0DockingWindow@@QAE@PAVWindow@@K@Z -??0ImplDockFloatWin@@QAE@PAVWindow@@KPAVDockingWindow@@@Z -??1DockingWindow@@UAE@XZ -??_7DockingWindow@@6B@ -??_7ImplDockFloatWin@@6B@ -??_GDockingWindow@@UAEPAXI@Z -??_GImplDockFloatWin@@UAEPAXI@Z -?Close@DockingWindow@@UAEEXZ -?Close@ImplDockFloatWin@@UAEEXZ -?DataChanged@DockingWindow@@UAEXABVDataChangedEvent@@@Z -?Docking@DockingWindow@@UAEEABVPoint@@AAVRectangle@@@Z -?EndDocking@DockingWindow@@UAEXABVRectangle@@E@Z -?GetFloatStyle@DockingWindow@@QBEKXZ -?GetOutputSizePixel@DockingWindow@@QBE?AVSize@@XZ -?GetPosPixel@DockingWindow@@QBE?AVPoint@@XZ -?GetSizePixel@DockingWindow@@QBE?AVSize@@XZ -?ImplInit@DockingWindow@@IAEXPAVWindow@@K@Z -?ImplInitData@DockingWindow@@AAEXXZ -?ImplInitSettings@DockingWindow@@IAEXXZ -?ImplLoadRes@DockingWindow@@IAEXABVResId@@@Z -?ImplStartDocking@DockingWindow@@QAEEABVPoint@@@Z -?IsTitleButtonVisible@DockingWindow@@QBEEG@Z -?Move@ImplDockFloatWin@@UAEXXZ -?Notify@DockingWindow@@UAEJAAVNotifyEvent@@@Z -?Pin@DockingWindow@@UAEXXZ -?Pin@ImplDockFloatWin@@UAEXXZ -?PopupModeEnd@DockingWindow@@UAEXXZ -?PopupModeEnd@ImplDockFloatWin@@UAEXXZ -?PrepareToggleFloatingMode@DockingWindow@@UAEEXZ -?Resizing@DockingWindow@@UAEXAAVSize@@@Z -?Resizing@ImplDockFloatWin@@UAEXAAVSize@@@Z -?Roll@DockingWindow@@UAEXXZ -?Roll@ImplDockFloatWin@@UAEXXZ -?SetFloatStyle@DockingWindow@@QAEXK@Z -?SetFloatingMode@DockingWindow@@QAEXE@Z -?SetOutputSizePixel@DockingWindow@@QAEXABVSize@@@Z -?SetPosSizePixel@DockingWindow@@UAEXJJJJG@Z -?SetTabStop@DockingWindow@@QAEXXZ -?ShowTitleButton@DockingWindow@@QAEXGE@Z -?StartDocking@DockingWindow@@UAEXXZ -?StateChanged@DockingWindow@@UAEXG@Z -?TitleButtonClick@DockingWindow@@UAEXG@Z -?TitleButtonClick@ImplDockFloatWin@@UAEXG@Z -?ToggleFloatingMode@DockingWindow@@UAEXXZ -?Tracking@DockingWindow@@UAEXABVTrackingEvent@@@Z -?DrawButton@DecorationView@@QAE?AVRectangle@@ABV2@G@Z -?DrawFrame@DecorationView@@QAE?AVRectangle@@ABV2@G@Z -?DrawFrame@DecorationView@@QAEXABVRectangle@@ABVColor@@1@Z -?DrawHighlightFrame@DecorationView@@QAEXABVRectangle@@G@Z -?DrawSymbol@DecorationView@@QAEXABVRectangle@@GABVColor@@G@Z -?ImplDrawOS2Symbol@@YAXPAVOutputDevice@@ABVRectangle@@GE@Z -??0Dialog@@IAE@G@Z -??0Dialog@@QAE@PAVWindow@@ABVResId@@@Z -??0Dialog@@QAE@PAVWindow@@K@Z -??0ModalDialog@@QAE@PAVWindow@@ABVResId@@@Z -??0ModalDialog@@QAE@PAVWindow@@K@Z -??0ModelessDialog@@QAE@PAVWindow@@ABVResId@@@Z -??0ModelessDialog@@QAE@PAVWindow@@K@Z -??_7Dialog@@6B@ -??_7ModalDialog@@6B@ -??_7ModelessDialog@@6B@ -??_GDialog@@UAEPAXI@Z -??_GModalDialog@@UAEPAXI@Z -??_GModelessDialog@@UAEPAXI@Z -?Close@Dialog@@UAEEXZ -?DataChanged@Dialog@@UAEXABVDataChangedEvent@@@Z -?Draw@Dialog@@MAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?EndAllDialogs@Dialog@@SAXPAVWindow@@@Z -?EndDialog@Dialog@@QAEXJ@Z -?Execute@Dialog@@UAEFXZ -?GrabFocusToFirstControl@Dialog@@QAEXXZ -?ImplCenterDialog@Dialog@@IAEXXZ -?ImplInit@Dialog@@IAEXPAVWindow@@K@Z -?ImplInitData@Dialog@@AAEXXZ -?ImplInitSettings@Dialog@@AAEXXZ -?ImplWindowAutoMnemonic@@YAXPAVWindow@@@Z -?Notify@Dialog@@UAEJAAVNotifyEvent@@@Z -?SetModalInputMode@Dialog@@QAEXE@Z -?SetModalInputMode@Dialog@@QAEXEE@Z -?StateChanged@Dialog@@UAEXG@Z -?ImplControlFocus@Window@@QAEXG@Z -?ImplDlgCtrl@Window@@QAEEABVKeyEvent@@E@Z -?ImplDlgCtrlFocusChanged@Window@@QAEXPAV1@E@Z -?ImplDlgCtrlNextWindow@Window@@QAEXXZ -?ImplFindDlgCtrlWindow@Window@@QAEPAV1@PAV1@@Z -?ImplGetDlgWindow@Window@@QAEPAV1@GGGGPAG@Z -??0ControlChain_Impl@@QAE@PAVWindow@@PAU0@E@Z -??0VclFileDialog@@QAE@PAVWindow@@ABVResId@@@Z -??1ControlChain_Impl@@QAE@XZ -??1VclFileDialog@@UAE@XZ -??_7VclFileDialog@@6B@ -??_GVclFileDialog@@UAEPAXI@Z -?AddControl@VclFileDialog@@UAEEPAVWindow@@E@Z -?ReleaseOwnerShip@VclFileDialog@@IAEXPAVWindow@@@Z -??0FloatingWindow@@QAE@PAVWindow@@ABVResId@@@Z -??0FloatingWindow@@QAE@PAVWindow@@K@Z -??1FloatingWindow@@UAE@XZ -??_7FloatingWindow@@6B@ -??_GFloatingWindow@@UAEPAXI@Z -?AddPopupModeWindow@FloatingWindow@@QAEXPAVWindow@@@Z -?DataChanged@FloatingWindow@@UAEXABVDataChangedEvent@@@Z -?EndPopupMode@FloatingWindow@@QAEXG@Z -?ImplCalcPos@FloatingWindow@@SA?AVPoint@@PAVWindow@@ABVRectangle@@KAAG@Z -?ImplCallPopupModeEnd@FloatingWindow@@AAEXXZ -?ImplEndPopupMode@FloatingWindow@@QAEXGK@Z -?ImplEndPopupModeHdl@FloatingWindow@@AAEJPAX@Z -?ImplFindLastLevelFloat@FloatingWindow@@QAEPAV1@XZ -?ImplFloatHitTest@FloatingWindow@@QAEPAV1@ABVPoint@@AAG@Z -?ImplInit@FloatingWindow@@IAEXPAVWindow@@K@Z -?ImplInitSettings@FloatingWindow@@IAEXXZ -?ImplIsFloatPopupModeWindow@FloatingWindow@@QAEEPBVWindow@@@Z -?ImplLoadRes@FloatingWindow@@IAEXABVResId@@@Z -?LinkStubImplEndPopupModeHdl@FloatingWindow@@CAJPAX0@Z -?Notify@FloatingWindow@@UAEJAAVNotifyEvent@@@Z -?PopupModeEnd@FloatingWindow@@UAEXXZ -?RemovePopupModeWindow@FloatingWindow@@QAEXPAVWindow@@@Z -?SetTitleType@FloatingWindow@@QAEXG@Z -?StartPopupMode@FloatingWindow@@QAEXABVRectangle@@K@Z -?StartPopupMode@FloatingWindow@@QAEXPAVToolBox@@K@Z -?StateChanged@FloatingWindow@@UAEXG@Z -??0KeyCode@@QAE@ABVResId@@@Z -??0KeyCode@@QAE@W4KeyFuncType@@@Z -?GetFunction@KeyCode@@QBE?AW4KeyFuncType@@XZ -?GetName@KeyCode@@QBE?AVString@@PAVWindow@@@Z -?GetSymbolName@KeyCode@@QBE?AVString@@ABV2@PAVWindow@@@Z -?ImplGetKeyCode@@YAXW4KeyFuncType@@AAG11@Z -??0DropEvent@@QAE@ABVPoint@@VSotDataObjectRef@@W4DropAction@@GEE@Z -??0Menu@@IAE@XZ -??0MenuBar@@QAE@ABV0@@Z -??0MenuBar@@QAE@ABVResId@@@Z -??0MenuBar@@QAE@XZ -??0MenuBarWindow@@QAE@PAVWindow@@@Z -??0MenuFloatingWindow@@QAE@PAVMenu@@PAVWindow@@K@Z -??0PopupMenu@@QAE@ABV0@@Z -??0PopupMenu@@QAE@ABVResId@@@Z -??0PopupMenu@@QAE@XZ -??0SotDataObjectRef@@QAE@PAVSotDataObject@@@Z -??1Menu@@UAE@XZ -??1MenuBar@@UAE@XZ -??1MenuBarWindow@@UAE@XZ -??1MenuFloatingWindow@@UAE@XZ -??1MenuItemList@@QAE@XZ -??1PopupMenu@@UAE@XZ -??4Menu@@QAEAAV0@ABV0@@Z -??_7Menu@@6B@ -??_7MenuBar@@6B@ -??_7MenuBarWindow@@6B@ -??_7MenuFloatingWindow@@6B@ -??_7PopupMenu@@6B@ -??_GMenu@@UAEPAXI@Z -??_GMenuBar@@UAEPAXI@Z -??_GMenuBarWindow@@UAEPAXI@Z -??_GMenuFloatingWindow@@UAEPAXI@Z -??_GPopupMenu@@UAEPAXI@Z -?Activate@Menu@@UAEXXZ -?AutoScroll@MenuFloatingWindow@@AAEJPAVTimer@@@Z -?ChangeHighlightItem@MenuBarWindow@@AAEXGEE@Z -?ChangeHighlightItem@MenuFloatingWindow@@QAEXGE@Z -?CheckItem@Menu@@QAEXGE@Z -?Clear@Menu@@QAEXXZ -?CloserHdl@MenuBarWindow@@AAEJPAVPushButton@@@Z -?Command@MenuFloatingWindow@@UAEXABVCommandEvent@@@Z -?CopyItem@Menu@@QAEXABV1@GG@Z -?DataChanged@MenuBarWindow@@EAEXABVDataChangedEvent@@@Z -?DataChanged@MenuFloatingWindow@@EAEXABVDataChangedEvent@@@Z -?DbgName_Menu@@YAPAUDbgDataType@@XZ -?Deactivate@Menu@@UAEXXZ -?Drop@MenuBarWindow@@UAEEABVDropEvent@@@Z -?EnableItem@Menu@@QAEXGE@Z -?EnableScrollMenu@MenuFloatingWindow@@QAEXE@Z -?EndExecute@MenuFloatingWindow@@QAEXG@Z -?EndExecute@MenuFloatingWindow@@QAEXXZ -?EndExecute@PopupMenu@@QAEXG@Z -?Execute@MenuFloatingWindow@@QAEXXZ -?Execute@PopupMenu@@QAEGPAVWindow@@ABVPoint@@@Z -?Execute@PopupMenu@@QAEGPAVWindow@@ABVRectangle@@G@Z -?FloatHdl@MenuBarWindow@@AAEJPAVPushButton@@@Z -?GetAccelKey@Menu@@QBE?AVKeyCode@@G@Z -?GetAccessObject@Menu@@QBEXAAVAccessObjectRef@@@Z -?GetActivePopupMenu@PopupMenu@@SAPAV1@XZ -?GetCharClass@MenuItemList@@QBE?AV?$Reference@VXCharacterClassification@i18n@star@sun@com@@@uno@star@sun@com@@XZ -?GetCurItemId@Menu@@QBEGXZ -?GetData@DropEvent@@QBEPAVSotDataObject@@XZ -?GetData@MenuItemList@@QBEPAUMenuItemData@@GAAG@Z -?GetHelpId@Menu@@QBEKG@Z -?GetHelpText@Menu@@QBEABVString@@G@Z -?GetItemBits@Menu@@QBEGG@Z -?GetItemCommand@Menu@@QBEABVString@@G@Z -?GetItemCount@Menu@@QBEGXZ -?GetItemId@Menu@@QBEGG@Z -?GetItemImage@Menu@@QBE?AVImage@@G@Z -?GetItemPos@Menu@@QBEGG@Z -?GetItemText@Menu@@QBE?AVString@@G@Z -?GetItemType@Menu@@QBE?AW4MenuItemType@@G@Z -?GetLogo@Menu@@QBE?AUMenuLogo@@XZ -?GetPopupMenu@Menu@@QBEPAVPopupMenu@@G@Z -?GetUserValue@Menu@@QBEKG@Z -?HasValidEntries@Menu@@QAEEE@Z -?HideHdl@MenuBarWindow@@AAEJPAVPushButton@@@Z -?Highlight@Menu@@UAEXXZ -?HighlightChanged@MenuFloatingWindow@@AAEJPAVTimer@@@Z -?HighlightItem@MenuBarWindow@@AAEXGE@Z -?HighlightItem@MenuFloatingWindow@@QAEXGE@Z -?ImplCalcClipRegion@MenuFloatingWindow@@IBE?AVRegion@@E@Z -?ImplCalcHeight@PopupMenu@@IBEJG@Z -?ImplCalcSize@Menu@@IAE?AVSize@@PAVWindow@@@Z -?ImplCalcVisEntries@PopupMenu@@IBEGJG@Z -?ImplCallHighlight@Menu@@IAEXG@Z -?ImplCallSelect@Menu@@IAEJPAV1@@Z -?ImplCopyItem@@YAXPAVMenu@@ABV1@GGG@Z -?ImplCreate@MenuBar@@CAPAVWindow@@PAV2@0PAV1@@Z -?ImplCreatePopup@MenuBarWindow@@AAEXE@Z -?ImplCursorUpDown@MenuFloatingWindow@@IAEXE@Z -?ImplDestroy@MenuBar@@CAXPAV1@E@Z -?ImplDrawScroller@MenuFloatingWindow@@IAEXE@Z -?ImplExecute@PopupMenu@@IAEGPAVWindow@@ABVRectangle@@KPAVMenu@@E@Z -?ImplFindEntry@MenuBarWindow@@ABEGABVPoint@@@Z -?ImplFindSelectMenu@Menu@@IAEPAV1@XZ -?ImplGetStartMenu@Menu@@IAEPAV1@XZ -?ImplGetVisibleItemCount@Menu@@IBEGXZ -?ImplHandleKeyEvent@MenuBar@@AAEEABVKeyEvent@@E@Z -?ImplHandleKeyEvent@MenuBarWindow@@AAEEABVKeyEvent@@E@Z -?ImplHighlightItem@MenuFloatingWindow@@IAEXABVMouseEvent@@E@Z -?ImplInit@Menu@@IAEXXZ -?ImplInitClipRegion@MenuFloatingWindow@@IAEXXZ -?ImplIsVisible@Menu@@IBEEG@Z -?ImplLoadRes@Menu@@IAEXABVResId@@@Z -?ImplPaint@Menu@@IAEXPAVWindow@@GJPAUMenuItemData@@E@Z -?ImplScroll@MenuFloatingWindow@@IAEXABVPoint@@@Z -?ImplScroll@MenuFloatingWindow@@IAEXE@Z -?ImplSelect@Menu@@IAEXXZ -?ImplTranslateDropEvent@@YA?AVDropEvent@@ABV1@PAVWindow@@1@Z -?Insert@MenuItemList@@QAEPAUMenuItemData@@GW4MenuItemType@@GABVString@@ABVImage@@PAVMenu@@G@Z -?InsertItem@Menu@@QAEXABVResId@@G@Z -?InsertItem@Menu@@QAEXGABVImage@@GG@Z -?InsertItem@Menu@@QAEXGABVString@@ABVImage@@GG@Z -?InsertItem@Menu@@QAEXGABVString@@GG@Z -?InsertSeparator@Menu@@QAEXG@Z -?InsertSeparator@MenuItemList@@QAEXG@Z -?IsInExecute@PopupMenu@@SAEXZ -?IsItemChecked@Menu@@QBEEG@Z -?IsItemEnabled@Menu@@QBEEG@Z -?KeyInput@MenuBarWindow@@UAEXABVKeyEvent@@@Z -?KeyInput@MenuFloatingWindow@@UAEXABVKeyEvent@@@Z -?KillActivePopup@MenuBarWindow@@QAEXXZ -?KillActivePopup@MenuFloatingWindow@@QAEXPAVPopupMenu@@@Z -?LinkStubAutoScroll@MenuFloatingWindow@@CAJPAX0@Z -?LinkStubCloserHdl@MenuBarWindow@@CAJPAX0@Z -?LinkStubFloatHdl@MenuBarWindow@@CAJPAX0@Z -?LinkStubHideHdl@MenuBarWindow@@CAJPAX0@Z -?LinkStubHighlightChanged@MenuFloatingWindow@@CAJPAX0@Z -?LinkStubImplCallSelect@Menu@@KAJPAX0@Z -?LinkStubPopupEnd@MenuFloatingWindow@@CAJPAX0@Z -?LoseFocus@MenuBarWindow@@EAEXXZ -?MouseButtonDown@MenuBarWindow@@UAEXABVMouseEvent@@@Z -?MouseButtonDown@MenuFloatingWindow@@UAEXABVMouseEvent@@@Z -?MouseButtonUp@MenuBarWindow@@UAEXABVMouseEvent@@@Z -?MouseButtonUp@MenuFloatingWindow@@UAEXABVMouseEvent@@@Z -?MouseMove@MenuBarWindow@@UAEXABVMouseEvent@@@Z -?MouseMove@MenuFloatingWindow@@UAEXABVMouseEvent@@@Z -?Paint@MenuBarWindow@@UAEXABVRectangle@@@Z -?Paint@MenuFloatingWindow@@UAEXABVRectangle@@@Z -?PopupClosed@MenuBarWindow@@QAEXPAVMenu@@@Z -?PopupEnd@MenuFloatingWindow@@AAEJPAVFloatingWindow@@@Z -?QueryDrop@MenuBarWindow@@UAEEAAVDropEvent@@@Z -?Remove@MenuItemList@@QAEXG@Z -?RemoveDisabledEntries@Menu@@QAEXEE@Z -?RemoveItem@Menu@@QAEXG@Z -?RequestHelp@Menu@@UAEXABVHelpEvent@@@Z -?RequestHelp@MenuBarWindow@@UAEXABVHelpEvent@@@Z -?RequestHelp@MenuFloatingWindow@@UAEXABVHelpEvent@@@Z -?Resize@MenuBarWindow@@UAEXXZ -?Resize@MenuFloatingWindow@@UAEXXZ -?SearchItem@MenuItemList@@QBEPAUMenuItemData@@GAAG@Z -?Select@Menu@@UAEXXZ -?SelectEntry@MenuBar@@QAEXG@Z -?SelectEntry@PopupMenu@@QAEXG@Z -?SetAccelKey@Menu@@QAEXGABVKeyCode@@@Z -?SetHelpId@Menu@@QAEXGK@Z -?SetHelpText@Menu@@QAEXGABVString@@@Z -?SetItemBits@Menu@@QAEXGG@Z -?SetItemCommand@Menu@@QAEXGABVString@@@Z -?SetItemImage@Menu@@QAEXGABVImage@@@Z -?SetItemText@Menu@@QAEXGABVString@@@Z -?SetLogo@Menu@@QAEXABUMenuLogo@@@Z -?SetLogo@Menu@@QAEXXZ -?SetMenu@MenuBarWindow@@QAEXPAVMenuBar@@@Z -?SetPopupMenu@Menu@@QAEXGPAVPopupMenu@@@Z -?SetUserValue@Menu@@QAEXGK@Z -?ShowButtons@MenuBar@@QAEXEEE@Z -?ShowButtons@MenuBarWindow@@QAEXEEE@Z -?ShowCloser@MenuBar@@QAEXE@Z -?ShowFloatButton@MenuBar@@QAEXE@Z -?ShowHideButton@MenuBar@@QAEXE@Z -?StateChanged@MenuBarWindow@@EAEXG@Z -?StateChanged@MenuFloatingWindow@@EAEXG@Z -?StopExecute@MenuFloatingWindow@@QAEXK@Z -??0ImplMnemonicGenerator@@QAE@XZ -?CreateMnemonic@ImplMnemonicGenerator@@QAEEAAVString@@@Z -?GetCharClass@ImplMnemonicGenerator@@QAE?AV?$Reference@VXCharacterClassification@i18n@star@sun@com@@@uno@star@sun@com@@XZ -?ImplFindMnemonic@ImplMnemonicGenerator@@IAEGABVString@@@Z -?ImplGetMnemonicIndex@ImplMnemonicGenerator@@IAEGG@Z -?RegisterMnemonic@ImplMnemonicGenerator@@QAEXABVString@@@Z -??0ErrorBox@@QAE@PAVWindow@@ABVResId@@@Z -??0ErrorBox@@QAE@PAVWindow@@KABVString@@@Z -??0InfoBox@@QAE@PAVWindow@@ABVResId@@@Z -??0InfoBox@@QAE@PAVWindow@@ABVString@@@Z -??0MessBox@@IAE@G@Z -??0MessBox@@QAE@PAVWindow@@ABVResId@@@Z -??0MessBox@@QAE@PAVWindow@@KABVString@@1@Z -??0QueryBox@@QAE@PAVWindow@@ABVResId@@@Z -??0QueryBox@@QAE@PAVWindow@@KABVString@@@Z -??0WarningBox@@QAE@PAVWindow@@ABVResId@@@Z -??0WarningBox@@QAE@PAVWindow@@KABVString@@@Z -??1MessBox@@UAE@XZ -??_7ErrorBox@@6B@ -??_7InfoBox@@6B@ -??_7MessBox@@6B@ -??_7QueryBox@@6B@ -??_7WarningBox@@6B@ -??_GErrorBox@@UAEPAXI@Z -??_GInfoBox@@UAEPAXI@Z -??_GMessBox@@UAEPAXI@Z -??_GQueryBox@@UAEPAXI@Z -??_GWarningBox@@UAEPAXI@Z -?GetCheckBoxState@MessBox@@QBEEXZ -?GetStandardImage@ErrorBox@@SA?AVImage@@XZ -?GetStandardImage@InfoBox@@SA?AVImage@@XZ -?GetStandardImage@QueryBox@@SA?AVImage@@XZ -?GetStandardImage@WarningBox@@SA?AVImage@@XZ -?ImplInitButtons@MessBox@@AAEXXZ -?ImplInitData@ErrorBox@@AAEXXZ -?ImplInitData@InfoBox@@AAEXXZ -?ImplInitData@MessBox@@AAEXXZ -?ImplInitData@QueryBox@@AAEXXZ -?ImplInitData@WarningBox@@AAEXXZ -?ImplLoadRes@MessBox@@IAEXABVResId@@@Z -?ImplPosControls@MessBox@@AAEXXZ -?SetCheckBoxState@MessBox@@QAEXE@Z -?SetDefaultCheckBoxText@MessBox@@QAEXXZ -?StateChanged@MessBox@@UAEXG@Z -??0SelectionEngine@@QAE@PAVWindow@@PAVFunctionSet@@@Z -??1SelectionEngine@@QAE@XZ -?ActivateDragMode@SelectionEngine@@QAEXXZ -?Command@SelectionEngine@@QAEXABVCommandEvent@@@Z -?CursorPosChanging@SelectionEngine@@QAEXEE@Z -?ImpWatchDog@SelectionEngine@@AAEJPAVTimer@@@Z -?LinkStubImpWatchDog@SelectionEngine@@CAJPAX0@Z -?Reset@SelectionEngine@@QAEXXZ -?SelMouseButtonDown@SelectionEngine@@QAEEABVMouseEvent@@@Z -?SelMouseButtonUp@SelectionEngine@@QAEEABVMouseEvent@@@Z -?SelMouseMove@SelectionEngine@@QAEEABVMouseEvent@@@Z -?SetSelectionMode@SelectionEngine@@QAEXW4SelectionMode@@@Z -?SetWindow@SelectionEngine@@QAEXPAVWindow@@@Z -??0Splitter@@QAE@PAVWindow@@ABVResId@@@Z -??0Splitter@@QAE@PAVWindow@@K@Z -??1Splitter@@UAE@XZ -??_7Splitter@@6B@ -??_GSplitter@@UAEPAXI@Z -?ImplDrawSplitter@Splitter@@AAEXXZ -?ImplInit@Splitter@@IAEXPAVWindow@@K@Z -?ImplInitData@Splitter@@AAEXXZ -?ImplSplitMousePos@Splitter@@AAEXAAVPoint@@@Z -?MouseButtonDown@Splitter@@UAEXABVMouseEvent@@@Z -?SetDragRectPixel@Splitter@@QAEXABVRectangle@@PAVWindow@@@Z -?SetLastSplitPosPixel@Splitter@@QAEXJ@Z -?SetSplitPosPixel@Splitter@@UAEXJ@Z -?Split@Splitter@@UAEXXZ -?Splitting@Splitter@@UAEXAAVPoint@@@Z -?StartDrag@Splitter@@QAEXXZ -?StartSplit@Splitter@@UAEXXZ -?Tracking@Splitter@@UAEXABVTrackingEvent@@@Z -??0SplitWindow@@QAE@PAVWindow@@ABVResId@@@Z -??0SplitWindow@@QAE@PAVWindow@@K@Z -??1SplitWindow@@UAE@XZ -??_7SplitWindow@@6B@ -??_GSplitWindow@@UAEPAXI@Z -?AutoHide@SplitWindow@@UAEXXZ -?CalcWindowSizePixel@SplitWindow@@SA?AVSize@@ABV2@W4WindowAlign@@KE@Z -?Clear@SplitWindow@@QAEXXZ -?DataChanged@SplitWindow@@UAEXABVDataChangedEvent@@@Z -?FadeIn@SplitWindow@@UAEXXZ -?FadeOut@SplitWindow@@UAEXXZ -?GetAutoHideRect@SplitWindow@@QBE?AVRectangle@@XZ -?GetBaseSet@SplitWindow@@QBEGXZ -?GetFadeInRect@SplitWindow@@QBE?AVRectangle@@XZ -?GetFadeInSize@SplitWindow@@QBEJXZ -?GetFadeOutRect@SplitWindow@@QBE?AVRectangle@@XZ -?GetItemBackground@SplitWindow@@QBE?AVWallpaper@@G@Z -?GetItemBitmap@SplitWindow@@QBE?AVBitmap@@G@Z -?GetItemBits@SplitWindow@@QBEGG@Z -?GetItemCount@SplitWindow@@QBEGG@Z -?GetItemId@SplitWindow@@QBEGABVPoint@@@Z -?GetItemId@SplitWindow@@QBEGGG@Z -?GetItemId@SplitWindow@@QBEGPAVWindow@@@Z -?GetItemPos@SplitWindow@@QBEGGG@Z -?GetItemSize@SplitWindow@@QBEJG@Z -?GetItemSize@SplitWindow@@QBEJGG@Z -?GetItemWindow@SplitWindow@@QBEPAVWindow@@G@Z -?GetSet@SplitWindow@@QBEEGAAG0@Z -?GetSet@SplitWindow@@QBEGG@Z -?GetSplitSize@SplitWindow@@QBEJG@Z -?ImplCalcLayout@SplitWindow@@QAEXXZ -?ImplDrawAutoHide@SplitWindow@@QAEXE@Z -?ImplDrawButtonRect@SplitWindow@@QAEXABVRectangle@@J@Z -?ImplDrawFadeIn@SplitWindow@@QAEXE@Z -?ImplDrawFadeOut@SplitWindow@@QAEXE@Z -?ImplGetAutoHideRect@SplitWindow@@QBEXAAVRectangle@@E@Z -?ImplGetButtonRect@SplitWindow@@QBEXAAVRectangle@@JE@Z -?ImplGetFadeInRect@SplitWindow@@QBEXAAVRectangle@@E@Z -?ImplGetFadeOutRect@SplitWindow@@QBEXAAVRectangle@@E@Z -?ImplInit@SplitWindow@@QAEXPAVWindow@@K@Z -?ImplInitSettings@SplitWindow@@QAEXXZ -?ImplNewAlign@SplitWindow@@QAEXXZ -?ImplSetWindowSize@SplitWindow@@QAEXJ@Z -?ImplSplitMousePos@SplitWindow@@QAEXAAVPoint@@@Z -?ImplUpdate@SplitWindow@@QAEXXZ -?ImplUpdateSet@SplitWindow@@QAEXPAUImplSplitSet@@@Z -?InsertItem@SplitWindow@@QAEXGJGGG@Z -?InsertItem@SplitWindow@@QAEXGPAVWindow@@JGGG@Z -?IsItemBackground@SplitWindow@@QBEEG@Z -?IsItemValid@SplitWindow@@QBEEG@Z -?MouseButtonDown@SplitWindow@@UAEXABVMouseEvent@@@Z -?MouseMove@SplitWindow@@UAEXABVMouseEvent@@@Z -?Move@SplitWindow@@UAEXXZ -?MoveItem@SplitWindow@@QAEXGGG@Z -?Paint@SplitWindow@@UAEXABVRectangle@@@Z -?RemoveItem@SplitWindow@@QAEXGE@Z -?RequestHelp@SplitWindow@@UAEXABVHelpEvent@@@Z -?Resize@SplitWindow@@UAEXXZ -?SetAlign@SplitWindow@@QAEXW4WindowAlign@@@Z -?SetAutoHideState@SplitWindow@@QAEXE@Z -?SetBaseSet@SplitWindow@@QAEXG@Z -?SetItemBackground@SplitWindow@@QAEXG@Z -?SetItemBackground@SplitWindow@@QAEXGABVWallpaper@@@Z -?SetItemBitmap@SplitWindow@@QAEXGABVBitmap@@@Z -?SetItemBits@SplitWindow@@QAEXGG@Z -?SetItemSize@SplitWindow@@QAEXGJ@Z -?SetNoAlign@SplitWindow@@QAEXE@Z -?SetSplitSize@SplitWindow@@QAEXGJE@Z -?ShowAutoHideButton@SplitWindow@@QAEXE@Z -?ShowFadeInHideButton@SplitWindow@@QAEXE@Z -?ShowFadeOutButton@SplitWindow@@QAEXE@Z -?Split@SplitWindow@@UAEXXZ -?SplitItem@SplitWindow@@QAEXGJEE@Z -?SplitResize@SplitWindow@@UAEXXZ -?StartSplit@SplitWindow@@UAEXXZ -?StateChanged@SplitWindow@@UAEXG@Z -?Tracking@SplitWindow@@UAEXABVTrackingEvent@@@Z -??0StatusBar@@QAE@PAVWindow@@ABVResId@@@Z -??0StatusBar@@QAE@PAVWindow@@K@Z -??1StatusBar@@UAE@XZ -??_7StatusBar@@6B@ -??_GStatusBar@@UAEPAXI@Z -?CalcWindowSizePixel@StatusBar@@QBE?AVSize@@XZ -?Clear@StatusBar@@QAEXXZ -?Click@StatusBar@@UAEXXZ -?CopyItems@StatusBar@@QAEXABV1@@Z -?DataChanged@StatusBar@@UAEXABVDataChangedEvent@@@Z -?DoubleClick@StatusBar@@UAEXXZ -?DrawProgress@@YAXPAVWindow@@ABVPoint@@JJJGGG@Z -?EndProgressMode@StatusBar@@QAEXXZ -?GetHelpId@StatusBar@@QBEKG@Z -?GetHelpText@StatusBar@@QBEABVString@@G@Z -?GetItemBits@StatusBar@@QBEGG@Z -?GetItemCount@StatusBar@@QBEGXZ -?GetItemData@StatusBar@@QBEPAXG@Z -?GetItemId@StatusBar@@QBEGABVPoint@@@Z -?GetItemId@StatusBar@@QBEGG@Z -?GetItemOffset@StatusBar@@QBEJG@Z -?GetItemPos@StatusBar@@QBEGG@Z -?GetItemRect@StatusBar@@QBE?AVRectangle@@G@Z -?GetItemText@StatusBar@@QBEABVString@@G@Z -?GetItemTextPos@StatusBar@@QBE?AVPoint@@G@Z -?GetItemWidth@StatusBar@@QBEKG@Z -?HideItem@StatusBar@@QAEXG@Z -?HideItems@StatusBar@@QAEXXZ -?ImplCalcProgressRect@StatusBar@@AAEXXZ -?ImplDrawItem@StatusBar@@AAEXEGEE@Z -?ImplDrawProgress@StatusBar@@AAEXEGG@Z -?ImplDrawText@StatusBar@@AAEXEJ@Z -?ImplFormat@StatusBar@@AAEXXZ -?ImplGetItemRectPos@StatusBar@@ABE?AVRectangle@@G@Z -?ImplInit@StatusBar@@AAEXPAVWindow@@K@Z -?ImplInitSettings@StatusBar@@AAEXEEE@Z -?ImplIsItemUpdate@StatusBar@@AAEEXZ -?InsertItem@StatusBar@@QAEXGKGJG@Z -?IsItemVisible@StatusBar@@QBEEG@Z -?MouseButtonDown@StatusBar@@UAEXABVMouseEvent@@@Z -?Move@StatusBar@@UAEXXZ -?Paint@StatusBar@@UAEXABVRectangle@@@Z -?RemoveItem@StatusBar@@QAEXG@Z -?RequestHelp@StatusBar@@UAEXABVHelpEvent@@@Z -?Resize@StatusBar@@UAEXXZ -?SetBottomBorder@StatusBar@@QAEXE@Z -?SetHelpId@StatusBar@@QAEXGK@Z -?SetHelpText@StatusBar@@QAEXGABVString@@@Z -?SetItemData@StatusBar@@QAEXGPAX@Z -?SetItemText@StatusBar@@QAEXGABVString@@@Z -?SetProgressValue@StatusBar@@QAEXG@Z -?SetText@StatusBar@@UAEXABVString@@@Z -?ShowItem@StatusBar@@QAEXG@Z -?ShowItems@StatusBar@@QAEXXZ -?StartProgressMode@StatusBar@@QAEXABVString@@@Z -?StateChanged@StatusBar@@UAEXG@Z -?UserDraw@StatusBar@@UAEXABVUserDrawEvent@@@Z -??0SystemChildWindow@@QAE@PAVWindow@@ABVResId@@@Z -??0SystemChildWindow@@QAE@PAVWindow@@K@Z -??1SystemChildWindow@@UAE@XZ -??_7SystemChildWindow@@6B@ -??_GSystemChildWindow@@UAEPAXI@Z -?GetSystemData@SystemChildWindow@@QBEPBUSystemEnvData@@XZ -?ImplInit@SystemChildWindow@@AAEXPAVWindow@@K@Z -?ImplSysChildProc@@YAJPAXPAVSalObject@@GPBX@Z -??0SystemWindow@@IAE@G@Z -??1?$Reference@VXComponent@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1SystemWindow@@UAE@XZ -??_7SystemWindow@@6B@ -??_GSystemWindow@@UAEPAXI@Z -?Close@SystemWindow@@UAEEXZ -?EnableSaveBackground@SystemWindow@@QAEXE@Z -?GetResizeOutputSizePixel@SystemWindow@@QBE?AVSize@@XZ -?GetZLevel@SystemWindow@@QBEEXZ -?IsSaveBackgroundEnabled@SystemWindow@@QBEEXZ -?IsTitleButtonVisible@SystemWindow@@QBEEG@Z -?Notify@SystemWindow@@UAEJAAVNotifyEvent@@@Z -?Pin@SystemWindow@@UAEXXZ -?Resizing@SystemWindow@@UAEXAAVSize@@@Z -?Roll@SystemWindow@@UAEXXZ -?RollDown@SystemWindow@@QAEXXZ -?RollUp@SystemWindow@@QAEXXZ -?SetMenuBar@SystemWindow@@QAEXPAVMenuBar@@@Z -?SetMenuBarMode@SystemWindow@@QAEXG@Z -?SetMinOutputSizePixel@SystemWindow@@QAEXABVSize@@@Z -?SetPin@SystemWindow@@QAEXE@Z -?SetZLevel@SystemWindow@@QAEXE@Z -?ShowTitleButton@SystemWindow@@QAEXGE@Z -?TitleButtonClick@SystemWindow@@UAEXG@Z -??0TabDialog@@QAE@PAVWindow@@ABVResId@@@Z -??0TabDialog@@QAE@PAVWindow@@K@Z -??1TabDialog@@UAE@XZ -??_7TabDialog@@6B@ -??_GTabDialog@@UAEPAXI@Z -?AdjustLayout@TabDialog@@QAEXXZ -?ImplInitData@TabDialog@@AAEXXZ -?ImplPosControls@TabDialog@@AAEXXZ -?Resize@TabDialog@@UAEXXZ -?StateChanged@TabDialog@@UAEXG@Z -??0TabPage@@QAE@PAVWindow@@ABVResId@@@Z -??0TabPage@@QAE@PAVWindow@@K@Z -??_7TabPage@@6B@ -??_GTabPage@@UAEPAXI@Z -?ActivatePage@TabPage@@UAEXXZ -?DataChanged@TabPage@@UAEXABVDataChangedEvent@@@Z -?DeactivatePage@TabPage@@UAEXXZ -?ImplInit@TabPage@@AAEXPAVWindow@@K@Z -?ImplInitSettings@TabPage@@AAEXXZ -?StateChanged@TabPage@@UAEXG@Z -??0ImplTBDragMgr@@QAE@XZ -??0ToolBox@@QAE@PAVWindow@@ABVResId@@@Z -??0ToolBox@@QAE@PAVWindow@@K@Z -??1ImplTBDragMgr@@QAE@XZ -??1ToolBox@@UAE@XZ -??_7ToolBox@@6B@ -??_GToolBox@@UAEPAXI@Z -?CalcWindowSizePixel@ToolBox@@QBE?AVSize@@G@Z -?Command@ToolBox@@UAEXABVCommandEvent@@@Z -?DataChanged@ToolBox@@UAEXABVDataChangedEvent@@@Z -?Docking@ToolBox@@UAEEABVPoint@@AAVRectangle@@@Z -?Dragging@ImplTBDragMgr@@QAEXABVPoint@@@Z -?EnableCustomize@ToolBox@@QAEXE@Z -?EndCustomizeMode@ImplTBDragMgr@@QAEXXZ -?EndCustomizeMode@ToolBox@@SAXXZ -?EndDocking@ToolBox@@UAEXABVRectangle@@E@Z -?EndDragging@ImplTBDragMgr@@QAEXE@Z -?FindToolBox@ImplTBDragMgr@@QAEPAVToolBox@@ABVRectangle@@@Z -?GetAccessObject@ToolBox@@QBEXAAVAccessObjectRef@@@Z -?ImplCalcBreaks@ToolBox@@QAEGJPAJE@Z -?ImplCalcItem@ToolBox@@QAEEXZ -?ImplDrawItem@ToolBox@@QAEXGEE@Z -?ImplDrawNext@ToolBox@@QAEXE@Z -?ImplDrawSpin@ToolBox@@QAEXEE@Z -?ImplEndCustomizeMode@ToolBox@@QAEXXZ -?ImplFloatControl@ToolBox@@QAEXEPAVFloatingWindow@@@Z -?ImplFormat@ToolBox@@QAEXE@Z -?ImplGetItem@ToolBox@@QBEPAUImplToolItem@@G@Z -?ImplHandleMouseButtonUp@ToolBox@@QAEEABVMouseEvent@@E@Z -?ImplHandleMouseMove@ToolBox@@QAEEABVMouseEvent@@E@Z -?ImplInit@ToolBox@@QAEXPAVWindow@@K@Z -?ImplInitSettings@ToolBox@@QAEXEEE@Z -?ImplLoadRes@ToolBox@@QAEXABVResId@@@Z -?ImplStartCustomizeMode@ToolBox@@QAEXXZ -?ImplUpdateHdl@ToolBox@@QAEJPAX@Z -?IsCustomizeMode@ToolBox@@SAEXZ -?LinkStubImplUpdateHdl@ToolBox@@SAJPAX0@Z -?LinkStubSelectHdl@ImplTBDragMgr@@SAJPAX0@Z -?MouseButtonDown@ToolBox@@UAEXABVMouseEvent@@@Z -?MouseButtonUp@ToolBox@@UAEXABVMouseEvent@@@Z -?MouseMove@ToolBox@@UAEXABVMouseEvent@@@Z -?Move@ToolBox@@UAEXXZ -?Notify@ToolBox@@UAEJAAVNotifyEvent@@@Z -?Paint@ToolBox@@UAEXABVRectangle@@@Z -?PrepareToggleFloatingMode@ToolBox@@UAEEXZ -?RequestHelp@ToolBox@@UAEXABVHelpEvent@@@Z -?Resize@ToolBox@@UAEXXZ -?Resizing@ToolBox@@UAEXAAVSize@@@Z -?SelectHdl@ImplTBDragMgr@@QAEJPAVAccelerator@@@Z -?ShowLine@ToolBox@@QAEXE@Z -?StartCustomize@ToolBox@@QAEXABVRectangle@@PAX@Z -?StartCustomizeMode@ImplTBDragMgr@@QAEXXZ -?StartCustomizeMode@ToolBox@@SAXXZ -?StartDocking@ToolBox@@UAEXXZ -?StartDragging@ImplTBDragMgr@@QAEXPAVToolBox@@ABVPoint@@ABVRectangle@@GEPAX@Z -?StateChanged@ToolBox@@UAEXG@Z -?ToggleFloatingMode@ToolBox@@UAEXXZ -?Tracking@ToolBox@@UAEXABVTrackingEvent@@@Z -?UpdateDragRect@ImplTBDragMgr@@QAEXXZ -??0ImplToolItem@@QAE@GABVImage@@ABVString@@G@Z -??0ImplToolItem@@QAE@GABVImage@@G@Z -??0ImplToolItem@@QAE@GABVString@@G@Z -??0ImplToolItem@@QAE@XZ -??1ImplToolItem@@QAE@XZ -?Activate@ToolBox@@UAEXXZ -?Clear@ToolBox@@QAEXXZ -?Click@ToolBox@@UAEXXZ -?CopyItem@ToolBox@@QAEXABV1@GG@Z -?CopyItems@ToolBox@@QAEXABV1@@Z -?Customize@ToolBox@@UAEXABVToolBoxCustomizeEvent@@@Z -?Deactivate@ToolBox@@UAEXXZ -?DoubleClick@ToolBox@@UAEXXZ -?EnableItem@ToolBox@@QAEXGE@Z -?EndSelection@ToolBox@@QAEXXZ -?GetHelpId@ToolBox@@QBEKG@Z -?GetHelpText@ToolBox@@QBEABVString@@G@Z -?GetItemBits@ToolBox@@QBEGG@Z -?GetItemCommand@ToolBox@@QBEABVString@@G@Z -?GetItemCount@ToolBox@@QBEGXZ -?GetItemData@ToolBox@@QBEPAXG@Z -?GetItemHighImage@ToolBox@@QBE?AVImage@@G@Z -?GetItemId@ToolBox@@QBEGABVPoint@@@Z -?GetItemId@ToolBox@@QBEGG@Z -?GetItemImage@ToolBox@@QBE?AVImage@@G@Z -?GetItemPos@ToolBox@@QBEGG@Z -?GetItemRect@ToolBox@@QBE?AVRectangle@@G@Z -?GetItemState@ToolBox@@QBE?AW4TriState@@G@Z -?GetItemText@ToolBox@@QBEABVString@@G@Z -?GetItemType@ToolBox@@QBE?AW4ToolBoxItemType@@G@Z -?GetItemWindow@ToolBox@@QBEPAVWindow@@G@Z -?GetQuickHelpText@ToolBox@@QBEABVString@@G@Z -?Highlight@ToolBox@@UAEXXZ -?ImplConvertMenuString@ToolBox@@QAEABVString@@ABV2@@Z -?ImplInvalidate@ToolBox@@QAEXEE@Z -?ImplUpdateItem@ToolBox@@QAEXG@Z -?InsertBreak@ToolBox@@QAEXG@Z -?InsertItem@ToolBox@@QAEXABVResId@@G@Z -?InsertItem@ToolBox@@QAEXGABVImage@@ABVString@@GG@Z -?InsertItem@ToolBox@@QAEXGABVImage@@GG@Z -?InsertItem@ToolBox@@QAEXGABVString@@GG@Z -?InsertSeparator@ToolBox@@QAEXGG@Z -?InsertSpace@ToolBox@@QAEXG@Z -?InsertWindow@ToolBox@@QAEXGPAVWindow@@GG@Z -?IsItemDown@ToolBox@@QBEEG@Z -?IsItemEnabled@ToolBox@@QBEEG@Z -?IsItemVisible@ToolBox@@QBEEG@Z -?MoveItem@ToolBox@@QAEXGG@Z -?NextToolBox@ToolBox@@UAEXXZ -?RecalcItems@ToolBox@@QAEXXZ -?RemoveItem@ToolBox@@QAEXG@Z -?Select@ToolBox@@UAEXXZ -?SetAlign@ToolBox@@QAEXW4WindowAlign@@@Z -?SetBorder@ToolBox@@QAEXJJ@Z -?SetButtonType@ToolBox@@QAEXW4ButtonType@@@Z -?SetHelpId@ToolBox@@QAEXGK@Z -?SetHelpText@ToolBox@@QAEXGABVString@@@Z -?SetItemBits@ToolBox@@QAEXGG@Z -?SetItemCommand@ToolBox@@QAEXGABVString@@@Z -?SetItemData@ToolBox@@QAEXGPAX@Z -?SetItemDown@ToolBox@@QAEXGEE@Z -?SetItemHighImage@ToolBox@@QAEXGABVImage@@@Z -?SetItemImage@ToolBox@@QAEXGABVImage@@@Z -?SetItemState@ToolBox@@QAEXGW4TriState@@@Z -?SetItemText@ToolBox@@QAEXGABVString@@@Z -?SetItemWindow@ToolBox@@QAEXGPAVWindow@@@Z -?SetLineCount@ToolBox@@QAEXG@Z -?SetNextToolBox@ToolBox@@QAEXABVString@@@Z -?SetOutStyle@ToolBox@@QAEXG@Z -?SetQuickHelpText@ToolBox@@QAEXGABVString@@@Z -?ShowItem@ToolBox@@QAEXGE@Z -?StartSelection@ToolBox@@QAEXXZ -?UserDraw@ToolBox@@UAEXABVUserDrawEvent@@@Z -??0ClassData2@cppu@@QAE@J@Z -??0Window@@IAE@G@Z -??0Window@@QAE@PAV0@ABVResId@@@Z -??0Window@@QAE@PAV0@K@Z -??1?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXInitialization@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXWindowPeer@awt@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1ClassData2@cppu@@QAE@XZ -??1Exception@uno@star@sun@com@@QAE@XZ -??1InputContext@@QAE@XZ -??1Window@@UAE@XZ -??_7Window@@6B@ -??_B?1???s_aCD@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@$D@@9@51 -??_B?1???s_aCD@?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@$D@@9@51 -??_C@_0CC@OOBK@com?4sun?4star?4lang?4XInitializatio@ -??_C@_0CK@BNNB@com?4sun?4star?4datatransfer?4dnd?4XD@ -??_C@_0CK@FAOF@com?4sun?4star?4datatransfer?4dnd?4XD@ -??_C@_0CP@JME@com?4sun?4star?4datatransfer?4clipbo@ -??_C@_0DF@DEHG@com?4sun?4star?4datatransfer?4dnd?4XD@ -??_GWindow@@UAEPAXI@Z -?Activate@Window@@UAEXXZ -?AlwaysEnableInput@Window@@QAEXEE@Z -?CalcTitleWidth@Window@@QBEJXZ -?CaptureMouse@Window@@QAEXXZ -?Command@Window@@UAEXABVCommandEvent@@@Z -?DataChanged@Window@@UAEXABVDataChangedEvent@@@Z -?DbgName_Window@@YAPAUDbgDataType@@XZ -?Deactivate@Window@@UAEXXZ -?Draw@Window@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?Drop@Window@@UAEEABVDropEvent@@@Z -?Enable@Window@@QAEXEE@Z -?EnableAlwaysOnTop@Window@@QAEXE@Z -?EnableChildPointerOverwrite@Window@@QAEXE@Z -?EnableClipSiblings@Window@@QAEXE@Z -?EnableInput@Window@@QAEXEE@Z -?EnableInput@Window@@QAEXEEEPBV1@@Z -?EndExtTextInput@Window@@QAEXG@Z -?EnterWait@Window@@QAEXXZ -?FindWindow@Window@@QBEPAV1@ABVPoint@@@Z -?Flush@Window@@QAEXXZ -?GetBorderStyle@Window@@QBEGXZ -?GetChild@Window@@QBEPAV1@G@Z -?GetChildCount@Window@@QBEGXZ -?GetClipboard@Window@@UAE?AV?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@XZ -?GetComponentInterface@Window@@UAE?AV?$Reference@VXWindowPeer@awt@star@sun@com@@@uno@star@sun@com@@E@Z -?GetCursorExtTextInputWidth@Window@@QBEJXZ -?GetCursorRect@Window@@QBEPBVRectangle@@XZ -?GetDragGestureRecognizer@Window@@UAE?AV?$Reference@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@XZ -?GetDragSource@Window@@UAE?AV?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@XZ -?GetDropTarget@Window@@UAE?AV?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@XZ -?GetFocus@Window@@UAEXXZ -?GetFontResolution@Window@@QBEXAAJ0@Z -?GetHelpText@Window@@QBEABVString@@XZ -?GetPaintRegion@Window@@QBE?AVRegion@@XZ -?GetParentClipMode@Window@@QBEGXZ -?GetPointFont@Window@@QBE?AVFont@@XZ -?GetPointerPosPixel@Window@@QAE?AVPoint@@XZ -?GetSelection@Window@@UAE?AV?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@XZ -?GetSystemData@Window@@QBEPBUSystemEnvData@@XZ -?GetSystemDataAny@Window@@QBE?AVAny@uno@star@sun@com@@XZ -?GetSystemWindow@Window@@QBEPAVSystemWindow@@XZ -?GetText@Window@@UBE?AVString@@XZ -?GetWindow@Window@@QBEPAV1@G@Z -?GetWindowClipRegionPixel@Window@@QBE?AVRegion@@G@Z -?GetWindowRegionPixel@Window@@QBEABVRegion@@XZ -?GrabFocus@Window@@QAEXXZ -?HasChildPathFocus@Window@@QBEEE@Z -?HasFocus@Window@@QBEEXZ -?HasPaintEvent@Window@@QBEEXZ -?ImplAddDel@Window@@QAEXPAUImplDelData@@@Z -?ImplAsyncStateChangedHdl@Window@@QAEJPAX@Z -?ImplCalcChildOverlapToTop@Window@@QAEXPAUImplCalcToTopData@@@Z -?ImplCalcOverlapRegion@Window@@QAEXABVRectangle@@AAVRegion@@EEE@Z -?ImplCalcOverlapRegionOverlaps@Window@@QAEXABVRegion@@AAV2@@Z -?ImplCalcToTop@Window@@QAEXPAUImplCalcToTopData@@@Z -?ImplCallActivateListeners@Window@@QAEXPAV1@@Z -?ImplCallDeactivateListeners@Window@@QAEXPAV1@@Z -?ImplCallFocusChangeActivate@Window@@QAEXPAV1@0@Z -?ImplCallInitShow@Window@@QAEXXZ -?ImplCallMouseMove@Window@@QAEXGE@Z -?ImplCallOverlapPaint@Window@@QAEXXZ -?ImplCallPaint@Window@@QAEXPBVRegion@@G@Z -?ImplClipAllChilds@Window@@QAEXAAVRegion@@@Z -?ImplClipBoundaries@Window@@QAEXAAVRegion@@EE@Z -?ImplClipChilds@Window@@QAEEAAVRegion@@@Z -?ImplClipSiblings@Window@@QAEXAAVRegion@@@Z -?ImplDbgCheckWindow@@YAPBDPBX@Z -?ImplExcludeOverlapWindows2@Window@@QAEXAAVRegion@@@Z -?ImplExcludeOverlapWindows@Window@@QAEXAAVRegion@@@Z -?ImplExcludeWindowRegion@Window@@QAEXAAVRegion@@@Z -?ImplFindWindow@Window@@QAEPAV1@ABVPoint@@@Z -?ImplFocusToTop@Window@@QAEXGE@Z -?ImplGenerateMouseMove@Window@@QAEXXZ -?ImplGenerateMouseMoveHdl@Window@@QAEJPAX@Z -?ImplGetFrameGraphics@Window@@QBEPAVSalGraphics@@XZ -?ImplGetMousePointer@Window@@QBEGXZ -?ImplGetSameParent@Window@@QBEPAV1@PBV1@@Z -?ImplGetWinChildClipRegion@Window@@QAEPAVRegion@@XZ -?ImplGetWinData@Window@@QBEPAUImplWinData@@XZ -?ImplGrabFocus@Window@@QAEXG@Z -?ImplHandlePaintHdl@Window@@QAEJPAX@Z -?ImplHideAllOverlaps@Window@@QAEXXZ -?ImplHitTest@Window@@QAEGABVPoint@@@Z -?ImplInit@Window@@QAEXPAV1@KABVAny@uno@star@sun@com@@@Z -?ImplInit@Window@@QAEXPAV1@KPAUSystemParentData@@@Z -?ImplInitData@Window@@AAEXG@Z -?ImplInitRes@Window@@QAEKABVResId@@@Z -?ImplInitResolutionSettings@Window@@QAEXXZ -?ImplInitWinChildClipRegion@Window@@QAEXXZ -?ImplInitWinClipRegion@Window@@QAEXXZ -?ImplInsertWindow@Window@@QAEXPAV1@@Z -?ImplIntersectAndUnionOverlapWindows2@Window@@QAEXABVRegion@@AAV2@@Z -?ImplIntersectAndUnionOverlapWindows@Window@@QAEXABVRegion@@AAV2@@Z -?ImplIntersectWindowClipRegion@Window@@QAEXAAVRegion@@@Z -?ImplIntersectWindowRegion@Window@@QAEXAAVRegion@@@Z -?ImplInvalidate@Window@@QAEXPBVRegion@@G@Z -?ImplInvalidateFrameRegion@Window@@QAEXPBVRegion@@G@Z -?ImplInvalidateOverlapFrameRegion@Window@@QAEXABVRegion@@@Z -?ImplInvalidateParentFrameRegion@Window@@QAEXAAVRegion@@@Z -?ImplInvertFocus@Window@@QAEXABVRectangle@@@Z -?ImplIsChild@Window@@QBEEPBV1@E@Z -?ImplIsRealParentPath@Window@@QBEEPBV1@@Z -?ImplIsWindowOrChild@Window@@QBEEPBV1@E@Z -?ImplLoadRes@Window@@QAEXABVResId@@@Z -?ImplLogicToPoint@Window@@QBEXAAVFont@@@Z -?ImplMoveAllInvalidateRegions@Window@@QAEXABVRectangle@@JJE@Z -?ImplMoveInvalidateRegion@Window@@QAEXABVRectangle@@JJE@Z -?ImplNewInputContext@Window@@SAXXZ -?ImplPointToLogic@Window@@QBEXAAVFont@@@Z -?ImplPosSizeWindow@Window@@QAEXJJJJG@Z -?ImplPostPaint@Window@@QAEXXZ -?ImplRemoveDel@Window@@QAEXPAUImplDelData@@@Z -?ImplRemoveWindow@Window@@QAEXE@Z -?ImplResetReallyVisible@Window@@QAEXXZ -?ImplScroll@Window@@QAEXABVRectangle@@JJG@Z -?ImplSetClipFlag@Window@@QAEEE@Z -?ImplSetClipFlagChilds@Window@@QAEEE@Z -?ImplSetClipFlagOverlapWindows@Window@@QAEEE@Z -?ImplSetReallyVisible@Window@@QAEXXZ -?ImplShowAllOverlaps@Window@@QAEXXZ -?ImplStartToTop@Window@@QAEXG@Z -?ImplSysObjClip@Window@@QAEEPBVRegion@@@Z -?ImplTestMousePointerSet@Window@@QAEHXZ -?ImplToBottomChild@Window@@QAEXXZ -?ImplToTop@Window@@QAEXG@Z -?ImplTranslateMouseEvent@@YA?AVMouseEvent@@ABV1@PAVWindow@@1@Z -?ImplUpdateAll@Window@@QAEXE@Z -?ImplUpdateOverlapWindowPtr@Window@@QAEXE@Z -?ImplUpdatePos@Window@@QAEEXZ -?ImplUpdateSysObjChildsClip@Window@@QAEXXZ -?ImplUpdateSysObjClip@Window@@QAEXXZ -?ImplUpdateSysObjOverlapsClip@Window@@QAEXXZ -?ImplUpdateSysObjPos@Window@@QAEXXZ -?ImplUpdateWindowPtr@Window@@QAEXPAV1@@Z -?ImplUpdateWindowPtr@Window@@QAEXXZ -?ImplValidate@Window@@QAEXPBVRegion@@G@Z -?ImplValidateFrameRegion@Window@@QAEXPBVRegion@@G@Z -?Invalidate@Window@@QAEXABVRectangle@@G@Z -?Invalidate@Window@@QAEXABVRegion@@G@Z -?Invalidate@Window@@QAEXG@Z -?IsChild@Window@@QBEEPBV1@E@Z -?IsMouseCaptured@Window@@QBEEXZ -?IsWindowOrChild@Window@@QBEEPBV1@E@Z -?IsWindowRegionPixel@Window@@QBEEXZ -?KeyInput@Window@@UAEXABVKeyEvent@@@Z -?KeyUp@Window@@UAEXABVKeyEvent@@@Z -?LeaveWait@Window@@QAEXXZ -?LinkStubImplAsyncStateChangedHdl@Window@@SAJPAX0@Z -?LinkStubImplGenerateMouseMoveHdl@Window@@SAJPAX0@Z -?LinkStubImplHandlePaintHdl@Window@@SAJPAX0@Z -?LoseFocus@Window@@UAEXXZ -?MouseButtonDown@Window@@UAEXABVMouseEvent@@@Z -?MouseButtonUp@Window@@UAEXABVMouseEvent@@@Z -?MouseMove@Window@@UAEXABVMouseEvent@@@Z -?Move@Window@@UAEXXZ -?Notify@Window@@UAEJAAVNotifyEvent@@@Z -?NotifyAllChilds@Window@@QAEXAAVDataChangedEvent@@@Z -?OutputToScreenPixel@Window@@QBE?AVPoint@@ABV2@@Z -?Paint@Window@@UAEXABVRectangle@@@Z -?PostStateChanged@Window@@QAEXG@Z -?PostUserEvent@Window@@QAEEAAKABVLink@@PAX@Z -?PostUserEvent@Window@@QAEEAAKKPAX@Z -?PostUserEvent@Window@@QAEKABVLink@@PAX@Z -?PostUserEvent@Window@@QAEKKPAX@Z -?PreNotify@Window@@UAEJAAVNotifyEvent@@@Z -?QueryDrop@Window@@UAEEAAVDropEvent@@@Z -?ReadStringRes@Resource@@KA?AVString@@XZ -?ReleaseMouse@Window@@QAEXXZ -?RemoveUserEvent@Window@@QAEXK@Z -?RequestHelp@Window@@UAEXABVHelpEvent@@@Z -?Resize@Window@@UAEXXZ -?ScreenToOutputPixel@Window@@QBE?AVPoint@@ABV2@@Z -?Scroll@Window@@QAEXJJABVRectangle@@G@Z -?Scroll@Window@@QAEXJJG@Z -?SetActivateMode@Window@@QAEXG@Z -?SetBorderStyle@Window@@QAEXG@Z -?SetComponentInterface@Window@@UAEXV?$Reference@VXWindowPeer@awt@star@sun@com@@@uno@star@sun@com@@@Z -?SetCursor@Window@@QAEXPAVCursor@@@Z -?SetCursorRect@Window@@QAEXPBVRectangle@@J@Z -?SetExtendedStyle@Window@@QAEXK@Z -?SetInputContext@Window@@QAEXABVInputContext@@@Z -?SetMouseTransparent@Window@@QAEXE@Z -?SetPaintTransparent@Window@@QAEXE@Z -?SetParent@Window@@QAEXPAV1@@Z -?SetParentClipMode@Window@@QAEXG@Z -?SetPointFont@Window@@QAEXABVFont@@@Z -?SetPointer@Window@@QAEXABVPointer@@@Z -?SetPointerPosPixel@Window@@QAEXABVPoint@@@Z -?SetPosSizePixel@Window@@UAEXJJJJG@Z -?SetSettings@Window@@QAEXABVAllSettings@@E@Z -?SetStyle@Window@@QAEXK@Z -?SetText@Window@@UAEXABVString@@@Z -?SetUpdateMode@Window@@QAEXE@Z -?SetWindowPeer@Window@@QAEXV?$Reference@VXWindowPeer@awt@star@sun@com@@@uno@star@sun@com@@PAVVCLXWindow@@@Z -?SetWindowRegionPixel@Window@@QAEXABVRegion@@@Z -?SetWindowRegionPixel@Window@@QAEXXZ -?SetZOrder@Window@@QAEXPAV1@G@Z -?Show@Window@@QAEXEG@Z -?ShowPointer@Window@@QAEXE@Z -?StateChanged@Window@@UAEXG@Z -?Sync@Window@@QAEXXZ -?ToTop@Window@@QAEXG@Z -?Tracking@Window@@UAEXABVTrackingEvent@@@Z -?Update@Window@@QAEXXZ -?UpdateSettings@Window@@QAEXABVAllSettings@@E@Z -?UserEvent@Window@@UAEXKPAX@Z -?Validate@Window@@QAEXABVRectangle@@G@Z -?Validate@Window@@QAEXABVRegion@@G@Z -?Validate@Window@@QAEXG@Z -?__query@?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXClipboard@clipboard@datatransfer@345@PAVXInterface@2345@@Z -?__query@?$Reference@VXComponent@lang@star@sun@com@@@uno@star@sun@com@@CAPAVXComponent@lang@345@PAVXInterface@2345@@Z -?__query@?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXDragSource@dnd@datatransfer@345@PAVXInterface@2345@@Z -?__query@?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXDropTarget@dnd@datatransfer@345@PAVXInterface@2345@@Z -?__query@?$Reference@VXInitialization@lang@star@sun@com@@@uno@star@sun@com@@CAPAVXInitialization@lang@345@PAVXInterface@2345@@Z -?makeAny@uno@star@sun@com@@YA?AVAny@1234@ABK@Z -?s_aCD@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@$E -?s_aCD@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@0UClassData2@2@A -?s_aCD@?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@$E -?s_aCD@?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@0UClassData2@2@A -?s_pType@?$Sequence@C@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType@?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_datatransfer_clipboard_XClipboard@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_datatransfer_dnd_XDragGestureRecognizer@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_datatransfer_dnd_XDragSource@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_datatransfer_dnd_XDropTarget@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_lang_XInitialization@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInitialization@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?set@?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAEPAVXClipboard@clipboard@datatransfer@345@@Z -?CalcOutputSize@Window@@QBE?AVSize@@ABV2@@Z -?CalcWindowSize@Window@@QBE?AVSize@@ABV2@@Z -?CalcZoom@Window@@QBEJJ@Z -?EndAutoScroll@Window@@QAEXXZ -?EndSaveFocus@Window@@SAEKE@Z -?EndTracking@Window@@QAEXG@Z -?GetAccessObject@Window@@QBEXAAVAccessObjectRef@@@Z -?GetControlFont@Window@@QBE?AVFont@@XZ -?GetDrawPixel@Window@@QBEJPAVOutputDevice@@J@Z -?GetDrawPixelFont@Window@@QBE?AVFont@@PAVOutputDevice@@@Z -?HandleScrollCommand@Window@@QAEEABVCommandEvent@@PAVScrollBar@@1@Z -?HideFocus@Window@@QAEXXZ -?HideTracking@Window@@QAEXXZ -?ImplDeleteOverlapBackground@Window@@QAEXXZ -?ImplHandleScroll@Window@@QAEXPAVScrollBar@@J0J@Z -?ImplInvalidateAllOverlapBackgrounds@Window@@QAEXXZ -?ImplIsWindowInFront@Window@@QBEEPBV1@@Z -?ImplRestoreOverlapBackground@Window@@QAEEAAVRegion@@@Z -?ImplSaveOverlapBackground@Window@@QAEXXZ -?ImplTrackTimerHdl@Window@@QAEJPAVTimer@@@Z -?Invert@Window@@QAEXABVPolygon@@G@Z -?Invert@Window@@QAEXABVRectangle@@G@Z -?InvertTracking@Window@@QAEXABVPolygon@@G@Z -?InvertTracking@Window@@QAEXABVRectangle@@G@Z -?IsAutoScroll@Window@@QBEEXZ -?IsTracking@Window@@QBEEXZ -?LinkStubImplTrackTimerHdl@Window@@SAJPAX0@Z -?SaveBackground@Window@@QAEXABVPoint@@ABVSize@@0AAVVirtualDevice@@@Z -?SaveFocus@Window@@SAKXZ -?SetControlBackground@Window@@QAEXABVColor@@@Z -?SetControlBackground@Window@@QAEXXZ -?SetControlFont@Window@@QAEXABVFont@@@Z -?SetControlFont@Window@@QAEXXZ -?SetControlForeground@Window@@QAEXABVColor@@@Z -?SetControlForeground@Window@@QAEXXZ -?SetZoom@Window@@QAEXABVFraction@@@Z -?SetZoomedPointFont@Window@@QAEXABVFont@@@Z -?ShowFocus@Window@@QAEXABVRectangle@@@Z -?ShowTracking@Window@@QAEXABVRectangle@@G@Z -?SnapShot@Window@@QBE?AVBitmap@@XZ -?StartAutoScroll@Window@@QAEXG@Z -?StartTracking@Window@@QAEXG@Z -_real@8@401dfffffffe00000000 -_real@8@c01e8000000000000000 -??0?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0ImplDragTimer@@QAE@PAVWindow@@@Z -??1AutoTimer@@QAE@XZ -??1ImplDragTimer@@QAE@XZ -??1MouseEvent@awt@star@sun@com@@QAE@XZ -??_7ImplDragTimer@@6B@ -??_C@_0BM@KFDD@com?4sun?4star?4awt?4MouseEvent?$AA@ -?ImplAsyncFocusHdl@Window@@QAEJPAX@Z -?ImplCallEvent@@YAJAAVNotifyEvent@@@Z -?ImplCallPreNotify@@YAJAAVNotifyEvent@@@Z -?ImplHandleClose@@YAXPAVWindow@@@Z -?ImplHandleMouseEvent@@YAJPAVWindow@@GEJJKGG@Z -?ImplHandleResize@@YAXPAVWindow@@JJ@Z -?ImplHandleSalMouseActivate@@YAJPAVWindow@@PAUSalMouseActivateEvent@@@Z -?ImplHandleWheelEvent@@YAJPAVWindow@@JJKJJKGE@Z -?ImplWindowFrameProc@@YAJPAXPAVSalFrame@@GPBX@Z -?LinkStubImplAsyncFocusHdl@Window@@SAJPAX0@Z -?Timeout@ImplDragTimer@@UAEXXZ -?makeAny@uno@star@sun@com@@YA?AVAny@1234@ABUMouseEvent@awt@234@@Z -?s_pType_com_sun_star_awt_MouseEvent@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUMouseEvent@awt@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??0WorkWindow@@IAE@G@Z -??0WorkWindow@@QAE@PAUSystemParentData@@@Z -??0WorkWindow@@QAE@PAVWindow@@ABVAny@uno@star@sun@com@@K@Z -??0WorkWindow@@QAE@PAVWindow@@ABVResId@@@Z -??0WorkWindow@@QAE@PAVWindow@@K@Z -??1WorkWindow@@UAE@XZ -??_7WorkWindow@@6B@ -??_GWorkWindow@@UAEPAXI@Z -?GetWindowState@WorkWindow@@QBE?AVByteString@@XZ -?ImplInit@WorkWindow@@AAEXPAVWindow@@KABVAny@uno@star@sun@com@@@Z -?ImplInit@WorkWindow@@IAEXPAVWindow@@KPAUSystemParentData@@@Z -?ImplInitData@WorkWindow@@AAEXXZ -?ImplLoadRes@WorkWindow@@IAEXABVResId@@@Z -?IsMinimized@WorkWindow@@QBEEXZ -?SetIcon@WorkWindow@@QAEXG@Z -?SetWindowState@WorkWindow@@QAEXABVByteString@@@Z -?ShowFullScreenMode@WorkWindow@@QAEXE@Z -?StartPresentationMode@WorkWindow@@QAEXEG@Z -??0ImplWheelWindow@@QAE@PAVWindow@@@Z -??1ImplWheelWindow@@UAE@XZ -??_7ImplWheelWindow@@6B@ -??_GImplWheelWindow@@UAEPAXI@Z -?ImplCreateImageList@ImplWheelWindow@@AAEXXZ -?ImplDrawWheel@ImplWheelWindow@@AAEXXZ -?ImplGetMousePointer@ImplWheelWindow@@AAEGJJ@Z -?ImplRecalcScrollValues@ImplWheelWindow@@AAEXXZ -?ImplScrollHdl@ImplWheelWindow@@AAEJPAVTimer@@@Z -?ImplSetRegion@ImplWheelWindow@@AAEXABVBitmap@@@Z -?ImplSetWheelMode@ImplWheelWindow@@QAEXK@Z -?LinkStubImplScrollHdl@ImplWheelWindow@@CAJPAX0@Z -?MouseButtonUp@ImplWheelWindow@@MAEXABVMouseEvent@@@Z -?MouseMove@ImplWheelWindow@@MAEXABVMouseEvent@@@Z -?Paint@ImplWheelWindow@@MAEXABVRectangle@@@Z -_real@8@3ffdccccccccccccd000 -_real@8@4003b400000000000000 -_real@8@40058700000000000000 -_real@8@4005b400000000000000 -_real@8@4005e100000000000000 -_real@8@40069d80000000000000 -_real@8@4006b400000000000000 -_real@8@4006ca80000000000000 -_real@8@4006f780000000000000 -_real@8@40078700000000000000 -_real@8@40079240000000000000 -_real@8@4007a8c0000000000000 -_real@8@4007b400000000000000 -??0DNDEventDispatcher@@QAE@PAVWindow@@@Z -??1?$Guard@VMutex@osl@@@osl@@QAE@XZ -??1?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@UAE@XZ -??1DNDEventDispatcher@@UAE@XZ -??1OClearableGuard@vos@@UAE@XZ -??_7?$ImplHelperBase2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@6BXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@ -??_7?$ImplHelperBase2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@6BXDropTargetListener@dnd@datatransfer@star@sun@com@@@ -??_7?$ImplHelperBase2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@6BXTypeProvider@lang@star@sun@com@@@ -??_7?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@6B@ -??_7?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@6BXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@ -??_7?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@6BXDropTargetListener@dnd@datatransfer@star@sun@com@@@ -??_7?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@6BXTypeProvider@lang@star@sun@com@@@ -??_7DNDEventDispatcher@@6B@ -??_7DNDEventDispatcher@@6BXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@ -??_7DNDEventDispatcher@@6BXDropTargetListener@dnd@datatransfer@star@sun@com@@@ -??_7DNDEventDispatcher@@6BXTypeProvider@lang@star@sun@com@@@ -??_7OClearableGuard@vos@@6B@ -??_7XDropTargetDragContext@dnd@datatransfer@star@sun@com@@6B@ -??_7XTypeProvider@lang@star@sun@com@@6B@ -??_C@_0CF@MDFM@com?4sun?4star?4datatransfer?4DataFl@ -??_C@_0DF@FML@com?4sun?4star?4datatransfer?4dnd?4XD@ -??_G?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@UAEPAXI@Z -??_GDNDEventDispatcher@@UAEPAXI@Z -??_GOClearableGuard@vos@@UAEPAXI@Z -?acceptDrag@DNDEventDispatcher@@UAAXC@Z -?acquire@?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@UAAXXZ -?acquire@?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@WBA@AAXXZ -?acquire@?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@WBE@AAXXZ -?acquire@?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@WM@AAXXZ -?disposing@DNDEventDispatcher@@UAAXABUEventObject@lang@star@sun@com@@@Z -?dragEnter@DNDEventDispatcher@@UAAXABUDropTargetDragEnterEvent@dnd@datatransfer@star@sun@com@@@Z -?dragExit@DNDEventDispatcher@@UAAXABUDropTargetEvent@dnd@datatransfer@star@sun@com@@@Z -?dragOver@DNDEventDispatcher@@UAAXABUDropTargetDragEvent@dnd@datatransfer@star@sun@com@@@Z -?drop@DNDEventDispatcher@@UAAXABUDropTargetDropEvent@dnd@datatransfer@star@sun@com@@@Z -?dropActionChanged@DNDEventDispatcher@@UAAXABUDropTargetDragEvent@dnd@datatransfer@star@sun@com@@@Z -?fireDragEnterEvent@DNDEventDispatcher@@AAEJPAVWindow@@ABV?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CABVPoint@@CABV?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@4567@@Z -?fireDragExitEvent@DNDEventDispatcher@@AAEJPAVWindow@@@Z -?fireDragOverEvent@DNDEventDispatcher@@AAEJPAVWindow@@ABV?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CABVPoint@@C@Z -?fireDropActionChangedEvent@DNDEventDispatcher@@AAEJPAVWindow@@ABV?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CABVPoint@@C@Z -?fireDropEvent@DNDEventDispatcher@@AAEJPAVWindow@@ABV?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CABVPoint@@CABV?$Reference@VXTransferable@datatransfer@star@sun@com@@@4567@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBUDataFlavor@datatransfer@345@@Z -?getImplementationId@?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ -?getTypes@?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ -?queryInterface@?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z -?queryInterface@?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z -?queryInterface@?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z -?queryInterface@?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@WM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z -?rejectDrag@DNDEventDispatcher@@UAAXXZ -?release@?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@UAAXXZ -?release@?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@WBA@AAXXZ -?release@?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@WBE@AAXXZ -?release@?$WeakImplHelper2@VXDropTargetListener@dnd@datatransfer@star@sun@com@@VXDropTargetDragContext@23456@@cppu@@WM@AAXXZ -?s_pType@?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_datatransfer_DataFlavor@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUDataFlavor@datatransfer@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_datatransfer_dnd_XDropTargetDragContext@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??0?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXTransferable@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$_Ht_It@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@U?$_N_Tr@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@VType@uno@star@sun@com@@UhashType_Impl@cppu@@U?$_S1st@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@U?$equal_to@VType@uno@star@sun@com@@@2@V?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@@_STL@@QAE@PBU?$_hT__N@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@1@PBV?$hashtable@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@VType@uno@star@sun@com@@UhashType_Impl@cppu@@U?$_S1st@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@U?$equal_to@VType@uno@star@sun@com@@@2@V?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@@1@@Z -??0?$_Vector_base@PAXV?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@_STL@@@_STL@@QAE@IABV?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@1@@Z -??0?$hashtable@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@VType@uno@star@sun@com@@UhashType_Impl@cppu@@U?$_S1st@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@U?$equal_to@VType@uno@star@sun@com@@@2@V?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@@_STL@@QAE@IABUhashType_Impl@cppu@@ABU?$equal_to@VType@uno@star@sun@com@@@1@ABV?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@1@@Z -??0?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@QAE@ABVType@uno@star@sun@com@@ABQAX@Z -??0Any@uno@star@sun@com@@QAE@ABV01234@@Z -??0DNDListenerContainer@@QAE@C@Z -??0DropTargetDragEvent@dnd@datatransfer@star@sun@com@@QAE@ABV?$Reference@VXInterface@uno@star@sun@com@@@uno@345@ABCABV?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@7345@1ABJ31@Z -??0EventObject@lang@star@sun@com@@QAE@ABV?$Reference@VXInterface@uno@star@sun@com@@@uno@234@@Z -??1?$ClearableGuard@VMutex@osl@@@osl@@QAE@XZ -??1?$Reference@VXDragGestureListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@UAE@XZ -??1?$_Node_Alloc_Lock@$00$0A@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@IU?$_hT__N@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@_STL@@V?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$_Vector_base@PAXV?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@_STL@@QAE@XZ -??1?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@QAE@XZ -??1?$vector@PAXV?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@_STL@@@_STL@@QAE@XZ -??1DNDListenerContainer@@UAE@XZ -??1DragGestureEvent@dnd@datatransfer@star@sun@com@@QAE@XZ -??1DropTargetDragEnterEvent@dnd@datatransfer@star@sun@com@@QAE@XZ -??1DropTargetDragEvent@dnd@datatransfer@star@sun@com@@QAE@XZ -??1DropTargetDropEvent@dnd@datatransfer@star@sun@com@@QAE@XZ -??1DropTargetEvent@dnd@datatransfer@star@sun@com@@QAE@XZ -??1EventObject@lang@star@sun@com@@QAE@XZ -??RhashType_Impl@cppu@@QBEIABVType@uno@star@sun@com@@@Z -??_7?$ImplHelperBase2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@6BXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@ -??_7?$ImplHelperBase2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@6BXDropTarget@dnd@datatransfer@star@sun@com@@@ -??_7?$ImplHelperBase2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@6BXTypeProvider@lang@star@sun@com@@@ -??_7?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@6BOWeakObject@1@@ -??_7?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@6BXComponent@lang@star@sun@com@@@ -??_7?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@6BXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@ -??_7?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@6BXDropTarget@dnd@datatransfer@star@sun@com@@@ -??_7?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@6BXTypeProvider@lang@star@sun@com@@@ -??_7DNDListenerContainer@@6BOWeakObject@cppu@@@ -??_7DNDListenerContainer@@6BXComponent@lang@star@sun@com@@@ -??_7DNDListenerContainer@@6BXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@ -??_7DNDListenerContainer@@6BXDropTarget@dnd@datatransfer@star@sun@com@@@ -??_7DNDListenerContainer@@6BXTypeProvider@lang@star@sun@com@@@ -??_7XComponent@lang@star@sun@com@@6B@ -??_7XDragGestureRecognizer@dnd@datatransfer@star@sun@com@@6B@ -??_7XDropTarget@dnd@datatransfer@star@sun@com@@6B@ -??_C@_0BD@DDKH@object?5is?5disposed?$AA@ -??_C@_0CJ@ENNC@do?5not?5add?5listeners?5in?5the?5disp@ -??_C@_0DH@BJJL@o?3?2SRC632?2wntmsci7?2inc?2cppuhelpe@ -??_G?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@UAEPAXI@Z -??_G?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@QAEPAXI@Z -??_GDNDListenerContainer@@UAEPAXI@Z -?_Destroy@_STL@@YAXPAU?$pair@$$CBVType@uno@star@sun@com@@PAX@1@@Z -?_M_allocate_and_copy@?$vector@PAXV?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@_STL@@@_STL@@IAEPAPAXIPAPAX0@Z -?_M_fill_insert@?$vector@PAXV?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@_STL@@@_STL@@QAEXPAPAXIABQAX@Z -?_M_insert_overflow@?$vector@PAXV?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@_STL@@@_STL@@IAEXPAPAXABQAXI@Z -?_M_new_node@?$hashtable@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@VType@uno@star@sun@com@@UhashType_Impl@cppu@@U?$_S1st@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@U?$equal_to@VType@uno@star@sun@com@@@2@V?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@@_STL@@AAEPAU?$_hT__N@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@ABU?$pair@$$CBVType@uno@star@sun@com@@PAX@2@@Z -?_M_skip_to_next@?$_hT__It@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@VType@uno@star@sun@com@@UhashType_Impl@cppu@@U?$_S1st@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@U?$equal_to@VType@uno@star@sun@com@@@2@V?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@@_STL@@QAEPAU?$_hT__N@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@XZ -?_S_nsec_sleep@?$_STL_mutex_spin@$0A@@_STL@@SAXH@Z -?__destroy@_STL@@YAXPAPAX00@Z -?__destroy_aux@_STL@@YAXPAPAX0U__true_type@@@Z -?__query@?$Reference@VXDragGestureListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXDragGestureListener@dnd@datatransfer@345@PAVXInterface@2345@@Z -?__query@?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXDropTargetListener@dnd@datatransfer@345@PAVXInterface@2345@@Z -?__stl_alloc_rebind@_STL@@YAAAV?$allocator@PAX@1@AAV?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@1@PBQAX@Z -?acquire@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@UAAXXZ -?acquire@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@WBA@AAXXZ -?acquire@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@WBE@AAXXZ -?acquire@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@WBI@AAXXZ -?acquire@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@WM@AAXXZ -?addDragGestureListener@DNDListenerContainer@@UAAXABV?$Reference@VXDragGestureListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@@Z -?addDropTargetListener@DNDListenerContainer@@UAAXABV?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@@Z -?addEventListener@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@UAAXABV?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@Z -?addListener@?$OBroadcastHelperVar@V?$OMultiTypeInterfaceContainerHelperVar@VType@uno@star@sun@com@@UhashType_Impl@cppu@@U?$equal_to@VType@uno@star@sun@com@@@_STL@@@cppu@@VType@uno@star@sun@com@@@cppu@@QAEXABVType@uno@star@sun@com@@ABV?$Reference@VXInterface@uno@star@sun@com@@@4567@@Z -?begin@?$hashtable@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@VType@uno@star@sun@com@@UhashType_Impl@cppu@@U?$_S1st@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@U?$equal_to@VType@uno@star@sun@com@@@2@V?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@@_STL@@QAE?AU?$_Ht_It@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@U?$_N_Tr@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@VType@uno@star@sun@com@@UhashType_Impl@cppu@@U?$_S1st@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@U?$equal_to@VType@uno@star@sun@com@@@2@V?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@@2@XZ -?begin@?$vector@PAXV?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@_STL@@@_STL@@QAEPAPAXXZ -?deallocate@?$_STL_alloc_proxy@IU?$_hT__N@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@_STL@@V?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@@_STL@@QAEXPAU?$_hT__N@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@I@Z -?deallocate@?$_STL_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@_STL@@@_STL@@QAEXPAPAXI@Z -?deallocate@?$allocator@PAX@_STL@@QBEXPAPAXI@Z -?dispose@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@UAAXXZ -?disposing@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@MAAXXZ -?end@?$hashtable@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@VType@uno@star@sun@com@@UhashType_Impl@cppu@@U?$_S1st@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@U?$equal_to@VType@uno@star@sun@com@@@2@V?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@@_STL@@QAE?AU?$_Ht_It@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@U?$_N_Tr@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@VType@uno@star@sun@com@@UhashType_Impl@cppu@@U?$_S1st@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@U?$equal_to@VType@uno@star@sun@com@@@2@V?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@@2@XZ -?find@?$hashtable@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@VType@uno@star@sun@com@@UhashType_Impl@cppu@@U?$_S1st@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@U?$equal_to@VType@uno@star@sun@com@@@2@V?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@@_STL@@QAE?AU?$_Ht_It@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@U?$_N_Tr@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@VType@uno@star@sun@com@@UhashType_Impl@cppu@@U?$_S1st@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@U?$equal_to@VType@uno@star@sun@com@@@2@V?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@@2@ABVType@uno@star@sun@com@@@Z -?find_or_insert@?$hashtable@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@VType@uno@star@sun@com@@UhashType_Impl@cppu@@U?$_S1st@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@U?$equal_to@VType@uno@star@sun@com@@@2@V?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@@_STL@@QAEAAU?$pair@$$CBVType@uno@star@sun@com@@PAX@2@ABU32@@Z -?fireDragEnterEvent@DNDListenerContainer@@QAEKABV?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CJJCABV?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@3456@@Z -?fireDragExitEvent@DNDListenerContainer@@QAEKXZ -?fireDragGestureEvent@DNDListenerContainer@@QAEKCJJABV?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@ABVAny@3456@@Z -?fireDragOverEvent@DNDListenerContainer@@QAEKABV?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CJJC@Z -?fireDropActionChangedEvent@DNDListenerContainer@@QAEKABV?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CJJC@Z -?fireDropEvent@DNDListenerContainer@@QAEKABV?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CJJCABV?$Reference@VXTransferable@datatransfer@star@sun@com@@@3456@@Z -?getContainer@?$OMultiTypeInterfaceContainerHelperVar@VType@uno@star@sun@com@@UhashType_Impl@cppu@@U?$equal_to@VType@uno@star@sun@com@@@_STL@@@cppu@@QBAPAVOInterfaceContainerHelper@2@ABVType@uno@star@sun@com@@@Z -?getDefaultActions@DNDListenerContainer@@UAACXZ -?getImplementationId@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ -?getTypeName@Type@uno@star@sun@com@@QBA?AVOUString@rtl@@XZ -?getTypes@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ -?get_allocator@?$vector@PAXV?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@_STL@@@_STL@@QBE?AV?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@XZ -?hashCode@OUString@rtl@@QBEJXZ -?isActive@DNDListenerContainer@@UAAEXZ -?queryInterface@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z -?queryInterface@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z -?queryInterface@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z -?queryInterface@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z -?queryInterface@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@WM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z -?release@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@UAAXXZ -?release@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@WBA@AAXXZ -?release@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@WBE@AAXXZ -?release@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@WBI@AAXXZ -?release@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@WM@AAXXZ -?removeDragGestureListener@DNDListenerContainer@@UAAXABV?$Reference@VXDragGestureListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@@Z -?removeDropTargetListener@DNDListenerContainer@@UAAXABV?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@@Z -?removeEventListener@?$WeakComponentImplHelper2@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@VXDropTarget@23456@@cppu@@UAAXABV?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@Z -?removeListener@?$OBroadcastHelperVar@V?$OMultiTypeInterfaceContainerHelperVar@VType@uno@star@sun@com@@UhashType_Impl@cppu@@U?$equal_to@VType@uno@star@sun@com@@@_STL@@@cppu@@VType@uno@star@sun@com@@@cppu@@QAEXABVType@uno@star@sun@com@@ABV?$Reference@VXInterface@uno@star@sun@com@@@4567@@Z -?resetRecognizer@DNDListenerContainer@@UAAXXZ -?resize@?$hashtable@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@VType@uno@star@sun@com@@UhashType_Impl@cppu@@U?$_S1st@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@U?$equal_to@VType@uno@star@sun@com@@@2@V?$allocator@U?$pair@$$CBVType@uno@star@sun@com@@PAX@_STL@@@2@@_STL@@QAEXI@Z -?setActive@DNDListenerContainer@@UAAXE@Z -?setDefaultActions@DNDListenerContainer@@UAAXC@Z -?value_type@_STL@@YAPAPAXPBQAX@Z -??0Button@@IAE@G@Z -??0Button@@QAE@PAVWindow@@ABVResId@@@Z -??0Button@@QAE@PAVWindow@@K@Z -??0CancelButton@@QAE@PAVWindow@@ABVResId@@@Z -??0CancelButton@@QAE@PAVWindow@@K@Z -??0CheckBox@@QAE@PAVWindow@@ABVResId@@@Z -??0CheckBox@@QAE@PAVWindow@@K@Z -??0HelpButton@@QAE@PAVWindow@@ABVResId@@@Z -??0HelpButton@@QAE@PAVWindow@@K@Z -??0ImageButton@@IAE@G@Z -??0ImageButton@@QAE@PAVWindow@@ABVResId@@@Z -??0ImageButton@@QAE@PAVWindow@@K@Z -??0ImageRadioButton@@QAE@PAVWindow@@ABVResId@@@Z -??0ImageRadioButton@@QAE@PAVWindow@@K@Z -??0OKButton@@QAE@PAVWindow@@ABVResId@@@Z -??0OKButton@@QAE@PAVWindow@@K@Z -??0PushButton@@IAE@G@Z -??0PushButton@@QAE@PAVWindow@@ABVResId@@@Z -??0PushButton@@QAE@PAVWindow@@K@Z -??0RadioButton@@QAE@PAVWindow@@ABVResId@@@Z -??0RadioButton@@QAE@PAVWindow@@K@Z -??0TriStateBox@@QAE@PAVWindow@@ABVResId@@@Z -??0TriStateBox@@QAE@PAVWindow@@K@Z -??1ImageButton@@UAE@XZ -??1ImageRadioButton@@UAE@XZ -??1PushButton@@UAE@XZ -??1RadioButton@@UAE@XZ -??1TriStateBox@@UAE@XZ -??_7Button@@6B@ -??_7CancelButton@@6B@ -??_7CheckBox@@6B@ -??_7HelpButton@@6B@ -??_7ImageButton@@6B@ -??_7ImageRadioButton@@6B@ -??_7OKButton@@6B@ -??_7PushButton@@6B@ -??_7RadioButton@@6B@ -??_7TriStateBox@@6B@ -??_GButton@@UAEPAXI@Z -??_GCancelButton@@UAEPAXI@Z -??_GCheckBox@@UAEPAXI@Z -??_GHelpButton@@UAEPAXI@Z -??_GImageButton@@UAEPAXI@Z -??_GImageRadioButton@@UAEPAXI@Z -??_GOKButton@@UAEPAXI@Z -??_GPushButton@@UAEPAXI@Z -??_GRadioButton@@UAEPAXI@Z -??_GTriStateBox@@UAEPAXI@Z -?CalcMinimumSize@CheckBox@@QBE?AVSize@@J@Z -?CalcMinimumSize@PushButton@@QBE?AVSize@@J@Z -?CalcMinimumSize@RadioButton@@QBE?AVSize@@J@Z -?Check@RadioButton@@QAEXE@Z -?Click@Button@@UAEXXZ -?Click@CancelButton@@UAEXXZ -?Click@HelpButton@@UAEXXZ -?Click@OKButton@@UAEXXZ -?DataChanged@CheckBox@@UAEXABVDataChangedEvent@@@Z -?DataChanged@PushButton@@UAEXABVDataChangedEvent@@@Z -?DataChanged@RadioButton@@UAEXABVDataChangedEvent@@@Z -?Draw@CheckBox@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?Draw@PushButton@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?Draw@RadioButton@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?EnableTriState@CheckBox@@QAEXE@Z -?EndSelection@PushButton@@QAEXXZ -?GetBitmap@PushButton@@QBE?AVBitmapEx@@XZ -?GetCheckImage@CheckBox@@SA?AVImage@@ABVAllSettings@@G@Z -?GetFocus@CheckBox@@UAEXXZ -?GetFocus@PushButton@@UAEXXZ -?GetFocus@RadioButton@@UAEXXZ -?GetRadioImage@RadioButton@@SA?AVImage@@ABVAllSettings@@G@Z -?GetStandardHelpText@Button@@SA?AVString@@G@Z -?GetStandardText@Button@@SA?AVString@@G@Z -?ImplCallClick@RadioButton@@QAEXEG@Z -?ImplCheck@CheckBox@@QAEXXZ -?ImplDraw@CheckBox@@AAEXPAVOutputDevice@@KABVPoint@@ABVSize@@2JAAVRectangle@@33@Z -?ImplDraw@RadioButton@@AAEXPAVOutputDevice@@KABVPoint@@ABVSize@@2JAAVRectangle@@33@Z -?ImplDrawCheckBox@CheckBox@@AAEXXZ -?ImplDrawCheckBoxState@CheckBox@@AAEXXZ -?ImplDrawPushButton@PushButton@@IAEXXZ -?ImplDrawPushButtonContent@PushButton@@IAEXPAVOutputDevice@@KABVRectangle@@AAV3@@Z -?ImplDrawPushButtonFrame@PushButton@@SAXPAVWindow@@AAVRectangle@@G@Z -?ImplDrawRadioButton@RadioButton@@AAEXXZ -?ImplDrawRadioButtonState@RadioButton@@AAEXXZ -?ImplGetTextStyle@PushButton@@IBEGXZ -?ImplHitTestPushButton@PushButton@@SAEPAVWindow@@ABVPoint@@G@Z -?ImplInit@CancelButton@@AAEXPAVWindow@@K@Z -?ImplInit@CheckBox@@IAEXPAVWindow@@K@Z -?ImplInit@HelpButton@@AAEXPAVWindow@@K@Z -?ImplInit@OKButton@@AAEXPAVWindow@@K@Z -?ImplInit@PushButton@@IAEXPAVWindow@@K@Z -?ImplInit@RadioButton@@IAEXPAVWindow@@K@Z -?ImplInitData@CheckBox@@AAEXXZ -?ImplInitData@PushButton@@IAEXXZ -?ImplInitData@RadioButton@@AAEXXZ -?ImplInitSettings@CheckBox@@AAEXEEE@Z -?ImplInitSettings@PushButton@@IAEXEEE@Z -?ImplInitSettings@RadioButton@@AAEXEEE@Z -?ImplInitStyle@CheckBox@@AAEKPBVWindow@@K@Z -?ImplInitStyle@PushButton@@IAEKPBVWindow@@K@Z -?ImplInitStyle@RadioButton@@AAEKPBVWindow@@K@Z -?ImplIsDefButton@PushButton@@QBEEXZ -?ImplLoadRes@CheckBox@@IAEXABVResId@@@Z -?ImplLoadRes@RadioButton@@IAEXABVResId@@@Z -?ImplSetDefButton@PushButton@@QAEXE@Z -?ImplUncheckAllOther@RadioButton@@AAEXXZ -?KeyInput@CheckBox@@UAEXABVKeyEvent@@@Z -?KeyInput@PushButton@@UAEXABVKeyEvent@@@Z -?KeyInput@RadioButton@@UAEXABVKeyEvent@@@Z -?KeyUp@CheckBox@@UAEXABVKeyEvent@@@Z -?KeyUp@PushButton@@UAEXABVKeyEvent@@@Z -?KeyUp@RadioButton@@UAEXABVKeyEvent@@@Z -?LoseFocus@CheckBox@@UAEXXZ -?LoseFocus@PushButton@@UAEXXZ -?LoseFocus@RadioButton@@UAEXXZ -?MouseButtonDown@CheckBox@@UAEXABVMouseEvent@@@Z -?MouseButtonDown@PushButton@@UAEXABVMouseEvent@@@Z -?MouseButtonDown@RadioButton@@UAEXABVMouseEvent@@@Z -?Paint@CheckBox@@UAEXABVRectangle@@@Z -?Paint@PushButton@@UAEXABVRectangle@@@Z -?Paint@RadioButton@@UAEXABVRectangle@@@Z -?Resize@CheckBox@@UAEXXZ -?Resize@PushButton@@UAEXXZ -?Resize@RadioButton@@UAEXXZ -?SetBitmap@PushButton@@QAEXABVBitmapEx@@@Z -?SetDropDown@PushButton@@QAEXG@Z -?SetImage@PushButton@@QAEXABVImage@@@Z -?SetImage@RadioButton@@QAEXABVImage@@@Z -?SetImageAlign@PushButton@@QAEXW4ImageAlign@@@Z -?SetPressed@PushButton@@QAEXE@Z -?SetState@CheckBox@@QAEXW4TriState@@@Z -?SetState@PushButton@@QAEXW4TriState@@@Z -?SetState@RadioButton@@QAEXE@Z -?SetSymbol@PushButton@@QAEXG@Z -?StateChanged@CheckBox@@UAEXG@Z -?StateChanged@PushButton@@UAEXG@Z -?StateChanged@RadioButton@@UAEXG@Z -?Toggle@CheckBox@@UAEXXZ -?Toggle@PushButton@@UAEXXZ -?Toggle@RadioButton@@UAEXXZ -?Tracking@CheckBox@@UAEXABVTrackingEvent@@@Z -?Tracking@PushButton@@UAEXABVTrackingEvent@@@Z -?Tracking@RadioButton@@UAEXABVTrackingEvent@@@Z -?UserDraw@PushButton@@UAEXABVUserDrawEvent@@@Z -??0Control@@IAE@G@Z -??0Control@@QAE@PAVWindow@@ABVResId@@@Z -??0Control@@QAE@PAVWindow@@K@Z -??_7Control@@6B@ -??_GControl@@UAEPAXI@Z -?GetFocus@Control@@UAEXXZ -?ImplInitData@Control@@AAEXXZ -?LoseFocus@Control@@UAEXXZ -?Notify@Control@@UAEJAAVNotifyEvent@@@Z -??0ComboBox@@IAE@G@Z -??0ComboBox@@QAE@PAVWindow@@ABVResId@@@Z -??0ComboBox@@QAE@PAVWindow@@K@Z -??1ComboBox@@UAE@XZ -??_7ComboBox@@6BControl@@@ -??_7ComboBox@@6BDragAndDropClient@unohelper@vcl@@@ -??_GComboBox@@UAEPAXI@Z -?CalcAdjustedSize@ComboBox@@QBE?AVSize@@ABV2@@Z -?CalcMinimumSize@ComboBox@@QBE?AVSize@@XZ -?CalcSize@ComboBox@@QBE?AVSize@@GG@Z -?CalcWindowSizePixel@ComboBox@@QBEJG@Z -?Clear@ComboBox@@QAEXXZ -?DataChanged@ComboBox@@UAEXABVDataChangedEvent@@@Z -?DoubleClick@ComboBox@@UAEXXZ -?Draw@ComboBox@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?DrawEntry@ComboBox@@QAEXABVUserDrawEvent@@EEE@Z -?EnableAutoSize@ComboBox@@QAEXE@Z -?EnableAutocomplete@ComboBox@@QAEXEE@Z -?EnableMultiSelection@ComboBox@@QAEXE@Z -?EnableUserDraw@ComboBox@@QAEXE@Z -?GetDropDownLineCount@ComboBox@@QBEGXZ -?GetEntry@ComboBox@@QBE?AVString@@G@Z -?GetEntryCount@ComboBox@@QBEGXZ -?GetEntryData@ComboBox@@QBEPAXG@Z -?GetEntryPos@ComboBox@@QBEGABVString@@@Z -?GetEntryPos@ComboBox@@QBEGPBX@Z -?GetMRUEntries@ComboBox@@QBE?AVString@@G@Z -?GetMaxMRUCount@ComboBox@@QBEGXZ -?GetMaxVisColumnsAndLines@ComboBox@@QBEXAAG0@Z -?GetSeparatorPos@ComboBox@@QBEGXZ -?GetUserItemSize@ComboBox@@QBEABVSize@@XZ -?ImplAutocompleteHdl@ComboBox@@AAEJPAVEdit@@@Z -?ImplCalcEditHeight@ComboBox@@IAEXXZ -?ImplCancelHdl@ComboBox@@AAEJPAX@Z -?ImplClickBtnHdl@ComboBox@@AAEJPAX@Z -?ImplDoubleClickHdl@ComboBox@@AAEJPAX@Z -?ImplInit@ComboBox@@IAEXPAVWindow@@K@Z -?ImplInitData@ComboBox@@AAEXXZ -?ImplInitStyle@ComboBox@@IAEKK@Z -?ImplLoadRes@ComboBox@@IAEXABVResId@@@Z -?ImplPopupModeEndHdl@ComboBox@@AAEJPAX@Z -?ImplSelectHdl@ComboBox@@AAEJPAX@Z -?ImplSelectionChangedHdl@ComboBox@@AAEJPAX@Z -?ImplUpdateFloatSelection@ComboBox@@AAEXXZ -?ImplUserDrawHdl@ComboBox@@AAEJPAVUserDrawEvent@@@Z -?InsertEntry@ComboBox@@QAEGABVString@@ABVImage@@G@Z -?InsertEntry@ComboBox@@QAEGABVString@@G@Z -?IsAutocompleteEnabled@ComboBox@@QBEEXZ -?IsInDropDown@ComboBox@@QBEEXZ -?IsMultiSelectionEnabled@ComboBox@@QBEEXZ -?IsTravelSelect@ComboBox@@QBEEXZ -?IsUserDrawEnabled@ComboBox@@QBEEXZ -?LinkStubImplAutocompleteHdl@ComboBox@@CAJPAX0@Z -?LinkStubImplCancelHdl@ComboBox@@CAJPAX0@Z -?LinkStubImplClickBtnHdl@ComboBox@@CAJPAX0@Z -?LinkStubImplDoubleClickHdl@ComboBox@@CAJPAX0@Z -?LinkStubImplPopupModeEndHdl@ComboBox@@CAJPAX0@Z -?LinkStubImplSelectHdl@ComboBox@@CAJPAX0@Z -?LinkStubImplSelectionChangedHdl@ComboBox@@CAJPAX0@Z -?LinkStubImplUserDrawHdl@ComboBox@@CAJPAX0@Z -?Modify@ComboBox@@UAEXXZ -?Notify@ComboBox@@UAEJAAVNotifyEvent@@@Z -?PreNotify@ComboBox@@UAEJAAVNotifyEvent@@@Z -?RemoveEntry@ComboBox@@QAEXABVString@@@Z -?RemoveEntry@ComboBox@@QAEXG@Z -?Resize@ComboBox@@UAEXXZ -?Select@ComboBox@@UAEXXZ -?SetDropDownLineCount@ComboBox@@QAEXG@Z -?SetEntryData@ComboBox@@QAEXGPAX@Z -?SetMRUEntries@ComboBox@@QAEXABVString@@G@Z -?SetMaxMRUCount@ComboBox@@QAEXG@Z -?SetPosSizePixel@ComboBox@@UAEXJJJJG@Z -?SetSeparatorPos@ComboBox@@QAEXG@Z -?SetSeparatorPos@ComboBox@@QAEXXZ -?SetText@ComboBox@@UAEXABVString@@@Z -?SetText@ComboBox@@UAEXABVString@@ABVSelection@@@Z -?SetUserItemSize@ComboBox@@QAEXABVSize@@@Z -?StateChanged@ComboBox@@UAEXG@Z -?UserDraw@ComboBox@@UAEXABVUserDrawEvent@@@Z -??0Edit@@IAE@G@Z -??0Edit@@QAE@PAVWindow@@ABVResId@@@Z -??0Edit@@QAE@PAVWindow@@K@Z -??0ImplSubEdit@@QAE@PAVEdit@@K@Z -??0Impl_IMEInfos@@QAE@G@Z -??0TextDataObject@@QAE@ABVString@@@Z -??1Edit@@UAE@XZ -??1Impl_IMEInfos@@QAE@XZ -??1TextDataObject@@UAE@XZ -??_7DragAndDropClient@unohelper@vcl@@6B@ -??_7Edit@@6BControl@@@ -??_7Edit@@6BDragAndDropClient@unohelper@vcl@@@ -??_7ImplSubEdit@@6BControl@@@ -??_7ImplSubEdit@@6BDragAndDropClient@unohelper@vcl@@@ -??_7OGuard@vos@@6B@ -??_7TextDataObject@@6BOWeakObject@cppu@@@ -??_7TextDataObject@@6BXTransferable@datatransfer@star@sun@com@@@ -??_7XTransferable@datatransfer@star@sun@com@@6B@ -??_C@_0CI@MABO@com?4sun?4star?4datatransfer?4XTrans@ -??_GEdit@@UAEPAXI@Z -??_GImplSubEdit@@UAEPAXI@Z -??_GOGuard@vos@@UAEPAXI@Z -??_GTextDataObject@@UAEPAXI@Z -?CalcMinimumSize@Edit@@QBE?AVSize@@XZ -?CalcSize@Edit@@QBE?AVSize@@G@Z -?ClearModifyFlag@Edit@@QAEXXZ -?Command@Edit@@UAEXABVCommandEvent@@@Z -?Copy@Edit@@QAEXXZ -?CopyAttribs@Impl_IMEInfos@@QAEXPBGG@Z -?CreatePopupMenu@Edit@@SAPAVPopupMenu@@XZ -?Cut@Edit@@QAEXXZ -?DataChanged@Edit@@UAEXABVDataChangedEvent@@@Z -?DeletePopupMenu@Edit@@SAXPAVPopupMenu@@@Z -?DeleteSelected@Edit@@QAEXXZ -?DestroyAttribs@Impl_IMEInfos@@QAEXXZ -?Draw@Edit@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?EnableUpdateData@Edit@@QAEXK@Z -?GetFocus@Edit@@UAEXXZ -?GetGetSpecialCharsFunction@Edit@@SAP6A?AVString@@PAVWindow@@ABVFont@@@ZXZ -?GetMaxVisChars@Edit@@QBEGXZ -?GetSelected@Edit@@QBE?AVString@@XZ -?GetSelection@Edit@@QBEABVSelection@@XZ -?GetText@Edit@@UBE?AVString@@XZ -?ImplAlign@Edit@@AAEXXZ -?ImplAlignAndPaint@Edit@@AAEXGJ@Z -?ImplClearBackground@Edit@@AAEXJJ@Z -?ImplDelete@Edit@@AAEXABVSelection@@EE@Z -?ImplGetCharPos@Edit@@AAEGABVPoint@@@Z -?ImplGetText@Edit@@ABE?AVString@@XZ -?ImplHandleKeyEvent@Edit@@AAEEABVKeyEvent@@@Z -?ImplHideDDCursor@Edit@@AAEXXZ -?ImplInit@Edit@@IAEXPAVWindow@@K@Z -?ImplInitData@Edit@@AAEXXZ -?ImplInitSettings@Edit@@IAEXEEE@Z -?ImplInitStyle@Edit@@IAEKK@Z -?ImplInsertText@Edit@@AAEXABVString@@PBVSelection@@@Z -?ImplLoadRes@Edit@@IAEXABVResId@@@Z -?ImplModified@Edit@@AAEXXZ -?ImplRepaint@Edit@@AAEXGG@Z -?ImplSetCursorPos@Edit@@AAEXGE@Z -?ImplSetSelection@Edit@@IAEXABVSelection@@E@Z -?ImplSetText@Edit@@AAEXABVString@@PBVSelection@@@Z -?ImplShowCursor@Edit@@AAEXE@Z -?ImplShowDDCursor@Edit@@AAEXXZ -?ImplUpdateDataHdl@Edit@@AAEJPAVTimer@@@Z -?IsCharInput@Edit@@SAEABVKeyEvent@@@Z -?IsInsertMode@Edit@@QBEEXZ -?KeyInput@Edit@@UAEXABVKeyEvent@@@Z -?LinkStubImplUpdateDataHdl@Edit@@CAJPAX0@Z -?LoseFocus@Edit@@UAEXXZ -?Modify@Edit@@UAEXXZ -?Modify@ImplSubEdit@@UAEXXZ -?MouseButtonDown@Edit@@UAEXABVMouseEvent@@@Z -?MouseButtonUp@Edit@@UAEXABVMouseEvent@@@Z -?Paint@Edit@@UAEXABVRectangle@@@Z -?Paste@Edit@@QAEXXZ -?ReplaceSelected@Edit@@QAEXABVString@@@Z -?Resize@Edit@@UAEXXZ -?SetAutocompleteHdl@Edit@@QAEXABVLink@@@Z -?SetEchoChar@Edit@@QAEXG@Z -?SetGetSpecialCharsFunction@Edit@@SAXP6A?AVString@@PAVWindow@@ABVFont@@@Z@Z -?SetInsertMode@Edit@@QAEXE@Z -?SetMaxTextLen@Edit@@QAEXG@Z -?SetModifyFlag@Edit@@QAEXXZ -?SetReadOnly@Edit@@QAEXE@Z -?SetSelection@Edit@@QAEXABVSelection@@@Z -?SetSubEdit@Edit@@QAEXPAV1@@Z -?SetText@Edit@@UAEXABVString@@@Z -?SetText@Edit@@UAEXABVString@@ABVSelection@@@Z -?StateChanged@Edit@@UAEXG@Z -?Tracking@Edit@@UAEXABVTrackingEvent@@@Z -?Undo@Edit@@QAEXXZ -?UpdateData@Edit@@UAEXXZ -?acquire@TextDataObject@@UAAXXZ -?acquire@TextDataObject@@W3AAXXZ -?dragDropEnd@Edit@@MAEXABUDragSourceDropEvent@dnd@datatransfer@star@sun@com@@@Z -?dragEnter@Edit@@MAEXABUDropTargetDragEnterEvent@dnd@datatransfer@star@sun@com@@@Z -?dragExit@Edit@@MAEXABUDropTargetEvent@dnd@datatransfer@star@sun@com@@@Z -?dragGestureRecognized@Edit@@MAEXABUDragGestureEvent@dnd@datatransfer@star@sun@com@@@Z -?dragOver@Edit@@MAEXABUDropTargetDragEvent@dnd@datatransfer@star@sun@com@@@Z -?drop@Edit@@MAEXABUDropTargetDropEvent@dnd@datatransfer@star@sun@com@@@Z -?getTransferData@TextDataObject@@UAA?AVAny@uno@star@sun@com@@ABUDataFlavor@datatransfer@456@@Z -?getTransferDataFlavors@TextDataObject@@UAA?AV?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@uno@star@sun@com@@XZ -?isDataFlavorSupported@TextDataObject@@UAAEABUDataFlavor@datatransfer@star@sun@com@@@Z -?queryInterface@TextDataObject@@UAA?AVAny@uno@star@sun@com@@ABVType@3456@@Z -?queryInterface@TextDataObject@@W3AA?AVAny@uno@star@sun@com@@ABVType@3456@@Z -?release@TextDataObject@@UAAXXZ -?release@TextDataObject@@W3AAXXZ -?s_pType_com_sun_star_datatransfer_XTransferable@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTransferable@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??0CurrencyBox@@QAE@PAVWindow@@ABVResId@@@Z -??0CurrencyBox@@QAE@PAVWindow@@K@Z -??0CurrencyField@@QAE@PAVWindow@@ABVResId@@@Z -??0CurrencyField@@QAE@PAVWindow@@K@Z -??0CurrencyFormatter@@IAE@XZ -??0FormatterBase@@QAE@PAVEdit@@@Z -??0MetricBox@@QAE@PAVWindow@@ABVResId@@@Z -??0MetricBox@@QAE@PAVWindow@@K@Z -??0MetricField@@QAE@PAVWindow@@ABVResId@@@Z -??0MetricField@@QAE@PAVWindow@@K@Z -??0MetricFormatter@@IAE@XZ -??0NumericBox@@QAE@PAVWindow@@ABVResId@@@Z -??0NumericBox@@QAE@PAVWindow@@K@Z -??0NumericField@@QAE@PAVWindow@@ABVResId@@@Z -??0NumericField@@QAE@PAVWindow@@K@Z -??0NumericFormatter@@IAE@XZ -??1CurrencyBox@@UAE@XZ -??1CurrencyField@@UAE@XZ -??1CurrencyFormatter@@QAE@XZ -??1FormatterBase@@QAE@XZ -??1MetricBox@@UAE@XZ -??1MetricField@@UAE@XZ -??1MetricFormatter@@QAE@XZ -??1NumericBox@@UAE@XZ -??1NumericField@@UAE@XZ -??1NumericFormatter@@QAE@XZ -??_7CurrencyBox@@6B@ -??_7CurrencyBox@@6BControl@@@ -??_7CurrencyBox@@6BDragAndDropClient@unohelper@vcl@@@ -??_7CurrencyField@@6B@ -??_7CurrencyField@@6BControl@@@ -??_7CurrencyField@@6BDragAndDropClient@unohelper@vcl@@@ -??_7CurrencyFormatter@@6B@ -??_7FormatterBase@@6B@ -??_7MetricBox@@6B@ -??_7MetricBox@@6BControl@@@ -??_7MetricBox@@6BDragAndDropClient@unohelper@vcl@@@ -??_7MetricField@@6B@ -??_7MetricField@@6BControl@@@ -??_7MetricField@@6BDragAndDropClient@unohelper@vcl@@@ -??_7MetricFormatter@@6B@ -??_7NumericBox@@6B@ -??_7NumericBox@@6BControl@@@ -??_7NumericBox@@6BDragAndDropClient@unohelper@vcl@@@ -??_7NumericField@@6B@ -??_7NumericField@@6BControl@@@ -??_7NumericField@@6BDragAndDropClient@unohelper@vcl@@@ -??_7NumericFormatter@@6B@ -??_GCurrencyBox@@UAEPAXI@Z -??_GCurrencyField@@UAEPAXI@Z -??_GMetricBox@@UAEPAXI@Z -??_GMetricField@@UAEPAXI@Z -??_GNumericBox@@UAEPAXI@Z -??_GNumericField@@UAEPAXI@Z -?ConvertDoubleValue@MetricField@@SANNGW4FieldUnit@@W4MapUnit@@@Z -?ConvertDoubleValue@MetricField@@SANNGW4MapUnit@@W4FieldUnit@@@Z -?ConvertDoubleValue@MetricField@@SANNJGW4FieldUnit@@0@Z -?ConvertToFraction@NumericFormatter@@QAE?AVFraction@@J@Z -?ConvertToLong@NumericFormatter@@QAEJABVFraction@@@Z -?ConvertValue@MetricField@@SAJJGW4FieldUnit@@W4MapUnit@@@Z -?ConvertValue@MetricField@@SAJJGW4MapUnit@@W4FieldUnit@@@Z -?ConvertValue@MetricField@@SAJJJGW4FieldUnit@@0@Z -?CreateFieldText@CurrencyFormatter@@MBE?AVString@@J@Z -?CreateFieldText@MetricFormatter@@MBE?AVString@@J@Z -?CreateFieldText@NumericFormatter@@MBE?AVString@@J@Z -?CustomConvert@MetricBox@@UAEXXZ -?CustomConvert@MetricField@@UAEXXZ -?DataChanged@CurrencyBox@@UAEXABVDataChangedEvent@@@Z -?DataChanged@CurrencyField@@UAEXABVDataChangedEvent@@@Z -?DataChanged@MetricBox@@UAEXABVDataChangedEvent@@@Z -?DataChanged@MetricField@@UAEXABVDataChangedEvent@@@Z -?DataChanged@NumericBox@@UAEXABVDataChangedEvent@@@Z -?DataChanged@NumericField@@UAEXABVDataChangedEvent@@@Z -?Denormalize@NumericFormatter@@QBEJJ@Z -?Down@CurrencyField@@UAEXXZ -?Down@MetricField@@UAEXXZ -?Down@NumericField@@UAEXXZ -?FieldDown@NumericFormatter@@IAEXXZ -?FieldFirst@NumericFormatter@@IAEXXZ -?FieldLast@NumericFormatter@@IAEXXZ -?FieldUp@NumericFormatter@@IAEXXZ -?First@CurrencyField@@UAEXXZ -?First@MetricField@@UAEXXZ -?First@NumericField@@UAEXXZ -?GetBaseValue@MetricFormatter@@QBEJW4FieldUnit@@@Z -?GetCorrectedValue@MetricFormatter@@QBEJW4FieldUnit@@@Z -?GetDecimalDigits@NumericFormatter@@QBEGXZ -?GetDefaultUnit@MetricField@@SA?AW4FieldUnit@@XZ -?GetFieldSettings@FormatterBase@@QBEABVAllSettings@@XZ -?GetFirst@MetricField@@QBEJW4FieldUnit@@@Z -?GetInternational@FormatterBase@@QBEABVInternational@@XZ -?GetLast@MetricField@@QBEJW4FieldUnit@@@Z -?GetMax@MetricFormatter@@QBEJW4FieldUnit@@@Z -?GetMin@MetricFormatter@@QBEJW4FieldUnit@@@Z -?GetValue@CurrencyBox@@QBEJG@Z -?GetValue@CurrencyBox@@UBEJXZ -?GetValue@CurrencyFormatter@@UBEJXZ -?GetValue@MetricBox@@QBEJGW4FieldUnit@@@Z -?GetValue@MetricBox@@UBEJW4FieldUnit@@@Z -?GetValue@MetricBox@@UBEJXZ -?GetValue@MetricFormatter@@UBEJW4FieldUnit@@@Z -?GetValue@MetricFormatter@@UBEJXZ -?GetValue@NumericBox@@QBEJG@Z -?GetValue@NumericBox@@UBEJXZ -?GetValue@NumericFormatter@@UBEJXZ -?GetValuePos@CurrencyBox@@QBEGJ@Z -?GetValuePos@MetricBox@@QBEGJW4FieldUnit@@@Z -?GetValuePos@NumericBox@@QBEGJ@Z -?ImplCurrencyReformat@CurrencyFormatter@@IAEEABVString@@AAV2@@Z -?ImplInit@NumericFormatter@@AAEXXZ -?ImplLoadRes@CurrencyField@@IAEXABVResId@@@Z -?ImplLoadRes@MetricField@@IAEXABVResId@@@Z -?ImplLoadRes@MetricFormatter@@IAEXABVResId@@@Z -?ImplLoadRes@NumericField@@IAEXABVResId@@@Z -?ImplLoadRes@NumericFormatter@@IAEXABVResId@@@Z -?ImplMetricReformat@MetricFormatter@@IAEEABVString@@AANAAV2@@Z -?ImplNewFieldValue@NumericFormatter@@IAEXJ@Z -?ImplNumericReformat@NumericFormatter@@IAEEABVString@@AANAAV2@@Z -?ImplSetText@FormatterBase@@IAEXABVString@@PAVSelection@@@Z -?ImplSetUserValue@NumericFormatter@@IAEXJPAVSelection@@@Z -?InsertValue@CurrencyBox@@QAEXJG@Z -?InsertValue@MetricBox@@QAEXJW4FieldUnit@@G@Z -?InsertValue@NumericBox@@QAEXJG@Z -?IsEmptyFieldValue@FormatterBase@@QBEEXZ -?IsValueModified@NumericFormatter@@QBEEXZ -?Last@CurrencyField@@UAEXXZ -?Last@MetricField@@UAEXXZ -?Last@NumericField@@UAEXXZ -?Modify@CurrencyBox@@UAEXXZ -?Modify@CurrencyField@@UAEXXZ -?Modify@MetricBox@@UAEXXZ -?Modify@MetricField@@UAEXXZ -?Modify@NumericBox@@UAEXXZ -?Modify@NumericField@@UAEXXZ -?Normalize@NumericFormatter@@QBEJJ@Z -?Notify@CurrencyBox@@UAEJAAVNotifyEvent@@@Z -?Notify@CurrencyField@@UAEJAAVNotifyEvent@@@Z -?Notify@MetricBox@@UAEJAAVNotifyEvent@@@Z -?Notify@MetricField@@UAEJAAVNotifyEvent@@@Z -?Notify@NumericBox@@UAEJAAVNotifyEvent@@@Z -?Notify@NumericField@@UAEJAAVNotifyEvent@@@Z -?PreNotify@CurrencyBox@@UAEJAAVNotifyEvent@@@Z -?PreNotify@CurrencyField@@UAEJAAVNotifyEvent@@@Z -?PreNotify@MetricBox@@UAEJAAVNotifyEvent@@@Z -?PreNotify@MetricField@@UAEJAAVNotifyEvent@@@Z -?PreNotify@NumericBox@@UAEJAAVNotifyEvent@@@Z -?PreNotify@NumericField@@UAEJAAVNotifyEvent@@@Z -?Reformat@CurrencyFormatter@@UAEXXZ -?Reformat@FormatterBase@@UAEXXZ -?Reformat@MetricFormatter@@UAEXXZ -?Reformat@NumericFormatter@@UAEXXZ -?ReformatAll@CurrencyBox@@UAEXXZ -?ReformatAll@FormatterBase@@UAEXXZ -?ReformatAll@MetricBox@@UAEXXZ -?ReformatAll@NumericBox@@UAEXXZ -?RemoveValue@CurrencyBox@@QAEXJ@Z -?RemoveValue@MetricBox@@QAEXJW4FieldUnit@@@Z -?RemoveValue@NumericBox@@QAEXJ@Z -?SetBaseValue@MetricFormatter@@QAEXJW4FieldUnit@@@Z -?SetCustomUnitText@MetricFormatter@@QAEXABVString@@@Z -?SetDecimalDigits@NumericFormatter@@QAEXG@Z -?SetDefaultUnit@MetricField@@SAXW4FieldUnit@@@Z -?SetEmptyFieldValue@FormatterBase@@QAEXXZ -?SetFieldText@FormatterBase@@IAEXABVString@@E@Z -?SetFirst@MetricField@@QAEXJW4FieldUnit@@@Z -?SetInternational@FormatterBase@@QAEXABVInternational@@@Z -?SetLast@MetricField@@QAEXJW4FieldUnit@@@Z -?SetMax@MetricFormatter@@QAEXJW4FieldUnit@@@Z -?SetMax@NumericFormatter@@QAEXJ@Z -?SetMin@MetricFormatter@@QAEXJW4FieldUnit@@@Z -?SetMin@NumericFormatter@@QAEXJ@Z -?SetStrictFormat@FormatterBase@@QAEXE@Z -?SetUnit@MetricFormatter@@QAEXW4FieldUnit@@@Z -?SetUserValue@MetricFormatter@@QAEXJW4FieldUnit@@@Z -?SetUserValue@NumericFormatter@@QAEXJ@Z -?SetValue@CurrencyFormatter@@UAEXJ@Z -?SetValue@MetricFormatter@@UAEXJ@Z -?SetValue@MetricFormatter@@UAEXJW4FieldUnit@@@Z -?SetValue@NumericFormatter@@UAEXJ@Z -?Up@CurrencyField@@UAEXXZ -?Up@MetricField@@UAEXXZ -?Up@NumericField@@UAEXXZ -_real@8@4001a000000000000000 -??0DateBox@@QAE@PAVWindow@@ABVResId@@@Z -??0DateBox@@QAE@PAVWindow@@K@Z -??0DateField@@QAE@PAVWindow@@ABVResId@@@Z -??0DateField@@QAE@PAVWindow@@K@Z -??0DateFormatter@@IAE@XZ -??0PatternBox@@QAE@PAVWindow@@ABVResId@@@Z -??0PatternBox@@QAE@PAVWindow@@K@Z -??0PatternField@@QAE@PAVWindow@@ABVResId@@@Z -??0PatternField@@QAE@PAVWindow@@K@Z -??0PatternFormatter@@IAE@XZ -??0TimeBox@@QAE@PAVWindow@@ABVResId@@@Z -??0TimeBox@@QAE@PAVWindow@@K@Z -??0TimeField@@QAE@PAVWindow@@ABVResId@@@Z -??0TimeField@@QAE@PAVWindow@@K@Z -??0TimeFormatter@@IAE@XZ -??1DateBox@@UAE@XZ -??1DateField@@UAE@XZ -??1DateFormatter@@QAE@XZ -??1PatternBox@@UAE@XZ -??1PatternField@@UAE@XZ -??1PatternFormatter@@QAE@XZ -??1TimeBox@@UAE@XZ -??1TimeField@@UAE@XZ -??1TimeFormatter@@QAE@XZ -??_7DateBox@@6B@ -??_7DateBox@@6BControl@@@ -??_7DateBox@@6BDragAndDropClient@unohelper@vcl@@@ -??_7DateField@@6B@ -??_7DateField@@6BControl@@@ -??_7DateField@@6BDragAndDropClient@unohelper@vcl@@@ -??_7DateFormatter@@6B@ -??_7PatternBox@@6B@ -??_7PatternBox@@6BControl@@@ -??_7PatternBox@@6BDragAndDropClient@unohelper@vcl@@@ -??_7PatternField@@6B@ -??_7PatternField@@6BControl@@@ -??_7PatternField@@6BDragAndDropClient@unohelper@vcl@@@ -??_7PatternFormatter@@6B@ -??_7TimeBox@@6B@ -??_7TimeBox@@6BControl@@@ -??_7TimeBox@@6BDragAndDropClient@unohelper@vcl@@@ -??_7TimeField@@6B@ -??_7TimeField@@6BControl@@@ -??_7TimeField@@6BDragAndDropClient@unohelper@vcl@@@ -??_7TimeFormatter@@6B@ -??_GDateBox@@UAEPAXI@Z -??_GDateField@@UAEPAXI@Z -??_GPatternBox@@UAEPAXI@Z -??_GPatternField@@UAEPAXI@Z -??_GTimeBox@@UAEPAXI@Z -??_GTimeField@@UAEPAXI@Z -?CreateLocale@@YA?AULocale@lang@star@sun@com@@ABVInternational@@@Z -?DataChanged@DateBox@@UAEXABVDataChangedEvent@@@Z -?DataChanged@DateField@@UAEXABVDataChangedEvent@@@Z -?DataChanged@TimeBox@@UAEXABVDataChangedEvent@@@Z -?DataChanged@TimeField@@UAEXABVDataChangedEvent@@@Z -?Down@DateField@@UAEXXZ -?Down@TimeField@@UAEXXZ -?ExpandCentury@DateFormatter@@SAXAAVDate@@@Z -?ExpandCentury@DateFormatter@@SAXAAVDate@@G@Z -?First@DateField@@UAEXXZ -?First@TimeField@@UAEXXZ -?GetDate@DateBox@@QBE?AVDate@@G@Z -?GetDate@DateFormatter@@QBE?AVDate@@XZ -?GetDatePos@DateBox@@QBEGABVDate@@@Z -?GetRealDate@DateFormatter@@QBE?AVDate@@XZ -?GetRealTime@TimeFormatter@@QBE?AVTime@@XZ -?GetString@PatternBox@@QBE?AVString@@G@Z -?GetString@PatternFormatter@@QBE?AVString@@XZ -?GetStringPos@PatternBox@@QBEGABVString@@@Z -?GetTime@TimeBox@@QBE?AVTime@@G@Z -?GetTime@TimeFormatter@@QBE?AVTime@@XZ -?GetTimePos@TimeBox@@QBEGABVTime@@@Z -?ImplDateReformat@DateFormatter@@IAEEABVString@@AAV2@ABVAllSettings@@@Z -?ImplDateSpinArea@DateField@@IAEXE@Z -?ImplGetCharClass@@YA?AV?$Reference@VXCharacterClassification@i18n@star@sun@com@@@uno@star@sun@com@@XZ -?ImplGetDateAsText@DateFormatter@@IBE?AVString@@ABVDate@@ABVAllSettings@@@Z -?ImplInit@DateFormatter@@AAEXXZ -?ImplInit@TimeFormatter@@AAEXXZ -?ImplLoadRes@DateField@@IAEXABVResId@@@Z -?ImplLoadRes@DateFormatter@@IAEXABVResId@@@Z -?ImplLoadRes@PatternFormatter@@IAEXABVResId@@@Z -?ImplLoadRes@TimeField@@IAEXABVResId@@@Z -?ImplLoadRes@TimeFormatter@@IAEXABVResId@@@Z -?ImplNewFieldValue@DateFormatter@@IAEXABVDate@@@Z -?ImplNewFieldValue@TimeFormatter@@IAEXABVTime@@@Z -?ImplSetMask@PatternFormatter@@IAEXABVByteString@@ABVString@@@Z -?ImplSetUserDate@DateFormatter@@IAEXABVDate@@PAVSelection@@@Z -?ImplSetUserTime@TimeFormatter@@IAEXABVTime@@PAVSelection@@@Z -?ImplTimeReformat@TimeFormatter@@IAEEABVString@@AAV2@@Z -?ImplTimeSpinArea@TimeField@@IAEXE@Z -?InsertDate@DateBox@@QAEXABVDate@@G@Z -?InsertString@PatternBox@@QAEXABVString@@G@Z -?InsertTime@TimeBox@@QAEXABVTime@@G@Z -?IsDateModified@DateFormatter@@QBEEXZ -?IsEmptyDate@DateFormatter@@QBEEXZ -?IsTimeModified@TimeFormatter@@QBEEXZ -?Last@DateField@@UAEXXZ -?Last@TimeField@@UAEXXZ -?Modify@DateBox@@UAEXXZ -?Modify@DateField@@UAEXXZ -?Modify@PatternBox@@UAEXXZ -?Modify@PatternField@@UAEXXZ -?Modify@TimeBox@@UAEXXZ -?Modify@TimeField@@UAEXXZ -?Notify@DateBox@@UAEJAAVNotifyEvent@@@Z -?Notify@DateField@@UAEJAAVNotifyEvent@@@Z -?Notify@PatternBox@@UAEJAAVNotifyEvent@@@Z -?Notify@PatternField@@UAEJAAVNotifyEvent@@@Z -?Notify@TimeBox@@UAEJAAVNotifyEvent@@@Z -?Notify@TimeField@@UAEJAAVNotifyEvent@@@Z -?PreNotify@DateBox@@UAEJAAVNotifyEvent@@@Z -?PreNotify@DateField@@UAEJAAVNotifyEvent@@@Z -?PreNotify@PatternBox@@UAEJAAVNotifyEvent@@@Z -?PreNotify@PatternField@@UAEJAAVNotifyEvent@@@Z -?PreNotify@TimeBox@@UAEJAAVNotifyEvent@@@Z -?PreNotify@TimeField@@UAEJAAVNotifyEvent@@@Z -?Reformat@DateFormatter@@UAEXXZ -?Reformat@PatternFormatter@@UAEXXZ -?Reformat@TimeFormatter@@UAEXXZ -?ReformatAll@DateBox@@UAEXXZ -?ReformatAll@DateFormatter@@UAEXXZ -?ReformatAll@PatternBox@@UAEXXZ -?ReformatAll@TimeBox@@UAEXXZ -?ReformatAll@TimeFormatter@@UAEXXZ -?RemoveDate@DateBox@@QAEXABVDate@@@Z -?RemoveString@PatternBox@@QAEXABVString@@@Z -?RemoveTime@TimeBox@@QAEXABVTime@@@Z -?SelectFixedFont@PatternFormatter@@QAEXXZ -?SetDate@DateFormatter@@QAEXABVDate@@@Z -?SetDuration@TimeFormatter@@QAEXE@Z -?SetEmptyDate@DateFormatter@@QAEXXZ -?SetExtFormat@DateField@@QAEXW4ExtDateFieldFormat@@@Z -?SetExtFormat@TimeField@@QAEXW4ExtTimeFieldFormat@@@Z -?SetFormat@TimeFormatter@@QAEXW4TimeFieldFormat@@@Z -?SetLongFormat@DateFormatter@@QAEXE@Z -?SetMask@PatternFormatter@@QAEXABVByteString@@ABVString@@@Z -?SetMax@DateFormatter@@QAEXABVDate@@@Z -?SetMax@TimeFormatter@@QAEXABVTime@@@Z -?SetMin@DateFormatter@@QAEXABVDate@@@Z -?SetMin@TimeFormatter@@QAEXABVTime@@@Z -?SetString@PatternFormatter@@QAEXABVString@@@Z -?SetTime@TimeFormatter@@QAEXABVTime@@@Z -?SetUserDate@DateFormatter@@QAEXABVDate@@@Z -?SetUserTime@TimeFormatter@@QAEXABVTime@@@Z -?Up@DateField@@UAEXXZ -?Up@TimeField@@UAEXXZ -??0FixedBorder@@QAE@PAVWindow@@ABVResId@@@Z -??0FixedBorder@@QAE@PAVWindow@@K@Z -??1FixedBorder@@UAE@XZ -??_7FixedBorder@@6B@ -??_GFixedBorder@@UAEPAXI@Z -?DataChanged@FixedBorder@@UAEXABVDataChangedEvent@@@Z -?Draw@FixedBorder@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?ImplDraw@FixedBorder@@AAEXPAVOutputDevice@@KABVPoint@@ABVSize@@@Z -?ImplInit@FixedBorder@@AAEXPAVWindow@@K@Z -?ImplInitSettings@FixedBorder@@AAEXXZ -?ImplInitStyle@FixedBorder@@AAEKK@Z -?Paint@FixedBorder@@UAEXABVRectangle@@@Z -?Resize@FixedBorder@@UAEXXZ -?SetBorderType@FixedBorder@@QAEXG@Z -?SetTransparent@FixedBorder@@QAEXE@Z -?StateChanged@FixedBorder@@UAEXG@Z -??0FixedBitmap@@QAE@PAVWindow@@ABVResId@@@Z -??0FixedBitmap@@QAE@PAVWindow@@K@Z -??0FixedImage@@QAE@PAVWindow@@ABVResId@@@Z -??0FixedImage@@QAE@PAVWindow@@K@Z -??0FixedLine@@QAE@PAVWindow@@ABVResId@@@Z -??0FixedLine@@QAE@PAVWindow@@K@Z -??0FixedText@@QAE@PAVWindow@@ABVResId@@@Z -??0FixedText@@QAE@PAVWindow@@K@Z -??1FixedBitmap@@UAE@XZ -??1FixedImage@@UAE@XZ -??_7FixedBitmap@@6B@ -??_7FixedImage@@6B@ -??_7FixedLine@@6B@ -??_7FixedText@@6B@ -??_GFixedBitmap@@UAEPAXI@Z -??_GFixedImage@@UAEPAXI@Z -??_GFixedLine@@UAEPAXI@Z -??_GFixedText@@UAEPAXI@Z -?CalcImagePos@FixedImage@@QAE?AVPoint@@ABV2@ABVSize@@1@Z -?CalcMinimumSize@FixedText@@QBE?AVSize@@J@Z -?DataChanged@FixedBitmap@@UAEXABVDataChangedEvent@@@Z -?DataChanged@FixedImage@@UAEXABVDataChangedEvent@@@Z -?DataChanged@FixedLine@@UAEXABVDataChangedEvent@@@Z -?DataChanged@FixedText@@UAEXABVDataChangedEvent@@@Z -?Draw@FixedBitmap@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?Draw@FixedImage@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?Draw@FixedLine@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?Draw@FixedText@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?ImplDraw@FixedBitmap@@AAEXPAVOutputDevice@@KABVPoint@@ABVSize@@@Z -?ImplDraw@FixedImage@@AAEXPAVOutputDevice@@KABVPoint@@ABVSize@@@Z -?ImplDraw@FixedText@@AAEXPAVOutputDevice@@KABVPoint@@ABVSize@@@Z -?ImplGetTextStyle@FixedText@@SAGK@Z -?ImplInit@FixedBitmap@@AAEXPAVWindow@@K@Z -?ImplInit@FixedImage@@AAEXPAVWindow@@K@Z -?ImplInit@FixedLine@@AAEXPAVWindow@@K@Z -?ImplInit@FixedText@@AAEXPAVWindow@@K@Z -?ImplInitSettings@FixedBitmap@@AAEXXZ -?ImplInitSettings@FixedImage@@AAEXXZ -?ImplInitSettings@FixedLine@@AAEXEEE@Z -?ImplInitSettings@FixedText@@AAEXEEE@Z -?ImplInitStyle@FixedBitmap@@AAEKK@Z -?ImplInitStyle@FixedImage@@AAEKK@Z -?ImplInitStyle@FixedLine@@AAEKK@Z -?ImplInitStyle@FixedText@@AAEKK@Z -?ImplLoadRes@FixedBitmap@@IAEXABVResId@@@Z -?ImplLoadRes@FixedImage@@IAEXABVResId@@@Z -?Paint@FixedBitmap@@UAEXABVRectangle@@@Z -?Paint@FixedImage@@UAEXABVRectangle@@@Z -?Paint@FixedLine@@UAEXABVRectangle@@@Z -?Paint@FixedText@@UAEXABVRectangle@@@Z -?Resize@FixedBitmap@@UAEXXZ -?Resize@FixedImage@@UAEXXZ -?Resize@FixedLine@@UAEXXZ -?Resize@FixedText@@UAEXXZ -?SetBitmap@FixedBitmap@@QAEXABVBitmap@@@Z -?SetImage@FixedImage@@QAEXABVImage@@@Z -?StateChanged@FixedBitmap@@UAEXG@Z -?StateChanged@FixedImage@@UAEXG@Z -?StateChanged@FixedLine@@UAEXG@Z -?StateChanged@FixedText@@UAEXG@Z -?UserDraw@FixedImage@@UAEXABVUserDrawEvent@@@Z -??0GroupBox@@QAE@PAVWindow@@ABVResId@@@Z -??0GroupBox@@QAE@PAVWindow@@K@Z -??_7GroupBox@@6B@ -??_GGroupBox@@UAEPAXI@Z -?DataChanged@GroupBox@@UAEXABVDataChangedEvent@@@Z -?Draw@GroupBox@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?ImplDraw@GroupBox@@AAEXPAVOutputDevice@@KABVPoint@@ABVSize@@@Z -?ImplInit@GroupBox@@AAEXPAVWindow@@K@Z -?ImplInitSettings@GroupBox@@AAEXEEE@Z -?ImplInitStyle@GroupBox@@AAEKK@Z -?Paint@GroupBox@@UAEXABVRectangle@@@Z -?Resize@GroupBox@@UAEXXZ -?StateChanged@GroupBox@@UAEXG@Z -??0ImplBtn@@QAE@PAVWindow@@K@Z -??0ImplEntryList@@QAE@XZ -??0ImplListBox@@QAE@PAVWindow@@K@Z -??0ImplListBoxFloatingWindow@@QAE@PAVWindow@@@Z -??0ImplListBoxWindow@@QAE@PAVWindow@@K@Z -??0ImplWin@@QAE@PAVWindow@@K@Z -??1Control@@UAE@XZ -??1ImplBtn@@UAE@XZ -??1ImplEntryList@@QAE@XZ -??1ImplEntryType@@QAE@XZ -??1ImplListBox@@UAE@XZ -??1ImplListBoxFloatingWindow@@UAE@XZ -??1ImplListBoxWindow@@UAE@XZ -??1ImplWin@@UAE@XZ -??1Locale@lang@star@sun@com@@QAE@XZ -??_7ImplBtn@@6B@ -??_7ImplListBox@@6B@ -??_7ImplListBoxFloatingWindow@@6B@ -??_7ImplListBoxWindow@@6B@ -??_7ImplWin@@6B@ -??_GImplBtn@@UAEPAXI@Z -??_GImplListBox@@UAEPAXI@Z -??_GImplListBoxFloatingWindow@@UAEPAXI@Z -??_GImplListBoxWindow@@UAEPAXI@Z -??_GImplWin@@UAEPAXI@Z -?CalcFloatSize@ImplListBoxFloatingWindow@@QAE?AVSize@@XZ -?CalcSize@ImplListBoxWindow@@QBE?AVSize@@G@Z -?Clear@ImplEntryList@@QAEXXZ -?Clear@ImplListBox@@QAEXXZ -?Clear@ImplListBoxWindow@@QAEXXZ -?DataChanged@ImplListBox@@MAEXABVDataChangedEvent@@@Z -?DataChanged@ImplListBoxWindow@@MAEXABVDataChangedEvent@@@Z -?DeselectAll@ImplListBoxWindow@@QAEXXZ -?DrawEntry@ImplListBoxWindow@@QAEXGEEE@Z -?DrawEntry@ImplWin@@QAEXEEE@Z -?FindEntry@ImplEntryList@@QBEGABVString@@W4MatchMode@@GGE@Z -?FindEntry@ImplEntryList@@QBEGPBX@Z -?GetEntryData@ImplEntryList@@QBEPAXG@Z -?GetEntryImage@ImplEntryList@@QBE?AVImage@@G@Z -?GetEntryText@ImplEntryList@@QBE?AVString@@G@Z -?GetFocus@ImplListBox@@MAEXXZ -?GetFocus@ImplListBoxWindow@@MAEXXZ -?GetFocus@ImplWin@@UAEXXZ -?GetMRUEntries@ImplListBox@@QBE?AVString@@G@Z -?GetSelectEntry@ImplEntryList@@QBE?AVString@@G@Z -?GetSelectEntryCount@ImplEntryList@@QBEGXZ -?GetSelectEntryPos@ImplEntryList@@QBEGG@Z -?GetToken@String@@QBE?AV1@GG@Z -?HandleWheelAsCursorTravel@ImplListBox@@QAEEABVCommandEvent@@@Z -?HasEntryImage@ImplEntryList@@QBEEG@Z -?ImplCalcEntryMetrics@ImplListBoxWindow@@IAEXABUImplEntryType@@E@Z -?ImplCalcMetrics@ImplListBoxWindow@@IAEXXZ -?ImplCallSelect@ImplListBoxWindow@@IAEXXZ -?ImplCheckScrollBars@ImplListBox@@IAEXXZ -?ImplGetCollator@@YA?AV?$Reference@VXCollator@i18n@star@sun@com@@@uno@star@sun@com@@AAULocale@lang@345@@Z -?ImplInitDropDownButton@@YAXPAVPushButton@@@Z -?ImplInitFieldSettings@@YAXPAVWindow@@EEE@Z -?ImplInitScrollBars@ImplListBox@@IAEXXZ -?ImplInitSettings@ImplListBoxWindow@@QAEXEEE@Z -?ImplPaint@ImplListBoxWindow@@IAEXGE@Z -?ImplResizeControls@ImplListBox@@IAEXXZ -?InsertEntry@ImplEntryList@@QAEGGPAUImplEntryType@@E@Z -?InsertEntry@ImplListBox@@QAEGGABVImage@@@Z -?InsertEntry@ImplListBox@@QAEGGABVString@@@Z -?InsertEntry@ImplListBox@@QAEGGABVString@@ABVImage@@@Z -?InsertEntry@ImplListBoxWindow@@QAEGGPAUImplEntryType@@@Z -?IsEntryPosSelected@ImplEntryList@@QBEEG@Z -?IsEntrySelected@ImplEntryList@@QBEEABVString@@@Z -?KeyInput@ImplListBoxWindow@@MAEXABVKeyEvent@@@Z -?LBWindowScrolled@ImplListBox@@IAEJPAX@Z -?LinkStubLBWindowScrolled@ImplListBox@@KAJPAX0@Z -?LinkStubMRUChanged@ImplListBox@@KAJPAX0@Z -?LinkStubScrollBarHdl@ImplListBox@@KAJPAX0@Z -?LinkStubSearchStringTimeout@ImplListBoxWindow@@KAJPAX0@Z -?LoseFocus@ImplListBoxWindow@@MAEXXZ -?LoseFocus@ImplWin@@UAEXXZ -?MBDown@ImplBtn@@UAEXXZ -?MBDown@ImplWin@@UAEXXZ -?MRUChanged@ImplListBox@@IAEJPAX@Z -?MouseButtonDown@ImplBtn@@UAEXABVMouseEvent@@@Z -?MouseButtonDown@ImplListBoxWindow@@MAEXABVMouseEvent@@@Z -?MouseButtonDown@ImplWin@@UAEXABVMouseEvent@@@Z -?MouseMove@ImplListBoxWindow@@MAEXABVMouseEvent@@@Z -?Notify@ImplListBox@@MAEJAAVNotifyEvent@@@Z -?Paint@ImplListBoxWindow@@MAEXABVRectangle@@@Z -?Paint@ImplWin@@UAEXABVRectangle@@@Z -?PreNotify@ImplListBoxFloatingWindow@@MAEJAAVNotifyEvent@@@Z -?ProcessKeyInput@ImplListBoxWindow@@QAEEABVKeyEvent@@@Z -?RemoveEntry@ImplEntryList@@QAEXG@Z -?RemoveEntry@ImplListBox@@QAEXG@Z -?RemoveEntry@ImplListBoxWindow@@QAEXG@Z -?Resize@ImplListBox@@UAEXXZ -?Resize@ImplListBoxWindow@@MAEXXZ -?Resize@ImplWin@@UAEXXZ -?ScrollBarHdl@ImplListBox@@IAEJPAVScrollBar@@@Z -?ScrollHorz@ImplListBoxWindow@@QAEXF@Z -?SearchStringTimeout@ImplListBoxWindow@@IAEJPAVTimer@@@Z -?SelectEntries@ImplListBoxWindow@@IAEEGW4LB_EVENT_TYPE@@EE@Z -?SelectEntry@ImplEntryList@@QAEXGE@Z -?SelectEntry@ImplListBox@@QAEXGE@Z -?SelectEntry@ImplListBoxWindow@@QAEXGE@Z -?SetEntryData@ImplEntryList@@QAEXGPAX@Z -?SetLeftIndent@ImplListBoxWindow@@QAEXG@Z -?SetMRUEntries@ImplListBox@@QAEXABVString@@G@Z -?SetNoSelection@ImplListBox@@QAEXXZ -?SetPosSizePixel@ImplListBoxFloatingWindow@@UAEXJJJJG@Z -?SetTopEntry@ImplListBoxWindow@@QAEXG@Z -?SetUserItemSize@ImplListBoxWindow@@QAEXABVSize@@@Z -?StartFloat@ImplListBoxFloatingWindow@@QAEXE@Z -?StateChanged@ImplListBox@@MAEXG@Z -?StateChanged@ImplListBoxWindow@@MAEXG@Z -?Tracking@ImplListBoxWindow@@MAEXABVTrackingEvent@@@Z -??0ImageControl@@QAE@PAVWindow@@K@Z -??_7ImageControl@@6B@ -??_GImageControl@@UAEPAXI@Z -?Resize@ImageControl@@UAEXXZ -?SetBitmap@ImageControl@@QAEXABVBitmapEx@@@Z -?UserDraw@ImageControl@@UAEXABVUserDrawEvent@@@Z -??0LongCurrencyBox@@QAE@PAVWindow@@ABVResId@@@Z -??0LongCurrencyBox@@QAE@PAVWindow@@K@Z -??0LongCurrencyField@@QAE@PAVWindow@@ABVResId@@@Z -??0LongCurrencyField@@QAE@PAVWindow@@K@Z -??0LongCurrencyFormatter@@IAE@XZ -??1LongCurrencyBox@@UAE@XZ -??1LongCurrencyField@@UAE@XZ -??1LongCurrencyFormatter@@QAE@XZ -??_7LongCurrencyBox@@6B@ -??_7LongCurrencyBox@@6BControl@@@ -??_7LongCurrencyBox@@6BDragAndDropClient@unohelper@vcl@@@ -??_7LongCurrencyField@@6B@ -??_7LongCurrencyField@@6BControl@@@ -??_7LongCurrencyField@@6BDragAndDropClient@unohelper@vcl@@@ -??_7LongCurrencyFormatter@@6B@ -??_GLongCurrencyBox@@UAEPAXI@Z -??_GLongCurrencyField@@UAEPAXI@Z -?Denormalize@LongCurrencyFormatter@@QBE?AVBigInt@@V2@@Z -?Down@LongCurrencyField@@UAEXXZ -?First@LongCurrencyField@@UAEXXZ -?GetCurr@International@@QBE?AVString@@ABVBigInt@@G@Z -?GetDecimalDigits@LongCurrencyFormatter@@QBEGXZ -?GetField@FormatterBase@@QBEPAVEdit@@XZ -?GetValue@LongCurrencyBox@@QBE?AVBigInt@@G@Z -?GetValue@LongCurrencyFormatter@@QBE?AVBigInt@@XZ -?GetValuePos@LongCurrencyBox@@QBEGVBigInt@@@Z -?ImpInit@LongCurrencyFormatter@@AAEXXZ -?ImplLoadRes@LongCurrencyField@@IAEXABVResId@@@Z -?ImplLoadRes@LongCurrencyFormatter@@IAEXABVResId@@@Z -?ImplLongCurrencyReformat@@YAEABVString@@VBigInt@@1GABVInternational@@AAV1@AAVLongCurrencyFormatter@@@Z -?ImplLongCurrencySetValue@@YA?AVString@@VBigInt@@GABVInternational@@@Z -?ImplNewLongCurrencyFieldValue@@YAXPAVLongCurrencyField@@VBigInt@@@Z -?InsertValue@LongCurrencyBox@@QAEXVBigInt@@G@Z -?IsValueModified@LongCurrencyFormatter@@QBEEXZ -?Last@LongCurrencyField@@UAEXXZ -?Modify@LongCurrencyBox@@UAEXXZ -?Modify@LongCurrencyField@@UAEXXZ -?Normalize@LongCurrencyFormatter@@QBE?AVBigInt@@V2@@Z -?Notify@LongCurrencyBox@@UAEJAAVNotifyEvent@@@Z -?Notify@LongCurrencyField@@UAEJAAVNotifyEvent@@@Z -?PreNotify@LongCurrencyBox@@UAEJAAVNotifyEvent@@@Z -?PreNotify@LongCurrencyField@@UAEJAAVNotifyEvent@@@Z -?Reformat@LongCurrencyFormatter@@UAEXXZ -?ReformatAll@LongCurrencyBox@@UAEXXZ -?ReformatAll@LongCurrencyFormatter@@UAEXXZ -?RemoveValue@LongCurrencyBox@@QAEXVBigInt@@@Z -?SetDecimalDigits@LongCurrencyFormatter@@QAEXG@Z -?SetEmptyValue@LongCurrencyFormatter@@QAEXXZ -?SetMax@LongCurrencyFormatter@@QAEXVBigInt@@@Z -?SetMin@LongCurrencyFormatter@@QAEXVBigInt@@@Z -?SetUserValue@LongCurrencyFormatter@@QAEXVBigInt@@@Z -?SetValue@LongCurrencyFormatter@@QAEXVBigInt@@@Z -?Up@LongCurrencyField@@UAEXXZ -??0ListBox@@IAE@G@Z -??0ListBox@@QAE@PAVWindow@@ABVResId@@@Z -??0ListBox@@QAE@PAVWindow@@K@Z -??0MultiListBox@@QAE@PAVWindow@@ABVResId@@@Z -??0MultiListBox@@QAE@PAVWindow@@K@Z -??1ListBox@@UAE@XZ -??_7ListBox@@6B@ -??_7MultiListBox@@6B@ -??_GListBox@@UAEPAXI@Z -??_GMultiListBox@@UAEPAXI@Z -?CalcAdjustedSize@ListBox@@QBE?AVSize@@ABV2@@Z -?CalcMinimumSize@ListBox@@QBE?AVSize@@XZ -?CalcSize@ListBox@@QBE?AVSize@@GG@Z -?CalcWindowSizePixel@ListBox@@QBEJG@Z -?Clear@ListBox@@QAEXXZ -?DataChanged@ListBox@@UAEXABVDataChangedEvent@@@Z -?DoubleClick@ListBox@@UAEXXZ -?Draw@ListBox@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?DrawEntry@ListBox@@QAEXABVUserDrawEvent@@EEE@Z -?EnableAutoSize@ListBox@@QAEXE@Z -?EnableMultiSelection@ListBox@@QAEXE@Z -?EnableMultiSelection@ListBox@@QAEXEE@Z -?EnableUserDraw@ListBox@@QAEXE@Z -?GetDropDownLineCount@ListBox@@QBEGXZ -?GetEntry@ListBox@@QBE?AVString@@G@Z -?GetEntryCount@ListBox@@QBEGXZ -?GetEntryData@ListBox@@QBEPAXG@Z -?GetEntryPos@ListBox@@QBEGABVString@@@Z -?GetEntryPos@ListBox@@QBEGPBX@Z -?GetFocus@ListBox@@UAEXXZ -?GetMRUEntries@ListBox@@QBE?AVString@@G@Z -?GetMaxMRUCount@ListBox@@QBEGXZ -?GetMaxVisColumnsAndLines@ListBox@@QBEXAAG0@Z -?GetSelectEntry@ListBox@@QBE?AVString@@G@Z -?GetSelectEntryCount@ListBox@@QBEGXZ -?GetSelectEntryPos@ListBox@@QBEGG@Z -?GetSeparatorPos@ListBox@@QBEGXZ -?GetTopEntry@ListBox@@QBEGXZ -?GetUserItemSize@ListBox@@QBEABVSize@@XZ -?ImplCancelHdl@ListBox@@AAEJPAX@Z -?ImplClickBtnHdl@ListBox@@AAEJPAX@Z -?ImplDoubleClickHdl@ListBox@@AAEJPAX@Z -?ImplInit@ListBox@@IAEXPAVWindow@@K@Z -?ImplInitData@ListBox@@AAEXXZ -?ImplInitStyle@ListBox@@IAEKK@Z -?ImplLoadRes@ListBox@@IAEXABVResId@@@Z -?ImplPopupModeEndHdl@ListBox@@AAEJPAX@Z -?ImplSelectHdl@ListBox@@AAEJPAX@Z -?ImplSelectionChangedHdl@ListBox@@AAEJPAX@Z -?ImplUserDrawHdl@ListBox@@AAEJPAVUserDrawEvent@@@Z -?InsertEntry@ListBox@@QAEGABVImage@@G@Z -?InsertEntry@ListBox@@QAEGABVString@@ABVImage@@G@Z -?InsertEntry@ListBox@@QAEGABVString@@G@Z -?IsEntryPosSelected@ListBox@@QBEEG@Z -?IsEntrySelected@ListBox@@QBEEABVString@@@Z -?IsInDropDown@ListBox@@QBEEXZ -?IsMultiSelectionEnabled@ListBox@@QBEEXZ -?IsReadOnly@ListBox@@QBEEXZ -?IsTravelSelect@ListBox@@QBEEXZ -?IsUserDrawEnabled@ListBox@@QBEEXZ -?LinkStubImplCancelHdl@ListBox@@CAJPAX0@Z -?LinkStubImplClickBtnHdl@ListBox@@CAJPAX0@Z -?LinkStubImplDoubleClickHdl@ListBox@@CAJPAX0@Z -?LinkStubImplPopupModeEndHdl@ListBox@@CAJPAX0@Z -?LinkStubImplSelectHdl@ListBox@@CAJPAX0@Z -?LinkStubImplSelectionChangedHdl@ListBox@@CAJPAX0@Z -?LinkStubImplUserDrawHdl@ListBox@@CAJPAX0@Z -?LoseFocus@ListBox@@UAEXXZ -?PreNotify@ListBox@@UAEJAAVNotifyEvent@@@Z -?RemoveEntry@ListBox@@QAEXABVString@@@Z -?RemoveEntry@ListBox@@QAEXG@Z -?Resize@ListBox@@UAEXXZ -?Select@ListBox@@UAEXXZ -?SelectEntry@ListBox@@QAEXABVString@@E@Z -?SelectEntryPos@ListBox@@QAEXGE@Z -?SetDropDownLineCount@ListBox@@QAEXG@Z -?SetEntryData@ListBox@@QAEXGPAX@Z -?SetMRUEntries@ListBox@@QAEXABVString@@G@Z -?SetMaxMRUCount@ListBox@@QAEXG@Z -?SetNoSelection@ListBox@@QAEXXZ -?SetPosSizePixel@ListBox@@UAEXJJJJG@Z -?SetReadOnly@ListBox@@QAEXE@Z -?SetSeparatorPos@ListBox@@QAEXG@Z -?SetSeparatorPos@ListBox@@QAEXXZ -?SetTopEntry@ListBox@@QAEXG@Z -?SetUserItemSize@ListBox@@QAEXABVSize@@@Z -?StateChanged@ListBox@@UAEXG@Z -?UserDraw@ListBox@@UAEXABVUserDrawEvent@@@Z -??0MoreButton@@QAE@PAVWindow@@ABVResId@@@Z -??0MoreButton@@QAE@PAVWindow@@K@Z -??1MoreButton@@UAE@XZ -??_7MoreButton@@6B@ -??_GMoreButton@@UAEPAXI@Z -?AddWindow@MoreButton@@QAEXPAVWindow@@@Z -?Click@MoreButton@@UAEXXZ -?GetText@MoreButton@@UBE?AVString@@XZ -?ImplInit@MoreButton@@IAEXPAVWindow@@K@Z -?ImplLoadRes@MoreButton@@IAEXABVResId@@@Z -?RemoveWindow@MoreButton@@QAEXPAVWindow@@@Z -?SetText@MoreButton@@UAEXABVString@@@Z -??0MenuButton@@QAE@PAVWindow@@ABVResId@@@Z -??0MenuButton@@QAE@PAVWindow@@K@Z -??1MenuButton@@UAE@XZ -??_7MenuButton@@6B@ -??_GMenuButton@@UAEPAXI@Z -?Activate@MenuButton@@UAEXXZ -?ImplExecuteMenu@MenuButton@@AAEXXZ -?ImplInit@MenuButton@@IAEXPAVWindow@@K@Z -?ImplInitData@MenuButton@@AAEXXZ -?ImplLoadRes@MenuButton@@IAEXABVResId@@@Z -?ImplMenuTimeoutHdl@MenuButton@@AAEJPAVTimer@@@Z -?KeyInput@MenuButton@@UAEXABVKeyEvent@@@Z -?LinkStubImplMenuTimeoutHdl@MenuButton@@CAJPAX0@Z -?MouseButtonDown@MenuButton@@UAEXABVMouseEvent@@@Z -?Select@MenuButton@@UAEXXZ -?SetMenuMode@MenuButton@@QAEXG@Z -?SetPopupMenu@MenuButton@@QAEXPAVPopupMenu@@@Z -??0ScrollBar@@QAE@PAVWindow@@ABVResId@@@Z -??0ScrollBar@@QAE@PAVWindow@@K@Z -??0ScrollBarBox@@QAE@PAVWindow@@ABVResId@@@Z -??0ScrollBarBox@@QAE@PAVWindow@@K@Z -??1ScrollBar@@UAE@XZ -??_7ScrollBar@@6B@ -??_7ScrollBarBox@@6B@ -??_GScrollBar@@UAEPAXI@Z -??_GScrollBarBox@@UAEPAXI@Z -?DDScroll@ScrollBar@@QAEXABVDropEvent@@@Z -?DataChanged@ScrollBar@@UAEXABVDataChangedEvent@@@Z -?DataChanged@ScrollBarBox@@UAEXABVDataChangedEvent@@@Z -?DoScroll@ScrollBar@@QAEJJ@Z -?DoScrollAction@ScrollBar@@QAEJW4ScrollType@@@Z -?EndScroll@ScrollBar@@UAEXXZ -?ImplCalc@ScrollBar@@AAEXE@Z -?ImplCalcThumbPos@ScrollBar@@AAEJJ@Z -?ImplCalcThumbPosPix@ScrollBar@@AAEJJ@Z -?ImplDoAction@ScrollBar@@AAEJE@Z -?ImplDoMouseAction@ScrollBar@@AAEXABVPoint@@E@Z -?ImplDraw@ScrollBar@@AAEXG@Z -?ImplInit@ScrollBar@@AAEXPAVWindow@@K@Z -?ImplInit@ScrollBarBox@@AAEXPAVWindow@@K@Z -?ImplInitSettings@ScrollBarBox@@AAEXXZ -?ImplInitStyle@ScrollBar@@AAEXK@Z -?ImplLoadRes@ScrollBar@@AAEXABVResId@@@Z -?ImplScroll@ScrollBar@@AAEJJE@Z -?ImplTimerHdl@ScrollBar@@AAEJPAVTimer@@@Z -?ImplUpdateRects@ScrollBar@@AAEXE@Z -?ImplUpdateThumbRect@ScrollBar@@AAEEABVRectangle@@@Z -?KeyInput@ScrollBar@@UAEXABVKeyEvent@@@Z -?LinkStubImplTimerHdl@ScrollBar@@CAJPAX0@Z -?MouseButtonDown@ScrollBar@@UAEXABVMouseEvent@@@Z -?Paint@ScrollBar@@UAEXABVRectangle@@@Z -?QueryDrop@ScrollBar@@UAEEAAVDropEvent@@@Z -?Resize@ScrollBar@@UAEXXZ -?Scroll@ScrollBar@@UAEXXZ -?SetRange@ScrollBar@@QAEXABVRange@@@Z -?SetRangeMax@ScrollBar@@QAEXJ@Z -?SetRangeMin@ScrollBar@@QAEXJ@Z -?SetThumbPos@ScrollBar@@QAEXJ@Z -?SetVisibleSize@ScrollBar@@QAEXJ@Z -?StateChanged@ScrollBar@@UAEXG@Z -?StateChanged@ScrollBarBox@@UAEXG@Z -?Tracking@ScrollBar@@UAEXABVTrackingEvent@@@Z -??0Slider@@QAE@PAVWindow@@ABVResId@@@Z -??0Slider@@QAE@PAVWindow@@K@Z -??_7Slider@@6B@ -??_GSlider@@UAEPAXI@Z -?CalcWindowSizePixel@Slider@@QAE?AVSize@@XZ -?DataChanged@Slider@@UAEXABVDataChangedEvent@@@Z -?EndSlide@Slider@@UAEXXZ -?ImplCalc@Slider@@AAEXE@Z -?ImplCalcThumbPos@Slider@@AAEJJ@Z -?ImplCalcThumbPosPix@Slider@@AAEJJ@Z -?ImplDoAction@Slider@@AAEJE@Z -?ImplDoMouseAction@Slider@@AAEXABVPoint@@E@Z -?ImplDoSlide@Slider@@AAEJJ@Z -?ImplDoSlideAction@Slider@@AAEJW4ScrollType@@@Z -?ImplDraw@Slider@@AAEXG@Z -?ImplInit@Slider@@AAEXPAVWindow@@K@Z -?ImplInitSettings@Slider@@AAEXXZ -?ImplInitStyle@Slider@@AAEXK@Z -?ImplIsPageDown@Slider@@AAEEABVPoint@@@Z -?ImplIsPageUp@Slider@@AAEEABVPoint@@@Z -?ImplLoadRes@Slider@@AAEXABVResId@@@Z -?ImplSlide@Slider@@AAEJJE@Z -?ImplUpdateRects@Slider@@AAEXE@Z -?KeyInput@Slider@@UAEXABVKeyEvent@@@Z -?MouseButtonDown@Slider@@UAEXABVMouseEvent@@@Z -?Paint@Slider@@UAEXABVRectangle@@@Z -?RequestHelp@Slider@@UAEXABVHelpEvent@@@Z -?Resize@Slider@@UAEXXZ -?SetRange@Slider@@QAEXABVRange@@@Z -?SetRangeMax@Slider@@QAEXJ@Z -?SetRangeMin@Slider@@QAEXJ@Z -?SetThumbPos@Slider@@QAEXJ@Z -?Slide@Slider@@UAEXXZ -?StateChanged@Slider@@UAEXG@Z -?Tracking@Slider@@UAEXABVTrackingEvent@@@Z -??0SpinField@@IAE@G@Z -??0SpinField@@QAE@PAVWindow@@ABVResId@@@Z -??0SpinField@@QAE@PAVWindow@@K@Z -??1SpinField@@UAE@XZ -??_7SpinField@@6BControl@@@ -??_7SpinField@@6BDragAndDropClient@unohelper@vcl@@@ -??_GSpinField@@UAEPAXI@Z -?CalcMinimumSize@SpinField@@QBE?AVSize@@XZ -?CalcSize@SpinField@@QBE?AVSize@@G@Z -?Command@SpinField@@MAEXABVCommandEvent@@@Z -?DataChanged@SpinField@@UAEXABVDataChangedEvent@@@Z -?Down@SpinField@@UAEXXZ -?Draw@SpinField@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?EndDropDown@SpinField@@IAEXXZ -?First@SpinField@@UAEXXZ -?GetMaxVisChars@SpinField@@QBEGXZ -?ImplCalcButtonAreas@SpinField@@AAEXPAVOutputDevice@@ABVSize@@AAVRectangle@@22@Z -?ImplDrawSpinButton@@YAXPAVOutputDevice@@ABVRectangle@@1EEEEE@Z -?ImplInit@SpinField@@IAEXPAVWindow@@K@Z -?ImplInitData@SpinField@@AAEXXZ -?ImplTimeout@SpinField@@AAEJPAVTimer@@@Z -?Last@SpinField@@UAEXXZ -?LinkStubImplTimeout@SpinField@@CAJPAX0@Z -?MouseButtonDown@SpinField@@UAEXABVMouseEvent@@@Z -?MouseButtonUp@SpinField@@UAEXABVMouseEvent@@@Z -?MouseMove@SpinField@@UAEXABVMouseEvent@@@Z -?Notify@SpinField@@MAEJAAVNotifyEvent@@@Z -?Paint@SpinField@@UAEXABVRectangle@@@Z -?Resize@SpinField@@UAEXXZ -?ShowDropDown@SpinField@@UAEEE@Z -?StateChanged@SpinField@@UAEXG@Z -?Up@SpinField@@UAEXXZ -??0SpinButton@@QAE@PAVWindow@@ABVResId@@@Z -??0SpinButton@@QAE@PAVWindow@@K@Z -??1SpinButton@@UAE@XZ -??_7SpinButton@@6B@ -??_GSpinButton@@UAEPAXI@Z -?Down@SpinButton@@UAEXXZ -?ImplInit@SpinButton@@AAEXPAVWindow@@K@Z -?ImplTimeout@SpinButton@@AAEJPAVTimer@@@Z -?KeyInput@SpinButton@@UAEXABVKeyEvent@@@Z -?LinkStubImplTimeout@SpinButton@@CAJPAX0@Z -?MouseButtonDown@SpinButton@@UAEXABVMouseEvent@@@Z -?MouseButtonUp@SpinButton@@UAEXABVMouseEvent@@@Z -?MouseMove@SpinButton@@UAEXABVMouseEvent@@@Z -?Paint@SpinButton@@UAEXABVRectangle@@@Z -?Resize@SpinButton@@UAEXXZ -?StateChanged@SpinButton@@UAEXG@Z -?Up@SpinButton@@UAEXXZ -??0TabControl@@QAE@PAVWindow@@ABVResId@@@Z -??0TabControl@@QAE@PAVWindow@@K@Z -??1TabControl@@UAE@XZ -??_7TabControl@@6B@ -??_GTabControl@@UAEPAXI@Z -?ActivatePage@TabControl@@UAEXXZ -?Clear@TabControl@@QAEXXZ -?Command@TabControl@@UAEXABVCommandEvent@@@Z -?DataChanged@TabControl@@UAEXABVDataChangedEvent@@@Z -?DeactivatePage@TabControl@@UAEJXZ -?GetCurPageId@TabControl@@QBEGXZ -?GetFocus@TabControl@@UAEXXZ -?GetHelpId@TabControl@@QBEKG@Z -?GetHelpText@TabControl@@QBEABVString@@G@Z -?GetPageCount@TabControl@@QBEGXZ -?GetPageId@TabControl@@QBEGABVPoint@@@Z -?GetPageId@TabControl@@QBEGG@Z -?GetPagePos@TabControl@@QBEGG@Z -?GetPageText@TabControl@@QBE?AVString@@G@Z -?GetTabPage@TabControl@@QBEPAVTabPage@@G@Z -?GetTabPageResId@TabControl@@QBEGG@Z -?GetTabPageSizePixel@TabControl@@QBE?AVSize@@XZ -?ImplActivateTabPage@TabControl@@AAEXE@Z -?ImplChangeTabPage@TabControl@@AAEXGG@Z -?ImplDrawItem@TabControl@@AAEXPAUImplTabItem@@ABVRectangle@@@Z -?ImplGetItem@TabControl@@ABEPAUImplTabItem@@G@Z -?ImplGetItemSize@TabControl@@ABE?AVSize@@PAUImplTabItem@@J@Z -?ImplGetTabRect@TabControl@@AAE?AVRectangle@@GJJ@Z -?ImplInit@TabControl@@IAEXPAVWindow@@K@Z -?ImplInitSettings@TabControl@@AAEXEEE@Z -?ImplLoadRes@TabControl@@IAEXABVResId@@@Z -?ImplPosCurTabPage@TabControl@@AAEEXZ -?ImplPosScrollBtns@TabControl@@AAEXXZ -?ImplScrollBtnHdl@TabControl@@AAEJPAVPushButton@@@Z -?ImplScrollBtnsColor@TabControl@@AAEXXZ -?ImplSetFirstPagePos@TabControl@@AAEXG@Z -?ImplSetScrollBtnsState@TabControl@@AAEXXZ -?ImplShowFocus@TabControl@@AAEXXZ -?InsertPage@TabControl@@QAEXABVResId@@G@Z -?InsertPage@TabControl@@QAEXGABVString@@G@Z -?KeyInput@TabControl@@UAEXABVKeyEvent@@@Z -?LinkStubImplScrollBtnHdl@TabControl@@CAJPAX0@Z -?LoseFocus@TabControl@@UAEXXZ -?MouseButtonDown@TabControl@@UAEXABVMouseEvent@@@Z -?Notify@TabControl@@UAEJAAVNotifyEvent@@@Z -?Paint@TabControl@@UAEXABVRectangle@@@Z -?RemovePage@TabControl@@QAEXG@Z -?RequestHelp@TabControl@@UAEXABVHelpEvent@@@Z -?Resize@TabControl@@UAEXXZ -?SelectTabPage@TabControl@@QAEXG@Z -?SetCurPageId@TabControl@@QAEXG@Z -?SetFirstPageId@TabControl@@QAEXG@Z -?SetHelpId@TabControl@@QAEXGK@Z -?SetHelpText@TabControl@@QAEXGABVString@@@Z -?SetPageText@TabControl@@QAEXGABVString@@@Z -?SetTabPage@TabControl@@QAEXGPAVTabPage@@@Z -?SetTabPageSizePixel@TabControl@@QAEXABVSize@@@Z -?StateChanged@TabControl@@UAEXG@Z -??0EventPoster@vcl@@QAE@ABVLink@@@Z -??1EventPoster@vcl@@QAE@XZ -?LinkStubDoEvent_Impl@EventPoster@vcl@@CAJPAX0@Z -?Post@EventPoster@vcl@@QAEXPAUUserEvent@2@@Z -??0SolarThreadExecutor@vcl@@QAE@XZ -??0ThreadExecutor@vcl@@QAE@XZ -??1SolarThreadExecutor@vcl@@QAE@XZ -??1ThreadExecutor@vcl@@QAE@XZ -??_7SolarThreadExecutor@vcl@@6B@ -??_7ThreadExecutor@vcl@@6B@ -?LinkStubworker@SolarThreadExecutor@vcl@@CAJPAX0@Z -?execute@SolarThreadExecutor@vcl@@QAEJXZ -?execute@ThreadExecutor@vcl@@QAEJXZ -?worker@SolarThreadExecutor@vcl@@AAEJPAX@Z -?worker@ThreadExecutor@vcl@@CAXPAX@Z -??0?$ImplHelperBase1@VXDisplayConnection@awt@star@sun@com@@@cppu@@QAE@XZ -??0?$_List_base@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@ABV?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@1@@Z -??0?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_N_Tr@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@ABU01@@Z -??0DisplayConnection@vcl@@QAE@XZ -??1?$Sequence@C@uno@star@sun@com@@QAE@XZ -??1?$WeakImplHelper1@VXDisplayConnection@awt@star@sun@com@@@cppu@@UAE@XZ -??1?$_STL_alloc_proxy@PAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@U12@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@2@@_STL@@QAE@XZ -??1?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@QAE@XZ -??1?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@XZ -??1DisplayConnection@vcl@@UAE@XZ -??1Mutex@osl@@QAE@XZ -??_7?$ImplHelperBase1@VXDisplayConnection@awt@star@sun@com@@@cppu@@6BXDisplayConnection@awt@star@sun@com@@@ -??_7?$ImplHelperBase1@VXDisplayConnection@awt@star@sun@com@@@cppu@@6BXTypeProvider@lang@star@sun@com@@@ -??_7?$WeakImplHelper1@VXDisplayConnection@awt@star@sun@com@@@cppu@@6B@ -??_7?$WeakImplHelper1@VXDisplayConnection@awt@star@sun@com@@@cppu@@6BXDisplayConnection@awt@star@sun@com@@@ -??_7?$WeakImplHelper1@VXDisplayConnection@awt@star@sun@com@@@cppu@@6BXTypeProvider@lang@star@sun@com@@@ -??_7DisplayConnection@vcl@@6B@ -??_7DisplayConnection@vcl@@6BXDisplayConnection@awt@star@sun@com@@@ -??_7DisplayConnection@vcl@@6BXTypeProvider@lang@star@sun@com@@@ -??_7XDisplayConnection@awt@star@sun@com@@6B@ -??_C@_0CE@HAOC@com?4sun?4star?4awt?4XDisplayConnect@ -??_G?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@QAEPAXI@Z -??_G?$WeakImplHelper1@VXDisplayConnection@awt@star@sun@com@@@cppu@@UAEPAXI@Z -??_GDisplayConnection@vcl@@UAEPAXI@Z -?_M_create_node@?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@IAEPAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@2@ABV?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@Z -?__query@?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?acquire@?$WeakImplHelper1@VXDisplayConnection@awt@star@sun@com@@@cppu@@UAAXXZ -?acquire@?$WeakImplHelper1@VXDisplayConnection@awt@star@sun@com@@@cppu@@WBA@AAXXZ -?acquire@?$WeakImplHelper1@VXDisplayConnection@awt@star@sun@com@@@cppu@@WM@AAXXZ -?addErrorHandler@DisplayConnection@vcl@@UAAXABV?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@Z -?addEventHandler@DisplayConnection@vcl@@UAAXABVAny@uno@star@sun@com@@ABV?$Reference@VXEventHandler@awt@star@sun@com@@@4567@J@Z -?deallocate@?$_STL_alloc_proxy@PAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@U12@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@2@@_STL@@QAEXPAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@2@I@Z -?deallocate@?$allocator@U?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QBEXPAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@2@I@Z -?dispatchErrorEvent@DisplayConnection@vcl@@SA_NPAX0H@Z -?dispatchEvent@DisplayConnection@vcl@@SA_NPAX0H@Z -?end@?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE?AU?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_N_Tr@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@XZ -?erase@?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE?AU?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_N_Tr@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@U32@@Z -?getIdentifier@DisplayConnection@vcl@@UAA?AVAny@uno@star@sun@com@@XZ -?getImplementationId@?$WeakImplHelper1@VXDisplayConnection@awt@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ -?getTypes@?$WeakImplHelper1@VXDisplayConnection@awt@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ -?insert@?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE?AU?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_N_Tr@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@U32@ABV?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@Z -?queryInterface@?$WeakImplHelper1@VXDisplayConnection@awt@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z -?queryInterface@?$WeakImplHelper1@VXDisplayConnection@awt@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z -?queryInterface@?$WeakImplHelper1@VXDisplayConnection@awt@star@sun@com@@@cppu@@WM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z -?release@?$WeakImplHelper1@VXDisplayConnection@awt@star@sun@com@@@cppu@@UAAXXZ -?release@?$WeakImplHelper1@VXDisplayConnection@awt@star@sun@com@@@cppu@@WBA@AAXXZ -?release@?$WeakImplHelper1@VXDisplayConnection@awt@star@sun@com@@@cppu@@WM@AAXXZ -?removeErrorHandler@DisplayConnection@vcl@@UAAXABV?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@Z -?removeEventHandler@DisplayConnection@vcl@@UAAXABVAny@uno@star@sun@com@@ABV?$Reference@VXEventHandler@awt@star@sun@com@@@4567@@Z -?s_pType_com_sun_star_awt_XDisplayConnection@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDisplayConnection@awt@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??0DTransSotDataObject@@QAE@PAVIDataTrans@@@Z -??0Exchange@@IAE@XZ -??0ImplDTrans@@QAE@PAVSotDataObject@@@Z -??1DTransSotDataObject@@MAE@XZ -??1Exchange@@IAE@XZ -??1ImpPtrTab@@QAE@XZ -??1ImplDTrans@@MAE@XZ -??_7DTransSotDataObject@@6B@ -??_7DTransSotDataObject@@6BSotObject@@@ -??_7DTransSotDataObject@@6BSvRefBase@@@ -??_7Exchange@@6B@ -??_7IDataTrans@@6B@ -??_7ISystemExchange@@6B@ -??_7ImplDTrans@@6B@ -??_7_UnoSystemExchange@@6B@ -??_8DTransSotDataObject@@7BSotDataObject@@@ -??_8DTransSotDataObject@@7BSotObject@@@ -??_EDTransSotDataObject@@$2PPPPPPPM@A@AEPAXI@Z -??_GDTransSotDataObject@@MAEPAXI@Z -??_GIDataTrans@@UAEPAXI@Z -??_GImplDTrans@@MAEPAXI@Z -?Cast@SotDataObject@@$4PPPPPPPM@7AEPAXPBVSotFactory@@@Z -?Free@ImpPtrTab@@QAEXXZ -?GetData@DTransSotDataObject@@UAEEPAVSvData@@@Z -?GetSvFactory@SotDataObject@@$4PPPPPPPM@7BEPBVSotFactory@@XZ -?GetSystemExchange@@YAPAVISystemExchange@@XZ -?GetTypeList@DTransSotDataObject@@UBEABVSvDataTypeList@@XZ -?ImplRegisterSystemFormats@Exchange@@SAXXZ -?Insert@ImpPtrTab@@QAEXPAX@Z -?QueryDelete@SotObject@@$4PPPPPPPM@PPPPPPNE@AEXXZ -?Remove@ImpPtrTab@@QAEXPAX@Z -?Request@Exchange@@UAEXXZ -?TestInvariant@SotDataObject@@$4PPPPPPPM@7AEXE@Z -?TestObjRef@SotDataObject@@$4PPPPPPPM@7AEXE@Z -?aquire@ImplDTrans@@UAEXXZ -?getData@ImplDTrans@@UAEPAEKAAK@Z -?getTypeList@ImplDTrans@@UBEPAKAAK@Z -?registerFormatName@_UnoSystemExchange@@EAEXABVString@@K@Z -?release@ImplDTrans@@UAEXXZ -??0DragManager@@AAE@XZ -??0DragServer@@QAE@XZ -??0MultiItemObject@@AAE@PAVSotDataObject@@@Z -??0MultiItemObject@@QAE@XZ -??0Point@@QAE@JJ@Z -??0SotDataObjectRef@@QAE@ABV0@@Z -??0SotDataObjectRef@@QAE@XZ -??1DragServer@@QAE@XZ -??1DropEvent@@QAE@XZ -??1MultiItemObject@@UAE@XZ -??1MultiItemObjectRef@@QAE@XZ -??1SotDataMemberObjectRef@@QAE@XZ -??1SotDataObjectRef@@QAE@XZ -??4MultiItemObjectRef@@QAEAAV0@ABV0@@Z -??4MultiItemObjectRef@@QAEAAV0@PAVMultiItemObject@@@Z -??4SotDataObjectRef@@QAEAAV0@PAVSotDataObject@@@Z -??_7DragServer@@6B@ -??_7DropSource@@6B@ -??_7IDragDropListener@@6B@ -??_7ImplDragDropListener@@6B@ -??_7MultiItemObject@@6B@ -??_7MultiItemObject@@6BSotObject@@@ -??_7MultiItemObject@@6BSvRefBase@@@ -??_7WindowDropSource@@6B@ -??_8MultiItemObject@@7BSotDataObject@@@ -??_8MultiItemObject@@7BSotObject@@@ -??_EMultiItemObject@@$4PPPPPPPM@A@AEPAXI@Z -??_ESotDataObjectRef@@QAEPAXI@Z -??_GMultiItemObject@@UAEPAXI@Z -?AppWindowLeaved@DragManager@@QAEXXZ -?ButtonUp@DragManager@@QAEXABVMouseEvent@@PAVWindow@@@Z -?Cast@SotDataMemberObject@@$4PPPPPPPM@M@AEPAXPBVSotFactory@@@Z -?Clear@DragServer@@SAXXZ -?ClrDragPointer@WindowDropSource@@UAEXABVPoint@@@Z -?CopyBitmap@DragServer@@SAEABVBitmap@@@Z -?CopyData@DragServer@@SAEPBXKKG@Z -?CopyFile@DragServer@@SAEABVString@@@Z -?CopyGDIMetaFile@DragServer@@SAEABVGDIMetaFile@@@Z -?CopyPrivateData@DragServer@@SAEPAX@Z -?CopyRequest@DragServer@@SAEK@Z -?CopyString@DragServer@@SAEABVString@@@Z -?DrawDragPointer@WindowDropSource@@UAEEW4DropAction@@ABVPoint@@PAVWindow@@@Z -?Escape@DragManager@@QAEXPAVWindow@@@Z -?ExecuteDrag@DragManager@@SA?AW4DropAction@@PAVSotDataObject@@GPAVDropSource@@@Z -?ExecuteDrag@Window@@QAE?AW4DropAction@@ABVPointer@@00GPBVRegion@@@Z -?ExecuteDrag@Window@@QAE?AW4DropAction@@ABVPointer@@0GPBVRegion@@@Z -?ExecuteDrag@Window@@QAE?AW4DropAction@@PAUIDataObject@@ABVPointer@@11G@Z -?ExecuteDrag@Window@@QAE?AW4DropAction@@PAUIDataObject@@ABVPointer@@1G@Z -?GetData@MultiItemObject@@UAEEGPAVSvData@@@Z -?GetDataLen@DragServer@@SAKGK@Z -?GetDefaultPointer@DragManager@@SA?AVPointer@@W4DropAction@@@Z -?GetDragManager@DragManager@@SAPAV1@XZ -?GetFormat@DragServer@@SAKGG@Z -?GetFormatCount@DragServer@@SAGG@Z -?GetItem@MultiItemObject@@QAEPAVSotDataObject@@G@Z -?GetItemCount@DragServer@@SAGXZ -?GetPosPixel@MouseEvent@@QBEABVPoint@@XZ -?GetRequestFormat@DragServer@@SAKXZ -?GetRequestItem@DragServer@@SAGXZ -?GetSvFactory@SotDataMemberObject@@$4PPPPPPPM@M@BEPBVSotFactory@@XZ -?GetSystemDragManager@@YAPAVISystemDragManager@@XZ -?GetTargetPrinterName@DragServer@@SA?AVString@@XZ -?GetTypeList@MultiItemObject@@UAEPBVSvDataTypeList@@G@Z -?HasFormat@DragServer@@SAEGK@Z -?ImplGetActiveItem@@YAPAVSotDataObject@@XZ -?ImplGetDragManager@DragManager@@SAPAV1@XZ -?ImplGetItem@@YAPAVSotDataObject@@G@Z -?ImplGetSystemDragManager@@YAPAVISystemDragManager@@XZ -?InitDrag@DragManager@@AAEXPAVSotDataObject@@GPAVDropSource@@@Z -?InsertItem@MultiItemObject@@QAEXPAVSotDataObject@@@Z -?IsRequestName@DragServer@@SAEXZ -?KeyModChanged@DragManager@@QAEXG@Z -?MouseMove@DragManager@@QAEXABVMouseEvent@@PAVWindow@@@Z -?NewItem@DragServer@@SAXXZ -?NewItem@MultiItemObject@@QAEXXZ -?PasteBitmap@DragServer@@SA?AVBitmap@@G@Z -?PasteData@DragServer@@SAEGPAXKK@Z -?PasteFile@DragServer@@SA?AVString@@G@Z -?PasteGDIMetaFile@DragServer@@SAEGAAVGDIMetaFile@@@Z -?PastePrivateData@DragServer@@SAPAXG@Z -?PasteString@DragServer@@SA?AVString@@G@Z -?Request@ImplDragTab@@QAEXXZ -?SystemEnableDrop@DragManager@@SAXPAVSalFrame@@E@Z -?TestInvariant@SotDataObject@@$4PPPPPPPM@EA@AEXE@Z -?TestObjRef@SotDataObject@@$4PPPPPPPM@EA@AEXE@Z -?beginDragDrop@ImplDragDropListener@@UAEXPAVIDataTrans@@G@Z -?drop@ImplDragDropListener@@UAE?AW4DropAction@@VPoint@@PAVSalFrame@@G@Z -?endDragDrop@ImplDragDropListener@@UAEXXZ -?queryDrop@ImplDragDropListener@@UAE?AW4DropAction@@VPoint@@PAVSalFrame@@G@Z -??0?$ImplHelperBase2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@QAE@XZ -??0DataFlavor@datatransfer@star@sun@com@@QAE@ABU01234@@Z -??0Exception@uno@star@sun@com@@QAE@ABV01234@@Z -??0Impl_SystemClipboardBridge@@QAE@XZ -??0SVTransferable@@QAE@PAVSotDataObject@@@Z -??0Type@uno@star@sun@com@@QAE@ABV01234@@Z -??0Type@uno@star@sun@com@@QAE@XZ -??0UnoDataObject@@QAE@ABV?$Reference@VXTransferable@datatransfer@star@sun@com@@@uno@star@sun@com@@@Z -??0UnsupportedFlavorException@datatransfer@star@sun@com@@QAE@ABV01234@@Z -??0VclClipboard@@QAE@XZ -??1?$Reference@VXClipboardOwner@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXTransferable@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@UAE@XZ -??1DataFlavor@datatransfer@star@sun@com@@QAE@XZ -??1ImplClipDTrans@@MAE@XZ -??1Impl_SystemClipboardBridge@@UAE@XZ -??1OGuard@vos@@UAE@XZ -??1OString@rtl@@QAE@XZ -??1SVTransferable@@UAE@XZ -??1SvDataTypeList@@QAE@XZ -??1UnoDataObject@@UAE@XZ -??1UnsupportedFlavorException@datatransfer@star@sun@com@@QAE@XZ -??1VclClipboard@@QAE@XZ -??4SotDataMemberObjectRef@@QAEAAV0@ABV0@@Z -??4SotDataObjectRef@@QAEAAV0@ABV0@@Z -??8@YAEABUDataFlavor@datatransfer@star@sun@com@@0@Z -??9@YAEABUDataFlavor@datatransfer@star@sun@com@@0@Z -??H@YA?AVOUString@rtl@@ABV01@0@Z -??N@YAEABUDataFlavor@datatransfer@star@sun@com@@0@Z -??P@YAEABUDataFlavor@datatransfer@star@sun@com@@0@Z -??_7?$ImplHelperBase2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@6BXClipboardOwner@clipboard@datatransfer@star@sun@com@@@ -??_7?$ImplHelperBase2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@6BXTransferable@datatransfer@star@sun@com@@@ -??_7?$ImplHelperBase2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@6BXTypeProvider@lang@star@sun@com@@@ -??_7?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@6B@ -??_7?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@6BXClipboardOwner@clipboard@datatransfer@star@sun@com@@@ -??_7?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@6BXTransferable@datatransfer@star@sun@com@@@ -??_7?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@6BXTypeProvider@lang@star@sun@com@@@ -??_7IClipboardListener@@6B@ -??_7ImplClipDTrans@@6B@ -??_7ImplClipboardListener@@6B@ -??_7Impl_SystemClipboardBridge@@6B@ -??_7SVTransferable@@6B@ -??_7SVTransferable@@6BXClipboardOwner@clipboard@datatransfer@star@sun@com@@@ -??_7SVTransferable@@6BXTransferable@datatransfer@star@sun@com@@@ -??_7SVTransferable@@6BXTypeProvider@lang@star@sun@com@@@ -??_7UnoDataObject@@6B@ -??_7UnoDataObject@@6BSotObject@@@ -??_7UnoDataObject@@6BSvRefBase@@@ -??_7VclClipboard@@6B@ -??_7XClipboardOwner@clipboard@datatransfer@star@sun@com@@6B@ -??_8UnoDataObject@@7BSotDataObject@@@ -??_8UnoDataObject@@7BSotObject@@@ -??_B?1???s_aCD@?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@$D@@9@51 -??_C@_0BM@DBOO@com?4sun?4star?4uno?4XInterface?$AA@ -??_C@_0DE@JNGE@com?4sun?4star?4datatransfer?4clipbo@ -??_EUnoDataObject@@$4PPPPPPPM@A@AEPAXI@Z -??_G?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@UAEPAXI@Z -??_GImplClipDTrans@@MAEPAXI@Z -??_GImpl_SystemClipboardBridge@@UAEPAXI@Z -??_GSVTransferable@@UAEPAXI@Z -??_GUnoDataObject@@UAEPAXI@Z -??_R0?AVUnsupportedFlavorException@datatransfer@star@sun@com@@@8 -?Cast@SotDataObject@@$4PPPPPPPM@BM@AEPAXPBVSotFactory@@@Z -?Clear@VclClipboard@@SAXXZ -?Cleared@ImplClipTab@@QAEXXZ -?Cleared@VclClipboard@@UAEXXZ -?Copy@VclClipboard@@SAXPAVSotDataObject@@@Z -?CopyBitmap@VclClipboard@@SAEABVBitmap@@@Z -?CopyData@VclClipboard@@SAEPBXKKG@Z -?CopyGDIMetaFile@VclClipboard@@SAEABVGDIMetaFile@@@Z -?CopyPrivateData@VclClipboard@@SAEPAX@Z -?CopyRequest@VclClipboard@@SAEK@Z -?CopyString@VclClipboard@@SAEABVString@@@Z -?ExistsSystemClipboard@VclClipboard@@SAEXZ -?GetData@UnoDataObject@@UAEEPAVSvData@@@Z -?GetDataLen@VclClipboard@@SAKK@Z -?GetFormat@VclClipboard@@SAKG@Z -?GetFormatCount@VclClipboard@@SAGXZ -?GetRequestFormat@VclClipboard@@SAKXZ -?GetSvFactory@SotDataObject@@$4PPPPPPPM@BM@BEPBVSotFactory@@XZ -?GetSystemClipboard@@YAPAVISystemClipboard@@XZ -?GetTypeList@UnoDataObject@@UBEABVSvDataTypeList@@XZ -?HasFormat@VclClipboard@@SAEK@Z -?ImplGetClipManager@ClipManager@@SAPAV1@XZ -?ImplGetMemberObject@VclClipboard@@CAPAVSotDataMemberObject@@XZ -?ImplGetSystemClipboard@@YAPAVISystemClipboard@@XZ -?InvalidateSystemClipboard@@YAXXZ -?OStringToOUString@rtl@@YA?AVOUString@1@ABVOString@1@GK@Z -?OUStringToOString@rtl@@YA?AVOString@1@ABVOUString@1@GK@Z -?Paste@VclClipboard@@SAPAVSotDataObject@@XZ -?PasteBitmap@VclClipboard@@SA?AVBitmap@@XZ -?PasteData@VclClipboard@@SAEPAXKK@Z -?PasteGDIMetaFile@VclClipboard@@SAEAAVGDIMetaFile@@@Z -?PastePrivateData@VclClipboard@@SAPAXXZ -?PasteString@VclClipboard@@SA?AVString@@XZ -?ReleaseClipboard@VclClipboard@@SAXE@Z -?Request@ImplClipTab@@QAEXXZ -?TestInvariant@SotDataObject@@$4PPPPPPPM@BM@AEXE@Z -?TestObjRef@SotDataObject@@$4PPPPPPPM@BM@AEXE@Z -?UpdateSystemClipboard@@YAXXZ -?acquire@?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@UAAXXZ -?acquire@?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@WBA@AAXXZ -?acquire@?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@WBE@AAXXZ -?acquire@?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@WM@AAXXZ -?changed@ImplClipboardListener@@UAEXXZ -?cleared@ImplClipboardListener@@UAEXXZ -?concat@OUString@rtl@@QBE?AV12@ABV12@@Z -?copy@OUString@rtl@@QBE?AV12@JJ@Z -?disposeClipboardInstance@Impl_SystemClipboardBridge@@SAXXZ -?g_bShutDown@Impl_SystemClipboardBridge@@0EA -?g_pInstance@Impl_SystemClipboardBridge@@0PAV1@A -?getClipboard@Impl_SystemClipboardBridge@@MBA?AV?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@XZ -?getClipboardInstance@Impl_SystemClipboardBridge@@SA?AV?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@XZ -?getFlavorFromFormat@@YA?AUDataFlavor@datatransfer@star@sun@com@@K@Z -?getFormatFromFlavor@@YAKABUDataFlavor@datatransfer@star@sun@com@@@Z -?getFullMediaType@@YA?AVOUString@rtl@@ABV12@@Z -?getImplementationId@?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ -?getTransferData@SVTransferable@@UAA?AVAny@uno@star@sun@com@@ABUDataFlavor@datatransfer@456@@Z -?getTransferDataFlavors@SVTransferable@@UAA?AV?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@uno@star@sun@com@@XZ -?getTypes@?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ -?isDataFlavorSupported@SVTransferable@@UAAEABUDataFlavor@datatransfer@star@sun@com@@@Z -?lostOwnership@SVTransferable@@UAAXABV?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXTransferable@datatransfer@star@sun@com@@@3456@@Z -?makeAny@uno@star@sun@com@@YA?AVAny@1234@ABV?$Sequence@C@1234@@Z -?makeAny@uno@star@sun@com@@YA?AVAny@1234@ABVOUString@rtl@@@Z -?queryInterface@?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z -?queryInterface@?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z -?queryInterface@?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z -?queryInterface@?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@WM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z -?release@?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@UAAXXZ -?release@?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@WBA@AAXXZ -?release@?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@WBE@AAXXZ -?release@?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@WM@AAXXZ -?s_aCD@?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@$E -?s_aCD@?$WeakImplHelper2@VXTransferable@datatransfer@star@sun@com@@VXClipboardOwner@clipboard@2345@@cppu@@0UClassData2@2@A -?s_pType_com_sun_star_datatransfer_clipboard_XClipboardOwner@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXClipboardOwner@clipboard@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_uno_XInterface@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInterface@uno@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?trim@OUString@rtl@@QBE?AV12@XZ -__CT??_R0?AVException@uno@star@sun@com@@@8??0Exception@uno@star@sun@com@@QAE@ABV01234@@Z8 -__CT??_R0?AVUnsupportedFlavorException@datatransfer@star@sun@com@@@8??0UnsupportedFlavorException@datatransfer@star@sun@com@@QAE@ABV01234@@Z8 -__CTA2?AVUnsupportedFlavorException@datatransfer@star@sun@com@@ -_TI2?AVUnsupportedFlavorException@datatransfer@star@sun@com@@ -??0StringDataObject@@QAE@ABVString@@@Z -??_7StringDataObject@@6B@ -??_7StringDataObject@@6BSotObject@@@ -??_7StringDataObject@@6BSvRefBase@@@ -??_8StringDataObject@@7BSotDataObject@@@ -??_8StringDataObject@@7BSotObject@@@ -??_EStringDataObject@@$4PPPPPPPM@A@AEPAXI@Z -??_GStringDataObject@@UAEPAXI@Z -?Cast@SotDataMemberObject@@$4PPPPPPPM@A@AEPAXPBVSotFactory@@@Z -?GetSvFactory@SotDataMemberObject@@$4PPPPPPPM@A@BEPBVSotFactory@@XZ -?TestInvariant@SotDataObject@@$4PPPPPPPM@DE@AEXE@Z -?TestObjRef@SotDataObject@@$4PPPPPPPM@DE@AEXE@Z -?CreateSystemExchange@@YAXXZ -??0Color@@QAE@EEE@Z -??0SalFrame@@QAE@XZ -??1SalFrame@@QAE@XZ -?Beep@SalFrame@@QAEXG@Z -?CaptureMouse@SalFrame@@QAEXE@Z -?Enable@SalFrame@@QAEXE@Z -?EndExtTextInput@SalFrame@@QAEXG@Z -?Flush@SalFrame@@QAEXXZ -?GetClientSize@SalFrame@@QAEXAAJ0@Z -?GetGraphics@SalFrame@@QAEPAVSalGraphics@@XZ -?GetKeyName@SalFrame@@QAE?AVString@@G@Z -?GetSymbolKeyName@SalFrame@@QAE?AVString@@ABV2@G@Z -?GetSystemData@SalFrame@@QBEPBUSystemEnvData@@XZ -?GetWindowState@SalFrame@@QAEEPAUSalFrameState@@@Z -?ImplHandleGlobalMsg@@YAEPAUHWND__@@IIJAAJ@Z -?ImplHandleSalObjKeyMsg@@YAJPAUHWND__@@IIJ@Z -?ImplHandleSalObjSysCharMsg@@YAJPAUHWND__@@IJ@Z -?ImplSalCallbackDummy@@YAJPAXPAVSalFrame@@GPBX@Z -?ImplSalCreateFrame@@YAPAVSalFrame@@PAVSalInstance@@PAUHWND__@@K@Z -?PostEvent@SalFrame@@QAEEPAX@Z -?ReleaseGraphics@SalFrame@@QAEXPAVSalGraphics@@@Z -?SalFrameWndProc@@YGJPAUHWND__@@IIJAAH@Z -?SalFrameWndProcA@@YGJPAUHWND__@@IIJ@Z -?SalFrameWndProcW@@YGJPAUHWND__@@IIJ@Z -?SalTestMouseLeave@@YAXXZ -?SetAlwaysOnTop@SalFrame@@QAEXE@Z -?SetCallback@SalFrame@@QAEXPAXP6AJ0PAV1@GPBX@Z@Z -?SetClientSize@SalFrame@@QAEXJJ@Z -?SetIcon@SalFrame@@QAEXG@Z -?SetInputContext@SalFrame@@QAEXPAUSalInputContext@@@Z -?SetMinClientSize@SalFrame@@QAEXJJ@Z -?SetPointer@SalFrame@@QAEXG@Z -?SetPointerPos@SalFrame@@QAEXJJ@Z -?SetTitle@SalFrame@@QAEXABVString@@@Z -?SetWindowState@SalFrame@@QAEXPBUSalFrameState@@@Z -?Show@SalFrame@@QAEXE@Z -?ShowFullScreen@SalFrame@@QAEXE@Z -?StartPresentation@SalFrame@@QAEXE@Z -?Sync@SalFrame@@QAEXXZ -?ToTop@SalFrame@@QAEXG@Z -?UpdateSettings@SalFrame@@QAEXAAVAllSettings@@@Z -??0SalObject@@QAE@XZ -??1SalObject@@QAE@XZ -?BeginSetClipRegion@SalObject@@QAEXK@Z -?Enable@SalObject@@QAEXE@Z -?EndSetClipRegion@SalObject@@QAEXXZ -?GetClipRegionType@SalObject@@QAEGXZ -?GetSystemData@SalObject@@QBEPBUSystemEnvData@@XZ -?GrabFocus@SalObject@@QAEXXZ -?ImplFindSalObject@@YAPAVSalObject@@PAUHWND__@@@Z -?ImplFindSalObjectFrame@@YAPAVSalFrame@@PAUHWND__@@@Z -?ImplSalCreateObject@@YAPAVSalObject@@PAVSalInstance@@PAVSalFrame@@@Z -?ImplSalObjCallbackDummy@@YAJPAXPAVSalObject@@GPBX@Z -?ImplSalPostDispatchMsg@@YAXPAUtagMSG@@J@Z -?ImplSalPreDispatchMsg@@YAEPAUtagMSG@@@Z -?ResetClipRegion@SalObject@@QAEXXZ -?SalSysMsgProc@@YGJHIJ@Z -?SalSysObjChildWndProc@@YGJPAUHWND__@@IIJAAH@Z -?SalSysObjChildWndProcA@@YGJPAUHWND__@@IIJ@Z -?SalSysObjChildWndProcW@@YGJPAUHWND__@@IIJ@Z -?SalSysObjWndProc@@YGJPAUHWND__@@IIJAAH@Z -?SalSysObjWndProcA@@YGJPAUHWND__@@IIJ@Z -?SalSysObjWndProcW@@YGJPAUHWND__@@IIJ@Z -?SetBackground@SalObject@@QAEXK@Z -?SetBackground@SalObject@@QAEXXZ -?SetCallback@SalObject@@QAEXPAXP6AJ0PAV1@GPBX@Z@Z -?SetPosSize@SalObject@@QAEXJJJJ@Z -?Show@SalObject@@QAEXE@Z -?UnionClipRegion@SalObject@@QAEXJJJJ@Z -??0SalGraphics@@QAE@XZ -??1SalGraphics@@QAE@XZ -??_C@_02JBAA@?$CFf?$AA@ -?BeginSetClipRegion@SalGraphics@@QAEXK@Z -?DrawEPS@SalGraphics@@QAEEJJJJPAXK@Z -?DrawLine@SalGraphics@@QAEXJJJJ@Z -?DrawPixel@SalGraphics@@QAEXJJ@Z -?DrawPixel@SalGraphics@@QAEXJJK@Z -?DrawPolyLine@SalGraphics@@QAEXKPBUSalPoint@@@Z -?DrawPolyPolygon@SalGraphics@@QAEXKPBKPAPBUSalPoint@@@Z -?DrawPolygon@SalGraphics@@QAEXKPBUSalPoint@@@Z -?DrawRect@SalGraphics@@QAEXJJJJ@Z -?EndSetClipRegion@SalGraphics@@QAEXXZ -?GetBitCount@SalGraphics@@QAEGXZ -?GetResolution@SalGraphics@@QAEXAAJ0@Z -?GetScreenFontResolution@SalGraphics@@QAEXAAJ0@Z -?ImplClearHDCCache@@YAXPAUSalData@@@Z -?ImplFreeSalGDI@@YAXXZ -?ImplGetCachedDC@@YAPAUHDC__@@KPAUHBITMAP__@@@Z -?ImplInitSalGDI@@YAXXZ -?ImplIsSysColorEntry@@YAHK@Z -?ImplReleaseCachedDC@@YAXK@Z -?ImplSalDeInitGraphics@@YAXPAVSalGraphicsData@@@Z -?ImplSalInitGraphics@@YAXPAVSalGraphicsData@@@Z -?ImplUpdateSysColorEntries@@YAXXZ -?ResetClipRegion@SalGraphics@@QAEXXZ -?SetFillColor@SalGraphics@@QAEXK@Z -?SetFillColor@SalGraphics@@QAEXXZ -?SetLineColor@SalGraphics@@QAEXK@Z -?SetLineColor@SalGraphics@@QAEXXZ -?SetROPFillColor@SalGraphics@@QAEXG@Z -?SetROPLineColor@SalGraphics@@QAEXG@Z -?SetXORMode@SalGraphics@@QAEXE@Z -?UnionClipRegion@SalGraphics@@QAEEJJJJ@Z -?CopyArea@SalGraphics@@QAEXJJJJJJG@Z -?CopyBits@SalGraphics@@QAEXPBUSalTwoRect@@PAV1@@Z -?DrawBitmap@SalGraphics@@QAEXPBUSalTwoRect@@ABVSalBitmap@@1@Z -?DrawBitmap@SalGraphics@@QAEXPBUSalTwoRect@@ABVSalBitmap@@@Z -?DrawBitmap@SalGraphics@@QAEXPBUSalTwoRect@@ABVSalBitmap@@K@Z -?DrawMask@SalGraphics@@QAEXPBUSalTwoRect@@ABVSalBitmap@@K@Z -?GetBitmap@SalGraphics@@QAEPAVSalBitmap@@JJJJ@Z -?GetPixel@SalGraphics@@QAEKJJ@Z -?ImplCalcOutSideRgn@@YAXABUtagRECT@@HHHHAAPAUHRGN__@@@Z -?ImplDrawBitmap@@YAXPAUHDC__@@PBUSalTwoRect@@ABVSalBitmap@@EH@Z -?Invert@SalGraphics@@QAEXJJJJG@Z -?Invert@SalGraphics@@QAEXKPBUSalPoint@@G@Z -?bFastTransparent@@3EA -?DrawText@SalGraphics@@QAEXJJPBGG@Z -?DrawTextArray@SalGraphics@@QAEXJJPBGGPBJ@Z -?GetCharWidth@SalGraphics@@QAEJGGPAJ@Z -?GetDevFontList@SalGraphics@@QAEXPAVImplDevFontList@@@Z -?GetFontMetric@SalGraphics@@QAEXPAUImplFontMetricData@@@Z -?GetGlyphBoundRect@SalGraphics@@QAEEGPAJ000@Z -?GetGlyphOutline@SalGraphics@@QAEKGPAPAGPAPAUSalPoint@@PAPAE@Z -?GetKernPairs@SalGraphics@@QAEKKPAUImplKernPairData@@@Z -?ImplGetLogFontFromFontSelect@@YAXPAUHDC__@@PBUImplFontSelectData@@AAUtagLOGFONTW@@@Z -?ImplSalLogFontToFontA@@YAXABUtagLOGFONTA@@AAVFont@@@Z -?ImplSalLogFontToFontW@@YAXABUtagLOGFONTW@@AAVFont@@@Z -?SalEnumCharSetsProcExA@@YGHPBUtagENUMLOGFONTEXA@@PBUtagNEWTEXTMETRICEXA@@KJ@Z -?SalEnumFontsProcExA@@YGHPBUtagENUMLOGFONTEXA@@PBUtagNEWTEXTMETRICEXA@@KJ@Z -?SalEnumFontsProcExW@@YGHPBUtagENUMLOGFONTEXW@@PBUtagNEWTEXTMETRICEXW@@KJ@Z -?SalEnumQueryFontProcExA@@YGHPBUtagENUMLOGFONTEXA@@PBUtagNEWTEXTMETRICEXA@@KJ@Z -?SalEnumQueryFontProcExW@@YGHPBUtagENUMLOGFONTEXW@@PBUtagNEWTEXTMETRICEXW@@KJ@Z -?SetFont@SalGraphics@@QAEGPAUImplFontSelectData@@@Z -?SetTextColor@SalGraphics@@QAEXK@Z -_real@8@400f8000000000000000 -??0SalVirtualDevice@@AAE@XZ -??1SalVirtualDevice@@AAE@XZ -?CreateVirtualDevice@SalInstance@@QAEPAVSalVirtualDevice@@PAVSalGraphics@@JJG@Z -?DestroyVirtualDevice@SalInstance@@QAEXPAVSalVirtualDevice@@@Z -?GetGraphics@SalVirtualDevice@@QAEPAVSalGraphics@@XZ -?ReleaseGraphics@SalVirtualDevice@@QAEXPAVSalGraphics@@@Z -?SetSize@SalVirtualDevice@@QAEEJJ@Z -??0SalInfoPrinter@@AAE@XZ -??0SalPrinter@@AAE@XZ -??1SalInfoPrinter@@AAE@XZ -??1SalPrinter@@AAE@XZ -?AbortJob@SalPrinter@@QAEEXZ -?CreateInfoPrinter@SalInstance@@QAEPAVSalInfoPrinter@@PAUSalPrinterQueueInfo@@PAUImplJobSetup@@@Z -?CreatePrinter@SalInstance@@QAEPAVSalPrinter@@PAVSalInfoPrinter@@@Z -?DeletePrinterQueueInfo@SalInstance@@QAEXPAUSalPrinterQueueInfo@@@Z -?DestroyInfoPrinter@SalInstance@@QAEXPAVSalInfoPrinter@@@Z -?DestroyPrinter@SalInstance@@QAEXPAVSalPrinter@@@Z -?EndJob@SalPrinter@@QAEEXZ -?EndPage@SalPrinter@@QAEEXZ -?GetCapabilities@SalInfoPrinter@@QAEKPBUImplJobSetup@@G@Z -?GetDefaultPrinter@SalInstance@@QAE?AVString@@XZ -?GetErrorCode@SalPrinter@@QAEKXZ -?GetGraphics@SalInfoPrinter@@QAEPAVSalGraphics@@XZ -?GetPageInfo@SalInfoPrinter@@QAEXPBUImplJobSetup@@AAJ11111@Z -?GetPaperBinCount@SalInfoPrinter@@QAEKPBUImplJobSetup@@@Z -?GetPaperBinName@SalInfoPrinter@@QAE?AVString@@PBUImplJobSetup@@K@Z -?GetPrinterQueueInfo@SalInstance@@QAEXPAVImplPrnQueueList@@@Z -?GetPrinterQueueState@SalInstance@@QAEXPAUSalPrinterQueueInfo@@@Z -?ImplSalPrinterAbortJobAsync@@YAXPAUHDC__@@@Z -?ReleaseGraphics@SalInfoPrinter@@QAEXPAVSalGraphics@@@Z -?SalPrintAbortProc@@YGHPAUHDC__@@H@Z -?SetData@SalInfoPrinter@@QAEEKPAUImplJobSetup@@@Z -?SetPrinterDataA@SalInfoPrinter@@QAEEPAUImplJobSetup@@@Z -?Setup@SalInfoPrinter@@QAEEPAVSalFrame@@PAUImplJobSetup@@@Z -?StartJob@SalPrinter@@QAEEPBVString@@ABV2@1KEPAUImplJobSetup@@@Z -?StartPage@SalPrinter@@QAEPAVSalGraphics@@PAUImplJobSetup@@E@Z -??0ColorMask@@QAE@KKK@Z -??0SalBitmap@@QAE@XZ -??1SalBitmap@@QAE@XZ -?AcquireBuffer@SalBitmap@@QAEPAUBitmapBuffer@@E@Z -?Create@SalBitmap@@QAEEABV1@@Z -?Create@SalBitmap@@QAEEABV1@G@Z -?Create@SalBitmap@@QAEEABV1@PAVSalGraphics@@@Z -?Create@SalBitmap@@QAEEABVSize@@GABVBitmapPalette@@@Z -?Create@SalBitmap@@QAEEPAXEE@Z -?Destroy@SalBitmap@@QAEXXZ -?ImplCopyDIBOrDDB@SalBitmap@@SAPAXPAXE@Z -?ImplCreateDIB@SalBitmap@@SAPAXABVSize@@GABVBitmapPalette@@@Z -?ImplDecodeRLEBuffer@SalBitmap@@SAXPBEPAEABVSize@@E@Z -?ImplGetDIBColorCount@SalBitmap@@SAGPAX@Z -?ReleaseBuffer@SalBitmap@@QAEXPAUBitmapBuffer@@E@Z -??0SalOpenGL@@QAE@PAVSalGraphics@@@Z -??1SalOpenGL@@QAE@XZ -?Create@SalOpenGL@@SAEXZ -?GetOGLFnc@SalOpenGL@@SAPAXPBD@Z -?ImplFreeLib@SalOpenGL@@CAXXZ -?ImplInit@SalOpenGL@@CAEXZ -?ImplInitLib@SalOpenGL@@CAEXZ -?OGLEntry@SalOpenGL@@SAXPAVSalGraphics@@@Z -?OGLExit@SalOpenGL@@SAXPAVSalGraphics@@@Z -?OpenGLWndProc@@YGJPAUHWND__@@IIJ@Z -?Release@SalOpenGL@@SAXXZ -?mhOGLContext@SalOpenGL@@0PAUHGLRC__@@A -?mhOGLLastDC@SalOpenGL@@0PAUHDC__@@A -?mnOGLState@SalOpenGL@@0KA -WIN_PolyPolygon@16 -WIN_Polygon@12 -WIN_Rectangle@20 -?ImplLoadSalBitmap@@YAPAUHBITMAP__@@H@Z -?ImplLoadSalCursor@@YAPAUHICON__@@H@Z -?ImplLoadSalIcon@@YAEHAAPAUHICON__@@0@Z -?aSalShlData@@3USalShlData@@A -LibMain@12 -?ImplDispatchMessage@@YAJPBUtagMSG@@@Z -?ImplGetMessage@@YAHPAUtagMSG@@PAUHWND__@@II@Z -?ImplGetWindowLong@@YAJPAUHWND__@@H@Z -?ImplPeekMessage@@YAHPAUtagMSG@@PAUHWND__@@III@Z -?ImplPostMessage@@YAHPAUHWND__@@IIJ@Z -?ImplSalGetSystemEncoding@@YAGXZ -?ImplSalGetUniString@@YA?AVString@@PBDG@Z -?ImplSalGetWinAnsiString@@YA?AVByteString@@ABVString@@E@Z -?ImplSalWICompareAscii@@YAHPBGPBD@Z -?ImplSendMessage@@YAHPAUHWND__@@IIJ@Z -?ImplSetWindowLong@@YAJPAUHWND__@@HK@Z -??0SalInstance@@AAE@XZ -??0SalYieldMutex@@QAE@PAVSalInstanceData@@@Z -??1SalInstance@@AAE@XZ -??_7SalYieldMutex@@6BIMutex@vos@@@ -??_7SalYieldMutex@@6BOObject@vos@@@ -??_ESalYieldMutex@@W3AEPAXI@Z -??_GSalYieldMutex@@UAEPAXI@Z -?AcquireYieldMutex@SalInstance@@QAEXK@Z -?AnyInput@SalInstance@@SAEG@Z -?CreateChildFrame@SalInstance@@QAEPAVSalFrame@@PAUSystemParentData@@K@Z -?CreateFrame@SalInstance@@QAEPAVSalFrame@@PAV2@K@Z -?CreateObject@SalInstance@@QAEPAVSalObject@@PAVSalFrame@@@Z -?CreateSalInstance@@YAPAVSalInstance@@XZ -?DeInitSalData@@YAXXZ -?DeInitSalMain@@YAXXZ -?DestroyFrame@SalInstance@@QAEXPAVSalFrame@@@Z -?DestroyObject@SalInstance@@QAEXPAVSalObject@@@Z -?DestroySalInstance@@YAXPAVSalInstance@@@Z -?GetAcquireCount@SalYieldMutex@@QAEKK@Z -?GetConnectionIdentifier@SalInstance@@QAEPAXAAW4ConnectionIdentifierType@1@AAH@Z -?GetYieldMutex@SalInstance@@QAEPAVIMutex@vos@@XZ -?ImplDbgTestSolarMutex@@YAXXZ -?ImplSalAcquireYieldMutex@@YAXK@Z -?ImplSalReleaseYieldMutex@@YAKXZ -?ImplSalYield@@YAXE@Z -?ImplSalYieldMutexAcquire@@YAXXZ -?ImplSalYieldMutexAcquireWithWait@@YAXXZ -?ImplSalYieldMutexRelease@@YAXXZ -?ImplSalYieldMutexTryToAcquire@@YAEXZ -?InitSalData@@YAXXZ -?InitSalMain@@YAXXZ -?ReleaseYieldMutex@SalInstance@@QAEKXZ -?SalAbort@@YAXABVString@@@Z -?SalComWndProc@@YGJPAUHWND__@@IIJAAH@Z -?SalComWndProcA@@YGJPAUHWND__@@IIJ@Z -?SalComWndProcW@@YGJPAUHWND__@@IIJ@Z -?SetErrorEventCallback@SalInstance@@QAEXPAXP6A_N00H@Z@Z -?SetEventCallback@SalInstance@@QAEXPAXP6A_N00H@Z@Z -?SetFilterCallback@@YAXPAX0@Z -?Start@SalTimer@@SAXK@Z -?Yield@SalInstance@@QAEXE@Z -?acquire@SalYieldMutex@@UAAXXZ -?release@SalYieldMutex@@UAAXXZ -?tryToAcquire@SalYieldMutex@@UAAEXZ -?ImplSalStartTimer@@YAXKE@Z -?SalTimerProc@@YGXPAUHWND__@@IIK@Z -?SetCallback@SalTimer@@SAXP6AXXZ@Z -?Stop@SalTimer@@SAXXZ -??0SalSound@@QAE@XZ -??1SalSound@@QAE@XZ -?Create@SalSound@@QAEEXZ -?ImplCreate@SalSound@@QAEEXZ -?ImplDestroy@SalSound@@QAEXXZ -?ImplNotify@SalSound@@QAEXW4SoundNotification@@K@Z -?ImplSalHandleMCINotify@@YAXPAUHWND__@@IJ@Z -?ImplSetError@SalSound@@QAEXK@Z -?Init@SalSound@@QAEEPAVSalFrame@@ABVString@@AAK@Z -?Init@SalSound@@QAEEPAVSalFrame@@PBEKAAK@Z -?Pause@SalSound@@QAEXXZ -?Play@SalSound@@QAEXKKE@Z -?Release@SalSound@@SAXXZ -?SalSoundWndProcA@@YGJPAUHWND__@@IIJ@Z -?SalSoundWndProcW@@YGJPAUHWND__@@IIJ@Z -?Stop@SalSound@@QAEXXZ -?mhMCILib@SalSound@@0PAUHINSTANCE__@@A -?mnSoundState@SalSound@@0KA -?mpMCIFnc@SalSound@@0PAXA -?GetSummarySystemInfos@SalSystem@@SA?AVString@@K@Z -??0SalSystem@@QAE@XZ -??1SalSystem@@QAE@XZ -?AddRecentDoc@SalSystem@@QAEEPAVSalFrame@@ABVString@@@Z -?CreateSystem@SalInstance@@QAEPAVSalSystem@@XZ -?DestroySystem@SalInstance@@QAEXPAVSalSystem@@@Z -?StartProcess@SalSystem@@QAEEPAVSalFrame@@ABVString@@11@Z -_real@8@3ff78080808080808000 -_real@8@3ff88000000000000000 -_real@8@3ffcc800000000000000 -_real@8@4000c800000000000000 -??0?$_Vector_base@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAE@IABV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@@Z -?resize@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEXI@Z -_real@8@3fe189705f4136b4a800 -_real@8@3ff583126e978d4fe000 -_real@8@40088f3d4c83f2e79800 -_real@8@3ff6da740da740da7800 -_real@8@4003a000000000000000 -_real@8@3ff4b60b60b60b60b800 -_real@8@4002f000000000000000 -_real@8@4004e52ee0d31e3f5800 -_real@8@3ffbccccccccccccd000 -??1ApplicationAddress@@QAE@XZ -??1ApplicationEvent@@QAE@XZ -??0?$Reference@VXConnectionBroadcaster@connection@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0OWeakAggObject@cppu@@QAE@XZ -??0RVPSync@@QAE@ABV?$Reference@VXRmSync@client@portal@star@sun@com@@@uno@star@sun@com@@@Z -??1?$Reference@VXConnectionBroadcaster@connection@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXRmSync@client@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXStreamListener@io@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1ErrorBox@@UAE@XZ -??1RVPConnectionListener@@UAE@XZ -??_7OWeakAggObject@cppu@@6BOWeakObject@1@@ -??_7OWeakAggObject@cppu@@6BXAggregation@uno@star@sun@com@@@ -??_7RVPConnectionListener@@6BOWeakObject@cppu@@@ -??_7RVPConnectionListener@@6BXAggregation@uno@star@sun@com@@@ -??_7RVPConnectionListener@@6BXStreamListener@io@star@sun@com@@@ -??_7RVPConnectionListener@@6BXTypeProvider@lang@star@sun@com@@@ -??_7XAggregation@uno@star@sun@com@@6B@ -??_7XStreamListener@io@star@sun@com@@6B@ -??_C@_0CA@NCCL@com?4sun?4star?4io?4XStreamListener?$AA@ -??_C@_0CP@PMNK@com?4sun?4star?4connection?4XConnect@ -??_GOWeakAggObject@cppu@@MAEPAXI@Z -??_GRVPConnectionListener@@UAEPAXI@Z -?CheckForRVPSync@RVPSync@@QAEXPBD@Z -?LinkStubsignalSolarThread@RVPConnectionListener@@CAJPAX0@Z -?__query@?$Reference@VXConnectionBroadcaster@connection@star@sun@com@@@uno@star@sun@com@@CAPAVXConnectionBroadcaster@connection@345@PAVXInterface@2345@@Z -?acquire@OWeakAggObject@cppu@@WM@AAXXZ -?closed@RVPConnectionListener@@UAAXXZ -?disposing@RVPConnectionListener@@UAAXABUEventObject@lang@star@sun@com@@@Z -?error@RVPConnectionListener@@UAAXABVAny@uno@star@sun@com@@@Z -?queryInterface@OWeakAggObject@cppu@@WM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z -?release@OWeakAggObject@cppu@@WM@AAXXZ -?s_pType_com_sun_star_connection_XConnectionBroadcaster@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXConnectionBroadcaster@connection@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_io_XStreamListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXStreamListener@io@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?set@?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAAEPAVXInterface@2345@@Z -?signalSolarThread@RVPConnectionListener@@AAEJPAX@Z -?started@RVPConnectionListener@@UAAXXZ -?terminated@RVPConnectionListener@@UAAXXZ -??1?$Reference@VXRmStatus@client@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Sequence@V?$Sequence@C@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QAE@XZ -?s_pType@?$Sequence@V?$Sequence@C@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType@?$Sequence@VOUString@rtl@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -??0VclOTimer@@QAE@XZ -??1VclOTimer@@UAE@XZ -??_7VclOTimer@@6BOObject@vos@@@ -??_7VclOTimer@@6BOReference@vos@@@ -??_7VclOTimer@@6BOTimer@vos@@@ -??_8VclOTimer@@7B@ -??_EVclOTimer@@$4PPPPPPPM@BA@AEPAXI@Z -??_GVclOTimer@@UAEPAXI@Z -?LinkStubTimeout@VclOTimer@@KAJPAX0@Z -?StartTimer@VclOTimer@@QAEXXZ -?StopTimer@VclOTimer@@QAEXXZ -?Timeout@VclOTimer@@IAEJPAX@Z -?getClassInfo@OTimer@vos@@$4PPPPPPPM@M@BAABUOClassInfo@2@XZ -?onShot@VclOTimer@@MAAXXZ -?referenced@OReference@vos@@UBAJXZ -??0BitmapColor@@QAE@XZ -??1BitmapPalette@@QAE@XZ -?GetBestMatchingColor@BitmapReadAccess@@QAE?AVBitmapColor@@ABV2@@Z -??1?$Reference@VXHyphenator@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1FontMetric@@QAE@XZ -??1LineBreakHyphenationOptions@i18n@star@sun@com@@QAE@XZ -??1LineBreakResults@i18n@star@sun@com@@QAE@XZ -??1LineBreakUserOptions@i18n@star@sun@com@@QAE@XZ -?Copy@String@@QBE?AV1@GG@Z -?GetNonMnemonicString@OutputDevice@@SA?AVString@@ABV2@@Z -?realloc@?$Sequence@J@uno@star@sun@com@@QAAXJ@Z -??0List@@QAE@GGG@Z -??1?$Reference@VXBridge@bridge@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXBridgeFactory@bridge@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXInstanceProvider@bridge@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXRmPrintSpooler@client@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXRmSpoolLauncher@client@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1PrinterPage@@QAE@XZ -??_C@_01KFMA@?$EA?$AA@ -??_C@_0CG@CIOF@com?4sun?4star?4portal?4client?4XRmPr@ -??_C@_0CH@OMML@com?4sun?4star?4lang?4XMultiServiceF@ -??_C@_0CL@BGED@com?4sun?4star?4portal?4client?4XRmPr@ -??_C@_0CL@NLFK@com?4sun?4star?4portal?4client?4XRmOu@ -??_C@_0CM@FPPM@com?4sun?4star?4portal?4client?4XRmSp@ -?GetFullName@RemotePrinterInfo@@QBE?AVString@@XZ -?LinkStubUserSetupCompleted@Printer@@CAJPAX0@Z -?UserSetupCompleted@Printer@@AAEJPAVAny@uno@star@sun@com@@@Z -?__query@?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@CAPAVXMultiServiceFactory@lang@345@PAVXInterface@2345@@Z -?__query@?$Reference@VXRmPrintSpooler@client@portal@star@sun@com@@@uno@star@sun@com@@CAPAVXRmPrintSpooler@client@portal@345@PAVXInterface@2345@@Z -?__query@?$Reference@VXRmSpoolLauncher@client@portal@star@sun@com@@@uno@star@sun@com@@CAPAVXRmSpoolLauncher@client@portal@345@PAVXInterface@2345@@Z -?s_pType_com_sun_star_lang_XMultiServiceFactory@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_portal_client_XRmOutputDevice@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_portal_client_XRmPrintSpooler@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXRmPrintSpooler@client@portal@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_portal_client_XRmSpoolLauncher@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXRmSpoolLauncher@client@portal@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??0?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$_List_base@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@V?$allocator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@1@@Z -??0?$_List_iterator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@U?$_N_Tr@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@_STL@@QAE@ABU01@@Z -??0?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@QAE@XZ -??1?$InterfacePairCache@VXRmVirtualDevice@client@portal@star@sun@com@@VXRmOutputDevice@23456@@vcl@@QAE@XZ -??1?$Reference@VXMultiInstanceFactory@client@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$_STL_alloc_proxy@PAU?$_List_node@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@_STL@@U12@V?$allocator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@_STL@@QAE@XZ -??1?$allocator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@_STL@@QAE@XZ -??1?$list@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@V?$allocator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@_STL@@QAE@XZ -??1?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@QAE@XZ -??3@YAXPAX0@Z -??4?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??_2uno@star@sun@com@@YAEABVAny@0123@AAV?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@0123@@Z -??_2uno@star@sun@com@@YAEABVAny@0123@AAV?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@0123@@Z -??_C@_0CM@KHAB@com?4sun?4star?4portal?4client?4XRmVi@ -?_M_create_node@?$list@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@V?$allocator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@_STL@@IAEPAU?$_List_node@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@ABU?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@2@@Z -?begin@?$list@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@V?$allocator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@_STL@@QAE?AU?$_List_iterator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@U?$_N_Tr@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@2@XZ -?createRemoteVirdevCache@@YAXABV?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@@Z -?deallocate@?$allocator@U?$_List_node@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@_STL@@@_STL@@QBEXPAU?$_List_node@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@I@Z -?erase@?$list@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@V?$allocator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@_STL@@QAE?AU?$_List_iterator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@U?$_N_Tr@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@2@U32@@Z -?eraseRemoteVirdevCache@@YAXXZ -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@VAny@uno@star@sun@com@@@2345@@Z -?insert@?$list@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@V?$allocator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@_STL@@QAE?AU?$_List_iterator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@U?$_N_Tr@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@2@U32@ABU?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@2@@Z -?pop_front@?$list@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@V?$allocator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@_STL@@QAEXXZ -?push_front@?$list@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@V?$allocator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@_STL@@QAEXABU?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@2@@Z -?s_pType_com_sun_star_portal_client_XRmVirtualDevice@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?takeInterface@?$InterfacePairCache@VXRmVirtualDevice@client@portal@star@sun@com@@VXRmOutputDevice@23456@@vcl@@QAE?AU?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@XZ -??1Dialog@@UAE@XZ -??1ModalDialog@@UAE@XZ -??1ModelessDialog@@UAE@XZ -??1?$Sequence@UIDLKeyNameInfo@client@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??_C@_0CK@NHMM@com?4sun?4star?4portal?4client?4IDLKe@ -?getCppuType@@YAABVType@uno@star@sun@com@@PBUIDLKeyNameInfo@client@portal@345@@Z -?s_pType@?$Sequence@UIDLKeyNameInfo@client@portal@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_portal_client_IDLKeyNameInfo@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUIDLKeyNameInfo@client@portal@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??1MenuItemData@@QAE@XZ -??1MenuLogo@@QAE@XZ -?GetAction@DropEvent@@QBE?AW4DropAction@@XZ -?GetSourceOptions@DropEvent@@QBEGXZ -?GetWindowType@DropEvent@@QBEEXZ -??1InfoBox@@UAE@XZ -??1QueryBox@@UAE@XZ -??1WarningBox@@UAE@XZ -??1TabPage@@UAE@XZ -??1Button@@UAE@XZ -??1CancelButton@@UAE@XZ -??1CheckBox@@UAE@XZ -??1HelpButton@@UAE@XZ -??1OKButton@@UAE@XZ -??1?$Reference@VXDragSourceListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -?queryInterface@cppu@@YA?AVAny@uno@star@sun@com@@ABVType@3456@PAVXTransferable@datatransfer@456@@Z -?GetCurr@International@@QBE?AVString@@J@Z -?IsEmptyValue@LongCurrencyFormatter@@QBEEXZ -??0UnoDragDropListenerAdaptor@@QAE@AAVIDragDropListener@@@Z -??0UnoSystemDragManager@@QAE@PAVUnoSystemExchange@@@Z -??1?$Reference@VXDataTransfer@system@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXDragDropListener@system@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXSystemDragManager@system@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1IDataTrans@@UAE@XZ -??1UnoDataTrans@@MAE@XZ -??1UnoDragDropListenerAdaptor@@UAE@XZ -??_7ISystemDragManager@@6B@ -??_7UnoDataTrans@@6B@ -??_7UnoDragDropListenerAdaptor@@6B@ -??_7UnoDragDropListenerAdaptor@@6BXDragDropListener@system@portal@star@sun@com@@@ -??_7UnoDragDropListenerAdaptor@@6BXTypeProvider@lang@star@sun@com@@@ -??_7UnoSystemDragManager@@6B@ -??_7XDragDropListener@system@portal@star@sun@com@@6B@ -??_C@_0CJ@BJGI@com?4sun?4star?4portal?4system?4XData@ -??_C@_0CN@KAAC@com?4sun?4star?4portal?4system?4XDrag@ -??_C@_0CO@IBOH@com?4sun?4star?4portal?4system?4XSyst@ -??_GUnoDataTrans@@MAEPAXI@Z -??_GUnoDragDropListenerAdaptor@@UAEPAXI@Z -?aquire@UnoDataTrans@@UAEXXZ -?beginDragDrop@UnoDragDropListenerAdaptor@@UAAXABV?$Reference@VXDataTransfer@system@portal@star@sun@com@@@uno@star@sun@com@@F@Z -?drop@UnoDragDropListenerAdaptor@@UAAFJJABVAny@uno@star@sun@com@@G@Z -?endDragDrop@UnoDragDropListenerAdaptor@@UAAXXZ -?executeDrag@UnoSystemDragManager@@UAE?AW4DropAction@@PAVIDataTrans@@G@Z -?queryDrop@UnoDragDropListenerAdaptor@@UAAFJJABVAny@uno@star@sun@com@@G@Z -?registerListener@UnoSystemDragManager@@UAEXAAVIDragDropListener@@@Z -?release@UnoDataTrans@@UAEXXZ -?s_pType_com_sun_star_portal_system_XDataTransfer@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDataTransfer@system@portal@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_portal_system_XDragDropListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragDropListener@system@portal@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_portal_system_XSystemDragManager@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSystemDragManager@system@portal@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??0UnoClipboardListenerAdaptor@@QAE@AAVIClipboardListener@@@Z -??0UnoSystemClipboard@@QAE@PAVUnoSystemExchange@@@Z -??1?$Reference@VXClipboardListener@system@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXSystemClipboard@system@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1UnoClipboardListenerAdaptor@@UAE@XZ -??_7ISystemClipboard@@6B@ -??_7UnoClipboardListenerAdaptor@@6B@ -??_7UnoClipboardListenerAdaptor@@6BXClipboardListener@system@portal@star@sun@com@@@ -??_7UnoClipboardListenerAdaptor@@6BXTypeProvider@lang@star@sun@com@@@ -??_7UnoSystemClipboard@@6B@ -??_7XClipboardListener@system@portal@star@sun@com@@6B@ -??_C@_0CM@PDGG@com?4sun?4star?4portal?4system?4XSyst@ -??_C@_0CO@GEEE@com?4sun?4star?4portal?4system?4XClip@ -??_GUnoClipboardListenerAdaptor@@UAEPAXI@Z -?changed@UnoClipboardListenerAdaptor@@UAAXXZ -?clear@UnoSystemClipboard@@UAEXXZ -?cleared@UnoClipboardListenerAdaptor@@UAAXXZ -?copy@UnoSystemClipboard@@UAEXPAVIDataTrans@@@Z -?paste@UnoSystemClipboard@@UAEPAVIDataTrans@@XZ -?registerListener@UnoSystemClipboard@@UAEXAAVIClipboardListener@@@Z -?s_pType_com_sun_star_portal_system_XClipboardListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXClipboardListener@system@portal@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_portal_system_XSystemClipboard@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSystemClipboard@system@portal@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??0UnoDataTransAdaptor@@QAE@PAVIDataTrans@@@Z -??0UnoSystemEnvironment@@QAE@XZ -??0UnoSystemExchange@@QAE@XZ -??1?$Reference@VXSystemExchange@system@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1UnoDataTransAdaptor@@UAE@XZ -??1UnoSystemEnvironment@@UAE@XZ -??1UnoSystemExchange@@UAE@XZ -??_7UnoDataTransAdaptor@@6B@ -??_7UnoDataTransAdaptor@@6BXDataTransfer@system@portal@star@sun@com@@@ -??_7UnoDataTransAdaptor@@6BXTypeProvider@lang@star@sun@com@@@ -??_7UnoSystemEnvironment@@6B@ -??_7UnoSystemEnvironment@@6BXSystemEnvironment@system@portal@star@sun@com@@@ -??_7UnoSystemEnvironment@@6BXTypeProvider@lang@star@sun@com@@@ -??_7UnoSystemExchange@@6B@ -??_7XDataTransfer@system@portal@star@sun@com@@6B@ -??_7XSystemEnvironment@system@portal@star@sun@com@@6B@ -??_C@_0CL@MKJD@com?4sun?4star?4portal?4system?4XSyst@ -??_C@_0CO@HAPI@com?4sun?4star?4portal?4system?4XSyst@ -??_GUnoDataTransAdaptor@@UAEPAXI@Z -??_GUnoSystemEnvironment@@UAEPAXI@Z -??_GUnoSystemExchange@@UAEPAXI@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@C@2345@@Z -?getData@UnoDataTrans@@UAEPAEKAAK@Z -?getData@UnoDataTransAdaptor@@UAA?AV?$Sequence@C@uno@star@sun@com@@ABVOUString@rtl@@@Z -?getSystemExchange@UnoSystemExchange@@SAPAV1@XZ -?getSystemRepresentation@UnoSystemEnvironment@@UAA?AVAny@uno@star@sun@com@@ABV23456@@Z -?getTypeList@UnoDataTrans@@UBEPAKAAK@Z -?getTypeList@UnoDataTransAdaptor@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ -?s_pType_com_sun_star_portal_system_XSystemEnvironment@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSystemEnvironment@system@portal@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_portal_system_XSystemExchange@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSystemExchange@system@portal@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?toAsciiUpperCase@OUString@rtl@@QBE?AV12@XZ -??0?$Reference@VXMultiInstanceFactory@client@portal@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0RMSound@@QAE@XZ -??0XRmsSoundCallback@@QAE@PAVRMSound@@@Z -??1?$Reference@VXSoundCallback@client@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1RMSound@@QAE@XZ -??1XRmsSoundCallback@@UAE@XZ -??_7XRmsSoundCallback@@6B@ -??_7XRmsSoundCallback@@6BXSoundCallback@client@portal@star@sun@com@@@ -??_7XRmsSoundCallback@@6BXTypeProvider@lang@star@sun@com@@@ -??_7XSoundCallback@client@portal@star@sun@com@@6B@ -??_C@_0CE@NAOC@com?4sun?4star?4portal?4client?4XRmSo@ -??_C@_0CK@CCHM@com?4sun?4star?4portal?4client?4XSoun@ -??_GXRmsSoundCallback@@UAEPAXI@Z -?ClearError@RMSound@@QAEXXZ -?Create@RMSound@@QAEXPAVSound@@@Z -?Notify@XRmsSoundCallback@@UAAXGK@Z -?Pause@RMSound@@QAEXXZ -?Play@RMSound@@QAEXXZ -?SetLoopMode@RMSound@@QAEXE@Z -?SetPlayTime@RMSound@@QAEXK@Z -?SetStartTime@RMSound@@QAEXK@Z -?Stop@RMSound@@QAEXXZ -?createRemoteSoundCache@@YAXABV?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@@Z -?eraseRemoteSoundCache@@YAXXZ -?s_pType_com_sun_star_portal_client_XSoundCallback@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSoundCallback@client@portal@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?set@?$Reference@VXSoundCallback@client@portal@star@sun@com@@@uno@star@sun@com@@QAAEPAVXSoundCallback@client@portal@345@@Z -?Create@RmVirtualDevice@@QAEXKJJG@Z -?ResizeOutputSizePixel@RmVirtualDevice@@QAEXJJ@Z -?SetOutputSizePixel@RmVirtualDevice@@QAEXJJ@Z -??0?$Reference@VXRmJavaBitmap@client@portal@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0RMBitmap@@QAE@PAVBitmap@@@Z -??1?$Reference@VXRmJavaBitmap@client@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1RMBitmap@@QAE@XZ -??_2uno@star@sun@com@@YAEABVAny@0123@AAV?$Reference@VXRmJavaBitmap@client@portal@star@sun@com@@@0123@@Z -??_C@_0CF@LPJE@com?4sun?4star?4portal?4client?4XRmBi@ -??_C@_0CJ@NNPC@com?4sun?4star?4portal?4client?4XRmJa@ -?Create@RMBitmap@@QAEXXZ -?CreateGet@RMBitmap@@QAEXPAVOutputDevice@@ABVPoint@@ABVSize@@@Z -?Draw@RMBitmap@@QAEXPAVOutputDevice@@ABVPoint@@ABVSize@@12@Z -?DrawAlpha@RMBitmap@@QAEXPAVOutputDevice@@ABVPoint@@ABVSize@@12ABVAlphaMask@@@Z -?DrawEx@RMBitmap@@QAEXPAVOutputDevice@@ABVPoint@@ABVSize@@12ABVBitmap@@@Z -?DrawMask@RMBitmap@@QAEXPAVOutputDevice@@ABVPoint@@ABVSize@@12ABVColor@@@Z -?Get@RMBitmap@@QAEXAAVBitmap@@@Z -?GetBitmap@AlphaMask@@QBE?AVBitmap@@XZ -?TransferLines@RMBitmap@@AAEJJE@Z -?createRemoteBitmapCache@@YAXABV?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@@Z -?eraseRemoteBitmapCache@@YAXXZ -?s_pType_com_sun_star_portal_client_XRmJavaBitmap@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXRmJavaBitmap@client@portal@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??1?$Reference@VXEventHdl@client@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1EventIDIndex@@QAE@XZ -??_C@_0CK@JGLJ@com?4sun?4star?4portal?4client?4XRmFr@ -?createRemoteWindowCache@@YAXABV?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@@Z -?eraseRemoteWindowCache@@YAXXZ -??0OWeakObject@cppu@@QAE@XZ -??0RemotePrinterList@@QAE@ABV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@@Z -??1?$Reference@VXAtomServer@util@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXConnector@connection@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1RemotePrintServerInfo@@QAE@XZ -??1RemotePrintServerInfoList@@QAE@XZ -??1RemotePrinterInfoList@@QAE@XZ -??1RemotePrinterList@@QAE@XZ -??_C@_0BO@COOE@com?4sun?4star?4util?4XAtomServer?$AA@ -??_C@_0CD@GPAO@com?4sun?4star?4bridge?4XBridgeFacto@ -??_C@_0CD@NJNE@com?4sun?4star?4connection?4XConnect@ -??_C@_0CO@KGNF@com?4sun?4star?4portal?4client?4XRmPr@ -??_C@_0DB@JELN@com?4sun?4star?4portal?4client?4XRmPr@ -?AddPrinter@RemotePrinterList@@QAEEABVString@@0EEABV?$Sequence@C@uno@star@sun@com@@@Z -?CreateNewPrinterConnection@RemotePrinterList@@QAEXABVString@@AAV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@AAV?$Reference@VXConnection@connection@star@sun@com@@@4567@AAV?$Reference@VXBridgeFactory@bridge@star@sun@com@@@4567@@Z -?FindLocalPrintServer@RemotePrinterList@@QAE?AVString@@ABV2@@Z -?GetDefaultPrinter@RemotePrinterList@@QBEPAURemotePrinterInfo@@XZ -?GetPrinter@RemotePrinterList@@QAEPAURemotePrinterInfo@@ABVString@@0@Z -?GetServerAtoms@RemotePrinterList@@QAEPAVAtomClient@utl@@ABVString@@@Z -?GetServerFactory@RemotePrinterList@@QAE?AV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@ABVString@@@Z -?__query@?$Reference@VXBridgeFactory@bridge@star@sun@com@@@uno@star@sun@com@@CAPAVXBridgeFactory@bridge@345@PAVXInterface@2345@@Z -?__query@?$Reference@VXConnector@connection@star@sun@com@@@uno@star@sun@com@@CAPAVXConnector@connection@345@PAVXInterface@2345@@Z -?s_pType_com_sun_star_bridge_XBridgeFactory@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXBridgeFactory@bridge@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_connection_XConnector@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXConnector@connection@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_util_XAtomServer@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAtomServer@util@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?set@?$Reference@VXBridgeFactory@bridge@star@sun@com@@@uno@star@sun@com@@QAAEPAVXBridgeFactory@bridge@345@@Z -?set@?$Reference@VXConnection@connection@star@sun@com@@@uno@star@sun@com@@QAAEPAVXConnection@connection@345@@Z -??0?$Sequence@UKernPair@client@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Sequence@K@uno@star@sun@com@@QAE@XZ -??1?$Sequence@UIDLFontData@client@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Sequence@UKernPair@client@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1IDLFontMetricData@client@portal@star@sun@com@@QAE@XZ -??8RemoteFont@@QBEEABU0@@Z -??_C@_0CE@DBFC@com?4sun?4star?4portal?4client?4KernP@ -??_C@_0CH@IPKB@com?4sun?4star?4portal?4client?4IDLFo@ -?getCppuType@@YAABVType@uno@star@sun@com@@PBUIDLFontData@client@portal@345@@Z -?s_pType@?$Sequence@K@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType@?$Sequence@UIDLFontData@client@portal@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType@?$Sequence@UKernPair@client@portal@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_portal_client_IDLFontData@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUIDLFontData@client@portal@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_portal_client_KernPair@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUKernPair@client@portal@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??1BitmapBuffer@@QAE@XZ -??1ColorMask@@QAE@XZ -??0CORmStarOffice@@QAE@XZ -??1CORmStarOffice@@UAE@XZ -??_7CORmStarOffice@@6B@ -??_7CORmStarOffice@@6BXRmStarOffice@client@portal@star@sun@com@@@ -??_7CORmStarOffice@@6BXTypeProvider@lang@star@sun@com@@@ -??_7XRmStarOffice@client@portal@star@sun@com@@6B@ -??_C@_0CJ@DOI@com?4sun?4star?4portal?4client?4XRmSt@ -??_C@_0DB@DGBD@com?4sun?4star?4portal?4client?4XMult@ -??_GCORmStarOffice@@UAEPAXI@Z -?AddRemotePrinter@CORmStarOffice@@UAAXABVOUString@rtl@@0EE@Z -?SetUserInfoForPrinting@CORmStarOffice@@UAAXABVOUString@rtl@@0@Z -?Start@CORmStarOffice@@UAA?AW4_StartUpError@client@portal@star@sun@com@@ABUStartupData@34567@@Z -?__query@?$Reference@VXMultiInstanceFactory@client@portal@star@sun@com@@@uno@star@sun@com@@CAPAVXMultiInstanceFactory@client@portal@345@PAVXInterface@2345@@Z -?eraseRemoteCaches@CORmStarOffice@@SAXXZ -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@V?$Sequence@C@uno@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@VOUString@rtl@@@2345@@Z -?getDummyWorkWindow@@YAPAVWorkWindow@@XZ -?m_isBeanServer@CORmStarOffice@@1EA -?m_isStarOneServer@CORmStarOffice@@1EA -?m_isStarted@CORmStarOffice@@1EA -?resetState@CORmStarOffice@@SAXXZ -?s_pType_com_sun_star_portal_client_XMultiInstanceFactory@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXMultiInstanceFactory@client@portal@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_portal_client_XRmStarOffice@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXRmStarOffice@client@portal@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?set@?$Reference@VXMultiInstanceFactory@client@portal@star@sun@com@@@uno@star@sun@com@@QAAEPAVXMultiInstanceFactory@client@portal@345@@Z -??0XRmsEventHdl@@QAE@PAVWindow@@@Z -??1XRmsEventHdl@@UAE@XZ -??_7XEventHdl@client@portal@star@sun@com@@6B@ -??_7XRmsEventHdl@@6B@ -??_7XRmsEventHdl@@6BXEventHdl@client@portal@star@sun@com@@@ -??_7XRmsEventHdl@@6BXTypeProvider@lang@star@sun@com@@@ -??_C@_0CF@FEGO@com?4sun?4star?4portal?4client?4XEven@ -??_GXRmsEventHdl@@UAEPAXI@Z -?Close@XRmsEventHdl@@UAAXXZ -?DropFile@XRmsEventHdl@@UAAEABURmDropFileEvent@client@portal@star@sun@com@@@Z -?GetFocus@XRmsEventHdl@@UAAXXZ -?KeyInput@XRmsEventHdl@@UAAXGGG@Z -?KeyUp@XRmsEventHdl@@UAAXGG@Z -?LoseFocus@XRmsEventHdl@@UAAXXZ -?MouseButtonDown@XRmsEventHdl@@UAAXFFGGK@Z -?MouseButtonUp@XRmsEventHdl@@UAAXFFGGK@Z -?MouseMove@XRmsEventHdl@@UAAXFFGGK@Z -?MouseWheel@XRmsEventHdl@@UAAXJJGKJJKE@Z -?Paint@XRmsEventHdl@@UAAXJJJJ@Z -?QueryDropFile@XRmsEventHdl@@UAAEAAURmDropFileEvent@client@portal@star@sun@com@@@Z -?Resize@XRmsEventHdl@@UAAXFF@Z -?UserEvent@XRmsEventHdl@@UAAXKABVAny@uno@star@sun@com@@@Z -?s_pType_com_sun_star_portal_client_XEventHdl@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXEventHdl@client@portal@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?setWindow@XRmsEventHdl@@QAEXPAVWindow@@@Z -??0RemoteGlyphPeer@@QAE@XZ -??1RemoteGlyphPeer@@UAE@XZ -??_7GlyphCachePeer@@6B@ -??_7RemoteGlyphPeer@@6B@ -??_GGlyphCachePeer@@MAEPAXI@Z -??_GRemoteGlyphPeer@@UAEPAXI@Z -?GetBitmap1@RemoteGlyphPeer@@QAEABVBitmap@@AAVServerFont@@H@Z -?GetBitmap8@RemoteGlyphPeer@@QAEABVBitmap@@AAVServerFont@@H@Z -?RemovingFont@GlyphCachePeer@@UAEXAAVServerFont@@@Z -?RemovingGlyph@GlyphCachePeer@@UAEXAAVServerFont@@AAVGlyphData@@H@Z -?RemovingGlyph@RemoteGlyphPeer@@MAEXAAVServerFont@@AAVGlyphData@@H@Z -??0?$_Ht_It@U?$pair@$$CBHVGlyphData@@@_STL@@U?$_N_Tr@U?$pair@$$CBHVGlyphData@@@_STL@@@2@HU?$hash@H@2@U?$_S1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@_STL@@QAE@PBU?$_hT__N@U?$pair@$$CBHVGlyphData@@@_STL@@@1@PBV?$hashtable@U?$pair@$$CBHVGlyphData@@@_STL@@HU?$hash@H@2@U?$_S1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@1@@Z -??0?$_Vector_base@PAXV?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@1@@Z -??0?$_Vector_base@PAXV?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@_STL@@@_STL@@QAE@IABV?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@1@@Z -??0GlyphCache@@QAE@K@Z -??1?$_STL_alloc_proxy@IU?$_hT__N@U?$pair@$$CBHVGlyphData@@@_STL@@@_STL@@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@_STL@@QAE@XZ -??1?$hash_map@HVGlyphData@@U?$hash@H@_STL@@U?$equal_to@H@3@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@3@@_STL@@QAE@XZ -??1?$vector@PAXV?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@_STL@@@_STL@@QAE@XZ -??1GlyphCache@@QAE@XZ -??1ServerFont@@MAE@XZ -??E?$_Ht_It@U?$pair@$$CBHVGlyphData@@@_STL@@U?$_N_Tr@U?$pair@$$CBHVGlyphData@@@_STL@@@2@HU?$hash@H@2@U?$_S1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@_STL@@QAE?AU01@H@Z -??_7ServerFont@@6B@ -??_GServerFont@@MAEPAXI@Z -?AddFontPath@GlyphCache@@QAEXABVString@@@Z -?CalcByteCount@GlyphCache@@ABEKXZ -?ClearFontPath@GlyphCache@@QAEXXZ -?EnsureInstance@GlyphCache@@SAXAAVGlyphCachePeer@@_N@Z -?GarbageCollect@GlyphCache@@AAEXXZ -?GarbageCollect@ServerFont@@MAEXJ@Z -?GetFontFaceNumber@ServerFont@@UBEHXZ -?GetFontFileName@ServerFont@@UBEPBVOString@rtl@@XZ -?GetFontHandle@GlyphCache@@QAEPAXH@Z -?GetFontId@ServerFont@@UBEHXZ -?GetGlyphData@ServerFont@@QAEAAVGlyphData@@H@Z -?GrowNotify@GlyphCache@@AAEXXZ -?Release@ServerFont@@IBEJXZ -?SetFontId@ServerFont@@UAEXH@Z -?TestFont@ServerFont@@UBE_NXZ -?TransformPoint@ServerFont@@QBE?AVPoint@@ABV2@@Z -?UncacheFont@GlyphCache@@QAEXAAVServerFont@@@Z -?_M_allocate_and_copy@?$vector@PAXV?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@_STL@@@_STL@@IAEPAPAXIPAPAX0@Z -?_M_initialize_buckets@?$hashtable@U?$pair@$$CBHVGlyphData@@@_STL@@HU?$hash@H@2@U?$_S1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@_STL@@AAEXI@Z -?_M_insert_overflow@?$vector@PAXV?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@_STL@@@_STL@@IAEXPAPAXABQAXI@Z -?_M_new_node@?$hashtable@U?$pair@$$CBHVGlyphData@@@_STL@@HU?$hash@H@2@U?$_S1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@_STL@@AAEPAU?$_hT__N@U?$pair@$$CBHVGlyphData@@@_STL@@@2@ABU?$pair@$$CBHVGlyphData@@@2@@Z -?begin@?$hashtable@U?$pair@$$CBHVGlyphData@@@_STL@@HU?$hash@H@2@U?$_S1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_It@U?$pair@$$CBHVGlyphData@@@_STL@@U?$_N_Tr@U?$pair@$$CBHVGlyphData@@@_STL@@@2@HU?$hash@H@2@U?$_S1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@2@XZ -?erase@?$hash_map@HVGlyphData@@U?$hash@H@_STL@@U?$equal_to@H@3@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@3@@_STL@@QAEXU?$_Ht_It@U?$pair@$$CBHVGlyphData@@@_STL@@U?$_N_Tr@U?$pair@$$CBHVGlyphData@@@_STL@@@2@HU?$hash@H@2@U?$_S1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@2@@Z -?find@?$hashtable@U?$pair@$$CBHVGlyphData@@@_STL@@HU?$hash@H@2@U?$_S1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_It@U?$pair@$$CBHVGlyphData@@@_STL@@U?$_N_Tr@U?$pair@$$CBHVGlyphData@@@_STL@@@2@HU?$hash@H@2@U?$_S1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@2@ABH@Z -?get_allocator@?$vector@PAXV?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@_STL@@@_STL@@QBE?AV?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@XZ -?pSingleton@GlyphCache@@0PAV1@A -?resize@?$hashtable@U?$pair@$$CBHVGlyphData@@@_STL@@HU?$hash@H@2@U?$_S1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@_STL@@QAEXI@Z -_real@8@3fef8000000000000000 -_real@8@3ff5e4c3881dbb0fa800 -??1VirtDevServerFont@@UAE@XZ -??_7VirtDevServerFont@@6B@ -??_GVirtDevServerFont@@UAEPAXI@Z -?ClearFontList@VirtDevServerFont@@KAXXZ -?GetAntialiasAdvice@VirtDevServerFont@@UBE_NXZ -?GetGlyphBitmap1@VirtDevServerFont@@UBE_NHAAURawBitmap@@@Z -?GetGlyphBitmap8@VirtDevServerFont@@UBE_NHAAURawBitmap@@@Z -?GetGlyphIndex@VirtDevServerFont@@MBEHG@Z -?GetGlyphOutline@VirtDevServerFont@@UBE_NHAAVPolyPolygon@@@Z -?InitGlyphData@VirtDevServerFont@@MBEXHAAVGlyphData@@@Z -??0?$_Ht_It@PAUFtFontInfo@@U?$_C_Tr@PAUFtFontInfo@@@_STL@@PAU1@U?$hash@PAUFtFontInfo@@@3@U?$_Identity@PAUFtFontInfo@@@3@U?$equal_to@PAUFtFontInfo@@@3@V?$allocator@PAUFtFontInfo@@@3@@_STL@@QAE@PBU?$_hT__N@PAUFtFontInfo@@@1@PBV?$hashtable@PAUFtFontInfo@@PAU1@U?$hash@PAUFtFontInfo@@@_STL@@U?$_Identity@PAUFtFontInfo@@@3@U?$equal_to@PAUFtFontInfo@@@3@V?$allocator@PAUFtFontInfo@@@3@@1@@Z -??0?$_Ht_It@U?$pair@$$CBHH@_STL@@U?$_C_Tr@U?$pair@$$CBHH@_STL@@@2@HU?$hash@H@2@U?$_S1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAE@PBU?$_hT__N@U?$pair@$$CBHH@_STL@@@1@PBV?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_S1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@1@@Z -??0?$_STL_alloc_proxy@PAGGV?$allocator@G@_STL@@@_STL@@QAE@ABV?$allocator@G@1@PAG@Z -??0?$_STL_alloc_proxy@PAKKV?$allocator@K@_STL@@@_STL@@QAE@ABV?$allocator@K@1@PAK@Z -??0?$_STL_alloc_proxy@PAPAXPAXV?$allocator@PAUFtFontInfo@@@_STL@@@_STL@@QAE@ABV?$allocator@PAUFtFontInfo@@@1@PAPAX@Z -??0?$_Vector_base@PAXV?$allocator@PAUFtFontInfo@@@_STL@@@_STL@@QAE@IABV?$allocator@PAUFtFontInfo@@@1@@Z -??0?$_Vector_base@PAXV?$allocator@U?$pair@$$CBGG@_STL@@@_STL@@@_STL@@QAE@IABV?$allocator@U?$pair@$$CBGG@_STL@@@1@@Z -??0?$_Vector_base@PAXV?$allocator@U?$pair@$$CBHH@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBHH@_STL@@@1@@Z -??0?$_Vector_base@PAXV?$allocator@U?$pair@$$CBHH@_STL@@@_STL@@@_STL@@QAE@IABV?$allocator@U?$pair@$$CBHH@_STL@@@1@@Z -??0?$hashtable@U?$pair@$$CBGG@_STL@@GU?$hash@G@2@U?$_S1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@QAE@IABU?$hash@G@1@ABU?$equal_to@G@1@ABV?$allocator@U?$pair@$$CBGG@_STL@@@1@@Z -??0FreetypeManager@@QAE@XZ -??0PolyArgs@@QAE@AAVPolyPolygon@@GJ@Z -??1?$_STL_alloc_proxy@IU?$_hT__N@PAUFtFontInfo@@@_STL@@V?$allocator@PAUFtFontInfo@@@2@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@IU?$_hT__N@U?$pair@$$CBGG@_STL@@@_STL@@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@IU?$_hT__N@U?$pair@$$CBHH@_STL@@@_STL@@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@PAGGV?$allocator@G@_STL@@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@PAKKV?$allocator@K@_STL@@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@PAPAXPAXV?$allocator@PAUFtFontInfo@@@_STL@@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBGG@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBHH@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@PAU?$pair@GG@_STL@@U12@V?$allocator@U?$pair@GG@_STL@@@2@@_STL@@QAE@XZ -??1?$allocator@G@_STL@@QAE@XZ -??1?$allocator@K@_STL@@QAE@XZ -??1?$allocator@PAUFtFontInfo@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@$$CBGG@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@$$CBHH@_STL@@@_STL@@QAE@XZ -??1?$hash_map@HHU?$hash@H@_STL@@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAE@XZ -??1?$hash_multimap@GGU?$hash@G@_STL@@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@QAE@XZ -??1?$vector@GV?$allocator@G@_STL@@@_STL@@QAE@XZ -??1?$vector@KV?$allocator@K@_STL@@@_STL@@QAE@XZ -??1?$vector@PAXV?$allocator@PAUFtFontInfo@@@_STL@@@_STL@@QAE@XZ -??1?$vector@PAXV?$allocator@U?$pair@$$CBGG@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$vector@PAXV?$allocator@U?$pair@$$CBHH@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$vector@U?$pair@GG@_STL@@V?$allocator@U?$pair@GG@_STL@@@2@@_STL@@QAE@XZ -??1Directory@osl@@QAE@XZ -??1DirectoryItem@osl@@QAE@XZ -??1FileStatus@osl@@QAE@XZ -??1FreetypeManager@@QAE@XZ -??1FreetypeServerFont@@UAE@XZ -??1FtFontInfo@@QAE@XZ -??1PolyArgs@@QAE@XZ -??R?$equal_to@PAUFtFontInfo@@@_STL@@QBE_NPBUFtFontInfo@@0@Z -??R?$hash@PAUFtFontInfo@@@_STL@@QBEIPBUFtFontInfo@@@Z -??_7FreetypeServerFont@@6B@ -??_GFreetypeServerFont@@UAEPAXI@Z -?AddFontDir@FreetypeManager@@QAEJABVString@@@Z -?AddPoint@PolyArgs@@QAEXJJW4PolyFlags@@@Z -?ClearFontList@FreetypeManager@@QAEXXZ -?ClosePolygon@PolyArgs@@QAEXXZ -?GetAntialiasAdvice@FreetypeServerFont@@UBE_NXZ -?GetFontFaceNum@FreetypeServerFont@@UBEHXZ -?GetFontFileName@FreetypeServerFont@@UBEPBVOString@rtl@@XZ -?GetFontHandle@FreetypeManager@@QAEPAXH@Z -?GetFontId@FreetypeServerFont@@UBEHXZ -?GetGlyphBitmap1@FreetypeServerFont@@UBE_NHAAURawBitmap@@@Z -?GetGlyphBitmap8@FreetypeServerFont@@UBE_NHAAURawBitmap@@@Z -?GetGlyphIndex@FreetypeServerFont@@UBEHG@Z -?GetGlyphOutline@FreetypeServerFont@@UBE_NHAAVPolyPolygon@@@Z -?InitGlyphData@FreetypeServerFont@@MBEXHAAVGlyphData@@@Z -?SetFontId@FreetypeServerFont@@UAEXH@Z -?TestFont@FreetypeServerFont@@UAE_NXZ -?_M_allocate_and_copy@?$vector@PAXV?$allocator@PAUFtFontInfo@@@_STL@@@_STL@@IAEPAPAXIPAPAX0@Z -?_M_allocate_and_copy@?$vector@PAXV?$allocator@U?$pair@$$CBGG@_STL@@@_STL@@@_STL@@IAEPAPAXIPAPAX0@Z -?_M_allocate_and_copy@?$vector@PAXV?$allocator@U?$pair@$$CBHH@_STL@@@_STL@@@_STL@@IAEPAPAXIPAPAX0@Z -?_M_allocate_and_copy@?$vector@U?$pair@GG@_STL@@V?$allocator@U?$pair@GG@_STL@@@2@@_STL@@IAEPAU?$pair@GG@2@IPAU32@0@Z -?_M_fill_insert@?$vector@PAXV?$allocator@PAUFtFontInfo@@@_STL@@@_STL@@QAEXPAPAXIABQAX@Z -?_M_fill_insert@?$vector@PAXV?$allocator@U?$pair@$$CBGG@_STL@@@_STL@@@_STL@@QAEXPAPAXIABQAX@Z -?_M_initialize_buckets@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_S1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@AAEXI@Z -?_M_insert_overflow@?$vector@GV?$allocator@G@_STL@@@_STL@@IAEXPAGABGI@Z -?_M_insert_overflow@?$vector@KV?$allocator@K@_STL@@@_STL@@IAEXPAKABKI@Z -?_M_insert_overflow@?$vector@PAXV?$allocator@PAUFtFontInfo@@@_STL@@@_STL@@IAEXPAPAXABQAXI@Z -?_M_insert_overflow@?$vector@PAXV?$allocator@U?$pair@$$CBGG@_STL@@@_STL@@@_STL@@IAEXPAPAXABQAXI@Z -?_M_insert_overflow@?$vector@PAXV?$allocator@U?$pair@$$CBHH@_STL@@@_STL@@@_STL@@IAEXPAPAXABQAXI@Z -?_M_insert_overflow@?$vector@U?$pair@GG@_STL@@V?$allocator@U?$pair@GG@_STL@@@2@@_STL@@IAEXPAU?$pair@GG@2@ABU32@I@Z -?_M_new_node@?$hashtable@PAUFtFontInfo@@PAU1@U?$hash@PAUFtFontInfo@@@_STL@@U?$_Identity@PAUFtFontInfo@@@3@U?$equal_to@PAUFtFontInfo@@@3@V?$allocator@PAUFtFontInfo@@@3@@_STL@@AAEPAU?$_hT__N@PAUFtFontInfo@@@2@ABQAUFtFontInfo@@@Z -?_M_new_node@?$hashtable@U?$pair@$$CBGG@_STL@@GU?$hash@G@2@U?$_S1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@AAEPAU?$_hT__N@U?$pair@$$CBGG@_STL@@@2@ABU?$pair@$$CBGG@2@@Z -?_M_new_node@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_S1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@AAEPAU?$_hT__N@U?$pair@$$CBHH@_STL@@@2@ABU?$pair@$$CBHH@2@@Z -?__uninitialized_copy_aux@_STL@@YAPAU?$pair@GG@1@PAU21@00U__false_type@@@Z -?__uninitialized_fill_n_aux@_STL@@YAPAU?$pair@GG@1@PAU21@IABU21@U__false_type@@@Z -?deallocate@?$_STL_alloc_proxy@IU?$_hT__N@U?$pair@$$CBGG@_STL@@@_STL@@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@QAEXPAU?$_hT__N@U?$pair@$$CBGG@_STL@@@2@I@Z -?deallocate@?$_STL_alloc_proxy@PAGGV?$allocator@G@_STL@@@_STL@@QAEXPAGI@Z -?deallocate@?$_STL_alloc_proxy@PAKKV?$allocator@K@_STL@@@_STL@@QAEXPAKI@Z -?equal_range@?$hashtable@U?$pair@$$CBGG@_STL@@GU?$hash@G@2@U?$_S1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Ht_It@U?$pair@$$CBGG@_STL@@U?$_N_Tr@U?$pair@$$CBGG@_STL@@@2@GU?$hash@G@2@U?$_S1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@U12@@2@ABG@Z -?getNativePath@FileStatus@osl@@QBE?AVOUString@rtl@@XZ -?get_allocator@?$vector@PAXV?$allocator@PAUFtFontInfo@@@_STL@@@_STL@@QBE?AV?$allocator@PAUFtFontInfo@@@2@XZ -?get_allocator@?$vector@PAXV?$allocator@U?$pair@$$CBGG@_STL@@@_STL@@@_STL@@QBE?AV?$allocator@U?$pair@$$CBGG@_STL@@@2@XZ -?get_allocator@?$vector@PAXV?$allocator@U?$pair@$$CBHH@_STL@@@_STL@@@_STL@@QBE?AV?$allocator@U?$pair@$$CBHH@_STL@@@2@XZ -?insert_equal_noresize@?$hashtable@PAUFtFontInfo@@PAU1@U?$hash@PAUFtFontInfo@@@_STL@@U?$_Identity@PAUFtFontInfo@@@3@U?$equal_to@PAUFtFontInfo@@@3@V?$allocator@PAUFtFontInfo@@@3@@_STL@@QAE?AU?$_Ht_It@PAUFtFontInfo@@U?$_N_Tr@PAUFtFontInfo@@@_STL@@PAU1@U?$hash@PAUFtFontInfo@@@3@U?$_Identity@PAUFtFontInfo@@@3@U?$equal_to@PAUFtFontInfo@@@3@V?$allocator@PAUFtFontInfo@@@3@@2@ABQAUFtFontInfo@@@Z -?insert_equal_noresize@?$hashtable@U?$pair@$$CBGG@_STL@@GU?$hash@G@2@U?$_S1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@QAE?AU?$_Ht_It@U?$pair@$$CBGG@_STL@@U?$_N_Tr@U?$pair@$$CBGG@_STL@@@2@GU?$hash@G@2@U?$_S1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@2@ABU?$pair@$$CBGG@2@@Z -?reserve@?$vector@PAXV?$allocator@PAUFtFontInfo@@@_STL@@@_STL@@QAEXI@Z -?resize@?$hashtable@PAUFtFontInfo@@PAU1@U?$hash@PAUFtFontInfo@@@_STL@@U?$_Identity@PAUFtFontInfo@@@3@U?$equal_to@PAUFtFontInfo@@@3@V?$allocator@PAUFtFontInfo@@@3@@_STL@@QAEXI@Z -?resize@?$hashtable@U?$pair@$$CBGG@_STL@@GU?$hash@G@2@U?$_S1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@QAEXI@Z -?resize@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_S1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAEXI@Z -threadFunc -??_C@_0CJ@MGAB@O?3?2SRC635?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@IGGL@o?3?2SRC635?2wntmsci7?2inc?2com?1sun?1s@ -?GetDrawWindowBorder@Dialog@@QBEXAAJ000@Z -??_C@_0BM@BIDJ@com?4sun?4star?4awt?4InputEvent?$AA@ -??_C@_0BO@NNA@com?4sun?4star?4lang?4EventObject?$AA@ -?getCppuType@@YAABVType@uno@star@sun@com@@PBUEventObject@lang@345@@Z -?s_pType_com_sun_star_awt_InputEvent@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUInputEvent@awt@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_lang_EventObject@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUEventObject@lang@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??_C@_0DH@OGMA@o?3?2SRC635?2wntmsci7?2inc?2cppuhelpe@ -?addListener@?$OBroadcastHelperVar@VOMultiTypeInterfaceContainerHelper@cppu@@VType@uno@star@sun@com@@@cppu@@QAEXABVType@uno@star@sun@com@@ABV?$Reference@VXInterface@uno@star@sun@com@@@4567@@Z -?removeListener@?$OBroadcastHelperVar@VOMultiTypeInterfaceContainerHelper@cppu@@VType@uno@star@sun@com@@@cppu@@QAEXABVType@uno@star@sun@com@@ABV?$Reference@VXInterface@uno@star@sun@com@@@4567@@Z -??1?$Reference@VXFlushableClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??_C@_0DI@MOIG@com?4sun?4star?4datatransfer?4clipbo@ -?s_pType_com_sun_star_datatransfer_clipboard_XFlushableClipboard@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFlushableClipboard@clipboard@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?IsSoundFile@Sound@@SAEABVString@@@Z -??_C@_0CJ@OOMK@O?3?1SRC635?1src?1vcl?1source?1gdi?2imp@ -?acquire@OWeakAggObject@cppu@@WBA@AAXXZ -?queryInterface@OWeakAggObject@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z -?release@OWeakAggObject@cppu@@WBA@AAXXZ -?rvpExceptionHandler@@YAXXZ -?putInterface@?$InterfacePairCache@VXRmVirtualDevice@client@portal@star@sun@com@@VXRmOutputDevice@23456@@vcl@@QAEXABU?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@Z -??4?$Sequence@J@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??4?$Sequence@UKernPair@client@portal@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBUKernPair@client@portal@345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@UIDLFontData@client@portal@star@sun@com@@@2345@@Z -??0?$_Ht_It@PAVFtFontInfo@@U?$_C_Tr@PAVFtFontInfo@@@_STL@@PAV1@U?$hash@PAVFtFontInfo@@@3@U?$_Identity@PAVFtFontInfo@@@3@U?$equal_to@PAVFtFontInfo@@@3@V?$allocator@PAVFtFontInfo@@@3@@_STL@@QAE@PBU?$_hT__N@PAVFtFontInfo@@@1@PBV?$hashtable@PAVFtFontInfo@@PAV1@U?$hash@PAVFtFontInfo@@@_STL@@U?$_Identity@PAVFtFontInfo@@@3@U?$equal_to@PAVFtFontInfo@@@3@V?$allocator@PAVFtFontInfo@@@3@@1@@Z -??0?$_Ht_It@U?$pair@QBDPAVFtFontFile@@@_STL@@U?$_N_Tr@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@PBDU?$hash@PBD@2@U?$_S1st@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@UEqStr@@V?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@@_STL@@QAE@PBU?$_hT__N@U?$pair@QBDPAVFtFontFile@@@_STL@@@1@PBV?$hashtable@U?$pair@QBDPAVFtFontFile@@@_STL@@PBDU?$hash@PBD@2@U?$_S1st@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@UEqStr@@V?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@@1@@Z -??0?$_STL_alloc_proxy@IU?$_hT__N@U?$pair@$$CBHH@_STL@@@_STL@@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBHH@_STL@@@1@I@Z -??0?$_STL_alloc_proxy@PAPAXPAXV?$allocator@PAVFtFontInfo@@@_STL@@@_STL@@QAE@ABV?$allocator@PAVFtFontInfo@@@1@PAPAX@Z -??0?$_Vector_base@PAXV?$allocator@PAVFtFontInfo@@@_STL@@@_STL@@QAE@IABV?$allocator@PAVFtFontInfo@@@1@@Z -??0?$_Vector_base@PAXV?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@_STL@@@_STL@@QAE@IABV?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@1@@Z -??0?$hash_map@PBDPAVFtFontFile@@U?$hash@PBD@_STL@@UEqStr@@V?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@3@@_STL@@QAE@XZ -??0?$vector@PAXV?$allocator@U?$pair@$$CBHH@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBHH@_STL@@@1@@Z -??0FtFontFile@@AAE@ABVOString@rtl@@@Z -??1?$_STL_alloc_proxy@IU?$_hT__N@PAVFtFontInfo@@@_STL@@V?$allocator@PAVFtFontInfo@@@2@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@IU?$_hT__N@U?$pair@QBDPAVFtFontFile@@@_STL@@@_STL@@V?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@PAPAXPAXV?$allocator@PAVFtFontInfo@@@_STL@@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@PAVFtFontInfo@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@_STL@@QAE@XZ -??1?$hash_map@PBDPAVFtFontFile@@U?$hash@PBD@_STL@@UEqStr@@V?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@3@@_STL@@QAE@XZ -??1?$vector@PAXV?$allocator@PAVFtFontInfo@@@_STL@@@_STL@@QAE@XZ -??1?$vector@PAXV?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@_STL@@@_STL@@QAE@XZ -??R?$equal_to@PAVFtFontInfo@@@_STL@@QBE_NPBVFtFontInfo@@0@Z -??R?$hash@PAVFtFontInfo@@@_STL@@QBEIPBVFtFontInfo@@@Z -?FindFontFile@FtFontFile@@SAPAV1@ABVOString@rtl@@@Z -?Map@FtFontFile@@QAE_NXZ -?TestFont@FreetypeServerFont@@UBE_NXZ -?Unmap@FtFontFile@@QAEXXZ -?_M_allocate_and_copy@?$vector@PAXV?$allocator@PAVFtFontInfo@@@_STL@@@_STL@@IAEPAPAXIPAPAX0@Z -?_M_allocate_and_copy@?$vector@PAXV?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@_STL@@@_STL@@IAEPAPAXIPAPAX0@Z -?_M_fill_insert@?$vector@PAXV?$allocator@PAVFtFontInfo@@@_STL@@@_STL@@QAEXPAPAXIABQAX@Z -?_M_fill_insert@?$vector@PAXV?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@_STL@@@_STL@@QAEXPAPAXIABQAX@Z -?_M_insert_overflow@?$vector@PAXV?$allocator@PAVFtFontInfo@@@_STL@@@_STL@@IAEXPAPAXABQAXI@Z -?_M_insert_overflow@?$vector@PAXV?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@_STL@@@_STL@@IAEXPAPAXABQAXI@Z -?_M_new_node@?$hashtable@PAVFtFontInfo@@PAV1@U?$hash@PAVFtFontInfo@@@_STL@@U?$_Identity@PAVFtFontInfo@@@3@U?$equal_to@PAVFtFontInfo@@@3@V?$allocator@PAVFtFontInfo@@@3@@_STL@@AAEPAU?$_hT__N@PAVFtFontInfo@@@2@ABQAVFtFontInfo@@@Z -?_M_new_node@?$hashtable@U?$pair@QBDPAVFtFontFile@@@_STL@@PBDU?$hash@PBD@2@U?$_S1st@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@UEqStr@@V?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@@_STL@@AAEPAU?$_hT__N@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@ABU?$pair@QBDPAVFtFontFile@@@2@@Z -?__stl_hash_string@_STL@@YAIPBD@Z -?getFileURL@FileStatus@osl@@QBE?AVOUString@rtl@@XZ -?get_allocator@?$vector@PAXV?$allocator@PAVFtFontInfo@@@_STL@@@_STL@@QBE?AV?$allocator@PAVFtFontInfo@@@2@XZ -?get_allocator@?$vector@PAXV?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@_STL@@@_STL@@QBE?AV?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@XZ -?reserve@?$vector@PAXV?$allocator@PAVFtFontInfo@@@_STL@@@_STL@@QAEXI@Z -?reserve@?$vector@PAXV?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@_STL@@@_STL@@QAEXI@Z -?resize@?$hashtable@PAVFtFontInfo@@PAV1@U?$hash@PAVFtFontInfo@@@_STL@@U?$_Identity@PAVFtFontInfo@@@3@U?$equal_to@PAVFtFontInfo@@@3@V?$allocator@PAVFtFontInfo@@@3@@_STL@@QAEXI@Z -?resize@?$hashtable@U?$pair@QBDPAVFtFontFile@@@_STL@@PBDU?$hash@PBD@2@U?$_S1st@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@UEqStr@@V?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@@_STL@@QAEXI@Z -??_C@_0CJ@FMGA@O?3?2TFD635?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@GJFH@o?3?2TFD635?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@LNLA@o?3?2TFD635?2wntmsci7?2inc?2cppuhelpe@ -?GetLanguage@AllSettings@@QBEGXZ -?GetUILanguage@AllSettings@@QBEGXZ -?GetUILocale@AllSettings@@QBEABULocale@lang@star@sun@com@@XZ -?SetInternational@AllSettings@@QAEXABVInternational@@@Z -?SetLanguage@AllSettings@@QAEXG@Z -?SetLocale@AllSettings@@QAEXABULocale@lang@star@sun@com@@@Z -?SetUILanguage@AllSettings@@QAEXG@Z -?SetUILocale@AllSettings@@QAEXABULocale@lang@star@sun@com@@@Z -?Mirror@GDIMetaFile@@QAEEK@Z -?Rotate@GDIMetaFile@@QAEXJ@Z -??_C@_0CJ@OGJN@O?3?2SRC636?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@JKBI@o?3?2SRC636?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@OGIP@o?3?2SRC636?2wntmsci7?2inc?2cppuhelpe@ -??_C@_0CJ@MOFG@O?3?1SRC636?1src?1vcl?1source?1gdi?2imp@ -??_C@_0CJ@GCDM@O?3?2CFG636?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@CKLG@o?3?2CFG636?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@DBOJ@o?3?2CFG636?2wntmsci7?2inc?2cppuhelpe@ -?GetPolyPolygon@Region@@QBE?AVPolyPolygon@@XZ -?HasPolyPolygon@Region@@QBEEXZ -?GetFontToken@@YA?AVString@@ABV1@GAAG@Z -?GetSubsFontName@@YA?AVString@@ABV1@K@Z -?ConvertFontToSubsFontChar@@YAGPAXG@Z -?CreateFontToSubsFontConverter@@YAPAXABVString@@K@Z -?DestroyFontToSubsFontConverter@@YAXPAX@Z -?GetFontToSubsFontName@@YA?AVString@@PAX@Z -?GetFontToken@@YA?AVString@@ABV1@G@Z -??0RmExtTextInputData@@QAE@VString@@PAGKKK@Z -?EndExtTextInput@XRmsEventHdl@@UAAXXZ -?ExtTextInput@XRmsEventHdl@@UAAXABVOUString@rtl@@ABV?$Sequence@G@uno@star@sun@com@@KGK@Z -?InputContextChange@XRmsEventHdl@@UAAXABVOUString@rtl@@@Z -?StartExtTextInput@XRmsEventHdl@@UAAXXZ -??_C@_0CJ@HMPM@O?3?2TFD636?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@HFCE@o?3?2TFD636?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@LNPP@o?3?2TFD636?2wntmsci7?2inc?2cppuhelpe@ -?GetPixelFor_16BIT_TC_LSB_MASK@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_16BIT_TC_MSB_MASK@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?SetPixelFor_16BIT_TC_LSB_MASK@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_16BIT_TC_MSB_MASK@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -??0FontCharMap@@QAE@XZ -??1FontCharMap@@QAE@XZ -?GetFirstChar@FontCharMap@@QBEKXZ -?GetLastChar@FontCharMap@@QBEKXZ -?GetNextChar@FontCharMap@@QBEKK@Z -?GetPrevChar@FontCharMap@@QBEKK@Z -?HasChar@FontCharMap@@QBEEK@Z -?IsDefaultMap@FontCharMap@@QBEEXZ -??0ClassData4@cppu@@QAE@J@Z -??1ClassData4@cppu@@QAE@XZ -??0?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0DropTargetEvent@dnd@datatransfer@star@sun@com@@QAE@ABV?$Reference@VXInterface@uno@star@sun@com@@@uno@345@ABC@Z -??_C@_0DF@OABK@com?4sun?4star?4datatransfer?4dnd?4XD@ -?s_pType_com_sun_star_datatransfer_dnd_XDropTargetDropContext@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?set@?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAEPAVXDropTargetDragContext@dnd@datatransfer@345@@Z -?set@?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAEPAVXDropTargetDropContext@dnd@datatransfer@345@@Z -?GetCurrencySymbol@CurrencyFormatter@@QBE?AVString@@XZ -?GetLocale@FormatterBase@@QBEABULocale@lang@star@sun@com@@XZ -?GetLocaleDataWrapper@FormatterBase@@IBEAAVLocaleDataWrapper@@XZ -?SetCurrencySymbol@CurrencyFormatter@@QAEXABVString@@@Z -?SetLocale@FormatterBase@@UAEXABULocale@lang@star@sun@com@@@Z -?SetUseThousandSep@NumericFormatter@@QAEXE@Z -??_C@_0BP@NFHP@com?4sun?4star?4i18n?4CalendarItem?$AA@ -?GetCalendarWrapper@DateFormatter@@IBEAAVCalendarWrapper@@XZ -?GetDateFormat@DateFormatter@@QBE?AW4DateFormat@@XZ -?GetTimeFormat@TimeFormatter@@QBE?AW4TimeFormat@@XZ -?SetDateFormat@DateFormatter@@QAEXW4DateFormat@@@Z -?SetLocale@DateFormatter@@UAEXABULocale@lang@star@sun@com@@@Z -?SetShowDateCentury@DateFormatter@@QAEXE@Z -?SetTimeFormat@TimeFormatter@@QAEXW4TimeFormat@@@Z -?s_pType@?$Sequence@UCalendarItem@i18n@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_i18n_CalendarItem@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUCalendarItem@i18n@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?GetCurrencySymbol@LongCurrencyFormatter@@QBE?AVString@@XZ -?SetCurrencySymbol@LongCurrencyFormatter@@QAEXABVString@@@Z -?SetUseThousandSep@LongCurrencyFormatter@@QAEXE@Z -??_C@_0CJ@EKPH@O?3?1CFG636?1src?1vcl?1source?1gdi?2imp@ -??_C@_0CJ@PJBG@O?3?2SRC637?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@JBMJ@o?3?2SRC637?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@BJEK@o?3?2SRC637?2wntmsci7?2inc?2cppuhelpe@ -??1?$Sequence@UCalendarItem@i18n@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0RmExtTextInputData@@QAE@VString@@PAGKGK@Z -?_GetStandardFont@System@@SA?AVFont@@W4_StandardFont@@@Z -?GetLocaleDataWrapper@AllSettings@@QBEABVLocaleDataWrapper@@XZ -?GetUILocaleDataWrapper@AllSettings@@QBEABVLocaleDataWrapper@@XZ -?WaitForClientConnect@Application@@QAEXXZ -??1Logfile@rtl@@QAE@XZ -??_C@_0BA@BCFG@?$CF06lu?5?$CFlu?5?$HN?5?$CFs?6?$AA@ -??_C@_0BA@NCIJ@?$CF06lu?5?$CFlu?5?$HL?5?$CFs?6?$AA@ -?_AddRecentDoc@System@@SAEPAVWindow@@ABVString@@@Z -?_StartProcess@System@@SAEPAVWindow@@ABVString@@1@Z -?_StartProcess@System@@SAEPAVWindow@@ABVString@@@Z -?GetRange@FontCharMap@@QBEXKAAK0@Z -?GetDefaultFont@OutputDevice@@SA?AVFont@@GGKPBV1@@Z -?GetFontCharMap@OutputDevice@@QBEEAAVFontCharMap@@@Z -?GetDragSourceDropTarget@Window@@QAEXAAV?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@AAV?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@3456@@Z -?GetLastInputInterval@Window@@QBEKXZ -?IsLocked@Window@@QBEEEE@Z -?IsUICaptured@Window@@QBEEE@Z -?IsUserActive@Window@@QBEEGE@Z -??_C@_0CJ@FLPK@O?3?2SRC638?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@PMHF@o?3?2SRC638?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@BIDJ@o?3?2SRC638?2wntmsci7?2inc?2cppuhelpe@ -?GetFontCodeRanges@ServerFont@@UBEKPAK@Z -?GetFontCodeRanges@FreetypeServerFont@@MBEKPAK@Z -?GetTable@FtFontInfo@@QBEPBEPBDPAK@Z -?deallocate@?$_STL_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBGG@_STL@@@_STL@@@_STL@@QAEXPAPAXI@Z -??0?$Reference@VXDragSourceContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0DragSourceEvent@dnd@datatransfer@star@sun@com@@QAE@ABV?$Reference@VXInterface@uno@star@sun@com@@@uno@345@ABV?$Reference@VXDragSourceContext@dnd@datatransfer@star@sun@com@@@7345@ABV?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@7345@@Z -??0RmDragSource@@QAE@XZ -??0RmDropTargetContext@RmDragSource@@QAE@ABV?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXDragSourceListener@dnd@datatransfer@star@sun@com@@@3456@CP8XDragSourceListener@dnd@datatransfer@456@AAXABUDragSourceDragEvent@9datatransfer@456@@Z@Z -??1?$Reference@VXDragSourceContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1DragSourceDragEvent@dnd@datatransfer@star@sun@com@@QAE@XZ -??1DragSourceDropEvent@dnd@datatransfer@star@sun@com@@QAE@XZ -??1DragSourceEvent@dnd@datatransfer@star@sun@com@@QAE@XZ -??1RmDragSource@@UAE@XZ -??1RmDropTargetContext@RmDragSource@@UAE@XZ -??_7RmDragSource@@6BOWeakObject@cppu@@@ -??_7RmDragSource@@6BXComponent@lang@star@sun@com@@@ -??_7RmDragSource@@6BXDragSource@dnd@datatransfer@star@sun@com@@@ -??_7RmDragSource@@6BXDragSourceContext@dnd@datatransfer@star@sun@com@@@ -??_7RmDragSource@@6BXTypeProvider@lang@star@sun@com@@@ -??_7RmDropTargetContext@RmDragSource@@6B@ -??_7RmDropTargetContext@RmDragSource@@6BXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@ -??_7RmDropTargetContext@RmDragSource@@6BXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@ -??_7RmDropTargetContext@RmDragSource@@6BXTypeProvider@lang@star@sun@com@@@ -??_9@$BBE@AA -??_9@$BBM@AA -??_9@$BCA@AA -??_C@_0DB@NHLP@com?4sun?4star?4datatransfer?4dnd?4XD@ -??_GRmDragSource@@UAEPAXI@Z -??_GRmDropTargetContext@RmDragSource@@UAEPAXI@Z -?__query@?$Reference@VXDragSourceContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXDragSourceContext@dnd@datatransfer@345@PAVXInterface@2345@@Z -?acceptDrag@RmDropTargetContext@RmDragSource@@UAAXC@Z -?acceptDrop@RmDropTargetContext@RmDragSource@@UAAXC@Z -?dragDropEnd@RmDragSource@@QAEXXZ -?dropComplete@RmDropTargetContext@RmDragSource@@UAAXE@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBUMouseEvent@awt@345@@Z -?getCurrentCursor@RmDragSource@@UAAJXZ -?getDefaultCursor@RmDragSource@@UAAJC@Z -?getDropAction@RmDragSource@@AAECG@Z -?isDragImageSupported@RmDragSource@@UAAEXZ -?rejectDrag@RmDropTargetContext@RmDragSource@@UAAXXZ -?rejectDrop@RmDropTargetContext@RmDragSource@@UAAXXZ -?s_pType_com_sun_star_datatransfer_dnd_XDragSourceContext@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragSourceContext@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?setCursor@RmDragSource@@UAAXJ@Z -?setImage@RmDragSource@@UAAXJ@Z -?startDrag@RmDragSource@@UAAXABUDragGestureEvent@dnd@datatransfer@star@sun@com@@CJJABV?$Reference@VXTransferable@datatransfer@star@sun@com@@@uno@567@ABV?$Reference@VXDragSourceListener@dnd@datatransfer@star@sun@com@@@9567@@Z -?transferablesFlavorsChanged@RmDragSource@@UAAXXZ -?updateDropAction@RmDragSource@@QAEXC@Z -??0RmDropTarget@@QAE@XZ -??1RmDropTarget@@UAE@XZ -??_7RmDropTarget@@6BOWeakObject@cppu@@@ -??_7RmDropTarget@@6BXComponent@lang@star@sun@com@@@ -??_7RmDropTarget@@6BXDropTarget@dnd@datatransfer@star@sun@com@@@ -??_7RmDropTarget@@6BXTypeProvider@lang@star@sun@com@@@ -??_GRmDropTarget@@UAEPAXI@Z -?addDropTargetListener@RmDropTarget@@UAAXABV?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@@Z -?fireDragEnterEvent@RmDropTarget@@QAEKABV?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CJJCABV?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@3456@@Z -?fireDragExitEvent@RmDropTarget@@QAEKXZ -?fireDragOverEvent@RmDropTarget@@QAEKABV?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CJJC@Z -?fireDropActionChangedEvent@RmDropTarget@@QAEKABV?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CJJC@Z -?fireDropEvent@RmDropTarget@@QAEKABV?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CJJCABV?$Reference@VXTransferable@datatransfer@star@sun@com@@@3456@@Z -?getDefaultActions@RmDropTarget@@UAACXZ -?isActive@RmDropTarget@@UAAEXZ -?removeDropTargetListener@RmDropTarget@@UAAXABV?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@@Z -?setActive@RmDropTarget@@UAAXE@Z -?setDefaultActions@RmDropTarget@@UAAXC@Z -?SetPropertyHandler@Application@@QAEXPAVPropertyHandler@@@Z -??0?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@PBU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@PBV?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@1@@Z -??0?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@PBU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@PBV?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@1@@Z -?_M_bkt_num@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@ABEIABU?$pair@$$CBVOUString@rtl@@V12@@2@I@Z -?_M_initialize_buckets@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@AAEXI@Z -?_M_new_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@AAEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@ABU?$pair@$$CBVOUString@rtl@@V12@@2@@Z -?__copy@_STL@@YAPAPAXPAPAX00Urandom_access_iterator_tag@1@PAH@Z -?__copy_backward@_STL@@YAPAPAXPAPAX00Urandom_access_iterator_tag@1@PAH@Z -?deallocate@?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@I@Z -?find_or_insert@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEAAU?$pair@$$CBVOUString@rtl@@V12@@2@ABU32@@Z -?resize@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEXI@Z -??0?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_Nonconst_traits@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@ABU01@@Z -?end@?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE?AU?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_Nonconst_traits@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@XZ -?erase@?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE?AU?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_Nonconst_traits@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@U32@@Z -?insert@?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE?AU?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_Nonconst_traits@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@U32@ABV?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@Z -?_M_skip_to_next@?$_hT__It@PAVFtFontInfo@@PAV1@U?$hash@PAVFtFontInfo@@@_STL@@U?$_Identity@PAVFtFontInfo@@@3@U?$equal_to@PAVFtFontInfo@@@3@V?$allocator@PAVFtFontInfo@@@3@@_STL@@QAEPAU?$_hT__N@PAVFtFontInfo@@@2@XZ -?begin@?$hashtable@PAVFtFontInfo@@PAV1@U?$hash@PAVFtFontInfo@@@_STL@@U?$_Identity@PAVFtFontInfo@@@3@U?$equal_to@PAVFtFontInfo@@@3@V?$allocator@PAVFtFontInfo@@@3@@_STL@@QBE?AU?$_Ht_It@PAVFtFontInfo@@U?$_C_Tr@PAVFtFontInfo@@@_STL@@PAV1@U?$hash@PAVFtFontInfo@@@3@U?$_Identity@PAVFtFontInfo@@@3@U?$equal_to@PAVFtFontInfo@@@3@V?$allocator@PAVFtFontInfo@@@3@@2@XZ -?GetLocaleDataWrapper@FormatterBase@@QBEABVLocaleDataWrapper@@XZ -?SetShowTrailingZeros@NumericFormatter@@QAEXE@Z -??1RuntimeException@uno@star@sun@com@@QAE@XZ -?set@?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAEPAVXDragSource@dnd@datatransfer@345@@Z -?set@?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAEPAVXDropTarget@dnd@datatransfer@345@@Z -?GetLocaleI18nHelper@AllSettings@@QBEABVI18nHelper@vcl@@XZ -?GetUILocaleI18nHelper@AllSettings@@QBEABVI18nHelper@vcl@@XZ -??0I18nHelper@vcl@@QAE@AAV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@ABULocale@lang@456@@Z -??1I18nHelper@vcl@@QAE@XZ -?equals@I18nHelper@vcl@@QBEEABVString@@JJ0JJE@Z -?getDate@I18nHelper@vcl@@QBE?AVString@@ABVDate@@E@Z -?getLocale@I18nHelper@vcl@@QBEABULocale@lang@star@sun@com@@XZ -?setLocale@I18nHelper@vcl@@QAEXABULocale@lang@star@sun@com@@@Z -??1IDLFont@client@portal@star@sun@com@@QAE@XZ -??1GlyphCachePeer@@MAE@XZ -??0RawBitmap@@QAE@XZ -??1RawBitmap@@QAE@XZ -?Rotate@RawBitmap@@QAE_NH@Z -??0?$_STL_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@1@PAPAX@Z -??0?$vector@PAXV?$allocator@PAVFtFontInfo@@@_STL@@@_STL@@QAE@IABQAXABV?$allocator@PAVFtFontInfo@@@1@@Z -??0?$vector@PAXV?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@_STL@@@_STL@@QAE@IABQAXABV?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@1@@Z -?SetVerticalFlags@@YAHG@Z -?_Construct@_STL@@YAXPAU?$pair@$$CBHH@1@ABU21@@Z -?_Construct@_STL@@YAXPAU?$pair@QBDPAVFtFontFile@@@1@ABU21@@Z -?_M_bkt_num@?$hashtable@U?$pair@QBDPAVFtFontFile@@@_STL@@PBDU?$hash@PBD@2@U?$_S1st@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@UEqStr@@V?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@@_STL@@ABEIABU?$pair@QBDPAVFtFontFile@@@2@I@Z -?_M_next_size@?$hashtable@PAVFtFontInfo@@PAV1@U?$hash@PAVFtFontInfo@@@_STL@@U?$_Identity@PAVFtFontInfo@@@3@U?$equal_to@PAVFtFontInfo@@@3@V?$allocator@PAVFtFontInfo@@@3@@_STL@@ABEII@Z -?_M_next_size@?$hashtable@U?$pair@QBDPAVFtFontFile@@@_STL@@PBDU?$hash@PBD@2@U?$_S1st@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@UEqStr@@V?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@@_STL@@ABEII@Z -?_M_skip_to_next@?$_hT__It@U?$pair@$$CBGG@_STL@@GU?$hash@G@2@U?$_S1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@QAEPAU?$_hT__N@U?$pair@$$CBGG@_STL@@@2@XZ -?insert_equal_noresize@?$hashtable@PAVFtFontInfo@@PAV1@U?$hash@PAVFtFontInfo@@@_STL@@U?$_Identity@PAVFtFontInfo@@@3@U?$equal_to@PAVFtFontInfo@@@3@V?$allocator@PAVFtFontInfo@@@3@@_STL@@QAE?AU?$_Ht_It@PAVFtFontInfo@@U?$_N_Tr@PAVFtFontInfo@@@_STL@@PAV1@U?$hash@PAVFtFontInfo@@@3@U?$_Identity@PAVFtFontInfo@@@3@U?$equal_to@PAVFtFontInfo@@@3@V?$allocator@PAVFtFontInfo@@@3@@2@ABQAVFtFontInfo@@@Z -?swap@?$vector@PAXV?$allocator@PAVFtFontInfo@@@_STL@@@_STL@@QAEXAAV12@@Z -?swap@?$vector@PAXV?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@_STL@@@_STL@@QAEXAAV12@@Z -?deallocate@?$allocator@U?$pair@GG@_STL@@@_STL@@QBEXPAU?$pair@GG@2@I@Z -??_C@_0CJ@HDDB@O?3?1SRC638?1src?1vcl?1source?1gdi?2imp@ -?GetDate@I18nHelper@vcl@@QBE?AVString@@ABVDate@@E@Z -?MatchMnemonic@I18nHelper@vcl@@QBEEABVString@@G@Z -?MatchString@I18nHelper@vcl@@QBEEABVString@@0@Z -??_C@_0CJ@EBPL@O?3?2SRC640?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@PJMM@o?3?2SRC640?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@LJOO@o?3?2SRC640?2wntmsci7?2inc?2cppuhelpe@ -?GetWindowState@SystemWindow@@QBE?AVByteString@@K@Z -?GetWindowStateData@SystemWindow@@IBEXAAVWindowStateData@@@Z -?SetIcon@SystemWindow@@QAEXG@Z -?SetWindowState@SystemWindow@@QAEXABVByteString@@@Z -?SetWindowStateData@SystemWindow@@IAEXABVWindowStateData@@@Z -?SnapShot@Window@@QBE?AVBitmap@@E@Z -?CompareString@I18nHelper@vcl@@QBEJABVString@@0@Z -?GetDate@I18nHelper@vcl@@QBE?AVString@@ABVDate@@@Z -?GetNum@I18nHelper@vcl@@QBE?AVString@@JGEE@Z -?GetBitmap@Graphic@@QBE?AVBitmap@@PBVSize@@@Z -?GetBitmapEx@Graphic@@QBE?AVBitmapEx@@PBVSize@@@Z -?IsLocked@Window@@QBEEE@Z -?CallAccel@Application@@SAEABVKeyCode@@G@Z -?GetDesktopRectPixel@Window@@QBE?AVRectangle@@XZ -??_C@_0CA@FEI@com?4sun?4star?4lang?4XTypeProvider?$AA@ -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTypeProvider@lang@star@sun@com@@@2345@@Z -?s_pType_com_sun_star_lang_XTypeProvider@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTypeProvider@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@2345@@Z -??_7DisplayConnection@vcl@@6BOWeakObject@cppu@@@ -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDisplayConnection@awt@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXStreamListener@io@star@sun@com@@@2345@@Z -??_7XRmsSoundCallback@@6BOWeakObject@cppu@@@ -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSoundCallback@client@portal@star@sun@com@@@2345@@Z -??_7RmDropTargetContext@RmDragSource@@6BOWeakObject@cppu@@@ -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragSourceContext@dnd@datatransfer@star@sun@com@@@2345@@Z -??_7CORmStarOffice@@6BOWeakObject@cppu@@@ -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXRmStarOffice@client@portal@star@sun@com@@@2345@@Z -??_7XRmsEventHdl@@6BOWeakObject@cppu@@@ -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXEventHdl@client@portal@star@sun@com@@@2345@@Z -??_C@_0CJ@FOHA@O?3?2SRC641?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@PCBN@o?3?2SRC641?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@EGCL@o?3?2SRC641?2wntmsci7?2inc?2cppuhelpe@ -?cpp_release@uno@star@sun@com@@YAXPAX@Z -?cpp_acquire@uno@star@sun@com@@YAXPAX@Z -?cpp_queryInterface@uno@star@sun@com@@YAPAXPAXPAU_typelib_TypeDescriptionReference@@@Z -??0?$_List_iterator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@U?$_Nonconst_traits@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@_STL@@QAE@ABU01@@Z -?begin@?$list@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@V?$allocator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@_STL@@QAE?AU?$_List_iterator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@U?$_Nonconst_traits@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@2@XZ -?erase@?$list@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@V?$allocator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@_STL@@QAE?AU?$_List_iterator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@U?$_Nonconst_traits@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@2@U32@@Z -?insert@?$list@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@V?$allocator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@_STL@@QAE?AU?$_List_iterator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@U?$_Nonconst_traits@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@2@U32@ABU?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@2@@Z -??0?$_Ht_iterator@U?$pair@$$CBHVGlyphData@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVGlyphData@@@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@_STL@@QAE@PBU?$_Hashtable_node@U?$pair@$$CBHVGlyphData@@@_STL@@@1@PBV?$hashtable@U?$pair@$$CBHVGlyphData@@@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@1@@Z -??E?$_Ht_iterator@U?$pair@$$CBHVGlyphData@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVGlyphData@@@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@_STL@@QAE?AU01@H@Z -?_M_initialize_buckets@?$hashtable@U?$pair@$$CBHVGlyphData@@@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@_STL@@AAEXI@Z -?_M_new_node@?$hashtable@U?$pair@$$CBHVGlyphData@@@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@_STL@@AAEPAU?$_Hashtable_node@U?$pair@$$CBHVGlyphData@@@_STL@@@2@ABU?$pair@$$CBHVGlyphData@@@2@@Z -?begin@?$hashtable@U?$pair@$$CBHVGlyphData@@@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBHVGlyphData@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVGlyphData@@@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@2@XZ -?erase@?$hash_map@HVGlyphData@@U?$hash@H@_STL@@U?$equal_to@H@3@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@3@@_STL@@QAEXU?$_Ht_iterator@U?$pair@$$CBHVGlyphData@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVGlyphData@@@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@2@@Z -?find@?$hashtable@U?$pair@$$CBHVGlyphData@@@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBHVGlyphData@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVGlyphData@@@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@2@ABH@Z -?resize@?$hashtable@U?$pair@$$CBHVGlyphData@@@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@_STL@@QAEXI@Z -??0?$_Ht_iterator@PAVFtFontInfo@@U?$_Const_traits@PAVFtFontInfo@@@_STL@@PAV1@U?$hash@PAVFtFontInfo@@@3@U?$_Identity@PAVFtFontInfo@@@3@U?$equal_to@PAVFtFontInfo@@@3@V?$allocator@PAVFtFontInfo@@@3@@_STL@@QAE@PBU?$_Hashtable_node@PAVFtFontInfo@@@1@PBV?$hashtable@PAVFtFontInfo@@PAV1@U?$hash@PAVFtFontInfo@@@_STL@@U?$_Identity@PAVFtFontInfo@@@3@U?$equal_to@PAVFtFontInfo@@@3@V?$allocator@PAVFtFontInfo@@@3@@1@@Z -??0?$_Ht_iterator@U?$pair@$$CBHH@_STL@@U?$_Const_traits@U?$pair@$$CBHH@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAE@PBU?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@1@PBV?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@1@@Z -??0?$_Ht_iterator@U?$pair@QBDPAVFtFontFile@@@_STL@@U?$_Nonconst_traits@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@PBDU?$hash@PBD@2@U?$_Select1st@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@UEqStr@@V?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@@_STL@@QAE@PBU?$_Hashtable_node@U?$pair@QBDPAVFtFontFile@@@_STL@@@1@PBV?$hashtable@U?$pair@QBDPAVFtFontFile@@@_STL@@PBDU?$hash@PBD@2@U?$_Select1st@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@UEqStr@@V?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@@1@@Z -??0?$_STL_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@_STL@@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBHH@_STL@@@1@I@Z -??0?$hashtable@U?$pair@$$CBGG@_STL@@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@QAE@IABU?$hash@G@1@ABU?$equal_to@G@1@ABV?$allocator@U?$pair@$$CBGG@_STL@@@1@@Z -?_M_bkt_num@?$hashtable@U?$pair@QBDPAVFtFontFile@@@_STL@@PBDU?$hash@PBD@2@U?$_Select1st@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@UEqStr@@V?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@@_STL@@ABEIABU?$pair@QBDPAVFtFontFile@@@2@I@Z -?_M_initialize_buckets@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@AAEXI@Z -?_M_next_size@?$hashtable@U?$pair@QBDPAVFtFontFile@@@_STL@@PBDU?$hash@PBD@2@U?$_Select1st@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@UEqStr@@V?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@@_STL@@ABEII@Z -?_M_skip_to_next@?$_Hashtable_iterator@PAVFtFontInfo@@PAV1@U?$hash@PAVFtFontInfo@@@_STL@@U?$_Identity@PAVFtFontInfo@@@3@U?$equal_to@PAVFtFontInfo@@@3@V?$allocator@PAVFtFontInfo@@@3@@_STL@@QAEPAU?$_Hashtable_node@PAVFtFontInfo@@@2@XZ -?_M_skip_to_next@?$_Hashtable_iterator@U?$pair@$$CBGG@_STL@@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@QAEPAU?$_Hashtable_node@U?$pair@$$CBGG@_STL@@@2@XZ -?begin@?$hashtable@PAVFtFontInfo@@PAV1@U?$hash@PAVFtFontInfo@@@_STL@@U?$_Identity@PAVFtFontInfo@@@3@U?$equal_to@PAVFtFontInfo@@@3@V?$allocator@PAVFtFontInfo@@@3@@_STL@@QBE?AU?$_Ht_iterator@PAVFtFontInfo@@U?$_Const_traits@PAVFtFontInfo@@@_STL@@PAV1@U?$hash@PAVFtFontInfo@@@3@U?$_Identity@PAVFtFontInfo@@@3@U?$equal_to@PAVFtFontInfo@@@3@V?$allocator@PAVFtFontInfo@@@3@@2@XZ -?deallocate@?$_STL_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBGG@_STL@@@_STL@@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@QAEXPAU?$_Hashtable_node@U?$pair@$$CBGG@_STL@@@2@I@Z -?equal_range@?$hashtable@U?$pair@$$CBGG@_STL@@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Ht_iterator@U?$pair@$$CBGG@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGG@_STL@@@2@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@U12@@2@ABG@Z -?insert_equal_noresize@?$hashtable@PAVFtFontInfo@@PAV1@U?$hash@PAVFtFontInfo@@@_STL@@U?$_Identity@PAVFtFontInfo@@@3@U?$equal_to@PAVFtFontInfo@@@3@V?$allocator@PAVFtFontInfo@@@3@@_STL@@QAE?AU?$_Ht_iterator@PAVFtFontInfo@@U?$_Nonconst_traits@PAVFtFontInfo@@@_STL@@PAV1@U?$hash@PAVFtFontInfo@@@3@U?$_Identity@PAVFtFontInfo@@@3@U?$equal_to@PAVFtFontInfo@@@3@V?$allocator@PAVFtFontInfo@@@3@@2@ABQAVFtFontInfo@@@Z -?insert_equal_noresize@?$hashtable@U?$pair@$$CBGG@_STL@@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBGG@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGG@_STL@@@2@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@2@ABU?$pair@$$CBGG@2@@Z -?resize@?$hashtable@U?$pair@$$CBGG@_STL@@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@QAEXI@Z -?resize@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAEXI@Z -??_C@_0CJ@HGLL@O?3?1SRC641?1src?1vcl?1source?1gdi?2imp@ -?IsScaleImage@ImageControl@@QBEEXZ -?SetScaleImage@ImageControl@@QAEXE@Z -?AbsoluteScreenToOutputPixel@Window@@QBE?AVPoint@@ABV2@@Z -?OutputToAbsoluteScreenPixel@Window@@QBE?AVPoint@@ABV2@@Z -??1?$Reference@VXMaterialHolder@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??_C@_0CD@HMHH@com?4sun?4star?4beans?4XMaterialHold@ -?__query@?$Reference@VXMaterialHolder@beans@star@sun@com@@@uno@star@sun@com@@CAPAVXMaterialHolder@beans@345@PAVXInterface@2345@@Z -?s_pType_com_sun_star_beans_XMaterialHolder@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXMaterialHolder@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?GetWindowExtentsRelative@Window@@QAE?AVRectangle@@PAV1@@Z -?KillOwnPopups@@YAXPAVWindow@@@Z -??0?$_List_base@VString@@V?$allocator@VString@@@_STL@@@_STL@@QAE@ABV?$allocator@VString@@@1@@Z -??0?$_List_iterator@VString@@U?$_Nonconst_traits@VString@@@_STL@@@_STL@@QAE@ABU01@@Z -??1?$Sequence@UNamedValue@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$_STL_alloc_proxy@PAU?$_List_node@VString@@@_STL@@U12@V?$allocator@VString@@@2@@_STL@@QAE@XZ -??1?$allocator@VString@@@_STL@@QAE@XZ -??1?$list@VString@@V?$allocator@VString@@@_STL@@@_STL@@QAE@XZ -??_C@_0BO@CIBF@com?4sun?4star?4beans?4NamedValue?$AA@ -??_GString@@QAEPAXI@Z -?_M_create_node@?$list@VString@@V?$allocator@VString@@@_STL@@@_STL@@IAEPAU?$_List_node@VString@@@2@ABVString@@@Z -?__distance@_STL@@YAXU?$_List_iterator@VString@@U?$_Const_traits@VString@@@_STL@@@1@0AAIUinput_iterator_tag@1@@Z -?begin@?$list@VString@@V?$allocator@VString@@@_STL@@@_STL@@QBE?AU?$_List_iterator@VString@@U?$_Const_traits@VString@@@_STL@@@2@XZ -?deallocate@?$allocator@U?$_List_node@VString@@@_STL@@@_STL@@QBEXPAU?$_List_node@VString@@@2@I@Z -?distance@_STL@@YAXU?$_List_iterator@VString@@U?$_Const_traits@VString@@@_STL@@@1@0AAI@Z -?end@?$list@VString@@V?$allocator@VString@@@_STL@@@_STL@@QAE?AU?$_List_iterator@VString@@U?$_Nonconst_traits@VString@@@_STL@@@2@XZ -?insert@?$list@VString@@V?$allocator@VString@@@_STL@@@_STL@@QAE?AU?$_List_iterator@VString@@U?$_Nonconst_traits@VString@@@_STL@@@2@U32@ABVString@@@Z -?s_pType@?$Sequence@UNamedValue@beans@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_beans_NamedValue@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUNamedValue@beans@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??_C@_0CJ@LLOE@O?3?2SRC650?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@DMMH@o?3?2SRC650?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@KGBB@o?3?2SRC650?2wntmsci7?2inc?2cppuhelpe@ -?GetExtDateFormat@DateFormatter@@QBE?AW4ExtDateFieldFormat@@E@Z -?SetExtDateFormat@DateFormatter@@QAEXW4ExtDateFieldFormat@@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBUCalendarItem@i18n@345@@Z -?GetLength@Line@@QBENXZ -?Intersection@Line@@QBEEABVRectangle@@AAV1@@Z -??0?$pair@$$CBHH@_STL@@QAE@ABU01@@Z -?GetTipHelpText@Menu@@QBEABVString@@G@Z -?SetTipHelpText@Menu@@QAEXGABVString@@@Z -?ShowQuickHelp@Help@@SAEPAVWindow@@ABVRectangle@@ABVString@@G@Z -??4FontCharMap@@QAEAAV0@ABV0@@Z -?HasGlyphs@OutputDevice@@QBEGABVFont@@ABVString@@GG@Z -??0CharMapCacheItem@?7??GetFontCharMap@OutputDevice@@QBEEAAVFontCharMap@@@Z@QAE@XZ -??1CharMapCacheItem@?7??GetFontCharMap@OutputDevice@@QBEEAAVFontCharMap@@@Z@QAE@XZ -??_C@_0CJ@EGGO@O?3?2SRX641?2src?2vcl?2source?2gdi?2imp@ -?queryInterface@cppu@@YA?AVAny@uno@star@sun@com@@ABVType@3456@PAVXEventListener@lang@456@PAVXDragGestureListener@dnd@datatransfer@456@PAVXDragSourceListener@dnd@datatransfer@456@PAVXDropTargetListener@dnd@datatransfer@456@@Z -?ApplyGlyphTransform@FreetypeServerFont@@IBEHHPAUFT_GlyphRec_@@@Z -?DecorationChange@XRmsEventHdl@@UAAXGGGG@Z -?GeometryChange@XRmsEventHdl@@UAAXFFGG@Z -??_C@_0CJ@ECGA@O?3?1src641?1src?1vcl?1source?1gdi?2imp@ -?GetBitmap@Image@@QBE?AVBitmap@@XZ -?GetMaskBitmap@Image@@QBE?AVBitmap@@XZ -?GetMaskColor@Image@@QBE?AVColor@@XZ -?HasMaskBitmap@Image@@QBEEXZ -?HasMaskColor@Image@@QBEEXZ -?GetBitmap1@RemoteGlyphPeer@@QAEPBVBitmap@@AAVServerFont@@H@Z -?GetBitmap8@RemoteGlyphPeer@@QAEPBVBitmap@@AAVServerFont@@H@Z -??0PolyArgs@@QAE@AAVPolyPolygon@@G@Z -?IsAccessibilityEnabled@Application@@SAEXZ -??0?$_List_base@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAE@ABV?$allocator@VLink@@@1@@Z -??0?$_List_iterator@VLink@@U?$_Nonconst_traits@VLink@@@_STL@@@_STL@@QAE@ABU01@@Z -?Call@VclEventListeners@@QBEXPAVVclSimpleEvent@@@Z -?CreateType@VclMenuEvent@@SAPAXXZ -?CreateType@VclSimpleEvent@@SAPAXXZ -?CreateType@VclWindowEvent@@SAPAXXZ -?IsA@VclMenuEvent@@UBEEP6APAXXZ@Z -?IsA@VclSimpleEvent@@UBEEP6APAXXZ@Z -?IsA@VclWindowEvent@@UBEEP6APAXXZ@Z -?IsOf@VclMenuEvent@@SAEP6APAXXZ@Z -?IsOf@VclSimpleEvent@@SAEP6APAXXZ@Z -?IsOf@VclWindowEvent@@SAEP6APAXXZ@Z -?StaticType@VclMenuEvent@@SAP6APAXXZXZ -?StaticType@VclSimpleEvent@@SAP6APAXXZXZ -?StaticType@VclWindowEvent@@SAP6APAXXZXZ -?Type@VclMenuEvent@@UBEP6APAXXZXZ -?Type@VclSimpleEvent@@UBEP6APAXXZXZ -?Type@VclWindowEvent@@UBEP6APAXXZXZ -?_M_insert_dispatch@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAEXU?$_List_iterator@VLink@@U?$_Nonconst_traits@VLink@@@_STL@@@2@U?$_List_iterator@VLink@@U?$_Const_traits@VLink@@@_STL@@@2@1U__false_type@@@Z -?begin@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAE?AU?$_List_iterator@VLink@@U?$_Nonconst_traits@VLink@@@_STL@@@2@XZ -?begin@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QBE?AU?$_List_iterator@VLink@@U?$_Const_traits@VLink@@@_STL@@@2@XZ -?insert@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAE?AU?$_List_iterator@VLink@@U?$_Nonconst_traits@VLink@@@_STL@@@2@U32@ABVLink@@@Z -?insert@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAEXU?$_List_iterator@VLink@@U?$_Nonconst_traits@VLink@@@_STL@@@2@U?$_List_iterator@VLink@@U?$_Const_traits@VLink@@@_STL@@@2@1@Z -??0?$_STL_alloc_proxy@PAU?$_List_node@VLink@@@_STL@@U12@V?$allocator@VLink@@@2@@_STL@@QAE@ABV?$allocator@VLink@@@1@PAU?$_List_node@VLink@@@1@@Z -??_7VclMenuEvent@@6B@ -??_7VclSimpleEvent@@6B@ -?AddChildEventListener@Menu@@QAEXABVLink@@@Z -?AddEventListener@Menu@@QAEXABVLink@@@Z -?RemoveChildEventListener@Menu@@QAEXABVLink@@@Z -?RemoveEventListener@Menu@@QAEXABVLink@@@Z -?deallocate@?$_STL_alloc_proxy@PAU?$_List_node@VLink@@@_STL@@U12@V?$allocator@VLink@@@2@@_STL@@QAEXPAU?$_List_node@VLink@@@2@I@Z -?deallocate@?$allocator@U?$_List_node@VLink@@@_STL@@@_STL@@QBEXPAU?$_List_node@VLink@@@2@I@Z -??1?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??1?$_STL_alloc_proxy@PAU?$_List_node@VLink@@@_STL@@U12@V?$allocator@VLink@@@2@@_STL@@QAE@XZ -??1?$allocator@VLink@@@_STL@@QAE@XZ -??1VclEventListeners@@QAE@XZ -??_7VclWindowEvent@@6B@ -??_C@_0CO@KKMF@drafts?4com?4sun?4star?4accessibilit@ -?AddChildEventListener@Window@@QAEXABVLink@@@Z -?AddEventListener@Window@@QAEXABVLink@@@Z -?CreateAccessible@Window@@UAE?AV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@XZ -?GetAccessible@Window@@QAE?AV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@E@Z -?RemoveChildEventListener@Window@@QAEXABVLink@@@Z -?RemoveEventListener@Window@@QAEXABVLink@@@Z -?SetAccessible@Window@@QAEXV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@@Z -?_M_create_node@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@IAEPAU?$_List_node@VLink@@@2@ABVLink@@@Z -?end@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAE?AU?$_List_iterator@VLink@@U?$_Nonconst_traits@VLink@@@_STL@@@2@XZ -?erase@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAE?AU?$_List_iterator@VLink@@U?$_Nonconst_traits@VLink@@@_STL@@@2@U32@@Z -?s_pType_drafts_com_sun_star_accessibility_XAccessible@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??_C@_0DF@NCBP@o?3?2SRX641?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@MGGF@o?3?2SRX641?2wntmsci7?2inc?2cppuhelpe@ -?resize@?$hashtable@U?$paiR@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEXI@Z -??1RmJobSetup@client@portal@star@sun@com@@QAE@XZ -??_C@_0CG@GFIB@com?4sun?4star?4portal?4client?4RmJob@ -?__query@?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@uno@star@sun@com@@CAPAVXRmOutputDevice@client@portal@345@PAVXInterface@2345@@Z -?s_pType_com_sun_star_portal_client_RmJobSetup@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBURmJobSetup@client@portal@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??4JobSetup@@QAEAAV0@ABURmJobSetup@client@portal@star@sun@com@@@Z -??_C@_0CH@HNLE@com?4sun?4star?4portal?4client?4RmQue@ -?SetRmJobSetup@JobSetup@@QBEXAAURmJobSetup@client@portal@star@sun@com@@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBURmQueueInfo@client@portal@345@@Z -?s_pType@?$Sequence@URmQueueInfo@client@portal@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_portal_client_RmQueueInfo@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBURmQueueInfo@client@portal@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@URmQueueInfo@client@portal@star@sun@com@@@2345@@Z -??_C@_0CJ@EPEB@O?3?2SRP641?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@CNOB@o?3?2SRP641?2wntmsci7?2inc?2com?1sun?1s@ -?GetPosPixel@Window@@QBE?AVPoint@@XZ -??1?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??_C@_0CJ@GGPC@O?3?2SRX642?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@MOGM@o?3?2SRX642?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@MGCK@o?3?2SRX642?2wntmsci7?2inc?2cppuhelpe@ -?SetCustomizeMode@ToolBox@@QAEXE@Z -?GetAccessibleChildWindow@Window@@QAEPAV1@G@Z -?GetAccessibleParentWindow@Window@@QBEPAV1@XZ -?GetAccessibleRole@Window@@QBEGXZ -?SetAccessibleRole@Window@@QAEXG@Z -?_M_insert_dispatch@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAEXU?$_List_iterator@VLink@@U?$_Nonconst_traits@VLink@@@_STL@@@2@U?$_List_iterator@VLink@@U?$_Const_traits@VLink@@@_STL@@@2@1ABU__false_type@2@@Z -??0?$_STLP_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@PAPAX@Z -?_M_clear@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@IAEXXZ -?_M_find@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@ABEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@ABVOUString@rtl@@@Z -?_M_set@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@IAEXPAPAX00@Z -?__copy_aux@_STL@@YAPAPAXPAPAX00ABU__true_type@1@@Z -?__copy_trivial@_STL@@YAPAXPBX0PAX@Z -?__copy_trivial_backward@_STL@@YAPAXPBX0PAX@Z -?__lower_bound@_STL@@YAPBIPBI0ABIU?$less@I@1@PAH@Z -?deallocate@?$_STLP_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAEXPAPAXI@Z -??0?$_STLP_alloc_proxy@PAVPoint@@V1@V?$allocator@VPoint@@@_STL@@@_STL@@QAE@ABV?$allocator@VPoint@@@1@PAVPoint@@@Z -?_M_insert_overflow@?$vector@VPoint@@V?$allocator@VPoint@@@_STL@@@_STL@@IAEXPAVPoint@@ABV3@ABU__false_type@2@I_N@Z -?deallocate@?$_STLP_alloc_proxy@PAU?$_List_node@VLink@@@_STL@@U12@V?$allocator@VLink@@@2@@_STL@@QAEXPAU?$_List_node@VLink@@@2@I@Z -??1?$_STLP_alloc_proxy@PAU?$_List_node@VLink@@@_STL@@U12@V?$allocator@VLink@@@2@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@U12@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@2@@_STL@@QAE@XZ -?deallocate@?$_STLP_alloc_proxy@PAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@U12@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@2@@_STL@@QAEXPAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@2@I@Z -??1?$_STLP_alloc_proxy@PAU?$_List_node@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@_STL@@U12@V?$allocator@U?$pair@V?$Reference@VXRmVirtualDevice@client@portal@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@2345@@_STL@@@2@@_STL@@QAE@XZ -?_M_clear@?$vector@PAXV?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@_STL@@@_STL@@IAEXXZ -?_M_find@?$hashtable@U?$pair@$$CBHVGlyphData@@@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHVGlyphData@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@2@@_STL@@ABEPAU?$_Hashtable_node@U?$pair@$$CBHVGlyphData@@@_STL@@@2@ABH@Z -?_M_set@?$vector@PAXV?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@_STL@@@_STL@@IAEXPAPAX00@Z -?deallocate@?$_STLP_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBHVGlyphData@@@_STL@@@_STL@@@_STL@@QAEXPAPAXI@Z -??0?$_STLP_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@_STL@@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBHH@_STL@@@1@I@Z -??0?$_STLP_alloc_proxy@PAKKV?$allocator@K@_STL@@@_STL@@QAE@ABV?$allocator@K@1@PAK@Z -??0?$_STLP_alloc_proxy@PAPAXPAXV?$allocator@PAVFtFontInfo@@@_STL@@@_STL@@QAE@ABV?$allocator@PAVFtFontInfo@@@1@PAPAX@Z -??0?$_STLP_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@1@PAPAX@Z -?_M_clear@?$vector@PAXV?$allocator@U?$pair@$$CBGG@_STL@@@_STL@@@_STL@@IAEXXZ -?_M_clear@?$vector@PAXV?$allocator@U?$pair@$$CBHH@_STL@@@_STL@@@_STL@@IAEXXZ -?_M_find@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@ABEPAU?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@2@ABH@Z -?_M_find@?$hashtable@U?$pair@QBDPAVFtFontFile@@@_STL@@PBDU?$hash@PBD@2@U?$_Select1st@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@UEqStr@@V?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@@_STL@@ABEPAU?$_Hashtable_node@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@ABQBD@Z -?_M_insert_overflow@?$vector@GV?$allocator@G@_STL@@@_STL@@IAEXPAGABGABU__true_type@2@I_N@Z -?_M_insert_overflow@?$vector@KV?$allocator@K@_STL@@@_STL@@IAEXPAKABKABU__true_type@2@I_N@Z -?_M_insert_overflow@?$vector@U?$pair@GG@_STL@@V?$allocator@U?$pair@GG@_STL@@@2@@_STL@@IAEXPAU?$pair@GG@2@ABU32@ABU__false_type@2@I_N@Z -?_M_set@?$vector@PAXV?$allocator@U?$pair@$$CBHH@_STL@@@_STL@@@_STL@@IAEXPAPAX00@Z -?deallocate@?$_STLP_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBGG@_STL@@@_STL@@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@QAEXPAU?$_Hashtable_node@U?$pair@$$CBGG@_STL@@@2@I@Z -?deallocate@?$_STLP_alloc_proxy@PAKKV?$allocator@K@_STL@@@_STL@@QAEXPAKI@Z -?deallocate@?$_STLP_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBHH@_STL@@@_STL@@@_STL@@QAEXPAPAXI@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE@ABU01@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE@ABU01@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE@ABU01@@Z -??0?$_STL_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@1@PAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@1@@Z -??0?$_STL_alloc_proxy@PAVString@@V1@V?$allocator@VString@@@_STL@@@_STL@@QAE@ABV?$allocator@VString@@@1@PAVString@@@Z -??0?$_Vector_base@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@QAE@ABV?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@1@@Z -??0?$_Vector_base@VString@@V?$allocator@VString@@@_STL@@@_STL@@QAE@IABV?$allocator@VString@@@1@@Z -??0?$allocator@VString@@@_STL@@QAE@ABV01@@Z -??0?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@QAE@XZ -??0?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@QAE@ABHABV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@1@@Z -??0?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@QAE@ABU01@@Z -??0?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@QAE@ABHABV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@1@@Z -??0?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@QAE@ABU01@@Z -??0?$pair@$$CBHVOUString@rtl@@@_STL@@QAE@ABHABVOUString@rtl@@@Z -??0?$pair@$$CBHVOUString@rtl@@@_STL@@QAE@ABU01@@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU01@@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@1@AB_N@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU01@@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@1@AB_N@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU01@@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@1@AB_N@Z -??0?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@QAE@ABV?$allocator@VString@@@1@@Z -??0DefaultFontConfigItem@vcl@@QAE@XZ -??0FontNameAttr@FontSubstConfigItem@vcl@@QAE@ABU012@@Z -??0FontSubstConfigItem@vcl@@QAE@XZ -??0OUString@rtl@@QAE@PBDJGK@Z -??1?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@PAVString@@V1@V?$allocator@VString@@@_STL@@@_STL@@QAE@XZ -??1?$_Vector_base@VString@@V?$allocator@VString@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@QAE@XZ -??1?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@QAE@XZ -??1?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@QAE@XZ -??1DefaultFontConfigItem@vcl@@UAE@XZ -??1FontNameAttr@FontSubstConfigItem@vcl@@QAE@XZ -??1FontSubstConfigItem@vcl@@UAE@XZ -??4?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@QAEAAV01@ABV01@@Z -??4FontNameAttr@FontSubstConfigItem@vcl@@QAEAAU012@ABU012@@Z -??A?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@QAEAAVOUString@rtl@@ABH@Z -??_7DefaultFontConfigItem@vcl@@6B@ -??_7FontSubstConfigItem@vcl@@6B@ -??_G?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@QAEPAXI@Z -??_G?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@QAEPAXI@Z -??_G?$pair@$$CBHVOUString@rtl@@@_STL@@QAEPAXI@Z -??_GDefaultFontConfigItem@vcl@@UAEPAXI@Z -??_GFontSubstConfigItem@vcl@@UAEPAXI@Z -?Commit@DefaultFontConfigItem@vcl@@EAEXXZ -?Commit@FontSubstConfigItem@vcl@@EAEXXZ -?Notify@DefaultFontConfigItem@vcl@@EAEXABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@@Z -?Notify@FontSubstConfigItem@vcl@@EAEXABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@@Z -?_Construct@_STL@@YAXPAU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@1@ABU21@@Z -?_Construct@_STL@@YAXPAU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@1@ABU21@@Z -?_Construct@_STL@@YAXPAU?$pair@$$CBHVOUString@rtl@@@1@ABU21@@Z -?_Construct@_STL@@YAXPAVString@@ABV2@@Z -?_Destroy@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@@Z -?_M_allocate_and_copy@?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@IAEPAVString@@IPBV3@0@Z -?_M_clone_node@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@PAU32@@Z -?_M_copy@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@AAEPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@PAU32@0@Z -?_M_create_node@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@ABU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@2@@Z -?_M_create_node@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@ABU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@2@@Z -?_M_create_node@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@ABU?$pair@$$CBHVOUString@rtl@@@2@@Z -?_M_decrement@?$_Rb_global@_N@_STL@@SAXPAU_Rb_tree_base_iterator@2@@Z -?_M_erase@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@Z -?_M_erase@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@Z -?_M_erase@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@Z -?_M_increment@?$_Rb_global@_N@_STL@@SAXPAU_Rb_tree_base_iterator@2@@Z -?_M_insert@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@2@@Z -?_M_insert@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@2@@Z -?_M_insert@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBHVOUString@rtl@@@2@@Z -?_M_insert_overflow@?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@IAEXPAUFontNameAttr@FontSubstConfigItem@vcl@@ABU345@I@Z -?_M_insert_overflow@?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@IAEXPAVString@@ABV3@I@Z -?_Rb_tree_rotate_left@_STL@@YAXPAU_Rb_tree_node_base@1@AAPAU21@@Z -?_Rb_tree_rotate_right@_STL@@YAXPAU_Rb_tree_node_base@1@AAPAU21@@Z -?_Rebalance@?$_Rb_global@_N@_STL@@SAXPAU_Rb_tree_node_base@2@AAPAU32@@Z -?_S_left@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@PAU32@@Z -?_S_right@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@PAU32@@Z -?__adjust_heap@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@HHU234@UStrictStringSort@@@Z -?__copy@_STL@@YAPAVString@@PBV2@0PAV2@Urandom_access_iterator_tag@1@PAH@Z -?__destroy@_STL@@YAXPAVString@@00@Z -?__final_insertion_sort@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@0UStrictStringSort@@@Z -?__introsort_loop@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@00HUStrictStringSort@@@Z -?__linear_insert@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@0U234@UStrictStringSort@@@Z -?__lower_bound@_STL@@YAPBUFontNameAttr@FontSubstConfigItem@vcl@@PBU234@0ABU234@UWeakStringSort@@PAH@Z -?__make_heap@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@0UStrictStringSort@@0PAH@Z -?__median@_STL@@YAABUFontNameAttr@FontSubstConfigItem@vcl@@ABU234@00UStrictStringSort@@@Z -?__partial_sort@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@000UStrictStringSort@@@Z -?__pop_heap@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@00U234@UStrictStringSort@@PAH@Z -?__push_heap@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@HHU234@UStrictStringSort@@@Z -?__stl_alloc_rebind@_STL@@YAAAV?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@@1@AAV?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@1@PBU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@1@@Z -?__unguarded_linear_insert@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@U234@UStrictStringSort@@@Z -?__unguarded_partition@_STL@@YAPAUFontNameAttr@FontSubstConfigItem@vcl@@PAU234@0U234@UStrictStringSort@@@Z -?__uninitialized_copy@_STL@@YAPAVString@@PBV2@0PAV2@1@Z -?__uninitialized_copy_aux@_STL@@YAPAVString@@PBV2@0PAV2@U__false_type@@@Z -?begin@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@XZ -?begin@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@XZ -?begin@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@XZ -?clear@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAEXXZ -?copy@_STL@@YAPAVString@@PBV2@0PAV2@@Z -?deallocate@?$_STL_alloc_proxy@PAVString@@V1@V?$allocator@VString@@@_STL@@@_STL@@QAEXPAVString@@I@Z -?deallocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@I@Z -?deallocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@I@Z -?deallocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@I@Z -?deallocate@?$allocator@VString@@@_STL@@QBEXPAVString@@I@Z -?destroy_node@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@IAEXPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@Z -?end@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@XZ -?end@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@XZ -?end@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@XZ -?end@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@XZ -?end@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Const_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@XZ -?find@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@ABH@Z -?find@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@ABH@Z -?find@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Const_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@ABH@Z -?get@DefaultFontConfigItem@vcl@@SAPAV12@XZ -?get@FontSubstConfigItem@vcl@@SAPAV12@XZ -?getDefaultFont@DefaultFontConfigItem@vcl@@QBEABVOUString@rtl@@HH@Z -?getKeyType@DefaultFontConfigItem@vcl@@CAHABVOUString@rtl@@@Z -?getMapName@FontSubstConfigItem@vcl@@SAXABVString@@AAV3@1AAW4FontWeight@@AAW4FontWidth@@AAK@Z -?getSubstInfo@FontSubstConfigItem@vcl@@QBEPBUFontNameAttr@12@ABVString@@H@Z -?getValues@DefaultFontConfigItem@vcl@@AAEXXZ -?getValues@FontSubstConfigItem@vcl@@AAEXXZ -?get_allocator@?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@QBE?AV?$allocator@VString@@@2@XZ -?insert@?$map@HV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@U32@ABU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@2@@Z -?insert@?$map@HV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@U32@ABU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@2@@Z -?insert@?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@U32@ABU?$pair@$$CBHVOUString@rtl@@@2@@Z -?insert_unique@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@U32@ABU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@2@@Z -?insert_unique@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@2@@Z -?insert_unique@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@U32@ABU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@2@@Z -?insert_unique@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@2@@Z -?insert_unique@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@U32@ABU?$pair@$$CBHVOUString@rtl@@@2@@Z -?insert_unique@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBHVOUString@rtl@@@2@@Z -?lower_bound@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@ABH@Z -?lower_bound@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@ABH@Z -?lower_bound@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@ABH@Z -?lower_bound@?$map@HV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@ABH@Z -?setDefaultFont@DefaultFontConfigItem@vcl@@QAEXHHABVOUString@rtl@@@Z -?size@?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@QBEIXZ -?uninitialized_copy@_STL@@YAPAVString@@PBV2@0PAV2@@Z -?value_type@_STL@@YAPAVString@@PBV2@@Z -??1?$Reference@VXAccessibleNativeFrameMap@bridge@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??_C@_0ED@FNPA@drafts?4com?4sun?4star?4accessibilit@ -?GetAccessibleChildWindowCount@Window@@QAEGXZ -?GetAccessibleDescription@Window@@QBE?AVString@@XZ -?GetAccessibleName@Window@@QBE?AVString@@XZ -?SetAccessibleDescription@Window@@QAEXABVString@@@Z -?SetAccessibleName@Window@@QAEXABVString@@@Z -?s_pType_drafts_com_sun_star_accessibility_bridge_XAccessibleNativeFrameMap@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessibleNativeFrameMap@bridge@accessibility@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@2345@@Z -??0ButtonDialog@@QAE@PAVWindow@@_J@Z -??0DockingWindow@@QAE@PAVWindow@@_J@Z -?GetFloatStyle@DockingWindow@@QBE_JXZ -?SetFloatStyle@DockingWindow@@QAEX_J@Z -??0Dialog@@QAE@PAVWindow@@_J@Z -??0ModalDialog@@QAE@PAVWindow@@_J@Z -??0ModelessDialog@@QAE@PAVWindow@@_J@Z -??0FloatingWindow@@QAE@PAVWindow@@_J@Z -??0ErrorBox@@QAE@PAVWindow@@_JABVString@@@Z -??0MessBox@@QAE@PAVWindow@@_JABVString@@2@Z -??0QueryBox@@QAE@PAVWindow@@_JABVString@@@Z -??0WarningBox@@QAE@PAVWindow@@_JABVString@@@Z -??0Splitter@@QAE@PAVWindow@@_J@Z -??0SplitWindow@@QAE@PAVWindow@@_J@Z -?CalcWindowSizePixel@SplitWindow@@SA?AVSize@@ABV2@W4WindowAlign@@_JE@Z -??0StatusBar@@QAE@PAVWindow@@_J@Z -??0SystemChildWindow@@QAE@PAVWindow@@_J@Z -?PreNotify@SystemWindow@@UAEJAAVNotifyEvent@@@Z -??0TabDialog@@QAE@PAVWindow@@_J@Z -??0TabPage@@QAE@PAVWindow@@_J@Z -??0ToolBox@@QAE@PAVWindow@@_J@Z -?GetFocus@ToolBox@@UAEXXZ -?KeyInput@ToolBox@@UAEXABVKeyEvent@@@Z -?LoseFocus@ToolBox@@UAEXXZ -??0Window@@QAE@PAV0@_J@Z -?SetExtendedStyle@Window@@QAEX_J@Z -?SetStyle@Window@@QAEX_J@Z -??0WorkWindow@@QAE@PAVWindow@@ABVAny@uno@star@sun@com@@_J@Z -??0WorkWindow@@QAE@PAVWindow@@_J@Z -??0Button@@QAE@PAVWindow@@_J@Z -??0CancelButton@@QAE@PAVWindow@@_J@Z -??0CheckBox@@QAE@PAVWindow@@_J@Z -??0HelpButton@@QAE@PAVWindow@@_J@Z -??0ImageButton@@QAE@PAVWindow@@_J@Z -??0ImageRadioButton@@QAE@PAVWindow@@_J@Z -??0OKButton@@QAE@PAVWindow@@_J@Z -??0PushButton@@QAE@PAVWindow@@_J@Z -??0RadioButton@@QAE@PAVWindow@@_J@Z -??0TriStateBox@@QAE@PAVWindow@@_J@Z -??0Control@@QAE@PAVWindow@@_J@Z -??0ComboBox@@QAE@PAVWindow@@_J@Z -??0Edit@@QAE@PAVWindow@@_J@Z -??0CurrencyBox@@QAE@PAVWindow@@_J@Z -??0CurrencyField@@QAE@PAVWindow@@_J@Z -??0MetricBox@@QAE@PAVWindow@@_J@Z -??0MetricField@@QAE@PAVWindow@@_J@Z -??0NumericBox@@QAE@PAVWindow@@_J@Z -??0NumericField@@QAE@PAVWindow@@_J@Z -??0DateBox@@QAE@PAVWindow@@_J@Z -??0DateField@@QAE@PAVWindow@@_J@Z -??0PatternBox@@QAE@PAVWindow@@_J@Z -??0PatternField@@QAE@PAVWindow@@_J@Z -??0TimeBox@@QAE@PAVWindow@@_J@Z -??0TimeField@@QAE@PAVWindow@@_J@Z -??0FixedBorder@@QAE@PAVWindow@@_J@Z -??0FixedBitmap@@QAE@PAVWindow@@_J@Z -??0FixedImage@@QAE@PAVWindow@@_J@Z -??0FixedLine@@QAE@PAVWindow@@_J@Z -??0FixedText@@QAE@PAVWindow@@_J@Z -??0GroupBox@@QAE@PAVWindow@@_J@Z -??0ImageControl@@QAE@PAVWindow@@_J@Z -??0LongCurrencyBox@@QAE@PAVWindow@@_J@Z -??0LongCurrencyField@@QAE@PAVWindow@@_J@Z -??0ListBox@@QAE@PAVWindow@@_J@Z -??0MultiListBox@@QAE@PAVWindow@@_J@Z -??0MoreButton@@QAE@PAVWindow@@_J@Z -??0MenuButton@@QAE@PAVWindow@@_J@Z -??0ScrollBar@@QAE@PAVWindow@@_J@Z -??0ScrollBarBox@@QAE@PAVWindow@@_J@Z -??0Slider@@QAE@PAVWindow@@_J@Z -??0SpinField@@QAE@PAVWindow@@_J@Z -??0SpinButton@@QAE@PAVWindow@@_J@Z -??0TabControl@@QAE@PAVWindow@@_J@Z -??0?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QAE@XZ -??0?$_STL_alloc_proxy@PAPAVPrinterPage@@PAV1@V?$allocator@PAVPrinterPage@@@_STL@@@_STL@@QAE@ABV?$allocator@PAVPrinterPage@@@1@PAPAVPrinterPage@@@Z -??1?$Reference@VXRmPageRequestor@client@portal@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$_STL_alloc_proxy@PAPAVPrinterPage@@PAV1@V?$allocator@PAVPrinterPage@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@PAVPrinterPage@@@_STL@@QAE@XZ -??1?$vector@PAVPrinterPage@@V?$allocator@PAVPrinterPage@@@_STL@@@_STL@@QAE@XZ -??_7RmPageRequestor@@6BOWeakObject@cppu@@@ -??_7RmPageRequestor@@6BXRmPageRequestor@client@portal@star@sun@com@@@ -??_7RmPageRequestor@@6BXTypeProvider@lang@star@sun@com@@@ -??_C@_0CM@OIKE@com?4sun?4star?4portal?4client?4XRmPa@ -??_GGDIMetaFile@@QAEPAXI@Z -??_GRmPageRequestor@@UAEPAXI@Z -?PrintRemotePage@Printer@@QAEXK@Z -?_M_allocate_and_copy@?$vector@PAVPrinterPage@@V?$allocator@PAVPrinterPage@@@_STL@@@_STL@@IAEPAPAVPrinterPage@@IPBQAV3@0@Z -?_M_insert_overflow@?$vector@PAVPrinterPage@@V?$allocator@PAVPrinterPage@@@_STL@@@_STL@@IAEXPAPAVPrinterPage@@ABQAV3@I@Z -?__uninitialized_copy_aux@_STL@@YAPAPAVPrinterPage@@PAPAV2@00U__false_type@@@Z -?__uninitialized_copy_aux@_STL@@YAPAPAVPrinterPage@@PBQAV2@0PAPAV2@U__false_type@@@Z -?__uninitialized_fill_n_aux@_STL@@YAPAPAVPrinterPage@@PAPAV2@IABQAV2@U__false_type@@@Z -?copy@_STL@@YAPAPAVPrinterPage@@PBQAV2@0PAPAV2@@Z -?deallocate@?$_STL_alloc_proxy@PAPAVPrinterPage@@PAV1@V?$allocator@PAVPrinterPage@@@_STL@@@_STL@@QAEXPAPAVPrinterPage@@I@Z -?deallocate@?$allocator@PAVPrinterPage@@@_STL@@QBEXPAPAVPrinterPage@@I@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXRmPageRequestor@client@portal@star@sun@com@@@2345@@Z -?s_pType_com_sun_star_portal_client_XRmPageRequestor@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXRmPageRequestor@client@portal@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?set@?$Reference@VXRmOutputDevice@client@portal@star@sun@com@@@uno@star@sun@com@@QAAEPAVXRmOutputDevice@client@portal@345@@Z -??1RmPageRequestor@@UAE@XZ -?LinkStubPrintPageHdl@RmPageRequestor@@CAJPAX0@Z -?PrintPageHdl@RmPageRequestor@@AAEJPAX@Z -?requestCompleted@RmPageRequestor@@UAAXXZ -?requestPage@RmPageRequestor@@UAAXK@Z -??_C@_0CJ@PCKG@O?3?2SOW641?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@NCHO@o?3?2SOW641?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@DEDB@o?3?2SOW641?2wntmsci7?2inc?2cppuhelpe@ -??_C@_0CJ@KEGP@O?3?2SRC651?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@DHBG@o?3?2SRC651?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@FJNE@o?3?2SRC651?2wntmsci7?2inc?2cppuhelpe@ -?GetGlyphKernValue@VirtDevServerFont@@MBEHHH@Z -?FixupGlyphIndex@FreetypeServerFont@@QBEHHG@Z -?GetEmUnits@FreetypeServerFont@@QBEHXZ -?GetGlyphKernValue@FreetypeServerFont@@MBEHHH@Z -?GetRawGlyphIndex@FreetypeServerFont@@QBEHG@Z -?GetTaskPaneList@SystemWindow@@QAEPAVTaskPaneList@@XZ -?GetItemImageAngle@ToolBox@@QBEJG@Z -?GetItemImageMirrorMode@ToolBox@@QBEEG@Z -?SetItemImageAngle@ToolBox@@QAEXGJ@Z -?SetItemImageMirrorMode@ToolBox@@QAEXGE@Z -??0?$_List_iterator@PAVWindow@@U?$_Nonconst_traits@PAVWindow@@@_STL@@@_STL@@QAE@ABU01@@Z -??0?$list@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAE@ABV?$allocator@PAVWindow@@@1@@Z -??0TaskPaneList@@QAE@XZ -??1?$_List_base@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAE@XZ -??1?$list@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAE@XZ -??1TaskPaneList@@QAE@XZ -??_F?$list@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAEXXZ -?AddWindow@TaskPaneList@@QAEXPAVWindow@@@Z -?FindNextPane@TaskPaneList@@AAEPAVWindow@@PAV2@@Z -?HandleKeyEvent@TaskPaneList@@QAEEVKeyEvent@@@Z -?LTR@@YA_NAAPBVWindow@@0@Z -?RemoveWindow@TaskPaneList@@QAEXPAVWindow@@@Z -?begin@?$list@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAE?AU?$_List_iterator@PAVWindow@@U?$_Nonconst_traits@PAVWindow@@@_STL@@@2@XZ -?begin@?$list@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QBE?AU?$_List_iterator@PAVWindow@@U?$_Const_traits@PAVWindow@@@_STL@@@2@XZ -?distance@_STL@@YAXU?$_List_iterator@PAVWindow@@U?$_Const_traits@PAVWindow@@@_STL@@@1@0AAI@Z -?end@?$list@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAE?AU?$_List_iterator@PAVWindow@@U?$_Nonconst_traits@PAVWindow@@@_STL@@@2@XZ -?erase@?$list@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAE?AU?$_List_iterator@PAVWindow@@U?$_Nonconst_traits@PAVWindow@@@_STL@@@2@U32@@Z -?insert@?$list@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAE?AU?$_List_iterator@PAVWindow@@U?$_Nonconst_traits@PAVWindow@@@_STL@@@2@U32@ABQAVWindow@@@Z -?merge@?$list@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAEXAAV12@P6A_NAAPBVWindow@@1@Z@Z -?splice@?$list@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAEXU?$_List_iterator@PAVWindow@@U?$_Nonconst_traits@PAVWindow@@@_STL@@@2@AAV12@0@Z -?swap@_STL@@YAXAAV?$_STL_alloc_proxy@PAU?$_List_node@PAVWindow@@@_STL@@U12@V?$allocator@PAVWindow@@@2@@1@0@Z -?_M_insert@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEAAU?$pair@$$CBVOUString@rtl@@V12@@2@ABU32@@Z -??0?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@1@PAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@1@@Z -??0?$_STLP_alloc_proxy@PAVString@@V1@V?$allocator@VString@@@_STL@@@_STL@@QAE@ABV?$allocator@VString@@@1@PAVString@@@Z -??1?$_Rb_tree_base@U?$pair@$$CBHVOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAVString@@V1@V?$allocator@VString@@@_STL@@@_STL@@QAE@XZ -??_GFontNameAttr@FontSubstConfigItem@vcl@@QAEPAXI@Z -?_M_clear@?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@IAEXXZ -?_M_find@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@ABH@Z -?_M_find@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@ABH@Z -?_M_find@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@ABH@Z -?_M_insert@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@2@0@Z -?_M_insert@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@2@0@Z -?_M_insert@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBHVOUString@rtl@@@2@0@Z -?_M_insert_overflow@?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@IAEXPAUFontNameAttr@FontSubstConfigItem@vcl@@ABU345@ABU__false_type@2@I_N@Z -?_M_insert_overflow@?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@IAEXPAVString@@ABV3@ABU__false_type@2@I_N@Z -?_M_lower_bound@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@ABH@Z -?__copy@_STL@@YAPAVString@@PBV2@0PAV2@ABUrandom_access_iterator_tag@1@PAH@Z -?__copy_ptrs@_STL@@YAPAVString@@PBV2@0PAV2@ABU__false_type@1@@Z -?__default_constructed@_STL@@YA?AV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@1@PAV21@@Z -?__default_constructed@_STL@@YA?AVOUString@rtl@@PAV23@@Z -?__default_constructed_aux@_STL@@YA?AV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@1@PAV21@ABU__false_type@1@@Z -?__stl_delete@_STL@@YAXPAX@Z -?__uninitialized_copy@_STL@@YAPAVString@@PBV2@0PAV2@ABU__false_type@1@@Z -?clear@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAEXXZ -?deallocate@?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAEXPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@I@Z -?deallocate@?$_STLP_alloc_proxy@PAVString@@V1@V?$allocator@VString@@@_STL@@@_STL@@QAEXPAVString@@I@Z -??0?$_STLP_alloc_proxy@PAPAVPrinterPage@@PAV1@V?$allocator@PAVPrinterPage@@@_STL@@@_STL@@QAE@ABV?$allocator@PAVPrinterPage@@@1@PAPAVPrinterPage@@@Z -??1?$_STLP_alloc_proxy@PAPAVPrinterPage@@PAV1@V?$allocator@PAVPrinterPage@@@_STL@@@_STL@@QAE@XZ -??1?$_Vector_base@PAVPrinterPage@@V?$allocator@PAVPrinterPage@@@_STL@@@_STL@@QAE@XZ -?__copy_aux@_STL@@YAPAPAVPrinterPage@@PBQAV2@0PAPAV2@ABU__true_type@1@@Z -?deallocate@?$_STLP_alloc_proxy@PAPAVPrinterPage@@PAV1@V?$allocator@PAVPrinterPage@@@_STL@@@_STL@@QAEXPAPAVPrinterPage@@I@Z -??0GlyphMetric@@QAE@XZ -?_M_new_node@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@AAEPAU?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@2@ABU?$pair@$$CBHH@2@@Z -?resize@?$hashtable@U?$pair@QBDPAVFtFontFile@@@_STL@@PBDU?$hash@PBD@2@U?$_Select1st@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@UEqStr@@V?$allocator@U?$pair@QBDPAVFtFontFile@@@_STL@@@2@@_STL@@QAEXI@Z -?GetBoundingRectangle@ListBox@@QBE?AVRectangle@@G@Z -?GetKeyEvent@NotifyEvent@@QBEPBVKeyEvent@@XZ -??0?$_Temporary_buffer@PAPAVWindow@@PAV1@@_STL@@QAE@PAPAVWindow@@0@Z -??1?$_Temporary_buffer@PAPAVWindow@@PAV1@@_STL@@QAE@XZ -??RLTRSort@@QAE_NPBVWindow@@0@Z -?_Construct@_STL@@YAXPAPAVWindow@@ABQAV2@@Z -?__copy@_STL@@YAPAPAVWindow@@PAPAV2@00Urandom_access_iterator_tag@1@PAH@Z -?__copy_backward@_STL@@YAPAPAVWindow@@PAPAV2@00Urandom_access_iterator_tag@1@PAH@Z -?__gcd@_STL@@YAHHH@Z -?__inplace_stable_sort@_STL@@YAXPAPAVWindow@@0ULTRSort@@@Z -?__insertion_sort@_STL@@YAXPAPAVWindow@@0ULTRSort@@@Z -?__linear_insert@_STL@@YAXPAPAVWindow@@0PAV2@ULTRSort@@@Z -?__lower_bound@_STL@@YAPAPAVWindow@@PAPAV2@0ABQAV2@ULTRSort@@PAH@Z -?__merge_adaptive@_STL@@YAXPAPAVWindow@@00HH0HULTRSort@@@Z -?__merge_sort_loop@_STL@@YAXPAPAVWindow@@00HULTRSort@@@Z -?__merge_without_buffer@_STL@@YAXPAPAVWindow@@00HHULTRSort@@@Z -?__stable_sort_adaptive@_STL@@YAXPAPAVWindow@@00HULTRSort@@@Z -?__unguarded_linear_insert@_STL@@YAXPAPAVWindow@@PAV2@ULTRSort@@@Z -?__upper_bound@_STL@@YAPAPAVWindow@@PAPAV2@0ABQAV2@ULTRSort@@PAH@Z -?copy@_STL@@YAPAPAVWindow@@PAPAV2@00@Z -?copy_backward@_STL@@YAPAPAVWindow@@PAPAV2@00@Z -?merge@_STL@@YAPAPAVWindow@@PAPAV2@0000ULTRSort@@@Z -?rotate@_STL@@YAPAPAVWindow@@PAPAV2@00@Z -??0KeyEvent@@QAE@ABV0@@Z -?LogicalTextDirectionality@KeyEvent@@QBE?AV1@W4TextDirectionality@@@Z -?GetColorTransformArrays@Image@@SAXW4ImageColorTransform@@AAPAVColor@@1AAK@Z -?GetColorTransformedImage@Image@@QBE?AV1@W4ImageColorTransform@@@Z -?GetColorTransformedImageList@ImageList@@QBE?AV1@W4ImageColorTransform@@@Z -??_C@_0CJ@IEPD@O?3?2SRC652?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@CLGF@o?3?2SRC652?2wntmsci7?2inc?2com?1sun?1s@ -??0?$_Vector_base@VString@@V?$allocator@VString@@@_STL@@@_STL@@QAE@ABV?$allocator@VString@@@1@@Z -??_C@_0DH@FJJL@o?3?2SRC652?2wntmsci7?2inc?2cppuhelpe@ -?GetModeImage@MessBox@@QBEABVImage@@W4BmpColorMode@@@Z -?SetModeImage@MessBox@@QAEEABVImage@@W4BmpColorMode@@@Z -?GetModeBitmap@PushButton@@QBE?AVBitmapEx@@W4BmpColorMode@@@Z -?GetModeImage@PushButton@@QBEABVImage@@W4BmpColorMode@@@Z -?GetModeImage@RadioButton@@QBEABVImage@@W4BmpColorMode@@@Z -?SetModeBitmap@PushButton@@QAEEABVBitmapEx@@W4BmpColorMode@@@Z -?SetModeImage@PushButton@@QAEEABVImage@@W4BmpColorMode@@@Z -?SetModeImage@RadioButton@@QAEEABVImage@@W4BmpColorMode@@@Z -?GetModeBitmap@FixedBitmap@@QBEABVBitmap@@W4BmpColorMode@@@Z -?GetModeImage@FixedImage@@QBEABVImage@@W4BmpColorMode@@@Z -?SetModeBitmap@FixedBitmap@@QAEEABVBitmap@@W4BmpColorMode@@@Z -?SetModeImage@FixedImage@@QAEEABVImage@@W4BmpColorMode@@@Z -?GetModeBitmap@ImageControl@@QBEABVBitmapEx@@W4BmpColorMode@@@Z -?SetModeBitmap@ImageControl@@QAEEABVBitmapEx@@W4BmpColorMode@@@Z -_real@8@4004f000000000000000 -_real@8@4005c800000000000000 -_real@8@3ff98888888888888800 -??1?$Reference@VXAccessibleTopWindowMap@bridge@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXTopWindow@awt@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??_C@_0BM@HEFL@com?4sun?4star?4awt?4XTopWindow?$AA@ -??_C@_0EB@KONF@drafts?4com?4sun?4star?4accessibilit@ -?s_pType_com_sun_star_awt_XTopWindow@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTopWindow@awt@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_drafts_com_sun_star_accessibility_bridge_XAccessibleTopWindowMap@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessibleTopWindowMap@bridge@accessibility@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??RLTRSort@@QBE_NPBVWindow@@0@Z -??RLTRSortBackward@@QBE_NPBVWindow@@0@Z -?FindNextFloat@TaskPaneList@@AAEPAVWindow@@PAV2@E@Z -?FindNextPane@TaskPaneList@@AAEPAVWindow@@PAV2@E@Z -?__chunk_insertion_sort@_STL@@YAXPAPAVWindow@@0HULTRSort@@@Z -?__chunk_insertion_sort@_STL@@YAXPAPAVWindow@@0HULTRSortBackward@@@Z -?__inplace_stable_sort@_STL@@YAXPAPAVWindow@@0ULTRSortBackward@@@Z -?__insertion_sort@_STL@@YAXPAPAVWindow@@0ULTRSortBackward@@@Z -?__linear_insert@_STL@@YAXPAPAVWindow@@0PAV2@ULTRSortBackward@@@Z -?__lower_bound@_STL@@YAPAPAVWindow@@PAPAV2@0ABQAV2@ULTRSortBackward@@PAH@Z -?__merge_adaptive@_STL@@YAXPAPAVWindow@@00HH0HULTRSortBackward@@@Z -?__merge_sort_loop@_STL@@YAXPAPAVWindow@@00HULTRSortBackward@@@Z -?__merge_sort_with_buffer@_STL@@YAXPAPAVWindow@@00PAHULTRSort@@@Z -?__merge_sort_with_buffer@_STL@@YAXPAPAVWindow@@00PAHULTRSortBackward@@@Z -?__merge_without_buffer@_STL@@YAXPAPAVWindow@@00HHULTRSortBackward@@@Z -?__stable_sort_adaptive@_STL@@YAXPAPAVWindow@@00HULTRSortBackward@@@Z -?__stable_sort_aux@_STL@@YAXPAPAVWindow@@00PAHULTRSort@@@Z -?__stable_sort_aux@_STL@@YAXPAPAVWindow@@00PAHULTRSortBackward@@@Z -?__unguarded_linear_insert@_STL@@YAXPAPAVWindow@@PAV2@ULTRSortBackward@@@Z -?__uninitialized_fill_n_aux@_STL@@YAPAPAVWindow@@PAPAV2@HABQAV2@U__false_type@@@Z -?__upper_bound@_STL@@YAPAPAVWindow@@PAPAV2@0ABQAV2@ULTRSortBackward@@PAH@Z -?merge@_STL@@YAPAPAVWindow@@PAPAV2@0000ULTRSortBackward@@@Z -??_C@_0CJ@JLHI@O?3?2SRC653?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@CALE@o?3?2SRC653?2wntmsci7?2inc?2com?1sun?1s@ -?mbNoOGL@OpenGL@@0EA -??_C@_0DH@KGFO@o?3?2SRC653?2wntmsci7?2inc?2cppuhelpe@ -?__rotate@_STL@@YAPAPAVWindow@@PAPAV2@00PAH0@Z -??8BaseReference@uno@star@sun@com@@QBAEPAVXInterface@1234@@Z -?GetRemotePageSetup@Printer@@QAEXKAAURmJobSetup@client@portal@star@sun@com@@@Z -?requestJobSetup@RmPageRequestor@@UAA?AURmJobSetup@client@portal@star@sun@com@@K@Z -??0TextDataObject@unohelper@vcl@@QAE@ABVString@@@Z -??1TextDataObject@unohelper@vcl@@UAE@XZ -??_7TextDataObject@unohelper@vcl@@6BOWeakObject@cppu@@@ -??_7TextDataObject@unohelper@vcl@@6BXTransferable@datatransfer@star@sun@com@@@ -??_GTextDataObject@unohelper@vcl@@UAEPAXI@Z -?acquire@TextDataObject@unohelper@vcl@@UAAXXZ -?acquire@TextDataObject@unohelper@vcl@@W3AAXXZ -?getTransferData@TextDataObject@unohelper@vcl@@UAA?AVAny@uno@star@sun@com@@ABUDataFlavor@datatransfer@678@@Z -?getTransferDataFlavors@TextDataObject@unohelper@vcl@@UAA?AV?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@uno@star@sun@com@@XZ -?isDataFlavorSupported@TextDataObject@unohelper@vcl@@UAAEABUDataFlavor@datatransfer@star@sun@com@@@Z -?queryInterface@TextDataObject@unohelper@vcl@@UAA?AVAny@uno@star@sun@com@@ABVType@5678@@Z -?queryInterface@TextDataObject@unohelper@vcl@@W3AA?AVAny@uno@star@sun@com@@ABVType@5678@@Z -?release@TextDataObject@unohelper@vcl@@UAAXXZ -?release@TextDataObject@unohelper@vcl@@W3AAXXZ -??_C@_0CJ@MFML@O?3?2SRC654?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@BDIC@o?3?2SRC654?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@FJAF@o?3?2SRC654?2wntmsci7?2inc?2cppuhelpe@ -?GetMousePosPixel@HelpEvent@@QBEABVPoint@@XZ -?GetCurrentModButtons@Window@@QAEKXZ -?GetItemImageAngle@Menu@@QBEJG@Z -?GetItemImageMirrorMode@Menu@@QBEEG@Z -?SetItemImageAngle@Menu@@QAEXGJ@Z -?SetItemImageMirrorMode@Menu@@QAEXGE@Z -??0MetaLayoutModeAction@@QAE@K@Z -??0MetaLayoutModeAction@@QAE@XZ -??1MetaLayoutModeAction@@UAE@XZ -??_7MetaLayoutModeAction@@6B@ -??_GMetaLayoutModeAction@@UAEPAXI@Z -?Clone@MetaLayoutModeAction@@UAEPAVMetaAction@@XZ -?Execute@MetaLayoutModeAction@@UAEXPAVOutputDevice@@@Z -?SetLayoutMode@OutputDevice@@QAEXK@Z -??_C@_0CJ@EODJ@O?3?1SRX642?1src?1vcl?1source?1gdi?2imp@ -??_C@_0CJ@NKEA@O?3?2SRC655?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@BIFD@o?3?2SRC655?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@KGMA@o?3?2SRC655?2wntmsci7?2inc?2cppuhelpe@ -?GetActivationKey@Window@@QBE?AVKeyEvent@@XZ -?GetLabelFor@Window@@QBEPAV1@XZ -?GetLabeledBy@Window@@QBEPAV1@XZ -?GetDisplayLineCount@ComboBox@@QBEGXZ -?ToggleDropDown@ComboBox@@QAEXXZ -?GetDisplayLineCount@ListBox@@QBEGXZ -?ToggleDropDown@ListBox@@QAEXXZ -?GetColorTransformedBitmap@Bitmap@@QBE?AV1@W4BmpColorMode@@@Z -?GetColorTransformedBitmapEx@BitmapEx@@QBE?AV1@W4BmpColorMode@@@Z -?GetGlyphBoundRect@OutputDevice@@QAEEABVString@@HHAAVRectangle@@E@Z -?GetGlyphOutline@OutputDevice@@QAEEABVString@@HHAAVPolyPolygon@@E@Z -_real@8@3ff5e4c3881dbe40d800 -?GetDropDownPosSizePixel@ComboBox@@QBE?AVRectangle@@XZ -?GetTopEntry@ComboBox@@QBEGXZ -?SetTopEntry@ComboBox@@QAEXG@Z -?GetDropDownPosSizePixel@ListBox@@QBE?AVRectangle@@XZ -?GetGlyphBitmap1@VirtDevServerFont@@UBE_NHAAVRawBitmap@@@Z -?GetGlyphBitmap8@VirtDevServerFont@@UBE_NHAAVRawBitmap@@@Z -?GetGlyphBitmap1@FreetypeServerFont@@UBE_NHAAVRawBitmap@@@Z -?GetGlyphBitmap8@FreetypeServerFont@@UBE_NHAAVRawBitmap@@@Z -??0IcuLayoutEngine@@QAE@PAVFreetypeServerFont@@@Z -??1IcuLayoutEngine@@UAE@XZ -??_7IcuFontFromServerFont@@6B@ -??_7IcuLayoutEngine@@6B@ -??_7LEFontInstance@icu_2_0@@6B@ -??_7ServerFontLayout@@6B@ -??_7ServerFontLayoutEngine@@6B@ -??_GIcuFontFromServerFont@@UAEPAXI@Z -??_GIcuLayoutEngine@@UAEPAXI@Z -??_GLEFontInstance@icu_2_0@@UAEPAXI@Z -??_GServerFontLayout@@UAEPAXI@Z -?DoneLayoutEngine@ServerFont@@MAEXXZ -?InitLayoutEngine@FreetypeServerFont@@MAE_NXZ -?InitLayoutEngine@ServerFont@@MAE_NXZ -?canDisplay@IcuFontFromServerFont@@UBECK@Z -?getFontTable@IcuFontFromServerFont@@UBEPBXK@Z -?getGlyphAdvance@IcuFontFromServerFont@@UBEXGAAULEPoint@icu_2_0@@@Z -?getGlyphPoint@IcuFontFromServerFont@@UBECGJAAULEPoint@icu_2_0@@@Z -?getName@IcuFontFromServerFont@@UBEJGGGGPAG@Z -?getUnitsPerEM@IcuFontFromServerFont@@UBEJXZ -?getXPixelsPerEm@IcuFontFromServerFont@@UBEMXZ -?getYPixelsPerEm@IcuFontFromServerFont@@UBEMXZ -?mapCharToGlyph@IcuFontFromServerFont@@UBEGKPBVLECharMapper@icu_2_0@@@Z -?mapCharsToGlyphs@IcuFontFromServerFont@@UBEXQBGJJCPBVLECharMapper@icu_2_0@@QAG@Z -?pixelsToUnits@IcuFontFromServerFont@@UBEXAAULEPoint@icu_2_0@@0@Z -?transformFunits@IcuFontFromServerFont@@UBEXMMAAULEPoint@icu_2_0@@@Z -?unitsToPoints@IcuFontFromServerFont@@UBEXAAULEPoint@icu_2_0@@0@Z -?xPixelsToUnits@IcuFontFromServerFont@@UBEMM@Z -?xUnitsToPoints@IcuFontFromServerFont@@UBEMM@Z -?yPixelsToUnits@IcuFontFromServerFont@@UBEMM@Z -?yUnitsToPoints@IcuFontFromServerFont@@UBEMM@Z -??1SimpleWinLayout@@UAE@XZ -??1UniscribeLayout@@UAE@XZ -??_7SimpleWinLayout@@6B@ -??_7UniscribeLayout@@6B@ -??_GSimpleWinLayout@@UAEPAXI@Z -??_GUniscribeLayout@@UAEPAXI@Z -?ApplyDXArray@SimpleWinLayout@@IAEXPBJ@Z -?ApplyDXArray@UniscribeLayout@@IAEXPBJ@Z -?Draw@SimpleWinLayout@@UBEXXZ -?Draw@UniscribeLayout@@UBEXXZ -?FillDXArray@SimpleWinLayout@@UBEJPAJ@Z -?FillDXArray@UniscribeLayout@@UBEJPAJ@Z -?GetCharPosition@SimpleWinLayout@@UBE?AVPoint@@H_N@Z -?GetCharPosition@UniscribeLayout@@UBE?AVPoint@@H_N@Z -?GetItemSubrange@UniscribeLayout@@IBE_NHAAH0@Z -?GetTextBreak@SimpleWinLayout@@UBEHJ@Z -?GetTextBreak@UniscribeLayout@@UBEHJ@Z -?Justify@SimpleWinLayout@@IAEXJ@Z -?Justify@UniscribeLayout@@IAEXJ@Z -??_7WinLayout@@6B@ -??_GWinLayout@@UAEPAXI@Z -?GetFloatingPos@DockingWindow@@QBE?AVPoint@@XZ -?GetWindowStateData@SystemWindow@@QBEXAAVWindowStateData@@@Z -?SetImageList@ToolBox@@QAEXABVImageList@@@Z -??_7LEFontInstance@icu_2_1@@6B@ -??_GLEFontInstance@icu_2_1@@UAEPAXI@Z -?getGlyphAdvance@IcuFontFromServerFont@@UBEXGAAULEPoint@icu_2_1@@@Z -?getGlyphPoint@IcuFontFromServerFont@@UBECGJAAULEPoint@icu_2_1@@@Z -?mapCharToGlyph@IcuFontFromServerFont@@UBEGKPBVLECharMapper@icu_2_1@@@Z -?mapCharsToGlyphs@IcuFontFromServerFont@@UBEXQBGJJCPBVLECharMapper@icu_2_1@@QAG@Z -?pixelsToUnits@IcuFontFromServerFont@@UBEXAAULEPoint@icu_2_1@@0@Z -?transformFunits@IcuFontFromServerFont@@UBEXMMAAULEPoint@icu_2_1@@@Z -?unitsToPoints@IcuFontFromServerFont@@UBEXAAULEPoint@icu_2_1@@0@Z -??_C@_0CJ@PKNM@O?3?2SRC656?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@ECA@o?3?2SRC656?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@KGIP@o?3?2SRC656?2wntmsci7?2inc?2cppuhelpe@ -??0?$_STL_alloc_proxy@PAVRectangle@@V1@V?$allocator@VRectangle@@@_STL@@@_STL@@QAE@ABV?$allocator@VRectangle@@@1@PAVRectangle@@@Z -?DrawCtrlText@OutputDevice@@QAEXABVPoint@@ABVString@@GGGPAV?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@PAV3@@Z -?DrawText@OutputDevice@@QAEXABVPoint@@ABVString@@GGPAV?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@PAV3@@Z -?DrawText@OutputDevice@@QAEXABVRectangle@@ABVString@@GPAV?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@PAV3@@Z -?GetGlyphBoundRects@OutputDevice@@QAEEABVPoint@@ABVString@@HHHAAV?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@@Z -?_M_insert_overflow@?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@IAEXPAVRectangle@@ABV3@I@Z -?__uninitialized_copy_aux@_STL@@YAPAVRectangle@@PAV2@00U__false_type@@@Z -?__uninitialized_fill_n_aux@_STL@@YAPAVRectangle@@PAV2@IABV2@U__false_type@@@Z -?deallocate@?$_STL_alloc_proxy@PAVRectangle@@V1@V?$allocator@VRectangle@@@_STL@@@_STL@@QAEXPAVRectangle@@I@Z -?GetDisplayBackground@Window@@UBEABVWallpaper@@XZ -?GetDisplayText@Window@@UBE?AVString@@XZ -?FillLayoutData@CheckBox@@MBEXXZ -?FillLayoutData@PushButton@@MBEXXZ -?FillLayoutData@RadioButton@@MBEXXZ -?FillLayoutData@Control@@MBEXXZ -?GetCharacterBounds@Control@@QBE?AVRectangle@@J@Z -?GetDisplayText@Control@@UBE?AVString@@XZ -?GetIndexForPoint@Control@@QBEJABVPoint@@@Z -?GetLineCount@Control@@QBEJXZ -?GetLineStartEnd@Control@@QBE?AVPair@@J@Z -?SetText@Control@@UAEXABVString@@@Z -?StateChanged@Control@@UAEXG@Z -??1?$_STL_alloc_proxy@PAJJV?$allocator@J@_STL@@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@PAVRectangle@@V1@V?$allocator@VRectangle@@@_STL@@@_STL@@QAE@XZ -??1?$_Vector_base@JV?$allocator@J@_STL@@@_STL@@QAE@XZ -??1?$vector@JV?$allocator@J@_STL@@@_STL@@QAE@XZ -??1?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@QAE@XZ -??1ControlLayoutData@vcl@@QAE@XZ -?FillLayoutData@Edit@@MBEXXZ -??0?$_STL_alloc_proxy@PAJJV?$allocator@J@_STL@@@_STL@@QAE@ABV?$allocator@J@1@PAJ@Z -??0?$_Vector_base@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@QAE@ABV?$allocator@VRectangle@@@1@@Z -?FillLayoutData@FixedLine@@MBEXXZ -?FillLayoutData@FixedText@@MBEXXZ -??0?$_Vector_base@JV?$allocator@J@_STL@@@_STL@@QAE@ABV?$allocator@J@1@@Z -??1?$allocator@J@_STL@@QAE@XZ -??1?$allocator@VRectangle@@@_STL@@QAE@XZ -?_M_insert_overflow@?$vector@JV?$allocator@J@_STL@@@_STL@@IAEXPAJABJI@Z -?deallocate@?$allocator@VRectangle@@@_STL@@QBEXPAVRectangle@@I@Z -?_Construct@_STL@@YAXPAVRectangle@@ABV2@@Z -?GetTextBoundRect@OutputDevice@@QBEEAAVRectangle@@ABVString@@GGG@Z -?GetTextOutline@OutputDevice@@QBEEAAVPolyPolygon@@ABVString@@GGGE@Z -?GrabFocusToDocument@Window@@QAEXXZ -?__query@?$Reference@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXDragGestureRecognizer@dnd@datatransfer@345@PAVXInterface@2345@@Z -?set@?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAEPAVXDropTargetListener@dnd@datatransfer@345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragGestureListener@dnd@datatransfer@star@sun@com@@@2345@@Z -?AppendLayoutData@Control@@IBEXABV1@@Z -?SetLayoutDataParent@Control@@QBEXPBV1@@Z -?FillLayoutData@ComboBox@@MBEXXZ -?FillLayoutData@ListBox@@MBEXXZ -?FillLayoutData@SpinField@@MBEXXZ -??0?$_Ht_iterator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@@_STL@@QAE@PBU?$_Hashtable_node@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@1@PBV?$hashtable@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@@1@@Z -??0?$_STL_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@1@PAPAX@Z -??0?$vector@PAXV?$allocator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@_STL@@@_STL@@QAE@IABQAXABV?$allocator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@1@@Z -??1?$vector@PAXV?$allocator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@_STL@@@_STL@@QAE@XZ -?_M_bkt_num@?$hashtable@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@@_STL@@ABEIABU?$pair@$$CBHPAVFtFontInfo@@@2@I@Z -?_M_fill_insert@?$vector@PAXV?$allocator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@_STL@@@_STL@@QAEXPAPAXIABQAX@Z -?_M_next_size@?$hashtable@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@@_STL@@ABEII@Z -?_M_skip_to_next@?$_Hashtable_iterator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@@_STL@@QAEPAU?$_Hashtable_node@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@XZ -?begin@?$hashtable@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@@2@XZ -?begin@?$hashtable@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@@_STL@@QBE?AU?$_Ht_iterator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@U?$_Const_traits@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@2@@2@XZ -?reserve@?$vector@PAXV?$allocator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@_STL@@@_STL@@QAEXI@Z -?swap@?$vector@PAXV?$allocator@U?$pair@$$CBHPAVFtFontInfo@@@_STL@@@_STL@@@_STL@@QAEXAAV12@@Z -InitMultipleMonitorStubs -g_fMultiMonInitDone -g_pfnEnumDisplayMonitors -g_pfnGetMonitorInfo -g_pfnGetSystemMetrics -g_pfnMonitorFromPoint -g_pfnMonitorFromRect -g_pfnMonitorFromWindow -xEnumDisplayMonitors@16 -xGetMonitorInfo@8 -xGetSystemMetrics@4 -xMonitorFromPoint@12 -xMonitorFromRect@8 -xMonitorFromWindow@8 -?GetEnableATToolSupport@MiscSettings@@QBEEXZ -?SetEnableATToolSupport@MiscSettings@@QAEXE@Z -??0?$_STL_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@1@PAPAX@Z -??0?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@ABV01@@Z -??0?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@IABUOUStringHash@rtl@@ABU?$equal_to@VOUString@rtl@@@1@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@@Z -??0?$pair@$$CBVOUString@rtl@@V12@@_STL@@QAE@ABU01@@Z -??0?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@QAE@ABVOUString@rtl@@ABV?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@1@@Z -??0?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@@_STL@@QAE@IABQAXABV?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@1@@Z -??0DefaultFontConfigItem@vcl@@AAE@XZ -??0FontSubstConfigItem@vcl@@AAE@XZ -??0SettingsConfigItem@vcl@@AAE@XZ -??1?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@XZ -??1?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@QAE@XZ -??1?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@@_STL@@QAE@XZ -??1SettingsConfigItem@vcl@@UAE@XZ -??_7SettingsConfigItem@vcl@@6B@ -??_GSettingsConfigItem@vcl@@UAEPAXI@Z -?Commit@SettingsConfigItem@vcl@@EAEXXZ -?Notify@SettingsConfigItem@vcl@@EAEXABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@@Z -?_Construct@_STL@@YAXPAU?$pair@$$CBVOUString@rtl@@V12@@1@ABU21@@Z -?_M_allocate_and_copy@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@IAEPAPAXIPAPAX0@Z -?_M_bkt_num@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@ABEIABU?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@2@I@Z -?_M_fill_insert@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@@_STL@@QAEXPAPAXIABQAX@Z -?_M_skip_to_next@?$_Hashtable_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@XZ -?_M_skip_to_next@?$_Hashtable_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@XZ -?begin@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QBE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@2@XZ -?begin@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@2@XZ -?clear@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEXXZ -?clear@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAEXXZ -?deallocate@?$_STL_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEXPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@I@Z -?deallocate@?$_STL_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAEXPAPAXI@Z -?deallocate@?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@I@Z -?end@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@2@XZ -?find@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QBE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@2@ABVOUString@rtl@@@Z -?find_or_insert@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAEAAU?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@2@ABU32@@Z -?get@SettingsConfigItem@vcl@@SAPAV12@XZ -?getValue@SettingsConfigItem@vcl@@QBEABVOUString@rtl@@ABV34@0@Z -?getValues@SettingsConfigItem@vcl@@AAEXXZ -?get_allocator@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@@_STL@@QBE?AV?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@XZ -?reserve@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@@_STL@@QAEXI@Z -?setValue@SettingsConfigItem@vcl@@QAEXABVOUString@rtl@@00@Z -?swap@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@@_STL@@QAEXAAV12@@Z -?Resize@Control@@UAEXXZ -?GetDisplayBackground@ComboBox@@UBEABVWallpaper@@XZ -?FillLayoutData@GroupBox@@EBEXXZ -?GetDisplayBackground@ListBox@@UBEABVWallpaper@@XZ -??_C@_0CJ@OFFH@O?3?2SRC657?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@PPB@o?3?2SRC657?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@FJEK@o?3?2SRC657?2wntmsci7?2inc?2cppuhelpe@ -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@UKernPair@client@portal@star@sun@com@@@2345@@Z -??0Menu@@QAE@XZ -??1?$_Vector_base@GV?$allocator@G@_STL@@@_STL@@QAE@XZ -?ConvertPoint@Menu@@QBEEAAVPoint@@PAVWindow@@@Z -?GetCharacterBounds@Menu@@QBE?AVRectangle@@J@Z -?GetDisplayItemId@Menu@@QBEGJ@Z -?GetDisplayText@Menu@@QBE?AVString@@XZ -?GetIndexForPoint@Menu@@QBEJABVPoint@@@Z -?GetLineCount@Menu@@QBEJXZ -?GetLineStartEnd@Menu@@QBE?AVPair@@J@Z -??0MnemonicGenerator@@QAE@XZ -?CreateMnemonic@MnemonicGenerator@@QAEEAAVString@@@Z -?GetCharClass@MnemonicGenerator@@QAE?AV?$Reference@VXCharacterClassification@i18n@star@sun@com@@@uno@star@sun@com@@XZ -?RegisterMnemonic@MnemonicGenerator@@QAEXABVString@@@Z -?DrawSelectionBackground@Window@@QAEXABVRectangle@@GEEE@Z -?GetCharacterBounds@ControlLayoutData@vcl@@QBE?AVRectangle@@J@Z -?GetIndexForPoint@ControlLayoutData@vcl@@QBEJABVPoint@@@Z -?GetLineCount@ControlLayoutData@vcl@@QBEJXZ -?GetLineStartEnd@ControlLayoutData@vcl@@QBE?AVPair@@J@Z -??1MnemonicGenerator@@QAE@XZ -??1MenuLayoutData@vcl@@QAE@XZ -?GetFocus@Splitter@@UAEXXZ -?KeyInput@Splitter@@UAEXABVKeyEvent@@@Z -?LoseFocus@Splitter@@UAEXXZ -?Notify@Splitter@@UAEJAAVNotifyEvent@@@Z -?Paint@Splitter@@UAEXABVRectangle@@@Z -??_C@_0CJ@EHLL@O?3?2SRC658?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@GCEN@o?3?2SRC658?2wntmsci7?2inc?2com?1sun?1s@ -?IsItemVisible@Menu@@QBEEG@Z -?IsMenuVisible@Menu@@QBEEXZ -?SelectItem@Menu@@QAEXG@Z -??_C@_0DH@FIDJ@o?3?2SRC658?2wntmsci7?2inc?2cppuhelpe@ -?FindNextSplitter@TaskPaneList@@AAEPAVWindow@@PAV2@E@Z -?getUserInterfaceFont@DefaultFontConfigItem@vcl@@QBEABVOUString@rtl@@H@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE@ABU01@@Z -??0?$_STL_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@1@PAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@1@@Z -??0?$pair@$$CBGVRectangle@@@_STL@@QAE@ABU01@@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU01@@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@1@AB_N@Z -??1?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_Rb_tree_base@U?$pair@$$CBGVRectangle@@@_STL@@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE@XZ -?GetAccessible@Menu@@QBE?AV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@E@Z -?GetBoundingRectangle@Menu@@QBE?AVRectangle@@G@Z -?_Construct@_STL@@YAXPAU?$pair@$$CBGVRectangle@@@1@ABU21@@Z -?_M_create_node@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@ABU?$pair@$$CBGVRectangle@@@2@@Z -?_M_erase@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@@Z -?_M_insert@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBGVRectangle@@@2@@Z -?begin@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@2@XZ -?clear@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAEXXZ -?deallocate@?$_STL_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAEXPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@I@Z -?deallocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@I@Z -?destroy_node@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@IAEXPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@@Z -?end@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@2@XZ -?find@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@2@ABG@Z -?insert@?$map@GVRectangle@@U?$less@G@_STL@@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@3@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@2@U32@ABU?$pair@$$CBGVRectangle@@@2@@Z -?insert_unique@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@2@U32@ABU?$pair@$$CBGVRectangle@@@2@@Z -?insert_unique@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBGVRectangle@@@2@@Z -?lower_bound@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@2@ABG@Z -?GetItemPosRect@ToolBox@@QBE?AVRectangle@@G@Z -??1?$_STL_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE@XZ -??1?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@_STL@@QAE@XZ -?GetActivationKey@Menu@@QBE?AVKeyEvent@@G@Z -?IsAccessibilityEventsSuppressed@Window@@QAEEE@Z -??1?$Reference@VXAccessibleContext@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??_C@_0CJ@HJHJ@O?3?2SRX643?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@MFLN@o?3?2SRX643?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@DJOP@o?3?2SRX643?2wntmsci7?2inc?2cppuhelpe@ -??0?$_Rb_tree_base@U?$pair@$$CBGUSymbolEntry@@@_STL@@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@1@@Z -??0?$_STL_alloc_proxy@PAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Const_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@U12@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Const_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Const_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@1@PAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Const_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@1@@Z -??0?$pair@$$CBGUSymbolEntry@@@_STL@@QAE@ABU01@@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Const_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@QAE@ABU01@@Z -??_7StarSymbolToMSMultiFont@@6B@ -??_GStarSymbolToMSMultiFont@@UAEPAXI@Z -?CreateStarSymbolToMSMultiFont@@YAPAVStarSymbolToMSMultiFont@@_N@Z -?SymbolFontToString@@YAPBDH@Z -?_M_empty_initialize@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@AAEXXZ -?_M_erase@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@Z -?_M_insert@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBGUSymbolEntry@@@2@@Z -?_M_insert_overflow@?$vector@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Const_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Const_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@IAEXPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Const_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@2@ABU32@I@Z -?__uninitialized_copy_aux@_STL@@YAPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Const_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@1@PAU21@00U__false_type@@@Z -?aSymbolExtraTab2@@3PAUExtraTable@@A -?aSymbolExtraTab@@3PAUExtraTable@@A -?aSymbolNames@@3PAPBDA -?aTNRExtraTab@@3PAUExtraTable@@A -?aWingDingsExtraTab@@3PAUExtraTable@@A -?deallocate@?$_STL_alloc_proxy@PAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Const_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@U12@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Const_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@QAEXPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Const_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@2@I@Z -?destroy_node@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@IAEXPAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@Z -?equal_range@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@2@ABG@Z -?find@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@2@ABG@Z -??0?$_Vector_base@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@1@@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@QAE@ABU01@@Z -?_M_insert_overflow@?$vector@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@IAEXPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@2@ABU32@I@Z -?__uninitialized_copy_aux@_STL@@YAPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@1@PAU21@00U__false_type@@@Z -?deallocate@?$_STL_alloc_proxy@PAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@U12@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@QAEXPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@2@I@Z -??_C@_0CJ@FIDA@O?3?2SRC659?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@GJJM@o?3?2SRC659?2wntmsci7?2inc?2com?1sun?1s@ -?TriggerItem@ToolBox@@QAEXGEE@Z -??_C@_0DH@KHPM@o?3?2SRC659?2wntmsci7?2inc?2cppuhelpe@ -?HasFlags@Polygon@@QBEEXZ -?Read@Polygon@@QAEXAAVSvStream@@@Z -?Write@Polygon@@QBEXAAVSvStream@@@Z -??0PrinterEnvironment@client@portal@star@sun@com@@QAE@XZ -?GetItemSubrange@UniscribeLayout@@IBE_NABUVisualItem@@AAH1@Z -??_C@_0CJ@LFME@O?3?2SRC660?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@HDNL@o?3?2SRC660?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@IGBB@o?3?2SRC660?2wntmsci7?2inc?2cppuhelpe@ -?SetDataChangeHdl@Application@@SA?AVLink@@ABV2@@Z -?GetAccessible@Menu@@QAE?AV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@XZ -?SetAccessible@Menu@@QAEXABV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@@Z -?GetPreferredKeyInputWindow@Window@@UAEPAV1@XZ -?GetPreferredKeyInputWindow@Edit@@UAEPAVWindow@@XZ -?GetPreferredKeyInputWindow@ListBox@@UAEPAVWindow@@XZ -?GetDisplayInfo@System@@SA_NAAUDisplayInfo@1@@Z -??_C@_0CJ@KKEP@O?3?2SRC661?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@HIAK@o?3?2SRC661?2wntmsci7?2inc?2com?1sun?1s@ -??0?$_Vector_base@VPoint@@V?$allocator@VPoint@@@_STL@@@_STL@@QAE@ABV?$allocator@VPoint@@@1@@Z -?AdaptiveSubdivide@Polygon@@QBEXAAV1@N@Z -?_Construct@_STL@@YAXPAVPoint@@ABV2@@Z -?__uninitialized_copy_aux@_STL@@YAPAVPoint@@PAV2@00U__false_type@@@Z -?deallocate@?$_STL_alloc_proxy@PAVPoint@@V1@V?$allocator@VPoint@@@_STL@@@_STL@@QAEXPAVPoint@@I@Z -_real@8@3ffdaaaaaaaaaaaaa800 -_real@8@3ffeaaaaaaaaaaaaa800 -??_C@_0DH@HJNE@o?3?2SRC661?2wntmsci7?2inc?2cppuhelpe@ -?EnableImageDisplay@CheckBox@@QAEXE@Z -?EnableImageDisplay@PushButton@@QAEXE@Z -?EnableImageDisplay@RadioButton@@QAEXE@Z -?EnableTextDisplay@CheckBox@@QAEXE@Z -?EnableTextDisplay@PushButton@@QAEXE@Z -?EnableTextDisplay@RadioButton@@QAEXE@Z -?IsImageDisplayEnabled@CheckBox@@QAEEXZ -?IsImageDisplayEnabled@PushButton@@QAEEXZ -?IsImageDisplayEnabled@RadioButton@@QAEEXZ -?IsTextDisplayEnabled@CheckBox@@QAEEXZ -?IsTextDisplayEnabled@PushButton@@QAEEXZ -?IsTextDisplayEnabled@RadioButton@@QAEEXZ -??0PDFWriter@vcl@@QAE@ABVOUString@rtl@@W4PDFVersion@01@@Z -??1PDFWriter@vcl@@QAE@XZ -?DrawArc@PDFWriter@vcl@@QAEXABVRectangle@@ABVPoint@@1@Z -?DrawBitmap@PDFWriter@vcl@@QAEXABVPoint@@ABVBitmap@@@Z -?DrawBitmap@PDFWriter@vcl@@QAEXABVPoint@@ABVSize@@01ABVBitmap@@@Z -?DrawBitmap@PDFWriter@vcl@@QAEXABVPoint@@ABVSize@@ABVBitmap@@@Z -?DrawBitmapEx@PDFWriter@vcl@@QAEXABVPoint@@ABVBitmapEx@@@Z -?DrawBitmapEx@PDFWriter@vcl@@QAEXABVPoint@@ABVSize@@01ABVBitmapEx@@@Z -?DrawBitmapEx@PDFWriter@vcl@@QAEXABVPoint@@ABVSize@@ABVBitmapEx@@@Z -?DrawChord@PDFWriter@vcl@@QAEXABVRectangle@@ABVPoint@@1@Z -?DrawEllipse@PDFWriter@vcl@@QAEXABVRectangle@@@Z -?DrawGradient@PDFWriter@vcl@@QAEXABVPolyPolygon@@ABVGradient@@@Z -?DrawGradient@PDFWriter@vcl@@QAEXABVRectangle@@ABVGradient@@@Z -?DrawHatch@PDFWriter@vcl@@QAEXABVPolyPolygon@@ABVHatch@@@Z -?DrawLine@PDFWriter@vcl@@QAEXABVPoint@@0@Z -?DrawLine@PDFWriter@vcl@@QAEXABVPoint@@0ABVLineInfo@@@Z -?DrawMask@PDFWriter@vcl@@QAEXABVPoint@@ABVBitmap@@ABVColor@@@Z -?DrawMask@PDFWriter@vcl@@QAEXABVPoint@@ABVSize@@01ABVBitmap@@ABVColor@@@Z -?DrawMask@PDFWriter@vcl@@QAEXABVPoint@@ABVSize@@ABVBitmap@@ABVColor@@@Z -?DrawPie@PDFWriter@vcl@@QAEXABVRectangle@@ABVPoint@@1@Z -?DrawPixel@PDFWriter@vcl@@QAEXABVPoint@@ABVColor@@@Z -?DrawPixel@PDFWriter@vcl@@QAEXABVPolygon@@PBVColor@@@Z -?DrawPolyLine@PDFWriter@vcl@@QAEXABVPolygon@@@Z -?DrawPolyLine@PDFWriter@vcl@@QAEXABVPolygon@@ABVLineInfo@@@Z -?DrawPolyPolygon@PDFWriter@vcl@@QAEXABVPolyPolygon@@@Z -?DrawPolygon@PDFWriter@vcl@@QAEXABVPolygon@@@Z -?DrawRect@PDFWriter@vcl@@QAEXABVRectangle@@@Z -?DrawRect@PDFWriter@vcl@@QAEXABVRectangle@@KK@Z -?DrawStretchText@PDFWriter@vcl@@QAEXABVPoint@@KABVString@@GG@Z -?DrawText@PDFWriter@vcl@@QAEXABVPoint@@ABVString@@@Z -?DrawText@PDFWriter@vcl@@QAEXABVRectangle@@ABVString@@G@Z -?DrawTextArray@PDFWriter@vcl@@QAEXABVPoint@@ABVString@@PBJGG@Z -?DrawTextLine@PDFWriter@vcl@@QAEXABVPoint@@JW4FontStrikeout@@W4FontUnderline@@E@Z -?DrawTransparent@PDFWriter@vcl@@QAEXABVPolyPolygon@@G@Z -?DrawWallpaper@PDFWriter@vcl@@QAEXABVRectangle@@ABVWallpaper@@@Z -?Emit@PDFWriter@vcl@@QAE_NXZ -?GetReferenceDevice@PDFWriter@vcl@@QAEPAVOutputDevice@@XZ -?GetVersion@PDFWriter@vcl@@QBE?AW4PDFVersion@12@XZ -?IntersectClipRegion@PDFWriter@vcl@@QAEXABVRectangle@@@Z -?IntersectClipRegion@PDFWriter@vcl@@QAEXABVRegion@@@Z -?MoveClipRegion@PDFWriter@vcl@@QAEXJJ@Z -?NewPage@PDFWriter@vcl@@QAEJJJW4Orientation@12@@Z -?Pop@PDFWriter@vcl@@QAEXXZ -?Push@PDFWriter@vcl@@QAEXXZ -?SetAntialiasing@PDFWriter@vcl@@QAEXG@Z -?SetClipRegion@PDFWriter@vcl@@QAEXABVRegion@@@Z -?SetClipRegion@PDFWriter@vcl@@QAEXXZ -?SetFillColor@PDFWriter@vcl@@QAEXABVColor@@@Z -?SetFont@PDFWriter@vcl@@QAEXABVFont@@@Z -?SetLayoutMode@PDFWriter@vcl@@QAEXK@Z -?SetLineColor@PDFWriter@vcl@@QAEXABVColor@@@Z -?SetMapMode@PDFWriter@vcl@@QAEXABVMapMode@@@Z -?SetMapMode@PDFWriter@vcl@@QAEXXZ -?SetTextColor@PDFWriter@vcl@@QAEXABVColor@@@Z -?SetTextFillColor@PDFWriter@vcl@@QAEXABVColor@@@Z -?SetTextFillColor@PDFWriter@vcl@@QAEXXZ -?SetTextLineColor@PDFWriter@vcl@@QAEXABVColor@@@Z -?SetTextLineColor@PDFWriter@vcl@@QAEXXZ -??0?$_Rb_tree_iterator@U?$pair@$$CBVFont@@J@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVFont@@J@_STL@@@2@@_STL@@QAE@ABU01@@Z -??0?$_Vector_base@_KV?$allocator@_K@_STL@@@_STL@@QAE@ABV?$allocator@_K@1@@Z -??0?$pair@$$CBVFont@@J@_STL@@QAE@ABU01@@Z -??0?$pair@$$CBVFont@@J@_STL@@QAE@ABVFont@@ABJ@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVFont@@J@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVFont@@J@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU01@@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBVFont@@J@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVFont@@J@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBVFont@@J@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVFont@@J@_STL@@@2@@1@AB_N@Z -?__uninitialized_copy_aux@_STL@@YAPA_KPA_K00U__false_type@@@Z -?append@OStringBuffer@rtl@@QAEAAV12@PBDJ@Z -?deallocate@?$_STL_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBVFont@@J@_STL@@@_STL@@U12@V?$allocator@U?$pair@$$CBVFont@@J@_STL@@@2@@_STL@@QAEXPAU?$_Rb_tree_node@U?$pair@$$CBVFont@@J@_STL@@@2@I@Z -?deallocate@?$allocator@_K@_STL@@QBEXPA_KI@Z -_real@8@3ff5e4c38819585a8000 -_real@8@3ffd8d62888a78757800 -_real@8@3ffe8d62888a78757800 -_real@8@4001c90fda9e46a78800 -_real@8@bffea2f983716e196800 -?__uninitialized_fill_n_aux@_STL@@YAPA_KPA_KIAB_KU__false_type@@@Z -_real@8@3fffc90fda9e46a78800 -_real@8@4000c90fda9e46a78800 -_real@8@4009e100000000000000 -?clear@?$_List_base@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAEXXZ -?IsScrollable@Window@@QBEEXZ -?AddEventListener@Application@@SAXABVLink@@@Z -?AddKeyListener@Application@@SAXABVLink@@@Z -?GetActiveTopWindow@Application@@SAPAVWindow@@XZ -?GetTopWindow@Application@@SAPAVWindow@@J@Z -?GetTopWindowCount@Application@@SAJXZ -?HandleKey@Application@@SAEKPAVWindow@@PAVKeyEvent@@@Z -?RemoveEventListener@Application@@SAXABVLink@@@Z -?RemoveKeyListener@Application@@SAXABVLink@@@Z -?Process@VclEventListeners@@QBEEPAVVclSimpleEvent@@@Z -?b@@3VColor@@A -?lg@@3VColor@@A -?IsTopWindow@Window@@QBEEXZ -??1ImpGfxLink@@QAE@XZ -?GetPrefMapMode@GfxLink@@QBEABVMapMode@@XZ -?GetPrefSize@GfxLink@@QBEABVSize@@XZ -?SetPrefMapMode@GfxLink@@QAEXABVMapMode@@@Z -?SetPrefSize@GfxLink@@QAEXABVSize@@@Z -??0?$_List_base@HV?$allocator@H@_STL@@@_STL@@QAE@ABV?$allocator@H@1@@Z -??0?$_List_iterator@HU?$_Nonconst_traits@H@_STL@@@_STL@@QAE@ABU01@@Z -??0?$_Rb_tree@EU?$pair@$$CBEH@_STL@@U?$_Select1st@U?$pair@$$CBEH@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEH@_STL@@@2@@_STL@@QAE@ABU?$less@E@1@ABV?$allocator@U?$pair@$$CBEH@_STL@@@1@@Z -??0?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE@ABU?$less@J@1@ABV?$allocator@U?$pair@$$CBJJ@_STL@@@1@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBEH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEH@_STL@@@2@@_STL@@QAE@ABU01@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE@ABU01@@Z -??0?$pair@$$CBEH@_STL@@QAE@ABEABH@Z -??0?$pair@$$CBEH@_STL@@QAE@ABU01@@Z -??0?$pair@$$CBJJ@_STL@@QAE@ABJ0@Z -??0?$pair@$$CBJJ@_STL@@QAE@ABU01@@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBEH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEH@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU01@@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBEH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEH@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBEH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEH@_STL@@@2@@1@AB_N@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU01@@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@1@AB_N@Z -??0Rectangle@@QAE@XZ -??1?$_List_base@HV?$allocator@H@_STL@@@_STL@@QAE@XZ -??1?$_Rb_tree@EU?$pair@$$CBEH@_STL@@U?$_Select1st@U?$pair@$$CBEH@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEH@_STL@@@2@@_STL@@QAE@XZ -??1?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE@XZ -??1?$_Rb_tree_base@U?$pair@$$CBEH@_STL@@V?$allocator@U?$pair@$$CBEH@_STL@@@2@@_STL@@QAE@XZ -??1?$_Rb_tree_base@U?$pair@$$CBJJ@_STL@@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE@XZ -?_Construct@_STL@@YAXPAU?$pair@$$CBEH@1@ABU21@@Z -?_Construct@_STL@@YAXPAU?$pair@$$CBJJ@1@ABU21@@Z -?_M_create_node@?$_Rb_tree@EU?$pair@$$CBEH@_STL@@U?$_Select1st@U?$pair@$$CBEH@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEH@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBEH@_STL@@@2@ABU?$pair@$$CBEH@2@@Z -?_M_create_node@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@ABU?$pair@$$CBJJ@2@@Z -?_M_erase@?$_Rb_tree@EU?$pair@$$CBEH@_STL@@U?$_Select1st@U?$pair@$$CBEH@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEH@_STL@@@2@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBEH@_STL@@@2@@Z -?_M_erase@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@@Z -?_M_insert@?$_Rb_tree@EU?$pair@$$CBEH@_STL@@U?$_Select1st@U?$pair@$$CBEH@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEH@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEH@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBEH@2@@Z -?_M_insert@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBJJ@2@@Z -?begin@?$_Rb_tree@EU?$pair@$$CBEH@_STL@@U?$_Select1st@U?$pair@$$CBEH@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEH@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEH@_STL@@@2@@2@XZ -?begin@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@2@XZ -?clear@?$_List_base@HV?$allocator@H@_STL@@@_STL@@QAEXXZ -?clear@?$_Rb_tree@EU?$pair@$$CBEH@_STL@@U?$_Select1st@U?$pair@$$CBEH@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEH@_STL@@@2@@_STL@@QAEXXZ -?clear@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAEXXZ -?deallocate@?$_STL_alloc_proxy@PAU?$_List_node@H@_STL@@U12@V?$allocator@H@2@@_STL@@QAEXPAU?$_List_node@H@2@I@Z -?deallocate@?$_STL_alloc_proxy@PA_K_KV?$allocator@_K@_STL@@@_STL@@QAEXPA_KI@Z -?deallocate@?$allocator@U?$_List_node@H@_STL@@@_STL@@QBEXPAU?$_List_node@H@2@I@Z -?deallocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBEH@_STL@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@U?$pair@$$CBEH@_STL@@@2@I@Z -?deallocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@I@Z -?destroy_node@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@IAEXPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@@Z -?end@?$_Rb_tree@EU?$pair@$$CBEH@_STL@@U?$_Select1st@U?$pair@$$CBEH@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEH@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEH@_STL@@@2@@2@XZ -?end@?$list@HV?$allocator@H@_STL@@@_STL@@QAE?AU?$_List_iterator@HU?$_Nonconst_traits@H@_STL@@@2@XZ -?end@?$map@EHU?$less@E@_STL@@V?$allocator@U?$pair@$$CBEH@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEH@_STL@@@2@@2@XZ -?end@?$map@JJU?$less@J@_STL@@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@2@XZ -?insert@?$list@HV?$allocator@H@_STL@@@_STL@@QAE?AU?$_List_iterator@HU?$_Nonconst_traits@H@_STL@@@2@U32@ABH@Z -?insert@?$map@EHU?$less@E@_STL@@V?$allocator@U?$pair@$$CBEH@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEH@_STL@@@2@@2@U32@ABU?$pair@$$CBEH@2@@Z -?insert@?$map@JJU?$less@J@_STL@@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@2@U32@ABU?$pair@$$CBJJ@2@@Z -?insert_unique@?$_Rb_tree@EU?$pair@$$CBEH@_STL@@U?$_Select1st@U?$pair@$$CBEH@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEH@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEH@_STL@@@2@@2@U32@ABU?$pair@$$CBEH@2@@Z -?insert_unique@?$_Rb_tree@EU?$pair@$$CBEH@_STL@@U?$_Select1st@U?$pair@$$CBEH@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEH@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBEH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEH@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBEH@2@@Z -?insert_unique@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@2@U32@ABU?$pair@$$CBJJ@2@@Z -?insert_unique@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBJJ@2@@Z -?lower_bound@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@2@ABJ@Z -?lower_bound@?$map@EHU?$less@E@_STL@@V?$allocator@U?$pair@$$CBEH@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEH@_STL@@@2@@2@ABE@Z -?GetKeyboardStepSize@Splitter@@QBEJXZ -?SetKeyboardStepSize@Splitter@@QAEXJ@Z -?GetBorder@Window@@QBEXAAJ000@Z -?GetSizePixel@Window@@QBE?AVSize@@XZ -?GetNextGlyphs@SimpleWinLayout@@UBEHHPAJAAVPoint@@AAH0PAH@Z -?GetNextGlyphs@UniscribeLayout@@UBEHHPAJAAVPoint@@AAH0PAH@Z -?lower_bound@?$map@JJU?$less@J@_STL@@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@2@ABJ@Z -??_C@_0CJ@IKND@O?3?2SRC662?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DF@GEHJ@o?3?2SRC662?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@HJJL@o?3?2SRC662?2wntmsci7?2inc?2cppuhelpe@ -??0OStringBuffer@rtl@@QAE@XZ -??0?$vector@JV?$allocator@J@_STL@@@_STL@@QAE@ABV?$allocator@J@1@@Z -?GetCharacterBounds@Menu@@QBE?AVRectangle@@GJ@Z -?GetIndexForPoint@Menu@@QBEJABVPoint@@AAG@Z -?IsItemPosVisible@Menu@@QBEEG@Z -?_M_empty_initialize@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@AAEXXZ -??1?$Reference@VXRegistryKey@registry@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??_C@_0CI@MPHO@com?4sun?4star?4lang?4XSingleService@ -?__query@?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@CAPAVXSingleServiceFactory@lang@345@PAVXInterface@2345@@Z -?s_pType_com_sun_star_lang_XSingleServiceFactory@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?HasGlyphs@SimpleWinLayout@@UBE_NXZ -?lower_bound@?$_Rb_tree@EU?$pair@$$CBEH@_STL@@U?$_Select1st@U?$pair@$$CBEH@_STL@@@2@U?$less@E@2@V?$allocator@U?$pair@$$CBEH@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBEH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBEH@_STL@@@2@@2@ABE@Z -??_C@_0CJ@JFFI@O?3?2SRC663?2src?2vcl?2source?2gdi?2imp@ -?GetTextBreak@OutputDevice@@QBEGABVString@@JGGJE@Z -?GetTextOutlines@OutputDevice@@QBEEAAV?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@ABVString@@GGGE@Z -?_Construct@_STL@@YAXPAVPolyPolygon@@ABV2@@Z -??_C@_0DF@GPKI@o?3?2SRC663?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@IGFO@o?3?2SRC663?2wntmsci7?2inc?2cppuhelpe@ -?GetTextBreak@SimpleWinLayout@@UBEHJJ@Z -?GetTextBreak@UniscribeLayout@@UBEHJJ@Z -?_M_insert_overflow@?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@IAEXPAVPolyPolygon@@ABV3@I@Z -?__uninitialized_copy_aux@_STL@@YAPAVPolyPolygon@@PAV2@00U__false_type@@@Z -?__uninitialized_fill_n_aux@_STL@@YAPAVPolyPolygon@@PAV2@IABV2@U__false_type@@@Z -??1?$Reference@VXExtendedToolkit@awt@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??_C@_0CJ@NNBD@drafts?4com?4sun?4star?4awt?4XExtende@ -?NotifyAccessibleStateEventGlobally@unohelper@vcl@@YAXABUAccessibleEventObject@accessibility@star@sun@com@drafts@@@Z -?s_pType_drafts_com_sun_star_awt_XExtendedToolkit@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXExtendedToolkit@awt@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?SetTextAlign@PDFWriter@vcl@@QAEXW4TextAlign@@@Z -?DataChanged@Splitter@@UAEXABVDataChangedEvent@@@Z -??0?$_Ht_iterator@U?$pair@$$CBGG@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGG@_STL@@@2@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@QAE@PBU?$_Hashtable_node@U?$pair@$$CBGG@_STL@@@1@PBV?$hashtable@U?$pair@$$CBGG@_STL@@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@1@@Z -??0?$_STL_alloc_proxy@PAU?$pair@GG@_STL@@U12@V?$allocator@U?$pair@GG@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@GG@_STL@@@1@PAU?$pair@GG@1@@Z -??0?$pair@GG@_STL@@QAE@ABU01@@Z -??0?$vector@PAXV?$allocator@U?$pair@$$CBHH@_STL@@@_STL@@@_STL@@QAE@IABQAXABV?$allocator@U?$pair@$$CBHH@_STL@@@1@@Z -??1?$_Vector_base@PAXV?$allocator@U?$pair@$$CBGG@_STL@@@_STL@@@_STL@@QAE@XZ -?_Construct@_STL@@YAXPAU?$pair@$$CBGG@1@ABU21@@Z -?_M_bkt_num@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@ABEIABU?$pair@$$CBHH@2@I@Z -?_M_delete_node@?$hashtable@U?$pair@$$CBGG@_STL@@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@AAEXPAU?$_Hashtable_node@U?$pair@$$CBGG@_STL@@@2@@Z -?_M_new_node@?$hashtable@U?$pair@$$CBGG@_STL@@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@AAEPAU?$_Hashtable_node@U?$pair@$$CBGG@_STL@@@2@ABU?$pair@$$CBGG@2@@Z -?find_or_insert@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAEAAU?$pair@$$CBHH@2@ABU32@@Z -?insert_equal@?$hashtable@U?$pair@$$CBGG@_STL@@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBGG@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGG@_STL@@@2@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGG@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGG@_STL@@@2@@2@ABU?$pair@$$CBGG@2@@Z -?swap@?$vector@PAXV?$allocator@U?$pair@$$CBGG@_STL@@@_STL@@@_STL@@QAEXAAV12@@Z -?swap@?$vector@PAXV?$allocator@U?$pair@$$CBHH@_STL@@@_STL@@@_STL@@QAEXAAV12@@Z -??1?$_Vector_base@KV?$allocator@K@_STL@@@_STL@@QAE@XZ -?__query@BaseReference@uno@star@sun@com@@KAPAVXInterface@2345@PAV62345@ABVType@2345@@Z -??_C@_0CJ@MLOL@O?3?2SRC664?2src?2vcl?2source?2gdi?2imp@ -??0?$_Vector_base@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAE@ABV?$allocator@VPolyPolygon@@@1@@Z -??_GPolyPolygon@@QAEPAXI@Z -?copy@_STL@@YAPAVRectangle@@PAV2@00@Z -?deallocate@?$_STL_alloc_proxy@PAVPolyPolygon@@V1@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAEXPAVPolyPolygon@@I@Z -?deallocate@?$allocator@VPolyPolygon@@@_STL@@QBEXPAVPolyPolygon@@I@Z -?erase@?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAEPAVPolyPolygon@@PAV3@0@Z -??_C@_0DF@FMJO@o?3?2SRC664?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0DH@HJAF@o?3?2SRC664?2wntmsci7?2inc?2cppuhelpe@ -?GetFocus@ImageControl@@UAEXXZ -?LoseFocus@ImageControl@@UAEXXZ -?Paint@ImageControl@@UAEXABVRectangle@@@Z -??1?$_STL_alloc_proxy@PAVPolyPolygon@@V1@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAE@XZ -??1?$_Vector_base@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@VPolyPolygon@@@_STL@@QAE@XZ -??1?$auto_ptr@VVirtualDevice@@@_STL@@QAE@XZ -??1?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAE@XZ -??0?$_STL_alloc_proxy@PAVPolyPolygon@@V1@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAE@ABV?$allocator@VPolyPolygon@@@1@PAVPolyPolygon@@@Z -?__copy@_STL@@YAPAVRectangle@@PAV2@00Urandom_access_iterator_tag@1@PAH@Z -??0?$_Ht_iterator@U?$pair@$$CBGJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGJ@_STL@@@2@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGJ@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@QAE@PBU?$_Hashtable_node@U?$pair@$$CBGJ@_STL@@@1@PBV?$hashtable@U?$pair@$$CBGJ@_STL@@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGJ@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@1@@Z -??0?$_Vector_base@PAXV?$allocator@U?$pair@$$CBGJ@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBGJ@_STL@@@1@@Z -??0?$_Vector_base@PAXV?$allocator@U?$pair@$$CBGJ@_STL@@@_STL@@@_STL@@QAE@IABV?$allocator@U?$pair@$$CBGJ@_STL@@@1@@Z -??1?$_STL_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBGJ@_STL@@@_STL@@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBGJ@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$_Vector_base@PAXV?$allocator@U?$pair@$$CBGJ@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@$$CBGJ@_STL@@@_STL@@QAE@XZ -??1?$hash_map@GJU?$hash@G@_STL@@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@QAE@XZ -??1?$vector@PAXV?$allocator@U?$pair@$$CBGJ@_STL@@@_STL@@@_STL@@QAE@XZ -?_M_allocate_and_copy@?$vector@PAXV?$allocator@U?$pair@$$CBGJ@_STL@@@_STL@@@_STL@@IAEPAPAXIPAPAX0@Z -?_M_initialize_buckets@?$hashtable@U?$pair@$$CBGJ@_STL@@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGJ@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@AAEXI@Z -?_M_insert_overflow@?$vector@PAXV?$allocator@U?$pair@$$CBGJ@_STL@@@_STL@@@_STL@@IAEXPAPAXABQAXI@Z -?_M_new_node@?$hashtable@U?$pair@$$CBGJ@_STL@@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGJ@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@AAEPAU?$_Hashtable_node@U?$pair@$$CBGJ@_STL@@@2@ABU?$pair@$$CBGJ@2@@Z -?clear@?$hashtable@U?$pair@$$CBGJ@_STL@@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGJ@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@QAEXXZ -?deallocate@?$_STL_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBGJ@_STL@@@_STL@@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@QAEXPAU?$_Hashtable_node@U?$pair@$$CBGJ@_STL@@@2@I@Z -?find@?$hashtable@U?$pair@$$CBGJ@_STL@@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGJ@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBGJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGJ@_STL@@@2@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGJ@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@2@ABG@Z -?find_or_insert@?$hashtable@U?$pair@$$CBGJ@_STL@@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGJ@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@QAEAAU?$pair@$$CBGJ@2@ABU32@@Z -?get_allocator@?$vector@PAXV?$allocator@U?$pair@$$CBGJ@_STL@@@_STL@@@_STL@@QBE?AV?$allocator@U?$pair@$$CBGJ@_STL@@@2@XZ -?resize@?$hashtable@U?$pair@$$CBGJ@_STL@@GU?$hash@G@2@U?$_Select1st@U?$pair@$$CBGJ@_STL@@@2@U?$equal_to@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@QAEXI@Z -??1?$_STL_alloc_proxy@PAVPoint@@V1@V?$allocator@VPoint@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@VPoint@@@_STL@@QAE@XZ -??1?$vector@VPoint@@V?$allocator@VPoint@@@_STL@@@_STL@@QAE@XZ -??1Vector2D@@QAE@XZ -?_M_allocate_and_copy@?$vector@VPoint@@V?$allocator@VPoint@@@_STL@@@_STL@@IAEPAVPoint@@IPAV3@0@Z -?__uninitialized_fill_n_aux@_STL@@YAPAVPoint@@PAV2@IABV2@U__false_type@@@Z -?deallocate@?$allocator@VPoint@@@_STL@@QBEXPAVPoint@@I@Z -?iquery@BaseReference@uno@star@sun@com@@KAPAVXInterface@2345@PAV62345@ABVType@2345@@Z -?makeAny@uno@star@sun@com@@YA?AVAny@1234@ABV?$Reference@VXExtendedToolkit@awt@star@sun@com@drafts@@@1234@@Z -?set@?$Reference@VXAccessibleTopWindowMap@bridge@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAAEPAVXAccessibleTopWindowMap@bridge@accessibility@345drafts@@@Z -?ClearCaches@Image@@QAEXXZ -?GetCursorPositions@OutputDevice@@QBEXABVString@@PAJGGE@Z -?Read@PolyPolygon@@QAEXAAVSvStream@@@Z -?Write@PolyPolygon@@QBEXAAVSvStream@@@Z -??0PDFWriter@vcl@@QAE@ABVOUString@rtl@@W4PDFVersion@01@W4Compression@01@@Z -_real@8@3ff1d1b71758e2196800 -_real@8@400c9c40000000000000 -?CreateAutoMnemonics@Menu@@QAEXXZ -?CreateAccessible@TabPage@@UAE?AV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@XZ -??0?$Reference@VXCurrentContext@uno@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??1?$Reference@VXCurrentContext@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1AccessBridgeCurrentContext@@UAE@XZ -??1ContextLayer@uno@star@sun@com@@QAE@XZ -??_7AccessBridgeCurrentContext@@6BOWeakObject@cppu@@@ -??_7AccessBridgeCurrentContext@@6BXCurrentContext@uno@star@sun@com@@@ -??_7AccessBridgeCurrentContext@@6BXTypeProvider@lang@star@sun@com@@@ -??_C@_04DJGE@msci?$AA@ -??_C@_0CB@FCGI@com?4sun?4star?4uno?4XCurrentContext@ -??_GAccessBridgeCurrentContext@@UAEPAXI@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXCurrentContext@uno@star@sun@com@@@2345@@Z -?getCurrentContext@uno@star@sun@com@@YA?AV?$Reference@VXCurrentContext@uno@star@sun@com@@@1234@XZ -?getValueByName@AccessBridgeCurrentContext@@UAA?AVAny@uno@star@sun@com@@ABVOUString@rtl@@@Z -?s_pType_com_sun_star_uno_XCurrentContext@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXCurrentContext@uno@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?GetTextBreak@SimpleWinLayout@@UBEHJJH@Z -?GetTextBreak@UniscribeLayout@@UBEHJJH@Z -?CallEventListeners@Window@@IAEXKPAX@Z -?GetCursorPositions@SimpleWinLayout@@UBEXPAJ@Z -?GetCursorPositions@UniscribeLayout@@UBEXPAJ@Z -??_C@_0DF@FHEP@o?3?2SRC665?2wntmsci7?2inc?2com?1sun?1s@ -??_C@_0CJ@NEGA@O?3?2SRC665?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DH@IGMA@o?3?2SRC665?2wntmsci7?2inc?2cppuhelpe@ -?GetCaretPositions@OutputDevice@@QBE_NABVString@@PAJGG1JE@Z -??1ScopedFont@@QAE@XZ -??1ScopedTrueTypeFont@@QAE@XZ -?open@ScopedTrueTypeFont@@QAEHPAXKK@Z -?GetCaretPositions@SimpleWinLayout@@UBEXPAJ@Z -?GetCaretPositions@UniscribeLayout@@UBEXPAJ@Z -?GetLayoutEngine@ServerFont@@MAEPAVServerFontLayoutEngine@@XZ -?GetGlyphKernValue@FreetypeServerFont@@UBEHHH@Z -?GetVerticalFlags@@YAHG@Z -??0IcuLayoutEngine@@QAE@AAVFreetypeServerFont@@@Z -??_GServerFontLayoutEngine@@UAEPAXI@Z -?GetLayoutEngine@FreetypeServerFont@@MAEPAVServerFontLayoutEngine@@XZ -?GetLayoutRTL@AllSettings@@QBEEXZ -?DrawJPGBitmap@PDFWriter@vcl@@QAEXAAVSvStream@@ABVSize@@ABVRectangle@@ABVBitmap@@@Z diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/util/defs/wntmsci8 ooo_SRC680_m202_src.aquavcl01/vcl/util/defs/wntmsci8 --- ooo_SRC680_m202_src.orig/vcl/util/defs/wntmsci8 2005-06-10 19:49:11.000000000 +0200 +++ ooo_SRC680_m202_src.aquavcl01/vcl/util/defs/wntmsci8 1970-01-01 01:00:00.000000000 +0100 @@ -1,9005 +0,0 @@ -??0AccessNotification@@QAE@KJJJ@Z -??0AccessNotification@@QAE@KPBVMenu@@@Z -??0AccessNotification@@QAE@KPBVToolBox@@@Z -??0AccessNotification@@QAE@KPBVWindow@@@Z -??0AccessObject@@QAE@PAXKJJJ@Z -??0AccessObjectRef@@QAE@ABV0@@Z -??0AccessObjectRef@@QAE@PAVAccessObject@@@Z -??0AccessObjectRef@@QAE@XZ -??0SvRefBase@@QAE@XZ -??1AccessNotification@@QAE@XZ -??1AccessObject@@UAE@XZ -??1AccessObjectRef@@QAE@XZ -??4AccessObjectRef@@QAEAAV0@ABV0@@Z -??4AccessObjectRef@@QAEAAV0@PAVAccessObject@@@Z -??4String@@QAEAAV0@ABV0@@Z -??CAccessObjectRef@@QBEPAVAccessObject@@XZ -??_7AccessObject@@6B@ -??_7SvRefBase@@6B@ -??_GAccessObject@@UAEPAXI@Z -??_GSvRefBase@@MAEPAXI@Z -?AddNextRef@SvRefBase@@QAEKXZ -?AddRef@SvRefBase@@QAEKXZ -?Check@CheckBox@@QAEXE@Z -?CreateType@AccessObject@@SAPAXXZ -?Execute@AccessObject@@QAEXJ@Z -?GetAccessObject@AccessNotification@@QAE?AVAccessObjectRef@@XZ -?GetDescription@AccessObject@@QAE?AVString@@XZ -?GetHelpText@AccessObject@@QAE?AVString@@XZ -?GetQuickHelpText@AccessObject@@QAE?AVString@@XZ -?GetQuickHelpText@Window@@QBEABVString@@XZ -?GetState@AccessObject@@QAE?AVString@@XZ -?GetState@CheckBox@@QBE?AW4TriState@@XZ -?GetStyle@Window@@QBEKXZ -?GetText@AccessObject@@QAE?AVString@@XZ -?GetType@AccessObject@@QAE?AVString@@XZ -?GetType@Window@@QBEGXZ -?GetValue@AccessObject@@QAE?AVString@@XZ -?Is@AccessObjectRef@@QBEEXZ -?IsA@AccessObject@@UBEEP6APAXXZ@Z -?IsChecked@CheckBox@@QBEEXZ -?IsChecked@RadioButton@@QBEEXZ -?IsOf@AccessObject@@SAEP6APAXXZ@Z -?Navigate@AccessObject@@QAE?AVAccessObjectRef@@W4AccNavigate@@@Z -?ReleaseReference@SvRefBase@@QAEXXZ -?StaticType@AccessObject@@SAP6APAXXZXZ -?Type@AccessObject@@UBEP6APAXXZXZ -??0Color@@QAE@K@Z -??0Help@@QAE@XZ -??0HelpEvent@@QAE@ABVPoint@@G@Z -??0Link@@QAE@PAXP6AJ00@Z@Z -??0Pair@@QAE@JJ@Z -??0Pair@@QAE@XZ -??0Point@@QAE@JJ@Z -??0Point@@QAE@XZ -??0Rectangle@@QAE@ABVPoint@@ABVSize@@@Z -??0Rectangle@@QAE@XZ -??0Size@@QAE@JJ@Z -??0Size@@QAE@XZ -??8@YAEABVString@@0@Z -??8Pair@@QBEEABV0@@Z -??9@YAEABVString@@0@Z -??9Rectangle@@QBEEABV0@@Z -??_7Help@@6B@ -?Bottom@Rectangle@@QAEAAJXZ -?Bottom@Rectangle@@QBEJXZ -?Center@Rectangle@@QBE?AVPoint@@XZ -?DisableBalloonHelp@Help@@SAXXZ -?DisableContextHelp@Help@@SAXXZ -?DisableExtHelp@Help@@SAXXZ -?DisableQuickHelp@Help@@SAXXZ -?EnableBalloonHelp@Help@@SAXXZ -?EnableContextHelp@Help@@SAXXZ -?EnableExtHelp@Help@@SAXXZ -?EnableQuickHelp@Help@@SAXXZ -?EndExtHelp@Help@@SAEXZ -?GetBalloonDelay@HelpSettings@@QBEKXZ -?GetDesktopRectPixel@Window@@QBE?AVRectangle@@XZ -?GetHeight@Rectangle@@QBEJXZ -?GetHelpColor@StyleSettings@@QBEABVColor@@XZ -?GetHelpFont@StyleSettings@@QBEABVFont@@XZ -?GetHelpSettings@AllSettings@@QBEABVHelpSettings@@XZ -?GetHelpText@Help@@UAE?AVString@@KPBVWindow@@@Z -?GetHelpTextColor@StyleSettings@@QBEABVColor@@XZ -?GetLineColor@OutputDevice@@QBEABVColor@@XZ -?GetOutputSizePixel@OutputDevice@@QBE?AVSize@@XZ -?GetSettings@OutputDevice@@QBEABVAllSettings@@XZ -?GetSize@Rectangle@@QBE?AVSize@@XZ -?GetSizePixel@Window@@QBE?AVSize@@XZ -?GetStyleSettings@AllSettings@@QBEABVStyleSettings@@XZ -?GetTipDelay@HelpSettings@@QBEKXZ -?GetTipTimeout@HelpSettings@@QBEKXZ -?GetWidth@Rectangle@@QBEJXZ -?Height@Size@@QAEAAJXZ -?Height@Size@@QBEJXZ -?Hide@Window@@QAEXG@Z -?HideTip@Help@@SAXK@Z -?IsBalloonHelpEnabled@Help@@SAEXZ -?IsContextHelpEnabled@Help@@SAEXZ -?IsEmpty@Rectangle@@QBEEXZ -?IsExtHelpActive@Help@@SAEXZ -?IsExtHelpEnabled@Help@@SAEXZ -?IsQuickHelpEnabled@Help@@SAEXZ -?IsVisible@Window@@QBEEXZ -?Left@Rectangle@@QAEAAJXZ -?Left@Rectangle@@QBEJXZ -?Len@String@@QBEGXZ -?Right@Rectangle@@QAEAAJXZ -?Right@Rectangle@@QBEJXZ -?SetOutputSizePixel@Window@@QAEXABVSize@@@Z -?SetPos@Rectangle@@QAEXABVPoint@@@Z -?SetPosPixel@Window@@QAEXABVPoint@@@Z -?SetSizePixel@Window@@QAEXABVSize@@@Z -?SetTimeoutHdl@Timer@@QAEXABVLink@@@Z -?ShowBalloon@Help@@SAEPAVWindow@@ABVPoint@@ABVRectangle@@ABVString@@@Z -?ShowBalloon@Help@@SAEPAVWindow@@ABVPoint@@ABVString@@@Z -?ShowQuickHelp@Help@@SAEPAVWindow@@ABVRectangle@@ABVString@@2G@Z -?ShowTip@Help@@SAKPAVWindow@@ABVRectangle@@ABVString@@G@Z -?Start@Help@@UAEEABVString@@PBVWindow@@@Z -?Start@Help@@UAEEKPBVWindow@@@Z -?StartContextHelp@Help@@SAEXZ -?StartExtHelp@Help@@SAEXZ -?Top@Rectangle@@QAEAAJXZ -?Top@Rectangle@@QBEJXZ -?TopLeft@Rectangle@@QBE?AVPoint@@XZ -?Width@Size@@QAEAAJXZ -?Width@Size@@QBEJXZ -?X@Point@@QAEAAJXZ -?X@Point@@QBEJXZ -?Y@Point@@QAEAAJXZ -?Y@Point@@QBEJXZ -??0Link@@QAE@XZ -??0List@@QAE@GGG@Z -??1AutoTimer@@QAE@XZ -??1List@@QAE@XZ -?Call@Link@@QBEJPAX@Z -?Count@Container@@QBEKXZ -?IsActive@Timer@@QBEEXZ -??0ApplicationAddress@@QAE@ABV0@@Z -??0ApplicationAddress@@QAE@ABVString@@@Z -??0ApplicationEvent@@QAE@ABVString@@ABVApplicationAddress@@ABVByteString@@0@Z -??0Brush@@QAE@XZ -??0Color@@QAE@EEE@Z -??0Color@@QAE@XZ -??0Pen@@QAE@XZ -??0WaitObject@@QAE@XZ -??1ApplicationAddress@@QAE@XZ -??1ApplicationEvent@@QAE@XZ -??YString@@QAEAAV0@ABV0@@Z -??YString@@QAEAAV0@G@Z -??_GApplicationEvent@@QAEPAXI@Z -??_H@YGXPAXIHP6EPAX0@Z@Z -?AppEvent@Application@@UAEXABVApplicationEvent@@@Z -?CreateFileDialog@Application@@UAEPAVVclFileDialog@@PAVWindow@@K@Z -?CreateType@ApplicationProperty@@SAPAXXZ -?DispatchAppEvents@Application@@SAGHQAPAD@Z -?DispatchAppEvents@Application@@SAGXZ -?EnterWait@Application@@SAXXZ -?GetBackground@OutputDevice@@QBEABVWallpaper@@XZ -?GetBackgroundBrush@OutputDevice@@QBEABVBrush@@XZ -?GetBlue@Color@@QBEEXZ -?GetBuffer@String@@QBEPBGXZ -?GetColor@Brush@@QBEABVColor@@XZ -?GetColor@Pen@@QBEABVColor@@XZ -?GetColor@Wallpaper@@QBEABVColor@@XZ -?GetFillColor@Brush@@QBEABVColor@@XZ -?GetFillColor@OutputDevice@@QBEABVColor@@XZ -?GetFillInBrush@OutputDevice@@QBEABVBrush@@XZ -?GetGreen@Color@@QBEEXZ -?GetPen@OutputDevice@@QBEABVPen@@XZ -?GetRed@Color@@QBEEXZ -?GetSolidColor@OutputDevice@@QBE?AVColor@@ABV2@@Z -?GetStyle@Brush@@QBE?AW4BrushStyle@@XZ -?GetStyle@Pen@@QBE?AW4PenStyle@@XZ -?GetVCLFillColor@Brush@@QBE?AVColor@@XZ -?InvertRect@OutputDevice@@QAEXABVRectangle@@@Z -?IsA@ApplicationProperty@@UBEEP6APAXXZ@Z -?IsBackground@OutputDevice@@QBEEXZ -?IsFillColor@OutputDevice@@QBEEXZ -?IsLineColor@OutputDevice@@QBEEXZ -?IsMaximized@WorkWindow@@QBEEXZ -?IsOf@ApplicationProperty@@SAEP6APAXXZ@Z -?IsWait@Application@@SAEXZ -?IsWait@Window@@QBEEXZ -?LeaveWait@Application@@SAXXZ -?Maximize@WorkWindow@@QAEXXZ -?Minimize@WorkWindow@@QAEXXZ -?Property@Application@@UAEXAAVApplicationProperty@@@Z -?Restore@WorkWindow@@QAEXXZ -?SetBackgroundBrush@OutputDevice@@QAEXABVBrush@@@Z -?SetColor@Brush@@QAEXABVColor@@@Z -?SetColor@Pen@@QAEXABVColor@@@Z -?SetFillInBrush@OutputDevice@@QAEXABVBrush@@@Z -?SetPen@OutputDevice@@QAEXABVPen@@@Z -?SetPropertyHandler@Application@@QAEXPAVPropertyHandler@@@Z -?SetStyle@Brush@@QAEXW4BrushStyle@@@Z -?SetStyle@Pen@@QAEXW4PenStyle@@@Z -?StartApplication@Application@@SAEABVString@@00PAVApplicationAddress@@@Z -?StaticType@ApplicationProperty@@SAP6APAXXZXZ -?Type@ApplicationProperty@@UBEP6APAXXZXZ -?_GetStandardFont@System@@SA?AVFont@@W4_StandardFont@@@Z -??0ResMgr@@QAE@PBVString@@@Z -?Create@SimpleResMgr@@SAPAV1@PBDG@Z -?CreateResMgr@ResMgr@@SAPAV1@PBDG@Z -?GetLang@ResMgr@@SAPBDG@Z -??0AllSettings@@QAE@ABV0@@Z -??0AllSettings@@QAE@XZ -??0HelpSettings@@QAE@ABV0@@Z -??0HelpSettings@@QAE@XZ -??0International@@QAE@GG@Z -??0International@@QAE@XZ -??0KeyboardSettings@@QAE@ABV0@@Z -??0KeyboardSettings@@QAE@XZ -??0Locale@lang@star@sun@com@@QAE@ABU01234@@Z -??0Locale@lang@star@sun@com@@QAE@XZ -??0MachineSettings@@QAE@ABV0@@Z -??0MachineSettings@@QAE@XZ -??0MiscSettings@@QAE@ABV0@@Z -??0MiscSettings@@QAE@XZ -??0MouseSettings@@QAE@ABV0@@Z -??0MouseSettings@@QAE@XZ -??0NotificationSettings@@QAE@ABV0@@Z -??0NotificationSettings@@QAE@XZ -??0OUString@rtl@@QAE@ABV01@@Z -??0OUString@rtl@@QAE@XZ -??0SoundSettings@@QAE@ABV0@@Z -??0SoundSettings@@QAE@XZ -??0StyleSettings@@QAE@ABV0@@Z -??0StyleSettings@@QAE@XZ -??1?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1AllSettings@@QAE@XZ -??1HelpSettings@@QAE@XZ -??1KeyboardSettings@@QAE@XZ -??1Locale@lang@star@sun@com@@QAE@XZ -??1MachineSettings@@QAE@XZ -??1MiscSettings@@QAE@XZ -??1MouseSettings@@QAE@XZ -??1NotificationSettings@@QAE@XZ -??1OUString@rtl@@QAE@XZ -??1SoundSettings@@QAE@XZ -??1StyleSettings@@QAE@XZ -??4AllSettings@@QAEABV0@ABV0@@Z -??4HelpSettings@@QAEABV0@ABV0@@Z -??4KeyboardSettings@@QAEABV0@ABV0@@Z -??4Locale@lang@star@sun@com@@QAEAAU01234@ABU01234@@Z -??4MachineSettings@@QAEABV0@ABV0@@Z -??4MiscSettings@@QAEABV0@ABV0@@Z -??4MouseSettings@@QAEABV0@ABV0@@Z -??4NotificationSettings@@QAEABV0@ABV0@@Z -??4OUString@rtl@@QAEAAV01@ABV01@@Z -??4SoundSettings@@QAEABV0@ABV0@@Z -??4StyleSettings@@QAEABV0@ABV0@@Z -??8AllSettings@@QBEEABV0@@Z -??8Color@@QBEEABV0@@Z -??8HelpSettings@@QBEEABV0@@Z -??8KeyboardSettings@@QBEEABV0@@Z -??8MachineSettings@@QBEEABV0@@Z -??8MiscSettings@@QBEEABV0@@Z -??8MouseSettings@@QBEEABV0@@Z -??8NotificationSettings@@QBEEABV0@@Z -??8SoundSettings@@QBEEABV0@@Z -??8StyleSettings@@QBEEABV0@@Z -??8rtl@@YAEABVOUString@0@0@Z -??9Color@@QBEEABV0@@Z -??9HelpSettings@@QBEEABV0@@Z -??9International@@QBEEABV0@@Z -??9KeyboardSettings@@QBEEABV0@@Z -??9MachineSettings@@QBEEABV0@@Z -??9MiscSettings@@QBEEABV0@@Z -??9MouseSettings@@QBEEABV0@@Z -??9NotificationSettings@@QBEEABV0@@Z -??9SoundSettings@@QBEEABV0@@Z -??9StyleSettings@@QBEEABV0@@Z -??_GCollatorWrapper@@QAEPAXI@Z -??_GI18nHelper@vcl@@QAEPAXI@Z -??_GLocaleDataWrapper@@QAEPAXI@Z -?CopyData@AllSettings@@AAEXXZ -?CopyData@HelpSettings@@AAEXXZ -?CopyData@KeyboardSettings@@AAEXXZ -?CopyData@MachineSettings@@AAEXXZ -?CopyData@MiscSettings@@AAEXXZ -?CopyData@MouseSettings@@AAEXXZ -?CopyData@NotificationSettings@@AAEXXZ -?CopyData@SoundSettings@@AAEXXZ -?CopyData@StyleSettings@@AAEXXZ -?GetChangeFlags@AllSettings@@QBEKABV1@@Z -?GetFormatLanguage@International@@QBEGXZ -?GetLanguage@AllSettings@@QBEGXZ -?GetLanguage@FormatTable@@QBEGXZ -?GetLanguage@International@@QBEGXZ -?GetLanguage@LanguageTable@@QBEGXZ -?GetLocale@AllSettings@@QBEABULocale@lang@star@sun@com@@XZ -?GetLocaleDataWrapper@AllSettings@@QBEABVLocaleDataWrapper@@XZ -?GetLocaleI18nHelper@AllSettings@@QBEABVI18nHelper@vcl@@XZ -?GetUILanguage@AllSettings@@QBEGXZ -?GetUILocale@AllSettings@@QBEABULocale@lang@star@sun@com@@XZ -?GetUILocaleDataWrapper@AllSettings@@QBEABVLocaleDataWrapper@@XZ -?GetUILocaleI18nHelper@AllSettings@@QBEABVI18nHelper@vcl@@XZ -?Set3DColors@StyleSettings@@QAEXABVColor@@@Z -?SetLanguage@AllSettings@@QAEXG@Z -?SetLocale@AllSettings@@QAEXABULocale@lang@star@sun@com@@@Z -?SetStandardMacStyles@StyleSettings@@QAEXXZ -?SetStandardOS2Styles@StyleSettings@@QAEXXZ -?SetStandardStyles@StyleSettings@@QAEXXZ -?SetStandardUnixStyles@StyleSettings@@QAEXXZ -?SetStandardWinStyles@StyleSettings@@QAEXXZ -?SetUILanguage@AllSettings@@QAEXG@Z -?SetUILocale@AllSettings@@QAEXABULocale@lang@star@sun@com@@@Z -?Update@AllSettings@@QAEKKABV1@@Z -?compareTo@OUString@rtl@@QBEJABV12@@Z -?getLength@OUString@rtl@@QBEJXZ -??0INetURLObject@@QAE@ABVString@@W4EncodeMechanism@0@G@Z -??0Sound@@QAE@PAVWindow@@@Z -??0SubString@INetURLObject@@QAE@GG@Z -??1INetURLObject@@QAE@XZ -??1Sound@@QAE@XZ -??_7Sound@@6B@ -?Beep@Sound@@SAXGPAVWindow@@@Z -?ClearError@Sound@@QAEXXZ -?ERRCODE_TOERROR@@YAKK@Z -?GetError@SvStream@@QBEKXZ -?GetMainURL@INetURLObject@@QBE?AVString@@W4DecodeMechanism@1@G@Z -?GetProtocol@INetURLObject@@QBE?AW4INetProtocol@@XZ -?GetSoundPath@Sound@@SAABVString@@XZ -?IsSet@Link@@QBEEXZ -?IsSoundFile@Sound@@SAEABVString@@@Z -?Notify@Sound@@UAEXXZ -?Pause@Sound@@QAEXXZ -?Play@Sound@@QAEXXZ -?SetLoopMode@Sound@@QAEXE@Z -?SetPlayTime@Sound@@QAEXK@Z -?SetSoundData@Sound@@QAEEPBEK@Z -?SetSoundName@Sound@@QAEEABVString@@@Z -?SetSoundPath@Sound@@SAXABVString@@@Z -?SetStartTime@Sound@@QAEXK@Z -?Stop@Sound@@QAEXXZ -?decode@INetURLObject@@SA?AVString@@ABV2@DW4DecodeMechanism@1@G@Z -?getEscapePrefix@INetURLObject@@ABEDXZ -?getEscapePrefix@INetURLObject@@CADW4INetProtocol@@@Z -??0ResId@@QAE@GPAVResMgr@@@Z -??1ErrorBox@@UAE@XZ -??1WarningBox@@UAE@XZ -?GetStandardText@@YA?AVString@@G@Z -?ShowServiceNotAvailableError@@YAXPAVWindow@@ABVString@@E@Z -??0?$Reference@VXDisplayConnection@awt@star@sun@com@@@uno@star@sun@com@@QAE@PAVXDisplayConnection@awt@234@@Z -??0?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXToolkit@awt@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXToolkit@awt@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0Application@@QAE@XZ -??0ClassData1@cppu@@QAE@J@Z -??0DataChangedEvent@@QAE@GPBXK@Z -??0KeyCode@@QAE@XZ -??0List@@QAE@GG@Z -??0OUString@rtl@@QAE@PBDJGK@Z -??0UniqueIdContainer@@QAE@KKK@Z -??1?$Reference@VXConnection@connection@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXDisplayConnection@awt@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXToolkit@awt@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1Application@@QAE@XZ -??1ClassData1@cppu@@QAE@XZ -??1UniqueIndex@@QAE@XZ -??1UniqueItemId@@QAE@XZ -??2OWeakObject@cppu@@SAPAXI@Z -??3OWeakObject@cppu@@SAXPAX@Z -??4?$Reference@VXToolkit@awt@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??_7Application@@6B@ -?Abort@Application@@SAXABVString@@@Z -?AccessNotify@Application@@SAXABVAccessNotification@@@Z -?AcquireSolarMutex@Application@@SAXK@Z -?ActivateExtHelp@Application@@UAEXXZ -?AddAccessHdl@Application@@SAXABVLink@@@Z -?AddEventHook@Application@@SAKP6AJAAVNotifyEvent@@PAX@Z1@Z -?AddHotKey@Application@@SAKABVKeyCode@@ABVLink@@PAX@Z -?AnyInput@Application@@SAEG@Z -?CallEvent@Application@@SAJAAVNotifyEvent@@@Z -?CallEventHooks@Application@@SAJAAVNotifyEvent@@@Z -?CallNextAccessHdl@Application@@SAXPAVAccessNotification@@@Z -?CallPreNotify@Application@@SAJAAVNotifyEvent@@@Z -?CreateUniqueId@Application@@SA?AVUniqueItemId@@XZ -?DataChanged@Application@@UAEXABVDataChangedEvent@@@Z -?DeInit@Application@@UAEXXZ -?DeactivateExtHelp@Application@@UAEXXZ -?EnableAutoHelpId@Application@@SAXE@Z -?EnableAutoMnemonic@Application@@SAXE@Z -?EnableDialogCancel@Application@@SAXE@Z -?EnableHeadlessMode@Application@@SAXE@Z -?Exception@Application@@UAEGG@Z -?Execute@Application@@SAXXZ -?FlushAccel@Application@@SAXXZ -?FocusChanged@Application@@UAEXXZ -?GenerateAccessEvent@Application@@SAEKJJJ@Z -?GetAccessHdlCount@Application@@SAGXZ -?GetAppFileName@Application@@SAABVString@@XZ -?GetAppInternational@Application@@SAABVInternational@@XZ -?GetAppName@Application@@SA?AVString@@XZ -?GetAppWindow@Application@@SAPAVWorkWindow@@XZ -?GetClientSystem@Application@@SAKXZ -?GetCommandLineParam@Application@@SA?AVString@@G@Z -?GetCommandLineParamCount@Application@@SAGXZ -?GetDefDialogParent@Application@@SAPAVWindow@@XZ -?GetDefaultDevice@Application@@SAPAVOutputDevice@@XZ -?GetDialogScaleX@Application@@SAFXZ -?GetDispatchLevel@Application@@SAGXZ -?GetDisplayConnection@Application@@SA?AV?$Reference@VXDisplayConnection@awt@star@sun@com@@@uno@star@sun@com@@XZ -?GetDisplayName@Application@@SA?AVString@@XZ -?GetFilterHdl@Application@@SAABVLink@@XZ -?GetFilterHdl@GraphicConverter@@QBEABVLink@@XZ -?GetFirstAccessHdl@Application@@SA?AVLink@@XZ -?GetFirstTopLevelWindow@Application@@SAPAVWindow@@XZ -?GetFocusWindow@Application@@SAPAVWindow@@XZ -?GetFontPath@Application@@SAABVString@@XZ -?GetFullKeyCode@KeyCode@@QBEGXZ -?GetHelp@Application@@SAPAVHelp@@XZ -?GetInternational@AllSettings@@QBEABVInternational@@XZ -?GetLastInputInterval@Application@@SAKXZ -?GetMainThreadIdentifier@Application@@SAKXZ -?GetMapMode@OutputDevice@@QBEABVMapMode@@XZ -?GetNextTopLevelWindow@Application@@SAPAVWindow@@PAV2@@Z -?GetRemoteEnvironment@Application@@SAPAXXZ -?GetResourcePath@Application@@SAABVString@@XZ -?GetServerSystem@Application@@SAKXZ -?GetSettings@Application@@SAABVAllSettings@@XZ -?GetSolarMutex@Application@@SAAAVIMutex@vos@@XZ -?GetSystemWindowMode@Application@@SAGXZ -?GetUnoInstance@Application@@SA?AV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@V?$Reference@VXConnection@connection@star@sun@com@@@3456@ABVOUString@rtl@@@Z -?GetUnoWrapper@Application@@SAPAVUnoWrapperBase@@E@Z -?GetVCLToolkit@Application@@SA?AV?$Reference@VXToolkit@awt@star@sun@com@@@uno@star@sun@com@@XZ -?GetpApp@@YAPAVApplication@@XZ -?HideHelpStatusText@Application@@UAEXXZ -?HideStatusText@Application@@UAEXXZ -?Init@Application@@UAEXXZ -?InitAppRes@Application@@SAXABVResId@@@Z -?InsertAccel@Application@@SAEPAVAccelerator@@@Z -?InsertIdleHdl@Application@@SAEABVLink@@G@Z -?IsAutoHelpIdEnabled@Application@@SAEXZ -?IsAutoMnemonicEnabled@Application@@SAEXZ -?IsDefinedKeyCodeEqual@KeyCode@@QBEEABV1@@Z -?IsDialogCancelEnabled@Application@@SAEXZ -?IsHeadlessModeEnabled@Application@@SAEXZ -?IsInExecute@Application@@SAEXZ -?IsInMain@Application@@SAEXZ -?IsInModalMode@Application@@SAEXZ -?IsMapMode@OutputDevice@@QBEEXZ -?IsRemoteServer@Application@@SAEXZ -?IsShutDown@Application@@SAEXZ -?IsUICaptured@Application@@SAEXZ -?IsUserActive@Application@@SAEG@Z -?MergeSystemSettings@Application@@SAXAAVAllSettings@@@Z -?NotifyAllWindows@Application@@SAXAAVDataChangedEvent@@@Z -?PostUserEvent@Application@@SAEAAKABVLink@@PAX@Z -?PostUserEvent@Application@@SAEAAKKPAX@Z -?PostUserEvent@Application@@SAKABVLink@@PAX@Z -?PostUserEvent@Application@@SAKKPAX@Z -?QueryExit@Application@@UAEEXZ -?Quit@Application@@SAXXZ -?Release@ImpUniqueId@@QAEXXZ -?ReleaseSolarMutex@Application@@SAKXZ -?Remove@Container@@QAEPAXPAX@Z -?RemoveAccel@Application@@SAXPAVAccelerator@@@Z -?RemoveAccessHdl@Application@@SAXABVLink@@@Z -?RemoveEventHook@Application@@SAXK@Z -?RemoveHotKey@Application@@SAXK@Z -?RemoveIdleHdl@Application@@SAXABVLink@@@Z -?RemoveUserEvent@Application@@SAXK@Z -?Reschedule@Application@@SAXXZ -?SetAppName@Application@@SAXABVString@@@Z -?SetDefDialogParent@Application@@SAXPAVWindow@@@Z -?SetDialogScaleX@Application@@SAXF@Z -?SetDisplayName@Application@@SAXABVString@@@Z -?SetFilterHdl@Application@@SAXABVLink@@@Z -?SetFilterHdl@GraphicConverter@@QAEXABVLink@@@Z -?SetFontPath@Application@@SAXABVString@@@Z -?SetHelp@Application@@SAXPAVHelp@@@Z -?SetResourcePath@Application@@SAXABVString@@@Z -?SetSettings@Application@@SAXABVAllSettings@@@Z -?SetSystemWindowMode@Application@@SAXG@Z -?SetUnoWrapper@Application@@SAXPAVUnoWrapperBase@@@Z -?ShowHelpStatusText@Application@@UAEXABVString@@@Z -?ShowStatusText@Application@@UAEXABVString@@@Z -?SystemSettingsChanging@Application@@UAEXAAVAllSettings@@PAVWindow@@@Z -?UserEvent@Application@@UAEXKPAX@Z -?WaitForClientConnect@Application@@QAEXXZ -?Yield@Application@@SAXXZ -?set@?$Reference@VXToolkit@awt@star@sun@com@@@uno@star@sun@com@@QAAEPAVXToolkit@awt@345@@Z -??0?$Reference@VXComponent@lang@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4__UnoReference_Query@1234@@Z -??0?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXComponent@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1Any@uno@star@sun@com@@QAE@XZ -??4?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXMultiServiceFactory@lang@234@@Z -??C?$Reference@VXComponent@lang@star@sun@com@@@uno@star@sun@com@@QBAPAVXComponent@lang@234@XZ -??_C@_0BN@DBFOLCOP@com?4sun?4star?4lang?4XComponent?$AA@ -??_GString@@QAEPAXI@Z -?__query@?$Reference@VXComponent@lang@star@sun@com@@@uno@star@sun@com@@CAPAVXComponent@lang@345@PAVXInterface@2345@@Z -?get@BaseReference@uno@star@sun@com@@QBAPAVXInterface@2345@XZ -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXComponent@lang@star@sun@com@@@2345@@Z -?getFileURLFromSystemPath@FileBase@osl@@SA?AW4RC@12@ABVOUString@rtl@@AAV45@@Z -?is@BaseReference@uno@star@sun@com@@QBAEXZ -?remove@File@osl@@SA?AW4RC@FileBase@2@ABVOUString@rtl@@@Z -?s_pType_com_sun_star_lang_XComponent@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXComponent@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?set@?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAAEPAVXMultiServiceFactory@lang@345@@Z -cpp_release -??0Logfile@rtl@@QAE@PBD@Z -??0OString@rtl@@QAE@PBD@Z -??0WorkerThreadData@@QAE@P6AXPAX@Z0@Z -??1Logfile@rtl@@QAE@XZ -??1OString@rtl@@QAE@XZ -??1UniqueIdContainer@@QAE@XZ -??4?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??_C@_0BA@DKEKOKFM@?$CF06lu?5?$CFlu?5?$HN?5?$CFs?6?$AA@ -??_C@_0BA@OMBDAJEB@?$CF06lu?5?$CFlu?5?$HL?5?$CFs?6?$AA@ -??_GAllSettings@@QAEPAXI@Z -??_GApplication@@QAEPAXI@Z -??_GGraphicConverter@@QAEPAXI@Z -??_GImageList@@QAEPAXI@Z -??_GList@@QAEPAXI@Z -??_GResMgr@@QAEPAXI@Z -??_GUniqueIdContainer@@QAEPAXI@Z -?CreateMainLoopThread@@YAXP6AXPAX@Z0@Z -?DeInitVCL@@YAXXZ -?InitVCL@@YAEABV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@@Z -?JoinMainLoopThread@@YAXXZ -?SVMain@@YAEXZ -?getName@Logfile@rtl@@QAEPBDXZ -?getStr@OString@rtl@@QBEPBDXZ -?getSystemPathFromFileURL@FileBase@osl@@SA?AW4RC@12@ABVOUString@rtl@@AAV45@@Z -?GetSummarySystemInfos@System@@SA?AVString@@K@Z -??0AutoTimer@@QAE@ABV0@@Z -??0AutoTimer@@QAE@XZ -??0Timer@@QAE@ABV0@@Z -??0Timer@@QAE@XZ -??1Timer@@QAE@XZ -??4AutoTimer@@QAEAAV0@ABV0@@Z -??4Timer@@QAEAAV0@ABV0@@Z -??_7AutoTimer@@6B@ -??_7Timer@@6B@ -?SetTimeout@Timer@@QAEXK@Z -?Start@Timer@@QAEXXZ -?Stop@Timer@@QAEXXZ -?Timeout@Timer@@UAEXXZ -??0Any@uno@star@sun@com@@QAE@ABV01234@@Z -??0Any@uno@star@sun@com@@QAE@PBXABVType@1234@@Z -??0Any@uno@star@sun@com@@QAE@XZ -??0DragAndDropWrapper@unohelper@vcl@@QAE@PAVDragAndDropClient@12@@Z -??0OWeakObject@cppu@@QAE@XZ -??0XDragGestureListener@dnd@datatransfer@star@sun@com@@QAE@XZ -??0XDragSourceListener@dnd@datatransfer@star@sun@com@@QAE@XZ -??0XDropTargetListener@dnd@datatransfer@star@sun@com@@QAE@XZ -??0XEventListener@lang@star@sun@com@@QAE@XZ -??0XInterface@uno@star@sun@com@@QAE@XZ -??0XWeak@uno@star@sun@com@@QAE@XZ -??1DragAndDropWrapper@unohelper@vcl@@UAE@XZ -??8Type@uno@star@sun@com@@QBAEABV01234@@Z -??_7DragAndDropWrapper@unohelper@vcl@@6BOWeakObject@cppu@@@ -??_7DragAndDropWrapper@unohelper@vcl@@6BXDragGestureListener@dnd@datatransfer@star@sun@com@@@ -??_7DragAndDropWrapper@unohelper@vcl@@6BXDragSourceListener@dnd@datatransfer@star@sun@com@@@ -??_7DragAndDropWrapper@unohelper@vcl@@6BXDropTargetListener@dnd@datatransfer@star@sun@com@@@ -??_7OWeakObject@cppu@@6B@ -??_C@_0CB@PHCNCHIO@com?4sun?4star?4lang?4XEventListener@ -??_C@_0DC@MNBAAIGG@com?4sun?4star?4datatransfer?4dnd?4XD@ -??_C@_0DC@OGBNAKA@com?4sun?4star?4datatransfer?4dnd?4XD@ -??_C@_0DD@PCADODGB@com?4sun?4star?4datatransfer?4dnd?4XD@ -??_GDragAndDropWrapper@unohelper@vcl@@UAEPAXI@Z -??_GOWeakObject@cppu@@MAEPAXI@Z -?acquire@DragAndDropWrapper@unohelper@vcl@@UAAXXZ -?acquire@DragAndDropWrapper@unohelper@vcl@@W3AAXXZ -?acquire@DragAndDropWrapper@unohelper@vcl@@W7AAXXZ -?acquire@DragAndDropWrapper@unohelper@vcl@@WM@AAXXZ -?disposing@DragAndDropWrapper@unohelper@vcl@@UAAXABUEventObject@lang@star@sun@com@@@Z -?disposing@DragAndDropWrapper@unohelper@vcl@@W3AAXABUEventObject@lang@star@sun@com@@@Z -?disposing@DragAndDropWrapper@unohelper@vcl@@W7AAXABUEventObject@lang@star@sun@com@@@Z -?dragDropEnd@DragAndDropClient@unohelper@vcl@@UAEXABUDragSourceDropEvent@dnd@datatransfer@star@sun@com@@@Z -?dragDropEnd@DragAndDropWrapper@unohelper@vcl@@UAAXABUDragSourceDropEvent@dnd@datatransfer@star@sun@com@@@Z -?dragEnter@DragAndDropClient@unohelper@vcl@@UAEXABUDragSourceDragEvent@dnd@datatransfer@star@sun@com@@@Z -?dragEnter@DragAndDropClient@unohelper@vcl@@UAEXABUDropTargetDragEnterEvent@dnd@datatransfer@star@sun@com@@@Z -?dragEnter@DragAndDropWrapper@unohelper@vcl@@UAAXABUDragSourceDragEvent@dnd@datatransfer@star@sun@com@@@Z -?dragEnter@DragAndDropWrapper@unohelper@vcl@@UAAXABUDropTargetDragEnterEvent@dnd@datatransfer@star@sun@com@@@Z -?dragExit@DragAndDropClient@unohelper@vcl@@UAEXABUDragSourceEvent@dnd@datatransfer@star@sun@com@@@Z -?dragExit@DragAndDropClient@unohelper@vcl@@UAEXABUDropTargetEvent@dnd@datatransfer@star@sun@com@@@Z -?dragExit@DragAndDropWrapper@unohelper@vcl@@UAAXABUDragSourceEvent@dnd@datatransfer@star@sun@com@@@Z -?dragExit@DragAndDropWrapper@unohelper@vcl@@UAAXABUDropTargetEvent@dnd@datatransfer@star@sun@com@@@Z -?dragGestureRecognized@DragAndDropClient@unohelper@vcl@@UAEXABUDragGestureEvent@dnd@datatransfer@star@sun@com@@@Z -?dragGestureRecognized@DragAndDropWrapper@unohelper@vcl@@UAAXABUDragGestureEvent@dnd@datatransfer@star@sun@com@@@Z -?dragOver@DragAndDropClient@unohelper@vcl@@UAEXABUDragSourceDragEvent@dnd@datatransfer@star@sun@com@@@Z -?dragOver@DragAndDropClient@unohelper@vcl@@UAEXABUDropTargetDragEvent@dnd@datatransfer@star@sun@com@@@Z -?dragOver@DragAndDropWrapper@unohelper@vcl@@UAAXABUDragSourceDragEvent@dnd@datatransfer@star@sun@com@@@Z -?dragOver@DragAndDropWrapper@unohelper@vcl@@UAAXABUDropTargetDragEvent@dnd@datatransfer@star@sun@com@@@Z -?drop@DragAndDropClient@unohelper@vcl@@UAEXABUDropTargetDropEvent@dnd@datatransfer@star@sun@com@@@Z -?drop@DragAndDropWrapper@unohelper@vcl@@UAAXABUDropTargetDropEvent@dnd@datatransfer@star@sun@com@@@Z -?dropActionChanged@DragAndDropClient@unohelper@vcl@@UAEXABUDragSourceDragEvent@dnd@datatransfer@star@sun@com@@@Z -?dropActionChanged@DragAndDropClient@unohelper@vcl@@UAEXABUDropTargetDragEvent@dnd@datatransfer@star@sun@com@@@Z -?dropActionChanged@DragAndDropWrapper@unohelper@vcl@@UAAXABUDragSourceDragEvent@dnd@datatransfer@star@sun@com@@@Z -?dropActionChanged@DragAndDropWrapper@unohelper@vcl@@UAAXABUDropTargetDragEvent@dnd@datatransfer@star@sun@com@@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragGestureListener@dnd@datatransfer@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragSourceListener@dnd@datatransfer@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXEventListener@lang@star@sun@com@@@2345@@Z -?getTypeLibType@Type@uno@star@sun@com@@QBAPAU_typelib_TypeDescriptionReference@@XZ -?hasValue@Any@uno@star@sun@com@@QBAEXZ -?queryInterface@DragAndDropWrapper@unohelper@vcl@@UAA?AVAny@uno@star@sun@com@@ABVType@5678@@Z -?queryInterface@DragAndDropWrapper@unohelper@vcl@@W3AA?AVAny@uno@star@sun@com@@ABVType@5678@@Z -?queryInterface@DragAndDropWrapper@unohelper@vcl@@W7AA?AVAny@uno@star@sun@com@@ABVType@5678@@Z -?queryInterface@DragAndDropWrapper@unohelper@vcl@@WM@AA?AVAny@uno@star@sun@com@@ABVType@5678@@Z -?queryInterface@cppu@@YA?AVAny@uno@star@sun@com@@ABVType@3456@PAVXDragGestureListener@dnd@datatransfer@456@PAVXDragSourceListener@9datatransfer@456@PAVXDropTargetListener@9datatransfer@456@@Z -?release@DragAndDropWrapper@unohelper@vcl@@UAAXXZ -?release@DragAndDropWrapper@unohelper@vcl@@W3AAXXZ -?release@DragAndDropWrapper@unohelper@vcl@@W7AAXXZ -?release@DragAndDropWrapper@unohelper@vcl@@WM@AAXXZ -?s_pType_com_sun_star_datatransfer_dnd_XDragGestureListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragGestureListener@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_datatransfer_dnd_XDragSourceListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragSourceListener@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_datatransfer_dnd_XDropTargetListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_lang_XEventListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXEventListener@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -cpp_acquire -??0?$Reference@VXBreakIterator@i18n@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXBreakIterator@i18n@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXCharacterClassification@i18n@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXCharacterClassification@i18n@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXCollator@i18n@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXCollator@i18n@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXSimpleRegistry@registry@star@sun@com@@@uno@star@sun@com@@QAE@PAVXSimpleRegistry@registry@234@@Z -??0OUString@rtl@@AAE@PAU_rtl_uString@@PAVDO_NOT_ACQUIRE@01@@Z -??1?$Reference@VXBreakIterator@i18n@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXCharacterClassification@i18n@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXCollator@i18n@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXSimpleRegistry@registry@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??C?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QBAPAVXInterface@1234@XZ -??C?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QBAPAVXMultiServiceFactory@lang@234@XZ -??YOUString@rtl@@QAEAAV01@ABV01@@Z -??_2uno@star@sun@com@@YAEABVAny@0123@AAV?$Reference@VXBreakIterator@i18n@star@sun@com@@@0123@@Z -??_2uno@star@sun@com@@YAEABVAny@0123@AAV?$Reference@VXCharacterClassification@i18n@star@sun@com@@@0123@@Z -??_2uno@star@sun@com@@YAEABVAny@0123@AAV?$Reference@VXCollator@i18n@star@sun@com@@@0123@@Z -??_C@_0BM@POAJAKOF@com?4sun?4star?4i18n?4XCollator?$AA@ -??_C@_0CB@CBONGFNH@com?4sun?4star?4i18n?4XBreakIterator@ -??_C@_0CL@OCPKOEPP@com?4sun?4star?4i18n?4XCharacterClas@ -??_R0?AVException@uno@star@sun@com@@@8 -??_R0?AVRuntimeException@uno@star@sun@com@@@8 -?CreateBreakIterator@unohelper@vcl@@YA?AV?$Reference@VXBreakIterator@i18n@star@sun@com@@@uno@star@sun@com@@XZ -?CreateCharacterClassification@unohelper@vcl@@YA?AV?$Reference@VXCharacterClassification@i18n@star@sun@com@@@uno@star@sun@com@@XZ -?CreateCollator@unohelper@vcl@@YA?AV?$Reference@VXCollator@i18n@star@sun@com@@@uno@star@sun@com@@XZ -?CreateLibraryName@unohelper@vcl@@YA?AVOUString@rtl@@PBDE@Z -?GetMultiServiceFactory@unohelper@vcl@@YA?AV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@XZ -?createFromAscii@OUString@rtl@@SA?AV12@PBD@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXBreakIterator@i18n@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXCharacterClassification@i18n@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXCollator@i18n@star@sun@com@@@2345@@Z -?s_pType_com_sun_star_i18n_XBreakIterator@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXBreakIterator@i18n@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_i18n_XCharacterClassification@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXCharacterClassification@i18n@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_i18n_XCollator@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXCollator@i18n@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?valueOf@OUString@rtl@@SA?AV12@JF@Z -cpp_queryInterface -??0?$Guard@VMutex@osl@@@osl@@QAE@AAVMutex@1@@Z -??0I18nHelper@vcl@@QAE@AAV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@ABULocale@lang@456@@Z -??0Mutex@osl@@QAE@XZ -??1?$Guard@VMutex@osl@@@osl@@QAE@XZ -??1I18nHelper@vcl@@QAE@XZ -??1Mutex@osl@@QAE@XZ -??_GTransliterationWrapper@utl@@QAEPAXI@Z -?acquire@Mutex@osl@@QAEEXZ -?equals@I18nHelper@vcl@@QBEEABVString@@JJ0JJE@Z -?getDate@I18nHelper@vcl@@QBE?AVString@@ABVDate@@E@Z -?getLocale@I18nHelper@vcl@@QBEABULocale@lang@star@sun@com@@XZ -?release@Mutex@osl@@QAEEXZ -?setLocale@I18nHelper@vcl@@QAEXABULocale@lang@star@sun@com@@@Z -??0BitmapBuffer@@QAE@XZ -??0BitmapColor@@QAE@ABV0@@Z -??0BitmapColor@@QAE@E@Z -??0BitmapColor@@QAE@EEE@Z -??0BitmapColor@@QAE@XZ -??0BitmapPalette@@QAE@G@Z -??0BitmapPalette@@QAE@XZ -??0ColorMask@@QAE@KKK@Z -??1BitmapColor@@QAE@XZ -??1BitmapPalette@@QAE@XZ -??1ColorMask@@QAE@XZ -??4BitmapColor@@QAEAAV0@ABV0@@Z -??4BitmapPalette@@QAEAAV0@ABV0@@Z -??8BitmapColor@@QBEEABV0@@Z -??ABitmapPalette@@QAEAAVBitmapColor@@G@Z -??ABitmapPalette@@QBEABVBitmapColor@@G@Z -?AlignedWidth4Bytes@@YAJJ@Z -?FRound@@YAJN@Z -?GetBestIndex@BitmapPalette@@QBEGABVBitmapColor@@@Z -?GetBlue@BitmapColor@@QBEEXZ -?GetColorError@BitmapColor@@QBEKABV1@@Z -?GetEntryCount@BitmapPalette@@QBEGXZ -?GetGreen@BitmapColor@@QBEEXZ -?GetIndex@BitmapColor@@QBEEXZ -?GetRed@BitmapColor@@QBEEXZ -?SetBlue@BitmapColor@@QAEXE@Z -?SetGreen@BitmapColor@@QAEXE@Z -?SetIndex@BitmapColor@@QAEXE@Z -?SetRed@BitmapColor@@QAEXE@Z -_real@0000000000000000 -_real@3fe0000000000000 -??0Animation@@QAE@ABV0@@Z -??0Animation@@QAE@XZ -??0AnimationBitmap@@QAE@ABU0@@Z -??0AnimationBitmap@@QAE@XZ -??1AInfo@@QAE@XZ -??1Animation@@QAE@XZ -??1AnimationBitmap@@QAE@XZ -??4Animation@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVAnimation@@@Z -??5SvStream@@QAEAAV0@AAVByteString@@@Z -??6@YAAAVSvStream@@AAV0@ABVAnimation@@@Z -??6SvStream@@QAEAAV0@ABVByteString@@@Z -??7Bitmap@@QBEEXZ -??8Animation@@QBEEABV0@@Z -??8AnimationBitmap@@QBEEABU0@@Z -??9AnimationBitmap@@QBEEABU0@@Z -??_GAInfo@@QAEPAXI@Z -??_GAnimationBitmap@@QAEPAXI@Z -?Adjust@Animation@@QAEEFFFFFNE@Z -?Clear@Animation@@QAEXXZ -?Convert@Animation@@QAEEW4BmpConversion@@@Z -?Count@Animation@@QBEGXZ -?Dither@Animation@@QAEEKPBVBitmapPalette@@@Z -?Draw@Animation@@QBEXPAVOutputDevice@@ABVPoint@@@Z -?Draw@Animation@@QBEXPAVOutputDevice@@ABVPoint@@ABVSize@@@Z -?Filter@Animation@@QAEEW4BmpFilter@@PBVBmpFilterParam@@PBVLink@@@Z -?Get@Animation@@QBEABUAnimationBitmap@@G@Z -?GetBitmapEx@Animation@@QBEABVBitmapEx@@XZ -?GetChecksum@Animation@@QBEKXZ -?GetChecksum@AnimationBitmap@@QBEKXZ -?GetConnectMetaFile@OutputDevice@@QBEPAVGDIMetaFile@@XZ -?GetNumberFormatInt@SvStream@@QBEGXZ -?GetOutDevType@OutputDevice@@QBE?AW4OutDevType@@XZ -?GetSizeBytes@Animation@@QBEKXZ -?Insert@Animation@@QAEEABUAnimationBitmap@@@Z -?Invert@Animation@@QAEEXZ -?IsEmpty@Animation@@QBEEXZ -?IsEqual@Animation@@QBEEABV1@@Z -?IsEqual@AnimationBitmap@@QBEEABU1@@Z -?IsInAnimation@Animation@@QBEEXZ -?IsTransparent@Animation@@QBEEXZ -?LongToSVBT32@@YAXKQAE@Z -?Max@@YAKKK@Z -?Min@@YAJJJ@Z -?Mirror@Animation@@QAEEK@Z -?ReduceColors@Animation@@QAEEGW4BmpReduce@@@Z -?Replace@Animation@@QAEXABUAnimationBitmap@@G@Z -?ResetLoopCount@Animation@@QAEXXZ -?SetEmpty@Animation@@QAEXXZ -?SetLoopCount@Animation@@QAEXK@Z -?Start@Animation@@QAEEPAVOutputDevice@@ABVPoint@@ABVSize@@J0@Z -?Start@Animation@@QAEEPAVOutputDevice@@ABVPoint@@J0@Z -?Stop@Animation@@QAEXPAVOutputDevice@@J@Z -?Tell@SvStream@@QBEKXZ -?mnAnimCount@Animation@@0KA -??0AInfo@@QAE@XZ -??_GRegion@@QAEPAXI@Z -?GetDisplaySizePixel@Animation@@QBEABVSize@@XZ -?GetOutputSize@OutputDevice@@QBE?AVSize@@XZ -?IsNull@Region@@QBEEXZ -?Min@@YAKKK@Z -_real@3ff0000000000000 -??0Bitmap@@QAE@ABV0@@Z -??0Bitmap@@QAE@ABVResId@@@Z -??0Bitmap@@QAE@ABVSize@@GPBVBitmapPalette@@@Z -??0Bitmap@@QAE@XZ -??0BitmapColor@@QAE@ABVColor@@@Z -??0BitmapPalette@@QAE@ABV0@@Z -??0BitmapWriteAccess@@QAE@AAVBitmap@@@Z -??1Bitmap@@QAE@XZ -??4Bitmap@@QAEAAV0@ABV0@@Z -??7BitmapPalette@@QAEEXZ -??7BitmapReadAccess@@QBEEXZ -??8BitmapPalette@@QAEEABV0@@Z -??9Bitmap@@QBEEABV0@@Z -??9BitmapColor@@QBEEABV0@@Z -??9Pair@@QBEEABV0@@Z -??BBitmapColor@@QBEEXZ -??_7BitmapWriteAccess@@6B@ -??_EBitmapColor@@QAEPAXI@Z -??_GBitmapWriteAccess@@UAEPAXI@Z -??_GImpBitmap@@QAEPAXI@Z -??_I@YGXPAXIHP6EX0@Z@Z -?AcquireReadAccess@AlphaMask@@QAEPAVBitmapReadAccess@@XZ -?AcquireReadAccess@Bitmap@@QAEPAVBitmapReadAccess@@XZ -?AcquireWriteAccess@Bitmap@@QAEPAVBitmapWriteAccess@@XZ -?CombineSimple@Bitmap@@QAEEABV1@W4BmpCombine@@@Z -?CopyPixel@Bitmap@@QAEEABVRectangle@@0PBV1@@Z -?CreateDisplayBitmap@Bitmap@@QAE?AV1@PAVOutputDevice@@@Z -?CreateMask@Bitmap@@QBE?AV1@ABVColor@@K@Z -?CreateRegion@Bitmap@@QBE?AVRegion@@ABVColor@@ABVRectangle@@@Z -?Crop@Bitmap@@QAEEABVRectangle@@@Z -?Erase@Bitmap@@QAEEABVColor@@@Z -?Expand@Bitmap@@QAEEKKPBVColor@@@Z -?GetBestMatchingColor@BitmapReadAccess@@QAE?AVBitmapColor@@ABV2@@Z -?GetBitCount@Bitmap@@QBEGXZ -?GetBitCount@BitmapReadAccess@@QBEGXZ -?GetBlueMask@ColorMask@@QBEKXZ -?GetBuffer@BitmapReadAccess@@QBEPAEXZ -?GetChecksum@Bitmap@@QBEKXZ -?GetColor@BitmapReadAccess@@QBE?AVBitmapColor@@JJ@Z -?GetColorMask@BitmapReadAccess@@QBEAAVColorMask@@XZ -?GetGreenMask@ColorMask@@QBEKXZ -?GetGreyPalette@Bitmap@@SAABVBitmapPalette@@G@Z -?GetPalette@BitmapReadAccess@@QBEABVBitmapPalette@@XZ -?GetPaletteColor@BitmapReadAccess@@QBEABVBitmapColor@@G@Z -?GetPaletteEntryCount@BitmapReadAccess@@QBEGXZ -?GetPixel@BitmapReadAccess@@QBE?AVBitmapColor@@JJ@Z -?GetRedMask@ColorMask@@QBEKXZ -?GetScanline@BitmapReadAccess@@QBEPAEJ@Z -?GetScanlineFormat@BitmapReadAccess@@QBEKXZ -?GetScanlineSize@BitmapReadAccess@@QBEKXZ -?GetSizePixel@Bitmap@@QBE?AVSize@@XZ -?HasGreyPalette@Bitmap@@QBEEXZ -?HasPalette@BitmapReadAccess@@QBEEXZ -?Height@BitmapReadAccess@@QBEJXZ -?Invert@Bitmap@@QAEEXZ -?Invert@BitmapColor@@QAEAAV1@XZ -?IsEqual@Bitmap@@QBEEABV1@@Z -?IsSameInstance@Bitmap@@QBEEABV1@@Z -?Merge@BitmapColor@@QAEAAV1@ABV1@E@Z -?Min@@YAGGG@Z -?MinMax@@YAJJJJ@Z -?Mirror@Bitmap@@QAEEK@Z -?ReleaseAccess@Bitmap@@QAEXPAVBitmapReadAccess@@@Z -?Replace@Bitmap@@QAEEABV1@ABVColor@@@Z -?Replace@Bitmap@@QAEEABVAlphaMask@@ABVColor@@@Z -?Replace@Bitmap@@QAEEABVColor@@0K@Z -?Replace@Bitmap@@QAEEPBVColor@@0KPAK@Z -?Rotate@Bitmap@@QAEEJABVColor@@@Z -?SetEmpty@Bitmap@@QAEXXZ -?SetEntryCount@BitmapPalette@@QAEXG@Z -?SetFillColor@BitmapWriteAccess@@QAEXABVBitmapColor@@@Z -?SetPalette@BitmapWriteAccess@@QAEXABVBitmapPalette@@@Z -?SetPaletteColor@BitmapWriteAccess@@QAEXGABVBitmapColor@@@Z -?SetPaletteEntryCount@BitmapWriteAccess@@QAEXG@Z -?SetPixel@BitmapWriteAccess@@QAEXJJABVBitmapColor@@@Z -?SetRT@ResId@@QBEABV1@F@Z -?SetSizePixel@Bitmap@@QAEXABVSize@@@Z -?Width@BitmapReadAccess@@QBEJXZ -_real@3f5c987103b75c05 -_real@4050000000000000 -??0DIBInfoHeader@@QAE@XZ -??1DIBInfoHeader@@QAE@XZ -??5@YAAAVSvStream@@AAV0@AAVBitmap@@@Z -??6@YAAAVSvStream@@AAV0@ABVBitmap@@@Z -??9MapMode@@QBEEABV0@@Z -?GetColorFor16BitLSB@ColorMask@@QBEXAAVBitmapColor@@PAE@Z -?GetColorFor32Bit@ColorMask@@QBEXAAVBitmapColor@@PAE@Z -?GetCompressMode@SvStream@@QBEGXZ -?GetData@SvMemoryStream@@QAEPBXXZ -?GetVersion@SvStream@@QAEJXZ -?HasColorMask@BitmapReadAccess@@QBEEXZ -?IsBottomUp@BitmapReadAccess@@QBEEXZ -?IsTopDown@BitmapReadAccess@@QBEEXZ -?Read@Bitmap@@QAEEAAVSvStream@@E@Z -?SetPrefMapMode@Bitmap@@QAEXABVMapMode@@@Z -?SetPrefSize@Bitmap@@QAEXABVSize@@@Z -?Write@Bitmap@@QBEEAAVSvStream@@EE@Z -??0ImpErrorQuad@@QAE@ABVBitmapColor@@@Z -??0ImpErrorQuad@@QAE@XZ -??4ImpErrorQuad@@QAEXABVBitmapColor@@@Z -??9BitmapPalette@@QAEEABV0@@Z -??ZImpErrorQuad@@QAEAAV0@ABVBitmapColor@@@Z -?Adjust@Bitmap@@QAEEFFFFFNE@Z -?Convert@Bitmap@@QAEEW4BmpConversion@@@Z -?Dither@Bitmap@@QAEEKPBVBitmapPalette@@@Z -?FloydError1@@3PAJA -?FloydError3@@3PAJA -?FloydError5@@3PAJA -?FloydError7@@3PAJA -?FloydIndexMap@@3PAJA -?FloydMap@@3PAJA -?GetBestPaletteIndex@InverseColorMap@@QAEGABVBitmapColor@@@Z -?GetBestPaletteIndex@Octree@@QAEGABVBitmapColor@@@Z -?GetColorCount@Bitmap@@QBEKXZ -?GetLuminance@BitmapColor@@QBEEXZ -?GetPalette@Octree@@QAEABVBitmapPalette@@XZ -?Max@@YAGGG@Z -?ReduceColors@Bitmap@@QAEEGW4BmpReduce@@@Z -?Scale@Bitmap@@QAEEABN0K@Z -?Scale@Bitmap@@QAEEABVSize@@K@Z -?Vectorize@Bitmap@@QAEEAAVGDIMetaFile@@EKPBVLink@@@Z -?Vectorize@Bitmap@@QAEEAAVPolyPolygon@@KPBVLink@@@Z -?nVCLBLut@@3PAKA -?nVCLDitherLut@@3PAKA -?nVCLGLut@@3PAKA -?nVCLLut@@3PAKA -?nVCLRLut@@3PAKA -_real@3f70101010101010 -_real@3f80000000000000 -_real@3fc9000000000000 -_real@3ff451eb851eb852 -_real@4004666666666666 -_real@4009000000000000 -_real@4024000000000000 -_real@4060000000000000 -_real@406fc00000000000 -_real@406fe00000000000 -_real@4090000000000000 -??_GBitmap@@QAEPAXI@Z -?Filter@Bitmap@@QAEEW4BmpFilter@@PBVBmpFilterParam@@PBVLink@@@Z -_real@3f847ae147ae147b -_real@3f91df46a2529983 -_real@4056800000000000 -??0AlphaMask@@QAE@ABV0@@Z -??0AlphaMask@@QAE@ABVBitmap@@@Z -??0AlphaMask@@QAE@ABVSize@@PAE@Z -??0AlphaMask@@QAE@XZ -??1AlphaMask@@QAE@XZ -??4AlphaMask@@QAEAAV0@ABVBitmap@@@Z -?AcquireWriteAccess@AlphaMask@@QAEPAVBitmapWriteAccess@@XZ -?CopyPixel@AlphaMask@@QAEEABVRectangle@@0PBV1@@Z -?Crop@AlphaMask@@QAEEABVRectangle@@@Z -?Erase@AlphaMask@@QAEEE@Z -?Expand@AlphaMask@@QAEEKKPAE@Z -?Invert@AlphaMask@@QAEEXZ -?Mirror@AlphaMask@@QAEEK@Z -?ReleaseAccess@AlphaMask@@QAEXPAVBitmapReadAccess@@@Z -?Replace@AlphaMask@@QAEEABVBitmap@@E@Z -?Replace@AlphaMask@@QAEEEEK@Z -?Replace@AlphaMask@@QAEEPAE0KPAK@Z -?Rotate@AlphaMask@@QAEEJE@Z -?Scale@AlphaMask@@QAEEABN0K@Z -?Scale@AlphaMask@@QAEEABVSize@@K@Z -??0BitmapEx@@QAE@ABV0@@Z -??0BitmapEx@@QAE@ABVBitmap@@0@Z -??0BitmapEx@@QAE@ABVBitmap@@@Z -??0BitmapEx@@QAE@ABVBitmap@@ABVAlphaMask@@@Z -??0BitmapEx@@QAE@ABVBitmap@@ABVColor@@@Z -??0BitmapEx@@QAE@XZ -??1BitmapEx@@QAE@XZ -??4BitmapEx@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVBitmapEx@@@Z -??6@YAAAVSvStream@@AAV0@ABVBitmapEx@@@Z -??7AlphaMask@@QBEEXZ -??8Bitmap@@QBEEABV0@@Z -??8BitmapEx@@QBEEABV0@@Z -??BBitmapColor@@QBE?AVColor@@XZ -??_GAlphaMask@@QAEPAXI@Z -?Adjust@BitmapEx@@QAEEFFFFFNE@Z -?Clear@BitmapEx@@QAEXXZ -?Convert@BitmapEx@@QAEEW4BmpConversion@@@Z -?CopyPixel@BitmapEx@@QAEEABVRectangle@@0PBV1@@Z -?Crop@BitmapEx@@QAEEABVRectangle@@@Z -?Dither@BitmapEx@@QAEEKPBVBitmapPalette@@@Z -?Draw@BitmapEx@@QBEXPAVOutputDevice@@ABVPoint@@@Z -?Draw@BitmapEx@@QBEXPAVOutputDevice@@ABVPoint@@ABVSize@@12@Z -?Draw@BitmapEx@@QBEXPAVOutputDevice@@ABVPoint@@ABVSize@@@Z -?Erase@BitmapEx@@QAEEABVColor@@@Z -?Expand@BitmapEx@@QAEEKKPBVColor@@E@Z -?Filter@BitmapEx@@QAEEW4BmpFilter@@PBVBmpFilterParam@@PBVLink@@@Z -?GetAlpha@BitmapEx@@QBE?AVAlphaMask@@XZ -?GetBitmap@BitmapEx@@QBE?AVBitmap@@PBVColor@@@Z -?GetChecksum@BitmapEx@@QBEKXZ -?GetMask@BitmapEx@@QBE?AVBitmap@@XZ -?GetSizeBytes@Bitmap@@QBEKXZ -?GetSizeBytes@BitmapEx@@QBEKXZ -?GetSizePixel@BitmapEx@@QBEABVSize@@XZ -?Invert@BitmapEx@@QAEEXZ -?IsAlpha@BitmapEx@@QBEEXZ -?IsEmpty@Bitmap@@QBEEXZ -?IsEmpty@BitmapEx@@QBEEXZ -?IsEqual@BitmapEx@@QBEEABV1@@Z -?IsTransparent@BitmapEx@@QBEEXZ -?Mirror@BitmapEx@@QAEEK@Z -?ReduceColors@BitmapEx@@QAEEGW4BmpReduce@@@Z -?Replace@BitmapEx@@QAEEABVColor@@0K@Z -?Replace@BitmapEx@@QAEEPBVColor@@0KPBK@Z -?Rotate@BitmapEx@@QAEEJABVColor@@@Z -?Scale@BitmapEx@@QAEEABN0K@Z -?Scale@BitmapEx@@QAEEABVSize@@K@Z -?SetEmpty@BitmapEx@@QAEXXZ -?SetSizePixel@BitmapEx@@QAEXABVSize@@@Z -??0ImageConsumer@@QAE@XZ -??1ImageConsumer@@UAE@XZ -??_7ImageConsumer@@6B@ -??_GImageConsumer@@UAEPAXI@Z -?Completed@ImageConsumer@@UAEXK@Z -?DataChanged@ImageConsumer@@MAEXXZ -?GetData@ImageConsumer@@QBEEAAVBitmapEx@@@Z -?GetData@ImageConsumer@@QBEEAAVImage@@@Z -?GetStatus@ImageConsumer@@QBEKXZ -?GetTransparency@Color@@QBEEXZ -?Init@ImageConsumer@@UAEXKK@Z -?SetBlue@Color@@QAEXE@Z -?SetColorModel@ImageConsumer@@UAEXGKPBKKKKK@Z -?SetEmpty@Rectangle@@QAEXXZ -?SetGreen@Color@@QAEXE@Z -?SetPixelsByBytes@ImageConsumer@@UAEXKKKKPBEKK@Z -?SetPixelsByLongs@ImageConsumer@@UAEXKKKKPBKKK@Z -?SetRed@Color@@QAEXE@Z -?SetTransparency@Color@@QAEXE@Z -??0BitmapReadAccess@@IAE@AAVBitmap@@E@Z -??0BitmapReadAccess@@QAE@AAVBitmap@@@Z -??1BitmapReadAccess@@UAE@XZ -??1BitmapWriteAccess@@UAE@XZ -??_7BitmapReadAccess@@6B@ -??_GBitmapReadAccess@@UAEPAXI@Z -?CopyBuffer@BitmapWriteAccess@@QAEXABVBitmapReadAccess@@@Z -?CopyScanline@BitmapWriteAccess@@QAEXJABVBitmapReadAccess@@@Z -?CopyScanline@BitmapWriteAccess@@QAEXJQAEKK@Z -?Flush@BitmapReadAccess@@IAEXXZ -?GetBestPaletteIndex@BitmapReadAccess@@QBEGABVBitmapColor@@@Z -?IsIndex@BitmapColor@@QBEEXZ -?ReAccess@BitmapReadAccess@@IAEXE@Z -?GetColorFor16BitMSB@ColorMask@@QBEXAAVBitmapColor@@PAE@Z -?GetColorFor24Bit@ColorMask@@QBEXAAVBitmapColor@@PAE@Z -?GetColorFor8Bit@ColorMask@@QBEXAAVBitmapColor@@PAE@Z -?GetPixelFor_16BIT_TC_LSB_MASK@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_16BIT_TC_MSB_MASK@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_1BIT_LSB_PAL@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_1BIT_MSB_PAL@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_24BIT_TC_BGR@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_24BIT_TC_MASK@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_24BIT_TC_RGB@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_32BIT_TC_ABGR@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_32BIT_TC_ARGB@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_32BIT_TC_BGRA@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_32BIT_TC_MASK@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_32BIT_TC_RGBA@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_4BIT_LSN_PAL@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_4BIT_MSN_PAL@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_8BIT_PAL@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?GetPixelFor_8BIT_TC_MASK@BitmapReadAccess@@SA?AVBitmapColor@@PAEJABVColorMask@@@Z -?SetColorFor16BitLSB@ColorMask@@QBEXABVBitmapColor@@PAE@Z -?SetColorFor16BitMSB@ColorMask@@QBEXABVBitmapColor@@PAE@Z -?SetColorFor24Bit@ColorMask@@QBEXABVBitmapColor@@PAE@Z -?SetColorFor32Bit@ColorMask@@QBEXABVBitmapColor@@PAE@Z -?SetColorFor8Bit@ColorMask@@QBEXABVBitmapColor@@PAE@Z -?SetPixelFor_16BIT_TC_LSB_MASK@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_16BIT_TC_MSB_MASK@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_1BIT_LSB_PAL@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_1BIT_MSB_PAL@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_24BIT_TC_BGR@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_24BIT_TC_MASK@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_24BIT_TC_RGB@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_32BIT_TC_ABGR@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_32BIT_TC_ARGB@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_32BIT_TC_BGRA@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_32BIT_TC_MASK@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_32BIT_TC_RGBA@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_4BIT_LSN_PAL@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_4BIT_MSN_PAL@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_8BIT_PAL@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -?SetPixelFor_8BIT_TC_MASK@BitmapReadAccess@@SAXPAEJABVBitmapColor@@ABVColorMask@@@Z -??APolyPolygon@@QBEABVPolygon@@G@Z -??APolygon@@QBEABVPoint@@G@Z -?BottomLeft@Rectangle@@QBE?AVPoint@@XZ -?BottomRight@Rectangle@@QBE?AVPoint@@XZ -?DrawLine@BitmapWriteAccess@@QAEXABVPoint@@0@Z -?DrawPolyPolygon@BitmapWriteAccess@@QAEXABVPolyPolygon@@@Z -?DrawPolygon@BitmapWriteAccess@@QAEXABVPolygon@@@Z -?DrawRect@BitmapWriteAccess@@QAEXABVRectangle@@@Z -?Erase@BitmapWriteAccess@@QAEXABVColor@@@Z -?FillRect@BitmapWriteAccess@@QAEXABVRectangle@@@Z -?GetNextEnumRect@Region@@QAEEJAAVRectangle@@@Z -?IsEmpty@Region@@QBEEXZ -?TopRight@Rectangle@@QBE?AVPoint@@XZ -??0Color@@QAE@ABVResId@@@Z -?GetResMgr@ResId@@QBEPAVResMgr@@XZ -??0Rectangle@@QAE@ABVPoint@@0@Z -??0SVMConverter@@QAE@AAVSvStream@@AAVGDIMetaFile@@K@Z -??0Stack@@QAE@GG@Z -??1Stack@@QAE@XZ -??_GLineInfo@@QAEPAXI@Z -?GetAction@GDIMetaFile@@QBEPAVMetaAction@@K@Z -?GetActionCount@GDIMetaFile@@QBEKXZ -?GetAlign@Font@@QBE?AW4TextAlign@@XZ -?GetAngle@Gradient@@QBEGXZ -?GetBitmap@MetaBmpAction@@QBEABVBitmap@@XZ -?GetBitmap@MetaBmpScaleAction@@QBEABVBitmap@@XZ -?GetBitmap@MetaBmpScalePartAction@@QBEABVBitmap@@XZ -?GetBitmapEx@MetaBmpExAction@@QBEABVBitmapEx@@XZ -?GetBitmapEx@MetaBmpExScaleAction@@QBEABVBitmapEx@@XZ -?GetBitmapEx@MetaBmpExScalePartAction@@QBEABVBitmapEx@@XZ -?GetBorder@Gradient@@QBEGXZ -?GetBuffer@ByteString@@QBEPBDXZ -?GetChar@String@@QBEGG@Z -?GetCharSet@Font@@QBEGXZ -?GetColor@Font@@QBEABVColor@@XZ -?GetColor@MetaFillColorAction@@QBEABVColor@@XZ -?GetColor@MetaLineColorAction@@QBEABVColor@@XZ -?GetColor@MetaPixelAction@@QBEABVColor@@XZ -?GetColor@MetaTextColorAction@@QBEABVColor@@XZ -?GetColor@MetaTextFillColorAction@@QBEABVColor@@XZ -?GetColor@MetaTextLineColorAction@@QBEABVColor@@XZ -?GetComment@MetaCommentAction@@QBEABVByteString@@XZ -?GetDXArray@MetaTextArrayAction@@QBEPAJXZ -?GetData@MetaCommentAction@@QBEPBEXZ -?GetDataSize@MetaCommentAction@@QBEKXZ -?GetDenominator@Fraction@@QBEJXZ -?GetDestPoint@MetaBmpExScalePartAction@@QBEABVPoint@@XZ -?GetDestPoint@MetaBmpScalePartAction@@QBEABVPoint@@XZ -?GetDestSize@MetaBmpExScalePartAction@@QBEABVSize@@XZ -?GetDestSize@MetaBmpScalePartAction@@QBEABVSize@@XZ -?GetEndColor@Gradient@@QBEABVColor@@XZ -?GetEndIntensity@Gradient@@QBEGXZ -?GetEndPoint@MetaArcAction@@QBEABVPoint@@XZ -?GetEndPoint@MetaChordAction@@QBEABVPoint@@XZ -?GetEndPoint@MetaLineAction@@QBEABVPoint@@XZ -?GetEndPoint@MetaPieAction@@QBEABVPoint@@XZ -?GetFamily@Font@@QBE?AW4FontFamily@@XZ -?GetFillColor@Font@@QBEABVColor@@XZ -?GetFont@MetaFontAction@@QBEABVFont@@XZ -?GetFont@OutputDevice@@QBEABVFont@@XZ -?GetGDIMetaFile@MetaFloatTransparentAction@@QBEABVGDIMetaFile@@XZ -?GetGradient@MetaFloatTransparentAction@@QBEABVGradient@@XZ -?GetGradient@MetaGradientAction@@QBEABVGradient@@XZ -?GetGradient@MetaGradientExAction@@QBEABVGradient@@XZ -?GetHatch@MetaHatchAction@@QBEABVHatch@@XZ -?GetHorzMove@MetaMoveClipRegionAction@@QBEJXZ -?GetHorzRound@MetaRoundRectAction@@QBEKXZ -?GetIndex@MetaStretchTextAction@@QBEGXZ -?GetIndex@MetaTextAction@@QBEGXZ -?GetIndex@MetaTextArrayAction@@QBEGXZ -?GetItalic@Font@@QBE?AW4FontItalic@@XZ -?GetLen@MetaStretchTextAction@@QBEGXZ -?GetLen@MetaTextAction@@QBEGXZ -?GetLen@MetaTextArrayAction@@QBEGXZ -?GetLineInfo@MetaLineAction@@QBEABVLineInfo@@XZ -?GetLineInfo@MetaPolyLineAction@@QBEABVLineInfo@@XZ -?GetMapMode@MetaMapModeAction@@QBEABVMapMode@@XZ -?GetMapUnit@MapMode@@QBE?AW4MapUnit@@XZ -?GetName@Font@@QBEABVString@@XZ -?GetNumerator@Fraction@@QBEJXZ -?GetOfsX@Gradient@@QBEGXZ -?GetOfsY@Gradient@@QBEGXZ -?GetOrientation@Font@@QBEFXZ -?GetOrigin@MapMode@@QBEABVPoint@@XZ -?GetPitch@Font@@QBE?AW4FontPitch@@XZ -?GetPoint@MetaBmpAction@@QBEABVPoint@@XZ -?GetPoint@MetaBmpExAction@@QBEABVPoint@@XZ -?GetPoint@MetaBmpExScaleAction@@QBEABVPoint@@XZ -?GetPoint@MetaBmpScaleAction@@QBEABVPoint@@XZ -?GetPoint@MetaFloatTransparentAction@@QBEABVPoint@@XZ -?GetPoint@MetaPixelAction@@QBEABVPoint@@XZ -?GetPoint@MetaPointAction@@QBEABVPoint@@XZ -?GetPoint@MetaStretchTextAction@@QBEABVPoint@@XZ -?GetPoint@MetaTextAction@@QBEABVPoint@@XZ -?GetPoint@MetaTextArrayAction@@QBEABVPoint@@XZ -?GetPolyPolygon@MetaGradientExAction@@QBEABVPolyPolygon@@XZ -?GetPolyPolygon@MetaHatchAction@@QBEABVPolyPolygon@@XZ -?GetPolyPolygon@MetaPolyPolygonAction@@QBEABVPolyPolygon@@XZ -?GetPolyPolygon@MetaTransparentAction@@QBEABVPolyPolygon@@XZ -?GetPolygon@MetaPolyLineAction@@QBEABVPolygon@@XZ -?GetPolygon@MetaPolygonAction@@QBEABVPolygon@@XZ -?GetPrefMapMode@GDIMetaFile@@QBEABVMapMode@@XZ -?GetPrefSize@GDIMetaFile@@QBEABVSize@@XZ -?GetRasterOp@MetaRasterOpAction@@QBE?AW4RasterOp@@XZ -?GetRect@MetaArcAction@@QBEABVRectangle@@XZ -?GetRect@MetaChordAction@@QBEABVRectangle@@XZ -?GetRect@MetaEllipseAction@@QBEABVRectangle@@XZ -?GetRect@MetaGradientAction@@QBEABVRectangle@@XZ -?GetRect@MetaISectRectClipRegionAction@@QBEABVRectangle@@XZ -?GetRect@MetaPieAction@@QBEABVRectangle@@XZ -?GetRect@MetaRectAction@@QBEABVRectangle@@XZ -?GetRect@MetaRoundRectAction@@QBEABVRectangle@@XZ -?GetRect@MetaWallpaperAction@@QBEABVRectangle@@XZ -?GetRefPoint@MetaRefPointAction@@QBEABVPoint@@XZ -?GetRegion@MetaClipRegionAction@@QBEABVRegion@@XZ -?GetScaleX@MapMode@@QBEABVFraction@@XZ -?GetScaleY@MapMode@@QBEABVFraction@@XZ -?GetSize@Font@@QBEABVSize@@XZ -?GetSize@MetaBmpExScaleAction@@QBEABVSize@@XZ -?GetSize@MetaBmpScaleAction@@QBEABVSize@@XZ -?GetSize@MetaFloatTransparentAction@@QBEABVSize@@XZ -?GetSrcPoint@MetaBmpExScalePartAction@@QBEABVPoint@@XZ -?GetSrcPoint@MetaBmpScalePartAction@@QBEABVPoint@@XZ -?GetSrcSize@MetaBmpExScalePartAction@@QBEABVSize@@XZ -?GetSrcSize@MetaBmpScalePartAction@@QBEABVSize@@XZ -?GetStartColor@Gradient@@QBEABVColor@@XZ -?GetStartIntensity@Gradient@@QBEGXZ -?GetStartPoint@MetaArcAction@@QBEABVPoint@@XZ -?GetStartPoint@MetaChordAction@@QBEABVPoint@@XZ -?GetStartPoint@MetaLineAction@@QBEABVPoint@@XZ -?GetStartPoint@MetaPieAction@@QBEABVPoint@@XZ -?GetStartPoint@MetaTextLineAction@@QBEABVPoint@@XZ -?GetStoreCharSet@@YAGGG@Z -?GetStreamCharSet@SvStream@@QBEGXZ -?GetStrikeout@Font@@QBE?AW4FontStrikeout@@XZ -?GetStrikeout@MetaTextLineAction@@QBE?AW4FontStrikeout@@XZ -?GetStyle@Gradient@@QBE?AW4GradientStyle@@XZ -?GetStyle@LineInfo@@QBE?AW4LineStyle@@XZ -?GetText@MetaStretchTextAction@@QBEABVString@@XZ -?GetText@MetaTextAction@@QBEABVString@@XZ -?GetText@MetaTextArrayAction@@QBEABVString@@XZ -?GetTextAlign@MetaTextAlignAction@@QBE?AW4TextAlign@@XZ -?GetTransparence@MetaTransparentAction@@QBEGXZ -?GetType@MetaAction@@QBEGXZ -?GetUnderline@Font@@QBE?AW4FontUnderline@@XZ -?GetUnderline@MetaTextLineAction@@QBE?AW4FontUnderline@@XZ -?GetValue@MetaCommentAction@@QBEJXZ -?GetVertMove@MetaMoveClipRegionAction@@QBEJXZ -?GetVertRound@MetaRoundRectAction@@QBEKXZ -?GetWallpaper@MetaWallpaperAction@@QBEABVWallpaper@@XZ -?GetWeight@Font@@QBE?AW4FontWeight@@XZ -?GetWidth@LineInfo@@QBEJXZ -?GetWidth@MetaStretchTextAction@@QBEKXZ -?GetWidth@MetaTextLineAction@@QBEJXZ -?IsClipping@MetaClipRegionAction@@QBEEXZ -?IsDefault@LineInfo@@QBEEXZ -?IsOutline@Font@@QBEEXZ -?IsSetting@MetaFillColorAction@@QBEEXZ -?IsSetting@MetaLineColorAction@@QBEEXZ -?IsSetting@MetaRefPointAction@@QBEEXZ -?IsSetting@MetaTextFillColorAction@@QBEEXZ -?IsSetting@MetaTextLineColorAction@@QBEEXZ -?IsShadow@Font@@QBEEXZ -?IsTransparent@Font@@QBEEXZ -?Len@ByteString@@QBEGXZ -?Pop@Stack@@QAEPAXXZ -?Push@Stack@@QAEXPAX@Z -?SetPrefMapMode@GDIMetaFile@@QAEXABVMapMode@@@Z -?SetPrefSize@GDIMetaFile@@QAEXABVSize@@@Z -??0ConvertData@@QAE@ABVGraphic@@AAVSvStream@@K@Z -??0GraphicConverter@@QAE@XZ -??1ConvertData@@QAE@XZ -??1GraphicConverter@@QAE@XZ -??_GConvertData@@QAEPAXI@Z -?Export@GraphicConverter@@SAKAAVSvStream@@ABVGraphic@@K@Z -?Import@GraphicConverter@@SAKAAVSvStream@@AAVGraphic@@K@Z -?ObjectOwnsMemory@SvMemoryStream@@QAEXE@Z -??0Font@@QAE@ABV0@@Z -??0Font@@QAE@ABVString@@0ABVSize@@@Z -??0Font@@QAE@ABVString@@ABVSize@@@Z -??0Font@@QAE@W4FontFamily@@ABVSize@@@Z -??0Font@@QAE@XZ -??1Font@@QAE@XZ -??4Font@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVFont@@@Z -??6@YAAAVSvStream@@AAV0@ABVFont@@@Z -??8Font@@QBEEABV0@@Z -?GetCJKContextLanguage@Font@@QBEGXZ -?GetEmphasisMark@Font@@QBEGXZ -?GetLanguage@Font@@QBEGXZ -?GetRelief@Font@@QBE?AW4FontRelief@@XZ -?GetStyleName@Font@@QBEABVString@@XZ -?GetVersion@VersionCompat@@QBEGXZ -?GetWidthType@Font@@QBE?AW4FontWidth@@XZ -?IsKerning@Font@@QBEEXZ -?IsVertical@Font@@QBEEXZ -?IsWordLineMode@Font@@QBEEXZ -?MakeUnique@Font@@AAEXXZ -?Merge@Font@@QAEXABV1@@Z -?SetAlign@Font@@QAEXW4TextAlign@@@Z -?SetCJKContextLanguage@Font@@QAEXG@Z -?SetCharSet@Font@@QAEXG@Z -?SetColor@Font@@QAEXABVColor@@@Z -?SetEmphasisMark@Font@@QAEXG@Z -?SetFamily@Font@@QAEXW4FontFamily@@@Z -?SetFillColor@Font@@QAEXABVColor@@@Z -?SetItalic@Font@@QAEXW4FontItalic@@@Z -?SetKerning@Font@@QAEXE@Z -?SetLanguage@Font@@QAEXG@Z -?SetName@Font@@QAEXABVString@@@Z -?SetOrientation@Font@@QAEXF@Z -?SetOutline@Font@@QAEXE@Z -?SetPitch@Font@@QAEXW4FontPitch@@@Z -?SetRelief@Font@@QAEXW4FontRelief@@@Z -?SetShadow@Font@@QAEXE@Z -?SetSize@Font@@QAEXABVSize@@@Z -?SetStrikeout@Font@@QAEXW4FontStrikeout@@@Z -?SetStyleName@Font@@QAEXABVString@@@Z -?SetTransparent@Font@@QAEXE@Z -?SetUnderline@Font@@QAEXW4FontUnderline@@@Z -?SetVertical@Font@@QAEXE@Z -?SetWeight@Font@@QAEXW4FontWeight@@@Z -?SetWidthType@Font@@QAEXW4FontWidth@@@Z -?SetWordLineMode@Font@@QAEXE@Z -??0Color@@QAE@EEEE@Z -??0GDIMetaFile@@QAE@ABV0@@Z -??0GDIMetaFile@@QAE@XZ -??0ImpLabel@@QAE@ABU0@@Z -??0ImpLabel@@QAE@ABVString@@K@Z -??0ImpLabelList@@QAE@ABV0@@Z -??0ImpLabelList@@QAE@XZ -??0List@@QAE@ABV0@@Z -??1GDIMetaFile@@QAE@XZ -??1ImpLabel@@QAE@XZ -??1ImpLabelList@@QAE@XZ -??1SVMConverter@@QAE@XZ -??4GDIMetaFile@@QAEAAV0@ABV0@@Z -??4List@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVGDIMetaFile@@@Z -??6@YAAAVSvStream@@AAV0@ABVGDIMetaFile@@@Z -??8GDIMetaFile@@QBEEABV0@@Z -??_7GDIMetaFile@@6B@ -??_GImpLabel@@QAEPAXI@Z -??_GImpLabelList@@QAEPAXI@Z -??_GSVMConverter@@QAEPAXI@Z -??_GVersionCompat@@QAEPAXI@Z -?AddAction@GDIMetaFile@@QAEXPAVMetaAction@@@Z -?AddAction@GDIMetaFile@@QAEXPAVMetaAction@@K@Z -?Adjust@GDIMetaFile@@QAEXFFFFFNE@Z -?Clear@GDIMetaFile@@QAEXXZ -?Convert@GDIMetaFile@@QAEXW4MtfConversion@@@Z -?CopyAction@GDIMetaFile@@QBEPAVMetaAction@@K@Z -?Delete@MetaAction@@QAEXXZ -?Duplicate@MetaAction@@QAEXXZ -?EnableOutput@OutputDevice@@QAEXE@Z -?GetActionPos@GDIMetaFile@@QAEKABVString@@@Z -?GetAngle@Hatch@@QBEGXZ -?GetBitmap@MetaMaskAction@@QBEABVBitmap@@XZ -?GetBitmap@MetaMaskScaleAction@@QBEABVBitmap@@XZ -?GetBitmap@MetaMaskScalePartAction@@QBEABVBitmap@@XZ -?GetChecksum@GDIMetaFile@@QBEKXZ -?GetColor@Color@@QBEKXZ -?GetColor@Hatch@@QBEABVColor@@XZ -?GetColor@MetaMaskAction@@QBEABVColor@@XZ -?GetColor@MetaMaskScaleAction@@QBEABVColor@@XZ -?GetColor@MetaMaskScalePartAction@@QBEABVColor@@XZ -?GetCurAction@GDIMetaFile@@QBEPAVMetaAction@@XZ -?GetDestPoint@MetaMaskScalePartAction@@QBEABVPoint@@XZ -?GetDestSize@MetaMaskScalePartAction@@QBEABVSize@@XZ -?GetLabel@GDIMetaFile@@QAE?AVString@@K@Z -?GetLabelCount@GDIMetaFile@@QBEKXZ -?GetLink@MetaEPSAction@@QBEABVGfxLink@@XZ -?GetLuminance@Color@@QBEEXZ -?GetMonochromeMtf@GDIMetaFile@@QBE?AV1@ABVColor@@@Z -?GetPoint@MetaEPSAction@@QBEABVPoint@@XZ -?GetPoint@MetaMaskAction@@QBEABVPoint@@XZ -?GetPoint@MetaMaskScaleAction@@QBEABVPoint@@XZ -?GetRasterOp@OutputDevice@@QBE?AW4RasterOp@@XZ -?GetRefCount@MetaAction@@QBEGXZ -?GetRegion@MetaISectRegionClipRegionAction@@QBEABVRegion@@XZ -?GetSize@MetaEPSAction@@QBEABVSize@@XZ -?GetSize@MetaMaskScaleAction@@QBEABVSize@@XZ -?GetSrcPoint@MetaMaskScalePartAction@@QBEABVPoint@@XZ -?GetSrcSize@MetaMaskScalePartAction@@QBEABVSize@@XZ -?GetSubstitute@MetaEPSAction@@QBEABVGDIMetaFile@@XZ -?GetTextAlign@OutputDevice@@QBE?AW4TextAlign@@XZ -?GetTextColor@OutputDevice@@QBEABVColor@@XZ -?GetTextLineColor@OutputDevice@@QBEABVColor@@XZ -?Hook@GDIMetaFile@@MAEJXZ -?InsertLabel@GDIMetaFile@@QAEEABVString@@K@Z -?IsBitmap@Wallpaper@@QBEEXZ -?IsClipRegion@OutputDevice@@QBEEXZ -?IsEof@SvStream@@QBEEXZ -?IsGradient@Wallpaper@@QBEEXZ -?IsRecord@GDIMetaFile@@QBEEXZ -?IsTextFillColor@OutputDevice@@QBEEXZ -?IsTextLineColor@OutputDevice@@QBEEXZ -?Linker@GDIMetaFile@@MAEXPAVOutputDevice@@E@Z -?Max@@YAJJJ@Z -?Mirror@GDIMetaFile@@QAEEK@Z -?Move@GDIMetaFile@@QAEXJJ@Z -?Pause@GDIMetaFile@@QAEXE@Z -?Play@GDIMetaFile@@QAEXAAV1@K@Z -?Play@GDIMetaFile@@QAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?Play@GDIMetaFile@@QAEXPAVOutputDevice@@K@Z -?Read@GDIMetaFile@@QAEAAVSvStream@@AAV2@@Z -?Record@GDIMetaFile@@QAEXPAVOutputDevice@@@Z -?RemoveLabel@GDIMetaFile@@QAEXABVString@@@Z -?RenameLabel@GDIMetaFile@@QAEXABVString@@0@Z -?Replace@Container@@QAEPAXPAX0@Z -?ReplaceColors@GDIMetaFile@@QAEXABVColor@@0K@Z -?ReplaceColors@GDIMetaFile@@QAEXPBVColor@@0KPAK@Z -?Rotate@GDIMetaFile@@QAEXJ@Z -?SaveStatus@GDIMetaFile@@QAEEXZ -?Scale@GDIMetaFile@@QAEXABVFraction@@0@Z -?Scale@GDIMetaFile@@QAEXNN@Z -?SetConnectMetaFile@OutputDevice@@QAEXPAVGDIMetaFile@@@Z -?ShortToSVBT16@@YAXGQAE@Z -?Stop@GDIMetaFile@@QAEXXZ -?Wind@GDIMetaFile@@QAEXK@Z -?WindEnd@GDIMetaFile@@QAEXXZ -?WindNext@GDIMetaFile@@QAEXXZ -?WindPrev@GDIMetaFile@@QAEXXZ -?WindStart@GDIMetaFile@@QAEXXZ -?Write@GDIMetaFile@@QAEAAVSvStream@@AAV2@@Z -_real@bff0000000000000 -??0?$Reference@VXCommandEnvironment@ucb@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0GfxLink@@QAE@ABV0@@Z -??0GfxLink@@QAE@PAEKW4GfxLinkType@@E@Z -??0GfxLink@@QAE@XZ -??0INetURLObject@@QAE@XZ -??0ImpBuffer@@QAE@K@Z -??0ImpBuffer@@QAE@PAE@Z -??0ImpSwap@@QAE@PAEK@Z -??1?$Reference@VXCommandEnvironment@ucb@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1GfxLink@@QAE@XZ -??1ImpBuffer@@QAE@XZ -??1ImpSwap@@QAE@XZ -??4GfxLink@@QAEAAV0@ABV0@@Z -??4INetURLObject@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVGfxLink@@@Z -??6@YAAAVSvStream@@AAV0@ABVGfxLink@@@Z -??_GImpBuffer@@QAEPAXI@Z -??_GImpSwap@@QAEPAXI@Z -??_R0?AVCommandAbortedException@ucb@star@sun@com@@@8 -??_R0?AVContentCreationException@ucb@star@sun@com@@@8 -?GetData@GfxLink@@QBEPBEXZ -?GetData@ImpSwap@@QBEPAEXZ -?GetDataSize@GfxLink@@QBEKXZ -?GetType@GfxLink@@QBE?AW4GfxLinkType@@XZ -?GetUserId@GfxLink@@QBEKXZ -?IsNative@GfxLink@@QBEEXZ -?IsSwapped@ImpSwap@@QBEEXZ -?IsSwappedOut@GfxLink@@QBEEXZ -?LoadNative@GfxLink@@QAEEAAVGraphic@@@Z -?SetUserId@GfxLink@@QAEXK@Z -?SwapIn@GfxLink@@QAEXXZ -?SwapOut@GfxLink@@QAEXXZ -?WriteTo@ImpSwap@@QBEXAAVSvStream@@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBE@Z -?makeAny@uno@star@sun@com@@YA?AVAny@1234@ABE@Z -??0Gradient@@QAE@ABV0@@Z -??0Gradient@@QAE@W4GradientStyle@@@Z -??0Gradient@@QAE@W4GradientStyle@@ABVColor@@1@Z -??0Gradient@@QAE@XZ -??1Gradient@@QAE@XZ -??4Gradient@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVGradient@@@Z -??6@YAAAVSvStream@@AAV0@ABVGradient@@@Z -??8Gradient@@QBEEABV0@@Z -?MakeUnique@Gradient@@AAEXXZ -?SetAngle@Gradient@@QAEXG@Z -?SetBorder@Gradient@@QAEXG@Z -?SetEndColor@Gradient@@QAEXABVColor@@@Z -?SetEndIntensity@Gradient@@QAEXG@Z -?SetOfsX@Gradient@@QAEXG@Z -?SetOfsY@Gradient@@QAEXG@Z -?SetStartColor@Gradient@@QAEXABVColor@@@Z -?SetStartIntensity@Gradient@@QAEXG@Z -?SetSteps@Gradient@@QAEXG@Z -?SetStyle@Gradient@@QAEXW4GradientStyle@@@Z -??0Hatch@@QAE@ABV0@@Z -??0Hatch@@QAE@W4HatchStyle@@ABVColor@@JG@Z -??0Hatch@@QAE@XZ -??1Hatch@@QAE@XZ -??4Hatch@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVHatch@@@Z -??6@YAAAVSvStream@@AAV0@ABVHatch@@@Z -??8Hatch@@QBEEABV0@@Z -?SetAngle@Hatch@@QAEXG@Z -?SetColor@Hatch@@QAEXABVColor@@@Z -?SetDistance@Hatch@@QAEXJ@Z -?SetStyle@Hatch@@QAEXW4HatchStyle@@@Z -??0Graphic@@QAE@ABV0@@Z -??0Graphic@@QAE@ABVAnimation@@@Z -??0Graphic@@QAE@ABVBitmap@@@Z -??0Graphic@@QAE@ABVBitmapEx@@@Z -??0Graphic@@QAE@ABVGDIMetaFile@@@Z -??0Graphic@@QAE@XZ -??0SvDataCopyStream@@QAE@XZ -??1Graphic@@UAE@XZ -??1SvDataCopyStream@@UAE@XZ -??4Graphic@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVGraphic@@@Z -??6@YAAAVSvStream@@AAV0@ABVGraphic@@@Z -??7Graphic@@QBEEXZ -??8Graphic@@QBEEABV0@@Z -??9Graphic@@QBEEABV0@@Z -??9ImpGraphic@@ABEEABV0@@Z -??_7Graphic@@6B@ -??_7SvDataCopyStream@@6B@ -??_GGraphic@@UAEPAXI@Z -??_GSvDataCopyStream@@UAEPAXI@Z -?Assign@Graphic@@UAEXABVSvDataCopyStream@@@Z -?Clear@Graphic@@QAEXXZ -?CreateType@Graphic@@SAPAXXZ -?Draw@Graphic@@QBEXPAVOutputDevice@@ABVPoint@@@Z -?Draw@Graphic@@QBEXPAVOutputDevice@@ABVPoint@@ABVSize@@@Z -?Draw@Graphic@@SAXPAVOutputDevice@@ABVString@@AAVFont@@ABVBitmap@@ABVPoint@@ABVSize@@@Z -?GetAnimation@Graphic@@QBE?AVAnimation@@XZ -?GetAnimationInfoList@Graphic@@QBEPAVList@@XZ -?GetAnimationLoopCount@Graphic@@QBEKXZ -?GetAnimationNotifyHdl@Graphic@@QBE?AVLink@@XZ -?GetBitmap@Graphic@@QBE?AVBitmap@@XZ -?GetBitmapEx@Graphic@@QBE?AVBitmapEx@@XZ -?GetChecksum@Graphic@@QBEKXZ -?GetContext@Graphic@@QAEPAVGraphicReader@@XZ -?GetDocFileName@Graphic@@QBEABVString@@XZ -?GetDocFilePos@Graphic@@QBEKXZ -?GetGDIMetaFile@Graphic@@QBEABVGDIMetaFile@@XZ -?GetGraphicsCompressMode@Graphic@@SAGAAVSvStream@@@Z -?GetLink@Graphic@@QAE?AVGfxLink@@XZ -?GetPrefMapMode@Graphic@@QBE?AVMapMode@@XZ -?GetPrefSize@Graphic@@QBE?AVSize@@XZ -?GetSizeBytes@Graphic@@QBEKXZ -?GetType@Graphic@@QBE?AW4GraphicType@@XZ -?IsA@Graphic@@UBEEP6APAXXZ@Z -?IsAlpha@Graphic@@QBEEXZ -?IsAnimated@Graphic@@QBEEXZ -?IsLink@Graphic@@QBEEXZ -?IsOf@Graphic@@SAEP6APAXXZ@Z -?IsOutputEnabled@OutputDevice@@QBEEXZ -?IsSupportedGraphic@Graphic@@QBEEXZ -?IsSwapOut@Graphic@@QBEEXZ -?IsTransparent@Graphic@@QBEEXZ -?Load@Graphic@@UAEXAAVSvStream@@@Z -?ReadEmbedded@Graphic@@QAEEAAVSvStream@@E@Z -?ResetAnimationLoopCount@Graphic@@QAEXXZ -?Save@Graphic@@UAEXAAVSvStream@@@Z -?SetAnimationNotifyHdl@Graphic@@QAEXABVLink@@@Z -?SetContext@Graphic@@QAEXPAVGraphicReader@@@Z -?SetDefaultType@Graphic@@QAEXXZ -?SetDocFileName@Graphic@@QAEXABVString@@K@Z -?SetLink@Graphic@@QAEXABVGfxLink@@@Z -?SetPrefMapMode@Graphic@@QAEXABVMapMode@@@Z -?SetPrefSize@Graphic@@QAEXABVSize@@@Z -?StartAnimation@Graphic@@QAEXPAVOutputDevice@@ABVPoint@@ABVSize@@J0@Z -?StartAnimation@Graphic@@QAEXPAVOutputDevice@@ABVPoint@@J0@Z -?StaticType@Graphic@@SAP6APAXXZXZ -?StopAnimation@Graphic@@QAEXPAVOutputDevice@@J@Z -?SwapIn@Graphic@@QAEEPAVSvStream@@@Z -?SwapIn@Graphic@@QAEEXZ -?SwapOut@Graphic@@QAEEPAVSvStream@@@Z -?SwapOut@Graphic@@QAEEXZ -?Type@Graphic@@UBEP6APAXXZXZ -?WriteEmbedded@Graphic@@QAEEAAVSvStream@@@Z -??0Image@@QAE@ABV0@@Z -??0Image@@QAE@ABVBitmap@@0@Z -??0Image@@QAE@ABVBitmap@@@Z -??0Image@@QAE@ABVBitmap@@ABVColor@@@Z -??0Image@@QAE@ABVBitmapEx@@@Z -??0Image@@QAE@ABVResId@@@Z -??0Image@@QAE@XZ -??0ImageList@@QAE@ABV0@@Z -??0ImageList@@QAE@ABVBitmap@@0GPAGG@Z -??0ImageList@@QAE@ABVBitmap@@ABVColor@@GPAGG@Z -??0ImageList@@QAE@ABVBitmap@@GPAGG@Z -??0ImageList@@QAE@ABVResId@@@Z -??0ImageList@@QAE@GG@Z -??0ResId@@QAE@PAURSHEADER_TYPE@@@Z -??1Image@@QAE@XZ -??1ImageList@@QAE@XZ -??4Image@@QAEAAV0@ABV0@@Z -??4ImageList@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVImageList@@@Z -??6@YAAAVSvStream@@AAV0@ABVImageList@@@Z -??8Image@@QBEEABV0@@Z -??8ImageList@@QBEEABV0@@Z -?AddImage@ImageList@@QAEXGABVImage@@@Z -?Clear@ImageList@@QAEXXZ -?CopyImage@ImageList@@QAEXGG@Z -?DrawImage@OutputDevice@@QAEXABVPoint@@ABVImage@@G@Z -?DrawImage@OutputDevice@@QAEXABVPoint@@ABVSize@@ABVImage@@G@Z -?GetBitmap@ImageList@@QBE?AVBitmap@@XZ -?GetClass@ResMgr@@QAEPAXXZ -?GetGlobOff@RSHEADER_TYPE@@QAEGXZ -?GetImage@ImageList@@QBE?AVImage@@G@Z -?GetImageCount@ImageList@@QBEGXZ -?GetImageId@ImageList@@QBEGG@Z -?GetImagePos@ImageList@@QBEGG@Z -?GetImageSize@ImageList@@QBE?AVSize@@XZ -?GetMaskBitmap@ImageList@@QBE?AVBitmap@@XZ -?GetMaskColor@ImageList@@QBE?AVColor@@XZ -?GetObjSize@ResMgr@@SAGPAURSHEADER_TYPE@@@Z -?GetSizePixel@Image@@QBE?AVSize@@XZ -?HasMaskBitmap@ImageList@@QBEEXZ -?HasMaskColor@ImageList@@QBEEXZ -?MergeImage@ImageList@@QAEXGG@Z -?RemoveImage@ImageList@@QAEXG@Z -?ReplaceImage@ImageList@@QAEXGABVImage@@@Z -?ReplaceImage@ImageList@@QAEXGG@Z -??0ImpBitmap@@QAE@XZ -??1ImpBitmap@@QAE@XZ -??0ImpGraphic@@AAE@ABV0@@Z -??0ImpGraphic@@AAE@ABVAnimation@@@Z -??0ImpGraphic@@AAE@ABVBitmap@@@Z -??0ImpGraphic@@AAE@ABVBitmapEx@@@Z -??0ImpGraphic@@AAE@ABVGDIMetaFile@@@Z -??0ImpGraphic@@AAE@XZ -??0ImpSwapFile@@QAE@XZ -??0ImpSwapInfo@@QAE@XZ -??1GraphicReader@@UAE@XZ -??1ImpGraphic@@EAE@XZ -??1ImpSwapFile@@QAE@XZ -??1ImpSwapInfo@@QAE@XZ -??4ImpGraphic@@AAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVImpGraphic@@@Z -??6@YAAAVSvStream@@AAV0@ABVImpGraphic@@@Z -??7BitmapEx@@QBEEXZ -??8ImpGraphic@@ABEEABV0@@Z -??_7GraphicReader@@6B@ -??_7ImpGraphic@@6B@ -??_GAnimation@@QAEPAXI@Z -??_GGfxLink@@QAEPAXI@Z -??_GGraphicReader@@UAEPAXI@Z -??_GImpGraphic@@EAEPAXI@Z -??_GImpSwapFile@@QAEPAXI@Z -?GetAInfoList@Animation@@QAEPAVList@@XZ -?GetLoopCount@Animation@@QBEKXZ -?GetNotifyHdl@Animation@@QBEABVLink@@XZ -?GetPrefMapMode@Bitmap@@QBEABVMapMode@@XZ -?GetPrefMapMode@BitmapEx@@QBEABVMapMode@@XZ -?GetPrefSize@Bitmap@@QBEABVSize@@XZ -?GetPrefSize@BitmapEx@@QBEABVSize@@XZ -?SetCompressMode@SvStream@@QAEXG@Z -?SetNotifyHdl@Animation@@QAEXABVLink@@@Z -?SetPrefMapMode@BitmapEx@@QAEXABVMapMode@@@Z -?SetPrefSize@BitmapEx@@QAEXABVSize@@@Z -?SetVersion@SvStream@@QAEXJ@Z -_real@40a0000000000000 -?GetDeactiveColor@StyleSettings@@QBEABVColor@@XZ -?GetHighlightColor@StyleSettings@@QBEABVColor@@XZ -?GetLightColor@StyleSettings@@QBEABVColor@@XZ -?GetShadowColor@StyleSettings@@QBEABVColor@@XZ -?IsDeviceOutputNecessary@OutputDevice@@QBEEXZ -??0Queue@@QAE@GG@Z -??0QueuePage@@QAE@XZ -??1Queue@@QAE@XZ -??1QueuePage@@QAE@XZ -??_GGDIMetaFile@@QAEPAXI@Z -??_GJobSetup@@QAEPAXI@Z -??_GQueue@@QAEPAXI@Z -??_GQueuePage@@QAEPAXI@Z -?FirstAction@GDIMetaFile@@QAEPAVMetaAction@@XZ -?Get@Queue@@QAEPAXXZ -?GetDrawMode@OutputDevice@@QBEKXZ -?GetJobSetup@Printer@@QBEABVJobSetup@@XZ -?GetName@Printer@@QBEABVString@@XZ -?GetPageQueueSize@Printer@@QBEGXZ -?GetPrinterOptions@Printer@@QBEABVPrinterOptions@@XZ -?GetReducedBitmapMode@PrinterOptions@@QBE?AW4PrinterBitmapMode@@XZ -?GetReducedBitmapResolution@PrinterOptions@@QBEGXZ -?GetReducedTransparencyMode@PrinterOptions@@QBE?AW4PrinterTransparencyMode@@XZ -?IsConvertToGreyscales@PrinterOptions@@QBEEXZ -?IsJobActive@Printer@@QBEEXZ -?IsPrinting@Printer@@QBEEXZ -?IsReduceBitmaps@PrinterOptions@@QBEEXZ -?IsReduceTransparency@PrinterOptions@@QBEEXZ -?NextAction@GDIMetaFile@@QAEPAVMetaAction@@XZ -?Put@Queue@@QAEXPAX@Z -?SetPageQueueSize@Printer@@QAEXG@Z -?SetSelfAsQueuePrinter@Printer@@IAEXE@Z -_real@4046800000000000 -?GetDashCount@LineInfo@@QBEGXZ -?GetDashLen@LineInfo@@QBEJXZ -?GetDistance@LineInfo@@QBEJXZ -?GetDotCount@LineInfo@@QBEGXZ -?GetDotLen@LineInfo@@QBEJXZ -??0?$_Ht_It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_C_Tr@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@ABU?$_Ht_It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@1@@Z -??0?$_Ht_It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_C_Tr@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@PBU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@PBV?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@1@@Z -??0?$_Ht_It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_C_Tr@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@XZ -??0?$_Ht_It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@PBU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@PBV?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@1@@Z -??0?$_Node_Alloc_Lock@$00$0A@@_STL@@QAE@XZ -??0?$_STL_alloc_proxy@IU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@I@Z -??0?$_STL_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@PAPAX@Z -??0?$_Vector_base@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@@Z -??0?$_Vector_base@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAE@IABV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@@Z -??0?$_hT__It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@PAU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@PAV?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@1@@Z -??0?$_hT__It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@XZ -??0?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@QAE@XZ -??0?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@QAE@XZ -??0?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@IABUOUStringHash@rtl@@ABU?$equal_to@VOUString@rtl@@@1@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@@Z -??0?$pair@$$CBVOUString@rtl@@V12@@_STL@@QAE@ABU01@@Z -??0?$pair@$$CBVOUString@rtl@@V12@@_STL@@QAE@ABVOUString@rtl@@0@Z -??0?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@@Z -??0?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAE@IABQAXABV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@@Z -??0JobSetup@@QAE@ABV0@@Z -??0JobSetup@@QAE@XZ -??1?$_Node_Alloc_Lock@$00$0A@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@IU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$_Vector_base@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@QAE@XZ -??1?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@QAE@XZ -??1?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@XZ -??1?$pair@$$CBVOUString@rtl@@V12@@_STL@@QAE@XZ -??1?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAE@XZ -??1JobSetup@@QAE@XZ -??2@YAPAXIPAX@Z -??4?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@QAEAAV01@ABV01@@Z -??4?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEAAV01@ABV01@@Z -??4JobSetup@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVJobSetup@@@Z -??6@YAAAVSvStream@@AAV0@ABVJobSetup@@@Z -??8JobSetup@@QBEEABV0@@Z -??8_STL@@YA_NABU?$pair@$$CBVOUString@rtl@@V12@@0@0@Z -??8_STL@@YA_NABV?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@0@0@Z -??9_STL@@YA_NABU?$_hT__It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@0@0@Z -??A?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@QAEAAVOUString@rtl@@ABV23@@Z -??A?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAEAAPAXI@Z -??A?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QBEABQAXI@Z -??C?$_Ht_It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_C_Tr@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QBEPBU?$pair@$$CBVOUString@rtl@@V12@@1@XZ -??D?$_Ht_It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_C_Tr@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QBEABU?$pair@$$CBVOUString@rtl@@V12@@1@XZ -??E?$_Ht_It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_C_Tr@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEAAU01@XZ -??R?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@QBEABVOUString@rtl@@ABU?$pair@$$CBVOUString@rtl@@V12@@1@@Z -??R?$equal_to@VOUString@rtl@@@_STL@@QBE_NABVOUString@rtl@@0@Z -??ROUStringHash@rtl@@QBEIABVOUString@1@@Z -??_G?$pair@$$CBVOUString@rtl@@V12@@_STL@@QAEPAXI@Z -?GetDriverName@JobSetup@@QBE?AVString@@XZ -?GetPrinterName@JobSetup@@QBE?AVString@@XZ -?GetValue@JobSetup@@QBE?AVString@@ABV2@@Z -?SVBT16ToShort@@YAGQBE@Z -?SVBT32ToLong@@YAKQBE@Z -?SetValue@JobSetup@@QAEXABVString@@0@Z -?_Atomic_swap@_STL@@YAKPAKK@Z -?_Construct@_STL@@YAXPAPAXABQAX@Z -?_Construct@_STL@@YAXPAU?$pair@$$CBVOUString@rtl@@V12@@1@ABU21@@Z -?_Destroy@_STL@@YAXPAPAX0@Z -?_Destroy@_STL@@YAXPAU?$pair@$$CBVOUString@rtl@@V12@@1@@Z -?_M_acquire_lock@_STL_mutex_base@_STL@@QAEXXZ -?_M_allocate_and_copy@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@IAEPAPAXIPAPAX0@Z -?_M_bkt_num@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@ABEIABU?$pair@$$CBVOUString@rtl@@V12@@2@@Z -?_M_bkt_num@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@ABEIABU?$pair@$$CBVOUString@rtl@@V12@@2@I@Z -?_M_bkt_num_key@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@ABEIABVOUString@rtl@@@Z -?_M_bkt_num_key@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@ABEIABVOUString@rtl@@I@Z -?_M_copy_from@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@AAEXABV12@@Z -?_M_delete_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@AAEXPAU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@Z -?_M_do_lock@?$_STL_mutex_spin@$0A@@_STL@@SAXPCK@Z -?_M_equal@?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@SA_NABV12@0@Z -?_M_equal@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@SA_NABV12@0@Z -?_M_fill_insert@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAEXPAPAXIABQAX@Z -?_M_get_bucket@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@ABEPBU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@I@Z -?_M_initialize_buckets@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@AAEXI@Z -?_M_insert_overflow@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@IAEXPAPAXABQAXI@Z -?_M_list@?$_Stl_prime@_N@_STL@@2QBKB -?_M_new_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@AAEPAU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@ABU?$pair@$$CBVOUString@rtl@@V12@@2@@Z -?_M_next_size@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@ABEII@Z -?_M_release_lock@_STL_mutex_base@_STL@@QAEXXZ -?_M_skip_to_next@?$_hT__It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEPAU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@XZ -?_S_chunk_alloc@?$D__A@$00$0A@@_STL@@CAPADIAAH@Z -?_S_end_free@?$D__A@$00$0A@@_STL@@0PADA -?_S_free_list@?$D__A@$00$0A@@_STL@@0RCRAV_Node_alloc_obj@2@C -?_S_heap_size@?$D__A@$00$0A@@_STL@@0IA -?_S_lock@?$_Node_Alloc_Lock@$00$0A@@_STL@@2U_STL_mutex_base@2@A -?_S_nsec_sleep@?$_STL_mutex_spin@$0A@@_STL@@SAXH@Z -?_S_refill@?$D__A@$00$0A@@_STL@@CAPAXI@Z -?_S_round_up@?$D__A@$00$0A@@_STL@@SAII@Z -?_S_start_free@?$D__A@$00$0A@@_STL@@0PADA -?__advance@_STL@@YAXAAPBIHU_Ra__ItT@1@@Z -?__copy@_STL@@YAPAPAXPAPAX00U_Ra__ItT@1@PAH@Z -?__copy_backward@_STL@@YAPAPAXPAPAX00U_Ra__ItT@1@PAH@Z -?__destroy@_STL@@YAXPAPAX00@Z -?__destroy_aux@_STL@@YAXPAPAX0U__true_type@@@Z -?__distance@_STL@@YAXPBI0AAHU_Ra__ItT@1@@Z -?__last@?$_STL_mutex_spin@$0A@@_STL@@2IA -?__lower_bound@_STL@@YAPBIPBI0ABIPAH@Z -?__max@?$_STL_mutex_spin@$0A@@_STL@@2IA -?__stl_alloc_rebind@_STL@@YAAAV?$allocator@PAX@1@AAV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@PBQAX@Z -?__stl_alloc_rebind@_STL@@YAAAV?$allocator@U?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@1@AAV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@PBU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@@Z -?__stl_delete@_STL@@YAXPAX@Z -?__stl_new@_STL@@YAPAXI@Z -?__uninitialized_copy@_STL@@YAPAPAXPAPAX000@Z -?__uninitialized_copy_aux@_STL@@YAPAPAXPAPAX00U__true_type@@@Z -?__uninitialized_fill_n@_STL@@YAPAPAXPAPAXIABQAX0@Z -?__uninitialized_fill_n_aux@_STL@@YAPAPAXPAPAXIABQAXU__true_type@@@Z -?advance@_STL@@YAXAAPBIH@Z -?allocate@?$D__A@$00$0A@@_STL@@SAPAXI@Z -?allocate@?$_STL_alloc_proxy@IU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEPAU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@I@Z -?allocate@?$_STL_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAEPAPAXI@Z -?allocate@?$allocator@PAX@_STL@@QBEPAPAXIPBX@Z -?allocate@?$allocator@U?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QBEPAU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@IPBX@Z -?begin@?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@QBE?AU?$_Ht_It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_C_Tr@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@2@XZ -?begin@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QBE?AU?$_Ht_It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_C_Tr@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@2@XZ -?begin@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAEPAPAXXZ -?begin@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QBEPBQAXXZ -?bucket_count@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QBEIXZ -?capacity@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QBEIXZ -?clear@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEXXZ -?clear@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAEXXZ -?copy@_STL@@YAPAPAXPAPAX00@Z -?copy_backward@_STL@@YAPAPAXPAPAX00@Z -?deallocate@?$D__A@$00$0A@@_STL@@SAXPAXI@Z -?deallocate@?$_STL_alloc_proxy@IU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEXPAU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@I@Z -?deallocate@?$_STL_alloc_proxy@PAPAXPAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAEXPAPAXI@Z -?deallocate@?$allocator@PAX@_STL@@QBEXPAPAXI@Z -?deallocate@?$allocator@U?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QBEXPAU?$_hT__N@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@I@Z -?distance@_STL@@YAXPBI0AAH@Z -?distance_type@_STL@@YAPAHPBI@Z -?distance_type@_STL@@YAPAHPBQAX@Z -?end@?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@QAE?AU?$_Ht_It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@2@XZ -?end@?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@QBE?AU?$_Ht_It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_C_Tr@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@2@XZ -?end@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE?AU?$_Ht_It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@2@XZ -?end@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QBE?AU?$_Ht_It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_C_Tr@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@2@XZ -?end@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAEPAPAXXZ -?erase@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAEPAPAXPAPAX0@Z -?fill@_STL@@YAXPAPAX0ABQAX@Z -?fill_n@_STL@@YAPAPAXPAPAXIABQAX@Z -?find@?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@QAE?AU?$_Ht_It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@2@ABVOUString@rtl@@@Z -?find@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE?AU?$_Ht_It@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_N_Tr@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@2@ABVOUString@rtl@@@Z -?find_or_insert@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEAAU?$pair@$$CBVOUString@rtl@@V12@@2@ABU32@@Z -?get_allocator@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QBE?AV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@XZ -?hashCode@OUString@rtl@@QBEJXZ -?insert@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAEXPAPAXIABQAX@Z -?iterator_category@_STL@@YA?AU_Ra__ItT@1@PBI@Z -?iterator_category@_STL@@YA?AU_Ra__ItT@1@PBQAX@Z -?lower_bound@_STL@@YAPBIPBI0ABI@Z -?max@_STL@@YAABIABI0@Z -?reserve@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAEXI@Z -?resize@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_S1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEXI@Z -?size@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QBEIXZ -?swap@?$vector@PAXV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAEXAAV12@@Z -?swap@_STL@@YAXAAPAPAX0@Z -?uninitialized_copy@_STL@@YAPAPAXPAPAX00@Z -?uninitialized_fill_n@_STL@@YAPAPAXPAPAXIABQAX@Z -?value_type@_STL@@YAPAPAXPBQAX@Z -?Enum@Line@@QAEXABVLink@@@Z -?GetDistance@Line@@QBENABN0@Z -?Intersection@Line@@QBEEABV1@AAN1@Z -?Intersection@Line@@QBEEABV1@AAVPoint@@@Z -?NearestPoint@Line@@QBE?AVPoint@@ABV2@@Z -??0LineInfo@@QAE@ABV0@@Z -??0LineInfo@@QAE@W4LineStyle@@J@Z -??1LineInfo@@QAE@XZ -??4LineInfo@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVLineInfo@@@Z -??6@YAAAVSvStream@@AAV0@ABVLineInfo@@@Z -??8LineInfo@@QBEEABV0@@Z -?SetDashCount@LineInfo@@QAEXG@Z -?SetDashLen@LineInfo@@QAEXJ@Z -?SetDistance@LineInfo@@QAEXJ@Z -?SetDotCount@LineInfo@@QAEXG@Z -?SetDotLen@LineInfo@@QAEXJ@Z -?SetStyle@LineInfo@@QAEXW4LineStyle@@@Z -?SetWidth@LineInfo@@QAEXJ@Z -??0Fraction@@QAE@ABV0@@Z -??0MapMode@@QAE@ABV0@@Z -??0MapMode@@QAE@W4MapUnit@@@Z -??0MapMode@@QAE@W4MapUnit@@ABVPoint@@ABVFraction@@2@Z -??0MapMode@@QAE@XZ -??1MapMode@@QAE@XZ -??4Fraction@@QAEAAV0@ABV0@@Z -??4MapMode@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVMapMode@@@Z -??6@YAAAVSvStream@@AAV0@ABVMapMode@@@Z -??8MapMode@@QBEEABV0@@Z -?IsDefault@MapMode@@QBEEXZ -?SetMapUnit@MapMode@@QAEXW4MapUnit@@@Z -?SetOrigin@MapMode@@QAEXABVPoint@@@Z -?SetScaleX@MapMode@@QAEXABVFraction@@@Z -?SetScaleY@MapMode@@QAEXABVFraction@@@Z -??0MetaAction@@QAE@ABV0@@Z -??0MetaAction@@QAE@G@Z -??0MetaAction@@QAE@XZ -??0MetaArcAction@@QAE@ABV0@@Z -??0MetaArcAction@@QAE@ABVRectangle@@ABVPoint@@1@Z -??0MetaArcAction@@QAE@XZ -??0MetaBmpAction@@QAE@ABV0@@Z -??0MetaBmpAction@@QAE@ABVPoint@@ABVBitmap@@@Z -??0MetaBmpAction@@QAE@XZ -??0MetaBmpExAction@@QAE@ABV0@@Z -??0MetaBmpExAction@@QAE@ABVPoint@@ABVBitmapEx@@@Z -??0MetaBmpExAction@@QAE@XZ -??0MetaBmpExScaleAction@@QAE@ABV0@@Z -??0MetaBmpExScaleAction@@QAE@ABVPoint@@ABVSize@@ABVBitmapEx@@@Z -??0MetaBmpExScaleAction@@QAE@XZ -??0MetaBmpExScalePartAction@@QAE@ABV0@@Z -??0MetaBmpExScalePartAction@@QAE@ABVPoint@@ABVSize@@01ABVBitmapEx@@@Z -??0MetaBmpExScalePartAction@@QAE@XZ -??0MetaBmpScaleAction@@QAE@ABV0@@Z -??0MetaBmpScaleAction@@QAE@ABVPoint@@ABVSize@@ABVBitmap@@@Z -??0MetaBmpScaleAction@@QAE@XZ -??0MetaBmpScalePartAction@@QAE@ABV0@@Z -??0MetaBmpScalePartAction@@QAE@ABVPoint@@ABVSize@@01ABVBitmap@@@Z -??0MetaBmpScalePartAction@@QAE@XZ -??0MetaChordAction@@QAE@ABV0@@Z -??0MetaChordAction@@QAE@ABVRectangle@@ABVPoint@@1@Z -??0MetaChordAction@@QAE@XZ -??0MetaClipRegionAction@@QAE@ABV0@@Z -??0MetaClipRegionAction@@QAE@ABVRegion@@E@Z -??0MetaClipRegionAction@@QAE@XZ -??0MetaCommentAction@@QAE@ABV0@@Z -??0MetaCommentAction@@QAE@ABVByteString@@JPBEK@Z -??0MetaCommentAction@@QAE@J@Z -??0MetaCommentAction@@QAE@PBEK@Z -??0MetaEPSAction@@QAE@ABV0@@Z -??0MetaEPSAction@@QAE@ABVPoint@@ABVSize@@ABVGfxLink@@ABVGDIMetaFile@@@Z -??0MetaEPSAction@@QAE@XZ -??0MetaEllipseAction@@QAE@ABV0@@Z -??0MetaEllipseAction@@QAE@ABVRectangle@@@Z -??0MetaEllipseAction@@QAE@XZ -??0MetaFillColorAction@@QAE@ABV0@@Z -??0MetaFillColorAction@@QAE@ABVColor@@E@Z -??0MetaFillColorAction@@QAE@XZ -??0MetaFloatTransparentAction@@QAE@ABV0@@Z -??0MetaFloatTransparentAction@@QAE@ABVGDIMetaFile@@ABVPoint@@ABVSize@@ABVGradient@@@Z -??0MetaFloatTransparentAction@@QAE@XZ -??0MetaFontAction@@QAE@ABV0@@Z -??0MetaFontAction@@QAE@ABVFont@@@Z -??0MetaFontAction@@QAE@XZ -??0MetaGradientAction@@QAE@ABV0@@Z -??0MetaGradientAction@@QAE@ABVRectangle@@ABVGradient@@@Z -??0MetaGradientAction@@QAE@XZ -??0MetaGradientExAction@@QAE@ABV0@@Z -??0MetaGradientExAction@@QAE@ABVPolyPolygon@@ABVGradient@@@Z -??0MetaGradientExAction@@QAE@XZ -??0MetaHatchAction@@QAE@ABV0@@Z -??0MetaHatchAction@@QAE@ABVPolyPolygon@@ABVHatch@@@Z -??0MetaHatchAction@@QAE@XZ -??0MetaISectRectClipRegionAction@@QAE@ABV0@@Z -??0MetaISectRectClipRegionAction@@QAE@ABVRectangle@@@Z -??0MetaISectRectClipRegionAction@@QAE@XZ -??0MetaISectRegionClipRegionAction@@QAE@ABV0@@Z -??0MetaISectRegionClipRegionAction@@QAE@ABVRegion@@@Z -??0MetaISectRegionClipRegionAction@@QAE@XZ -??0MetaLineAction@@QAE@ABV0@@Z -??0MetaLineAction@@QAE@ABVPoint@@0@Z -??0MetaLineAction@@QAE@ABVPoint@@0ABVLineInfo@@@Z -??0MetaLineAction@@QAE@XZ -??0MetaLineColorAction@@QAE@ABV0@@Z -??0MetaLineColorAction@@QAE@ABVColor@@E@Z -??0MetaLineColorAction@@QAE@XZ -??0MetaMapModeAction@@QAE@ABV0@@Z -??0MetaMapModeAction@@QAE@ABVMapMode@@@Z -??0MetaMapModeAction@@QAE@XZ -??0MetaMaskAction@@QAE@ABV0@@Z -??0MetaMaskAction@@QAE@ABVPoint@@ABVBitmap@@ABVColor@@@Z -??0MetaMaskAction@@QAE@XZ -??0MetaMaskScaleAction@@QAE@ABV0@@Z -??0MetaMaskScaleAction@@QAE@ABVPoint@@ABVSize@@ABVBitmap@@ABVColor@@@Z -??0MetaMaskScaleAction@@QAE@XZ -??0MetaMaskScalePartAction@@QAE@ABV0@@Z -??0MetaMaskScalePartAction@@QAE@ABVPoint@@ABVSize@@01ABVBitmap@@ABVColor@@@Z -??0MetaMaskScalePartAction@@QAE@XZ -??0MetaMoveClipRegionAction@@QAE@ABV0@@Z -??0MetaMoveClipRegionAction@@QAE@JJ@Z -??0MetaMoveClipRegionAction@@QAE@XZ -??0MetaPieAction@@QAE@ABV0@@Z -??0MetaPieAction@@QAE@ABVRectangle@@ABVPoint@@1@Z -??0MetaPieAction@@QAE@XZ -??0MetaPixelAction@@QAE@ABV0@@Z -??0MetaPixelAction@@QAE@ABVPoint@@ABVColor@@@Z -??0MetaPixelAction@@QAE@XZ -??0MetaPointAction@@QAE@ABV0@@Z -??0MetaPointAction@@QAE@ABVPoint@@@Z -??0MetaPointAction@@QAE@XZ -??0MetaPolyLineAction@@QAE@ABV0@@Z -??0MetaPolyLineAction@@QAE@ABVPolygon@@@Z -??0MetaPolyLineAction@@QAE@ABVPolygon@@ABVLineInfo@@@Z -??0MetaPolyLineAction@@QAE@XZ -??0MetaPolyPolygonAction@@QAE@ABV0@@Z -??0MetaPolyPolygonAction@@QAE@ABVPolyPolygon@@@Z -??0MetaPolyPolygonAction@@QAE@XZ -??0MetaPolygonAction@@QAE@ABV0@@Z -??0MetaPolygonAction@@QAE@ABVPolygon@@@Z -??0MetaPolygonAction@@QAE@XZ -??0MetaPopAction@@QAE@ABV0@@Z -??0MetaPopAction@@QAE@XZ -??0MetaPushAction@@QAE@ABV0@@Z -??0MetaPushAction@@QAE@G@Z -??0MetaPushAction@@QAE@XZ -??0MetaRasterOpAction@@QAE@ABV0@@Z -??0MetaRasterOpAction@@QAE@W4RasterOp@@@Z -??0MetaRasterOpAction@@QAE@XZ -??0MetaRectAction@@QAE@ABV0@@Z -??0MetaRectAction@@QAE@ABVRectangle@@@Z -??0MetaRectAction@@QAE@XZ -??0MetaRefPointAction@@QAE@ABV0@@Z -??0MetaRefPointAction@@QAE@ABVPoint@@E@Z -??0MetaRefPointAction@@QAE@XZ -??0MetaRoundRectAction@@QAE@ABV0@@Z -??0MetaRoundRectAction@@QAE@ABVRectangle@@JJ@Z -??0MetaRoundRectAction@@QAE@XZ -??0MetaStretchTextAction@@QAE@ABV0@@Z -??0MetaStretchTextAction@@QAE@ABVPoint@@KABVString@@GG@Z -??0MetaStretchTextAction@@QAE@XZ -??0MetaTextAction@@QAE@ABV0@@Z -??0MetaTextAction@@QAE@ABVPoint@@ABVString@@GG@Z -??0MetaTextAction@@QAE@XZ -??0MetaTextAlignAction@@QAE@ABV0@@Z -??0MetaTextAlignAction@@QAE@W4TextAlign@@@Z -??0MetaTextAlignAction@@QAE@XZ -??0MetaTextArrayAction@@QAE@ABV0@@Z -??0MetaTextArrayAction@@QAE@ABVPoint@@ABVString@@PBJGG@Z -??0MetaTextArrayAction@@QAE@XZ -??0MetaTextColorAction@@QAE@ABV0@@Z -??0MetaTextColorAction@@QAE@ABVColor@@@Z -??0MetaTextColorAction@@QAE@XZ -??0MetaTextFillColorAction@@QAE@ABV0@@Z -??0MetaTextFillColorAction@@QAE@ABVColor@@E@Z -??0MetaTextFillColorAction@@QAE@XZ -??0MetaTextLineAction@@QAE@ABV0@@Z -??0MetaTextLineAction@@QAE@ABVPoint@@JW4FontStrikeout@@W4FontUnderline@@@Z -??0MetaTextLineAction@@QAE@XZ -??0MetaTextLineColorAction@@QAE@ABV0@@Z -??0MetaTextLineColorAction@@QAE@ABVColor@@E@Z -??0MetaTextLineColorAction@@QAE@XZ -??0MetaTextRectAction@@QAE@ABV0@@Z -??0MetaTextRectAction@@QAE@ABVRectangle@@ABVString@@G@Z -??0MetaTextRectAction@@QAE@XZ -??0MetaTransparentAction@@QAE@ABV0@@Z -??0MetaTransparentAction@@QAE@ABVPolyPolygon@@G@Z -??0MetaTransparentAction@@QAE@XZ -??0MetaWallpaperAction@@QAE@ABV0@@Z -??0MetaWallpaperAction@@QAE@ABVRectangle@@ABVWallpaper@@@Z -??0MetaWallpaperAction@@QAE@XZ -??1MetaAction@@UAE@XZ -??1MetaArcAction@@UAE@XZ -??1MetaBmpAction@@UAE@XZ -??1MetaBmpExAction@@UAE@XZ -??1MetaBmpExScaleAction@@UAE@XZ -??1MetaBmpExScalePartAction@@UAE@XZ -??1MetaBmpScaleAction@@UAE@XZ -??1MetaBmpScalePartAction@@UAE@XZ -??1MetaChordAction@@UAE@XZ -??1MetaClipRegionAction@@UAE@XZ -??1MetaCommentAction@@UAE@XZ -??1MetaEPSAction@@UAE@XZ -??1MetaEllipseAction@@UAE@XZ -??1MetaFillColorAction@@UAE@XZ -??1MetaFloatTransparentAction@@UAE@XZ -??1MetaFontAction@@UAE@XZ -??1MetaGradientAction@@UAE@XZ -??1MetaGradientExAction@@UAE@XZ -??1MetaHatchAction@@UAE@XZ -??1MetaISectRectClipRegionAction@@UAE@XZ -??1MetaISectRegionClipRegionAction@@UAE@XZ -??1MetaLineAction@@UAE@XZ -??1MetaLineColorAction@@UAE@XZ -??1MetaMapModeAction@@UAE@XZ -??1MetaMaskAction@@UAE@XZ -??1MetaMaskScaleAction@@UAE@XZ -??1MetaMaskScalePartAction@@UAE@XZ -??1MetaMoveClipRegionAction@@UAE@XZ -??1MetaPieAction@@UAE@XZ -??1MetaPixelAction@@UAE@XZ -??1MetaPointAction@@UAE@XZ -??1MetaPolyLineAction@@UAE@XZ -??1MetaPolyPolygonAction@@UAE@XZ -??1MetaPolygonAction@@UAE@XZ -??1MetaPopAction@@UAE@XZ -??1MetaPushAction@@UAE@XZ -??1MetaRasterOpAction@@UAE@XZ -??1MetaRectAction@@UAE@XZ -??1MetaRefPointAction@@UAE@XZ -??1MetaRoundRectAction@@UAE@XZ -??1MetaStretchTextAction@@UAE@XZ -??1MetaTextAction@@UAE@XZ -??1MetaTextAlignAction@@UAE@XZ -??1MetaTextArrayAction@@UAE@XZ -??1MetaTextColorAction@@UAE@XZ -??1MetaTextFillColorAction@@UAE@XZ -??1MetaTextLineAction@@UAE@XZ -??1MetaTextLineColorAction@@UAE@XZ -??1MetaTextRectAction@@UAE@XZ -??1MetaTransparentAction@@UAE@XZ -??1MetaWallpaperAction@@UAE@XZ -??_7MetaAction@@6B@ -??_7MetaArcAction@@6B@ -??_7MetaBmpAction@@6B@ -??_7MetaBmpExAction@@6B@ -??_7MetaBmpExScaleAction@@6B@ -??_7MetaBmpExScalePartAction@@6B@ -??_7MetaBmpScaleAction@@6B@ -??_7MetaBmpScalePartAction@@6B@ -??_7MetaChordAction@@6B@ -??_7MetaClipRegionAction@@6B@ -??_7MetaCommentAction@@6B@ -??_7MetaEPSAction@@6B@ -??_7MetaEllipseAction@@6B@ -??_7MetaFillColorAction@@6B@ -??_7MetaFloatTransparentAction@@6B@ -??_7MetaFontAction@@6B@ -??_7MetaGradientAction@@6B@ -??_7MetaGradientExAction@@6B@ -??_7MetaHatchAction@@6B@ -??_7MetaISectRectClipRegionAction@@6B@ -??_7MetaISectRegionClipRegionAction@@6B@ -??_7MetaLineAction@@6B@ -??_7MetaLineColorAction@@6B@ -??_7MetaMapModeAction@@6B@ -??_7MetaMaskAction@@6B@ -??_7MetaMaskScaleAction@@6B@ -??_7MetaMaskScalePartAction@@6B@ -??_7MetaMoveClipRegionAction@@6B@ -??_7MetaPieAction@@6B@ -??_7MetaPixelAction@@6B@ -??_7MetaPointAction@@6B@ -??_7MetaPolyLineAction@@6B@ -??_7MetaPolyPolygonAction@@6B@ -??_7MetaPolygonAction@@6B@ -??_7MetaPopAction@@6B@ -??_7MetaPushAction@@6B@ -??_7MetaRasterOpAction@@6B@ -??_7MetaRectAction@@6B@ -??_7MetaRefPointAction@@6B@ -??_7MetaRoundRectAction@@6B@ -??_7MetaStretchTextAction@@6B@ -??_7MetaTextAction@@6B@ -??_7MetaTextAlignAction@@6B@ -??_7MetaTextArrayAction@@6B@ -??_7MetaTextColorAction@@6B@ -??_7MetaTextFillColorAction@@6B@ -??_7MetaTextLineAction@@6B@ -??_7MetaTextLineColorAction@@6B@ -??_7MetaTextRectAction@@6B@ -??_7MetaTransparentAction@@6B@ -??_7MetaWallpaperAction@@6B@ -??_GMetaAction@@UAEPAXI@Z -??_GMetaArcAction@@UAEPAXI@Z -??_GMetaBmpAction@@UAEPAXI@Z -??_GMetaBmpExAction@@UAEPAXI@Z -??_GMetaBmpExScaleAction@@UAEPAXI@Z -??_GMetaBmpExScalePartAction@@UAEPAXI@Z -??_GMetaBmpScaleAction@@UAEPAXI@Z -??_GMetaBmpScalePartAction@@UAEPAXI@Z -??_GMetaChordAction@@UAEPAXI@Z -??_GMetaClipRegionAction@@UAEPAXI@Z -??_GMetaCommentAction@@UAEPAXI@Z -??_GMetaEPSAction@@UAEPAXI@Z -??_GMetaEllipseAction@@UAEPAXI@Z -??_GMetaFillColorAction@@UAEPAXI@Z -??_GMetaFloatTransparentAction@@UAEPAXI@Z -??_GMetaFontAction@@UAEPAXI@Z -??_GMetaGradientAction@@UAEPAXI@Z -??_GMetaGradientExAction@@UAEPAXI@Z -??_GMetaHatchAction@@UAEPAXI@Z -??_GMetaISectRectClipRegionAction@@UAEPAXI@Z -??_GMetaISectRegionClipRegionAction@@UAEPAXI@Z -??_GMetaLineAction@@UAEPAXI@Z -??_GMetaLineColorAction@@UAEPAXI@Z -??_GMetaMapModeAction@@UAEPAXI@Z -??_GMetaMaskAction@@UAEPAXI@Z -??_GMetaMaskScaleAction@@UAEPAXI@Z -??_GMetaMaskScalePartAction@@UAEPAXI@Z -??_GMetaMoveClipRegionAction@@UAEPAXI@Z -??_GMetaPieAction@@UAEPAXI@Z -??_GMetaPixelAction@@UAEPAXI@Z -??_GMetaPointAction@@UAEPAXI@Z -??_GMetaPolyLineAction@@UAEPAXI@Z -??_GMetaPolyPolygonAction@@UAEPAXI@Z -??_GMetaPolygonAction@@UAEPAXI@Z -??_GMetaPopAction@@UAEPAXI@Z -??_GMetaPushAction@@UAEPAXI@Z -??_GMetaRasterOpAction@@UAEPAXI@Z -??_GMetaRectAction@@UAEPAXI@Z -??_GMetaRefPointAction@@UAEPAXI@Z -??_GMetaRoundRectAction@@UAEPAXI@Z -??_GMetaStretchTextAction@@UAEPAXI@Z -??_GMetaTextAction@@UAEPAXI@Z -??_GMetaTextAlignAction@@UAEPAXI@Z -??_GMetaTextArrayAction@@UAEPAXI@Z -??_GMetaTextColorAction@@UAEPAXI@Z -??_GMetaTextFillColorAction@@UAEPAXI@Z -??_GMetaTextLineAction@@UAEPAXI@Z -??_GMetaTextLineColorAction@@UAEPAXI@Z -??_GMetaTextRectAction@@UAEPAXI@Z -??_GMetaTransparentAction@@UAEPAXI@Z -??_GMetaWallpaperAction@@UAEPAXI@Z -?Clone@MetaAction@@UAEPAV1@XZ -?Clone@MetaArcAction@@UAEPAVMetaAction@@XZ -?Clone@MetaBmpAction@@UAEPAVMetaAction@@XZ -?Clone@MetaBmpExAction@@UAEPAVMetaAction@@XZ -?Clone@MetaBmpExScaleAction@@UAEPAVMetaAction@@XZ -?Clone@MetaBmpExScalePartAction@@UAEPAVMetaAction@@XZ -?Clone@MetaBmpScaleAction@@UAEPAVMetaAction@@XZ -?Clone@MetaBmpScalePartAction@@UAEPAVMetaAction@@XZ -?Clone@MetaChordAction@@UAEPAVMetaAction@@XZ -?Clone@MetaClipRegionAction@@UAEPAVMetaAction@@XZ -?Clone@MetaCommentAction@@UAEPAVMetaAction@@XZ -?Clone@MetaEPSAction@@UAEPAVMetaAction@@XZ -?Clone@MetaEllipseAction@@UAEPAVMetaAction@@XZ -?Clone@MetaFillColorAction@@UAEPAVMetaAction@@XZ -?Clone@MetaFloatTransparentAction@@UAEPAVMetaAction@@XZ -?Clone@MetaFontAction@@UAEPAVMetaAction@@XZ -?Clone@MetaGradientAction@@UAEPAVMetaAction@@XZ -?Clone@MetaGradientExAction@@UAEPAVMetaAction@@XZ -?Clone@MetaHatchAction@@UAEPAVMetaAction@@XZ -?Clone@MetaISectRectClipRegionAction@@UAEPAVMetaAction@@XZ -?Clone@MetaISectRegionClipRegionAction@@UAEPAVMetaAction@@XZ -?Clone@MetaLineAction@@UAEPAVMetaAction@@XZ -?Clone@MetaLineColorAction@@UAEPAVMetaAction@@XZ -?Clone@MetaMapModeAction@@UAEPAVMetaAction@@XZ -?Clone@MetaMaskAction@@UAEPAVMetaAction@@XZ -?Clone@MetaMaskScaleAction@@UAEPAVMetaAction@@XZ -?Clone@MetaMaskScalePartAction@@UAEPAVMetaAction@@XZ -?Clone@MetaMoveClipRegionAction@@UAEPAVMetaAction@@XZ -?Clone@MetaPieAction@@UAEPAVMetaAction@@XZ -?Clone@MetaPixelAction@@UAEPAVMetaAction@@XZ -?Clone@MetaPointAction@@UAEPAVMetaAction@@XZ -?Clone@MetaPolyLineAction@@UAEPAVMetaAction@@XZ -?Clone@MetaPolyPolygonAction@@UAEPAVMetaAction@@XZ -?Clone@MetaPolygonAction@@UAEPAVMetaAction@@XZ -?Clone@MetaPopAction@@UAEPAVMetaAction@@XZ -?Clone@MetaPushAction@@UAEPAVMetaAction@@XZ -?Clone@MetaRasterOpAction@@UAEPAVMetaAction@@XZ -?Clone@MetaRectAction@@UAEPAVMetaAction@@XZ -?Clone@MetaRefPointAction@@UAEPAVMetaAction@@XZ -?Clone@MetaRoundRectAction@@UAEPAVMetaAction@@XZ -?Clone@MetaStretchTextAction@@UAEPAVMetaAction@@XZ -?Clone@MetaTextAction@@UAEPAVMetaAction@@XZ -?Clone@MetaTextAlignAction@@UAEPAVMetaAction@@XZ -?Clone@MetaTextArrayAction@@UAEPAVMetaAction@@XZ -?Clone@MetaTextColorAction@@UAEPAVMetaAction@@XZ -?Clone@MetaTextFillColorAction@@UAEPAVMetaAction@@XZ -?Clone@MetaTextLineAction@@UAEPAVMetaAction@@XZ -?Clone@MetaTextLineColorAction@@UAEPAVMetaAction@@XZ -?Clone@MetaTextRectAction@@UAEPAVMetaAction@@XZ -?Clone@MetaTransparentAction@@UAEPAVMetaAction@@XZ -?Clone@MetaWallpaperAction@@UAEPAVMetaAction@@XZ -?Execute@MetaAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaArcAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaBmpAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaBmpExAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaBmpExScaleAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaBmpExScalePartAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaBmpScaleAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaBmpScalePartAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaChordAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaClipRegionAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaCommentAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaEPSAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaEllipseAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaFillColorAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaFloatTransparentAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaFontAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaGradientAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaGradientExAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaHatchAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaISectRectClipRegionAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaISectRegionClipRegionAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaLineAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaLineColorAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaMapModeAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaMaskAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaMaskScaleAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaMaskScalePartAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaMoveClipRegionAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaPieAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaPixelAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaPointAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaPolyLineAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaPolyPolygonAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaPolygonAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaPopAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaPushAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaRasterOpAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaRectAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaRefPointAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaRoundRectAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaStretchTextAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaTextAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaTextAlignAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaTextArrayAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaTextColorAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaTextFillColorAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaTextLineAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaTextLineColorAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaTextRectAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaTransparentAction@@UAEXPAVOutputDevice@@@Z -?Execute@MetaWallpaperAction@@UAEXPAVOutputDevice@@@Z -?Move@MetaAction@@UAEXJJ@Z -?Move@MetaArcAction@@UAEXJJ@Z -?Move@MetaBmpAction@@UAEXJJ@Z -?Move@MetaBmpExAction@@UAEXJJ@Z -?Move@MetaBmpExScaleAction@@UAEXJJ@Z -?Move@MetaBmpExScalePartAction@@UAEXJJ@Z -?Move@MetaBmpScaleAction@@UAEXJJ@Z -?Move@MetaBmpScalePartAction@@UAEXJJ@Z -?Move@MetaChordAction@@UAEXJJ@Z -?Move@MetaClipRegionAction@@UAEXJJ@Z -?Move@MetaEPSAction@@UAEXJJ@Z -?Move@MetaEllipseAction@@UAEXJJ@Z -?Move@MetaFloatTransparentAction@@UAEXJJ@Z -?Move@MetaGradientAction@@UAEXJJ@Z -?Move@MetaGradientExAction@@UAEXJJ@Z -?Move@MetaHatchAction@@UAEXJJ@Z -?Move@MetaISectRectClipRegionAction@@UAEXJJ@Z -?Move@MetaISectRegionClipRegionAction@@UAEXJJ@Z -?Move@MetaLineAction@@UAEXJJ@Z -?Move@MetaMaskAction@@UAEXJJ@Z -?Move@MetaMaskScaleAction@@UAEXJJ@Z -?Move@MetaMaskScalePartAction@@UAEXJJ@Z -?Move@MetaPieAction@@UAEXJJ@Z -?Move@MetaPixelAction@@UAEXJJ@Z -?Move@MetaPointAction@@UAEXJJ@Z -?Move@MetaPolyLineAction@@UAEXJJ@Z -?Move@MetaPolyPolygonAction@@UAEXJJ@Z -?Move@MetaPolygonAction@@UAEXJJ@Z -?Move@MetaRectAction@@UAEXJJ@Z -?Move@MetaRoundRectAction@@UAEXJJ@Z -?Move@MetaStretchTextAction@@UAEXJJ@Z -?Move@MetaTextAction@@UAEXJJ@Z -?Move@MetaTextArrayAction@@UAEXJJ@Z -?Move@MetaTextLineAction@@UAEXJJ@Z -?Move@MetaTextRectAction@@UAEXJJ@Z -?Move@MetaTransparentAction@@UAEXJJ@Z -?Move@MetaWallpaperAction@@UAEXJJ@Z -?Move@Point@@QAEXJJ@Z -?Move@Rectangle@@QAEXJJ@Z -?ResetRefCount@MetaAction@@QAEXXZ -?Scale@MetaAction@@UAEXNN@Z -?Scale@MetaArcAction@@UAEXNN@Z -?Scale@MetaBmpAction@@UAEXNN@Z -?Scale@MetaBmpExAction@@UAEXNN@Z -?Scale@MetaBmpExScaleAction@@UAEXNN@Z -?Scale@MetaBmpExScalePartAction@@UAEXNN@Z -?Scale@MetaBmpScaleAction@@UAEXNN@Z -?Scale@MetaBmpScalePartAction@@UAEXNN@Z -?Scale@MetaChordAction@@UAEXNN@Z -?Scale@MetaClipRegionAction@@UAEXNN@Z -?Scale@MetaEPSAction@@UAEXNN@Z -?Scale@MetaEllipseAction@@UAEXNN@Z -?Scale@MetaFloatTransparentAction@@UAEXNN@Z -?Scale@MetaFontAction@@UAEXNN@Z -?Scale@MetaGradientAction@@UAEXNN@Z -?Scale@MetaGradientExAction@@UAEXNN@Z -?Scale@MetaHatchAction@@UAEXNN@Z -?Scale@MetaISectRectClipRegionAction@@UAEXNN@Z -?Scale@MetaISectRegionClipRegionAction@@UAEXNN@Z -?Scale@MetaLineAction@@UAEXNN@Z -?Scale@MetaMapModeAction@@UAEXNN@Z -?Scale@MetaMaskAction@@UAEXNN@Z -?Scale@MetaMaskScaleAction@@UAEXNN@Z -?Scale@MetaMaskScalePartAction@@UAEXNN@Z -?Scale@MetaMoveClipRegionAction@@UAEXNN@Z -?Scale@MetaPieAction@@UAEXNN@Z -?Scale@MetaPixelAction@@UAEXNN@Z -?Scale@MetaPointAction@@UAEXNN@Z -?Scale@MetaPolyLineAction@@UAEXNN@Z -?Scale@MetaPolyPolygonAction@@UAEXNN@Z -?Scale@MetaPolygonAction@@UAEXNN@Z -?Scale@MetaRectAction@@UAEXNN@Z -?Scale@MetaRoundRectAction@@UAEXNN@Z -?Scale@MetaStretchTextAction@@UAEXNN@Z -?Scale@MetaTextAction@@UAEXNN@Z -?Scale@MetaTextArrayAction@@UAEXNN@Z -?Scale@MetaTextLineAction@@UAEXNN@Z -?Scale@MetaTextRectAction@@UAEXNN@Z -?Scale@MetaTransparentAction@@UAEXNN@Z -?Scale@MetaWallpaperAction@@UAEXNN@Z -_real@41f0000000000000 -??0FontCharMap@@QAE@XZ -??0FontInfo@@QAE@ABV0@@Z -??0FontInfo@@QAE@XZ -??1FontCharMap@@QAE@XZ -??1FontInfo@@QAE@XZ -??4FontInfo@@QAEAAV0@ABV0@@Z -??8FontInfo@@QBEEABV0@@Z -?GetFirstChar@FontCharMap@@QBEKXZ -?GetLastChar@FontCharMap@@QBEKXZ -?GetNextChar@FontCharMap@@QBEKK@Z -?GetPrevChar@FontCharMap@@QBEKK@Z -?GetRange@FontCharMap@@QBEXKAAK0@Z -?HasChar@FontCharMap@@QBEEK@Z -?IsDefaultMap@FontCharMap@@QBEEXZ -??0ImpNodeCache@@QAE@K@Z -??0InverseColorMap@@QAE@ABVBitmapPalette@@@Z -??0Octree@@QAE@ABVBitmapReadAccess@@K@Z -??0Octree@@QAE@K@Z -??1ImpNodeCache@@QAE@XZ -??1InverseColorMap@@QAE@XZ -??1Octree@@QAE@XZ -??_GImpNodeCache@@QAEPAXI@Z -?AddColor@Octree@@QAEXABVBitmapColor@@@Z -?CreatePalette@Octree@@AAEXPAUOctreeNode@@@Z -?GetPalIndex@Octree@@AAEXPAUOctreeNode@@@Z -??0BigInt@@QAE@H@Z -??0BigInt@@QAE@J@Z -??0Rectangle@@QAE@JJJJ@Z -??BBigInt@@QBEJXZ -?Abs@@YAJJ@Z -?IsNeg@BigInt@@QBEEXZ -?LogicToLogic@OutputDevice@@QBE?AVPoint@@ABV2@PBVMapMode@@1@Z -?LogicToLogic@OutputDevice@@QBE?AVRectangle@@ABV2@PBVMapMode@@1@Z -?LogicToLogic@OutputDevice@@QBE?AVSize@@ABV2@PBVMapMode@@1@Z -?LogicToLogic@OutputDevice@@QBEPAJPAJGPBVMapMode@@1@Z -?LogicToLogic@OutputDevice@@SA?AVPoint@@ABV2@ABVMapMode@@1@Z -?LogicToLogic@OutputDevice@@SA?AVRectangle@@ABV2@ABVMapMode@@1@Z -?LogicToLogic@OutputDevice@@SA?AVSize@@ABV2@ABVMapMode@@1@Z -?LogicToLogic@OutputDevice@@SAJJW4MapUnit@@0@Z -?LogicToPixel@OutputDevice@@QBE?AVPoint@@ABV2@@Z -?LogicToPixel@OutputDevice@@QBE?AVPoint@@ABV2@ABVMapMode@@@Z -?LogicToPixel@OutputDevice@@QBE?AVPolyPolygon@@ABV2@@Z -?LogicToPixel@OutputDevice@@QBE?AVPolyPolygon@@ABV2@ABVMapMode@@@Z -?LogicToPixel@OutputDevice@@QBE?AVPolygon@@ABV2@@Z -?LogicToPixel@OutputDevice@@QBE?AVPolygon@@ABV2@ABVMapMode@@@Z -?LogicToPixel@OutputDevice@@QBE?AVRectangle@@ABV2@@Z -?LogicToPixel@OutputDevice@@QBE?AVRectangle@@ABV2@ABVMapMode@@@Z -?LogicToPixel@OutputDevice@@QBE?AVRegion@@ABV2@@Z -?LogicToPixel@OutputDevice@@QBE?AVRegion@@ABV2@ABVMapMode@@@Z -?LogicToPixel@OutputDevice@@QBE?AVSize@@ABV2@@Z -?LogicToPixel@OutputDevice@@QBE?AVSize@@ABV2@ABVMapMode@@@Z -?PixelToLogic@OutputDevice@@QBE?AVPoint@@ABV2@@Z -?PixelToLogic@OutputDevice@@QBE?AVPoint@@ABV2@ABVMapMode@@@Z -?PixelToLogic@OutputDevice@@QBE?AVPolyPolygon@@ABV2@@Z -?PixelToLogic@OutputDevice@@QBE?AVPolyPolygon@@ABV2@ABVMapMode@@@Z -?PixelToLogic@OutputDevice@@QBE?AVPolygon@@ABV2@@Z -?PixelToLogic@OutputDevice@@QBE?AVPolygon@@ABV2@ABVMapMode@@@Z -?PixelToLogic@OutputDevice@@QBE?AVRectangle@@ABV2@@Z -?PixelToLogic@OutputDevice@@QBE?AVRectangle@@ABV2@ABVMapMode@@@Z -?PixelToLogic@OutputDevice@@QBE?AVRegion@@ABV2@@Z -?PixelToLogic@OutputDevice@@QBE?AVRegion@@ABV2@ABVMapMode@@@Z -?PixelToLogic@OutputDevice@@QBE?AVSize@@ABV2@@Z -?PixelToLogic@OutputDevice@@QBE?AVSize@@ABV2@ABVMapMode@@@Z -?SetMapMode@OutputDevice@@QAEXABVMapMode@@@Z -?SetMapMode@OutputDevice@@QAEXXZ -?SetRelativeMapMode@OutputDevice@@QAEXABVMapMode@@@Z -??0?$Reference@VXGraphics@awt@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXGraphics@awt@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0OutputDevice@@IAE@XZ -??0Resource@@IAE@XZ -??1?$Reference@VXGraphics@awt@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1OutputDevice@@UAE@XZ -??1Resource@@QAE@XZ -??_7OutputDevice@@6B@ -??_GFont@@QAEPAXI@Z -??_GMapMode@@QAEPAXI@Z -??_GOpenGL@@QAEPAXI@Z -??_GOutputDevice@@UAEPAXI@Z -?CreateUnoGraphics@OutputDevice@@QAE?AV?$Reference@VXGraphics@awt@star@sun@com@@@uno@star@sun@com@@XZ -?DrawLine@OutputDevice@@QAEXABVPoint@@0@Z -?DrawLine@OutputDevice@@QAEXABVPoint@@0ABVLineInfo@@@Z -?DrawPolyLine@OutputDevice@@QAEXABVPolygon@@@Z -?DrawPolyLine@OutputDevice@@QAEXABVPolygon@@ABVLineInfo@@@Z -?DrawPolyPolygon@OutputDevice@@QAEXABVPolyPolygon@@@Z -?DrawPolygon@OutputDevice@@QAEXABVPolygon@@@Z -?DrawRect@OutputDevice@@QAEXABVRectangle@@@Z -?GetActiveClipRegion@OutputDevice@@QBE?AVRegion@@XZ -?GetBitCount@OutputDevice@@QBEGXZ -?GetClipRegion@OutputDevice@@QBE?AVRegion@@XZ -?GetColorCount@OutputDevice@@QBEKXZ -?GetOpenGL@OutputDevice@@QAEPAVOpenGL@@XZ -?GetStyle@Wallpaper@@QBE?AW4WallpaperStyle@@XZ -?GetUnoGraphicsList@OutputDevice@@QBEPAVList@@XZ -?IntersectClipRegion@OutputDevice@@QAEXABVRectangle@@@Z -?IntersectClipRegion@OutputDevice@@QAEXABVRegion@@@Z -?IsValid@OpenGL@@QBEEXZ -?MoveClipRegion@OutputDevice@@QAEXJJ@Z -?Pop@OutputDevice@@QAEXXZ -?Push@OutputDevice@@QAEXG@Z -?SetBackground@OutputDevice@@QAEXABVWallpaper@@@Z -?SetBackground@OutputDevice@@QAEXXZ -?SetClipRegion@OutputDevice@@QAEXABVRegion@@@Z -?SetClipRegion@OutputDevice@@QAEXXZ -?SetDrawMode@OutputDevice@@QAEXK@Z -?SetFillColor@OutputDevice@@QAEXABVColor@@@Z -?SetFillColor@OutputDevice@@QAEXXZ -?SetLineColor@OutputDevice@@QAEXABVColor@@@Z -?SetLineColor@OutputDevice@@QAEXXZ -?SetRasterOp@OutputDevice@@QAEXW4RasterOp@@@Z -?SetRefPoint@OutputDevice@@QAEXABVPoint@@@Z -?SetRefPoint@OutputDevice@@QAEXXZ -?CopyArea@OutputDevice@@QAEXABVPoint@@0ABVSize@@G@Z -?DrawBitmap@OutputDevice@@QAEXABVPoint@@ABVBitmap@@@Z -?DrawBitmap@OutputDevice@@QAEXABVPoint@@ABVSize@@01ABVBitmap@@@Z -?DrawBitmap@OutputDevice@@QAEXABVPoint@@ABVSize@@ABVBitmap@@@Z -?DrawBitmapEx@OutputDevice@@QAEXABVPoint@@ABVBitmapEx@@@Z -?DrawBitmapEx@OutputDevice@@QAEXABVPoint@@ABVSize@@01ABVBitmapEx@@@Z -?DrawBitmapEx@OutputDevice@@QAEXABVPoint@@ABVSize@@ABVBitmapEx@@@Z -?DrawMask@OutputDevice@@QAEXABVPoint@@ABVBitmap@@ABVColor@@@Z -?DrawMask@OutputDevice@@QAEXABVPoint@@ABVSize@@01ABVBitmap@@ABVColor@@@Z -?DrawMask@OutputDevice@@QAEXABVPoint@@ABVSize@@ABVBitmap@@ABVColor@@@Z -?DrawOutDev@OutputDevice@@QAEXABVPoint@@ABVSize@@01@Z -?DrawOutDev@OutputDevice@@QAEXABVPoint@@ABVSize@@01ABV1@@Z -?DrawPixel@OutputDevice@@QAEXABVPoint@@@Z -?DrawPixel@OutputDevice@@QAEXABVPoint@@ABVColor@@@Z -?DrawPixel@OutputDevice@@QAEXABVPolygon@@ABVColor@@@Z -?DrawPixel@OutputDevice@@QAEXABVPolygon@@PBVColor@@@Z -?GetBitmap@OutputDevice@@QBE?AVBitmap@@ABVPoint@@ABVSize@@@Z -?GetPixel@OutputDevice@@QBE?AVColor@@ABVPoint@@@Z -?GetPixel@OutputDevice@@QBEPAVColor@@ABVPolygon@@@Z -?GetTransparentType@BitmapEx@@QBE?AW4TransparentType@@XZ -?Merge@BitmapColor@@QAEAAV1@EEEE@Z -??0?$Reference@VXHyphenator@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXHyphenator@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0FontMetric@@QAE@ABV0@@Z -??0FontMetric@@QAE@XZ -??0LineBreakHyphenationOptions@i18n@star@sun@com@@QAE@ABV?$Reference@VXHyphenator@linguistic2@star@sun@com@@@uno@234@ABV?$Sequence@UPropertyValue@beans@star@sun@com@@@6234@ABJ@Z -??0LineBreakUserOptions@i18n@star@sun@com@@QAE@XZ -??1?$Reference@VXHyphenatedWord@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXHyphenator@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1FontMetric@@QAE@XZ -??1LineBreakHyphenationOptions@i18n@star@sun@com@@QAE@XZ -??1LineBreakResults@i18n@star@sun@com@@QAE@XZ -??1LineBreakUserOptions@i18n@star@sun@com@@QAE@XZ -??4?$Reference@VXBreakIterator@i18n@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??C?$Reference@VXBreakIterator@i18n@star@sun@com@@@uno@star@sun@com@@QBAPAVXBreakIterator@i18n@234@XZ -??_C@_0CB@CAMHJNFE@com?4sun?4star?4beans?4PropertyValue@ -?AddFontSubstitute@OutputDevice@@SAXABVString@@0G@Z -?BeginFontSubstitution@OutputDevice@@SAXXZ -?Copy@String@@QBE?AV1@GG@Z -?DrawCtrlText@OutputDevice@@QAEXABVPoint@@ABVString@@GGG@Z -?DrawStretchText@OutputDevice@@QAEXABVPoint@@KABVString@@GG@Z -?DrawText@OutputDevice@@QAEXABVPoint@@ABVString@@GG@Z -?DrawText@OutputDevice@@QAEXABVRectangle@@ABVString@@G@Z -?DrawTextArray@OutputDevice@@QAEXABVPoint@@ABVString@@PBJGG@Z -?DrawTextLine@OutputDevice@@QAEXABVPoint@@JW4FontStrikeout@@W4FontUnderline@@E@Z -?DrawWaveLine@OutputDevice@@QAEXABVPoint@@0G@Z -?EnableMapMode@OutputDevice@@QAEXE@Z -?EndFontSubstitution@OutputDevice@@SAXXZ -?GetAntialiasing@OutputDevice@@QBEGXZ -?GetAscent@FontMetric@@QBEJXZ -?GetCharWidth@OutputDevice@@QBEXGGPAJ@Z -?GetCtrlTextWidth@OutputDevice@@QBEJABVString@@GGG@Z -?GetDefaultFont@OutputDevice@@SA?AVFont@@GGKPBV1@@Z -?GetDevFont@OutputDevice@@QBE?AVFontInfo@@G@Z -?GetDevFontCount@OutputDevice@@QBEGXZ -?GetDevFontSize@OutputDevice@@QBE?AVSize@@ABVFont@@G@Z -?GetDevFontSizeCount@OutputDevice@@QBEGABVFont@@@Z -?GetEllipsisString@OutputDevice@@QBE?AVString@@ABV2@JG@Z -?GetFontCharMap@OutputDevice@@QBEEAAVFontCharMap@@@Z -?GetFontMetric@OutputDevice@@QBE?AVFontMetric@@ABVFont@@@Z -?GetFontMetric@OutputDevice@@QBE?AVFontMetric@@XZ -?GetFontSubstitute@OutputDevice@@SAXGAAVString@@0AAG@Z -?GetFontSubstituteCount@OutputDevice@@SAGXZ -?GetFontToken@@YA?AVString@@ABV1@G@Z -?GetFontToken@@YA?AVString@@ABV1@GAAG@Z -?GetGlyphBoundRect@OutputDevice@@QAEEGAAVRectangle@@E@Z -?GetGlyphOutline@OutputDevice@@QAEEGAAVPolyPolygon@@E@Z -?GetKerning@Font@@QBEEXZ -?GetKerningPairCount@OutputDevice@@QBEKXZ -?GetKerningPairs@OutputDevice@@QBEXKPAUKerningPair@@@Z -?GetNonMnemonicString@OutputDevice@@SA?AVString@@ABV2@@Z -?GetNonMnemonicString@OutputDevice@@SA?AVString@@ABV2@AAG@Z -?GetOptions@StyleSettings@@QBEKXZ -?GetSubsFontName@@YA?AVString@@ABV1@K@Z -?GetTextArray@OutputDevice@@QBEJABVString@@PAJGG@Z -?GetTextBreak@OutputDevice@@QBEGABVString@@JGAAGGGJ@Z -?GetTextBreak@OutputDevice@@QBEGABVString@@JGGJ@Z -?GetTextFillColor@OutputDevice@@QBE?AVColor@@XZ -?GetTextHeight@OutputDevice@@QBEJXZ -?GetTextRect@OutputDevice@@QBE?AVRectangle@@ABV2@ABVString@@GPAVTextRectInfo@@@Z -?GetTextWidth@OutputDevice@@QBEJABVString@@GG@Z -?IsFontAvailable@OutputDevice@@QBEEABVString@@@Z -?IsMapModeEnabled@OutputDevice@@QBEEXZ -?IsSameInstance@Font@@QBEEABV1@@Z -?IsTextUnderlineAbove@OutputDevice@@SAEABVFont@@@Z -?RemoveFontSubstitute@OutputDevice@@SAXG@Z -?SetAntialiasing@OutputDevice@@QAEXG@Z -?SetFont@OutputDevice@@QAEXABVFont@@@Z -?SetTextAlign@OutputDevice@@QAEXW4TextAlign@@@Z -?SetTextColor@OutputDevice@@QAEXABVColor@@@Z -?SetTextFillColor@OutputDevice@@QAEXABVColor@@@Z -?SetTextFillColor@OutputDevice@@QAEXXZ -?SetTextLineColor@OutputDevice@@QAEXABVColor@@@Z -?SetTextLineColor@OutputDevice@@QAEXXZ -?getCppuType@@YAABVType@uno@star@sun@com@@PBUPropertyValue@beans@345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@UPropertyValue@beans@star@sun@com@@@2345@@Z -?s_pType@?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_beans_PropertyValue@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUPropertyValue@beans@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?set@?$Reference@VXBreakIterator@i18n@star@sun@com@@@uno@star@sun@com@@QAAEPAVXBreakIterator@i18n@345@@Z -_real@3e112e0be826d695 -_real@3f50624dd2f1a9fc -_real@407f400000000000 -_real@4081e7a9907e5cf3 -??0Line@@QAE@ABVPoint@@0@Z -??_GPolyPolygon@@QAEPAXI@Z -?AddGradientActions@OutputDevice@@QAEXABVRectangle@@ABVGradient@@AAVGDIMetaFile@@@Z -?AddHatchActions@OutputDevice@@QAEXABVPolyPolygon@@ABVHatch@@AAVGDIMetaFile@@@Z -?DrawGradient@OutputDevice@@QAEXABVPolyPolygon@@ABVGradient@@@Z -?DrawGradient@OutputDevice@@QAEXABVRectangle@@ABVGradient@@@Z -?DrawHatch@OutputDevice@@QAEXABVPolyPolygon@@ABVHatch@@@Z -?GetDistance@Hatch@@QBEJXZ -?GetDistance@Line@@QBENABVPoint@@@Z -?GetEnd@Line@@QBEABVPoint@@XZ -?GetRefPoint@OutputDevice@@QBEABVPoint@@XZ -?GetStart@Line@@QBEABVPoint@@XZ -?GetSteps@Gradient@@QBEGXZ -?GetStyle@Hatch@@QBE?AW4HatchStyle@@XZ -?IsRefPoint@OutputDevice@@QBEEXZ -?SetEnd@Line@@QAEXABVPoint@@@Z -?SetStart@Line@@QAEXABVPoint@@@Z -_real@3e7ad7f29abcaf48 -_real@3ff6a0902de00d1b -?DrawArc@OutputDevice@@QAEXABVRectangle@@ABVPoint@@1@Z -?DrawChord@OutputDevice@@QAEXABVRectangle@@ABVPoint@@1@Z -?DrawEllipse@OutputDevice@@QAEXABVRectangle@@@Z -?DrawPie@OutputDevice@@QAEXABVRectangle@@ABVPoint@@1@Z -?DrawRect@OutputDevice@@QAEXABVRectangle@@KK@Z -??0?$Sequence@J@uno@star@sun@com@@QAE@XZ -??1?$Sequence@J@uno@star@sun@com@@QAE@XZ -??A?$Sequence@J@uno@star@sun@com@@QAAAAJJ@Z -?DrawEPS@OutputDevice@@QAEXABVPoint@@ABVSize@@ABVGfxLink@@PAVGDIMetaFile@@@Z -?DrawGrid@OutputDevice@@QAEXABVRectangle@@ABVSize@@K@Z -?DrawTransparent@OutputDevice@@QAEXABVGDIMetaFile@@ABVPoint@@ABVSize@@ABVGradient@@@Z -?DrawTransparent@OutputDevice@@QAEXABVPolyPolygon@@G@Z -?DrawWallpaper@OutputDevice@@QAEXABVRectangle@@ABVWallpaper@@@Z -?Erase@OutputDevice@@QAEXXZ -?IsRect@Wallpaper@@QBEEXZ -?getCppuType@@YAABVType@uno@star@sun@com@@PBJ@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@J@2345@@Z -?realloc@?$Sequence@J@uno@star@sun@com@@QAAXJ@Z -?s_pType@?$Sequence@J@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -_real@3f6b4e81b4e81b4f -?ConvertFontToSubsFontChar@@YAGPAXG@Z -?CreateFontToSubsFontConverter@@YAPAXABVString@@K@Z -?DestroyFontToSubsFontConverter@@YAXPAX@Z -?GetFontToSubsFontName@@YA?AVString@@PAX@Z -??0?$_STL_alloc_proxy@PAVPoint@@V1@V?$allocator@VPoint@@@_STL@@@_STL@@QAE@ABV?$allocator@VPoint@@@1@PAVPoint@@@Z -??0?$_Vector_base@VPoint@@V?$allocator@VPoint@@@_STL@@@_STL@@QAE@ABV?$allocator@VPoint@@@1@@Z -??0?$allocator@VPoint@@@_STL@@QAE@ABV01@@Z -??0?$allocator@VPoint@@@_STL@@QAE@XZ -??0?$vector@VPoint@@V?$allocator@VPoint@@@_STL@@@_STL@@QAE@ABV?$allocator@VPoint@@@1@@Z -??0Polygon@@QAE@ABV0@@Z -??0Polygon@@QAE@ABVPoint@@000G@Z -??0Polygon@@QAE@ABVPoint@@JJG@Z -??0Polygon@@QAE@ABVRectangle@@@Z -??0Polygon@@QAE@ABVRectangle@@ABVPoint@@1W4PolyStyle@@@Z -??0Polygon@@QAE@ABVRectangle@@KK@Z -??0Polygon@@QAE@G@Z -??0Polygon@@QAE@GPBVPoint@@PBE@Z -??0Polygon@@QAE@XZ -??0Vector2D@@QAE@ABVPair@@@Z -??1?$_STL_alloc_proxy@PAVPoint@@V1@V?$allocator@VPoint@@@_STL@@@_STL@@QAE@XZ -??1?$_Vector_base@VPoint@@V?$allocator@VPoint@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@VPoint@@@_STL@@QAE@XZ -??1?$vector@VPoint@@V?$allocator@VPoint@@@_STL@@@_STL@@QAE@XZ -??1Polygon@@QAE@XZ -??1Vector2D@@QAE@XZ -??4Polygon@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVPolygon@@@Z -??6@YAAAVSvStream@@AAV0@ABVPolygon@@@Z -??8Polygon@@QBEEABV0@@Z -??APolygon@@QAEAAVPoint@@G@Z -??YPoint@@QAEAAV0@ABV0@@Z -??ZVector2D@@QAEAAV0@ABVPair@@@Z -??_GPolygon@@QAEPAXI@Z -?CalcDistance@Polygon@@QAENGG@Z -?Clear@Polygon@@QAEXXZ -?Clip@Polygon@@QAEXABVRectangle@@E@Z -?Distort@Polygon@@QAEXABVRectangle@@ABV1@@Z -?GetAbsValue@PolyOptimizeData@@QBEKXZ -?GetArea@Polygon@@QBENXZ -?GetBoundRect@Polygon@@QBE?AVRectangle@@XZ -?GetDifference@Polygon@@QBEXABVPolyPolygon@@AAV2@@Z -?GetFlags@Polygon@@QBE?AW4PolyFlags@@G@Z -?GetIntersection@Polygon@@QBEXABVPolyPolygon@@AAV2@@Z -?GetLength@Vector2D@@QBENXZ -?GetPercentValue@PolyOptimizeData@@QBEGXZ -?GetPoint@Polygon@@QBEABVPoint@@G@Z -?GetSignedArea@Polygon@@QBENXZ -?GetSimple@Polygon@@QBEXAAV1@J@Z -?GetSize@Polygon@@QBEGXZ -?GetUnion@Polygon@@QBEXABVPolyPolygon@@AAV2@@Z -?GetXOR@Polygon@@QBEXABVPolyPolygon@@AAV2@@Z -?Insert@Polygon@@QAEXGABV1@@Z -?Insert@Polygon@@QAEXGABVPoint@@W4PolyFlags@@@Z -?IsControl@Polygon@@QBEEG@Z -?IsInside@Polygon@@QBEEABVPoint@@@Z -?IsNegative@Vector2D@@QBEEAAV1@@Z -?IsPositive@Vector2D@@QBEEAAV1@@Z -?IsRect@Polygon@@QBEEXZ -?IsRightOrientated@Polygon@@QBEEXZ -?IsSmooth@Polygon@@QBEEG@Z -?Move@Polygon@@QAEXJJ@Z -?Normalize@Vector2D@@QAEAAV1@XZ -?Optimize@Polygon@@QAEXKPBVPolyOptimizeData@@@Z -?Remove@Polygon@@QAEXGG@Z -?Rotate@Polygon@@QAEXABVPoint@@G@Z -?Rotate@Polygon@@QAEXABVPoint@@NN@Z -?Scalar@Vector2D@@QBENABV1@@Z -?Scale@Polygon@@QAEXNN@Z -?SetFlags@Polygon@@QAEXGW4PolyFlags@@@Z -?SetPoint@Polygon@@QAEXABVPoint@@G@Z -?SetSize@Polygon@@QAEXG@Z -?SlantX@Polygon@@QAEXJNN@Z -?SlantY@Polygon@@QAEXJNN@Z -?Translate@Polygon@@QAEXABVPoint@@@Z -?_Construct@_STL@@YAXPAVPoint@@ABV2@@Z -?_Destroy@_STL@@YAXPAVPoint@@0@Z -?_Destroy@_STL@@YAXPAVPoint@@@Z -?_M_insert_overflow@?$vector@VPoint@@V?$allocator@VPoint@@@_STL@@@_STL@@IAEXPAVPoint@@ABV3@I@Z -?__destroy@_STL@@YAXPAVPoint@@00@Z -?__destroy_aux@_STL@@YAXPAVPoint@@0U__false_type@@@Z -?__stl_alloc_rebind@_STL@@YAAAV?$allocator@VPoint@@@1@AAV21@PBVPoint@@@Z -?__uninitialized_copy@_STL@@YAPAVPoint@@PAV2@000@Z -?__uninitialized_copy_aux@_STL@@YAPAVPoint@@PAV2@00U__false_type@@@Z -?__uninitialized_fill_n@_STL@@YAPAVPoint@@PAV2@IABV2@0@Z -?__uninitialized_fill_n_aux@_STL@@YAPAVPoint@@PAV2@IABV2@U__false_type@@@Z -?allocate@?$_STL_alloc_proxy@PAVPoint@@V1@V?$allocator@VPoint@@@_STL@@@_STL@@QAEPAVPoint@@I@Z -?allocate@?$allocator@VPoint@@@_STL@@QBEPAVPoint@@IPBX@Z -?begin@?$vector@VPoint@@V?$allocator@VPoint@@@_STL@@@_STL@@QAEPAVPoint@@XZ -?deallocate@?$_STL_alloc_proxy@PAVPoint@@V1@V?$allocator@VPoint@@@_STL@@@_STL@@QAEXPAVPoint@@I@Z -?deallocate@?$allocator@VPoint@@@_STL@@QBEXPAVPoint@@I@Z -?end@?$vector@VPoint@@V?$allocator@VPoint@@@_STL@@@_STL@@QAEPAVPoint@@XZ -?push_back@?$vector@VPoint@@V?$allocator@VPoint@@@_STL@@@_STL@@QAEXABVPoint@@@Z -?size@?$vector@VPoint@@V?$allocator@VPoint@@@_STL@@@_STL@@QBEIXZ -?uninitialized_copy@_STL@@YAPAVPoint@@PAV2@00@Z -?uninitialized_fill_n@_STL@@YAPAVPoint@@PAV2@IABV2@@Z -?value_type@_STL@@YAPAVPoint@@PBV2@@Z -_real@3fc45f30113fc364 -_real@3fefffffca501acb -_real@3ff000001ad7f29b -_real@3ff6a09e81572e68 -_real@3ff8000000000000 -_real@3ff921fb54442d18 -_real@4008000000000000 -_real@400921fb54442d18 -_real@401921fb54442d18 -_real@4034000000000000 -_real@409f400000000000 -_real@412e848000000000 -??0PolyPolygon@@QAE@ABV0@@Z -??0PolyPolygon@@QAE@ABVPolygon@@@Z -??0PolyPolygon@@QAE@GG@Z -??0PolyPolygon@@QAE@GPBGPBVPoint@@@Z -??1PolyPolygon@@QAE@XZ -??4PolyPolygon@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVPolyPolygon@@@Z -??6@YAAAVSvStream@@AAV0@ABVPolyPolygon@@@Z -??8PolyPolygon@@QBEEABV0@@Z -??APolyPolygon@@QAEAAVPolygon@@G@Z -?Clear@PolyPolygon@@QAEXXZ -?Clip@PolyPolygon@@QAEXABVRectangle@@@Z -?Count@PolyPolygon@@QBEGXZ -?Distort@PolyPolygon@@QAEXABVRectangle@@ABVPolygon@@@Z -?GetBoundRect@PolyPolygon@@QBE?AVRectangle@@XZ -?GetDifference@PolyPolygon@@QBEXABV1@AAV1@@Z -?GetIntersection@PolyPolygon@@QBEXABV1@AAV1@@Z -?GetObject@PolyPolygon@@QBEABVPolygon@@G@Z -?GetSimple@PolyPolygon@@QBEXAAV1@J@Z -?GetUnion@PolyPolygon@@QBEXABV1@AAV1@@Z -?GetXOR@PolyPolygon@@QBEXABV1@AAV1@@Z -?Insert@PolyPolygon@@QAEXABVPolygon@@G@Z -?IsRect@PolyPolygon@@QBEEXZ -?Move@PolyPolygon@@QAEXJJ@Z -?Optimize@PolyPolygon@@QAEXKPBVPolyOptimizeData@@@Z -?Remove@PolyPolygon@@QAEXG@Z -?Replace@PolyPolygon@@QAEXABVPolygon@@G@Z -?Rotate@PolyPolygon@@QAEXABVPoint@@G@Z -?Rotate@PolyPolygon@@QAEXABVPoint@@NN@Z -?Scale@PolyPolygon@@QAEXNN@Z -?SlantX@PolyPolygon@@QAEXJNN@Z -?SlantY@PolyPolygon@@QAEXJNN@Z -?Translate@PolyPolygon@@QAEXABVPoint@@@Z -??0Printer@@QAE@ABVJobSetup@@@Z -??0Printer@@QAE@ABVQueueInfo@@@Z -??0Printer@@QAE@ABVString@@@Z -??0Printer@@QAE@PBVWindow@@@Z -??0Printer@@QAE@XZ -??0PrinterOptions@@QAE@XZ -??0QueueInfo@@QAE@ABV0@@Z -??0QueueInfo@@QAE@XZ -??1Printer@@UAE@XZ -??1PrinterOptions@@QAE@XZ -??1QueueInfo@@QAE@XZ -??5@YAAAVSvStream@@AAV0@AAVQueueInfo@@@Z -??6@YAAAVSvStream@@AAV0@ABVQueueInfo@@@Z -??8QueueInfo@@QAEABV0@ABV0@@Z -??_7Printer@@6B@ -??_GPrinter@@UAEPAXI@Z -??_GPrinterOptions@@QAEPAXI@Z -??_GQueueInfo@@QAEPAXI@Z -?AbortJob@Printer@@QAEEXZ -?EndJob@Printer@@QAEEXZ -?EndPage@Printer@@QAEEXZ -?EndPrint@Printer@@UAEXXZ -?Error@Printer@@UAEXXZ -?GetCapabilities@Printer@@QBEKG@Z -?GetDefaultPrinterName@Printer@@SA?AVString@@XZ -?GetDriver@QueueInfo@@QBEABVString@@XZ -?GetDriverName@Printer@@QBEABVString@@XZ -?GetErrorCode@Printer@@QBEKXZ -?GetOrientation@Printer@@QBE?AW4Orientation@@XZ -?GetPaper@Printer@@QBEGXZ -?GetPaperBin@Printer@@QBEGXZ -?GetPaperBinCount@Printer@@QBEGXZ -?GetPaperBinName@Printer@@QBE?AVString@@G@Z -?GetPrinterName@QueueInfo@@QBEABVString@@XZ -?GetQueueCount@Printer@@SAGXZ -?GetQueueInfo@Printer@@SAABVQueueInfo@@G@Z -?GetQueueInfo@Printer@@SAABVQueueInfo@@GE@Z -?HasSupport@Printer@@QBEEW4PrinterSupport@@E@Z -?IsDisplayPrinter@Printer@@QBEEXZ -?IsQueuePrinter@Printer@@IBEEXZ -?PrintPage@Printer@@UAEXXZ -?SetCopyCount@Printer@@QAEEGE@Z -?SetJobSetup@Printer@@QAEEABVJobSetup@@@Z -?SetOrientation@Printer@@QAEEW4Orientation@@@Z -?SetPaper@Printer@@QAEEG@Z -?SetPaperBin@Printer@@QAEEG@Z -?SetPaperSizeUser@Printer@@QAEEABVSize@@@Z -?SetPrinterOptions@Printer@@QAEXABVPrinterOptions@@@Z -?SetPrinterProps@Printer@@QAEEPBV1@@Z -?Setup@Printer@@QAEEPAVWindow@@@Z -?StartJob@Printer@@QAEEABVString@@@Z -?StartPage@Printer@@QAEEXZ -?StartPrint@Printer@@UAEXXZ -?DrawGradientEx@Printer@@QAEXPAVOutputDevice@@ABVPolyPolygon@@ABVGradient@@@Z -?DrawGradientEx@Printer@@QAEXPAVOutputDevice@@ABVRectangle@@ABVGradient@@@Z -?GetPreparedBitmap@Printer@@QAE?AVBitmap@@ABVPoint@@ABVSize@@01ABV2@JJ@Z -?GetPreparedBitmapEx@Printer@@QAE?AVBitmapEx@@ABVPoint@@ABVSize@@01ABV2@JJ@Z -?GetPreparedMetaFile@Printer@@QAEXABVGDIMetaFile@@AAV2@JJ@Z -?GetRect@MetaTextRectAction@@QBEABVRectangle@@XZ -?GetReducedGradientMode@PrinterOptions@@QBE?AW4PrinterGradientMode@@XZ -?GetReducedGradientStepCount@PrinterOptions@@QBEGXZ -?IsReduceGradients@PrinterOptions@@QBEEXZ -?IsReducedBitmapIncludesTransparency@PrinterOptions@@QBEEXZ -_real@3f46c16c16c16c17 -_real@3fd0000000000000 -_real@4010000000000000 -??0Region@@QAE@ABV0@@Z -??0Region@@QAE@ABVPolyPolygon@@@Z -??0Region@@QAE@ABVPolygon@@@Z -??0Region@@QAE@ABVRectangle@@@Z -??0Region@@QAE@W4RegionType@@@Z -??0Region@@QAE@XZ -??1Region@@QAE@XZ -??4Region@@QAEAAV0@ABV0@@Z -??4Region@@QAEAAV0@ABVRectangle@@@Z -??5@YAAAVSvStream@@AAV0@AAVRegion@@@Z -??6@YAAAVSvStream@@AAV0@ABVRegion@@@Z -??8Region@@QBEEABV0@@Z -?BeginEnumRects@Region@@QAEJXZ -?EndEnumRects@Region@@QAEXJ@Z -?Exclude@Region@@QAEEABV1@@Z -?Exclude@Region@@QAEEABVRectangle@@@Z -?GetBoundRect@Region@@QBE?AVRectangle@@XZ -?GetEnumRects@Region@@QAEEJAAVRectangle@@@Z -?GetOverlapType@Region@@QBE?AW4RegionOverlapType@@ABVRectangle@@@Z -?GetPolyPolygon@Region@@QBE?AVPolyPolygon@@XZ -?GetRectCount@Region@@QBEKXZ -?GetType@Region@@QBE?AW4RegionType@@XZ -?HasPolyPolygon@Region@@QBEEXZ -?Intersect@Region@@QAEEABV1@@Z -?Intersect@Region@@QAEEABVRectangle@@@Z -?IsInside@Region@@QBEEABVPoint@@@Z -?IsInside@Region@@QBEEABVRectangle@@@Z -?IsOver@Region@@QBEEABVRectangle@@@Z -?Move@Region@@QAEXJJ@Z -?Scale@Region@@QAEXNN@Z -?SetEmpty@Region@@QAEXXZ -?SetNull@Region@@QAEXXZ -?Union@Region@@QAEEABV1@@Z -?Union@Region@@QAEEABVRectangle@@@Z -?XOr@Region@@QAEEABV1@@Z -?XOr@Region@@QAEEABVRectangle@@@Z -??0VirtualDevice@@QAE@ABVOutputDevice@@G@Z -??0VirtualDevice@@QAE@G@Z -??1VirtualDevice@@UAE@XZ -??_7VirtualDevice@@6B@ -??_GVirtualDevice@@UAEPAXI@Z -?SetOutputSizePixel@VirtualDevice@@QAEEABVSize@@E@Z -??0Wallpaper@@QAE@ABV0@@Z -??0Wallpaper@@QAE@ABVBitmapEx@@@Z -??0Wallpaper@@QAE@ABVColor@@@Z -??0Wallpaper@@QAE@ABVGradient@@@Z -??0Wallpaper@@QAE@XZ -??1Wallpaper@@QAE@XZ -??4Wallpaper@@QAEAAV0@ABV0@@Z -??5@YAAAVSvStream@@AAV0@AAVWallpaper@@@Z -??6@YAAAVSvStream@@AAV0@ABVWallpaper@@@Z -??8Wallpaper@@QBEEABV0@@Z -??9BitmapEx@@QBEEABV0@@Z -??9Gradient@@QBEEABV0@@Z -??_GBitmapEx@@QAEPAXI@Z -??_GGradient@@QAEPAXI@Z -?GetBitmap@Wallpaper@@QBE?AVBitmapEx@@XZ -?GetGradient@Wallpaper@@QBE?AVGradient@@XZ -?GetRect@Wallpaper@@QBE?AVRectangle@@XZ -?IsFixed@Wallpaper@@QBEEXZ -?IsScrollable@Wallpaper@@QBEEXZ -?SetBitmap@Wallpaper@@QAEXABVBitmapEx@@@Z -?SetBitmap@Wallpaper@@QAEXXZ -?SetColor@Wallpaper@@QAEXABVColor@@@Z -?SetGradient@Wallpaper@@QAEXABVGradient@@@Z -?SetGradient@Wallpaper@@QAEXXZ -?SetRect@Wallpaper@@QAEXABVRectangle@@@Z -?SetRect@Wallpaper@@QAEXXZ -?SetStyle@Wallpaper@@QAEXW4WallpaperStyle@@@Z -??0OpenGL@@QAE@PAVOutputDevice@@@Z -??1OpenGL@@QAE@XZ -?AreTexturesResident@OpenGL@@QAEEHPBIPAE@Z -?ArrayElement@OpenGL@@QAEXH@Z -?Begin@OpenGL@@QAEXI@Z -?BindTexture@OpenGL@@QAEXII@Z -?BlendFunc@OpenGL@@QAEXII@Z -?Clear@OpenGL@@QAEXI@Z -?ClearDepth@OpenGL@@QAEXN@Z -?Color4ub@OpenGL@@QAEXEEEE@Z -?ColorPointer@OpenGL@@QAEXHIHPBX@Z -?CopyTexImage1D@OpenGL@@QAEXIHIHHHH@Z -?CopyTexImage2D@OpenGL@@QAEXIHIHHHHH@Z -?CopyTexSubImage1D@OpenGL@@QAEXIHHHHH@Z -?CopyTexSubImage2D@OpenGL@@QAEXIHHHHHHH@Z -?CullFace@OpenGL@@QAEXI@Z -?DeleteTextures@OpenGL@@QAEXHPBI@Z -?DepthFunc@OpenGL@@QAEXI@Z -?DepthMask@OpenGL@@QAEXE@Z -?Disable@OpenGL@@QAEXI@Z -?DisableClientState@OpenGL@@QAEXI@Z -?DrawArrays@OpenGL@@QAEXIHH@Z -?DrawElements@OpenGL@@QAEXIHIPBX@Z -?EdgeFlag@OpenGL@@QAEXE@Z -?EdgeFlagPointer@OpenGL@@QAEXHPBX@Z -?Enable@OpenGL@@QAEXI@Z -?EnableClientState@OpenGL@@QAEXI@Z -?End@OpenGL@@QAEXXZ -?Finish@OpenGL@@QAEXXZ -?Flush@OpenGL@@QAEXXZ -?GenTextures@OpenGL@@QAEXHPAI@Z -?GetIntegerv@OpenGL@@QAEXIPAH@Z -?GetTexLevelParameterfv@OpenGL@@QAEXIHIPAM@Z -?GetTexLevelParameteriv@OpenGL@@QAEXIHIPAH@Z -?GetTexParameterfv@OpenGL@@QAEXIIPAM@Z -?GetTexParameteriv@OpenGL@@QAEXIIPAH@Z -?IndexPointer@OpenGL@@QAEXIHPBX@Z -?InterleavedArrays@OpenGL@@QAEXIHPBX@Z -?IsTexture@OpenGL@@QAEEI@Z -?LightModelf@OpenGL@@QAEXIM@Z -?LightModelfv@OpenGL@@QAEXIPBM@Z -?Lightf@OpenGL@@QAEXIIM@Z -?Lightfv@OpenGL@@QAEXIIPBM@Z -?LineWidth@OpenGL@@QAEXM@Z -?LoadIdentity@OpenGL@@QAEXXZ -?LoadMatrixd@OpenGL@@QAEXPBN@Z -?Materialf@OpenGL@@QAEXIIM@Z -?Materialfv@OpenGL@@QAEXIIPBM@Z -?MatrixMode@OpenGL@@QAEXI@Z -?Normal3dv@OpenGL@@QAEXPBN@Z -?NormalPointer@OpenGL@@QAEXIHPBX@Z -?PixelStoref@OpenGL@@QAEXIM@Z -?PixelStorei@OpenGL@@QAEXIH@Z -?PixelTransferf@OpenGL@@QAEXIM@Z -?PixelTransferi@OpenGL@@QAEXIH@Z -?PointSize@OpenGL@@QAEXM@Z -?PolygonMode@OpenGL@@QAEXII@Z -?PolygonOffset@OpenGL@@QAEXMM@Z -?PrioritizeTextures@OpenGL@@QAEXHPBIPBM@Z -?Scissor@OpenGL@@QAEXHHHH@Z -?SetConnectOutputDevice@OpenGL@@QAEXPAVOutputDevice@@@Z -?ShadeModel@OpenGL@@QAEXI@Z -?TexCoord2dv@OpenGL@@QAEXPBN@Z -?TexCoord3dv@OpenGL@@QAEXPBN@Z -?TexCoordPointer@OpenGL@@QAEXHIHPBX@Z -?TexEnvf@OpenGL@@QAEXIIM@Z -?TexEnvfv@OpenGL@@QAEXIIPBM@Z -?TexEnvi@OpenGL@@QAEXIIH@Z -?TexEnviv@OpenGL@@QAEXIIPBH@Z -?TexGend@OpenGL@@QAEXIIN@Z -?TexGendv@OpenGL@@QAEXIIPBN@Z -?TexGenf@OpenGL@@QAEXIIM@Z -?TexGenfv@OpenGL@@QAEXIIPBM@Z -?TexGeni@OpenGL@@QAEXIIH@Z -?TexGeniv@OpenGL@@QAEXIIPBH@Z -?TexImage1D@OpenGL@@QAEXIHHHHIIPBX@Z -?TexImage2D@OpenGL@@QAEXIHHHHHIIPBX@Z -?TexParameterf@OpenGL@@QAEXIIM@Z -?TexParameterfv@OpenGL@@QAEXIIPBM@Z -?TexParameteri@OpenGL@@QAEXIIH@Z -?TexParameteriv@OpenGL@@QAEXIIPBH@Z -?TexSubImage1D@OpenGL@@QAEXIHHHIIPBX@Z -?TexSubImage2D@OpenGL@@QAEXIHHHHHIIPBX@Z -?Vertex3dv@OpenGL@@QAEXPBN@Z -?VertexPointer@OpenGL@@QAEXHIHPBX@Z -?Viewport@OpenGL@@QAEXHHHH@Z -??0Accelerator@@QAE@ABV0@@Z -??0Accelerator@@QAE@ABVResId@@@Z -??0Accelerator@@QAE@XZ -??0KeyCode@@QAE@GG@Z -??1Accelerator@@QAE@XZ -??1Table@@QAE@XZ -??4Accelerator@@QAEAAV0@ABV0@@Z -??_7Accelerator@@6B@ -??_GAccelerator@@QAEPAXI@Z -?Activate@Accelerator@@UAEXXZ -?Call@Accelerator@@QAEEABVKeyCode@@G@Z -?Clear@Accelerator@@QAEXXZ -?Clear@Table@@QAEXXZ -?Deactivate@Accelerator@@UAEXXZ -?EnableItem@Accelerator@@QAEXGE@Z -?EnableItem@Accelerator@@QAEXVKeyCode@@E@Z -?GetAccel@Accelerator@@QBEPAV1@G@Z -?GetAccel@Accelerator@@QBEPAV1@VKeyCode@@@Z -?GetClassRes@Resource@@KAPAXXZ -?GetItemCount@Accelerator@@QBEGXZ -?GetItemId@Accelerator@@QBEGABVKeyCode@@@Z -?GetItemId@Accelerator@@QBEGG@Z -?GetItemKeyCode@Accelerator@@QBE?AVKeyCode@@G@Z -?GetKeyCode@Accelerator@@QBE?AVKeyCode@@G@Z -?GetObjSizeRes@Resource@@KAGPAURSHEADER_TYPE@@@Z -?IncrementRes@Resource@@KAPAXG@Z -?InsertItem@Accelerator@@QAEXABVResId@@@Z -?InsertItem@Accelerator@@QAEXGABVKeyCode@@@Z -?IsFunction@KeyCode@@QBEEXZ -?IsIdValid@Accelerator@@QBEEG@Z -?IsItemEnabled@Accelerator@@QBEEG@Z -?IsItemEnabled@Accelerator@@QBEEVKeyCode@@@Z -?IsKeyCodeValid@Accelerator@@QBEEVKeyCode@@@Z -?ReadShortRes@Resource@@KAFXZ -?ReadStringRes@Resource@@KA?AVString@@XZ -?RemoveItem@Accelerator@@QAEXG@Z -?RemoveItem@Accelerator@@QAEXVKeyCode@@@Z -?Select@Accelerator@@UAEXXZ -?SetAccel@Accelerator@@QAEXGPAV1@@Z -?SetAccel@Accelerator@@QAEXVKeyCode@@PAV1@@Z -??0DecorationView@@QAE@PAVOutputDevice@@@Z -??0Pointer@@QAE@G@Z -?GetActivateMode@Window@@QBEGXZ -?GetActiveBorderColor@StyleSettings@@QBEABVColor@@XZ -?GetActiveColor2@StyleSettings@@QBEABVColor@@XZ -?GetActiveColor@StyleSettings@@QBEABVColor@@XZ -?GetActiveTextColor@StyleSettings@@QBEABVColor@@XZ -?GetBorderSize@StyleSettings@@QBEJXZ -?GetButtonTextColor@StyleSettings@@QBEABVColor@@XZ -?GetClicks@MouseEvent@@QBEGXZ -?GetDarkShadowColor@StyleSettings@@QBEABVColor@@XZ -?GetDeactiveBorderColor@StyleSettings@@QBEABVColor@@XZ -?GetDeactiveColor2@StyleSettings@@QBEABVColor@@XZ -?GetDeactiveTextColor@StyleSettings@@QBEABVColor@@XZ -?GetDragFullOptions@StyleSettings@@QBEKXZ -?GetFaceColor@StyleSettings@@QBEABVColor@@XZ -?GetFlags@DataChangedEvent@@QBEKXZ -?GetFloatTitleFont@StyleSettings@@QBEABVFont@@XZ -?GetFloatTitleHeight@StyleSettings@@QBEJXZ -?GetMode@HelpEvent@@QBEGXZ -?GetMouseEvent@TrackingEvent@@QBEABVMouseEvent@@XZ -?GetMousePosPixel@HelpEvent@@QBEABVPoint@@XZ -?GetPosPixel@MouseEvent@@QBEABVPoint@@XZ -?GetPosPixel@Window@@QBE?AVPoint@@XZ -?GetTearOffTitleHeight@StyleSettings@@QBEJXZ -?GetTitleFont@StyleSettings@@QBEABVFont@@XZ -?GetTitleHeight@StyleSettings@@QBEJXZ -?GetType@DataChangedEvent@@QBEGXZ -?IsActive@Window@@QBEEXZ -?IsInPopupMode@FloatingWindow@@QBEEXZ -?IsLeft@MouseEvent@@QBEEXZ -?IsPined@SystemWindow@@QBEEXZ -?IsReallyVisible@Window@@QBEEXZ -?IsRight@MouseEvent@@QBEEXZ -?IsRollUp@SystemWindow@@QBEEXZ -?IsSynthetic@MouseEvent@@QBEEXZ -?IsSystemWindow@Window@@QBEEXZ -?IsTrackingCanceled@TrackingEvent@@QBEEXZ -?IsTrackingEnded@TrackingEvent@@QBEEXZ -?SetPosSizePixel@Window@@QAEXABVPoint@@ABVSize@@@Z -?ShowQuickHelp@Help@@SAEPAVWindow@@ABVRectangle@@ABVString@@G@Z -??0ButtonDialog@@IAE@G@Z -??0ButtonDialog@@QAE@PAVWindow@@ABVResId@@@Z -??0ButtonDialog@@QAE@PAVWindow@@K@Z -??1ButtonDialog@@UAE@XZ -??1Dialog@@UAE@XZ -??1SystemWindow@@UAE@XZ -??7Link@@QBEEXZ -??_7ButtonDialog@@6B@ -??_GButtonDialog@@UAEPAXI@Z -?AddButton@ButtonDialog@@QAEXABVString@@GGJ@Z -?AddButton@ButtonDialog@@QAEXGGGJ@Z -?AddButton@ButtonDialog@@QAEXPAVPushButton@@GGJ@Z -?Clear@ButtonDialog@@QAEXXZ -?Click@ButtonDialog@@UAEXXZ -?GetButtonCount@ButtonDialog@@QBEGXZ -?GetButtonHelpId@ButtonDialog@@QBEKG@Z -?GetButtonHelpText@ButtonDialog@@QBE?AVString@@G@Z -?GetButtonId@ButtonDialog@@QBEGG@Z -?GetButtonText@ButtonDialog@@QBE?AVString@@G@Z -?GetCurButtonId@ButtonDialog@@QBEGXZ -?GetHelpId@Window@@QBEKXZ -?GetPushButton@ButtonDialog@@QBEPAVPushButton@@G@Z -?IsInExecute@Dialog@@QBEEXZ -?RemoveButton@ButtonDialog@@QAEXG@Z -?Resize@ButtonDialog@@UAEXXZ -?SetButtonHelpId@ButtonDialog@@QAEXGK@Z -?SetButtonHelpText@ButtonDialog@@QAEXGABVString@@@Z -?SetButtonText@ButtonDialog@@QAEXGABVString@@@Z -?SetClickHdl@Button@@QAEXABVLink@@@Z -?SetHelpId@Window@@QAEXK@Z -?SetHelpText@Window@@QAEXABVString@@@Z -?StateChanged@ButtonDialog@@UAEXG@Z -??0CommandExtTextInputData@@QAE@ABV0@@Z -??0CommandExtTextInputData@@QAE@ABVString@@PBGGGGGE@Z -??0CommandExtTextInputData@@QAE@XZ -??1CommandExtTextInputData@@QAE@XZ -??0Cursor@@QAE@ABV0@@Z -??0Cursor@@QAE@XZ -??1Cursor@@QAE@XZ -??4Cursor@@QAEAAV0@ABV0@@Z -??8Cursor@@QBEEABV0@@Z -?GetCursorBlinkTime@StyleSettings@@QBEJXZ -?GetCursorSize@StyleSettings@@QBEJXZ -?GetTimeout@Timer@@QBEKXZ -?Hide@Cursor@@QAEXXZ -?SetHeight@Cursor@@QAEXJ@Z -?SetOffsetY@Cursor@@QAEXJ@Z -?SetOrientation@Cursor@@QAEXF@Z -?SetPos@Cursor@@QAEXABVPoint@@@Z -?SetSize@Cursor@@QAEXABVSize@@@Z -?SetSlant@Cursor@@QAEXJ@Z -?SetStyle@Cursor@@QAEXG@Z -?SetWidth@Cursor@@QAEXJ@Z -?SetWindow@Cursor@@QAEXPAVWindow@@@Z -?Show@Cursor@@QAEXXZ -??0DockingWindow@@IAE@G@Z -??0DockingWindow@@QAE@PAVWindow@@ABVResId@@@Z -??0DockingWindow@@QAE@PAVWindow@@K@Z -??1DockingWindow@@UAE@XZ -??8Rectangle@@QBEEABV0@@Z -??_7DockingWindow@@6B@ -??_GDockingWindow@@UAEPAXI@Z -?Close@DockingWindow@@UAEEXZ -?DataChanged@DockingWindow@@UAEXABVDataChangedEvent@@@Z -?Docking@DockingWindow@@UAEEABVPoint@@AAVRectangle@@@Z -?EndDocking@DockingWindow@@UAEXABVRectangle@@E@Z -?GetBorder@Window@@QBEXAAJ000@Z -?GetControlBackground@Window@@QBE?AVColor@@XZ -?GetFloatStyle@DockingWindow@@QBEKXZ -?GetMinOutputSizePixel@SystemWindow@@QBEABVSize@@XZ -?GetMouseEvent@NotifyEvent@@QBEPBVMouseEvent@@XZ -?GetOutputSizePixel@DockingWindow@@QBE?AVSize@@XZ -?GetParent@Window@@QBEPAV1@XZ -?GetPosPixel@DockingWindow@@QBE?AVPoint@@XZ -?GetRollUpOutputSizePixel@SystemWindow@@QBE?AVSize@@XZ -?GetSizePixel@DockingWindow@@QBE?AVSize@@XZ -?GetType@NotifyEvent@@QBEGXZ -?GetWindow@NotifyEvent@@QBEPAVWindow@@XZ -?GetWindowColor@StyleSettings@@QBEABVColor@@XZ -?IsAlwaysEnableInput@Window@@QBEEXZ -?IsAlwaysOnTopEnabled@Window@@QBEEXZ -?IsControlBackground@Window@@QBEEXZ -?IsCreatedWithToolkit@Window@@QBEEXZ -?IsDockingCanceled@DockingWindow@@QBEEXZ -?IsEnabled@Window@@QBEEXZ -?IsFloatingMode@DockingWindow@@QBEEXZ -?IsInputEnabled@Window@@QBEEXZ -?IsMod1@MouseEvent@@QBEEXZ -?IsModifierChanged@MouseEvent@@QBEEXZ -?IsTitleButtonVisible@DockingWindow@@QBEEG@Z -?Notify@DockingWindow@@UAEJAAVNotifyEvent@@@Z -?Pin@DockingWindow@@UAEXXZ -?PopupModeEnd@DockingWindow@@UAEXXZ -?PrepareToggleFloatingMode@DockingWindow@@UAEEXZ -?Resizing@DockingWindow@@UAEXAAVSize@@@Z -?Roll@DockingWindow@@UAEXXZ -?SetFloatStyle@DockingWindow@@QAEXK@Z -?SetFloatingMode@DockingWindow@@QAEXE@Z -?SetFloatingPos@DockingWindow@@QAEXABVPoint@@@Z -?SetOutputSizePixel@DockingWindow@@QAEXABVSize@@@Z -?SetPosSizePixel@DockingWindow@@UAEXJJJJG@Z -?SetRollUpOutputSizePixel@SystemWindow@@QAEXABVSize@@@Z -?SetTabStop@DockingWindow@@QAEXXZ -?ShowTitleButton@DockingWindow@@QAEXGE@Z -?StartDocking@DockingWindow@@UAEXXZ -?StateChanged@DockingWindow@@UAEXG@Z -?TitleButtonClick@DockingWindow@@UAEXG@Z -?ToggleFloatingMode@DockingWindow@@UAEXXZ -?Tracking@DockingWindow@@UAEXABVTrackingEvent@@@Z -?DrawButton@DecorationView@@QAE?AVRectangle@@ABV2@G@Z -?DrawFrame@DecorationView@@QAE?AVRectangle@@ABV2@G@Z -?DrawFrame@DecorationView@@QAEXABVRectangle@@ABVColor@@1@Z -?DrawHighlightFrame@DecorationView@@QAEXABVRectangle@@G@Z -?DrawSymbol@DecorationView@@QAEXABVRectangle@@GABVColor@@G@Z -?GetCheckedColor@StyleSettings@@QBEABVColor@@XZ -?GetLightBorderColor@StyleSettings@@QBEABVColor@@XZ -?SetLineColor@BitmapWriteAccess@@QAEXABVBitmapColor@@@Z -??0Dialog@@IAE@G@Z -??0Dialog@@QAE@PAVWindow@@ABVResId@@@Z -??0Dialog@@QAE@PAVWindow@@K@Z -??0ModalDialog@@QAE@PAVWindow@@ABVResId@@@Z -??0ModalDialog@@QAE@PAVWindow@@K@Z -??0ModelessDialog@@QAE@PAVWindow@@ABVResId@@@Z -??0ModelessDialog@@QAE@PAVWindow@@K@Z -??0NotifyEvent@@QAE@GPAVWindow@@PBXJ@Z -??_7Dialog@@6B@ -??_7ModalDialog@@6B@ -??_7ModelessDialog@@6B@ -??_GDialog@@UAEPAXI@Z -??_GModalDialog@@UAEPAXI@Z -??_GModelessDialog@@UAEPAXI@Z -?Close@Dialog@@UAEEXZ -?DataChanged@Dialog@@UAEXABVDataChangedEvent@@@Z -?Draw@Dialog@@MAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?EndAllDialogs@Dialog@@SAXPAVWindow@@@Z -?EndDialog@Dialog@@QAEXJ@Z -?Execute@Dialog@@UAEFXZ -?GetCode@KeyCode@@QBEGXZ -?GetDialogColor@StyleSettings@@QBEABVColor@@XZ -?GetDrawWindowBorder@Dialog@@QBEXAAJ000@Z -?GetKeyCode@KeyEvent@@QBEABVKeyCode@@XZ -?GetKeyEvent@NotifyEvent@@QBEPBVKeyEvent@@XZ -?GetMouseSettings@AllSettings@@QBEABVMouseSettings@@XZ -?GetOptions@MouseSettings@@QBEKXZ -?GrabFocusToFirstControl@Dialog@@QAEXXZ -?IsDefaultPos@Window@@QBEEXZ -?IsDialog@Window@@QBEEXZ -?Notify@Dialog@@UAEJAAVNotifyEvent@@@Z -?SetModalInputMode@Dialog@@QAEXE@Z -?SetModalInputMode@Dialog@@QAEXEE@Z -?StateChanged@Dialog@@UAEXG@Z -??4?$Reference@VXCharacterClassification@i18n@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??BOUString@rtl@@QBEPBGXZ -??C?$Reference@VXCharacterClassification@i18n@star@sun@com@@@uno@star@sun@com@@QBAPAVXCharacterClassification@i18n@234@XZ -?GetCharCode@KeyEvent@@QBEGXZ -?GetDialogControlFlags@Window@@QBEGXZ -?IsDialogControlStart@Window@@QBEEXZ -?IsMod1@KeyCode@@QBEEXZ -?IsMod2@KeyCode@@QBEEXZ -?IsShift@KeyCode@@QBEEXZ -?set@?$Reference@VXCharacterClassification@i18n@star@sun@com@@@uno@star@sun@com@@QAAEPAVXCharacterClassification@i18n@345@@Z -??0VclFileDialog@@QAE@PAVWindow@@ABVResId@@@Z -??1ModalDialog@@UAE@XZ -??1VclFileDialog@@UAE@XZ -??_7VclFileDialog@@6B@ -??_GVclFileDialog@@UAEPAXI@Z -?AddControl@VclFileDialog@@UAEEPAVWindow@@E@Z -?ReleaseOwnerShip@VclFileDialog@@IAEXPAVWindow@@@Z -??0FloatingWindow@@QAE@PAVWindow@@ABVResId@@@Z -??0FloatingWindow@@QAE@PAVWindow@@K@Z -??1FloatingWindow@@UAE@XZ -??_7FloatingWindow@@6B@ -??_GFloatingWindow@@UAEPAXI@Z -?AddPopupModeWindow@FloatingWindow@@QAEXPAVWindow@@@Z -?DataChanged@FloatingWindow@@UAEXABVDataChangedEvent@@@Z -?EndPopupMode@FloatingWindow@@QAEXG@Z -?GetAlign@ToolBox@@QBE?AW4WindowAlign@@XZ -?GetDownItemId@ToolBox@@QBEGXZ -?GetPopupModeFlags@FloatingWindow@@QBEKXZ -?IsHorizontal@ToolBox@@QBEEXZ -?Notify@FloatingWindow@@UAEJAAVNotifyEvent@@@Z -?PopupModeEnd@FloatingWindow@@UAEXXZ -?RemovePopupModeWindow@FloatingWindow@@QAEXPAVWindow@@@Z -?SetTitleType@FloatingWindow@@QAEXG@Z -?StartPopupMode@FloatingWindow@@QAEXABVRectangle@@K@Z -?StartPopupMode@FloatingWindow@@QAEXPAVToolBox@@K@Z -?StateChanged@FloatingWindow@@UAEXG@Z -??0KeyCode@@QAE@ABVResId@@@Z -??0KeyCode@@QAE@W4KeyFuncType@@@Z -?GetFullCode@KeyCode@@QBEGXZ -?GetFunction@KeyCode@@QBE?AW4KeyFuncType@@XZ -?GetModifier@KeyCode@@QBEGXZ -?GetName@KeyCode@@QBE?AVString@@PAVWindow@@@Z -?GetSymbolName@KeyCode@@QBE?AVString@@ABV2@PAVWindow@@@Z -??0Menu@@IAE@XZ -??0MenuBar@@QAE@ABV0@@Z -??0MenuBar@@QAE@ABVResId@@@Z -??0MenuBar@@QAE@XZ -??0MenuItemData@@QAE@ABVString@@ABVImage@@@Z -??0MenuItemData@@QAE@XZ -??0MenuLogo@@QAE@ABU0@@Z -??0MenuLogo@@QAE@XZ -??0MouseEvent@@QAE@ABVPoint@@GGGG@Z -??0PopupMenu@@QAE@ABV0@@Z -??0PopupMenu@@QAE@ABVResId@@@Z -??0PopupMenu@@QAE@XZ -??1Menu@@UAE@XZ -??1MenuBar@@UAE@XZ -??1MenuItemData@@QAE@XZ -??1MenuLogo@@QAE@XZ -??1PopupMenu@@UAE@XZ -??4Menu@@QAEAAV0@ABV0@@Z -??4MenuBar@@QAEAAV0@ABV0@@Z -??4MenuLogo@@QAEAAU0@ABU0@@Z -??4PopupMenu@@QAEAAV0@ABV0@@Z -??7Image@@QBEEXZ -??8KeyCode@@QBEEABV0@@Z -??_7Menu@@6B@ -??_7MenuBar@@6B@ -??_7PopupMenu@@6B@ -??_GMenu@@UAEPAXI@Z -??_GMenuBar@@UAEPAXI@Z -??_GMenuItemData@@QAEPAXI@Z -??_GMenuLogo@@QAEPAXI@Z -??_GPopupMenu@@UAEPAXI@Z -?Activate@Menu@@UAEXXZ -?CheckItem@Menu@@QAEXGE@Z -?Clear@Menu@@QAEXXZ -?CopyItem@Menu@@QAEXABV1@GG@Z -?Deactivate@Menu@@UAEXXZ -?EnableItem@Menu@@QAEXGE@Z -?EndExecute@PopupMenu@@QAEXG@Z -?Execute@PopupMenu@@QAEGPAVWindow@@ABVPoint@@@Z -?Execute@PopupMenu@@QAEGPAVWindow@@ABVRectangle@@G@Z -?GetAccelKey@Menu@@QBE?AVKeyCode@@G@Z -?GetAccessObject@Menu@@QBEXAAVAccessObjectRef@@@Z -?GetActivePopupMenu@PopupMenu@@SAPAV1@XZ -?GetButtons@MouseEvent@@QBEGXZ -?GetCloserHdl@MenuBar@@QBEABVLink@@XZ -?GetCommand@CommandEvent@@QBEGXZ -?GetCurItemId@Menu@@QBEGXZ -?GetDelta@CommandWheelData@@QBEJXZ -?GetFloatButtonClickHdl@MenuBar@@QBEABVLink@@XZ -?GetFollow@MouseSettings@@QBEKXZ -?GetGroup@KeyCode@@QBEGXZ -?GetHelpId@Menu@@QBEKG@Z -?GetHelpText@Menu@@QBEABVString@@G@Z -?GetHideButtonClickHdl@MenuBar@@QBEABVLink@@XZ -?GetItemBits@Menu@@QBEGG@Z -?GetItemCommand@Menu@@QBEABVString@@G@Z -?GetItemCount@Menu@@QBEGXZ -?GetItemId@Menu@@QBEGG@Z -?GetItemImage@Menu@@QBE?AVImage@@G@Z -?GetItemPos@Menu@@QBEGG@Z -?GetItemText@Menu@@QBE?AVString@@G@Z -?GetItemType@Menu@@QBE?AW4MenuItemType@@G@Z -?GetLogo@Menu@@QBE?AUMenuLogo@@XZ -?GetMenuColor@StyleSettings@@QBEABVColor@@XZ -?GetMenuDelay@MouseSettings@@QBEKXZ -?GetMenuFont@StyleSettings@@QBEABVFont@@XZ -?GetMenuHighlightColor@StyleSettings@@QBEABVColor@@XZ -?GetMenuHighlightTextColor@StyleSettings@@QBEABVColor@@XZ -?GetMenuTextColor@StyleSettings@@QBEABVColor@@XZ -?GetMode@CommandWheelData@@QBEGXZ -?GetModifier@CommandWheelData@@QBEGXZ -?GetPopupMenu@Menu@@QBEPAVPopupMenu@@G@Z -?GetScrollBarSize@StyleSettings@@QBEJXZ -?GetUserValue@Menu@@QBEKG@Z -?GetWheelData@CommandEvent@@QBEPBVCommandWheelData@@XZ -?HasCloser@MenuBar@@QBEEXZ -?HasFloatButton@MenuBar@@QBEEXZ -?HasHideButton@MenuBar@@QBEEXZ -?HasValidEntries@Menu@@QAEEE@Z -?Highlight@Menu@@UAEXXZ -?InsertItem@Menu@@QAEXABVResId@@G@Z -?InsertItem@Menu@@QAEXGABVImage@@GG@Z -?InsertItem@Menu@@QAEXGABVString@@ABVImage@@GG@Z -?InsertItem@Menu@@QAEXGABVString@@GG@Z -?InsertSeparator@Menu@@QAEXG@Z -?IsControlMod@KeyCode@@QBEEXZ -?IsInExecute@PopupMenu@@SAEXZ -?IsItemChecked@Menu@@QBEEG@Z -?IsItemEnabled@Menu@@QBEEG@Z -?IsLeaveWindow@MouseEvent@@QBEEXZ -?ReadLongRes@Resource@@KAJXZ -?RemoveDisabledEntries@Menu@@QAEXEE@Z -?RemoveItem@Menu@@QAEXG@Z -?RequestHelp@Menu@@UAEXABVHelpEvent@@@Z -?Select@Menu@@UAEXXZ -?SelectEntry@MenuBar@@QAEXG@Z -?SelectEntry@PopupMenu@@QAEXG@Z -?SetAccelKey@Menu@@QAEXGABVKeyCode@@@Z -?SetDefaultItem@Menu@@QAEXG@Z -?SetHelpId@Menu@@QAEXGK@Z -?SetHelpText@Menu@@QAEXGABVString@@@Z -?SetItemBits@Menu@@QAEXGG@Z -?SetItemCommand@Menu@@QAEXGABVString@@@Z -?SetItemImage@Menu@@QAEXGABVImage@@@Z -?SetItemText@Menu@@QAEXGABVString@@@Z -?SetLogo@Menu@@QAEXABUMenuLogo@@@Z -?SetLogo@Menu@@QAEXXZ -?SetPopupMenu@Menu@@QAEXGPAVPopupMenu@@@Z -?SetPopupModeEndHdl@FloatingWindow@@QAEXABVLink@@@Z -?SetQuickHelpText@Window@@QAEXABVString@@@Z -?SetUserValue@Menu@@QAEXGK@Z -?ShowButtons@MenuBar@@QAEXEEE@Z -?ShowCloser@MenuBar@@QAEXE@Z -?ShowFloatButton@MenuBar@@QAEXE@Z -?ShowHideButton@MenuBar@@QAEXE@Z -??0ErrorBox@@QAE@PAVWindow@@ABVResId@@@Z -??0ErrorBox@@QAE@PAVWindow@@KABVString@@@Z -??0InfoBox@@QAE@PAVWindow@@ABVResId@@@Z -??0InfoBox@@QAE@PAVWindow@@ABVString@@@Z -??0MessBox@@IAE@G@Z -??0MessBox@@QAE@PAVWindow@@ABVResId@@@Z -??0MessBox@@QAE@PAVWindow@@KABVString@@1@Z -??0QueryBox@@QAE@PAVWindow@@ABVResId@@@Z -??0QueryBox@@QAE@PAVWindow@@KABVString@@@Z -??0TextRectInfo@@QAE@XZ -??0WarningBox@@QAE@PAVWindow@@ABVResId@@@Z -??0WarningBox@@QAE@PAVWindow@@KABVString@@@Z -??1MessBox@@UAE@XZ -??_7ErrorBox@@6B@ -??_7InfoBox@@6B@ -??_7MessBox@@6B@ -??_7QueryBox@@6B@ -??_7WarningBox@@6B@ -??_GErrorBox@@UAEPAXI@Z -??_GInfoBox@@UAEPAXI@Z -??_GMessBox@@UAEPAXI@Z -??_GQueryBox@@UAEPAXI@Z -??_GWarningBox@@UAEPAXI@Z -?GetCheckBoxState@MessBox@@QBEEXZ -?GetMaxLineWidth@TextRectInfo@@QBEJXZ -?GetStandardImage@ErrorBox@@SA?AVImage@@XZ -?GetStandardImage@InfoBox@@SA?AVImage@@XZ -?GetStandardImage@QueryBox@@SA?AVImage@@XZ -?GetStandardImage@WarningBox@@SA?AVImage@@XZ -?SetCheckBoxState@MessBox@@QAEXE@Z -?SetDefaultCheckBoxText@MessBox@@QAEXXZ -?SetImage@MessBox@@QAEXABVImage@@@Z -?SetMessText@MessBox@@QAEXABVString@@@Z -?SetPageSizePixel@ButtonDialog@@QAEXABVSize@@@Z -?StateChanged@MessBox@@UAEXG@Z -??0MouseEvent@@QAE@XZ -??0SelectionEngine@@QAE@PAVWindow@@PAVFunctionSet@@@Z -??1SelectionEngine@@QAE@XZ -?ActivateDragMode@SelectionEngine@@QAEXXZ -?Command@SelectionEngine@@QAEXABVCommandEvent@@@Z -?CursorPosChanging@SelectionEngine@@QAEXEE@Z -?GetMode@MouseEvent@@QBEGXZ -?GetModifier@MouseEvent@@QBEGXZ -?GetMousePosPixel@CommandEvent@@QBEABVPoint@@XZ -?ImpWatchDog@SelectionEngine@@AAEJPAVTimer@@@Z -?IsAddMode@SelectionEngine@@QBEEXZ -?IsAlwaysAdding@SelectionEngine@@QBEEXZ -?LinkStubImpWatchDog@SelectionEngine@@CAJPAX0@Z -?Reset@SelectionEngine@@QAEXXZ -?SelMouseButtonDown@SelectionEngine@@QAEEABVMouseEvent@@@Z -?SelMouseButtonUp@SelectionEngine@@QAEEABVMouseEvent@@@Z -?SelMouseMove@SelectionEngine@@QAEEABVMouseEvent@@@Z -?SetSelectionMode@SelectionEngine@@QAEXW4SelectionMode@@@Z -?SetWindow@SelectionEngine@@QAEXPAVWindow@@@Z -??0Splitter@@QAE@PAVWindow@@ABVResId@@@Z -??0Splitter@@QAE@PAVWindow@@K@Z -??1Splitter@@UAE@XZ -??_7Splitter@@6B@ -??_GSplitter@@UAEPAXI@Z -?GetSplitSize@StyleSettings@@QBEJXZ -?MouseButtonDown@Splitter@@UAEXABVMouseEvent@@@Z -?SetDragRectPixel@Splitter@@QAEXABVRectangle@@PAVWindow@@@Z -?SetLastSplitPosPixel@Splitter@@QAEXJ@Z -?SetSplitPosPixel@Splitter@@UAEXJ@Z -?Split@Splitter@@UAEXXZ -?Splitting@Splitter@@UAEXAAVPoint@@@Z -?StartDrag@Splitter@@QAEXXZ -?StartSplit@Splitter@@UAEXXZ -?Tracking@Splitter@@UAEXABVTrackingEvent@@@Z -??0SplitWindow@@QAE@PAVWindow@@ABVResId@@@Z -??0SplitWindow@@QAE@PAVWindow@@K@Z -??1SplitWindow@@UAE@XZ -??_7SplitWindow@@6B@ -??_GSplitWindow@@UAEPAXI@Z -??_GWallpaper@@QAEPAXI@Z -?AutoHide@SplitWindow@@UAEXXZ -?CalcWindowSizePixel@SplitWindow@@SA?AVSize@@ABV2@W4WindowAlign@@KE@Z -?Clear@SplitWindow@@QAEXXZ -?DataChanged@SplitWindow@@UAEXABVDataChangedEvent@@@Z -?Erase@OutputDevice@@QAEXABVRectangle@@@Z -?FadeIn@SplitWindow@@UAEXXZ -?FadeOut@SplitWindow@@UAEXXZ -?GetAutoHideRect@SplitWindow@@QBE?AVRectangle@@XZ -?GetBaseSet@SplitWindow@@QBEGXZ -?GetFadeInRect@SplitWindow@@QBE?AVRectangle@@XZ -?GetFadeInSize@SplitWindow@@QBEJXZ -?GetFadeOutRect@SplitWindow@@QBE?AVRectangle@@XZ -?GetItemBackground@SplitWindow@@QBE?AVWallpaper@@G@Z -?GetItemBitmap@SplitWindow@@QBE?AVBitmap@@G@Z -?GetItemBits@SplitWindow@@QBEGG@Z -?GetItemCount@SplitWindow@@QBEGG@Z -?GetItemId@SplitWindow@@QBEGABVPoint@@@Z -?GetItemId@SplitWindow@@QBEGGG@Z -?GetItemId@SplitWindow@@QBEGPAVWindow@@@Z -?GetItemPos@SplitWindow@@QBEGGG@Z -?GetItemSize@SplitWindow@@QBEJG@Z -?GetItemSize@SplitWindow@@QBEJGG@Z -?GetItemWindow@SplitWindow@@QBEPAVWindow@@G@Z -?GetSet@SplitWindow@@QBEEGAAG0@Z -?GetSet@SplitWindow@@QBEGG@Z -?GetSplitSize@SplitWindow@@QBEJG@Z -?InsertItem@SplitWindow@@QAEXGJGGG@Z -?InsertItem@SplitWindow@@QAEXGPAVWindow@@JGGG@Z -?IsItemBackground@SplitWindow@@QBEEG@Z -?IsItemValid@SplitWindow@@QBEEG@Z -?IsMod2@MouseEvent@@QBEEXZ -?IsReallyShown@Window@@QBEEXZ -?IsUpdateMode@Window@@QBEEXZ -?MouseButtonDown@SplitWindow@@UAEXABVMouseEvent@@@Z -?MouseMove@SplitWindow@@UAEXABVMouseEvent@@@Z -?Move@SplitWindow@@UAEXXZ -?MoveItem@SplitWindow@@QAEXGGG@Z -?Paint@SplitWindow@@UAEXABVRectangle@@@Z -?RemoveItem@SplitWindow@@QAEXGE@Z -?RequestHelp@SplitWindow@@UAEXABVHelpEvent@@@Z -?Resize@SplitWindow@@UAEXXZ -?SetAlign@SplitWindow@@QAEXW4WindowAlign@@@Z -?SetAutoHideState@SplitWindow@@QAEXE@Z -?SetBaseSet@SplitWindow@@QAEXG@Z -?SetItemBackground@SplitWindow@@QAEXG@Z -?SetItemBackground@SplitWindow@@QAEXGABVWallpaper@@@Z -?SetItemBitmap@SplitWindow@@QAEXGABVBitmap@@@Z -?SetItemBits@SplitWindow@@QAEXGG@Z -?SetItemSize@SplitWindow@@QAEXGJ@Z -?SetNoAlign@SplitWindow@@QAEXE@Z -?SetPosSizePixel@DockingWindow@@QAEXABVPoint@@ABVSize@@@Z -?SetSplitSize@SplitWindow@@QAEXGJE@Z -?ShowAutoHideButton@SplitWindow@@QAEXE@Z -?ShowFadeInHideButton@SplitWindow@@QAEXE@Z -?ShowFadeOutButton@SplitWindow@@QAEXE@Z -?Split@SplitWindow@@UAEXXZ -?SplitItem@SplitWindow@@QAEXGJEE@Z -?SplitResize@SplitWindow@@UAEXXZ -?StartSplit@SplitWindow@@UAEXXZ -?StateChanged@SplitWindow@@UAEXG@Z -?Tracking@SplitWindow@@UAEXABVTrackingEvent@@@Z -??0StatusBar@@QAE@PAVWindow@@ABVResId@@@Z -??0StatusBar@@QAE@PAVWindow@@K@Z -??0UserDrawEvent@@QAE@PAVOutputDevice@@ABVRectangle@@GG@Z -??1StatusBar@@UAE@XZ -??_7StatusBar@@6B@ -??_GStatusBar@@UAEPAXI@Z -?AreItemsVisible@StatusBar@@QBEEXZ -?CalcWindowSizePixel@StatusBar@@QBE?AVSize@@XZ -?Clear@StatusBar@@QAEXXZ -?Click@StatusBar@@UAEXXZ -?CopyItems@StatusBar@@QAEXABV1@@Z -?DataChanged@StatusBar@@UAEXABVDataChangedEvent@@@Z -?DoubleClick@StatusBar@@UAEXXZ -?DrawProgress@@YAXPAVWindow@@ABVPoint@@JJJGGG@Z -?EndProgressMode@StatusBar@@QAEXXZ -?GetControlForeground@Window@@QBE?AVColor@@XZ -?GetHelpId@StatusBar@@QBEKG@Z -?GetHelpText@StatusBar@@QBEABVString@@G@Z -?GetItemBits@StatusBar@@QBEGG@Z -?GetItemCount@StatusBar@@QBEGXZ -?GetItemData@StatusBar@@QBEPAXG@Z -?GetItemId@StatusBar@@QBEGABVPoint@@@Z -?GetItemId@StatusBar@@QBEGG@Z -?GetItemOffset@StatusBar@@QBEJG@Z -?GetItemPos@StatusBar@@QBEGG@Z -?GetItemRect@StatusBar@@QBE?AVRectangle@@G@Z -?GetItemText@StatusBar@@QBEABVString@@G@Z -?GetItemTextPos@StatusBar@@QBE?AVPoint@@G@Z -?GetItemWidth@StatusBar@@QBEKG@Z -?GetToolFont@StyleSettings@@QBEABVFont@@XZ -?GetWindowTextColor@StyleSettings@@QBEABVColor@@XZ -?HideItem@StatusBar@@QAEXG@Z -?HideItems@StatusBar@@QAEXXZ -?InsertItem@StatusBar@@QAEXGKGJG@Z -?IsControlFont@Window@@QBEEXZ -?IsControlForeground@Window@@QBEEXZ -?IsItemVisible@StatusBar@@QBEEG@Z -?MouseButtonDown@StatusBar@@UAEXABVMouseEvent@@@Z -?Move@StatusBar@@UAEXXZ -?Paint@StatusBar@@UAEXABVRectangle@@@Z -?RemoveItem@StatusBar@@QAEXG@Z -?RequestHelp@StatusBar@@UAEXABVHelpEvent@@@Z -?Resize@StatusBar@@UAEXXZ -?SetBottomBorder@StatusBar@@QAEXE@Z -?SetHelpId@StatusBar@@QAEXGK@Z -?SetHelpText@StatusBar@@QAEXGABVString@@@Z -?SetItemData@StatusBar@@QAEXGPAX@Z -?SetItemText@StatusBar@@QAEXGABVString@@@Z -?SetProgressValue@StatusBar@@QAEXG@Z -?SetText@StatusBar@@UAEXABVString@@@Z -?ShowItem@StatusBar@@QAEXG@Z -?ShowItems@StatusBar@@QAEXXZ -?StartProgressMode@StatusBar@@QAEXABVString@@@Z -?StateChanged@StatusBar@@UAEXG@Z -?UserDraw@StatusBar@@UAEXABVUserDrawEvent@@@Z -??0SystemChildWindow@@QAE@PAVWindow@@ABVResId@@@Z -??0SystemChildWindow@@QAE@PAVWindow@@K@Z -??1SystemChildWindow@@UAE@XZ -??_7SystemChildWindow@@6B@ -??_GSystemChildWindow@@UAEPAXI@Z -?GetSystemData@SystemChildWindow@@QBEPBUSystemEnvData@@XZ -??0SystemWindow@@IAE@G@Z -??_7SystemWindow@@6B@ -??_GSystemWindow@@UAEPAXI@Z -?Close@SystemWindow@@UAEEXZ -?EnableSaveBackground@SystemWindow@@QAEXE@Z -?GetMenuBar@SystemWindow@@QBEPAVMenuBar@@XZ -?GetResizeOutputSizePixel@SystemWindow@@QBE?AVSize@@XZ -?GetZLevel@SystemWindow@@QBEEXZ -?IsSaveBackgroundEnabled@SystemWindow@@QBEEXZ -?IsTitleButtonVisible@SystemWindow@@QBEEG@Z -?Notify@SystemWindow@@UAEJAAVNotifyEvent@@@Z -?Pin@SystemWindow@@UAEXXZ -?Resizing@SystemWindow@@UAEXAAVSize@@@Z -?Roll@SystemWindow@@UAEXXZ -?RollDown@SystemWindow@@QAEXXZ -?RollUp@SystemWindow@@QAEXXZ -?SetMenuBar@SystemWindow@@QAEXPAVMenuBar@@@Z -?SetMenuBarMode@SystemWindow@@QAEXG@Z -?SetMinOutputSizePixel@SystemWindow@@QAEXABVSize@@@Z -?SetPin@SystemWindow@@QAEXE@Z -?SetZLevel@SystemWindow@@QAEXE@Z -?ShowTitleButton@SystemWindow@@QAEXGE@Z -?TitleButtonClick@SystemWindow@@UAEXG@Z -??0TabDialog@@QAE@PAVWindow@@ABVResId@@@Z -??0TabDialog@@QAE@PAVWindow@@K@Z -??1TabDialog@@UAE@XZ -??_7TabDialog@@6B@ -??_GTabDialog@@UAEPAXI@Z -?AdjustLayout@TabDialog@@QAEXXZ -?Resize@TabDialog@@UAEXXZ -?StateChanged@TabDialog@@UAEXG@Z -??0TabPage@@QAE@PAVWindow@@ABVResId@@@Z -??0TabPage@@QAE@PAVWindow@@K@Z -??_7TabPage@@6B@ -??_GTabPage@@UAEPAXI@Z -?ActivatePage@TabPage@@UAEXXZ -?DataChanged@TabPage@@UAEXABVDataChangedEvent@@@Z -?DeactivatePage@TabPage@@UAEXXZ -?EnableChildTransparentMode@Window@@QAEXE@Z -?IsChildTransparentModeEnabled@Window@@QBEEXZ -?StateChanged@TabPage@@UAEXG@Z -??0Pointer@@QAE@XZ -??0ToolBox@@QAE@PAVWindow@@ABVResId@@@Z -??0ToolBox@@QAE@PAVWindow@@K@Z -??0ToolBoxCustomizeEvent@@QAE@PAVToolBox@@GGPAX@Z -??1ToolBox@@UAE@XZ -??_7ToolBox@@6B@ -??_GToolBox@@UAEPAXI@Z -?CalcWindowSizePixel@ToolBox@@QBE?AVSize@@G@Z -?Command@ToolBox@@UAEXABVCommandEvent@@@Z -?DataChanged@ToolBox@@UAEXABVDataChangedEvent@@@Z -?Docking@ToolBox@@UAEEABVPoint@@AAVRectangle@@@Z -?EnableCustomize@ToolBox@@QAEXE@Z -?EnableMenuStrings@ToolBox@@QAEXE@Z -?EndCustomizeMode@ToolBox@@SAXXZ -?EndDocking@ToolBox@@UAEXABVRectangle@@E@Z -?GetAccessObject@ToolBox@@QBEXAAVAccessObjectRef@@@Z -?GetAppFont@StyleSettings@@QBEABVFont@@XZ -?GetCurItemId@Accelerator@@QBEGXZ -?GetFieldColor@StyleSettings@@QBEABVColor@@XZ -?GetFieldTextColor@StyleSettings@@QBEABVColor@@XZ -?IsCustomizeMode@ToolBox@@SAEXZ -?IsDockingPrevented@DockingWindow@@QBEEXZ -?IsMouseEvent@CommandEvent@@QBEEXZ -?IsTrackingRepeat@TrackingEvent@@QBEEXZ -?MouseButtonDown@ToolBox@@UAEXABVMouseEvent@@@Z -?MouseButtonUp@ToolBox@@UAEXABVMouseEvent@@@Z -?MouseMove@ToolBox@@UAEXABVMouseEvent@@@Z -?Move@ToolBox@@UAEXXZ -?Notify@ToolBox@@UAEJAAVNotifyEvent@@@Z -?Paint@ToolBox@@UAEXABVRectangle@@@Z -?PrepareToggleFloatingMode@ToolBox@@UAEEXZ -?RequestHelp@ToolBox@@UAEXABVHelpEvent@@@Z -?Resize@ToolBox@@UAEXXZ -?Resizing@ToolBox@@UAEXAAVSize@@@Z -?SetFloatingLines@ToolBox@@QAEXG@Z -?SetSelectHdl@Accelerator@@QAEXABVLink@@@Z -?SetSettings@OutputDevice@@QAEXABVAllSettings@@@Z -?ShowLine@ToolBox@@QAEXE@Z -?StartCustomize@ToolBox@@QAEXABVRectangle@@PAX@Z -?StartCustomizeMode@ToolBox@@SAXXZ -?StartDocking@ToolBox@@UAEXXZ -?StateChanged@ToolBox@@UAEXG@Z -?ToggleFloatingMode@ToolBox@@UAEXXZ -?Tracking@ToolBox@@UAEXABVTrackingEvent@@@Z -?Activate@ToolBox@@UAEXXZ -?Clear@ToolBox@@QAEXXZ -?Click@ToolBox@@UAEXXZ -?CopyItem@ToolBox@@QAEXABV1@GG@Z -?CopyItems@ToolBox@@QAEXABV1@@Z -?Customize@ToolBox@@UAEXABVToolBoxCustomizeEvent@@@Z -?Deactivate@ToolBox@@UAEXXZ -?DoubleClick@ToolBox@@UAEXXZ -?EnableItem@ToolBox@@QAEXGE@Z -?EndSelection@ToolBox@@QAEXXZ -?GetHelpId@ToolBox@@QBEKG@Z -?GetHelpText@ToolBox@@QBEABVString@@G@Z -?GetItemBits@ToolBox@@QBEGG@Z -?GetItemCommand@ToolBox@@QBEABVString@@G@Z -?GetItemCount@ToolBox@@QBEGXZ -?GetItemData@ToolBox@@QBEPAXG@Z -?GetItemHighImage@ToolBox@@QBE?AVImage@@G@Z -?GetItemId@ToolBox@@QBEGABVPoint@@@Z -?GetItemId@ToolBox@@QBEGG@Z -?GetItemImage@ToolBox@@QBE?AVImage@@G@Z -?GetItemPos@ToolBox@@QBEGG@Z -?GetItemRect@ToolBox@@QBE?AVRectangle@@G@Z -?GetItemState@ToolBox@@QBE?AW4TriState@@G@Z -?GetItemText@ToolBox@@QBEABVString@@G@Z -?GetItemType@ToolBox@@QBE?AW4ToolBoxItemType@@G@Z -?GetItemWindow@ToolBox@@QBEPAVWindow@@G@Z -?GetQuickHelpText@ToolBox@@QBEABVString@@G@Z -?Highlight@ToolBox@@UAEXXZ -?InsertBreak@ToolBox@@QAEXG@Z -?InsertItem@ToolBox@@QAEXABVResId@@G@Z -?InsertItem@ToolBox@@QAEXGABVImage@@ABVString@@GG@Z -?InsertItem@ToolBox@@QAEXGABVImage@@GG@Z -?InsertItem@ToolBox@@QAEXGABVString@@GG@Z -?InsertSeparator@ToolBox@@QAEXGG@Z -?InsertSpace@ToolBox@@QAEXG@Z -?InsertWindow@ToolBox@@QAEXGPAVWindow@@GG@Z -?IsItemDown@ToolBox@@QBEEG@Z -?IsItemEnabled@ToolBox@@QBEEG@Z -?IsItemVisible@ToolBox@@QBEEG@Z -?MoveItem@ToolBox@@QAEXGG@Z -?NextToolBox@ToolBox@@UAEXXZ -?RecalcItems@ToolBox@@QAEXXZ -?RemoveItem@ToolBox@@QAEXG@Z -?Select@ToolBox@@UAEXXZ -?SetAlign@ToolBox@@QAEXW4WindowAlign@@@Z -?SetBorder@ToolBox@@QAEXJJ@Z -?SetButtonType@ToolBox@@QAEXW4ButtonType@@@Z -?SetHelpId@ToolBox@@QAEXGK@Z -?SetHelpText@ToolBox@@QAEXGABVString@@@Z -?SetItemBits@ToolBox@@QAEXGG@Z -?SetItemCommand@ToolBox@@QAEXGABVString@@@Z -?SetItemData@ToolBox@@QAEXGPAX@Z -?SetItemDown@ToolBox@@QAEXGEE@Z -?SetItemHighImage@ToolBox@@QAEXGABVImage@@@Z -?SetItemImage@ToolBox@@QAEXGABVImage@@@Z -?SetItemState@ToolBox@@QAEXGW4TriState@@@Z -?SetItemText@ToolBox@@QAEXGABVString@@@Z -?SetItemWindow@ToolBox@@QAEXGPAVWindow@@@Z -?SetLineCount@ToolBox@@QAEXG@Z -?SetNextToolBox@ToolBox@@QAEXABVString@@@Z -?SetOutStyle@ToolBox@@QAEXG@Z -?SetQuickHelpText@ToolBox@@QAEXGABVString@@@Z -?ShowItem@ToolBox@@QAEXGE@Z -?StartSelection@ToolBox@@QAEXXZ -?UserDraw@ToolBox@@UAEXABVUserDrawEvent@@@Z -??0?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4__UnoReference_Query@1234@@Z -??0?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@PAVXClipboard@clipboard@datatransfer@234@@Z -??0?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4__UnoReference_Query@1234@@Z -??0?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4__UnoReference_Query@1234@@Z -??0?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4__UnoReference_Query@1234@@Z -??0?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXWindowPeer@awt@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXWindowPeer@awt@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Sequence@C@uno@star@sun@com@@QAE@PBCJ@Z -??0?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@QAE@J@Z -??0ClassData2@cppu@@QAE@J@Z -??0ClassData4@cppu@@QAE@J@Z -??0InputContext@@QAE@XZ -??0Window@@IAE@G@Z -??0Window@@QAE@PAV0@ABVResId@@@Z -??0Window@@QAE@PAV0@K@Z -??1?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXWindowPeer@awt@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Sequence@C@uno@star@sun@com@@QAE@XZ -??1?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1ClassData2@cppu@@QAE@XZ -??1ClassData4@cppu@@QAE@XZ -??1Exception@uno@star@sun@com@@QAE@XZ -??1InputContext@@QAE@XZ -??1RuntimeException@uno@star@sun@com@@QAE@XZ -??1Window@@UAE@XZ -??4?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??4?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??4?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??4?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXDropTargetListener@dnd@datatransfer@234@@Z -??4?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXInterface@1234@@Z -??4?$Reference@VXWindowPeer@awt@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??4Any@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??4InputContext@@QAEAAV0@ABV0@@Z -??8InputContext@@QBEEABV0@@Z -??8Pointer@@QBEEABV0@@Z -??A?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@QAAAAVAny@1234@J@Z -??C?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QBAPAVXDropTarget@dnd@datatransfer@234@XZ -??_3uno@star@sun@com@@YAXAAVAny@0123@ABV?$Sequence@C@0123@@Z -??_7Window@@6B@ -??_C@_0CK@BIFDOJKF@com?4sun?4star?4datatransfer?4dnd?4XD@ -??_C@_0CK@NLPBHBOE@com?4sun?4star?4datatransfer?4dnd?4XD@ -??_C@_0CP@MHDBDKCB@com?4sun?4star?4datatransfer?4clipbo@ -??_C@_0DF@OKIGLNBA@com?4sun?4star?4datatransfer?4dnd?4XD@ -??_GWindow@@UAEPAXI@Z -?Activate@Window@@UAEXXZ -?AlwaysEnableInput@Window@@QAEXEE@Z -?CalcTitleWidth@Window@@QBEJXZ -?CaptureMouse@Window@@QAEXXZ -?Command@Window@@UAEXABVCommandEvent@@@Z -?DataChanged@Window@@UAEXABVDataChangedEvent@@@Z -?Deactivate@Window@@UAEXXZ -?Draw@Window@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?Enable@Window@@QAEXEE@Z -?EnableAlwaysOnTop@Window@@QAEXE@Z -?EnableChildPointerOverwrite@Window@@QAEXE@Z -?EnableClipSiblings@Window@@QAEXE@Z -?EnableInput@Window@@QAEXEE@Z -?EnableInput@Window@@QAEXEEEPBV1@@Z -?EndExtTextInput@Window@@QAEXG@Z -?EnterWait@Window@@QAEXXZ -?FindWindow@Window@@QBEPAV1@ABVPoint@@@Z -?Flush@Window@@QAEXXZ -?GetBorderStyle@Window@@QBEGXZ -?GetChild@Window@@QBEPAV1@G@Z -?GetChildCount@Window@@QBEGXZ -?GetClipboard@Window@@UAE?AV?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@XZ -?GetComponentInterface@Window@@UAE?AV?$Reference@VXWindowPeer@awt@star@sun@com@@@uno@star@sun@com@@E@Z -?GetCursorExtTextInputWidth@Window@@QBEJXZ -?GetCursorRect@Window@@QBEPBVRectangle@@XZ -?GetDragGestureRecognizer@Window@@UAE?AV?$Reference@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@XZ -?GetDragSource@Window@@UAE?AV?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@XZ -?GetDragSourceDropTarget@Window@@QAEXAAV?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@AAV?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@3456@@Z -?GetDropTarget@Window@@UAE?AV?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@XZ -?GetFieldFont@StyleSettings@@QBEABVFont@@XZ -?GetFocus@Window@@UAEXXZ -?GetFont@InputContext@@QBEABVFont@@XZ -?GetFontResolution@Window@@QBEXAAJ0@Z -?GetGroupFont@StyleSettings@@QBEABVFont@@XZ -?GetHelpText@Window@@QBEABVString@@XZ -?GetIconFont@StyleSettings@@QBEABVFont@@XZ -?GetId@RSHEADER_TYPE@@QAEGXZ -?GetInfoFont@StyleSettings@@QBEABVFont@@XZ -?GetInputContext@Window@@QBEABVInputContext@@XZ -?GetLabelFont@StyleSettings@@QBEABVFont@@XZ -?GetLastInputInterval@Window@@QBEKXZ -?GetLongRes@Resource@@KAJPAX@Z -?GetOptions@InputContext@@QBEKXZ -?GetPaintRegion@Window@@QBE?AVRegion@@XZ -?GetParentClipMode@Window@@QBEGXZ -?GetPointFont@Window@@QBE?AVFont@@XZ -?GetPointer@Window@@QBEABVPointer@@XZ -?GetPointerPosPixel@Window@@QAE?AVPoint@@XZ -?GetPushButtonFont@StyleSettings@@QBEABVFont@@XZ -?GetRT@RSHEADER_TYPE@@QAEFXZ -?GetRadioCheckFont@StyleSettings@@QBEABVFont@@XZ -?GetScreenFontZoom@StyleSettings@@QBEGXZ -?GetScreenZoom@StyleSettings@@QBEGXZ -?GetSelection@Window@@UAE?AV?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@XZ -?GetStyle@Pointer@@QBEGXZ -?GetSystemData@Window@@QBEPBUSystemEnvData@@XZ -?GetSystemDataAny@Window@@QBE?AVAny@uno@star@sun@com@@XZ -?GetSystemWindow@Window@@QBEPAVSystemWindow@@XZ -?GetText@Window@@UBE?AVString@@XZ -?GetWindow@Window@@QBEPAV1@G@Z -?GetWindowClipRegionPixel@Window@@QBE?AVRegion@@G@Z -?GetWindowRegionPixel@Window@@QBEABVRegion@@XZ -?GetWindowUpdate@AllSettings@@QBEKXZ -?GrabFocus@Window@@QAEXXZ -?HasChildPathFocus@Window@@QBEEE@Z -?HasFocus@Window@@QBEEXZ -?HasPaintEvent@Window@@QBEEXZ -?Invalidate@Window@@QAEXABVRectangle@@G@Z -?Invalidate@Window@@QAEXABVRegion@@G@Z -?Invalidate@Window@@QAEXG@Z -?IsChild@Window@@QBEEPBV1@E@Z -?IsLocked@Window@@QBEEEE@Z -?IsMouseCaptured@Window@@QBEEXZ -?IsPaintEnabled@Window@@QBEEXZ -?IsPaintTransparent@Window@@QBEEXZ -?IsUICaptured@Window@@QBEEE@Z -?IsUserActive@Window@@QBEEGE@Z -?IsWindowOrChild@Window@@QBEEPBV1@E@Z -?IsWindowRegionPixel@Window@@QBEEXZ -?KeyInput@Window@@UAEXABVKeyEvent@@@Z -?KeyUp@Window@@UAEXABVKeyEvent@@@Z -?LeaveWait@Window@@QAEXXZ -?LoseFocus@Window@@UAEXXZ -?MouseButtonDown@Window@@UAEXABVMouseEvent@@@Z -?MouseButtonUp@Window@@UAEXABVMouseEvent@@@Z -?MouseMove@Window@@UAEXABVMouseEvent@@@Z -?Move@Window@@UAEXXZ -?Notify@Window@@UAEJAAVNotifyEvent@@@Z -?NotifyAllChilds@Window@@QAEXAAVDataChangedEvent@@@Z -?OutputToScreenPixel@Window@@QBE?AVPoint@@ABV2@@Z -?Paint@Window@@UAEXABVRectangle@@@Z -?PostStateChanged@Window@@QAEXG@Z -?PostUserEvent@Window@@QAEEAAKABVLink@@PAX@Z -?PostUserEvent@Window@@QAEEAAKKPAX@Z -?PostUserEvent@Window@@QAEKABVLink@@PAX@Z -?PostUserEvent@Window@@QAEKKPAX@Z -?PreNotify@Window@@UAEJAAVNotifyEvent@@@Z -?ReleaseMouse@Window@@QAEXXZ -?RemoveUserEvent@Window@@QAEXK@Z -?RequestHelp@Window@@UAEXABVHelpEvent@@@Z -?Resize@Window@@UAEXXZ -?ScreenToOutputPixel@Window@@QBE?AVPoint@@ABV2@@Z -?Scroll@Window@@QAEXJJABVRectangle@@G@Z -?Scroll@Window@@QAEXJJG@Z -?SetActivateMode@Window@@QAEXG@Z -?SetAppFont@StyleSettings@@QAEXABVFont@@@Z -?SetBorderStyle@Window@@QAEXG@Z -?SetComponentInterface@Window@@UAEXV?$Reference@VXWindowPeer@awt@star@sun@com@@@uno@star@sun@com@@@Z -?SetCursor@Window@@QAEXPAVCursor@@@Z -?SetCursorRect@Window@@QAEXPBVRectangle@@J@Z -?SetData@Window@@QAEXPAX@Z -?SetExtendedStyle@Window@@QAEXK@Z -?SetFieldFont@StyleSettings@@QAEXABVFont@@@Z -?SetFloatTitleFont@StyleSettings@@QAEXABVFont@@@Z -?SetGroupFont@StyleSettings@@QAEXABVFont@@@Z -?SetHelpFont@StyleSettings@@QAEXABVFont@@@Z -?SetIconFont@StyleSettings@@QAEXABVFont@@@Z -?SetInfoFont@StyleSettings@@QAEXABVFont@@@Z -?SetInputContext@Window@@QAEXABVInputContext@@@Z -?SetLabelFont@StyleSettings@@QAEXABVFont@@@Z -?SetMenuFont@StyleSettings@@QAEXABVFont@@@Z -?SetMouseTransparent@Window@@QAEXE@Z -?SetPaintTransparent@Window@@QAEXE@Z -?SetParent@Window@@QAEXPAV1@@Z -?SetParentClipMode@Window@@QAEXG@Z -?SetPointFont@Window@@QAEXABVFont@@@Z -?SetPointer@Window@@QAEXABVPointer@@@Z -?SetPointerPosPixel@Window@@QAEXABVPoint@@@Z -?SetPosSizePixel@Window@@UAEXJJJJG@Z -?SetPushButtonFont@StyleSettings@@QAEXABVFont@@@Z -?SetRadioCheckFont@StyleSettings@@QAEXABVFont@@@Z -?SetSettings@Window@@QAEXABVAllSettings@@E@Z -?SetStyle@Window@@QAEXK@Z -?SetStyleSettings@AllSettings@@QAEXABVStyleSettings@@@Z -?SetText@Window@@UAEXABVString@@@Z -?SetTitleFont@StyleSettings@@QAEXABVFont@@@Z -?SetToolFont@StyleSettings@@QAEXABVFont@@@Z -?SetUniqueId@Window@@QAEXK@Z -?SetUpdateMode@Window@@QAEXE@Z -?SetWindowPeer@Window@@QAEXV?$Reference@VXWindowPeer@awt@star@sun@com@@@uno@star@sun@com@@PAVVCLXWindow@@@Z -?SetWindowRegionPixel@Window@@QAEXABVRegion@@@Z -?SetWindowRegionPixel@Window@@QAEXXZ -?SetZOrder@Window@@QAEXPAV1@G@Z -?Show@Window@@QAEXEG@Z -?ShowPointer@Window@@QAEXE@Z -?StackTop@ResMgr@@QBEPBUImpRCStack@@G@Z -?StateChanged@Window@@UAEXG@Z -?Sync@Window@@QAEXXZ -?ToTop@Window@@QAEXG@Z -?Tracking@Window@@UAEXABVTrackingEvent@@@Z -?Update@Window@@QAEXXZ -?UpdateSettings@Window@@QAEXABVAllSettings@@E@Z -?UserEvent@Window@@UAEXKPAX@Z -?Validate@Window@@QAEXABVRectangle@@G@Z -?Validate@Window@@QAEXABVRegion@@G@Z -?Validate@Window@@QAEXG@Z -?__query@?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXClipboard@clipboard@datatransfer@345@PAVXInterface@2345@@Z -?__query@?$Reference@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXDragGestureRecognizer@dnd@datatransfer@345@PAVXInterface@2345@@Z -?__query@?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXDragSource@dnd@datatransfer@345@PAVXInterface@2345@@Z -?__query@?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXDropTarget@dnd@datatransfer@345@PAVXInterface@2345@@Z -?clear@?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAXXZ -?clear@?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAXXZ -?clear@?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAXXZ -?clear@?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAXXZ -?getCppuType@@YAABVType@uno@star@sun@com@@PBC@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBK@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@C@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@VAny@uno@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBVAny@2345@@Z -?makeAny@uno@star@sun@com@@YA?AVAny@1234@ABK@Z -?s_pType@?$Sequence@C@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType@?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_datatransfer_clipboard_XClipboard@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_datatransfer_dnd_XDragGestureRecognizer@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_datatransfer_dnd_XDragSource@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_datatransfer_dnd_XDropTarget@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?set@?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAEPAVXClipboard@clipboard@datatransfer@345@@Z -?set@?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAEPAVXDragSource@dnd@datatransfer@345@@Z -?set@?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAEPAVXDropTarget@dnd@datatransfer@345@@Z -?set@?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAEPAVXDropTargetListener@dnd@datatransfer@345@@Z -?set@?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAAEPAVXInterface@2345@@Z -?set@?$Reference@VXWindowPeer@awt@star@sun@com@@@uno@star@sun@com@@QAAEPAVXWindowPeer@awt@345@@Z -??0TrackingEvent@@QAE@ABVMouseEvent@@G@Z -??9@YAEABVFraction@@0@Z -??_GAutoTimer@@QAEPAXI@Z -?CalcOutputSize@Window@@QBE?AVSize@@ABV2@@Z -?CalcWindowSize@Window@@QBE?AVSize@@ABV2@@Z -?CalcZoom@Window@@QBEJJ@Z -?EndAutoScroll@Window@@QAEXXZ -?EndSaveFocus@Window@@SAEKE@Z -?EndTracking@Window@@QAEXG@Z -?GetAccessObject@Window@@QBEXAAVAccessObjectRef@@@Z -?GetAutoScrollData@CommandEvent@@QBEPBVCommandScrollData@@XZ -?GetButtonRepeat@MouseSettings@@QBEKXZ -?GetButtonStartRepeat@MouseSettings@@QBEKXZ -?GetControlFont@Window@@QBE?AVFont@@XZ -?GetDeltaX@CommandScrollData@@QBEJXZ -?GetDeltaY@CommandScrollData@@QBEJXZ -?GetDrawPixel@Window@@QBEJPAVOutputDevice@@J@Z -?GetDrawPixelFont@Window@@QBE?AVFont@@PAVOutputDevice@@@Z -?GetLineSize@ScrollBar@@QBEJXZ -?GetNotchDelta@CommandWheelData@@QBEJXZ -?GetPageSize@ScrollBar@@QBEJXZ -?GetRangeMax@ScrollBar@@QBEJXZ -?GetScrollLines@CommandWheelData@@QBEKXZ -?GetScrollRepeat@MouseSettings@@QBEKXZ -?GetThumbPos@ScrollBar@@QBEJXZ -?GetType@FontInfo@@QBE?AW4FontType@@XZ -?GetVisibleSize@ScrollBar@@QBEJXZ -?GetZoom@Window@@QBEABVFraction@@XZ -?HandleScrollCommand@Window@@QAEEABVCommandEvent@@PAVScrollBar@@1@Z -?HideFocus@Window@@QAEXXZ -?HideTracking@Window@@QAEXXZ -?Invert@Window@@QAEXABVPolygon@@G@Z -?Invert@Window@@QAEXABVRectangle@@G@Z -?InvertTracking@Window@@QAEXABVPolygon@@G@Z -?InvertTracking@Window@@QAEXABVRectangle@@G@Z -?IsAutoScroll@Window@@QBEEXZ -?IsHorz@CommandWheelData@@QBEEXZ -?IsTracking@Window@@QBEEXZ -?SaveBackground@Window@@QAEXABVPoint@@ABVSize@@0AAVVirtualDevice@@@Z -?SaveFocus@Window@@SAKXZ -?SetControlBackground@Window@@QAEXABVColor@@@Z -?SetControlBackground@Window@@QAEXXZ -?SetControlFont@Window@@QAEXABVFont@@@Z -?SetControlFont@Window@@QAEXXZ -?SetControlForeground@Window@@QAEXABVColor@@@Z -?SetControlForeground@Window@@QAEXXZ -?SetZoom@Window@@QAEXABVFraction@@@Z -?SetZoomedPointFont@Window@@QAEXABVFont@@@Z -?ShowFocus@Window@@QAEXABVRectangle@@@Z -?ShowTracking@Window@@QAEXABVRectangle@@G@Z -?SnapShot@Window@@QBE?AVBitmap@@XZ -?StartAutoScroll@Window@@QAEXG@Z -?StartTracking@Window@@QAEXG@Z -?WinFloatRound@@YAJN@Z -_real@41dfffffffc00000 -_real@c1e0000000000000 -??0?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@PAVXInterface@1234@@Z -??0CommandEvent@@QAE@ABVPoint@@GEPBX@Z -??0CommandInputContextData@@QAE@G@Z -??0CommandWheelData@@QAE@JJKGGE@Z -??0EventObject@lang@star@sun@com@@QAE@ABV?$Reference@VXInterface@uno@star@sun@com@@@uno@234@@Z -??0InputEvent@awt@star@sun@com@@QAE@ABV?$Reference@VXInterface@uno@star@sun@com@@@uno@234@ABF@Z -??0KeyEvent@@QAE@GABVKeyCode@@G@Z -??0MouseEvent@awt@star@sun@com@@QAE@ABV?$Reference@VXInterface@uno@star@sun@com@@@uno@234@ABF1ABJ22ABE@Z -??1EventObject@lang@star@sun@com@@QAE@XZ -??1InputEvent@awt@star@sun@com@@QAE@XZ -??1MouseEvent@awt@star@sun@com@@QAE@XZ -??_C@_0BM@GAAFHFDL@com?4sun?4star?4awt?4InputEvent?$AA@ -??_C@_0BM@HCEPLGDF@com?4sun?4star?4awt?4MouseEvent?$AA@ -??_C@_0BO@OOPPOINB@com?4sun?4star?4lang?4EventObject?$AA@ -?GetCommandEvent@NotifyEvent@@QBEPBVCommandEvent@@XZ -?GetContextMenuClicks@MouseSettings@@QBEGXZ -?GetContextMenuCode@MouseSettings@@QBEGXZ -?GetContextMenuDown@MouseSettings@@QBEEXZ -?GetCursor@Window@@QBEPAVCursor@@XZ -?GetDoubleClickHeight@MouseSettings@@QBEJXZ -?GetDoubleClickTime@MouseSettings@@QBEKXZ -?GetDoubleClickWidth@MouseSettings@@QBEJXZ -?GetMiddleButtonAction@MouseSettings@@QBEGXZ -?GetPos@Cursor@@QBEABVPoint@@XZ -?GetSize@Cursor@@QBEABVSize@@XZ -?GetStartDragCode@MouseSettings@@QBEGXZ -?GetStartDragWidth@MouseSettings@@QBEJXZ -?get@?$Reference@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QBAPAVXDragGestureRecognizer@dnd@datatransfer@345@XZ -?getCppuType@@YAABVType@uno@star@sun@com@@PBF@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBUEventObject@lang@345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBUInputEvent@awt@345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBUMouseEvent@awt@345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInterface@uno@star@sun@com@@@2345@@Z -?makeAny@uno@star@sun@com@@YA?AVAny@1234@ABUMouseEvent@awt@234@@Z -?s_pType_com_sun_star_awt_InputEvent@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUInputEvent@awt@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_awt_MouseEvent@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUMouseEvent@awt@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_lang_EventObject@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUEventObject@lang@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??0?$Sequence@C@uno@star@sun@com@@QAE@XZ -??0WorkWindow@@IAE@G@Z -??0WorkWindow@@QAE@PAUSystemParentData@@@Z -??0WorkWindow@@QAE@PAVWindow@@ABVAny@uno@star@sun@com@@K@Z -??0WorkWindow@@QAE@PAVWindow@@ABVResId@@@Z -??0WorkWindow@@QAE@PAVWindow@@K@Z -??1WorkWindow@@UAE@XZ -??_2uno@star@sun@com@@YAEABVAny@0123@AAV?$Sequence@C@0123@@Z -??_7WorkWindow@@6B@ -??_GWorkWindow@@UAEPAXI@Z -?Copy@ByteString@@QBE?AV1@GG@Z -?GetRT@ResId@@QBEFXZ -?GetWindowState@WorkWindow@@QBE?AVByteString@@XZ -?IsFullScreenMode@WorkWindow@@QBEEXZ -?IsMinimized@WorkWindow@@QBEEXZ -?SetIcon@WorkWindow@@QAEXG@Z -?SetWindowState@WorkWindow@@QAEXABVByteString@@@Z -?ShowFullScreenMode@WorkWindow@@QAEXE@Z -?StartPresentationMode@WorkWindow@@QAEXEG@Z -?getArray@?$Sequence@C@uno@star@sun@com@@QAAPACXZ -??0CommandScrollData@@QAE@JJ@Z -??0CommandScrollData@@QAE@XZ -??_GTimer@@QAEPAXI@Z -_real@3fd999999999999a -_real@402e000000000000 -_real@4036800000000000 -_real@404ca5dc1a63c7eb -_real@4050e00000000000 -_real@405c200000000000 -_real@4063b00000000000 -_real@4066800000000000 -_real@4069500000000000 -_real@406ef00000000000 -_real@4070e00000000000 -_real@4072480000000000 -_real@4072c00000000000 -_real@4075180000000000 -_real@4076800000000000 -??0?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@PAVXDropTargetDragContext@dnd@datatransfer@234@@Z -??0?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0OClearableGuard@vos@@QAE@AAVIMutex@1@@Z -??0XDropTargetDragContext@dnd@datatransfer@star@sun@com@@QAE@XZ -??0XTypeProvider@lang@star@sun@com@@QAE@XZ -??1?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1OClearableGuard@vos@@UAE@XZ -??4?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??C?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QBAPAVXDropTargetDragContext@dnd@datatransfer@234@XZ -??C?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QBAPAVXDropTargetDropContext@dnd@datatransfer@234@XZ -??_7OClearableGuard@vos@@6B@ -??_C@_0CF@LOBAJAKI@com?4sun?4star?4datatransfer?4DataFl@ -??_C@_0DF@DOJIDEIC@com?4sun?4star?4datatransfer?4dnd?4XD@ -??_GOClearableGuard@vos@@UAEPAXI@Z -?clear@OClearableGuard@vos@@QAAXXZ -?get@?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QBAPAVXDropTarget@dnd@datatransfer@345@XZ -?getCppuType@@YAABVType@uno@star@sun@com@@PBUDataFlavor@datatransfer@345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV12345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBVOUString@rtl@@@Z -?realloc@?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAXJ@Z -?s_pType@?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_datatransfer_DataFlavor@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUDataFlavor@datatransfer@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_datatransfer_dnd_XDropTargetDragContext@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??0?$Reference@VXDragGestureListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4__UnoReference_Query@1234@@Z -??0?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@PAVXDropTargetDropContext@dnd@datatransfer@234@@Z -??0?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4__UnoReference_Query@1234@@Z -??0?$Reference@VXTransferable@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0DragGestureEvent@dnd@datatransfer@star@sun@com@@QAE@ABV?$Reference@VXInterface@uno@star@sun@com@@@uno@345@ABCABJ2ABV?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@7345@ABVAny@7345@@Z -??0DropTargetDragEnterEvent@dnd@datatransfer@star@sun@com@@QAE@ABV?$Reference@VXInterface@uno@star@sun@com@@@uno@345@ABCABV?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@7345@1ABJ31ABV?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@7345@@Z -??0DropTargetDragEvent@dnd@datatransfer@star@sun@com@@QAE@ABV?$Reference@VXInterface@uno@star@sun@com@@@uno@345@ABCABV?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@7345@1ABJ31@Z -??0DropTargetDropEvent@dnd@datatransfer@star@sun@com@@QAE@ABV?$Reference@VXInterface@uno@star@sun@com@@@uno@345@ABCABV?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@7345@1ABJ31ABV?$Reference@VXTransferable@datatransfer@star@sun@com@@@7345@@Z -??0DropTargetEvent@dnd@datatransfer@star@sun@com@@QAE@ABV?$Reference@VXInterface@uno@star@sun@com@@@uno@345@ABC@Z -??0XDragGestureRecognizer@dnd@datatransfer@star@sun@com@@QAE@XZ -??0XDropTarget@dnd@datatransfer@star@sun@com@@QAE@XZ -??0XDropTargetDropContext@dnd@datatransfer@star@sun@com@@QAE@XZ -??1?$Reference@VXDragGestureListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXTransferable@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1DragGestureEvent@dnd@datatransfer@star@sun@com@@QAE@XZ -??1DropTargetDragEnterEvent@dnd@datatransfer@star@sun@com@@QAE@XZ -??1DropTargetDragEvent@dnd@datatransfer@star@sun@com@@QAE@XZ -??1DropTargetDropEvent@dnd@datatransfer@star@sun@com@@QAE@XZ -??1DropTargetEvent@dnd@datatransfer@star@sun@com@@QAE@XZ -??4?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??4?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??B?$Reference@VXDragGestureListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QBAABV?$Reference@VXInterface@uno@star@sun@com@@@1234@XZ -??B?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QBAABV?$Reference@VXInterface@uno@star@sun@com@@@1234@XZ -??C?$Reference@VXDragGestureListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QBAPAVXDragGestureListener@dnd@datatransfer@234@XZ -??C?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QBAPAVXDropTargetListener@dnd@datatransfer@234@XZ -??_C@_0DF@OIPACLIJ@com?4sun?4star?4datatransfer?4dnd?4XD@ -?__query@?$Reference@VXDragGestureListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXDragGestureListener@dnd@datatransfer@345@PAVXInterface@2345@@Z -?__query@?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXDropTargetListener@dnd@datatransfer@345@PAVXInterface@2345@@Z -?addListener@?$OBroadcastHelperVar@VOMultiTypeInterfaceContainerHelper@cppu@@VType@uno@star@sun@com@@@cppu@@QAEXABVType@uno@star@sun@com@@ABV?$Reference@VXInterface@uno@star@sun@com@@@4567@@Z -?clear@?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAXXZ -?clear@?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAXXZ -?getContainer@?$OBroadcastHelperVar@VOMultiTypeInterfaceContainerHelper@cppu@@VType@uno@star@sun@com@@@cppu@@QBAPAVOInterfaceContainerHelper@2@ABVType@uno@star@sun@com@@@Z -?hasMoreElements@OInterfaceIteratorHelper@cppu@@QBAEXZ -?removeListener@?$OBroadcastHelperVar@VOMultiTypeInterfaceContainerHelper@cppu@@VType@uno@star@sun@com@@@cppu@@QAEXABVType@uno@star@sun@com@@ABV?$Reference@VXInterface@uno@star@sun@com@@@4567@@Z -?s_pType_com_sun_star_datatransfer_dnd_XDropTargetDropContext@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?set@?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAEPAVXDropTargetDragContext@dnd@datatransfer@345@@Z -?set@?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAEPAVXDropTargetDropContext@dnd@datatransfer@345@@Z -??0Button@@IAE@G@Z -??0Button@@QAE@PAVWindow@@ABVResId@@@Z -??0Button@@QAE@PAVWindow@@K@Z -??0CancelButton@@QAE@PAVWindow@@ABVResId@@@Z -??0CancelButton@@QAE@PAVWindow@@K@Z -??0CheckBox@@QAE@PAVWindow@@ABVResId@@@Z -??0CheckBox@@QAE@PAVWindow@@K@Z -??0HelpButton@@QAE@PAVWindow@@ABVResId@@@Z -??0HelpButton@@QAE@PAVWindow@@K@Z -??0ImageButton@@IAE@G@Z -??0ImageButton@@QAE@PAVWindow@@ABVResId@@@Z -??0ImageButton@@QAE@PAVWindow@@K@Z -??0ImageRadioButton@@QAE@PAVWindow@@ABVResId@@@Z -??0ImageRadioButton@@QAE@PAVWindow@@K@Z -??0InputContext@@QAE@ABVFont@@K@Z -??0OKButton@@QAE@PAVWindow@@ABVResId@@@Z -??0OKButton@@QAE@PAVWindow@@K@Z -??0PushButton@@IAE@G@Z -??0PushButton@@QAE@PAVWindow@@ABVResId@@@Z -??0PushButton@@QAE@PAVWindow@@K@Z -??0RadioButton@@QAE@PAVWindow@@ABVResId@@@Z -??0RadioButton@@QAE@PAVWindow@@K@Z -??0TriStateBox@@QAE@PAVWindow@@ABVResId@@@Z -??0TriStateBox@@QAE@PAVWindow@@K@Z -??1Button@@UAE@XZ -??1CheckBox@@UAE@XZ -??1Control@@UAE@XZ -??1ImageButton@@UAE@XZ -??1ImageRadioButton@@UAE@XZ -??1PushButton@@UAE@XZ -??1RadioButton@@UAE@XZ -??1TriStateBox@@UAE@XZ -??9Image@@QBEEABV0@@Z -??_7Button@@6B@ -??_7CancelButton@@6B@ -??_7CheckBox@@6B@ -??_7HelpButton@@6B@ -??_7ImageButton@@6B@ -??_7ImageRadioButton@@6B@ -??_7OKButton@@6B@ -??_7PushButton@@6B@ -??_7RadioButton@@6B@ -??_7TriStateBox@@6B@ -??_GButton@@UAEPAXI@Z -??_GCancelButton@@UAEPAXI@Z -??_GCheckBox@@UAEPAXI@Z -??_GHelpButton@@UAEPAXI@Z -??_GImageButton@@UAEPAXI@Z -??_GImageRadioButton@@UAEPAXI@Z -??_GOKButton@@UAEPAXI@Z -??_GPushButton@@UAEPAXI@Z -??_GRadioButton@@UAEPAXI@Z -??_GTriStateBox@@UAEPAXI@Z -?CalcMinimumSize@CheckBox@@QBE?AVSize@@J@Z -?CalcMinimumSize@PushButton@@QBE?AVSize@@J@Z -?CalcMinimumSize@RadioButton@@QBE?AVSize@@J@Z -?Check@RadioButton@@QAEXE@Z -?Click@Button@@UAEXXZ -?Click@CancelButton@@UAEXXZ -?Click@HelpButton@@UAEXXZ -?Click@OKButton@@UAEXXZ -?DataChanged@CheckBox@@UAEXABVDataChangedEvent@@@Z -?DataChanged@PushButton@@UAEXABVDataChangedEvent@@@Z -?DataChanged@RadioButton@@UAEXABVDataChangedEvent@@@Z -?Draw@CheckBox@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?Draw@PushButton@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?Draw@RadioButton@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?EnableTriState@CheckBox@@QAEXE@Z -?EndSelection@PushButton@@QAEXXZ -?GetBitmap@PushButton@@QBE?AVBitmapEx@@XZ -?GetCheckBoxStyle@StyleSettings@@QBEGXZ -?GetCheckImage@CheckBox@@SA?AVImage@@ABVAllSettings@@G@Z -?GetClickHdl@Button@@QBEABVLink@@XZ -?GetFocus@CheckBox@@UAEXXZ -?GetFocus@PushButton@@UAEXXZ -?GetFocus@RadioButton@@UAEXXZ -?GetPrevStyle@Window@@QBEKXZ -?GetPushButtonStyle@StyleSettings@@QBEGXZ -?GetRadioButtonStyle@StyleSettings@@QBEGXZ -?GetRadioCheckTextColor@StyleSettings@@QBEABVColor@@XZ -?GetRadioImage@RadioButton@@SA?AVImage@@ABVAllSettings@@G@Z -?GetStandardHelpText@Button@@SA?AVString@@G@Z -?GetStandardText@Button@@SA?AVString@@G@Z -?GetState@PushButton@@QBE?AW4TriState@@XZ -?IsChecked@PushButton@@QBEEXZ -?IsImage@PushButton@@IBEEXZ -?IsInClose@Dialog@@QBEEXZ -?IsSymbol@PushButton@@IBEEXZ -?IsZoom@Window@@QBEEXZ -?KeyInput@CheckBox@@UAEXABVKeyEvent@@@Z -?KeyInput@PushButton@@UAEXABVKeyEvent@@@Z -?KeyInput@RadioButton@@UAEXABVKeyEvent@@@Z -?KeyUp@CheckBox@@UAEXABVKeyEvent@@@Z -?KeyUp@PushButton@@UAEXABVKeyEvent@@@Z -?KeyUp@RadioButton@@UAEXABVKeyEvent@@@Z -?LoseFocus@CheckBox@@UAEXXZ -?LoseFocus@PushButton@@UAEXXZ -?LoseFocus@RadioButton@@UAEXXZ -?MouseButtonDown@CheckBox@@UAEXABVMouseEvent@@@Z -?MouseButtonDown@PushButton@@UAEXABVMouseEvent@@@Z -?MouseButtonDown@RadioButton@@UAEXABVMouseEvent@@@Z -?Paint@CheckBox@@UAEXABVRectangle@@@Z -?Paint@PushButton@@UAEXABVRectangle@@@Z -?Paint@RadioButton@@UAEXABVRectangle@@@Z -?Resize@CheckBox@@UAEXXZ -?Resize@PushButton@@UAEXXZ -?Resize@RadioButton@@UAEXXZ -?SetBitmap@PushButton@@QAEXABVBitmapEx@@@Z -?SetDropDown@PushButton@@QAEXG@Z -?SetImage@PushButton@@QAEXABVImage@@@Z -?SetImage@RadioButton@@QAEXABVImage@@@Z -?SetImageAlign@PushButton@@QAEXW4ImageAlign@@@Z -?SetPressed@PushButton@@QAEXE@Z -?SetState@CheckBox@@QAEXW4TriState@@@Z -?SetState@PushButton@@QAEXW4TriState@@@Z -?SetState@RadioButton@@QAEXE@Z -?SetSymbol@PushButton@@QAEXG@Z -?StateChanged@CheckBox@@UAEXG@Z -?StateChanged@PushButton@@UAEXG@Z -?StateChanged@RadioButton@@UAEXG@Z -?Toggle@CheckBox@@UAEXXZ -?Toggle@PushButton@@UAEXXZ -?Toggle@RadioButton@@UAEXXZ -?Tracking@CheckBox@@UAEXABVTrackingEvent@@@Z -?Tracking@PushButton@@UAEXABVTrackingEvent@@@Z -?Tracking@RadioButton@@UAEXABVTrackingEvent@@@Z -?UserDraw@PushButton@@UAEXABVUserDrawEvent@@@Z -?setHeight@Rectangle@@QAEXJ@Z -?setWidth@Rectangle@@QAEXJ@Z -??0Control@@IAE@G@Z -??0Control@@QAE@PAVWindow@@ABVResId@@@Z -??0Control@@QAE@PAVWindow@@K@Z -??_7Control@@6B@ -??_GControl@@UAEPAXI@Z -?GetFocus@Control@@UAEXXZ -?LoseFocus@Control@@UAEXXZ -?Notify@Control@@UAEJAAVNotifyEvent@@@Z -??0ComboBox@@IAE@G@Z -??0ComboBox@@QAE@PAVWindow@@ABVResId@@@Z -??0ComboBox@@QAE@PAVWindow@@K@Z -??0Selection@@QAE@JJ@Z -??1ComboBox@@UAE@XZ -??_7ComboBox@@6BControl@@@ -??_7ComboBox@@6BDragAndDropClient@unohelper@vcl@@@ -??_GComboBox@@UAEPAXI@Z -?CalcAdjustedSize@ComboBox@@QBE?AVSize@@ABV2@@Z -?CalcMinimumSize@ComboBox@@QBE?AVSize@@XZ -?CalcSize@ComboBox@@QBE?AVSize@@GG@Z -?CalcWindowSizePixel@ComboBox@@QBEJG@Z -?Clear@ComboBox@@QAEXXZ -?DataChanged@ComboBox@@UAEXABVDataChangedEvent@@@Z -?DoubleClick@ComboBox@@UAEXXZ -?Draw@ComboBox@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?DrawEntry@ComboBox@@QAEXABVUserDrawEvent@@EEE@Z -?EnableAutoSize@ComboBox@@QAEXE@Z -?EnableAutocomplete@ComboBox@@QAEXEE@Z -?EnableMultiSelection@ComboBox@@QAEXE@Z -?EnableUserDraw@ComboBox@@QAEXE@Z -?GetAutocompleteAction@Edit@@QBE?AW4AutocompleteAction@@XZ -?GetAutocompleteHdl@Edit@@QBEABVLink@@XZ -?GetDisableColor@StyleSettings@@QBEABVColor@@XZ -?GetDropDownLineCount@ComboBox@@QBEGXZ -?GetEntry@ComboBox@@QBE?AVString@@G@Z -?GetEntryCount@ComboBox@@QBEGXZ -?GetEntryData@ComboBox@@QBEPAXG@Z -?GetEntryPos@ComboBox@@QBEGABVString@@@Z -?GetEntryPos@ComboBox@@QBEGPBX@Z -?GetItemId@UserDrawEvent@@QBEGXZ -?GetMRUEntries@ComboBox@@QBE?AVString@@G@Z -?GetMaxMRUCount@ComboBox@@QBEGXZ -?GetMaxVisColumnsAndLines@ComboBox@@QBEXAAG0@Z -?GetSeparatorPos@ComboBox@@QBEGXZ -?GetToken@String@@QBE?AV1@GG@Z -?GetUserItemSize@ComboBox@@QBEABVSize@@XZ -?InsertEntry@ComboBox@@QAEGABVString@@ABVImage@@G@Z -?InsertEntry@ComboBox@@QAEGABVString@@G@Z -?IsAutoSizeEnabled@ComboBox@@QBEEXZ -?IsAutocompleteEnabled@ComboBox@@QBEEXZ -?IsDropDownBox@ComboBox@@IBEEXZ -?IsInDropDown@ComboBox@@QBEEXZ -?IsMultiSelectionEnabled@ComboBox@@QBEEXZ -?IsReadOnly@Edit@@QBEEXZ -?IsTravelSelect@ComboBox@@QBEEXZ -?IsUserDrawEnabled@ComboBox@@QBEEXZ -?Len@Selection@@QBEJXZ -?Max@Selection@@QAEAAJXZ -?Min@Selection@@QAEAAJXZ -?Modify@ComboBox@@UAEXXZ -?Notify@ComboBox@@UAEJAAVNotifyEvent@@@Z -?PreNotify@ComboBox@@UAEJAAVNotifyEvent@@@Z -?RemoveEntry@ComboBox@@QAEXABVString@@@Z -?RemoveEntry@ComboBox@@QAEXG@Z -?Resize@ComboBox@@UAEXXZ -?Select@ComboBox@@UAEXXZ -?SetCompoundControl@Window@@IAEXE@Z -?SetDropDownLineCount@ComboBox@@QAEXG@Z -?SetEntryData@ComboBox@@QAEXGPAX@Z -?SetMRUEntries@ComboBox@@QAEXABVString@@G@Z -?SetMaxMRUCount@ComboBox@@QAEXG@Z -?SetPosSizePixel@ComboBox@@UAEXJJJJG@Z -?SetSeparatorPos@ComboBox@@QAEXG@Z -?SetSeparatorPos@ComboBox@@QAEXXZ -?SetText@ComboBox@@UAEXABVString@@@Z -?SetText@ComboBox@@UAEXABVString@@ABVSelection@@@Z -?SetUserItemSize@ComboBox@@QAEXABVSize@@@Z -?StateChanged@ComboBox@@UAEXG@Z -?UserDraw@ComboBox@@UAEXABVUserDrawEvent@@@Z -??0?$Reference@VXClipboardOwner@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@PAVXClipboardOwner@clipboard@datatransfer@234@@Z -??0?$Reference@VXDragSourceListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXFlushableClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4__UnoReference_Query@1234@@Z -??0?$Reference@VXTransferable@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@PAVXTransferable@datatransfer@234@@Z -??0?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@J@Z -??0DDInfo@@QAE@XZ -??0DataFlavor@datatransfer@star@sun@com@@QAE@XZ -??0DragAndDropClient@unohelper@vcl@@QAE@XZ -??0Edit@@IAE@G@Z -??0Edit@@QAE@PAVWindow@@ABVResId@@@Z -??0Edit@@QAE@PAVWindow@@K@Z -??0Exception@uno@star@sun@com@@QAE@ABV01234@@Z -??0Exception@uno@star@sun@com@@QAE@XZ -??0KeyCode@@QAE@GEEE@Z -??0OGuard@vos@@QAE@AAVIMutex@1@@Z -??0Selection@@QAE@XZ -??0TextDataObject@@QAE@ABVString@@@Z -??0Type@uno@star@sun@com@@QAE@XZ -??0UnsupportedFlavorException@datatransfer@star@sun@com@@QAE@ABV01234@@Z -??0UnsupportedFlavorException@datatransfer@star@sun@com@@QAE@XZ -??0XTransferable@datatransfer@star@sun@com@@QAE@XZ -??1?$Reference@VXClipboardOwner@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXDragSourceListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXFlushableClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1DDInfo@@QAE@XZ -??1DataFlavor@datatransfer@star@sun@com@@QAE@XZ -??1Edit@@UAE@XZ -??1OGuard@vos@@UAE@XZ -??1TextDataObject@@UAE@XZ -??1Type@uno@star@sun@com@@QAE@XZ -??1UnsupportedFlavorException@datatransfer@star@sun@com@@QAE@XZ -??4?$Reference@VXDragSourceListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXDragSourceListener@dnd@datatransfer@234@@Z -??C?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QBAPAVXClipboard@clipboard@datatransfer@234@XZ -??C?$Reference@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QBAPAVXDragGestureRecognizer@dnd@datatransfer@234@XZ -??C?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QBAPAVXDragSource@dnd@datatransfer@234@XZ -??C?$Reference@VXFlushableClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QBAPAVXFlushableClipboard@clipboard@datatransfer@234@XZ -??C?$Reference@VXTransferable@datatransfer@star@sun@com@@@uno@star@sun@com@@QBAPAVXTransferable@datatransfer@234@XZ -??_2uno@star@sun@com@@YAEABVAny@0123@AAVOUString@rtl@@@Z -??_3uno@star@sun@com@@YAXAAVAny@0123@ABVOUString@rtl@@@Z -??_7DragAndDropClient@unohelper@vcl@@6B@ -??_7Edit@@6BControl@@@ -??_7Edit@@6BDragAndDropClient@unohelper@vcl@@@ -??_7OGuard@vos@@6B@ -??_7TextDataObject@@6BOWeakObject@cppu@@@ -??_7TextDataObject@@6BXTransferable@datatransfer@star@sun@com@@@ -??_C@_0CI@CBNBOPHC@com?4sun?4star?4datatransfer?4XTrans@ -??_C@_0DI@EELKFNDP@com?4sun?4star?4datatransfer?4clipbo@ -??_GCursor@@QAEPAXI@Z -??_GDDInfo@@QAEPAXI@Z -??_GEdit@@UAEPAXI@Z -??_GOGuard@vos@@UAEPAXI@Z -??_GTextDataObject@@UAEPAXI@Z -??_R0?AVUnsupportedFlavorException@datatransfer@star@sun@com@@@8 -?CalcMinimumSize@Edit@@QBE?AVSize@@XZ -?CalcSize@Edit@@QBE?AVSize@@G@Z -?ClearModifyFlag@Edit@@QAEXXZ -?Command@Edit@@UAEXABVCommandEvent@@@Z -?Copy@Edit@@QAEXXZ -?CreatePopupMenu@Edit@@SAPAVPopupMenu@@XZ -?Cut@Edit@@QAEXXZ -?DataChanged@Edit@@UAEXABVDataChangedEvent@@@Z -?DeletePopupMenu@Edit@@SAXPAVPopupMenu@@@Z -?DeleteSelected@Edit@@QAEXXZ -?DisableUpdateData@Edit@@QAEXXZ -?Draw@Edit@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?EnableUpdateData@Edit@@QAEXK@Z -?GetCommand@CommandVoiceData@@QBEGXZ -?GetCursorPos@CommandExtTextInputData@@QBEGXZ -?GetExtTextInputData@CommandEvent@@QBEPBVCommandExtTextInputData@@XZ -?GetFocus@Edit@@UAEXXZ -?GetGetFocusFlags@Window@@QBEGXZ -?GetGetSpecialCharsFunction@Edit@@SAP6A?AVString@@PAVWindow@@ABVFont@@@ZXZ -?GetHighlightTextColor@StyleSettings@@QBEABVColor@@XZ -?GetMaxVisChars@Edit@@QBEGXZ -?GetSelected@Edit@@QBE?AVString@@XZ -?GetSelection@Edit@@QBEABVSelection@@XZ -?GetSelectionOptions@StyleSettings@@QBEKXZ -?GetString@TextDataObject@@QAEAAVString@@XZ -?GetSubEdit@Edit@@QBEPAV1@XZ -?GetText@CommandExtTextInputData@@QBEABVString@@XZ -?GetText@CommandVoiceData@@QBEABVString@@XZ -?GetText@Edit@@UBE?AVString@@XZ -?GetTextAttr@CommandExtTextInputData@@QBEPBGXZ -?GetType@CommandVoiceData@@QBE?AW4DictationCommandType@@XZ -?GetVoiceData@CommandEvent@@QBEPBVCommandVoiceData@@XZ -?IsCharInput@Edit@@SAEABVKeyEvent@@@Z -?IsCursorOverwrite@CommandExtTextInputData@@QBEEXZ -?IsCursorVisible@CommandExtTextInputData@@QBEEXZ -?IsInsertMode@Edit@@QBEEXZ -?IsInside@Selection@@QBEEJ@Z -?IsShift@MouseEvent@@QBEEXZ -?IsVisible@Cursor@@QBEEXZ -?Justify@Selection@@QAEXXZ -?KeyInput@Edit@@UAEXABVKeyEvent@@@Z -?LoseFocus@Edit@@UAEXXZ -?Max@Selection@@QBEJXZ -?Min@Selection@@QBEJXZ -?Modify@Edit@@UAEXXZ -?MouseButtonDown@Edit@@UAEXABVMouseEvent@@@Z -?MouseButtonUp@Edit@@UAEXABVMouseEvent@@@Z -?Paint@Edit@@UAEXABVRectangle@@@Z -?Paste@Edit@@QAEXXZ -?ReplaceSelected@Edit@@QAEXABVString@@@Z -?Resize@Edit@@UAEXXZ -?SetAutocompleteHdl@Edit@@QAEXABVLink@@@Z -?SetEchoChar@Edit@@QAEXG@Z -?SetGetSpecialCharsFunction@Edit@@SAXP6A?AVString@@PAVWindow@@ABVFont@@@Z@Z -?SetInsertMode@Edit@@QAEXE@Z -?SetMaxTextLen@Edit@@QAEXG@Z -?SetMenuFlags@Menu@@QAEXG@Z -?SetModifyFlag@Edit@@QAEXXZ -?SetReadOnly@Edit@@QAEXE@Z -?SetSelection@Edit@@QAEXABVSelection@@@Z -?SetSubEdit@Edit@@QAEXPAV1@@Z -?SetText@Edit@@UAEXABVString@@@Z -?SetText@Edit@@UAEXABVString@@ABVSelection@@@Z -?StateChanged@Edit@@UAEXG@Z -?Tracking@Edit@@UAEXABVTrackingEvent@@@Z -?Undo@Edit@@QAEXXZ -?UpdateData@Edit@@UAEXXZ -?__query@?$Reference@VXFlushableClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXFlushableClipboard@clipboard@datatransfer@345@PAVXInterface@2345@@Z -?acquire@TextDataObject@@UAAXXZ -?acquire@TextDataObject@@W3AAXXZ -?dragDropEnd@Edit@@MAEXABUDragSourceDropEvent@dnd@datatransfer@star@sun@com@@@Z -?dragEnter@Edit@@MAEXABUDropTargetDragEnterEvent@dnd@datatransfer@star@sun@com@@@Z -?dragExit@Edit@@MAEXABUDropTargetEvent@dnd@datatransfer@star@sun@com@@@Z -?dragGestureRecognized@Edit@@MAEXABUDragGestureEvent@dnd@datatransfer@star@sun@com@@@Z -?dragOver@Edit@@MAEXABUDropTargetDragEvent@dnd@datatransfer@star@sun@com@@@Z -?drop@Edit@@MAEXABUDropTargetDropEvent@dnd@datatransfer@star@sun@com@@@Z -?getArray@?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAPAUDataFlavor@datatransfer@345@XZ -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFlushableClipboard@clipboard@datatransfer@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTransferable@datatransfer@star@sun@com@@@2345@@Z -?getTransferData@TextDataObject@@UAA?AVAny@uno@star@sun@com@@ABUDataFlavor@datatransfer@456@@Z -?getTransferDataFlavors@TextDataObject@@UAA?AV?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@uno@star@sun@com@@XZ -?isDataFlavorSupported@TextDataObject@@UAAEABUDataFlavor@datatransfer@star@sun@com@@@Z -?queryInterface@TextDataObject@@UAA?AVAny@uno@star@sun@com@@ABVType@3456@@Z -?queryInterface@TextDataObject@@W3AA?AVAny@uno@star@sun@com@@ABVType@3456@@Z -?queryInterface@cppu@@YA?AVAny@uno@star@sun@com@@ABVType@3456@PAVXTransferable@datatransfer@456@@Z -?release@TextDataObject@@UAAXXZ -?release@TextDataObject@@W3AAXXZ -?s_pType_com_sun_star_datatransfer_XTransferable@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTransferable@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_datatransfer_clipboard_XFlushableClipboard@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFlushableClipboard@clipboard@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?set@?$Reference@VXDragSourceListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAEPAVXDragSourceListener@dnd@datatransfer@345@@Z -_TI2?AVUnsupportedFlavorException@datatransfer@star@sun@com@@ -??0CurrencyBox@@QAE@PAVWindow@@ABVResId@@@Z -??0CurrencyBox@@QAE@PAVWindow@@K@Z -??0CurrencyField@@QAE@PAVWindow@@ABVResId@@@Z -??0CurrencyField@@QAE@PAVWindow@@K@Z -??0CurrencyFormatter@@IAE@XZ -??0FormatterBase@@QAE@PAVEdit@@@Z -??0MetricBox@@QAE@PAVWindow@@ABVResId@@@Z -??0MetricBox@@QAE@PAVWindow@@K@Z -??0MetricField@@QAE@PAVWindow@@ABVResId@@@Z -??0MetricField@@QAE@PAVWindow@@K@Z -??0MetricFormatter@@IAE@XZ -??0NumericBox@@QAE@PAVWindow@@ABVResId@@@Z -??0NumericBox@@QAE@PAVWindow@@K@Z -??0NumericField@@QAE@PAVWindow@@ABVResId@@@Z -??0NumericField@@QAE@PAVWindow@@K@Z -??0NumericFormatter@@IAE@XZ -??1CurrencyBox@@UAE@XZ -??1CurrencyField@@UAE@XZ -??1CurrencyFormatter@@QAE@XZ -??1FormatterBase@@QAE@XZ -??1MetricBox@@UAE@XZ -??1MetricField@@UAE@XZ -??1MetricFormatter@@QAE@XZ -??1NumericBox@@UAE@XZ -??1NumericField@@UAE@XZ -??1NumericFormatter@@QAE@XZ -??BFraction@@QBEJXZ -??_7CurrencyBox@@6B@ -??_7CurrencyBox@@6BControl@@@ -??_7CurrencyBox@@6BDragAndDropClient@unohelper@vcl@@@ -??_7CurrencyField@@6B@ -??_7CurrencyField@@6BControl@@@ -??_7CurrencyField@@6BDragAndDropClient@unohelper@vcl@@@ -??_7CurrencyFormatter@@6B@ -??_7FormatterBase@@6B@ -??_7MetricBox@@6B@ -??_7MetricBox@@6BControl@@@ -??_7MetricBox@@6BDragAndDropClient@unohelper@vcl@@@ -??_7MetricField@@6B@ -??_7MetricField@@6BControl@@@ -??_7MetricField@@6BDragAndDropClient@unohelper@vcl@@@ -??_7MetricFormatter@@6B@ -??_7NumericBox@@6B@ -??_7NumericBox@@6BControl@@@ -??_7NumericBox@@6BDragAndDropClient@unohelper@vcl@@@ -??_7NumericField@@6B@ -??_7NumericField@@6BControl@@@ -??_7NumericField@@6BDragAndDropClient@unohelper@vcl@@@ -??_7NumericFormatter@@6B@ -??_GCurrencyBox@@UAEPAXI@Z -??_GCurrencyField@@UAEPAXI@Z -??_GMetricBox@@UAEPAXI@Z -??_GMetricField@@UAEPAXI@Z -??_GNumericBox@@UAEPAXI@Z -??_GNumericField@@UAEPAXI@Z -?ConvertDoubleValue@MetricField@@SANNGW4FieldUnit@@W4MapUnit@@@Z -?ConvertDoubleValue@MetricField@@SANNGW4MapUnit@@W4FieldUnit@@@Z -?ConvertDoubleValue@MetricField@@SANNJGW4FieldUnit@@0@Z -?ConvertToFraction@NumericFormatter@@QAE?AVFraction@@J@Z -?ConvertToLong@NumericFormatter@@QAEJABVFraction@@@Z -?ConvertValue@MetricField@@SAJJGW4FieldUnit@@W4MapUnit@@@Z -?ConvertValue@MetricField@@SAJJGW4MapUnit@@W4FieldUnit@@@Z -?ConvertValue@MetricField@@SAJJJGW4FieldUnit@@0@Z -?CreateFieldText@CurrencyFormatter@@MBE?AVString@@J@Z -?CreateFieldText@MetricFormatter@@MBE?AVString@@J@Z -?CreateFieldText@NumericFormatter@@MBE?AVString@@J@Z -?CustomConvert@MetricBox@@UAEXXZ -?CustomConvert@MetricField@@UAEXXZ -?DataChanged@CurrencyBox@@UAEXABVDataChangedEvent@@@Z -?DataChanged@CurrencyField@@UAEXABVDataChangedEvent@@@Z -?DataChanged@MetricBox@@UAEXABVDataChangedEvent@@@Z -?DataChanged@MetricField@@UAEXABVDataChangedEvent@@@Z -?DataChanged@NumericBox@@UAEXABVDataChangedEvent@@@Z -?DataChanged@NumericField@@UAEXABVDataChangedEvent@@@Z -?Denormalize@NumericFormatter@@QBEJJ@Z -?Down@CurrencyField@@UAEXXZ -?Down@MetricField@@UAEXXZ -?Down@NumericField@@UAEXXZ -?FieldDown@NumericFormatter@@IAEXXZ -?FieldFirst@NumericFormatter@@IAEXXZ -?FieldLast@NumericFormatter@@IAEXXZ -?FieldUp@NumericFormatter@@IAEXXZ -?First@CurrencyField@@UAEXXZ -?First@MetricField@@UAEXXZ -?First@NumericField@@UAEXXZ -?GetBaseValue@MetricFormatter@@QBEJW4FieldUnit@@@Z -?GetCorrectedValue@MetricFormatter@@QBEJW4FieldUnit@@@Z -?GetCurrencySymbol@CurrencyFormatter@@QBE?AVString@@XZ -?GetDecimalDigits@NumericFormatter@@QBEGXZ -?GetDefaultUnit@MetricField@@SA?AW4FieldUnit@@XZ -?GetErrorHdl@FormatterBase@@QBEABVLink@@XZ -?GetField@FormatterBase@@QBEPAVEdit@@XZ -?GetFieldSettings@FormatterBase@@QBEABVAllSettings@@XZ -?GetFirst@MetricField@@QBEJW4FieldUnit@@@Z -?GetInternational@FormatterBase@@QBEABVInternational@@XZ -?GetLast@MetricField@@QBEJW4FieldUnit@@@Z -?GetLocale@FormatterBase@@QBEABULocale@lang@star@sun@com@@XZ -?GetLocaleDataWrapper@FormatterBase@@QBEABVLocaleDataWrapper@@XZ -?GetMax@MetricFormatter@@QBEJW4FieldUnit@@@Z -?GetMax@NumericFormatter@@QBEJXZ -?GetMin@MetricFormatter@@QBEJW4FieldUnit@@@Z -?GetMin@NumericFormatter@@QBEJXZ -?GetValue@CurrencyBox@@QBEJG@Z -?GetValue@CurrencyBox@@UBEJXZ -?GetValue@CurrencyFormatter@@UBEJXZ -?GetValue@MetricBox@@QBEJGW4FieldUnit@@@Z -?GetValue@MetricBox@@UBEJW4FieldUnit@@@Z -?GetValue@MetricBox@@UBEJXZ -?GetValue@MetricFormatter@@UBEJW4FieldUnit@@@Z -?GetValue@MetricFormatter@@UBEJXZ -?GetValue@NumericBox@@QBEJG@Z -?GetValue@NumericBox@@UBEJXZ -?GetValue@NumericFormatter@@UBEJXZ -?GetValuePos@CurrencyBox@@QBEGJ@Z -?GetValuePos@MetricBox@@QBEGJW4FieldUnit@@@Z -?GetValuePos@NumericBox@@QBEGJ@Z -?InsertValue@CurrencyBox@@QAEXJG@Z -?InsertValue@MetricBox@@QAEXJW4FieldUnit@@G@Z -?InsertValue@NumericBox@@QAEXJG@Z -?IsDefaultLocale@FormatterBase@@IBEEXZ -?IsEmptyFieldValue@FormatterBase@@QBEEXZ -?IsEmptyFieldValueEnabled@FormatterBase@@QBEEXZ -?IsShowTrailingZeros@NumericFormatter@@QBEEXZ -?IsStrictFormat@FormatterBase@@QBEEXZ -?IsUseThousandSep@NumericFormatter@@QBEEXZ -?IsValueModified@NumericFormatter@@QBEEXZ -?Last@CurrencyField@@UAEXXZ -?Last@MetricField@@UAEXXZ -?Last@NumericField@@UAEXXZ -?MarkToBeReformatted@FormatterBase@@QAEXE@Z -?Modify@CurrencyBox@@UAEXXZ -?Modify@CurrencyField@@UAEXXZ -?Modify@MetricBox@@UAEXXZ -?Modify@MetricField@@UAEXXZ -?Modify@NumericBox@@UAEXXZ -?Modify@NumericField@@UAEXXZ -?MustBeReformatted@FormatterBase@@QBEEXZ -?Normalize@NumericFormatter@@QBEJJ@Z -?Notify@CurrencyBox@@UAEJAAVNotifyEvent@@@Z -?Notify@CurrencyField@@UAEJAAVNotifyEvent@@@Z -?Notify@MetricBox@@UAEJAAVNotifyEvent@@@Z -?Notify@MetricField@@UAEJAAVNotifyEvent@@@Z -?Notify@NumericBox@@UAEJAAVNotifyEvent@@@Z -?Notify@NumericField@@UAEJAAVNotifyEvent@@@Z -?PreNotify@CurrencyBox@@UAEJAAVNotifyEvent@@@Z -?PreNotify@CurrencyField@@UAEJAAVNotifyEvent@@@Z -?PreNotify@MetricBox@@UAEJAAVNotifyEvent@@@Z -?PreNotify@MetricField@@UAEJAAVNotifyEvent@@@Z -?PreNotify@NumericBox@@UAEJAAVNotifyEvent@@@Z -?PreNotify@NumericField@@UAEJAAVNotifyEvent@@@Z -?Reformat@CurrencyFormatter@@UAEXXZ -?Reformat@FormatterBase@@UAEXXZ -?Reformat@MetricFormatter@@UAEXXZ -?Reformat@NumericFormatter@@UAEXXZ -?ReformatAll@CurrencyBox@@UAEXXZ -?ReformatAll@FormatterBase@@UAEXXZ -?ReformatAll@MetricBox@@UAEXXZ -?ReformatAll@NumericBox@@UAEXXZ -?RemoveValue@CurrencyBox@@QAEXJ@Z -?RemoveValue@MetricBox@@QAEXJW4FieldUnit@@@Z -?RemoveValue@NumericBox@@QAEXJ@Z -?SetBaseValue@MetricFormatter@@QAEXJW4FieldUnit@@@Z -?SetCurrencySymbol@CurrencyFormatter@@QAEXABVString@@@Z -?SetCustomUnitText@MetricFormatter@@QAEXABVString@@@Z -?SetDecimalDigits@NumericFormatter@@QAEXG@Z -?SetDefaultUnit@MetricField@@SAXW4FieldUnit@@@Z -?SetEmptyFieldValue@FormatterBase@@QAEXXZ -?SetEmptyFieldValueData@FormatterBase@@IAEXE@Z -?SetField@FormatterBase@@QAEXPAVEdit@@@Z -?SetFieldText@FormatterBase@@IAEXABVString@@E@Z -?SetFirst@MetricField@@QAEXJW4FieldUnit@@@Z -?SetInternational@FormatterBase@@QAEXABVInternational@@@Z -?SetLast@MetricField@@QAEXJW4FieldUnit@@@Z -?SetLocale@FormatterBase@@UAEXABULocale@lang@star@sun@com@@@Z -?SetMax@MetricFormatter@@QAEXJW4FieldUnit@@@Z -?SetMax@NumericFormatter@@QAEXJ@Z -?SetMin@MetricFormatter@@QAEXJW4FieldUnit@@@Z -?SetMin@NumericFormatter@@QAEXJ@Z -?SetShowTrailingZeros@NumericFormatter@@QAEXE@Z -?SetStrictFormat@FormatterBase@@QAEXE@Z -?SetUnit@MetricFormatter@@QAEXW4FieldUnit@@@Z -?SetUseThousandSep@NumericFormatter@@QAEXE@Z -?SetUserValue@MetricFormatter@@QAEXJW4FieldUnit@@@Z -?SetUserValue@NumericFormatter@@QAEXJ@Z -?SetValue@CurrencyFormatter@@UAEXJ@Z -?SetValue@MetricFormatter@@UAEXJ@Z -?SetValue@MetricFormatter@@UAEXJW4FieldUnit@@@Z -?SetValue@NumericFormatter@@UAEXJ@Z -?Up@CurrencyField@@UAEXXZ -?Up@MetricField@@UAEXXZ -?Up@NumericField@@UAEXXZ -?getNumDecimalSep@LocaleDataWrapper@@QBEABVString@@XZ -?getNumThousandSep@LocaleDataWrapper@@QBEABVString@@XZ -_real@3fb999999999999a -_real@4014000000000000 -??0Date@@QAE@ABV0@@Z -??0Date@@QAE@GGG@Z -??0Date@@QAE@K@Z -??0DateBox@@QAE@PAVWindow@@ABVResId@@@Z -??0DateBox@@QAE@PAVWindow@@K@Z -??0DateField@@QAE@PAVWindow@@ABVResId@@@Z -??0DateField@@QAE@PAVWindow@@K@Z -??0DateFormatter@@IAE@XZ -??0PatternBox@@QAE@PAVWindow@@ABVResId@@@Z -??0PatternBox@@QAE@PAVWindow@@K@Z -??0PatternField@@QAE@PAVWindow@@ABVResId@@@Z -??0PatternField@@QAE@PAVWindow@@K@Z -??0PatternFormatter@@IAE@XZ -??0Selection@@QAE@J@Z -??0Time@@QAE@ABV0@@Z -??0Time@@QAE@J@Z -??0TimeBox@@QAE@PAVWindow@@ABVResId@@@Z -??0TimeBox@@QAE@PAVWindow@@K@Z -??0TimeField@@QAE@PAVWindow@@ABVResId@@@Z -??0TimeField@@QAE@PAVWindow@@K@Z -??0TimeFormatter@@IAE@XZ -??1?$Sequence@UCalendarItem@i18n@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1DateBox@@UAE@XZ -??1DateField@@UAE@XZ -??1DateFormatter@@QAE@XZ -??1PatternBox@@UAE@XZ -??1PatternField@@UAE@XZ -??1PatternFormatter@@QAE@XZ -??1TimeBox@@UAE@XZ -??1TimeField@@UAE@XZ -??1TimeFormatter@@QAE@XZ -??4ByteString@@QAEAAV0@ABV0@@Z -??4Date@@QAEAAV0@ABV0@@Z -??4Time@@QAEAAV0@ABV0@@Z -??9Date@@QBEEABV0@@Z -??9Time@@QBEEABV0@@Z -??A?$Sequence@UCalendarItem@i18n@star@sun@com@@@uno@star@sun@com@@QAAAAUCalendarItem@i18n@234@J@Z -??GTime@@QBE?AV0@XZ -??MDate@@QBEEABV0@@Z -??MTime@@QBEEABV0@@Z -??ODate@@QBEEABV0@@Z -??OTime@@QBEEABV0@@Z -??_7DateBox@@6B@ -??_7DateBox@@6BControl@@@ -??_7DateBox@@6BDragAndDropClient@unohelper@vcl@@@ -??_7DateField@@6B@ -??_7DateField@@6BControl@@@ -??_7DateField@@6BDragAndDropClient@unohelper@vcl@@@ -??_7DateFormatter@@6B@ -??_7PatternBox@@6B@ -??_7PatternBox@@6BControl@@@ -??_7PatternBox@@6BDragAndDropClient@unohelper@vcl@@@ -??_7PatternField@@6B@ -??_7PatternField@@6BControl@@@ -??_7PatternField@@6BDragAndDropClient@unohelper@vcl@@@ -??_7PatternFormatter@@6B@ -??_7TimeBox@@6B@ -??_7TimeBox@@6BControl@@@ -??_7TimeBox@@6BDragAndDropClient@unohelper@vcl@@@ -??_7TimeField@@6B@ -??_7TimeField@@6BControl@@@ -??_7TimeField@@6BDragAndDropClient@unohelper@vcl@@@ -??_7TimeFormatter@@6B@ -??_C@_0BP@KOHCHFPN@com?4sun?4star?4i18n?4CalendarItem?$AA@ -??_GCalendarWrapper@@QAEPAXI@Z -??_GDateBox@@UAEPAXI@Z -??_GDateField@@UAEPAXI@Z -??_GPatternBox@@UAEPAXI@Z -??_GPatternField@@UAEPAXI@Z -??_GTimeBox@@UAEPAXI@Z -??_GTimeField@@UAEPAXI@Z -?DataChanged@DateBox@@UAEXABVDataChangedEvent@@@Z -?DataChanged@DateField@@UAEXABVDataChangedEvent@@@Z -?DataChanged@TimeBox@@UAEXABVDataChangedEvent@@@Z -?DataChanged@TimeField@@UAEXABVDataChangedEvent@@@Z -?Down@DateField@@UAEXXZ -?Down@TimeField@@UAEXXZ -?ExpandCentury@DateFormatter@@SAXAAVDate@@@Z -?ExpandCentury@DateFormatter@@SAXAAVDate@@G@Z -?First@DateField@@UAEXXZ -?First@TimeField@@UAEXXZ -?Get100Sec@Time@@QBEGXZ -?GetCalendarWrapper@DateFormatter@@IBEAAVCalendarWrapper@@XZ -?GetChar@ByteString@@QBEDG@Z -?GetDate@Date@@QBEKXZ -?GetDate@DateBox@@QBE?AVDate@@G@Z -?GetDate@DateFormatter@@QBE?AVDate@@XZ -?GetDateFormat@DateFormatter@@QBE?AW4DateFormat@@XZ -?GetDatePos@DateBox@@QBEGABVDate@@@Z -?GetDay@Date@@QBEGXZ -?GetEditMask@PatternFormatter@@QBEABVByteString@@XZ -?GetFormat@TimeFormatter@@QBE?AW4TimeFieldFormat@@XZ -?GetFormatFlags@PatternFormatter@@QBEGXZ -?GetHour@Time@@QBEGXZ -?GetLiteralMask@PatternFormatter@@QBEABVString@@XZ -?GetMax@DateFormatter@@QBEABVDate@@XZ -?GetMax@TimeFormatter@@QBEABVTime@@XZ -?GetMin@DateFormatter@@QBEABVDate@@XZ -?GetMin@Time@@QBEGXZ -?GetMin@TimeFormatter@@QBEABVTime@@XZ -?GetMiscSettings@AllSettings@@QBEABVMiscSettings@@XZ -?GetMonth@Date@@QBEGXZ -?GetRealDate@DateFormatter@@QBE?AVDate@@XZ -?GetRealTime@TimeFormatter@@QBE?AVTime@@XZ -?GetSec@Time@@QBEGXZ -?GetString@PatternBox@@QBE?AVString@@G@Z -?GetString@PatternFormatter@@QBE?AVString@@XZ -?GetStringPos@PatternBox@@QBEGABVString@@@Z -?GetTime@TimeBox@@QBE?AVTime@@G@Z -?GetTime@TimeFormatter@@QBE?AVTime@@XZ -?GetTimeFormat@TimeFormatter@@QBE?AW4TimeFormat@@XZ -?GetTimePos@TimeBox@@QBEGABVTime@@@Z -?GetTwoDigitYearStart@MiscSettings@@QBEGXZ -?GetYear@Date@@QBEGXZ -?InsertDate@DateBox@@QAEXABVDate@@G@Z -?InsertString@PatternBox@@QAEXABVString@@G@Z -?InsertTime@TimeBox@@QAEXABVTime@@G@Z -?IsDateModified@DateFormatter@@QBEEXZ -?IsDuration@TimeFormatter@@QBEEXZ -?IsEmptyDate@DateFormatter@@QBEEXZ -?IsEmptyTime@TimeFormatter@@QBEEXZ -?IsLongFormat@DateFormatter@@QBEEXZ -?IsShowDateCentury@DateFormatter@@QBEEXZ -?IsTimeModified@TimeFormatter@@QBEEXZ -?Last@DateField@@UAEXXZ -?Last@TimeField@@UAEXXZ -?Modify@DateBox@@UAEXXZ -?Modify@DateField@@UAEXXZ -?Modify@PatternBox@@UAEXXZ -?Modify@PatternField@@UAEXXZ -?Modify@TimeBox@@UAEXXZ -?Modify@TimeField@@UAEXXZ -?Notify@DateBox@@UAEJAAVNotifyEvent@@@Z -?Notify@DateField@@UAEJAAVNotifyEvent@@@Z -?Notify@PatternBox@@UAEJAAVNotifyEvent@@@Z -?Notify@PatternField@@UAEJAAVNotifyEvent@@@Z -?Notify@TimeBox@@UAEJAAVNotifyEvent@@@Z -?Notify@TimeField@@UAEJAAVNotifyEvent@@@Z -?PreNotify@DateBox@@UAEJAAVNotifyEvent@@@Z -?PreNotify@DateField@@UAEJAAVNotifyEvent@@@Z -?PreNotify@PatternBox@@UAEJAAVNotifyEvent@@@Z -?PreNotify@PatternField@@UAEJAAVNotifyEvent@@@Z -?PreNotify@TimeBox@@UAEJAAVNotifyEvent@@@Z -?PreNotify@TimeField@@UAEJAAVNotifyEvent@@@Z -?Reformat@DateFormatter@@UAEXXZ -?Reformat@PatternFormatter@@UAEXXZ -?Reformat@TimeFormatter@@UAEXXZ -?ReformatAll@DateBox@@UAEXXZ -?ReformatAll@DateFormatter@@UAEXXZ -?ReformatAll@PatternBox@@UAEXXZ -?ReformatAll@TimeBox@@UAEXXZ -?ReformatAll@TimeFormatter@@UAEXXZ -?RemoveDate@DateBox@@QAEXABVDate@@@Z -?RemoveString@PatternBox@@QAEXABVString@@@Z -?RemoveTime@TimeBox@@QAEXABVTime@@@Z -?ResetLastDate@DateFormatter@@QAEXXZ -?SelectFixedFont@PatternFormatter@@QAEXXZ -?SetDate@DateFormatter@@QAEXABVDate@@@Z -?SetDateFormat@DateFormatter@@QAEXW4DateFormat@@@Z -?SetDuration@TimeFormatter@@QAEXE@Z -?SetEmptyDate@DateFormatter@@QAEXXZ -?SetExtFormat@DateField@@QAEXW4ExtDateFieldFormat@@@Z -?SetExtFormat@TimeField@@QAEXW4ExtTimeFieldFormat@@@Z -?SetFormat@TimeFormatter@@QAEXW4TimeFieldFormat@@@Z -?SetLocale@DateFormatter@@UAEXABULocale@lang@star@sun@com@@@Z -?SetLongFormat@DateFormatter@@QAEXE@Z -?SetMask@PatternFormatter@@QAEXABVByteString@@ABVString@@@Z -?SetMax@DateFormatter@@QAEXABVDate@@@Z -?SetMax@TimeFormatter@@QAEXABVTime@@@Z -?SetMin@DateFormatter@@QAEXABVDate@@@Z -?SetMin@TimeFormatter@@QAEXABVTime@@@Z -?SetShowDateCentury@DateFormatter@@QAEXE@Z -?SetString@PatternFormatter@@QAEXABVString@@@Z -?SetTime@TimeFormatter@@QAEXABVTime@@@Z -?SetTimeFormat@TimeFormatter@@QAEXW4TimeFormat@@@Z -?SetUserDate@DateFormatter@@QAEXABVDate@@@Z -?SetUserTime@TimeFormatter@@QAEXABVTime@@@Z -?Up@DateField@@UAEXXZ -?Up@TimeField@@UAEXXZ -?getCppuType@@YAABVType@uno@star@sun@com@@PBUCalendarItem@i18n@345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@UCalendarItem@i18n@star@sun@com@@@2345@@Z -?getDateSep@LocaleDataWrapper@@QBEABVString@@XZ -?getTime100SecSep@LocaleDataWrapper@@QBEABVString@@XZ -?getTimeAM@LocaleDataWrapper@@QBEABVString@@XZ -?getTimePM@LocaleDataWrapper@@QBEABVString@@XZ -?getTimeSep@LocaleDataWrapper@@QBEABVString@@XZ -?isAlphaType@@YAEJ@Z -?s_pType@?$Sequence@UCalendarItem@i18n@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_i18n_CalendarItem@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUCalendarItem@i18n@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??0FixedBorder@@QAE@PAVWindow@@ABVResId@@@Z -??0FixedBorder@@QAE@PAVWindow@@K@Z -??1FixedBorder@@UAE@XZ -??_7FixedBorder@@6B@ -??_GFixedBorder@@UAEPAXI@Z -?DataChanged@FixedBorder@@UAEXABVDataChangedEvent@@@Z -?Draw@FixedBorder@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?Paint@FixedBorder@@UAEXABVRectangle@@@Z -?Resize@FixedBorder@@UAEXXZ -?SetBorderType@FixedBorder@@QAEXG@Z -?SetTransparent@FixedBorder@@QAEXE@Z -?StateChanged@FixedBorder@@UAEXG@Z -??0FixedBitmap@@QAE@PAVWindow@@ABVResId@@@Z -??0FixedBitmap@@QAE@PAVWindow@@K@Z -??0FixedImage@@QAE@PAVWindow@@ABVResId@@@Z -??0FixedImage@@QAE@PAVWindow@@K@Z -??0FixedLine@@QAE@PAVWindow@@ABVResId@@@Z -??0FixedLine@@QAE@PAVWindow@@K@Z -??0FixedText@@QAE@PAVWindow@@ABVResId@@@Z -??0FixedText@@QAE@PAVWindow@@K@Z -??1FixedBitmap@@UAE@XZ -??1FixedImage@@UAE@XZ -??_7FixedBitmap@@6B@ -??_7FixedImage@@6B@ -??_7FixedLine@@6B@ -??_7FixedText@@6B@ -??_GFixedBitmap@@UAEPAXI@Z -??_GFixedImage@@UAEPAXI@Z -??_GFixedLine@@UAEPAXI@Z -??_GFixedText@@UAEPAXI@Z -?CalcImagePos@FixedImage@@QAE?AVPoint@@ABV2@ABVSize@@1@Z -?CalcMinimumSize@FixedText@@QBE?AVSize@@J@Z -?DataChanged@FixedBitmap@@UAEXABVDataChangedEvent@@@Z -?DataChanged@FixedImage@@UAEXABVDataChangedEvent@@@Z -?DataChanged@FixedLine@@UAEXABVDataChangedEvent@@@Z -?DataChanged@FixedText@@UAEXABVDataChangedEvent@@@Z -?Draw@FixedBitmap@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?Draw@FixedImage@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?Draw@FixedLine@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?Draw@FixedText@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?GetGroupTextColor@StyleSettings@@QBEABVColor@@XZ -?GetInfoTextColor@StyleSettings@@QBEABVColor@@XZ -?GetLabelTextColor@StyleSettings@@QBEABVColor@@XZ -?Paint@FixedBitmap@@UAEXABVRectangle@@@Z -?Paint@FixedImage@@UAEXABVRectangle@@@Z -?Paint@FixedLine@@UAEXABVRectangle@@@Z -?Paint@FixedText@@UAEXABVRectangle@@@Z -?Resize@FixedBitmap@@UAEXXZ -?Resize@FixedImage@@UAEXXZ -?Resize@FixedLine@@UAEXXZ -?Resize@FixedText@@UAEXXZ -?SetBitmap@FixedBitmap@@QAEXABVBitmap@@@Z -?SetImage@FixedImage@@QAEXABVImage@@@Z -?StateChanged@FixedBitmap@@UAEXG@Z -?StateChanged@FixedImage@@UAEXG@Z -?StateChanged@FixedLine@@UAEXG@Z -?StateChanged@FixedText@@UAEXG@Z -?UserDraw@FixedImage@@UAEXABVUserDrawEvent@@@Z -??0GroupBox@@QAE@PAVWindow@@ABVResId@@@Z -??0GroupBox@@QAE@PAVWindow@@K@Z -??_7GroupBox@@6B@ -??_GGroupBox@@UAEPAXI@Z -?DataChanged@GroupBox@@UAEXABVDataChangedEvent@@@Z -?Draw@GroupBox@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?Paint@GroupBox@@UAEXABVRectangle@@@Z -?Resize@GroupBox@@UAEXXZ -?StateChanged@GroupBox@@UAEXG@Z -??4?$Reference@VXCollator@i18n@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??4String@@QAEAAV0@G@Z -??C?$Reference@VXCollator@i18n@star@sun@com@@@uno@star@sun@com@@QBAPAVXCollator@i18n@234@XZ -?SetLineSize@ScrollBar@@QAEXJ@Z -?SetPageSize@ScrollBar@@QAEXJ@Z -?SetScrollHdl@ScrollBar@@QAEXABVLink@@@Z -?set@?$Reference@VXCollator@i18n@star@sun@com@@@uno@star@sun@com@@QAAEPAVXCollator@i18n@345@@Z -??0ImageControl@@QAE@PAVWindow@@K@Z -??_7ImageControl@@6B@ -??_GImageControl@@UAEPAXI@Z -?GetDevice@UserDrawEvent@@QBEPAVOutputDevice@@XZ -?GetRect@UserDrawEvent@@QBEABVRectangle@@XZ -?Resize@ImageControl@@UAEXXZ -?SetBitmap@ImageControl@@QAEXABVBitmapEx@@@Z -?UserDraw@ImageControl@@UAEXABVUserDrawEvent@@@Z -??0BigInt@@QAE@XZ -??0LongCurrencyBox@@QAE@PAVWindow@@ABVResId@@@Z -??0LongCurrencyBox@@QAE@PAVWindow@@K@Z -??0LongCurrencyField@@QAE@PAVWindow@@ABVResId@@@Z -??0LongCurrencyField@@QAE@PAVWindow@@K@Z -??0LongCurrencyFormatter@@IAE@XZ -??1LongCurrencyBox@@UAE@XZ -??1LongCurrencyField@@UAE@XZ -??1LongCurrencyFormatter@@QAE@XZ -??4BigInt@@QAEAAV0@H@Z -??4BigInt@@QAEAAV0@J@Z -??9@YAEABVBigInt@@0@Z -??D@YA?AVBigInt@@ABV0@0@Z -??_7LongCurrencyBox@@6B@ -??_7LongCurrencyBox@@6BControl@@@ -??_7LongCurrencyBox@@6BDragAndDropClient@unohelper@vcl@@@ -??_7LongCurrencyField@@6B@ -??_7LongCurrencyField@@6BControl@@@ -??_7LongCurrencyField@@6BDragAndDropClient@unohelper@vcl@@@ -??_7LongCurrencyFormatter@@6B@ -??_GLongCurrencyBox@@UAEPAXI@Z -??_GLongCurrencyField@@UAEPAXI@Z -?Abs@BigInt@@QAEXXZ -?Denormalize@LongCurrencyFormatter@@QBE?AVBigInt@@V2@@Z -?Down@LongCurrencyField@@UAEXXZ -?First@LongCurrencyField@@UAEXXZ -?GetCurr@International@@QBE?AVString@@ABVBigInt@@G@Z -?GetCurrencySymbol@LongCurrencyFormatter@@QBE?AVString@@XZ -?GetDecimalDigits@LongCurrencyFormatter@@QBEGXZ -?GetValue@LongCurrencyBox@@QBE?AVBigInt@@G@Z -?GetValue@LongCurrencyFormatter@@QBE?AVBigInt@@XZ -?GetValuePos@LongCurrencyBox@@QBEGVBigInt@@@Z -?ImpInit@LongCurrencyFormatter@@AAEXXZ -?InsertValue@LongCurrencyBox@@QAEXVBigInt@@G@Z -?IsEmptyValue@LongCurrencyFormatter@@QBEEXZ -?IsUseThousandSep@LongCurrencyFormatter@@QBEEXZ -?IsValueModified@LongCurrencyFormatter@@QBEEXZ -?IsZero@BigInt@@QBEEXZ -?Last@LongCurrencyField@@UAEXXZ -?Modify@LongCurrencyBox@@UAEXXZ -?Modify@LongCurrencyField@@UAEXXZ -?Normalize@LongCurrencyFormatter@@QBE?AVBigInt@@V2@@Z -?Notify@LongCurrencyBox@@UAEJAAVNotifyEvent@@@Z -?Notify@LongCurrencyField@@UAEJAAVNotifyEvent@@@Z -?PreNotify@LongCurrencyBox@@UAEJAAVNotifyEvent@@@Z -?PreNotify@LongCurrencyField@@UAEJAAVNotifyEvent@@@Z -?Reformat@LongCurrencyFormatter@@UAEXXZ -?ReformatAll@LongCurrencyBox@@UAEXXZ -?ReformatAll@LongCurrencyFormatter@@UAEXXZ -?RemoveValue@LongCurrencyBox@@QAEXVBigInt@@@Z -?SetCurrencySymbol@LongCurrencyFormatter@@QAEXABVString@@@Z -?SetDecimalDigits@LongCurrencyFormatter@@QAEXG@Z -?SetEmptyValue@LongCurrencyFormatter@@QAEXXZ -?SetMax@LongCurrencyFormatter@@QAEXVBigInt@@@Z -?SetMin@LongCurrencyFormatter@@QAEXVBigInt@@@Z -?SetUseThousandSep@LongCurrencyFormatter@@QAEXE@Z -?SetUserValue@LongCurrencyFormatter@@QAEXVBigInt@@@Z -?SetValue@LongCurrencyFormatter@@QAEXVBigInt@@@Z -?Up@LongCurrencyField@@UAEXXZ -??0ListBox@@IAE@G@Z -??0ListBox@@QAE@PAVWindow@@ABVResId@@@Z -??0ListBox@@QAE@PAVWindow@@K@Z -??0MultiListBox@@QAE@PAVWindow@@ABVResId@@@Z -??0MultiListBox@@QAE@PAVWindow@@K@Z -??1ListBox@@UAE@XZ -??_7ListBox@@6B@ -??_7MultiListBox@@6B@ -??_GListBox@@UAEPAXI@Z -??_GMultiListBox@@UAEPAXI@Z -?CalcAdjustedSize@ListBox@@QBE?AVSize@@ABV2@@Z -?CalcMinimumSize@ListBox@@QBE?AVSize@@XZ -?CalcSize@ListBox@@QBE?AVSize@@GG@Z -?CalcWindowSizePixel@ListBox@@QBEJG@Z -?Clear@ListBox@@QAEXXZ -?DataChanged@ListBox@@UAEXABVDataChangedEvent@@@Z -?DoubleClick@ListBox@@UAEXXZ -?Draw@ListBox@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?DrawEntry@ListBox@@QAEXABVUserDrawEvent@@EEE@Z -?EnableAutoSize@ListBox@@QAEXE@Z -?EnableMultiSelection@ListBox@@QAEXE@Z -?EnableMultiSelection@ListBox@@QAEXEE@Z -?EnableUserDraw@ListBox@@QAEXE@Z -?GetDropDownLineCount@ListBox@@QBEGXZ -?GetEntry@ListBox@@QBE?AVString@@G@Z -?GetEntryCount@ListBox@@QBEGXZ -?GetEntryData@ListBox@@QBEPAXG@Z -?GetEntryPos@ListBox@@QBEGABVString@@@Z -?GetEntryPos@ListBox@@QBEGPBX@Z -?GetFocus@ListBox@@UAEXXZ -?GetMRUEntries@ListBox@@QBE?AVString@@G@Z -?GetMaxMRUCount@ListBox@@QBEGXZ -?GetMaxVisColumnsAndLines@ListBox@@QBEXAAG0@Z -?GetSelectEntry@ListBox@@QBE?AVString@@G@Z -?GetSelectEntryCount@ListBox@@QBEGXZ -?GetSelectEntryPos@ListBox@@QBEGG@Z -?GetSeparatorPos@ListBox@@QBEGXZ -?GetTopEntry@ListBox@@QBEGXZ -?GetUserItemSize@ListBox@@QBEABVSize@@XZ -?InsertEntry@ListBox@@QAEGABVImage@@G@Z -?InsertEntry@ListBox@@QAEGABVString@@ABVImage@@G@Z -?InsertEntry@ListBox@@QAEGABVString@@G@Z -?IsAutoSizeEnabled@ListBox@@QBEEXZ -?IsDropDownBox@ListBox@@IBEEXZ -?IsEntryPosSelected@ListBox@@QBEEG@Z -?IsEntrySelected@ListBox@@QBEEABVString@@@Z -?IsInDropDown@ListBox@@QBEEXZ -?IsMultiSelectionEnabled@ListBox@@QBEEXZ -?IsReadOnly@ListBox@@QBEEXZ -?IsTravelSelect@ListBox@@QBEEXZ -?IsUserDrawEnabled@ListBox@@QBEEXZ -?LoseFocus@ListBox@@UAEXXZ -?PreNotify@ListBox@@UAEJAAVNotifyEvent@@@Z -?RemoveEntry@ListBox@@QAEXABVString@@@Z -?RemoveEntry@ListBox@@QAEXG@Z -?Resize@ListBox@@UAEXXZ -?Select@ListBox@@UAEXXZ -?SelectEntry@ListBox@@QAEXABVString@@E@Z -?SelectEntryPos@ListBox@@QAEXGE@Z -?SetDropDownLineCount@ListBox@@QAEXG@Z -?SetEntryData@ListBox@@QAEXGPAX@Z -?SetMRUEntries@ListBox@@QAEXABVString@@G@Z -?SetMaxMRUCount@ListBox@@QAEXG@Z -?SetNoSelection@ListBox@@QAEXXZ -?SetPosSizePixel@ListBox@@UAEXJJJJG@Z -?SetReadOnly@ListBox@@QAEXE@Z -?SetSeparatorPos@ListBox@@QAEXG@Z -?SetSeparatorPos@ListBox@@QAEXXZ -?SetTopEntry@ListBox@@QAEXG@Z -?SetUserItemSize@ListBox@@QAEXABVSize@@@Z -?StateChanged@ListBox@@UAEXG@Z -?UserDraw@ListBox@@UAEXABVUserDrawEvent@@@Z -??0MoreButton@@QAE@PAVWindow@@ABVResId@@@Z -??0MoreButton@@QAE@PAVWindow@@K@Z -??1MoreButton@@UAE@XZ -??_7MoreButton@@6B@ -??_GMoreButton@@UAEPAXI@Z -?AddWindow@MoreButton@@QAEXPAVWindow@@@Z -?Click@MoreButton@@UAEXXZ -?GetText@MoreButton@@UBE?AVString@@XZ -?RemoveWindow@MoreButton@@QAEXPAVWindow@@@Z -?SetText@MoreButton@@UAEXABVString@@@Z -??0MenuButton@@QAE@PAVWindow@@ABVResId@@@Z -??0MenuButton@@QAE@PAVWindow@@K@Z -??1MenuButton@@UAE@XZ -??_7MenuButton@@6B@ -??_GMenuButton@@UAEPAXI@Z -?Activate@MenuButton@@UAEXXZ -?GetActionDelay@MouseSettings@@QBEKXZ -?KeyInput@MenuButton@@UAEXABVKeyEvent@@@Z -?MouseButtonDown@MenuButton@@UAEXABVMouseEvent@@@Z -?Select@MenuButton@@UAEXXZ -?SetMenuMode@MenuButton@@QAEXG@Z -?SetPopupMenu@MenuButton@@QAEXPAVPopupMenu@@@Z -??0Range@@QAE@JJ@Z -??0ScrollBar@@QAE@PAVWindow@@ABVResId@@@Z -??0ScrollBar@@QAE@PAVWindow@@K@Z -??0ScrollBarBox@@QAE@PAVWindow@@ABVResId@@@Z -??0ScrollBarBox@@QAE@PAVWindow@@K@Z -??1ScrollBar@@UAE@XZ -??_7ScrollBar@@6B@ -??_7ScrollBarBox@@6B@ -??_GScrollBar@@UAEPAXI@Z -??_GScrollBarBox@@UAEPAXI@Z -?DataChanged@ScrollBar@@UAEXABVDataChangedEvent@@@Z -?DataChanged@ScrollBarBox@@UAEXABVDataChangedEvent@@@Z -?DoScroll@ScrollBar@@QAEJJ@Z -?DoScrollAction@ScrollBar@@QAEJW4ScrollType@@@Z -?EndScroll@ScrollBar@@UAEXXZ -?GetRangeMin@ScrollBar@@QBEJXZ -?Justify@Range@@QAEXXZ -?KeyInput@ScrollBar@@UAEXABVKeyEvent@@@Z -?Max@Range@@QAEAAJXZ -?Min@Range@@QAEAAJXZ -?MouseButtonDown@ScrollBar@@UAEXABVMouseEvent@@@Z -?Paint@ScrollBar@@UAEXABVRectangle@@@Z -?Resize@ScrollBar@@UAEXXZ -?Scroll@ScrollBar@@UAEXXZ -?SetRange@ScrollBar@@QAEXABVRange@@@Z -?SetRangeMax@ScrollBar@@QAEXJ@Z -?SetRangeMin@ScrollBar@@QAEXJ@Z -?SetThumbPos@ScrollBar@@QAEXJ@Z -?SetVisibleSize@ScrollBar@@QAEXJ@Z -?StateChanged@ScrollBar@@UAEXG@Z -?StateChanged@ScrollBarBox@@UAEXG@Z -?Tracking@ScrollBar@@UAEXABVTrackingEvent@@@Z -??0Slider@@QAE@PAVWindow@@ABVResId@@@Z -??0Slider@@QAE@PAVWindow@@K@Z -??_7Slider@@6B@ -??_GSlider@@UAEPAXI@Z -?CalcWindowSizePixel@Slider@@QAE?AVSize@@XZ -?DataChanged@Slider@@UAEXABVDataChangedEvent@@@Z -?EndSlide@Slider@@UAEXXZ -?GetRangeMax@Slider@@QBEJXZ -?GetRangeMin@Slider@@QBEJXZ -?KeyInput@Slider@@UAEXABVKeyEvent@@@Z -?MouseButtonDown@Slider@@UAEXABVMouseEvent@@@Z -?Paint@Slider@@UAEXABVRectangle@@@Z -?RequestHelp@Slider@@UAEXABVHelpEvent@@@Z -?Resize@Slider@@UAEXXZ -?SetLineSize@Slider@@QAEXJ@Z -?SetPageSize@Slider@@QAEXJ@Z -?SetRange@Slider@@QAEXABVRange@@@Z -?SetRangeMax@Slider@@QAEXJ@Z -?SetRangeMin@Slider@@QAEXJ@Z -?SetThumbPos@Slider@@QAEXJ@Z -?Slide@Slider@@UAEXXZ -?StateChanged@Slider@@UAEXG@Z -?Tracking@Slider@@UAEXABVTrackingEvent@@@Z -??0SpinField@@IAE@G@Z -??0SpinField@@QAE@PAVWindow@@ABVResId@@@Z -??0SpinField@@QAE@PAVWindow@@K@Z -??1SpinField@@UAE@XZ -??_7SpinField@@6BControl@@@ -??_7SpinField@@6BDragAndDropClient@unohelper@vcl@@@ -??_GSpinField@@UAEPAXI@Z -?CalcMinimumSize@SpinField@@QBE?AVSize@@XZ -?CalcSize@SpinField@@QBE?AVSize@@G@Z -?Command@SpinField@@MAEXABVCommandEvent@@@Z -?DataChanged@SpinField@@UAEXABVDataChangedEvent@@@Z -?Down@SpinField@@UAEXXZ -?Draw@SpinField@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?EndDropDown@SpinField@@IAEXXZ -?First@SpinField@@UAEXXZ -?GetMaxVisChars@SpinField@@QBEGXZ -?GetSpinSize@StyleSettings@@QBEJXZ -?Last@SpinField@@UAEXXZ -?MouseButtonDown@SpinField@@UAEXABVMouseEvent@@@Z -?MouseButtonUp@SpinField@@UAEXABVMouseEvent@@@Z -?MouseMove@SpinField@@UAEXABVMouseEvent@@@Z -?Notify@SpinField@@MAEJAAVNotifyEvent@@@Z -?Paint@SpinField@@UAEXABVRectangle@@@Z -?Resize@SpinField@@UAEXXZ -?SetButtonTextColor@StyleSettings@@QAEXABVColor@@@Z -?SetFaceColor@StyleSettings@@QAEXABVColor@@@Z -?ShowDropDown@SpinField@@UAEEE@Z -?StateChanged@SpinField@@UAEXG@Z -?Up@SpinField@@UAEXXZ -??0SpinButton@@QAE@PAVWindow@@ABVResId@@@Z -??0SpinButton@@QAE@PAVWindow@@K@Z -??1SpinButton@@UAE@XZ -??_7SpinButton@@6B@ -??_GSpinButton@@UAEPAXI@Z -?Down@SpinButton@@UAEXXZ -?KeyInput@SpinButton@@UAEXABVKeyEvent@@@Z -?MouseButtonDown@SpinButton@@UAEXABVMouseEvent@@@Z -?MouseButtonUp@SpinButton@@UAEXABVMouseEvent@@@Z -?MouseMove@SpinButton@@UAEXABVMouseEvent@@@Z -?Paint@SpinButton@@UAEXABVRectangle@@@Z -?Resize@SpinButton@@UAEXXZ -?StateChanged@SpinButton@@UAEXG@Z -?Up@SpinButton@@UAEXXZ -??0TabControl@@QAE@PAVWindow@@ABVResId@@@Z -??0TabControl@@QAE@PAVWindow@@K@Z -??1TabControl@@UAE@XZ -??_7TabControl@@6B@ -??_GTabControl@@UAEPAXI@Z -?ActivatePage@TabControl@@UAEXXZ -?Clear@TabControl@@QAEXXZ -?Command@TabControl@@UAEXABVCommandEvent@@@Z -?DataChanged@TabControl@@UAEXABVDataChangedEvent@@@Z -?DeactivatePage@TabControl@@UAEJXZ -?GetCurPageId@TabControl@@QBEGXZ -?GetFocus@TabControl@@UAEXXZ -?GetHelpId@TabControl@@QBEKG@Z -?GetHelpId@TabControl@@QBEKXZ -?GetHelpText@TabControl@@QBEABVString@@G@Z -?GetPageCount@TabControl@@QBEGXZ -?GetPageId@TabControl@@QBEGABVPoint@@@Z -?GetPageId@TabControl@@QBEGG@Z -?GetPagePos@TabControl@@QBEGG@Z -?GetPageText@TabControl@@QBE?AVString@@G@Z -?GetTabControlStyle@StyleSettings@@QBEGXZ -?GetTabPage@TabControl@@QBEPAVTabPage@@G@Z -?GetTabPageResId@TabControl@@QBEGG@Z -?GetTabPageSizePixel@TabControl@@QBE?AVSize@@XZ -?GetUniqueId@Window@@QBEKXZ -?InsertPage@TabControl@@QAEXABVResId@@G@Z -?InsertPage@TabControl@@QAEXGABVString@@G@Z -?IsDefaultSize@Window@@QBEEXZ -?KeyInput@TabControl@@UAEXABVKeyEvent@@@Z -?LoseFocus@TabControl@@UAEXXZ -?MouseButtonDown@TabControl@@UAEXABVMouseEvent@@@Z -?Notify@TabControl@@UAEJAAVNotifyEvent@@@Z -?Paint@TabControl@@UAEXABVRectangle@@@Z -?RemovePage@TabControl@@QAEXG@Z -?RequestHelp@TabControl@@UAEXABVHelpEvent@@@Z -?Resize@TabControl@@UAEXXZ -?SelectTabPage@TabControl@@QAEXG@Z -?SetCurPageId@TabControl@@QAEXG@Z -?SetFirstPageId@TabControl@@QAEXG@Z -?SetHelpId@TabControl@@QAEXGK@Z -?SetHelpText@TabControl@@QAEXGABVString@@@Z -?SetPageText@TabControl@@QAEXGABVString@@@Z -?SetTabPage@TabControl@@QAEXGPAVTabPage@@@Z -?SetTabPageSizePixel@TabControl@@QAEXABVSize@@@Z -?StateChanged@TabControl@@UAEXG@Z -??0EventPoster@vcl@@QAE@ABVLink@@@Z -??1EventPoster@vcl@@QAE@XZ -?Post@EventPoster@vcl@@QAEXPAUUserEvent@2@@Z -??0SolarThreadExecutor@vcl@@QAE@XZ -??0ThreadExecutor@vcl@@QAE@XZ -??1SolarThreadExecutor@vcl@@QAE@XZ -??1ThreadExecutor@vcl@@QAE@XZ -??_7SolarThreadExecutor@vcl@@6B@ -??_7ThreadExecutor@vcl@@6B@ -?LinkStubworker@SolarThreadExecutor@vcl@@CAJPAX0@Z -?execute@SolarThreadExecutor@vcl@@QAEJXZ -?execute@ThreadExecutor@vcl@@QAEJXZ -?worker@SolarThreadExecutor@vcl@@AAEJPAX@Z -?worker@ThreadExecutor@vcl@@CAXPAX@Z -??0?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@PAVXInterface@1234@W4__UnoReference_Query@1234@@Z -??0?$_List_base@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@ABV?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@1@@Z -??0?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_C_Tr@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@ABU?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_N_Tr@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@1@@Z -??0?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_N_Tr@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@ABU01@@Z -??0?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_N_Tr@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@PAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@1@@Z -??0?$_STL_alloc_proxy@PAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@U12@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@2@@_STL@@QAE@ABV?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@1@PAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@1@@Z -??0?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@QAE@ABV01@@Z -??0?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@QAE@XZ -??0?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@ABV?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@1@@Z -??0DisplayConnection@vcl@@QAE@XZ -??0XDisplayConnection@awt@star@sun@com@@QAE@XZ -??0_List_iterator_base@_STL@@QAE@PAU_List_node_base@1@@Z -??1?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$_List_base@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@XZ -??1?$_STL_alloc_proxy@PAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@U12@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@2@@_STL@@QAE@XZ -??1?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@QAE@XZ -??1?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@XZ -??1DisplayConnection@vcl@@UAE@XZ -??2?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@SAPAXIPAX@Z -??3?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@SAXPAX@Z -??8BaseReference@uno@star@sun@com@@QBAEABV01234@@Z -??8BaseReference@uno@star@sun@com@@QBAEPAVXInterface@1234@@Z -??9_List_iterator_base@_STL@@QBE_NABU01@@Z -??C?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@QBAPAVXEventHandler@awt@234@XZ -??D?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_C_Tr@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QBEABV?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@XZ -??D?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_N_Tr@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QBEAAV?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@XZ -??E?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_C_Tr@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAEAAU01@XZ -??E?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_N_Tr@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAEAAU01@XZ -??_7DisplayConnection@vcl@@6B@ -??_7DisplayConnection@vcl@@6BXDisplayConnection@awt@star@sun@com@@@ -??_7DisplayConnection@vcl@@6BXTypeProvider@lang@star@sun@com@@@ -??_C@_0BM@DDDFNPGE@com?4sun?4star?4uno?4XInterface?$AA@ -??_C@_0CE@EONEHMIA@com?4sun?4star?4awt?4XDisplayConnect@ -??_G?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@QAEPAXI@Z -??_GDisplayConnection@vcl@@UAEPAXI@Z -?_Construct@_STL@@YAXPAV?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@ABV23456@@Z -?_Destroy@_STL@@YAXPAV?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@Z -?_M_create_node@?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@IAEPAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@2@ABV?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@Z -?_M_incr@_List_iterator_base@_STL@@QAEXXZ -?__query@?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?__stl_alloc_rebind@_STL@@YAAAV?$allocator@U?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@1@AAV?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@1@PBU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@1@@Z -?addErrorHandler@DisplayConnection@vcl@@UAAXABV?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@Z -?addEventHandler@DisplayConnection@vcl@@UAAXABVAny@uno@star@sun@com@@ABV?$Reference@VXEventHandler@awt@star@sun@com@@@4567@J@Z -?allocate@?$_STL_alloc_proxy@PAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@U12@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@2@@_STL@@QAEPAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@2@I@Z -?allocate@?$allocator@U?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QBEPAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@2@IPBX@Z -?begin@?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE?AU?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_N_Tr@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@XZ -?clear@?$_List_base@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAEXXZ -?deallocate@?$_STL_alloc_proxy@PAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@U12@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@2@@_STL@@QAEXPAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@2@I@Z -?deallocate@?$allocator@U?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QBEXPAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@2@I@Z -?dispatchErrorEvent@DisplayConnection@vcl@@SA_NPAX0H@Z -?dispatchEvent@DisplayConnection@vcl@@SA_NPAX0H@Z -?end@?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE?AU?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_N_Tr@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@XZ -?erase@?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE?AU?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_N_Tr@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@U32@@Z -?getIdentifier@DisplayConnection@vcl@@UAA?AVAny@uno@star@sun@com@@XZ -?insert@?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE?AU?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_N_Tr@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@U32@ABV?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@Z -?push_back@?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAEXABV?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@Z -?remove@?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAEXABV?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@Z -?removeErrorHandler@DisplayConnection@vcl@@UAAXABV?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@Z -?removeEventHandler@DisplayConnection@vcl@@UAAXABVAny@uno@star@sun@com@@ABV?$Reference@VXEventHandler@awt@star@sun@com@@@4567@@Z -?s_pType_com_sun_star_awt_XDisplayConnection@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDisplayConnection@awt@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_uno_XInterface@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInterface@uno@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?GetHeight@Font@@QBEJXZ -?GetWindowExStyle@@YAKPAUHWND__@@@Z -?GetWindowInstance@@YAPAUHINSTANCE__@@PAUHWND__@@@Z -?GetWindowStyle@@YAKPAUHWND__@@@Z -?IsMaximized@@YAHPAUHWND__@@@Z -?SetActiveBorderColor@StyleSettings@@QAEXABVColor@@@Z -?SetActiveColor2@StyleSettings@@QAEXABVColor@@@Z -?SetActiveColor@StyleSettings@@QAEXABVColor@@@Z -?SetActiveTextColor@StyleSettings@@QAEXABVColor@@@Z -?SetCheckedColor@StyleSettings@@QAEXABVColor@@@Z -?SetCursorBlinkTime@StyleSettings@@QAEXJ@Z -?SetDarkShadowColor@StyleSettings@@QAEXABVColor@@@Z -?SetDeactiveBorderColor@StyleSettings@@QAEXABVColor@@@Z -?SetDeactiveColor@StyleSettings@@QAEXABVColor@@@Z -?SetDeactiveTextColor@StyleSettings@@QAEXABVColor@@@Z -?SetDialogColor@StyleSettings@@QAEXABVColor@@@Z -?SetDialogTextColor@StyleSettings@@QAEXABVColor@@@Z -?SetDoubleClickHeight@MouseSettings@@QAEXJ@Z -?SetDoubleClickTime@MouseSettings@@QAEXK@Z -?SetDoubleClickWidth@MouseSettings@@QAEXJ@Z -?SetDragFullOptions@StyleSettings@@QAEXK@Z -?SetFieldColor@StyleSettings@@QAEXABVColor@@@Z -?SetFieldTextColor@StyleSettings@@QAEXABVColor@@@Z -?SetFloatTitleHeight@StyleSettings@@QAEXJ@Z -?SetGroupTextColor@StyleSettings@@QAEXABVColor@@@Z -?SetHeight@Font@@QAEXJ@Z -?SetHelpColor@StyleSettings@@QAEXABVColor@@@Z -?SetHelpTextColor@StyleSettings@@QAEXABVColor@@@Z -?SetHighlightColor@StyleSettings@@QAEXABVColor@@@Z -?SetHighlightTextColor@StyleSettings@@QAEXABVColor@@@Z -?SetIconHorzSpace@StyleSettings@@QAEXJ@Z -?SetIconVertSpace@StyleSettings@@QAEXJ@Z -?SetInfoTextColor@StyleSettings@@QAEXABVColor@@@Z -?SetLabelTextColor@StyleSettings@@QAEXABVColor@@@Z -?SetLightBorderColor@StyleSettings@@QAEXABVColor@@@Z -?SetLightColor@StyleSettings@@QAEXABVColor@@@Z -?SetMenuColor@StyleSettings@@QAEXABVColor@@@Z -?SetMenuDelay@MouseSettings@@QAEXK@Z -?SetMenuHighlightColor@StyleSettings@@QAEXABVColor@@@Z -?SetMenuHighlightTextColor@StyleSettings@@QAEXABVColor@@@Z -?SetMenuTextColor@StyleSettings@@QAEXABVColor@@@Z -?SetMiscSettings@AllSettings@@QAEXABVMiscSettings@@@Z -?SetMouseSettings@AllSettings@@QAEXABVMouseSettings@@@Z -?SetRadioCheckTextColor@StyleSettings@@QAEXABVColor@@@Z -?SetScrollBarSize@StyleSettings@@QAEXJ@Z -?SetShadowColor@StyleSettings@@QAEXABVColor@@@Z -?SetSpinSize@StyleSettings@@QAEXJ@Z -?SetStartDragHeight@MouseSettings@@QAEXJ@Z -?SetStartDragWidth@MouseSettings@@QAEXJ@Z -?SetTitleHeight@StyleSettings@@QAEXJ@Z -?SetTwoDigitYearStart@MiscSettings@@QAEXG@Z -?SetWindowColor@StyleSettings@@QAEXABVColor@@@Z -?SetWindowExStyle@@YAXPAUHWND__@@K@Z -?SetWindowTextColor@StyleSettings@@QAEXABVColor@@@Z -??_C@_02NJPGOMH@?$CFf?$AA@ -?DeleteBitmap@@YAXPAUHBITMAP__@@@Z -?DeleteBrush@@YAXPAUHBRUSH__@@@Z -?DeleteFont@@YAXPAUHFONT__@@@Z -?DeletePen@@YAXPAUHPEN__@@@Z -?DeleteRegion@@YAXPAUHRGN__@@@Z -?GetStockBrush@@YAPAUHBRUSH__@@H@Z -?GetStockPen@@YAPAUHPEN__@@H@Z -?Min@@YAHHH@Z -?SelectBrush@@YAPAUHBRUSH__@@PAUHDC__@@PAU1@@Z -?SelectFont@@YAPAUHFONT__@@PAUHDC__@@PAU1@@Z -?SelectPen@@YAPAUHPEN__@@PAUHDC__@@PAU1@@Z -?bFastTransparent@@3EA -??4String@@QAEAAV0@PBG@Z -?FixedFromDouble@@YA?AU_FIXED@@N@Z -?IntFromFixed@@YAHU_FIXED@@@Z -?fxDiv2@@YA?AU_FIXED@@U1@0@Z -_real@40f0000000000000 -?SelectBitmap@@YAPAUHBITMAP__@@PAUHDC__@@PAU1@@Z -??1BitmapBuffer@@QAE@XZ -??_GBitmapBuffer@@QAEPAXI@Z -?OpenGLWndProc@@YGJPAUHWND__@@IIJ@Z -WIN_PolyPolygon@16 -WIN_Polygon@12 -WIN_Rectangle@20 -?SetFilterCallback@@YAXPAX0@Z -?GetDate@I18nHelper@vcl@@QBE?AVString@@ABVDate@@E@Z -?MatchMnemonic@I18nHelper@vcl@@QBEEABVString@@G@Z -?MatchString@I18nHelper@vcl@@QBEEABVString@@0@Z -??_C@_0CB@CLKCKGPP@com?4sun?4star?4beans?4PropertyState@ -?getCppuType@@YAABVType@uno@star@sun@com@@PBW4PropertyState@beans@345@@Z -?s_pType_com_sun_star_beans_PropertyState@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBW4PropertyState@beans@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?GetStyle@Window@@QBE_JXZ -??1?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??G@YA?AVPoint@@ABV0@0@Z -??H@YA?AVPoint@@ABV0@0@Z -?SetType@Window@@QAEXG@Z -??1?$Reference@VXChangesBatch@util@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1OConfigurationTreeRoot@utl@@QAE@XZ -??_2uno@star@sun@com@@YAEABVAny@0123@AAE@Z -?GetEnableATToolSupport@MiscSettings@@QBEEXZ -?GetLayoutRTL@AllSettings@@QBEEXZ -?SetEnableATToolSupport@MiscSettings@@QAEXE@Z -?cpp_release@uno@star@sun@com@@YAXPAX@Z -?equalsIgnoreAsciiCaseAscii@OUString@rtl@@QBEEPBD@Z -?isValid@OConfigurationNode@utl@@QBEEXZ -??0?$_List_base@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAE@ABV?$allocator@VLink@@@1@@Z -??0?$_List_iterator@VLink@@U?$_Nonconst_traits@VLink@@@_STL@@@_STL@@QAE@ABU01@@Z -??0?$_List_iterator@VLink@@U?$_Nonconst_traits@VLink@@@_STL@@@_STL@@QAE@PAU?$_List_node@VLink@@@1@@Z -??0?$_STLP_alloc_proxy@PAU?$_List_node@VLink@@@_STL@@U12@V?$allocator@U?$_List_node@VLink@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_List_node@VLink@@@_STL@@@1@PAU?$_List_node@VLink@@@1@@Z -??0?$allocator@U?$_List_node@VLink@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_List_node@VLink@@@_STL@@@_STL@@QAE@ABV?$allocator@VLink@@@1@@Z -??0?$allocator@VLink@@@_STL@@QAE@XZ -??0?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAE@ABV?$allocator@VLink@@@1@@Z -??0VclEventListeners@@QAE@XZ -??0VclSimpleEvent@@QAE@K@Z -??0VclWindowEvent@@QAE@PAVWindow@@KPAX@Z -??1?$_List_base@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAU?$_List_node@VLink@@@_STL@@U12@V?$allocator@U?$_List_node@VLink@@@_STL@@@2@@_STL@@QAE@XZ -??1?$allocator@U?$_List_node@VLink@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@VLink@@@_STL@@QAE@XZ -??1?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAE@XZ -??4KeyCode@@QAEAAV0@ABV0@@Z -??4String@@QAEAAV0@ABVOUString@rtl@@@Z -??D?$_List_iterator@VLink@@U?$_Nonconst_traits@VLink@@@_STL@@@_STL@@QBEAAVLink@@XZ -??E?$_List_iterator@VLink@@U?$_Nonconst_traits@VLink@@@_STL@@@_STL@@QAEAAU01@XZ -??_7VclSimpleEvent@@6B@ -??_7VclWindowEvent@@6B@ -?AddEventListener@Application@@SAXABVLink@@@Z -?AddKeyListener@Application@@SAXABVLink@@@Z -?CallAccel@Application@@SAEABVKeyCode@@G@Z -?CanToggleImeStatusWindow@Application@@SA_NXZ -?GetActiveTopWindow@Application@@SAPAVWindow@@XZ -?GetAutoMnemonic@StyleSettings@@QBEEXZ -?GetReservedKeyCode@Application@@SAPBVKeyCode@@K@Z -?GetReservedKeyCodeCount@Application@@SAKXZ -?GetReservedKeyCodeDescription@Application@@SA?AVString@@K@Z -?GetShowImeStatusWindowDefault@Application@@SA_NXZ -?GetTopWindow@Application@@SAPAVWindow@@J@Z -?GetTopWindowCount@Application@@SAJXZ -?HandleKey@Application@@SAEKPAVWindow@@PAVKeyEvent@@@Z -?IsAccessibilityEnabled@Application@@SAEXZ -?PostKeyEvent@Application@@SAXKPAVWindow@@PAVKeyEvent@@@Z -?RemoveEventListener@Application@@SAXABVLink@@@Z -?RemoveKeyListener@Application@@SAXABVLink@@@Z -?SetAutoMnemonic@StyleSettings@@QAEXE@Z -?ShowImeStatusWindow@Application@@SAX_N@Z -?_Construct@_STL@@YAXPAVLink@@ABV2@@Z -?_Destroy@_STL@@YAXPAVLink@@@Z -?_M_create_node@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@IAEPAU?$_List_node@VLink@@@2@ABVLink@@@Z -?allocate@?$allocator@U?$_List_node@VLink@@@_STL@@@_STL@@QBEPAU?$_List_node@VLink@@@2@IPBX@Z -?begin@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAE?AU?$_List_iterator@VLink@@U?$_Nonconst_traits@VLink@@@_STL@@@2@XZ -?clear@?$_List_base@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAEXXZ -?deallocate@?$allocator@U?$_List_node@VLink@@@_STL@@@_STL@@QBEXPAU?$_List_node@VLink@@@2@I@Z -?empty@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QBE_NXZ -?end@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAE?AU?$_List_iterator@VLink@@U?$_Nonconst_traits@VLink@@@_STL@@@2@XZ -?erase@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAE?AU?$_List_iterator@VLink@@U?$_Nonconst_traits@VLink@@@_STL@@@2@U32@@Z -?insert@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAE?AU?$_List_iterator@VLink@@U?$_Nonconst_traits@VLink@@@_STL@@@2@U32@ABVLink@@@Z -?push_back@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAEXABVLink@@@Z -?remove@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAEXABVLink@@@Z -??0?$Reference@VXAccessibleTopWindowMap@bridge@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXAccessibleTopWindowMap@bridge@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXComponent@lang@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXCurrentContext@uno@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXCurrentContext@uno@star@sun@com@@@uno@star@sun@com@@QAE@PAVXCurrentContext@1234@@Z -??0?$Reference@VXCurrentContext@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXExtendedToolkit@awt@star@sun@com@drafts@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0AccessBridgeCurrentContext@@QAE@ABV?$Reference@VXCurrentContext@uno@star@sun@com@@@uno@star@sun@com@@@Z -??0ContextLayer@uno@star@sun@com@@QAE@ABV?$Reference@VXCurrentContext@uno@star@sun@com@@@1234@@Z -??0XCurrentContext@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXAccessibleTopWindowMap@bridge@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXCurrentContext@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXExtendedToolkit@awt@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??1AccessBridgeCurrentContext@@UAE@XZ -??1ContextLayer@uno@star@sun@com@@QAE@XZ -??1DeploymentException@uno@star@sun@com@@QAE@XZ -??1JavaDisabledException@java@star@sun@com@@QAE@XZ -??1JavaInitializationException@java@star@sun@com@@QAE@XZ -??1JavaNotConfiguredException@java@star@sun@com@@QAE@XZ -??1JavaVMCreationFailureException@java@star@sun@com@@QAE@XZ -??1MissingJavaRuntimeException@java@star@sun@com@@QAE@XZ -??4?$Reference@VXAccessibleTopWindowMap@bridge@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??C?$Reference@VXCurrentContext@uno@star@sun@com@@@uno@star@sun@com@@QBAPAVXCurrentContext@1234@XZ -??_7AccessBridgeCurrentContext@@6BOWeakObject@cppu@@@ -??_7AccessBridgeCurrentContext@@6BXCurrentContext@uno@star@sun@com@@@ -??_7AccessBridgeCurrentContext@@6BXTypeProvider@lang@star@sun@com@@@ -??_C@_04NPFLBBPL@msci?$AA@ -??_C@_0CA@JIGCNJJM@com?4sun?4star?4lang?4XTypeProvider?$AA@ -??_C@_0CB@FOAAJKKE@com?4sun?4star?4uno?4XCurrentContext@ -??_C@_0CJ@MNCACNCN@drafts?4com?4sun?4star?4awt?4XExtende@ -??_C@_0EB@HGABDKAI@drafts?4com?4sun?4star?4accessibilit@ -??_GAccessBridgeCurrentContext@@UAEPAXI@Z -??_R0?AVJavaDisabledException@java@star@sun@com@@@8 -??_R0?AVJavaNotConfiguredException@java@star@sun@com@@@8 -??_R0?AVJavaVMCreationFailureException@java@star@sun@com@@@8 -??_R0?AVMissingJavaRuntimeException@java@star@sun@com@@@8 -?compareTo@OUString@rtl@@QBEJABV12@J@Z -?cpp_acquire@uno@star@sun@com@@YAXPAX@Z -?equalsAscii@OUString@rtl@@QBEEPBD@Z -?get@?$Reference@VXCurrentContext@uno@star@sun@com@@@uno@star@sun@com@@QBAPAVXCurrentContext@2345@XZ -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessibleTopWindowMap@bridge@accessibility@star@sun@com@drafts@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXCurrentContext@uno@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXExtendedToolkit@awt@star@sun@com@drafts@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTypeProvider@lang@star@sun@com@@@2345@@Z -?getCurrentContext@uno@star@sun@com@@YA?AV?$Reference@VXCurrentContext@uno@star@sun@com@@@1234@XZ -?getValueByName@AccessBridgeCurrentContext@@UAA?AVAny@uno@star@sun@com@@ABVOUString@rtl@@@Z -?iquery@?$Reference@VXAccessibleTopWindowMap@bridge@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@CAPAVXAccessibleTopWindowMap@bridge@accessibility@345drafts@@PAVXInterface@2345@@Z -?iquery@?$Reference@VXComponent@lang@star@sun@com@@@uno@star@sun@com@@CAPAVXComponent@lang@345@PAVXInterface@2345@@Z -?iquery@?$Reference@VXExtendedToolkit@awt@star@sun@com@drafts@@@uno@star@sun@com@@CAPAVXExtendedToolkit@awt@345drafts@@PAVXInterface@2345@@Z -?iquery@BaseReference@uno@star@sun@com@@KAPAVXInterface@2345@PAV62345@ABVType@2345@@Z -?makeAny@uno@star@sun@com@@YA?AVAny@1234@ABV?$Reference@VXExtendedToolkit@awt@star@sun@com@drafts@@@1234@@Z -?makeAny@uno@star@sun@com@@YA?AVAny@1234@ABVOUString@rtl@@@Z -?realloc@?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@QAAXJ@Z -?s_pType_com_sun_star_lang_XTypeProvider@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTypeProvider@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_uno_XCurrentContext@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXCurrentContext@uno@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_drafts_com_sun_star_accessibility_bridge_XAccessibleTopWindowMap@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessibleTopWindowMap@bridge@accessibility@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_drafts_com_sun_star_awt_XExtendedToolkit@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXExtendedToolkit@awt@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?set@?$Reference@VXAccessibleTopWindowMap@bridge@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAAEPAVXAccessibleTopWindowMap@bridge@accessibility@345drafts@@@Z -??1VclEventListeners@@QAE@XZ -??_GVclEventListeners@@QAEPAXI@Z -?GetDisplayInfo@System@@SA_NAAUDisplayInfo@1@@Z -?queryInterface@cppu@@YA?AVAny@uno@star@sun@com@@ABVType@3456@PAVXEventListener@lang@456@PAVXDragGestureListener@dnd@datatransfer@456@PAVXDragSourceListener@dnd@datatransfer@456@PAVXDropTargetListener@dnd@datatransfer@456@@Z -??C?$Reference@VXExtendedToolkit@awt@star@sun@com@drafts@@@uno@star@sun@com@@QBAPAVXExtendedToolkit@awt@234drafts@@XZ -??_2uno@star@sun@com@@YAEABVAny@0123@AAF@Z -?NotifyAccessibleStateEventGlobally@unohelper@vcl@@YAXABUAccessibleEventObject@accessibility@star@sun@com@drafts@@@Z -?cpp_queryInterface@uno@star@sun@com@@YAPAXPAXPAU_typelib_TypeDescriptionReference@@@Z -??0TextDataObject@unohelper@vcl@@QAE@ABVString@@@Z -??1TextDataObject@unohelper@vcl@@UAE@XZ -??_7TextDataObject@unohelper@vcl@@6BOWeakObject@cppu@@@ -??_7TextDataObject@unohelper@vcl@@6BXTransferable@datatransfer@star@sun@com@@@ -??_GTextDataObject@unohelper@vcl@@UAEPAXI@Z -?GetString@TextDataObject@unohelper@vcl@@QAEAAVString@@XZ -?acquire@TextDataObject@unohelper@vcl@@UAAXXZ -?acquire@TextDataObject@unohelper@vcl@@W3AAXXZ -?getTransferData@TextDataObject@unohelper@vcl@@UAA?AVAny@uno@star@sun@com@@ABUDataFlavor@datatransfer@678@@Z -?getTransferDataFlavors@TextDataObject@unohelper@vcl@@UAA?AV?$Sequence@UDataFlavor@datatransfer@star@sun@com@@@uno@star@sun@com@@XZ -?isDataFlavorSupported@TextDataObject@unohelper@vcl@@UAAEABUDataFlavor@datatransfer@star@sun@com@@@Z -?queryInterface@TextDataObject@unohelper@vcl@@UAA?AVAny@uno@star@sun@com@@ABVType@5678@@Z -?queryInterface@TextDataObject@unohelper@vcl@@W3AA?AVAny@uno@star@sun@com@@ABVType@5678@@Z -?release@TextDataObject@unohelper@vcl@@UAAXXZ -?release@TextDataObject@unohelper@vcl@@W3AAXXZ -??0?$_List_iterator@VLink@@U?$_Const_traits@VLink@@@_STL@@@_STL@@QAE@PAU?$_List_node@VLink@@@1@@Z -??0?$allocator@VLink@@@_STL@@QAE@ABV?$allocator@U?$_List_node@VLink@@@_STL@@@1@@Z -??0?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAE@ABV01@@Z -??D?$_List_iterator@VLink@@U?$_Const_traits@VLink@@@_STL@@@_STL@@QBEABVLink@@XZ -??E?$_List_iterator@VLink@@U?$_Const_traits@VLink@@@_STL@@@_STL@@QAEAAU01@XZ -??E?$_List_iterator@VLink@@U?$_Nonconst_traits@VLink@@@_STL@@@_STL@@QAE?AU01@H@Z -?Call@VclEventListeners@@QBEXPAVVclSimpleEvent@@@Z -?CreateType@VclMenuEvent@@SAPAXXZ -?CreateType@VclSimpleEvent@@SAPAXXZ -?CreateType@VclWindowEvent@@SAPAXXZ -?IsA@VclMenuEvent@@UBEEP6APAXXZ@Z -?IsA@VclSimpleEvent@@UBEEP6APAXXZ@Z -?IsA@VclWindowEvent@@UBEEP6APAXXZ@Z -?IsOf@VclMenuEvent@@SAEP6APAXXZ@Z -?IsOf@VclSimpleEvent@@SAEP6APAXXZ@Z -?IsOf@VclWindowEvent@@SAEP6APAXXZ@Z -?Process@VclEventListeners@@QBEEPAVVclSimpleEvent@@@Z -?StaticType@VclMenuEvent@@SAP6APAXXZXZ -?StaticType@VclSimpleEvent@@SAP6APAXXZXZ -?StaticType@VclWindowEvent@@SAP6APAXXZXZ -?Type@VclMenuEvent@@UBEP6APAXXZXZ -?Type@VclSimpleEvent@@UBEP6APAXXZXZ -?Type@VclWindowEvent@@UBEP6APAXXZXZ -?_M_insert_dispatch@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAEXU?$_List_iterator@VLink@@U?$_Nonconst_traits@VLink@@@_STL@@@2@U?$_List_iterator@VLink@@U?$_Const_traits@VLink@@@_STL@@@2@1ABU__false_type@2@@Z -?begin@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QBE?AU?$_List_iterator@VLink@@U?$_Const_traits@VLink@@@_STL@@@2@XZ -?end@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QBE?AU?$_List_iterator@VLink@@U?$_Const_traits@VLink@@@_STL@@@2@XZ -?get_allocator@?$_List_base@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QBE?AV?$allocator@VLink@@@2@XZ -?insert@?$list@VLink@@V?$allocator@VLink@@@_STL@@@_STL@@QAEXU?$_List_iterator@VLink@@U?$_Nonconst_traits@VLink@@@_STL@@@2@U?$_List_iterator@VLink@@U?$_Const_traits@VLink@@@_STL@@@2@1@Z -?CompareString@I18nHelper@vcl@@QBEJABVString@@0@Z -?GetDate@I18nHelper@vcl@@QBE?AVString@@ABVDate@@@Z -?GetNum@I18nHelper@vcl@@QBE?AVString@@JGEE@Z -?GetColorTransformedBitmap@Bitmap@@QBE?AV1@W4BmpColorMode@@@Z -?MakeMono@Bitmap@@QAEEE@Z -?GetBitmap@AlphaMask@@QBE?AVBitmap@@XZ -?GetColorTransformedBitmapEx@BitmapEx@@QBE?AV1@W4BmpColorMode@@@Z -?max@_STL@@YAABJABJ0@Z -?IsEqual@GDIMetaFile@@QBEEABV1@@Z -??0ImpGfxLink@@QAE@XZ -??1ImpGfxLink@@QAE@XZ -??4ImpGfxLink@@QAEAAU0@ABU0@@Z -??_GImpGfxLink@@QAEPAXI@Z -?GetPrefMapMode@GfxLink@@QBEABVMapMode@@XZ -?GetPrefSize@GfxLink@@QBEABVSize@@XZ -?IsEqual@GfxLink@@QBEEABV1@@Z -?SetPrefMapMode@GfxLink@@QAEXABVMapMode@@@Z -?SetPrefSize@GfxLink@@QAEXABVSize@@@Z -?GetBitmap@Graphic@@QBE?AVBitmap@@PBVSize@@@Z -?GetBitmapEx@Graphic@@QBE?AVBitmapEx@@PBVSize@@@Z -?GetSizePixel@Graphic@@QBE?AVSize@@PBVOutputDevice@@@Z -?ClearCaches@Image@@QAEXXZ -?GetBitmap@Image@@QBE?AVBitmap@@XZ -?GetColorTransformArrays@Image@@SAXW4ImageColorTransform@@AAPAVColor@@1AAK@Z -?GetColorTransformedImage@Image@@QBE?AV1@W4ImageColorTransform@@@Z -?GetColorTransformedImageList@ImageList@@QBE?AV1@W4ImageColorTransform@@@Z -?GetMaskBitmap@Image@@QBE?AVBitmap@@XZ -?GetMaskColor@Image@@QBE?AVColor@@XZ -?HasMaskBitmap@Image@@QBEEXZ -?HasMaskColor@Image@@QBEEXZ -_real@3e45798ee2308c3a -??0?$_Hashtable_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@PAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@PAV?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@1@@Z -??0?$_Hashtable_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@XZ -??0?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@ABU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@1@@Z -??0?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@PBU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@PBV?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@1@@Z -??0?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@XZ -??0?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@PBU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@PBV?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@1@@Z -??0?$_STLP_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@V?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@1@I@Z -??0?$allocator@PAX@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@@Z -??0?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@@Z -??0?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@IABUOUStringHash@rtl@@ABU?$equal_to@VOUString@rtl@@@1@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@1@@Z -??1?$_STLP_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@V?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@XZ -??4?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEAAV01@ABV01@@Z -??8_STL@@YA_NABU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@0@0@Z -??9_STL@@YA_NABU?$_Hashtable_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@0@0@Z -??C?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QBEPBU?$pair@$$CBVOUString@rtl@@V12@@1@XZ -??D?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QBEABU?$pair@$$CBVOUString@rtl@@V12@@1@XZ -??D?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QBEAAU?$pair@$$CBVOUString@rtl@@V12@@1@XZ -??E?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEAAU01@XZ -??R?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@QBEABVOUString@rtl@@ABU?$pair@$$CBVOUString@rtl@@V12@@1@@Z -??R?$less@I@_STL@@QBE_NABI0@Z -?_M_bkt_num@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@ABEIABU?$pair@$$CBVOUString@rtl@@V12@@2@@Z -?_M_bkt_num@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@ABEIABU?$pair@$$CBVOUString@rtl@@V12@@2@I@Z -?_M_bkt_num_key@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@ABEIABVOUString@rtl@@@Z -?_M_bkt_num_key@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@ABEIABVOUString@rtl@@I@Z -?_M_copy_from@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@AAEXABV12@@Z -?_M_delete_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@AAEXPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@Z -?_M_equal@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@SA_NABV12@0@Z -?_M_find@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@ABEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@ABVOUString@rtl@@@Z -?_M_get_bucket@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@ABEPBU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@I@Z -?_M_initialize_buckets@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@AAEXI@Z -?_M_insert@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEAAU?$pair@$$CBVOUString@rtl@@V12@@2@ABU32@@Z -?_M_list@?$_Stl_prime@_N@_STL@@2QBIB -?_M_new_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@AAEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@ABU?$pair@$$CBVOUString@rtl@@V12@@2@@Z -?_M_next_size@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@ABEII@Z -?_M_skip_to_next@?$_Hashtable_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@XZ -?__advance@_STL@@YAXAAPBIHABUrandom_access_iterator_tag@1@@Z -?__distance@_STL@@YAHABQBI0ABUrandom_access_iterator_tag@1@@Z -?__less@_STL@@YA?AU?$less@I@1@PAI@Z -?__lower_bound@_STL@@YAPBIPBI0ABIU?$less@I@1@PAH@Z -?allocate@?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QBEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@IPBX@Z -?begin@?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@QBE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@2@XZ -?begin@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QBE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@2@XZ -?bucket_count@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QBEIXZ -?clear@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEXXZ -?deallocate@?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@I@Z -?distance@_STL@@YAHABQBI0@Z -?end@?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@2@XZ -?end@?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@QBE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@2@XZ -?end@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@2@XZ -?end@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QBE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@2@XZ -?find@?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@2@ABVOUString@rtl@@@Z -?find@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@2@ABVOUString@rtl@@@Z -?iterator_category@_STL@@YA?AUrandom_access_iterator_tag@1@PBI@Z -?resize@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAEXI@Z -??0MetaLayoutModeAction@@QAE@ABV0@@Z -??0MetaLayoutModeAction@@QAE@K@Z -??0MetaLayoutModeAction@@QAE@XZ -??1MetaLayoutModeAction@@UAE@XZ -??8@YAEABVByteString@@0@Z -??9LineInfo@@QBEEABV0@@Z -??_7MetaLayoutModeAction@@6B@ -??_GMetaLayoutModeAction@@UAEPAXI@Z -?Clone@MetaLayoutModeAction@@UAEPAVMetaAction@@XZ -?Compare@MetaAction@@EBEEABV1@@Z -?Compare@MetaArcAction@@EBEEABVMetaAction@@@Z -?Compare@MetaBmpAction@@EBEEABVMetaAction@@@Z -?Compare@MetaBmpExAction@@EBEEABVMetaAction@@@Z -?Compare@MetaBmpExScaleAction@@EBEEABVMetaAction@@@Z -?Compare@MetaBmpExScalePartAction@@EBEEABVMetaAction@@@Z -?Compare@MetaBmpScaleAction@@EBEEABVMetaAction@@@Z -?Compare@MetaBmpScalePartAction@@EBEEABVMetaAction@@@Z -?Compare@MetaChordAction@@EBEEABVMetaAction@@@Z -?Compare@MetaClipRegionAction@@EBEEABVMetaAction@@@Z -?Compare@MetaCommentAction@@EBEEABVMetaAction@@@Z -?Compare@MetaEPSAction@@EBEEABVMetaAction@@@Z -?Compare@MetaEllipseAction@@EBEEABVMetaAction@@@Z -?Compare@MetaFillColorAction@@EBEEABVMetaAction@@@Z -?Compare@MetaFloatTransparentAction@@EBEEABVMetaAction@@@Z -?Compare@MetaFontAction@@EBEEABVMetaAction@@@Z -?Compare@MetaGradientAction@@EBEEABVMetaAction@@@Z -?Compare@MetaGradientExAction@@EBEEABVMetaAction@@@Z -?Compare@MetaHatchAction@@EBEEABVMetaAction@@@Z -?Compare@MetaISectRectClipRegionAction@@EBEEABVMetaAction@@@Z -?Compare@MetaISectRegionClipRegionAction@@EBEEABVMetaAction@@@Z -?Compare@MetaLayoutModeAction@@EBEEABVMetaAction@@@Z -?Compare@MetaLineAction@@EBEEABVMetaAction@@@Z -?Compare@MetaLineColorAction@@EBEEABVMetaAction@@@Z -?Compare@MetaMapModeAction@@EBEEABVMetaAction@@@Z -?Compare@MetaMaskAction@@EBEEABVMetaAction@@@Z -?Compare@MetaMaskScaleAction@@EBEEABVMetaAction@@@Z -?Compare@MetaMaskScalePartAction@@EBEEABVMetaAction@@@Z -?Compare@MetaMoveClipRegionAction@@EBEEABVMetaAction@@@Z -?Compare@MetaPieAction@@EBEEABVMetaAction@@@Z -?Compare@MetaPixelAction@@EBEEABVMetaAction@@@Z -?Compare@MetaPointAction@@EBEEABVMetaAction@@@Z -?Compare@MetaPolyLineAction@@EBEEABVMetaAction@@@Z -?Compare@MetaPolyPolygonAction@@EBEEABVMetaAction@@@Z -?Compare@MetaPolygonAction@@EBEEABVMetaAction@@@Z -?Compare@MetaPushAction@@EBEEABVMetaAction@@@Z -?Compare@MetaRasterOpAction@@EBEEABVMetaAction@@@Z -?Compare@MetaRectAction@@EBEEABVMetaAction@@@Z -?Compare@MetaRefPointAction@@EBEEABVMetaAction@@@Z -?Compare@MetaRoundRectAction@@EBEEABVMetaAction@@@Z -?Compare@MetaStretchTextAction@@EBEEABVMetaAction@@@Z -?Compare@MetaTextAction@@EBEEABVMetaAction@@@Z -?Compare@MetaTextAlignAction@@EBEEABVMetaAction@@@Z -?Compare@MetaTextArrayAction@@EBEEABVMetaAction@@@Z -?Compare@MetaTextColorAction@@EBEEABVMetaAction@@@Z -?Compare@MetaTextFillColorAction@@EBEEABVMetaAction@@@Z -?Compare@MetaTextLineAction@@EBEEABVMetaAction@@@Z -?Compare@MetaTextLineColorAction@@EBEEABVMetaAction@@@Z -?Compare@MetaTextRectAction@@EBEEABVMetaAction@@@Z -?Compare@MetaTransparentAction@@EBEEABVMetaAction@@@Z -?Compare@MetaWallpaperAction@@EBEEABVMetaAction@@@Z -?Execute@MetaLayoutModeAction@@UAEXPAVOutputDevice@@@Z -?IsEqual@MetaAction@@QBEEABV1@@Z -?max@_STL@@YAABKABK0@Z -??4FontCharMap@@QAEAAV0@ABV0@@Z -?GetPixelOffset@OutputDevice@@QBE?AVSize@@XZ -?SetPixelOffset@OutputDevice@@QAEXABVSize@@@Z -?EnableRTL@OutputDevice@@QAEXE@Z -?GetFontColor@StyleSettings@@QBEABVColor@@XZ -?IsRTLEnabled@OutputDevice@@QBEEXZ -??0?$_STLP_alloc_proxy@PAHHV?$allocator@H@_STL@@@_STL@@QAE@ABV?$allocator@H@1@PAH@Z -??0?$_STLP_alloc_proxy@PAVPolyPolygon@@V1@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAE@ABV?$allocator@VPolyPolygon@@@1@PAVPolyPolygon@@@Z -??0?$_STLP_alloc_proxy@PAVRectangle@@V1@V?$allocator@VRectangle@@@_STL@@@_STL@@QAE@ABV?$allocator@VRectangle@@@1@PAVRectangle@@@Z -??0?$_Vector_base@HV?$allocator@H@_STL@@@_STL@@QAE@IABV?$allocator@H@1@@Z -??0?$_Vector_base@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAE@ABV?$allocator@VPolyPolygon@@@1@@Z -??0?$_Vector_base@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@QAE@ABV?$allocator@VRectangle@@@1@@Z -??0?$allocator@H@_STL@@QAE@ABV01@@Z -??0?$allocator@VPolyPolygon@@@_STL@@QAE@ABV01@@Z -??0?$allocator@VPolyPolygon@@@_STL@@QAE@XZ -??0?$allocator@VRectangle@@@_STL@@QAE@ABV01@@Z -??0?$allocator@VRectangle@@@_STL@@QAE@XZ -??0?$auto_ptr@VVirtualDevice@@@_STL@@QAE@PAVVirtualDevice@@@Z -??0?$vector@HV?$allocator@H@_STL@@@_STL@@QAE@ABV01@@Z -??0?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAE@ABV?$allocator@VPolyPolygon@@@1@@Z -??0?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@QAE@ABV?$allocator@VRectangle@@@1@@Z -??0CharMapCacheItem@?9??GetFontCharMap@OutputDevice@@QBEEAAVFontCharMap@@@Z@QAE@XZ -??1?$_STLP_alloc_proxy@PAHHV?$allocator@H@_STL@@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAVPolyPolygon@@V1@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAVRectangle@@V1@V?$allocator@VRectangle@@@_STL@@@_STL@@QAE@XZ -??1?$_Vector_base@HV?$allocator@H@_STL@@@_STL@@QAE@XZ -??1?$_Vector_base@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAE@XZ -??1?$_Vector_base@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@H@_STL@@QAE@XZ -??1?$allocator@VPolyPolygon@@@_STL@@QAE@XZ -??1?$allocator@VRectangle@@@_STL@@QAE@XZ -??1?$auto_ptr@VVirtualDevice@@@_STL@@QAE@XZ -??1?$vector@HV?$allocator@H@_STL@@@_STL@@QAE@XZ -??1?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAE@XZ -??1?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@QAE@XZ -??1CharMapCacheItem@?9??GetFontCharMap@OutputDevice@@QBEEAAVFontCharMap@@@Z@QAE@XZ -??A?$vector@HV?$allocator@H@_STL@@@_STL@@QAEAAHI@Z -??C?$auto_ptr@VVirtualDevice@@@_STL@@QBEPAVVirtualDevice@@XZ -??YRectangle@@QAEAAV0@ABVPoint@@@Z -??ZPoint@@QAEAAV0@ABV0@@Z -?AddTempDevFont@OutputDevice@@QAEEABVString@@0@Z -?DrawCtrlText@OutputDevice@@QAEXABVPoint@@ABVString@@GGGPAV?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@PAV3@@Z -?DrawText@OutputDevice@@QAEXABVPoint@@ABVString@@GGPAV?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@PAV3@@Z -?DrawText@OutputDevice@@QAEXABVRectangle@@ABVString@@GPAV?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@PAV3@@Z -?GetAntialiasingMinPixelHeight@StyleSettings@@QBEKXZ -?GetCaretPositions@OutputDevice@@QBE_NABVString@@PAJGG1JE@Z -?GetDisplayOptions@StyleSettings@@QBEKXZ -?GetGlyphBoundRects@OutputDevice@@QAEEABVPoint@@ABVString@@HHHAAV?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@@Z -?GetHighContrastMode@StyleSettings@@QBEEXZ -?GetTextBoundRect@OutputDevice@@QBEEAAVRectangle@@ABVString@@GGG@Z -?GetTextBreak@OutputDevice@@QBEGABVString@@JGGJE@Z -?GetTextOutline@OutputDevice@@QBEEAAVPolyPolygon@@ABVString@@GGGE@Z -?GetTextOutlines@OutputDevice@@QBEEAAV?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@ABVString@@GGGE@Z -?HasGlyphs@OutputDevice@@QBEGABVFont@@ABVString@@GG@Z -?SetLayoutMode@OutputDevice@@QAEXK@Z -?_Construct@_STL@@YAXPAJABJ@Z -?_Construct@_STL@@YAXPAVPolyPolygon@@ABV2@@Z -?_Construct@_STL@@YAXPAVRectangle@@ABV2@@Z -?_Destroy@_STL@@YAXPAH0@Z -?_Destroy@_STL@@YAXPAJ0@Z -?_Destroy@_STL@@YAXPAVPolyPolygon@@0@Z -?_Destroy@_STL@@YAXPAVPolyPolygon@@@Z -?_Destroy@_STL@@YAXPAVRectangle@@0@Z -?_Destroy@_STL@@YAXPAVRectangle@@@Z -?_IsOKToMemCpy@_STL@@YA?AU?$_OKToMemCpy@HH@1@PAH0@Z -?_M_allocate_and_copy@?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@IAEPAVPolyPolygon@@IPAV3@0@Z -?_M_clear@?$vector@JV?$allocator@J@_STL@@@_STL@@IAEXXZ -?_M_clear@?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@IAEXXZ -?_M_clear@?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@IAEXXZ -?_M_insert_overflow@?$vector@JV?$allocator@J@_STL@@@_STL@@IAEXPAJABJABU__true_type@2@I_N@Z -?_M_insert_overflow@?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@IAEXPAVPolyPolygon@@ABV3@ABU__false_type@2@I_N@Z -?_M_insert_overflow@?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@IAEXPAVRectangle@@ABV3@ABU__false_type@2@I_N@Z -?_M_set@?$vector@JV?$allocator@J@_STL@@@_STL@@IAEXPAJ00@Z -?_M_set@?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@IAEXPAVPolyPolygon@@00@Z -?_M_set@?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@IAEXPAVRectangle@@00@Z -?_Ret@?$_BothPtrType@PBHPAH@_STL@@SA?AU__true_type@2@XZ -?_Ret@?$_OKToMemCpy@HH@_STL@@SA?AU__false_type@2@XZ -?__copy@_STL@@YAPAHPBH0PAHABUrandom_access_iterator_tag@1@1@Z -?__copy@_STL@@YAPAVPolyPolygon@@PAV2@00ABUrandom_access_iterator_tag@1@PAH@Z -?__copy@_STL@@YAPAVRectangle@@PAV2@00ABUrandom_access_iterator_tag@1@PAH@Z -?__copy_aux@_STL@@YAPAHPBH0PAHABU__true_type@1@@Z -?__copy_ptrs@_STL@@YAPAHPBH0PAHABU__false_type@1@@Z -?__copy_ptrs@_STL@@YAPAVPolyPolygon@@PAV2@00ABU__false_type@1@@Z -?__copy_ptrs@_STL@@YAPAVRectangle@@PAV2@00ABU__false_type@1@@Z -?__copy_trivial@_STL@@YAPAXPBX0PAX@Z -?__destroy@_STL@@YAXPAH00@Z -?__destroy@_STL@@YAXPAJ00@Z -?__destroy@_STL@@YAXPAVPolyPolygon@@00@Z -?__destroy@_STL@@YAXPAVRectangle@@00@Z -?__destroy_aux@_STL@@YAXPAH0ABU__true_type@1@@Z -?__destroy_aux@_STL@@YAXPAJ0ABU__true_type@1@@Z -?__destroy_aux@_STL@@YAXPAVPolyPolygon@@0ABU__false_type@1@@Z -?__destroy_aux@_STL@@YAXPAVRectangle@@0ABU__false_type@1@@Z -?__set@__ptr_base@_STL@@QAEXPAX@Z -?__uninitialized_copy@_STL@@YAPAHPBH0PAHABU__true_type@1@@Z -?__uninitialized_copy@_STL@@YAPAVPolyPolygon@@PAV2@00ABU__false_type@1@@Z -?__uninitialized_copy@_STL@@YAPAVRectangle@@PAV2@00ABU__false_type@1@@Z -?__uninitialized_fill_n@_STL@@YAPAVPolyPolygon@@PAV2@IABV2@ABU__false_type@1@@Z -?__uninitialized_fill_n@_STL@@YAPAVRectangle@@PAV2@IABV2@ABU__false_type@1@@Z -?allocate@?$allocator@H@_STL@@QBEPAHIPBX@Z -?allocate@?$allocator@J@_STL@@QBEPAJIPBX@Z -?allocate@?$allocator@VPolyPolygon@@@_STL@@QBEPAVPolyPolygon@@IPBX@Z -?allocate@?$allocator@VRectangle@@@_STL@@QBEPAVRectangle@@IPBX@Z -?begin@?$vector@HV?$allocator@H@_STL@@@_STL@@QAEPAHXZ -?begin@?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAEPAVPolyPolygon@@XZ -?begin@?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@QAEPAVRectangle@@XZ -?begin@?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@QBEPBVString@@XZ -?capacity@?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QBEIXZ -?clear@?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAEXXZ -?clear@?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@QAEXXZ -?deallocate@?$allocator@H@_STL@@QBEXPAHI@Z -?deallocate@?$allocator@J@_STL@@QBEXPAJI@Z -?deallocate@?$allocator@VPolyPolygon@@@_STL@@QBEXPAVPolyPolygon@@I@Z -?deallocate@?$allocator@VRectangle@@@_STL@@QBEXPAVRectangle@@I@Z -?distance_type@_STL@@YAPAHPBH@Z -?distance_type@_STL@@YAPAHPBVPolyPolygon@@@Z -?distance_type@_STL@@YAPAHPBVRectangle@@@Z -?end@?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAEPAVPolyPolygon@@XZ -?end@?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@QAEPAVRectangle@@XZ -?end@?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@QBEPBVString@@XZ -?erase@?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAEPAVPolyPolygon@@PAV3@0@Z -?erase@?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@QAEPAVRectangle@@PAV3@0@Z -?fill_n@_STL@@YAPAJPAJIABJ@Z -?get@?$auto_ptr@VVirtualDevice@@@_STL@@QBEPAVVirtualDevice@@XZ -?get_allocator@?$vector@HV?$allocator@H@_STL@@@_STL@@QBE?AV?$allocator@H@2@XZ -?iterator_category@_STL@@YA?AUrandom_access_iterator_tag@1@PBH@Z -?iterator_category@_STL@@YA?AUrandom_access_iterator_tag@1@PBVPolyPolygon@@@Z -?iterator_category@_STL@@YA?AUrandom_access_iterator_tag@1@PBVRectangle@@@Z -?push_back@?$vector@JV?$allocator@J@_STL@@@_STL@@QAEXABJ@Z -?push_back@?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAEXABVPolyPolygon@@@Z -?push_back@?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@QAEXABVRectangle@@@Z -?reserve@?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAEXI@Z -?size@?$vector@HV?$allocator@H@_STL@@@_STL@@QBEIXZ -?size@?$vector@JV?$allocator@J@_STL@@@_STL@@QBEIXZ -?size@?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QBEIXZ -?size@?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@QBEIXZ -?size@?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@QBEIXZ -?value_type@_STL@@YAPAHPBH@Z -?value_type@_STL@@YAPAJPBJ@Z -?value_type@_STL@@YAPAVPolyPolygon@@PBV2@@Z -?value_type@_STL@@YAPAVRectangle@@PBV2@@Z -??0?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QAE@ABU?$less@G@1@ABV?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@1@@Z -??0?$_Rb_tree_base@U?$pair@$$CBGUSymbolEntry@@@_STL@@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@1@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Const_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@1@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QAE@ABU01@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QAE@PAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@1@@Z -??0?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@_STL@@U12@V?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@_STL@@@1@PAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@1@@Z -??0?$_STLP_alloc_proxy@PAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@U12@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@1@PAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@1@@Z -??0?$_Vector_base@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@1@@Z -??0?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@1@@Z -??0?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@_STL@@QAE@XZ -??0?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@_STL@@QAE@XZ -??0?$multimap@GUSymbolEntry@@U?$less@G@_STL@@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@3@@_STL@@QAE@XZ -??0?$pair@$$CBGUSymbolEntry@@@_STL@@QAE@ABGABUSymbolEntry@@@Z -??0?$pair@$$CBGUSymbolEntry@@@_STL@@QAE@ABU01@@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@QAE@ABU01@@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@1@0@Z -??0?$vector@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@1@@Z -??0StarSymbolToMSMultiFont@@QAE@XZ -??1?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_Rb_tree_base@U?$pair@$$CBGUSymbolEntry@@@_STL@@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@_STL@@U12@V?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@U12@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@QAE@XZ -??1?$_Vector_base@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@QAE@XZ -??1?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@_STL@@QAE@XZ -??1?$multimap@GUSymbolEntry@@U?$less@G@_STL@@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@3@@_STL@@QAE@XZ -??1?$vector@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@QAE@XZ -??1StarSymbolToMSMultiFont@@UAE@XZ -??9_Rb_tree_base_iterator@_STL@@QBE_NABU01@@Z -??A?$vector@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@QAEAAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@1@I@Z -??C?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QBEPAU?$pair@$$CBGUSymbolEntry@@@1@XZ -??D?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Const_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QBEABU?$pair@$$CBGUSymbolEntry@@@1@XZ -??D?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QBEAAU?$pair@$$CBGUSymbolEntry@@@1@XZ -??E?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QAEAAU01@XZ -??R?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@_STL@@QBEABGABU?$pair@$$CBGUSymbolEntry@@@1@@Z -??R?$less@G@_STL@@QBE_NABG0@Z -??_7StarSymbolToMSMultiFont@@6B@ -??_GStarSymbolToMSMultiFont@@UAEPAXI@Z -?CreateStarSymbolToMSMultiFont@@YAPAVStarSymbolToMSMultiFont@@_N@Z -?SymbolFontToString@@YAPBDH@Z -?_Construct@_STL@@YAXPAU?$pair@$$CBGUSymbolEntry@@@1@ABU21@@Z -?_Construct@_STL@@YAXPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@1@ABU21@@Z -?_Destroy@_STL@@YAXPAU?$pair@$$CBGUSymbolEntry@@@1@@Z -?_Destroy@_STL@@YAXPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@1@0@Z -?_Destroy@_STL@@YAXPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@1@@Z -?_M_allocate_and_copy@?$vector@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@IAEPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@2@IPAU32@0@Z -?_M_clear@?$vector@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@IAEXXZ -?_M_create_node@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@ABU?$pair@$$CBGUSymbolEntry@@@2@@Z -?_M_empty_initialize@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@AAEXXZ -?_M_erase@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@Z -?_M_find@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@ABG@Z -?_M_insert@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBGUSymbolEntry@@@2@0@Z -?_M_insert_overflow@?$vector@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@IAEXPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@2@ABU32@ABU__false_type@2@I_N@Z -?_M_leftmost@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@XZ -?_M_lower_bound@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@ABG@Z -?_M_rightmost@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@XZ -?_M_root@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@XZ -?_M_set@?$vector@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@IAEXPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@2@00@Z -?_M_upper_bound@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@ABG@Z -?_S_color@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@KAAA_NPAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@Z -?_S_key@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@KAABGPAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@Z -?_S_left@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@PAU32@@Z -?_S_parent@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@PAU32@@Z -?_S_right@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@PAU32@@Z -?_S_value@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@KAAAU?$pair@$$CBGUSymbolEntry@@@2@PAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@Z -?__destroy@_STL@@YAXPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@1@00@Z -?__destroy_aux@_STL@@YAXPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@1@0ABU__false_type@1@@Z -?__uninitialized_copy@_STL@@YAPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@1@PAU21@00ABU__false_type@1@@Z -?__uninitialized_fill_n@_STL@@YAPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@1@PAU21@IABU21@ABU__false_type@1@@Z -?aSymbolExtraTab2@@3PAUExtraTable@@A -?aSymbolExtraTab@@3PAUExtraTable@@A -?aSymbolNames@@3PAPBDA -?aTNRExtraTab@@3PAUExtraTable@@A -?aWingDingsExtraTab@@3PAUExtraTable@@A -?allocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@_STL@@@_STL@@QBEPAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@IPBX@Z -?allocate@?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@_STL@@QBEPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@2@IPBX@Z -?begin@?$vector@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@QAEPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@2@XZ -?capacity@?$vector@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@QBEIXZ -?clear@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QAEXXZ -?deallocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@I@Z -?deallocate@?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@_STL@@QBEXPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@2@I@Z -?end@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@2@XZ -?end@?$multimap@GUSymbolEntry@@U?$less@G@_STL@@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@3@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@2@XZ -?equal_range@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@2@ABG@Z -?equal_range@?$multimap@GUSymbolEntry@@U?$less@G@_STL@@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@3@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@2@ABG@Z -?find@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@2@ABG@Z -?find@?$multimap@GUSymbolEntry@@U?$less@G@_STL@@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@3@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@2@ABG@Z -?insert@?$multimap@GUSymbolEntry@@U?$less@G@_STL@@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@3@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@2@ABU?$pair@$$CBGUSymbolEntry@@@2@@Z -?insert_equal@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@2@ABU?$pair@$$CBGUSymbolEntry@@@2@@Z -?lower_bound@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@2@ABG@Z -?push_back@?$vector@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@QAEXABU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@2@@Z -?reserve@?$vector@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@QAEXI@Z -?size@?$vector@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@V?$allocator@U?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@_STL@@@2@@_STL@@QBEIXZ -?upper_bound@?$_Rb_tree@GU?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Select1st@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@2@ABG@Z -?value_type@_STL@@YAPAU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGUSymbolEntry@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGUSymbolEntry@@@_STL@@@2@@_STL@@U12@@1@PBU21@@Z -??0PaperInfo@vcl@@QAE@XZ -??1PaperInfo@vcl@@QAE@XZ -??A?$vector@UPaperInfo@vcl@@V?$allocator@UPaperInfo@vcl@@@_STL@@@_STL@@QAEAAUPaperInfo@vcl@@I@Z -?Abs@@YAFF@Z -?GetCurrentPaperInfo@Printer@@QBEABUPaperInfo@vcl@@XZ -?GetLandscapeAngle@Printer@@QBEHXZ -?GetPaperInfo@Printer@@QBEABUPaperInfo@vcl@@H@Z -?GetPaperInfoCount@Printer@@QBEHXZ -?GetPaperSizePixel@Printer@@QBEABVSize@@XZ -?SetPaperFromInfo@Printer@@QAEEABUPaperInfo@vcl@@@Z -?begin@?$vector@UPaperInfo@vcl@@V?$allocator@UPaperInfo@vcl@@@_STL@@@_STL@@QAEPAUPaperInfo@vcl@@XZ -?empty@?$vector@UPaperInfo@vcl@@V?$allocator@UPaperInfo@vcl@@@_STL@@@_STL@@QBE_NXZ -?size@?$vector@UPaperInfo@vcl@@V?$allocator@UPaperInfo@vcl@@@_STL@@@_STL@@QBEIXZ -??0?$_List_base@U?$pair@PBVMetaAction@@H@_STL@@V?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@1@@Z -??0?$_List_base@UConnectedComponents@@V?$allocator@UConnectedComponents@@@_STL@@@_STL@@QAE@ABV?$allocator@UConnectedComponents@@@1@@Z -??0?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Const_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QAE@PAU?$_List_node@U?$pair@PBVMetaAction@@H@_STL@@@1@@Z -??0?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Nonconst_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QAE@ABU01@@Z -??0?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Nonconst_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QAE@PAU?$_List_node@U?$pair@PBVMetaAction@@H@_STL@@@1@@Z -??0?$_List_iterator@UConnectedComponents@@U?$_Nonconst_traits@UConnectedComponents@@@_STL@@@_STL@@QAE@ABU01@@Z -??0?$_List_iterator@UConnectedComponents@@U?$_Nonconst_traits@UConnectedComponents@@@_STL@@@_STL@@QAE@PAU?$_List_node@UConnectedComponents@@@1@@Z -??0?$_List_iterator@UConnectedComponents@@U?$_Nonconst_traits@UConnectedComponents@@@_STL@@@_STL@@QAE@XZ -??0?$_STLP_alloc_proxy@PAPBUConnectedComponents@@PBU1@V?$allocator@PBUConnectedComponents@@@_STL@@@_STL@@QAE@ABV?$allocator@PBUConnectedComponents@@@1@PAPBUConnectedComponents@@@Z -??0?$_STLP_alloc_proxy@PAU?$_List_node@U?$pair@PBVMetaAction@@H@_STL@@@_STL@@U12@V?$allocator@U?$_List_node@U?$pair@PBVMetaAction@@H@_STL@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_List_node@U?$pair@PBVMetaAction@@H@_STL@@@_STL@@@1@PAU?$_List_node@U?$pair@PBVMetaAction@@H@_STL@@@1@@Z -??0?$_STLP_alloc_proxy@PAU?$_List_node@UConnectedComponents@@@_STL@@U12@V?$allocator@U?$_List_node@UConnectedComponents@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_List_node@UConnectedComponents@@@_STL@@@1@PAU?$_List_node@UConnectedComponents@@@1@@Z -??0?$_Vector_base@PBUConnectedComponents@@V?$allocator@PBUConnectedComponents@@@_STL@@@_STL@@QAE@IABV?$allocator@PBUConnectedComponents@@@1@@Z -??0?$allocator@PBUConnectedComponents@@@_STL@@QAE@ABV01@@Z -??0?$allocator@PBUConnectedComponents@@@_STL@@QAE@XZ -??0?$allocator@U?$_List_node@U?$pair@PBVMetaAction@@H@_STL@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_List_node@U?$pair@PBVMetaAction@@H@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@1@@Z -??0?$allocator@U?$_List_node@UConnectedComponents@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_List_node@UConnectedComponents@@@_STL@@@_STL@@QAE@ABV?$allocator@UConnectedComponents@@@1@@Z -??0?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@_STL@@QAE@ABV?$allocator@U?$_List_node@U?$pair@PBVMetaAction@@H@_STL@@@_STL@@@1@@Z -??0?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@_STL@@QAE@XZ -??0?$allocator@UConnectedComponents@@@_STL@@QAE@XZ -??0?$list@U?$pair@PBVMetaAction@@H@_STL@@V?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QAE@ABV01@@Z -??0?$list@U?$pair@PBVMetaAction@@H@_STL@@V?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@1@@Z -??0?$list@UConnectedComponents@@V?$allocator@UConnectedComponents@@@_STL@@@_STL@@QAE@ABV?$allocator@UConnectedComponents@@@1@@Z -??0?$pair@PBVMetaAction@@H@_STL@@QAE@ABQBVMetaAction@@ABH@Z -??0?$pair@PBVMetaAction@@H@_STL@@QAE@ABU01@@Z -??0?$vector@PBUConnectedComponents@@V?$allocator@PBUConnectedComponents@@@_STL@@@_STL@@QAE@I@Z -??0ConnectedComponents@@QAE@ABU0@@Z -??0ConnectedComponents@@QAE@XZ -??0_List_iterator_base@_STL@@QAE@XZ -??1?$_List_base@U?$pair@PBVMetaAction@@H@_STL@@V?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QAE@XZ -??1?$_List_base@UConnectedComponents@@V?$allocator@UConnectedComponents@@@_STL@@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAPBUConnectedComponents@@PBU1@V?$allocator@PBUConnectedComponents@@@_STL@@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAU?$_List_node@U?$pair@PBVMetaAction@@H@_STL@@@_STL@@U12@V?$allocator@U?$_List_node@U?$pair@PBVMetaAction@@H@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAU?$_List_node@UConnectedComponents@@@_STL@@U12@V?$allocator@U?$_List_node@UConnectedComponents@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_Vector_base@PBUConnectedComponents@@V?$allocator@PBUConnectedComponents@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@PBUConnectedComponents@@@_STL@@QAE@XZ -??1?$allocator@U?$_List_node@U?$pair@PBVMetaAction@@H@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$_List_node@UConnectedComponents@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@_STL@@QAE@XZ -??1?$allocator@UConnectedComponents@@@_STL@@QAE@XZ -??1?$list@U?$pair@PBVMetaAction@@H@_STL@@V?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QAE@XZ -??1?$list@UConnectedComponents@@V?$allocator@UConnectedComponents@@@_STL@@@_STL@@QAE@XZ -??1?$vector@PBUConnectedComponents@@V?$allocator@PBUConnectedComponents@@@_STL@@@_STL@@QAE@XZ -??1ConnectedComponents@@QAE@XZ -??8_List_iterator_base@_STL@@QBE_NABU01@@Z -??A?$vector@PBUConnectedComponents@@V?$allocator@PBUConnectedComponents@@@_STL@@@_STL@@QAEAAPBUConnectedComponents@@I@Z -??C?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Nonconst_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QBEPAU?$pair@PBVMetaAction@@H@1@XZ -??C?$_List_iterator@UConnectedComponents@@U?$_Nonconst_traits@UConnectedComponents@@@_STL@@@_STL@@QBEPAUConnectedComponents@@XZ -??D?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Const_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QBEABU?$pair@PBVMetaAction@@H@1@XZ -??D?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Nonconst_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QBEAAU?$pair@PBVMetaAction@@H@1@XZ -??D?$_List_iterator@UConnectedComponents@@U?$_Nonconst_traits@UConnectedComponents@@@_STL@@@_STL@@QBEAAUConnectedComponents@@XZ -??E?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Const_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QAEAAU01@XZ -??E?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Nonconst_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QAEAAU01@XZ -??E?$_List_iterator@UConnectedComponents@@U?$_Nonconst_traits@UConnectedComponents@@@_STL@@@_STL@@QAEAAU01@XZ -??_GConnectedComponents@@QAEPAXI@Z -?_Construct@_STL@@YAXPAU?$pair@PBVMetaAction@@H@1@ABU21@@Z -?_Construct@_STL@@YAXPAUConnectedComponents@@ABU2@@Z -?_Destroy@_STL@@YAXPAPBUConnectedComponents@@0@Z -?_Destroy@_STL@@YAXPAU?$pair@PBVMetaAction@@H@1@@Z -?_Destroy@_STL@@YAXPAUConnectedComponents@@@Z -?_Is_POD@_STL@@YA?AU?$_IsPOD@PBUConnectedComponents@@@1@PAPBUConnectedComponents@@@Z -?_M_create_node@?$list@U?$pair@PBVMetaAction@@H@_STL@@V?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@IAEPAU?$_List_node@U?$pair@PBVMetaAction@@H@_STL@@@2@ABU?$pair@PBVMetaAction@@H@2@@Z -?_M_create_node@?$list@UConnectedComponents@@V?$allocator@UConnectedComponents@@@_STL@@@_STL@@IAEPAU?$_List_node@UConnectedComponents@@@2@ABUConnectedComponents@@@Z -?_M_insert_dispatch@?$list@U?$pair@PBVMetaAction@@H@_STL@@V?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QAEXU?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Nonconst_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@2@U?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Const_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@2@1ABU__false_type@2@@Z -?_Ret@?$_IsPOD@PBUConnectedComponents@@@_STL@@SA?AU__true_type@2@XZ -?__destroy@_STL@@YAXPAPBUConnectedComponents@@00@Z -?__destroy_aux@_STL@@YAXPAPBUConnectedComponents@@0ABU__true_type@1@@Z -?__uninitialized_fill_n@_STL@@YAPAPBUConnectedComponents@@PAPBU2@IABQBU2@ABU__true_type@1@@Z -?allocate@?$allocator@PBUConnectedComponents@@@_STL@@QBEPAPBUConnectedComponents@@IPBX@Z -?allocate@?$allocator@U?$_List_node@U?$pair@PBVMetaAction@@H@_STL@@@_STL@@@_STL@@QBEPAU?$_List_node@U?$pair@PBVMetaAction@@H@_STL@@@2@IPBX@Z -?allocate@?$allocator@U?$_List_node@UConnectedComponents@@@_STL@@@_STL@@QBEPAU?$_List_node@UConnectedComponents@@@2@IPBX@Z -?begin@?$list@U?$pair@PBVMetaAction@@H@_STL@@V?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QAE?AU?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Nonconst_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@2@XZ -?begin@?$list@U?$pair@PBVMetaAction@@H@_STL@@V?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QBE?AU?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Const_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@2@XZ -?begin@?$list@UConnectedComponents@@V?$allocator@UConnectedComponents@@@_STL@@@_STL@@QAE?AU?$_List_iterator@UConnectedComponents@@U?$_Nonconst_traits@UConnectedComponents@@@_STL@@@2@XZ -?begin@?$vector@PBUConnectedComponents@@V?$allocator@PBUConnectedComponents@@@_STL@@@_STL@@QAEPAPBUConnectedComponents@@XZ -?clear@?$_List_base@U?$pair@PBVMetaAction@@H@_STL@@V?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QAEXXZ -?clear@?$_List_base@UConnectedComponents@@V?$allocator@UConnectedComponents@@@_STL@@@_STL@@QAEXXZ -?deallocate@?$allocator@PBUConnectedComponents@@@_STL@@QBEXPAPBUConnectedComponents@@I@Z -?deallocate@?$allocator@U?$_List_node@U?$pair@PBVMetaAction@@H@_STL@@@_STL@@@_STL@@QBEXPAU?$_List_node@U?$pair@PBVMetaAction@@H@_STL@@@2@I@Z -?deallocate@?$allocator@U?$_List_node@UConnectedComponents@@@_STL@@@_STL@@QBEXPAU?$_List_node@UConnectedComponents@@@2@I@Z -?empty@?$list@U?$pair@PBVMetaAction@@H@_STL@@V?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QBE_NXZ -?end@?$list@U?$pair@PBVMetaAction@@H@_STL@@V?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QAE?AU?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Nonconst_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@2@XZ -?end@?$list@U?$pair@PBVMetaAction@@H@_STL@@V?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QBE?AU?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Const_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@2@XZ -?end@?$list@UConnectedComponents@@V?$allocator@UConnectedComponents@@@_STL@@@_STL@@QAE?AU?$_List_iterator@UConnectedComponents@@U?$_Nonconst_traits@UConnectedComponents@@@_STL@@@2@XZ -?erase@?$list@UConnectedComponents@@V?$allocator@UConnectedComponents@@@_STL@@@_STL@@QAE?AU?$_List_iterator@UConnectedComponents@@U?$_Nonconst_traits@UConnectedComponents@@@_STL@@@2@U32@@Z -?fill_n@_STL@@YAPAPBUConnectedComponents@@PAPBU2@IABQBU2@@Z -?get_allocator@?$_List_base@U?$pair@PBVMetaAction@@H@_STL@@V?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QBE?AV?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@XZ -?insert@?$list@U?$pair@PBVMetaAction@@H@_STL@@V?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QAE?AU?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Nonconst_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@2@U32@ABU?$pair@PBVMetaAction@@H@2@@Z -?insert@?$list@U?$pair@PBVMetaAction@@H@_STL@@V?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QAEXU?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Nonconst_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@2@U?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Const_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@2@1@Z -?insert@?$list@UConnectedComponents@@V?$allocator@UConnectedComponents@@@_STL@@@_STL@@QAE?AU?$_List_iterator@UConnectedComponents@@U?$_Nonconst_traits@UConnectedComponents@@@_STL@@@2@U32@ABUConnectedComponents@@@Z -?iterator_category@_STL@@YA?AUbidirectional_iterator_tag@1@ABU_List_iterator_base@1@@Z -?make_pair@_STL@@YA?AU?$pair@PBVMetaAction@@H@1@ABQBVMetaAction@@ABH@Z -?push_back@?$list@U?$pair@PBVMetaAction@@H@_STL@@V?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QAEXABU?$pair@PBVMetaAction@@H@2@@Z -?push_back@?$list@UConnectedComponents@@V?$allocator@UConnectedComponents@@@_STL@@@_STL@@QAEXABUConnectedComponents@@@Z -?splice@?$list@U?$pair@PBVMetaAction@@H@_STL@@V?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QAEXU?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Nonconst_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@2@AAV12@@Z -?uninitialized_fill_n@_STL@@YAPAPBUConnectedComponents@@PAPBU2@IABQBU2@@Z -?value_type@_STL@@YAPAPBUConnectedComponents@@PBQBU2@@Z -?SetReferenceDevice@VirtualDevice@@QAEXXZ -?mbNoOGL@OpenGL@@0EA -??0?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@QAE@J@Z -??0?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QAE@J@Z -??0?$_Hashtable_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAE@PAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@1@PAV?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@1@@Z -??0?$_Hashtable_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??0?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAE@ABU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@1@@Z -??0?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAE@PBU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@1@PBV?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@1@@Z -??0?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??0?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAE@PBU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@1@PBV?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@1@@Z -??0?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE@ABU?$less@H@1@ABV?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@1@@Z -??0?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE@ABU?$less@H@1@ABV?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@1@@Z -??0?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE@ABU?$less@H@1@ABV?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@1@@Z -??0?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE@ABV01@@Z -??0?$_Rb_tree_base@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@1@@Z -??0?$_Rb_tree_base@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@1@@Z -??0?$_Rb_tree_base@U?$pair@$$CBHVOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@1@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@1@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE@PAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@1@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??0?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE@ABU01@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE@PAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@1@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE@PAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@1@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE@ABU01@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE@PAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@1@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Const_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE@PAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@1@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE@ABU01@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE@PAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@1@@Z -??0?$_STLP_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@V?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@@1@I@Z -??0?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@_STL@@U12@V?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@_STL@@@1@PAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@1@@Z -??0?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@_STL@@U12@V?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@_STL@@@1@PAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@1@@Z -??0?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@U12@V?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@@1@PAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@1@@Z -??0?$_STLP_alloc_proxy@PAUFontNameAttr@FontSubstConfigItem@vcl@@U123@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@QAE@ABV?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@1@PAUFontNameAttr@FontSubstConfigItem@vcl@@@Z -??0?$_STLP_alloc_proxy@PAVString@@V1@V?$allocator@VString@@@_STL@@@_STL@@QAE@ABV?$allocator@VString@@@1@PAVString@@@Z -??0?$_Vector_base@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@QAE@ABV?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@1@@Z -??0?$_Vector_base@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@QAE@IABV?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@1@@Z -??0?$_Vector_base@VString@@V?$allocator@VString@@@_STL@@@_STL@@QAE@ABV?$allocator@VString@@@1@@Z -??0?$_Vector_base@VString@@V?$allocator@VString@@@_STL@@@_STL@@QAE@IABV?$allocator@VString@@@1@@Z -??0?$allocator@PAX@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@1@@Z -??0?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@1@@Z -??0?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@1@@Z -??0?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@1@@Z -??0?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@1@@Z -??0?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@_STL@@QAE@XZ -??0?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@_STL@@QAE@XZ -??0?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@@1@@Z -??0?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@QAE@XZ -??0?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@QAE@ABV?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@_STL@@@1@@Z -??0?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@QAE@XZ -??0?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@QAE@ABV01@@Z -??0?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@QAE@XZ -??0?$allocator@VString@@@_STL@@QAE@ABV01@@Z -??0?$allocator@VString@@@_STL@@QAE@XZ -??0?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@QAE@ABV01@@Z -??0?$hash_map@VOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@4@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@4@@_STL@@QAE@XZ -??0?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QAE@ABV01@@Z -??0?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAE@IABUOUStringHash@rtl@@ABU?$equal_to@VOUString@rtl@@@1@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@1@@Z -??0?$map@HV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??0?$map@HV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??0?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@QAE@ABV01@@Z -??0?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@QAE@XZ -??0?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@QAE@ABHABV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@1@@Z -??0?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@QAE@ABU01@@Z -??0?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@QAE@ABHABV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@1@@Z -??0?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@QAE@ABU01@@Z -??0?$pair@$$CBHVOUString@rtl@@@_STL@@QAE@ABHABVOUString@rtl@@@Z -??0?$pair@$$CBHVOUString@rtl@@@_STL@@QAE@ABU01@@Z -??0?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@QAE@ABU01@@Z -??0?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@QAE@ABVOUString@rtl@@ABV?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@1@@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@1@AB_N@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@1@AB_N@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@1@AB_N@Z -??0?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@QAE@ABV?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@1@@Z -??0?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@QAE@ABV?$allocator@VString@@@1@@Z -??0DefaultFontConfigItem@vcl@@AAE@XZ -??0FontNameAttr@FontSubstConfigItem@vcl@@QAE@ABU012@@Z -??0FontNameAttr@FontSubstConfigItem@vcl@@QAE@XZ -??0FontSubstConfigItem@vcl@@AAE@XZ -??0OString@rtl@@QAE@PBGJGK@Z -??0SettingsConfigItem@vcl@@AAE@XZ -??1?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QAE@XZ -??1?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_Rb_tree_base@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_Rb_tree_base@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_Rb_tree_base@U?$pair@$$CBHVOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@V?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@_STL@@U12@V?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@_STL@@U12@V?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@U12@V?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAUFontNameAttr@FontSubstConfigItem@vcl@@U123@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAVString@@V1@V?$allocator@VString@@@_STL@@@_STL@@QAE@XZ -??1?$_Vector_base@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@QAE@XZ -??1?$_Vector_base@VString@@V?$allocator@VString@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@QAE@XZ -??1?$allocator@VString@@@_STL@@QAE@XZ -??1?$hash_map@VOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@4@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@4@@_STL@@QAE@XZ -??1?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$map@HV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$map@HV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@QAE@XZ -??1?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@QAE@XZ -??1?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$pair@$$CBHVOUString@rtl@@@_STL@@QAE@XZ -??1?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@QAE@XZ -??1?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@QAE@XZ -??1?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@QAE@XZ -??1DefaultFontConfigItem@vcl@@UAE@XZ -??1FontNameAttr@FontSubstConfigItem@vcl@@QAE@XZ -??1FontSubstConfigItem@vcl@@UAE@XZ -??1SettingsConfigItem@vcl@@UAE@XZ -??4?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@QAEAAV01@ABV01@@Z -??4FontNameAttr@FontSubstConfigItem@vcl@@QAEAAU012@ABU012@@Z -??8_Rb_tree_base_iterator@_STL@@QBE_NABU01@@Z -??8_STL@@YA_NABU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@0@0@Z -??8_STL@@YA_NABU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@0@0@Z -??8_STL@@YA_NABU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@0@0@Z -??9_STL@@YA_NABU?$_Hashtable_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@0@0@Z -??9rtl@@YAEABVOUString@0@0@Z -??A?$hash_map@VOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@4@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@4@@_STL@@QAEAAV?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@1@ABVOUString@rtl@@@Z -??A?$map@HV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAEAAV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@1@ABH@Z -??A?$map@HV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAEAAV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@1@ABH@Z -??A?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@QAEAAVOUString@rtl@@ABH@Z -??C?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QBEPBU?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@1@XZ -??C?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QBEPBU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@1@XZ -??C?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QBEPBU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@1@XZ -??C?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Const_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QBEPBU?$pair@$$CBHVOUString@rtl@@@1@XZ -??D?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QBEABU?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@1@XZ -??D?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QBEAAU?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@1@XZ -??D?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QBEABU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@1@XZ -??D?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QBEAAU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@1@XZ -??D?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QBEABU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@1@XZ -??D?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QBEAAU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@1@XZ -??D?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Const_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QBEABU?$pair@$$CBHVOUString@rtl@@@1@XZ -??D?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QBEAAU?$pair@$$CBHVOUString@rtl@@@1@XZ -??E?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAEAAU01@XZ -??E?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAEAAU01@XZ -??E?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAEAAU01@XZ -??E?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAEAAU01@XZ -??E?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAEAAU01@XZ -??F?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAEAAU01@XZ -??F?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAEAAU01@XZ -??F?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAEAAU01@XZ -??R?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@_STL@@QBEABHABU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@1@@Z -??R?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@_STL@@QBEABHABU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@1@@Z -??R?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@QBEABHABU?$pair@$$CBHVOUString@rtl@@@1@@Z -??R?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@QBEABVOUString@rtl@@ABU?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@1@@Z -??R?$less@H@_STL@@QBE_NABH0@Z -??RStrictStringSort@@QAE_NABUFontNameAttr@FontSubstConfigItem@vcl@@0@Z -??RWeakStringSort@@QAE_NABUFontNameAttr@FontSubstConfigItem@vcl@@0@Z -??_7DefaultFontConfigItem@vcl@@6B@ -??_7FontSubstConfigItem@vcl@@6B@ -??_7SettingsConfigItem@vcl@@6B@ -??_G?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@QAEPAXI@Z -??_G?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@QAEPAXI@Z -??_G?$pair@$$CBHVOUString@rtl@@@_STL@@QAEPAXI@Z -??_G?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@QAEPAXI@Z -??_GDefaultFontConfigItem@vcl@@UAEPAXI@Z -??_GFontNameAttr@FontSubstConfigItem@vcl@@QAEPAXI@Z -??_GFontSubstConfigItem@vcl@@UAEPAXI@Z -??_GSettingsConfigItem@vcl@@UAEPAXI@Z -?Commit@DefaultFontConfigItem@vcl@@EAEXXZ -?Commit@FontSubstConfigItem@vcl@@EAEXXZ -?Commit@SettingsConfigItem@vcl@@EAEXXZ -?Notify@DefaultFontConfigItem@vcl@@EAEXABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@@Z -?Notify@FontSubstConfigItem@vcl@@EAEXABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@@Z -?Notify@SettingsConfigItem@vcl@@EAEXABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@@Z -?_Construct@_STL@@YAXPAU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@1@ABU21@@Z -?_Construct@_STL@@YAXPAU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@1@ABU21@@Z -?_Construct@_STL@@YAXPAU?$pair@$$CBHVOUString@rtl@@@1@ABU21@@Z -?_Construct@_STL@@YAXPAU?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@1@ABU21@@Z -?_Construct@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@ABU234@@Z -?_Construct@_STL@@YAXPAVString@@ABV2@@Z -?_Destroy@_STL@@YAXPAU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@1@@Z -?_Destroy@_STL@@YAXPAU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@1@@Z -?_Destroy@_STL@@YAXPAU?$pair@$$CBHVOUString@rtl@@@1@@Z -?_Destroy@_STL@@YAXPAU?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@1@@Z -?_Destroy@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@0@Z -?_Destroy@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@@Z -?_Destroy@_STL@@YAXPAVString@@0@Z -?_Destroy@_STL@@YAXPAVString@@@Z -?_IsOKToMemCpy@_STL@@YA?AU?$_OKToMemCpy@UFontNameAttr@FontSubstConfigItem@vcl@@U123@@1@PAUFontNameAttr@FontSubstConfigItem@vcl@@0@Z -?_M_allocate_and_copy@?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@IAEPAVString@@IPBV3@0@Z -?_M_bkt_num@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@ABEIABU?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@2@@Z -?_M_bkt_num@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@ABEIABU?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@2@I@Z -?_M_bkt_num_key@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@ABEIABVOUString@rtl@@@Z -?_M_bkt_num_key@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@ABEIABVOUString@rtl@@I@Z -?_M_clear@?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@IAEXXZ -?_M_clear@?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@IAEXXZ -?_M_clone_node@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@PAU32@@Z -?_M_copy@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@AAEPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@PAU32@0@Z -?_M_create_node@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@ABU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@2@@Z -?_M_create_node@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@ABU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@2@@Z -?_M_create_node@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@ABU?$pair@$$CBHVOUString@rtl@@@2@@Z -?_M_delete_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@AAEXPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@Z -?_M_empty_initialize@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@AAEXXZ -?_M_empty_initialize@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@AAEXXZ -?_M_empty_initialize@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@AAEXXZ -?_M_erase@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@Z -?_M_erase@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@Z -?_M_erase@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@Z -?_M_find@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@ABH@Z -?_M_find@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@ABH@Z -?_M_find@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@ABH@Z -?_M_find@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@ABEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@ABVOUString@rtl@@@Z -?_M_initialize_buckets@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@AAEXI@Z -?_M_insert@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@2@0@Z -?_M_insert@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@2@0@Z -?_M_insert@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBHVOUString@rtl@@@2@0@Z -?_M_insert@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAEAAU?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@2@ABU32@@Z -?_M_insert_overflow@?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@IAEXPAUFontNameAttr@FontSubstConfigItem@vcl@@ABU345@ABU__false_type@2@I_N@Z -?_M_insert_overflow@?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@IAEXPAVString@@ABV3@ABU__false_type@2@I_N@Z -?_M_leftmost@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@XZ -?_M_leftmost@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@XZ -?_M_leftmost@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@XZ -?_M_lower_bound@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@ABH@Z -?_M_lower_bound@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@ABH@Z -?_M_lower_bound@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@ABH@Z -?_M_new_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@AAEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@ABU?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@2@@Z -?_M_next_size@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@ABEII@Z -?_M_rightmost@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@XZ -?_M_rightmost@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@XZ -?_M_rightmost@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@XZ -?_M_root@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@XZ -?_M_root@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@XZ -?_M_root@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@XZ -?_M_set@?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@IAEXPAUFontNameAttr@FontSubstConfigItem@vcl@@00@Z -?_M_set@?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@IAEXPAVString@@00@Z -?_M_skip_to_next@?$_Hashtable_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@XZ -?_Ret@?$_BothPtrType@PAUFontNameAttr@FontSubstConfigItem@vcl@@PAU123@@_STL@@SA?AU__true_type@2@XZ -?_Ret@?$_OKToMemCpy@UFontNameAttr@FontSubstConfigItem@vcl@@U123@@_STL@@SA?AU__false_type@2@XZ -?_S_color@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@KAAA_NPAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@Z -?_S_color@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@KAAA_NPAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@Z -?_S_color@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@KAAA_NPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@Z -?_S_key@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@KAABHPAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@Z -?_S_key@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@KAABHPAU_Rb_tree_node_base@2@@Z -?_S_key@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@KAABHPAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@Z -?_S_key@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@KAABHPAU_Rb_tree_node_base@2@@Z -?_S_key@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@KAABHPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@Z -?_S_key@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@KAABHPAU_Rb_tree_node_base@2@@Z -?_S_left@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@PAU32@@Z -?_S_left@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@PAU32@@Z -?_S_left@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@PAU32@@Z -?_S_maximum@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@KAPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@PAU32@@Z -?_S_maximum@_Rb_tree_node_base@_STL@@SAPAU12@PAU12@@Z -?_S_minimum@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@KAPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@PAU32@@Z -?_S_minimum@_Rb_tree_node_base@_STL@@SAPAU12@PAU12@@Z -?_S_parent@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@PAU32@@Z -?_S_parent@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@PAU32@@Z -?_S_parent@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@PAU32@@Z -?_S_right@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@PAU32@@Z -?_S_right@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@PAU_Rb_tree_node_base@2@@Z -?_S_right@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@PAU32@@Z -?_S_right@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@PAU_Rb_tree_node_base@2@@Z -?_S_right@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@PAU32@@Z -?_S_right@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@PAU_Rb_tree_node_base@2@@Z -?_S_value@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@KAAAU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@2@PAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@Z -?_S_value@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@KAAAU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@2@PAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@Z -?_S_value@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@KAAAU?$pair@$$CBHVOUString@rtl@@@2@PAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@Z -?__adjust_heap@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@HHU234@UStrictStringSort@@@Z -?__advance@_STL@@YAXAAPBUFontNameAttr@FontSubstConfigItem@vcl@@HABUrandom_access_iterator_tag@1@@Z -?__copy@_STL@@YAPAVString@@PBV2@0PAV2@ABUrandom_access_iterator_tag@1@PAH@Z -?__copy_backward@_STL@@YAPAUFontNameAttr@FontSubstConfigItem@vcl@@PAU234@00ABUrandom_access_iterator_tag@1@PAH@Z -?__copy_backward_aux@_STL@@YAPAUFontNameAttr@FontSubstConfigItem@vcl@@PAU234@00ABU__true_type@1@@Z -?__copy_backward_ptrs@_STL@@YAPAUFontNameAttr@FontSubstConfigItem@vcl@@PAU234@00ABU__false_type@1@@Z -?__copy_ptrs@_STL@@YAPAVString@@PBV2@0PAV2@ABU__false_type@1@@Z -?__default_constructed@_STL@@YA?AV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@1@PAV21@@Z -?__default_constructed@_STL@@YA?AV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@1@PAV21@@Z -?__default_constructed@_STL@@YA?AVOUString@rtl@@PAV23@@Z -?__default_constructed_aux@_STL@@YA?AV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@1@PAV21@ABU__false_type@1@@Z -?__default_constructed_aux@_STL@@YA?AV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@1@PAV21@ABU__false_type@1@@Z -?__default_constructed_aux@_STL@@YA?AVOUString@rtl@@PAV23@ABU__false_type@1@@Z -?__destroy@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@00@Z -?__destroy@_STL@@YAXPAVString@@00@Z -?__destroy_aux@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@0ABU__false_type@1@@Z -?__destroy_aux@_STL@@YAXPAVString@@0ABU__false_type@1@@Z -?__distance@_STL@@YAHABQBUFontNameAttr@FontSubstConfigItem@vcl@@0ABUrandom_access_iterator_tag@1@@Z -?__final_insertion_sort@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@0UStrictStringSort@@@Z -?__insertion_sort@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@0UStrictStringSort@@@Z -?__introsort_loop@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@00HUStrictStringSort@@@Z -?__lg@_STL@@YAHH@Z -?__linear_insert@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@0U234@UStrictStringSort@@@Z -?__lower_bound@_STL@@YAPBUFontNameAttr@FontSubstConfigItem@vcl@@PBU234@0ABU234@UWeakStringSort@@PAH@Z -?__make_heap@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@0UStrictStringSort@@0PAH@Z -?__median@_STL@@YAABUFontNameAttr@FontSubstConfigItem@vcl@@ABU234@00UStrictStringSort@@@Z -?__partial_sort@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@000UStrictStringSort@@@Z -?__pop_heap@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@00U234@UStrictStringSort@@PAH@Z -?__pop_heap_aux@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@00UStrictStringSort@@@Z -?__push_heap@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@HHU234@UStrictStringSort@@@Z -?__unguarded_insertion_sort@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@0UStrictStringSort@@@Z -?__unguarded_insertion_sort_aux@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@00UStrictStringSort@@@Z -?__unguarded_linear_insert@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@U234@UStrictStringSort@@@Z -?__unguarded_partition@_STL@@YAPAUFontNameAttr@FontSubstConfigItem@vcl@@PAU234@0U234@UStrictStringSort@@@Z -?__uninitialized_copy@_STL@@YAPAUFontNameAttr@FontSubstConfigItem@vcl@@PAU234@00ABU__false_type@1@@Z -?__uninitialized_copy@_STL@@YAPAUFontNameAttr@FontSubstConfigItem@vcl@@PBU234@0PAU234@ABU__false_type@1@@Z -?__uninitialized_copy@_STL@@YAPAVString@@PAV2@00ABU__false_type@1@@Z -?__uninitialized_copy@_STL@@YAPAVString@@PBV2@0PAV2@ABU__false_type@1@@Z -?__uninitialized_fill_n@_STL@@YAPAUFontNameAttr@FontSubstConfigItem@vcl@@PAU234@IABU234@ABU__false_type@1@@Z -?__uninitialized_fill_n@_STL@@YAPAVString@@PAV2@IABV2@ABU__false_type@1@@Z -?advance@_STL@@YAXAAPBUFontNameAttr@FontSubstConfigItem@vcl@@H@Z -?allocate@?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@@_STL@@QBEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@IPBX@Z -?allocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@_STL@@@_STL@@QBEPAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@IPBX@Z -?allocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@_STL@@@_STL@@QBEPAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@IPBX@Z -?allocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@@_STL@@QBEPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@IPBX@Z -?allocate@?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@QBEPAUFontNameAttr@FontSubstConfigItem@vcl@@IPBX@Z -?allocate@?$allocator@VString@@@_STL@@QBEPAVString@@IPBX@Z -?begin@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@XZ -?begin@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@XZ -?begin@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@XZ -?begin@?$hash_map@VOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@4@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@4@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@2@XZ -?begin@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@2@XZ -?begin@?$map@HV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@XZ -?begin@?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@QAEPAUFontNameAttr@FontSubstConfigItem@vcl@@XZ -?begin@?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@QBEPBUFontNameAttr@FontSubstConfigItem@vcl@@XZ -?bucket_count@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QBEIXZ -?capacity@?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@QBEIXZ -?clear@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAEXXZ -?clear@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAEXXZ -?clear@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAEXXZ -?clear@?$hash_map@VOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@4@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@4@@_STL@@QAEXXZ -?clear@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAEXXZ -?clear@?$map@HV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAEXXZ -?copy_backward@_STL@@YAPAUFontNameAttr@FontSubstConfigItem@vcl@@PAU234@00@Z -?deallocate@?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@I@Z -?deallocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@I@Z -?deallocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@I@Z -?deallocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@I@Z -?deallocate@?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@QBEXPAUFontNameAttr@FontSubstConfigItem@vcl@@I@Z -?deallocate@?$allocator@VString@@@_STL@@QBEXPAVString@@I@Z -?distance@_STL@@YAHABQBUFontNameAttr@FontSubstConfigItem@vcl@@0@Z -?distance_type@_STL@@YAPAHPBUFontNameAttr@FontSubstConfigItem@vcl@@@Z -?distance_type@_STL@@YAPAHPBVString@@@Z -?end@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@XZ -?end@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@XZ -?end@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@XZ -?end@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@XZ -?end@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@XZ -?end@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Const_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@XZ -?end@?$hash_map@VOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@4@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@4@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@2@XZ -?end@?$hash_map@VOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@4@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@4@@_STL@@QBE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@2@XZ -?end@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@2@XZ -?end@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QBE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@2@XZ -?end@?$map@HV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@XZ -?end@?$map@HV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@XZ -?end@?$map@HV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@XZ -?end@?$map@HV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@XZ -?end@?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@XZ -?end@?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Const_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@XZ -?end@?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@QAEPAUFontNameAttr@FontSubstConfigItem@vcl@@XZ -?end@?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@QBEPBUFontNameAttr@FontSubstConfigItem@vcl@@XZ -?find@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@ABH@Z -?find@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@ABH@Z -?find@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Const_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@ABH@Z -?find@?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@QBE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@2@ABVOUString@rtl@@@Z -?find@?$hash_map@VOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@4@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@4@@_STL@@QBE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@2@ABVOUString@rtl@@@Z -?find@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QBE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@2@ABVOUString@rtl@@@Z -?find@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@2@ABVOUString@rtl@@@Z -?find@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QBE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@2@ABVOUString@rtl@@@Z -?find@?$map@HV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@ABH@Z -?find@?$map@HV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Const_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@ABH@Z -?find@?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Const_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@ABH@Z -?get@DefaultFontConfigItem@vcl@@SAPAV12@XZ -?get@FontSubstConfigItem@vcl@@SAPAV12@XZ -?get@SettingsConfigItem@vcl@@SAPAV12@XZ -?getArray@?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@QAAPAUPropertyValue@beans@345@XZ -?getArray@?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QAAPAVOUString@rtl@@XZ -?getConstArray@?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@QBAPBVAny@2345@XZ -?getConstArray@?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QBAPBVOUString@rtl@@XZ -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@VOUString@rtl@@@2345@@Z -?getDefaultFont@DefaultFontConfigItem@vcl@@QBEABVOUString@rtl@@HH@Z -?getKeyType@DefaultFontConfigItem@vcl@@CAHABVOUString@rtl@@@Z -?getLength@?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@QBAJXZ -?getLength@?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QBAJXZ -?getMapName@FontSubstConfigItem@vcl@@SAXABVString@@AAV3@1AAW4FontWeight@@AAW4FontWidth@@AAK@Z -?getStr@OUString@rtl@@QBEPBGXZ -?getSubstInfo@FontSubstConfigItem@vcl@@QBEPBUFontNameAttr@12@ABVString@@H@Z -?getToken@OUString@rtl@@QBE?AV12@JGAAJ@Z -?getUserInterfaceFont@DefaultFontConfigItem@vcl@@QBEABVOUString@rtl@@H@Z -?getValue@Any@uno@star@sun@com@@QBAPBXXZ -?getValue@SettingsConfigItem@vcl@@QBEABVOUString@rtl@@ABV34@0@Z -?getValueTypeClass@Any@uno@star@sun@com@@QBA?AW4TypeClass@2345@XZ -?getValues@DefaultFontConfigItem@vcl@@AAEXXZ -?getValues@FontSubstConfigItem@vcl@@AAEXXZ -?getValues@SettingsConfigItem@vcl@@AAEXXZ -?get_allocator@?$_Rb_tree_base@U?$pair@$$CBHVOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QBE?AV?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@XZ -?get_allocator@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QBE?AV?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@XZ -?get_allocator@?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@QBE?AV?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@2@XZ -?get_allocator@?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@QBE?AV?$allocator@VString@@@2@XZ -?insert@?$map@HV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@U32@ABU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@2@@Z -?insert@?$map@HV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@U32@ABU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@2@@Z -?insert@?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@U32@ABU?$pair@$$CBHVOUString@rtl@@@2@@Z -?insert_unique@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@U32@ABU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@2@@Z -?insert_unique@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@2@@Z -?insert_unique@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@U32@ABU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@2@@Z -?insert_unique@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@2@@Z -?insert_unique@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@U32@ABU?$pair@$$CBHVOUString@rtl@@@2@@Z -?insert_unique@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBHVOUString@rtl@@@2@@Z -?iter_swap@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@0@Z -?iterator_category@_STL@@YA?AUrandom_access_iterator_tag@1@PBUFontNameAttr@FontSubstConfigItem@vcl@@@Z -?iterator_category@_STL@@YA?AUrandom_access_iterator_tag@1@PBVString@@@Z -?key_comp@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QBE?AU?$less@H@2@XZ -?key_comp@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QBE?AU?$less@H@2@XZ -?key_comp@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QBE?AU?$less@H@2@XZ -?key_comp@?$map@HV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QBE?AU?$less@H@2@XZ -?key_comp@?$map@HV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QBE?AU?$less@H@2@XZ -?key_comp@?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@QBE?AU?$less@H@2@XZ -?lower_bound@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@ABH@Z -?lower_bound@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@ABH@Z -?lower_bound@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@ABH@Z -?lower_bound@?$map@HV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@2@ABH@Z -?lower_bound@?$map@HV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@2@ABH@Z -?lower_bound@?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@2@ABH@Z -?lower_bound@_STL@@YAPBUFontNameAttr@FontSubstConfigItem@vcl@@PBU234@0ABU234@UWeakStringSort@@@Z -?make_heap@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@0UStrictStringSort@@@Z -?partial_sort@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@00UStrictStringSort@@@Z -?pop_heap@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@0UStrictStringSort@@@Z -?push_back@?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@QAEXABUFontNameAttr@FontSubstConfigItem@vcl@@@Z -?push_back@?$vector@VString@@V?$allocator@VString@@@_STL@@@_STL@@QAEXABVString@@@Z -?realloc@?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@QAAXJ@Z -?resize@?$hashtable@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@@_STL@@@2@@_STL@@QAEXI@Z -?s_pType@?$Sequence@VOUString@rtl@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?setDefaultFont@DefaultFontConfigItem@vcl@@QAEXHHABVOUString@rtl@@@Z -?setValue@SettingsConfigItem@vcl@@QAEXABVOUString@rtl@@00@Z -?size@?$_Rb_tree@HU?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$map@HVOUString@rtl@@U?$less@H@_STL@@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@4@@_STL@@@_STL@@@2@@_STL@@QBEIXZ -?size@?$_Rb_tree@HU?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@U?$_Select1st@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHV?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@@_STL@@@2@@_STL@@QBEIXZ -?size@?$_Rb_tree@HU?$pair@$$CBHVOUString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@U?$less@H@2@V?$allocator@U?$pair@$$CBHVOUString@rtl@@@_STL@@@2@@_STL@@QBEIXZ -?size@?$hash_map@VOUString@rtl@@V12@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@5@@_STL@@QBEIXZ -?size@?$hashtable@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@V12@@_STL@@@2@@_STL@@QBEIXZ -?size@?$vector@UFontNameAttr@FontSubstConfigItem@vcl@@V?$allocator@UFontNameAttr@FontSubstConfigItem@vcl@@@_STL@@@_STL@@QBEIXZ -?sort@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@0UStrictStringSort@@@Z -?sort_heap@_STL@@YAXPAUFontNameAttr@FontSubstConfigItem@vcl@@0UStrictStringSort@@@Z -?swap@_STL@@YAXAAUFontNameAttr@FontSubstConfigItem@vcl@@0@Z -?value_type@_STL@@YAPAUFontNameAttr@FontSubstConfigItem@vcl@@PBU234@@Z -?value_type@_STL@@YAPAVString@@PBV2@@Z -??0PDFWriter@vcl@@QAE@ABVOUString@rtl@@W4PDFVersion@01@W4Compression@01@@Z -??1PDFWriter@vcl@@QAE@XZ -?DrawArc@PDFWriter@vcl@@QAEXABVRectangle@@ABVPoint@@1@Z -?DrawBitmap@PDFWriter@vcl@@QAEXABVPoint@@ABVBitmap@@@Z -?DrawBitmap@PDFWriter@vcl@@QAEXABVPoint@@ABVSize@@01ABVBitmap@@@Z -?DrawBitmap@PDFWriter@vcl@@QAEXABVPoint@@ABVSize@@ABVBitmap@@@Z -?DrawBitmapEx@PDFWriter@vcl@@QAEXABVPoint@@ABVBitmapEx@@@Z -?DrawBitmapEx@PDFWriter@vcl@@QAEXABVPoint@@ABVSize@@01ABVBitmapEx@@@Z -?DrawBitmapEx@PDFWriter@vcl@@QAEXABVPoint@@ABVSize@@ABVBitmapEx@@@Z -?DrawChord@PDFWriter@vcl@@QAEXABVRectangle@@ABVPoint@@1@Z -?DrawEllipse@PDFWriter@vcl@@QAEXABVRectangle@@@Z -?DrawGradient@PDFWriter@vcl@@QAEXABVPolyPolygon@@ABVGradient@@@Z -?DrawGradient@PDFWriter@vcl@@QAEXABVRectangle@@ABVGradient@@@Z -?DrawHatch@PDFWriter@vcl@@QAEXABVPolyPolygon@@ABVHatch@@@Z -?DrawJPGBitmap@PDFWriter@vcl@@QAEXAAVSvStream@@ABVSize@@ABVRectangle@@ABVBitmap@@@Z -?DrawLine@PDFWriter@vcl@@QAEXABVPoint@@0@Z -?DrawLine@PDFWriter@vcl@@QAEXABVPoint@@0ABVLineInfo@@@Z -?DrawMask@PDFWriter@vcl@@QAEXABVPoint@@ABVBitmap@@ABVColor@@@Z -?DrawMask@PDFWriter@vcl@@QAEXABVPoint@@ABVSize@@01ABVBitmap@@ABVColor@@@Z -?DrawMask@PDFWriter@vcl@@QAEXABVPoint@@ABVSize@@ABVBitmap@@ABVColor@@@Z -?DrawPie@PDFWriter@vcl@@QAEXABVRectangle@@ABVPoint@@1@Z -?DrawPixel@PDFWriter@vcl@@QAEXABVPoint@@ABVColor@@@Z -?DrawPixel@PDFWriter@vcl@@QAEXABVPolygon@@PBVColor@@@Z -?DrawPolyLine@PDFWriter@vcl@@QAEXABVPolygon@@@Z -?DrawPolyLine@PDFWriter@vcl@@QAEXABVPolygon@@ABVLineInfo@@@Z -?DrawPolyPolygon@PDFWriter@vcl@@QAEXABVPolyPolygon@@@Z -?DrawPolygon@PDFWriter@vcl@@QAEXABVPolygon@@@Z -?DrawRect@PDFWriter@vcl@@QAEXABVRectangle@@@Z -?DrawRect@PDFWriter@vcl@@QAEXABVRectangle@@KK@Z -?DrawStretchText@PDFWriter@vcl@@QAEXABVPoint@@KABVString@@GG@Z -?DrawText@PDFWriter@vcl@@QAEXABVPoint@@ABVString@@@Z -?DrawText@PDFWriter@vcl@@QAEXABVRectangle@@ABVString@@G@Z -?DrawTextArray@PDFWriter@vcl@@QAEXABVPoint@@ABVString@@PBJGG@Z -?DrawTextLine@PDFWriter@vcl@@QAEXABVPoint@@JW4FontStrikeout@@W4FontUnderline@@E@Z -?DrawTransparent@PDFWriter@vcl@@QAEXABVPolyPolygon@@G@Z -?DrawWallpaper@PDFWriter@vcl@@QAEXABVRectangle@@ABVWallpaper@@@Z -?Emit@PDFWriter@vcl@@QAE_NXZ -?GetReferenceDevice@PDFWriter@vcl@@QAEPAVOutputDevice@@XZ -?GetVersion@PDFWriter@vcl@@QBE?AW4PDFVersion@12@XZ -?IntersectClipRegion@PDFWriter@vcl@@QAEXABVRectangle@@@Z -?IntersectClipRegion@PDFWriter@vcl@@QAEXABVRegion@@@Z -?MoveClipRegion@PDFWriter@vcl@@QAEXJJ@Z -?NewPage@PDFWriter@vcl@@QAEJJJW4Orientation@12@@Z -?Pop@PDFWriter@vcl@@QAEXXZ -?Push@PDFWriter@vcl@@QAEXG@Z -?SetAntialiasing@PDFWriter@vcl@@QAEXG@Z -?SetClipRegion@PDFWriter@vcl@@QAEXABVRegion@@@Z -?SetClipRegion@PDFWriter@vcl@@QAEXXZ -?SetFillColor@PDFWriter@vcl@@QAEXABVColor@@@Z -?SetFont@PDFWriter@vcl@@QAEXABVFont@@@Z -?SetLayoutMode@PDFWriter@vcl@@QAEXK@Z -?SetLineColor@PDFWriter@vcl@@QAEXABVColor@@@Z -?SetMapMode@PDFWriter@vcl@@QAEXABVMapMode@@@Z -?SetMapMode@PDFWriter@vcl@@QAEXXZ -?SetTextAlign@PDFWriter@vcl@@QAEXW4TextAlign@@@Z -?SetTextColor@PDFWriter@vcl@@QAEXABVColor@@@Z -?SetTextFillColor@PDFWriter@vcl@@QAEXABVColor@@@Z -?SetTextFillColor@PDFWriter@vcl@@QAEXXZ -?SetTextLineColor@PDFWriter@vcl@@QAEXABVColor@@@Z -?SetTextLineColor@PDFWriter@vcl@@QAEXXZ -??0?$_List_base@HV?$allocator@H@_STL@@@_STL@@QAE@ABV?$allocator@H@1@@Z -??0?$_List_iterator@HU?$_Const_traits@H@_STL@@@_STL@@QAE@ABU?$_List_iterator@HU?$_Nonconst_traits@H@_STL@@@1@@Z -??0?$_List_iterator@HU?$_Const_traits@H@_STL@@@_STL@@QAE@XZ -??0?$_List_iterator@HU?$_Nonconst_traits@H@_STL@@@_STL@@QAE@PAU?$_List_node@H@1@@Z -??0?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE@ABU?$less@J@1@ABV?$allocator@U?$pair@$$CBJJ@_STL@@@1@@Z -??0?$_Rb_tree_base@U?$pair@$$CBJJ@_STL@@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBJJ@_STL@@@1@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE@ABU01@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE@PAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@1@@Z -??0?$_STLP_alloc_proxy@PAU?$_List_node@H@_STL@@U12@V?$allocator@U?$_List_node@H@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_List_node@H@_STL@@@1@PAU?$_List_node@H@1@@Z -??0?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@_STL@@U12@V?$allocator@U?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@_STL@@@1@PAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@1@@Z -??0?$_STLP_alloc_proxy@PA_K_KV?$allocator@_K@_STL@@@_STL@@QAE@ABV?$allocator@_K@1@PA_K@Z -??0?$_Vector_base@_KV?$allocator@_K@_STL@@@_STL@@QAE@ABV?$allocator@_K@1@@Z -??0?$allocator@H@_STL@@QAE@XZ -??0?$allocator@U?$_List_node@H@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_List_node@H@_STL@@@_STL@@QAE@ABV?$allocator@H@1@@Z -??0?$allocator@U?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBJJ@_STL@@@1@@Z -??0?$allocator@U?$pair@$$CBJJ@_STL@@@_STL@@QAE@XZ -??0?$allocator@_K@_STL@@QAE@ABV01@@Z -??0?$allocator@_K@_STL@@QAE@XZ -??0?$list@HV?$allocator@H@_STL@@@_STL@@QAE@ABV?$allocator@H@1@@Z -??0?$map@JJU?$less@J@_STL@@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE@XZ -??0?$pair@$$CBJJ@_STL@@QAE@ABJ0@Z -??0?$pair@$$CBJJ@_STL@@QAE@ABU01@@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@1@AB_N@Z -??0?$vector@_KV?$allocator@_K@_STL@@@_STL@@QAE@ABV?$allocator@_K@1@@Z -??0AccessReleaser@@QAE@PAVBitmapReadAccess@@@Z -??0FontSubsetInfo@@QAE@XZ -??0GlyphItem@@QAE@HJABVPoint@@JH@Z -??0OString@rtl@@AAE@PAU_rtl_String@@PAVDO_NOT_ACQUIRE@01@@Z -??0OStringBuffer@rtl@@QAE@ABV01@@Z -??0OStringBuffer@rtl@@QAE@J@Z -??0OStringBuffer@rtl@@QAE@XZ -??1?$_List_base@HV?$allocator@H@_STL@@@_STL@@QAE@XZ -??1?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE@XZ -??1?$_Rb_tree_base@U?$pair@$$CBJJ@_STL@@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAU?$_List_node@H@_STL@@U12@V?$allocator@U?$_List_node@H@_STL@@@2@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@_STL@@U12@V?$allocator@U?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PA_K_KV?$allocator@_K@_STL@@@_STL@@QAE@XZ -??1?$_Vector_base@_KV?$allocator@_K@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$_List_node@H@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@$$CBJJ@_STL@@@_STL@@QAE@XZ -??1?$allocator@_K@_STL@@QAE@XZ -??1?$list@HV?$allocator@H@_STL@@@_STL@@QAE@XZ -??1?$map@JJU?$less@J@_STL@@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE@XZ -??1?$vector@_KV?$allocator@_K@_STL@@@_STL@@QAE@XZ -??1AccessReleaser@@QAE@XZ -??1FontSubsetInfo@@QAE@XZ -??1OStringBuffer@rtl@@QAE@XZ -??4OStringBuffer@rtl@@QAEAAV01@ABV01@@Z -??9Font@@QBEEABV0@@Z -??9Region@@QBEEABV0@@Z -??A?$map@JJU?$less@J@_STL@@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAEAAJABJ@Z -??A?$vector@_KV?$allocator@_K@_STL@@@_STL@@QAEAA_KI@Z -??C?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QBEPAU?$pair@$$CBJJ@1@XZ -??D?$_List_iterator@HU?$_Const_traits@H@_STL@@@_STL@@QBEABHXZ -??D?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QBEAAU?$pair@$$CBJJ@1@XZ -??E?$_List_iterator@HU?$_Const_traits@H@_STL@@@_STL@@QAEAAU01@XZ -??E?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAEAAU01@XZ -??F?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAEAAU01@XZ -??R?$_Select1st@U?$pair@$$CBJJ@_STL@@@_STL@@QBEABJABU?$pair@$$CBJJ@1@@Z -??R?$less@J@_STL@@QBE_NABJ0@Z -??_GZCodec@@QAEPAXI@Z -?GetBitCount@BitmapEx@@QBEGXZ -?GetChecksum@AlphaMask@@QBEKXZ -?GetDescent@FontMetric@@QBEJXZ -?GetTransparentColor@BitmapEx@@QBEABVColor@@XZ -?GetWidth@Font@@QBEJXZ -?OUStringToOString@rtl@@YA?AVOString@1@ABVOUString@1@GK@Z -?SetWidth@Font@@QAEXJ@Z -?_Construct@_STL@@YAXPAHABH@Z -?_Construct@_STL@@YAXPAU?$pair@$$CBJJ@1@ABU21@@Z -?_Construct@_STL@@YAXPA_KAB_K@Z -?_Destroy@_STL@@YAXPAH@Z -?_Destroy@_STL@@YAXPAU?$pair@$$CBJJ@1@@Z -?_Destroy@_STL@@YAXPA_K0@Z -?_M_clear@?$vector@_KV?$allocator@_K@_STL@@@_STL@@IAEXXZ -?_M_create_node@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@ABU?$pair@$$CBJJ@2@@Z -?_M_create_node@?$list@HV?$allocator@H@_STL@@@_STL@@IAEPAU?$_List_node@H@2@ABH@Z -?_M_decr@_List_iterator_base@_STL@@QAEXXZ -?_M_empty_initialize@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@AAEXXZ -?_M_erase@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@@Z -?_M_insert@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBJJ@2@0@Z -?_M_insert_overflow@?$vector@_KV?$allocator@_K@_STL@@@_STL@@IAEXPA_KAB_KABU__true_type@2@I_N@Z -?_M_leftmost@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@XZ -?_M_lower_bound@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@ABJ@Z -?_M_rightmost@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@XZ -?_M_root@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@XZ -?_M_set@?$vector@_KV?$allocator@_K@_STL@@@_STL@@IAEXPA_K00@Z -?_S_color@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@KAAA_NPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@@Z -?_S_key@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@KAABJPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@@Z -?_S_key@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@KAABJPAU_Rb_tree_node_base@2@@Z -?_S_left@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@PAU32@@Z -?_S_parent@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@PAU32@@Z -?_S_right@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@PAU32@@Z -?_S_right@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@PAU_Rb_tree_node_base@2@@Z -?_S_value@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@KAAAU?$pair@$$CBJJ@2@PAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@@Z -?__default_constructed@_STL@@YAJPAJ@Z -?__default_constructed_aux@_STL@@YAJPAJABU__true_type@1@@Z -?__destroy@_STL@@YAXPA_K00@Z -?__destroy_aux@_STL@@YAXPA_K0ABU__true_type@1@@Z -?allocate@?$allocator@U?$_List_node@H@_STL@@@_STL@@QBEPAU?$_List_node@H@2@IPBX@Z -?allocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@_STL@@@_STL@@QBEPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@IPBX@Z -?allocate@?$allocator@_K@_STL@@QBEPA_KIPBX@Z -?append@OStringBuffer@rtl@@QAEAAV12@ABVOString@2@@Z -?append@OStringBuffer@rtl@@QAEAAV12@D@Z -?append@OStringBuffer@rtl@@QAEAAV12@JF@Z -?append@OStringBuffer@rtl@@QAEAAV12@N@Z -?append@OStringBuffer@rtl@@QAEAAV12@PBD@Z -?append@OStringBuffer@rtl@@QAEAAV12@PBDJ@Z -?append@OStringBuffer@rtl@@QAEAAV12@_JF@Z -?begin@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@2@XZ -?begin@?$list@HV?$allocator@H@_STL@@@_STL@@QAE?AU?$_List_iterator@HU?$_Nonconst_traits@H@_STL@@@2@XZ -?begin@?$map@JJU?$less@J@_STL@@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@2@XZ -?begin@?$vector@_KV?$allocator@_K@_STL@@@_STL@@QAEPA_KXZ -?clear@?$_List_base@HV?$allocator@H@_STL@@@_STL@@QAEXXZ -?clear@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAEXXZ -?deallocate@?$allocator@U?$_List_node@H@_STL@@@_STL@@QBEXPAU?$_List_node@H@2@I@Z -?deallocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@I@Z -?deallocate@?$allocator@_K@_STL@@QBEXPA_KI@Z -?end@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@2@XZ -?end@?$list@HV?$allocator@H@_STL@@@_STL@@QAE?AU?$_List_iterator@HU?$_Nonconst_traits@H@_STL@@@2@XZ -?end@?$map@JJU?$less@J@_STL@@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@2@XZ -?fill_n@_STL@@YAPA_KPA_KIAB_K@Z -?getLength@OString@rtl@@QBEJXZ -?getLength@OStringBuffer@rtl@@QAEJXZ -?getStr@OStringBuffer@rtl@@QBEPBDXZ -?insert@?$list@HV?$allocator@H@_STL@@@_STL@@QAE?AU?$_List_iterator@HU?$_Nonconst_traits@H@_STL@@@2@U32@ABH@Z -?insert@?$map@JJU?$less@J@_STL@@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@2@U32@ABU?$pair@$$CBJJ@2@@Z -?insert_unique@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@2@U32@ABU?$pair@$$CBJJ@2@@Z -?insert_unique@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBJJ@2@@Z -?key_comp@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QBE?AU?$less@J@2@XZ -?key_comp@?$map@JJU?$less@J@_STL@@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QBE?AU?$less@J@2@XZ -?lcl_convert@vcl@@YA?AVPoint@@ABVMapMode@@0PAVOutputDevice@@ABV2@@Z -?lcl_convert@vcl@@YA?AVRectangle@@ABVMapMode@@0PAVOutputDevice@@ABV2@@Z -?lcl_convert@vcl@@YA?AVSize@@ABVMapMode@@0PAVOutputDevice@@ABV2@@Z -?lower_bound@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@2@ABJ@Z -?lower_bound@?$map@JJU?$less@J@_STL@@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBJJ@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJJ@_STL@@@2@@2@ABJ@Z -?push_back@?$list@HV?$allocator@H@_STL@@@_STL@@QAEXABH@Z -?push_back@?$vector@_KV?$allocator@_K@_STL@@@_STL@@QAEXAB_K@Z -?setLength@OStringBuffer@rtl@@QAEXJ@Z -?size@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QBEIXZ -?size@?$vector@_KV?$allocator@_K@_STL@@@_STL@@QBEIXZ -?valueOf@OString@rtl@@SA?AV12@_JF@Z -?value_type@_STL@@YAPA_KPB_K@Z -_real@3f1a36e2eb1c432d -_real@3f5c9871032b0b50 -_real@3fa1111111111111 -_real@3fd1ac51114f0eaf -_real@3fd5555555555555 -_real@3fe1ac51114f0eaf -_real@401921fb53c8d4f1 -_real@bfe45f306e2dc32d -??0?$Reference@VXBitmap@awt@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXIntrospectionAccess@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXInvocation@script@star@sun@com@@@uno@star@sun@com@@QAE@PAVXInvocation@script@234@@Z -??0?$Sequence@C@uno@star@sun@com@@QAE@ABV01234@@Z -??0BmpConverter@vcl@@QAE@XZ -??0BmpTransporter@vcl@@QAE@ABVBitmap@@@Z -??0CannotConvertException@script@star@sun@com@@QAE@ABV01234@@Z -??0CannotConvertException@script@star@sun@com@@QAE@XZ -??0InvocationTargetException@reflection@star@sun@com@@QAE@ABV01234@@Z -??0InvocationTargetException@reflection@star@sun@com@@QAE@XZ -??0Size@awt@star@sun@com@@QAE@XZ -??0UnknownPropertyException@beans@star@sun@com@@QAE@ABV01234@@Z -??0UnknownPropertyException@beans@star@sun@com@@QAE@XZ -??0WrappedTargetException@lang@star@sun@com@@QAE@ABV01234@@Z -??0WrappedTargetException@lang@star@sun@com@@QAE@XZ -??0XBitmap@awt@star@sun@com@@QAE@XZ -??0XInvocation@script@star@sun@com@@QAE@XZ -??1?$Reference@VXBitmap@awt@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXIntrospectionAccess@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXInvocation@script@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1BmpConverter@vcl@@UAE@XZ -??1BmpTransporter@vcl@@UAE@XZ -??1CannotConvertException@script@star@sun@com@@QAE@XZ -??1InvocationTargetException@reflection@star@sun@com@@QAE@XZ -??1UnknownPropertyException@beans@star@sun@com@@QAE@XZ -??1WrappedTargetException@lang@star@sun@com@@QAE@XZ -??4?$Reference@VXBitmap@awt@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXBitmap@awt@234@@Z -??4?$Sequence@C@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??C?$Reference@VXBitmap@awt@star@sun@com@@@uno@star@sun@com@@QBAPAVXBitmap@awt@234@XZ -??_2uno@star@sun@com@@YAEABVAny@0123@AAG@Z -??_2uno@star@sun@com@@YAEABVAny@0123@AAV?$Reference@VXBitmap@awt@star@sun@com@@@0123@@Z -??_3uno@star@sun@com@@YAXAAVAny@0123@ABV?$Reference@VXBitmap@awt@star@sun@com@@@0123@@Z -??_7BmpConverter@vcl@@6BOWeakObject@cppu@@@ -??_7BmpConverter@vcl@@6BXInvocation@script@star@sun@com@@@ -??_7BmpConverter@vcl@@6BXTypeProvider@lang@star@sun@com@@@ -??_7BmpTransporter@vcl@@6BOWeakObject@cppu@@@ -??_7BmpTransporter@vcl@@6BXBitmap@awt@star@sun@com@@@ -??_7BmpTransporter@vcl@@6BXTypeProvider@lang@star@sun@com@@@ -??_C@_0BJ@ENJGIHBC@com?4sun?4star?4awt?4XBitmap?$AA@ -??_C@_0CA@NPPNKFE@com?4sun?4star?4script?4XInvocation?$AA@ -??_GBmpConverter@vcl@@UAEPAXI@Z -??_GBmpTransporter@vcl@@UAEPAXI@Z -??_R0?AVCannotConvertException@script@star@sun@com@@@8 -??_R0?AVInvocationTargetException@reflection@star@sun@com@@@8 -??_R0?AVUnknownPropertyException@beans@star@sun@com@@@8 -??_R0?AVWrappedTargetException@lang@star@sun@com@@@8 -?GetSize@SvMemoryStream@@QBEKXZ -?createBmpConverter@vcl@@YA?AV?$Reference@VXInvocation@script@star@sun@com@@@uno@star@sun@com@@XZ -?equalsIgnoreAsciiCase@OUString@rtl@@QBEEABV12@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXBitmap@awt@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInvocation@script@star@sun@com@@@2345@@Z -?getDIB@BmpTransporter@vcl@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ -?getIntrospection@BmpConverter@vcl@@UAA?AV?$Reference@VXIntrospectionAccess@beans@star@sun@com@@@uno@star@sun@com@@XZ -?getLength@?$Sequence@C@uno@star@sun@com@@QBAJXZ -?getMaskDIB@BmpTransporter@vcl@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ -?getSize@BmpTransporter@vcl@@UAA?AUSize@awt@star@sun@com@@XZ -?getValue@BmpConverter@vcl@@UAA?AVAny@uno@star@sun@com@@ABVOUString@rtl@@@Z -?hasMethod@BmpConverter@vcl@@UAAEABVOUString@rtl@@@Z -?hasProperty@BmpConverter@vcl@@UAAEABVOUString@rtl@@@Z -?invoke@BmpConverter@vcl@@UAA?AVAny@uno@star@sun@com@@ABVOUString@rtl@@ABV?$Sequence@VAny@uno@star@sun@com@@@4567@AAV?$Sequence@F@4567@AAV?$Sequence@VAny@uno@star@sun@com@@@4567@@Z -?s_pType_com_sun_star_awt_XBitmap@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXBitmap@awt@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_script_XInvocation@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInvocation@script@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?set@?$Reference@VXBitmap@awt@star@sun@com@@@uno@star@sun@com@@QAAEPAVXBitmap@awt@345@@Z -?setValue@BmpConverter@vcl@@UAAXABVOUString@rtl@@ABVAny@uno@star@sun@com@@@Z -_TI2?AVCannotConvertException@script@star@sun@com@@ -_TI2?AVUnknownPropertyException@beans@star@sun@com@@ -_TI3?AVInvocationTargetException@reflection@star@sun@com@@ -??0?$_Vector_base@HV?$allocator@H@_STL@@@_STL@@QAE@ABV?$allocator@H@1@@Z -??0?$vector@HV?$allocator@H@_STL@@@_STL@@QAE@ABV?$allocator@H@1@@Z -??0GlyphItem@@QAE@XZ -??4?$vector@HV?$allocator@H@_STL@@@_STL@@QAEAAV01@ABV01@@Z -?GetLocalizedChar@@YAGGH@Z -?GetMirroredChar@@YAGG@Z -?GetVerticalChar@@YAGG@Z -?GetVerticalFlags@@YAHG@Z -?IsClusterStart@GlyphItem@@QBE_NXZ -?IsRTLGlyph@GlyphItem@@QBE_NXZ -?_Is_POD@_STL@@YA?AU?$_IsPOD@H@1@PAH@Z -?_M_allocate_and_copy@?$vector@HV?$allocator@H@_STL@@@_STL@@IAEPAHIPBH0@Z -?_M_clear@?$vector@HV?$allocator@H@_STL@@@_STL@@IAEXXZ -?_M_fill_insert@?$vector@HV?$allocator@H@_STL@@@_STL@@QAEXPAHIABH@Z -?_M_insert_overflow@?$vector@HV?$allocator@H@_STL@@@_STL@@IAEXPAHABHABU__true_type@2@I_N@Z -?_M_set@?$vector@HV?$allocator@H@_STL@@@_STL@@IAEXPAH00@Z -?_Ret@?$_BothPtrType@PAHPAH@_STL@@SA?AU__true_type@2@XZ -?_Ret@?$_IsPOD@H@_STL@@SA?AU__true_type@2@XZ -?__copy@_STL@@YAPAHPAH00ABUrandom_access_iterator_tag@1@0@Z -?__copy_aux@_STL@@YAPAHPAH00ABU__true_type@1@@Z -?__copy_backward_ptrs@_STL@@YAPAHPAH00ABU__true_type@1@@Z -?__copy_ptrs@_STL@@YAPAHPAH00ABU__false_type@1@@Z -?__copy_ptrs@_STL@@YAPAHPAH00ABU__true_type@1@@Z -?__copy_ptrs@_STL@@YAPAHPBH0PAHABU__true_type@1@@Z -?__copy_trivial_backward@_STL@@YAPAXPBX0PAX@Z -?__uninitialized_copy@_STL@@YAPAHPAH00ABU__true_type@1@@Z -?__uninitialized_fill_n@_STL@@YAPAHPAHIABHABU__true_type@1@@Z -?back@?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@QAEAAVPolyPolygon@@XZ -?capacity@?$vector@HV?$allocator@H@_STL@@@_STL@@QBEIXZ -?clear@?$vector@HV?$allocator@H@_STL@@@_STL@@QAEXXZ -?end@?$vector@HV?$allocator@H@_STL@@@_STL@@QAEPAHXZ -?erase@?$vector@HV?$allocator@H@_STL@@@_STL@@QAEPAHPAH0@Z -?fill@_STL@@YAXPAH0ABH@Z -?fill_n@_STL@@YAPAHPAHIABH@Z -?insert@?$vector@HV?$allocator@H@_STL@@@_STL@@QAEXPAHIABH@Z -?push_back@?$vector@HV?$allocator@H@_STL@@@_STL@@QAEXABH@Z -?resize@?$vector@HV?$allocator@H@_STL@@@_STL@@QAEXI@Z -?resize@?$vector@HV?$allocator@H@_STL@@@_STL@@QAEXIABH@Z -?uninitialized_fill_n@_STL@@YAPAHPAHIABH@Z -_real@3f5c987103b7c81b -?KeyboardActivated@HelpEvent@@QBEEXZ -??0ButtonDialog@@QAE@PAVWindow@@_J@Z -?SetDirection@Cursor@@QAEXE@Z -?getWidth@Rectangle@@QBEJXZ -??0DockingWindow@@QAE@PAVWindow@@_J@Z -??0WindowStateData@@QAE@XZ -?GetFloatStyle@DockingWindow@@QBE_JXZ -?GetFloatingPos@DockingWindow@@QBE?AVPoint@@XZ -?GetX@WindowStateData@@QBEJXZ -?GetY@WindowStateData@@QBEJXZ -?IsDockable@DockingWindow@@QBEEXZ -?IsDocking@DockingWindow@@QBEEXZ -?SetFloatStyle@DockingWindow@@QAEX_J@Z -?SetMask@WindowStateData@@QAEXK@Z -?GetMenuBorderColor@StyleSettings@@QBEABVColor@@XZ -?GetUseFlatMenues@StyleSettings@@QBEEXZ -?min@_STL@@YAABJABJ0@Z -??0Dialog@@QAE@PAVWindow@@_J@Z -??0ModalDialog@@QAE@PAVWindow@@_J@Z -??0ModelessDialog@@QAE@PAVWindow@@_J@Z -??1MnemonicGenerator@@QAE@XZ -??0KeyEvent@@QAE@XZ -??4KeyEvent@@QAEAAV0@ABV0@@Z -?GetActivationKey@Window@@QBE?AVKeyEvent@@XZ -?GetLabelFor@Window@@QBEPAV1@XZ -?GetLabeledBy@Window@@QBEPAV1@XZ -?GetParentLabelFor@Window@@UBEPAV1@PBV1@@Z -?GetParentLabeledBy@Window@@UBEPAV1@PBV1@@Z -??0FloatingWindow@@QAE@PAVWindow@@_J@Z -?SetDialogControlFlags@Window@@QAEXG@Z -??0KeyEvent@@QAE@ABV0@@Z -?GetAllModifier@KeyCode@@QBEGXZ -?LogicalTextDirectionality@KeyEvent@@QBE?AV1@W4TextDirectionality@@@Z -??0?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??0?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE@ABU?$less@G@1@ABV?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@1@@Z -??0?$_Rb_tree_base@U?$pair@$$CBGVRectangle@@@_STL@@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@1@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Const_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@1@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE@ABU01@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE@PAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@1@@Z -??0?$_STLP_alloc_proxy@PAJJV?$allocator@J@_STL@@@_STL@@QAE@ABV?$allocator@J@1@PAJ@Z -??0?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@_STL@@U12@V?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@_STL@@@1@PAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@1@@Z -??0?$_Vector_base@GV?$allocator@G@_STL@@@_STL@@QAE@ABV?$allocator@G@1@@Z -??0?$_Vector_base@JV?$allocator@J@_STL@@@_STL@@QAE@ABV?$allocator@J@1@@Z -??0?$allocator@J@_STL@@QAE@ABV01@@Z -??0?$allocator@J@_STL@@QAE@XZ -??0?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@1@@Z -??0?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@_STL@@QAE@XZ -??0?$map@GVRectangle@@U?$less@G@_STL@@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@3@@_STL@@QAE@XZ -??0?$pair@$$CBGVRectangle@@@_STL@@QAE@ABGABVRectangle@@@Z -??0?$pair@$$CBGVRectangle@@@_STL@@QAE@ABU01@@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@1@AB_N@Z -??0?$vector@GV?$allocator@G@_STL@@@_STL@@QAE@ABV?$allocator@G@1@@Z -??0?$vector@JV?$allocator@J@_STL@@@_STL@@QAE@ABV?$allocator@J@1@@Z -??0ControlLayoutData@vcl@@QAE@XZ -??0DecoToolBox@@QAE@PAVWindow@@ABVResId@@@Z -??0DecoToolBox@@QAE@PAVWindow@@_J@Z -??0Menu@@QAE@XZ -??0MenuLayoutData@vcl@@QAE@XZ -??0VclMenuEvent@@QAE@PAVMenu@@KG@Z -??1?$Reference@VXAccessibleContext@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??1?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_Rb_tree_base@U?$pair@$$CBGVRectangle@@@_STL@@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAJJV?$allocator@J@_STL@@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@_STL@@U12@V?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$_Vector_base@GV?$allocator@G@_STL@@@_STL@@QAE@XZ -??1?$_Vector_base@JV?$allocator@J@_STL@@@_STL@@QAE@XZ -??1?$allocator@J@_STL@@QAE@XZ -??1?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@_STL@@QAE@XZ -??1?$map@GVRectangle@@U?$less@G@_STL@@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@3@@_STL@@QAE@XZ -??1?$vector@GV?$allocator@G@_STL@@@_STL@@QAE@XZ -??1?$vector@JV?$allocator@J@_STL@@@_STL@@QAE@XZ -??1DecoToolBox@@UAE@XZ -??1MenuLayoutData@vcl@@QAE@XZ -??4?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??A?$map@GVRectangle@@U?$less@G@_STL@@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@3@@_STL@@QAEAAVRectangle@@ABG@Z -??A?$vector@GV?$allocator@G@_STL@@@_STL@@QAEAAGI@Z -??A?$vector@JV?$allocator@J@_STL@@@_STL@@QAEAAJI@Z -??C?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QBAPAVXAccessible@accessibility@234drafts@@XZ -??C?$Reference@VXAccessibleContext@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QBAPAVXAccessibleContext@accessibility@234drafts@@XZ -??C?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Const_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QBEPBU?$pair@$$CBGVRectangle@@@1@XZ -??D?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Const_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QBEABU?$pair@$$CBGVRectangle@@@1@XZ -??D?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QBEAAU?$pair@$$CBGVRectangle@@@1@XZ -??E?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAEAAU01@XZ -??F?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAEAAU01@XZ -??R?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@_STL@@QBEABGABU?$pair@$$CBGVRectangle@@@1@@Z -??_7DecoToolBox@@6B@ -??_7VclMenuEvent@@6B@ -??_GDecoToolBox@@UAEPAXI@Z -??_GMenuLayoutData@vcl@@QAEPAXI@Z -?AddEventListener@Menu@@QAEXABVLink@@@Z -?ConvertPoint@Menu@@QBEEAAVPoint@@PAVWindow@@@Z -?CreateAutoMnemonics@Menu@@QAEXXZ -?DataChanged@DecoToolBox@@UAEXABVDataChangedEvent@@@Z -?GetAccessible@Menu@@QAE?AV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@XZ -?GetActivationKey@Menu@@QBE?AVKeyEvent@@G@Z -?GetBoundingRectangle@Menu@@QBE?AVRectangle@@G@Z -?GetCharacterBounds@Menu@@QBE?AVRectangle@@GJ@Z -?GetDisplayItemId@Menu@@QBEGJ@Z -?GetDisplayText@Menu@@QBE?AVString@@XZ -?GetIndexForPoint@Menu@@QBEJABVPoint@@AAG@Z -?GetItemImageAngle@Menu@@QBEJG@Z -?GetItemImageMirrorMode@Menu@@QBEEG@Z -?GetItemStartEnd@Menu@@QBE?AVPair@@G@Z -?GetLineCount@Menu@@QBEJXZ -?GetLineStartEnd@Menu@@QBE?AVPair@@J@Z -?GetMenuBarColor@StyleSettings@@QBEABVColor@@XZ -?GetTipHelpText@Menu@@QBEABVString@@G@Z -?GetUseImagesInMenus@StyleSettings@@QBEEXZ -?GetWindow@Menu@@QBEPAVWindow@@XZ -?IsEnterWindow@MouseEvent@@QBEEXZ -?IsInCleanUp@FloatingWindow@@QBEEXZ -?IsItemPosVisible@Menu@@QBEEG@Z -?IsItemVisible@Menu@@QBEEG@Z -?IsMenuVisible@Menu@@QBEEXZ -?RemoveEventListener@Menu@@QAEXABVLink@@@Z -?Resize@DecoToolBox@@UAEXXZ -?SelectItem@Menu@@QAEXG@Z -?SetAccessible@Menu@@QAEXABV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@@Z -?SetHelpSettings@AllSettings@@QAEXABVHelpSettings@@@Z -?SetImages@DecoToolBox@@QAEXXZ -?SetItemImageAngle@Menu@@QAEXGJ@Z -?SetItemImageMirrorMode@Menu@@QAEXGE@Z -?SetPopupModeFlags@FloatingWindow@@QAEXK@Z -?SetSelectHdl@ToolBox@@QAEXABVLink@@@Z -?SetTipHelpText@Menu@@QAEXGABVString@@@Z -?SetTipTimeout@HelpSettings@@QAEXK@Z -?SetTransparentColor@BitmapEx@@QAEXABVColor@@@Z -?_Construct@_STL@@YAXPAGABG@Z -?_Construct@_STL@@YAXPAU?$pair@$$CBGVRectangle@@@1@ABU21@@Z -?_Destroy@_STL@@YAXPAG0@Z -?_Destroy@_STL@@YAXPAU?$pair@$$CBGVRectangle@@@1@@Z -?_M_clear@?$vector@GV?$allocator@G@_STL@@@_STL@@IAEXXZ -?_M_create_node@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@ABU?$pair@$$CBGVRectangle@@@2@@Z -?_M_empty_initialize@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@AAEXXZ -?_M_erase@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@@Z -?_M_find@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@ABG@Z -?_M_insert@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBGVRectangle@@@2@0@Z -?_M_insert_overflow@?$vector@GV?$allocator@G@_STL@@@_STL@@IAEXPAGABGABU__true_type@2@I_N@Z -?_M_leftmost@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@XZ -?_M_lower_bound@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@ABG@Z -?_M_rightmost@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@XZ -?_M_root@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@XZ -?_M_set@?$vector@GV?$allocator@G@_STL@@@_STL@@IAEXPAG00@Z -?_S_color@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@KAAA_NPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@@Z -?_S_key@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@KAABGPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@@Z -?_S_key@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@KAABGPAU_Rb_tree_node_base@2@@Z -?_S_left@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@PAU32@@Z -?_S_parent@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@PAU32@@Z -?_S_right@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@PAU32@@Z -?_S_right@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@PAU_Rb_tree_node_base@2@@Z -?_S_value@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@KAAAU?$pair@$$CBGVRectangle@@@2@PAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@@Z -?__default_constructed@_STL@@YA?AVRectangle@@PAV2@@Z -?__default_constructed_aux@_STL@@YA?AVRectangle@@PAV2@ABU__false_type@1@@Z -?allocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@_STL@@@_STL@@QBEPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@IPBX@Z -?begin@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@2@XZ -?begin@?$vector@GV?$allocator@G@_STL@@@_STL@@QAEPAGXZ -?begin@?$vector@JV?$allocator@J@_STL@@@_STL@@QAEPAJXZ -?clear@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAEXXZ -?clear@?$map@GVRectangle@@U?$less@G@_STL@@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@3@@_STL@@QAEXXZ -?deallocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@U?$pair@$$CBGVRectangle@@@_STL@@@2@I@Z -?end@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@2@XZ -?end@?$map@GVRectangle@@U?$less@G@_STL@@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@3@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@2@XZ -?fill_n@_STL@@YAPAGPAGIABG@Z -?find@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@2@ABG@Z -?find@?$map@GVRectangle@@U?$less@G@_STL@@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@3@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@2@ABG@Z -?insert@?$map@GVRectangle@@U?$less@G@_STL@@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@3@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@2@U32@ABU?$pair@$$CBGVRectangle@@@2@@Z -?insert_unique@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@2@U32@ABU?$pair@$$CBGVRectangle@@@2@@Z -?insert_unique@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBGVRectangle@@@2@@Z -?key_comp@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QBE?AU?$less@G@2@XZ -?key_comp@?$map@GVRectangle@@U?$less@G@_STL@@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@3@@_STL@@QBE?AU?$less@G@2@XZ -?lower_bound@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@2@ABG@Z -?lower_bound@?$map@GVRectangle@@U?$less@G@_STL@@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@3@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVRectangle@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGVRectangle@@@_STL@@@2@@2@ABG@Z -?push_back@?$vector@GV?$allocator@G@_STL@@@_STL@@QAEXABG@Z -?set@?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAAEPAVXAccessible@accessibility@345drafts@@@Z -?size@?$_Rb_tree@GU?$pair@$$CBGVRectangle@@@_STL@@U?$_Select1st@U?$pair@$$CBGVRectangle@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVRectangle@@@_STL@@@2@@_STL@@QBEIXZ -?size@?$vector@GV?$allocator@G@_STL@@@_STL@@QBEIXZ -??0MnemonicGenerator@@QAE@XZ -?CreateMnemonic@MnemonicGenerator@@QAEEAAVString@@@Z -?GetCharClass@MnemonicGenerator@@QAE?AV?$Reference@VXCharacterClassification@i18n@star@sun@com@@@uno@star@sun@com@@XZ -?RegisterMnemonic@MnemonicGenerator@@QAEXABVString@@@Z -??0ErrorBox@@QAE@PAVWindow@@_JABVString@@@Z -??0MessBox@@QAE@PAVWindow@@_JABVString@@2@Z -??0QueryBox@@QAE@PAVWindow@@_JABVString@@@Z -??0WarningBox@@QAE@PAVWindow@@_JABVString@@@Z -?GetModeImage@MessBox@@QBEABVImage@@W4BmpColorMode@@@Z -?SetDefaultCheckBoxText@QueryBox@@QAEXXZ -?SetDefaultCheckBoxText@WarningBox@@QAEXXZ -?SetModeImage@MessBox@@QAEEABVImage@@W4BmpColorMode@@@Z -?ShouldDeselect@SelectionEngine@@ABEEE@Z -??0Splitter@@QAE@PAVWindow@@_J@Z -?DataChanged@Splitter@@UAEXABVDataChangedEvent@@@Z -?GetData@DataChangedEvent@@QBEPAXXZ -?GetFocus@Splitter@@UAEXXZ -?GetKeyboardStepSize@Splitter@@QBEJXZ -?IsHorizontal@Splitter@@QBEEXZ -?KeyInput@Splitter@@UAEXABVKeyEvent@@@Z -?LoseFocus@Splitter@@UAEXXZ -?Notify@Splitter@@UAEJAAVNotifyEvent@@@Z -?Paint@Splitter@@UAEXABVRectangle@@@Z -?SetKeyboardStepSize@Splitter@@QAEXJ@Z -??0SplitWindow@@QAE@PAVWindow@@_J@Z -?CalcLayoutSizePixel@SplitWindow@@QAE?AVSize@@ABV2@@Z -?CalcWindowSizePixel@SplitWindow@@SA?AVSize@@ABV2@W4WindowAlign@@_JE@Z -??0StatusBar@@QAE@PAVWindow@@_J@Z -?GetAccessibleName@StatusBar@@QBEABVString@@G@Z -?ResetProgressMode@StatusBar@@QAEXXZ -?SetAccessibleName@StatusBar@@QAEXGABVString@@@Z -??0SystemChildWindow@@QAE@PAVWindow@@_J@Z -?GetHeight@WindowStateData@@QBEJXZ -?GetMask@WindowStateData@@QBEKXZ -?GetState@WindowStateData@@QBEKXZ -?GetTaskPaneList@SystemWindow@@QAEPAVTaskPaneList@@XZ -?GetWidth@WindowStateData@@QBEJXZ -?GetWindowState@SystemWindow@@QBE?AVByteString@@K@Z -?GetWindowStateData@SystemWindow@@QBEXAAVWindowStateData@@@Z -?PreNotify@SystemWindow@@UAEJAAVNotifyEvent@@@Z -?SetHeight@WindowStateData@@QAEXJ@Z -?SetIcon@SystemWindow@@QAEXG@Z -?SetState@WindowStateData@@QAEXK@Z -?SetWidth@WindowStateData@@QAEXJ@Z -?SetWindowState@SystemWindow@@QAEXABVByteString@@@Z -?SetWindowStateData@SystemWindow@@IAEXABVWindowStateData@@@Z -?SetX@WindowStateData@@QAEXJ@Z -?SetY@WindowStateData@@QAEXJ@Z -??0TabDialog@@QAE@PAVWindow@@_J@Z -??0TabPage@@QAE@PAVWindow@@_J@Z -?CreateAccessible@TabPage@@UAE?AV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@XZ -??0ToolBox@@QAE@PAVWindow@@_J@Z -??1ToolBoxLayoutData@vcl@@QAE@XZ -??_GToolBoxLayoutData@vcl@@QAEPAXI@Z -?GetFocus@ToolBox@@UAEXXZ -?GetIntersection@Rectangle@@QBE?AV1@ABV1@@Z -?KeyInput@ToolBox@@UAEXABVKeyEvent@@@Z -?LoseFocus@ToolBox@@UAEXXZ -?SetCustomizeMode@ToolBox@@QAEXE@Z -?TriggerItem@ToolBox@@QAEXGEE@Z -_real@3f91111111111111 -_real@4000000000000000 -_real@404e000000000000 -_real@4059000000000000 -??0ToolBoxLayoutData@vcl@@QAE@XZ -?GetCharacterBounds@ToolBox@@QBE?AVRectangle@@GJ@Z -?GetDisplayItemId@ToolBox@@QBEGJ@Z -?GetDisplayText@ToolBox@@UBE?AVString@@XZ -?GetIndexForPoint@ToolBox@@QBEJABVPoint@@AAG@Z -?GetItemImageAngle@ToolBox@@QBEJG@Z -?GetItemImageMirrorMode@ToolBox@@QBEEG@Z -?GetItemPosRect@ToolBox@@QBE?AVRectangle@@G@Z -?GetTextCount@ToolBox@@QBEJXZ -?GetTextStartEnd@ToolBox@@QBE?AVPair@@J@Z -?SetImageList@ToolBox@@QAEXABVImageList@@@Z -?SetItemImageAngle@ToolBox@@QAEXGJ@Z -?SetItemImageMirrorMode@ToolBox@@QAEXGE@Z -??0?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXDragGestureListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXTopWindow@awt@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0Window@@QAE@PAV0@_J@Z -??1?$Reference@VXTopWindow@awt@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??C?$Reference@VXAccessibleTopWindowMap@bridge@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QBAPAVXAccessibleTopWindowMap@bridge@accessibility@234drafts@@XZ -??_C@_0BM@HMNJLJL@com?4sun?4star?4awt?4XTopWindow?$AA@ -??_C@_0CO@EKFMFGJP@drafts?4com?4sun?4star?4accessibilit@ -?AbsoluteScreenToOutputPixel@Window@@QBE?AVPoint@@ABV2@@Z -?AddChildEventListener@Window@@QAEXABVLink@@@Z -?AddEventListener@Window@@QAEXABVLink@@@Z -?CallEventListeners@Window@@IAEXKPAX@Z -?CreateAccessible@Window@@UAE?AV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@XZ -?DrawSelectionBackground@Window@@QAEXABVRectangle@@GEEE@Z -?GetAccessible@Window@@QAE?AV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@E@Z -?GetAccessibleChildWindow@Window@@QAEPAV1@G@Z -?GetAccessibleChildWindowCount@Window@@QAEGXZ -?GetAccessibleDescription@Window@@QBE?AVString@@XZ -?GetAccessibleName@Window@@QBE?AVString@@XZ -?GetAccessibleParentWindow@Window@@QBEPAV1@XZ -?GetAccessibleRole@Window@@QBEGXZ -?GetClientWindowExtentsRelative@Window@@QAE?AVRectangle@@PAV1@@Z -?GetCurrentModButtons@Window@@QAEKXZ -?GetDisplayBackground@Window@@UBEABVWallpaper@@XZ -?GetDisplayText@Window@@UBE?AVString@@XZ -?GetPreferredKeyInputWindow@Window@@UAEPAV1@XZ -?GetUseSystemUIFonts@StyleSettings@@QBEEXZ -?GetWindowExtentsRelative@Window@@QAE?AVRectangle@@PAV1@@Z -?GrabFocusToDocument@Window@@QAEXXZ -?GrabsFocus@FloatingWindow@@QBEEXZ -?IsAccessibilityEventsSuppressed@Window@@QAEEE@Z -?IsCompoundControl@Window@@QBEEXZ -?IsInModalMode@Window@@QBEEXZ -?IsLocked@Window@@QBEEE@Z -?IsScrollable@Window@@QBEEXZ -?IsTopWindow@Window@@QBEEXZ -?OutputToAbsoluteScreenPixel@Window@@QBE?AVPoint@@ABV2@@Z -?RecordLayoutData@Window@@QAEXPAUControlLayoutData@vcl@@ABVRectangle@@@Z -?RemoveChildEventListener@Window@@QAEXABVLink@@@Z -?RemoveEventListener@Window@@QAEXABVLink@@@Z -?SetAccessible@Window@@QAEXV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@@Z -?SetAccessibleDescription@Window@@QAEXABVString@@@Z -?SetAccessibleName@Window@@QAEXABVString@@@Z -?SetAccessibleRole@Window@@QAEXG@Z -?SetExtendedStyle@Window@@QAEX_J@Z -?SetHighContrastMode@StyleSettings@@QAEXE@Z -?SetStyle@Window@@QAEX_J@Z -?SetUseImagesInMenus@StyleSettings@@QAEXE@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTopWindow@awt@star@sun@com@@@2345@@Z -?iquery@?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@CAPAVXAccessible@accessibility@345drafts@@PAVXInterface@2345@@Z -?iquery@?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXClipboard@clipboard@datatransfer@345@PAVXInterface@2345@@Z -?iquery@?$Reference@VXDragGestureListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXDragGestureListener@dnd@datatransfer@345@PAVXInterface@2345@@Z -?iquery@?$Reference@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXDragGestureRecognizer@dnd@datatransfer@345@PAVXInterface@2345@@Z -?iquery@?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXDragSource@dnd@datatransfer@345@PAVXInterface@2345@@Z -?iquery@?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXDropTarget@dnd@datatransfer@345@PAVXInterface@2345@@Z -?iquery@?$Reference@VXTopWindow@awt@star@sun@com@@@uno@star@sun@com@@CAPAVXTopWindow@awt@345@PAVXInterface@2345@@Z -?makeAny@uno@star@sun@com@@YA?AVAny@1234@ABJ@Z -?s_pType_com_sun_star_awt_XTopWindow@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTopWindow@awt@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_drafts_com_sun_star_accessibility_XAccessible@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?SnapShot@Window@@QBE?AVBitmap@@E@Z -??0CommandModKeyData@@QAE@G@Z -?SetKeyboardActivated@HelpEvent@@QAEXE@Z -?getHeight@Size@@QBEJXZ -?getWidth@Size@@QBEJXZ -??0WorkWindow@@QAE@PAVWindow@@ABVAny@uno@star@sun@com@@_J@Z -??0WorkWindow@@QAE@PAVWindow@@_J@Z -?Invalidate@OpenGL@@SAXE@Z -??0IntroWindow@@QAE@XZ -??1IntroWindow@@UAE@XZ -??_7IntroWindow@@6B@ -??_GIntroWindow@@UAEPAXI@Z -?DecrementLockCount@Window@@QAEXXZ -?IncrementLockCount@Window@@QAEXXZ -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@2345@@Z -??0?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@2345@@Z -?iquery@?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXDropTargetListener@dnd@datatransfer@345@PAVXInterface@2345@@Z -??0?$_STLP_alloc_proxy@PAPAVWindow@@PAV1@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAE@ABV?$allocator@PAVWindow@@@1@PAPAVWindow@@@Z -??0?$_Temporary_buffer@PAPAVWindow@@PAV1@@_STL@@QAE@PAPAVWindow@@0@Z -??0?$_Vector_base@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAE@ABV?$allocator@PAVWindow@@@1@@Z -??0?$allocator@PAVWindow@@@_STL@@QAE@ABV01@@Z -??0?$allocator@PAVWindow@@@_STL@@QAE@XZ -??0?$vector@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAE@ABV?$allocator@PAVWindow@@@1@@Z -??0TaskPaneList@@QAE@XZ -??1?$_STLP_alloc_proxy@PAPAVWindow@@PAV1@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAE@XZ -??1?$_Temporary_buffer@PAPAVWindow@@PAV1@@_STL@@QAE@XZ -??1?$_Vector_base@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@PAVWindow@@@_STL@@QAE@XZ -??1?$vector@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAE@XZ -??1TaskPaneList@@QAE@XZ -??RLTRSort@@QBE_NPBVWindow@@0@Z -??RLTRSortBackward@@QBE_NPBVWindow@@0@Z -?AddWindow@TaskPaneList@@QAEXPAVWindow@@@Z -?FindNextFloat@TaskPaneList@@AAEPAVWindow@@PAV2@E@Z -?FindNextPane@TaskPaneList@@AAEPAVWindow@@PAV2@E@Z -?FindNextSplitter@TaskPaneList@@AAEPAVWindow@@PAV2@E@Z -?GetFloatingWindow@DockingWindow@@QBEPAVFloatingWindow@@XZ -?HandleKeyEvent@TaskPaneList@@QAEEVKeyEvent@@@Z -?RemoveWindow@TaskPaneList@@QAEXPAVWindow@@@Z -?_Construct@_STL@@YAXPAPAVWindow@@ABQAV2@@Z -?_Destroy@_STL@@YAXPAPAVWindow@@0@Z -?_Destroy@_STL@@YAXPAPAVWindow@@@Z -?_IsOKToMemCpy@_STL@@YA?AU?$_OKToMemCpy@PAVWindow@@PAV1@@1@PAPAVWindow@@0@Z -?_M_allocate_buffer@?$_Temporary_buffer@PAPAVWindow@@PAV1@@_STL@@AAEXXZ -?_M_clear@?$vector@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@IAEXXZ -?_M_initialize_buffer@?$_Temporary_buffer@PAPAVWindow@@PAV1@@_STL@@AAEXABQAVWindow@@ABU__true_type@2@@Z -?_M_insert_overflow@?$vector@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@IAEXPAPAVWindow@@ABQAV3@ABU__true_type@2@I_N@Z -?_M_set@?$vector@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@IAEXPAPAVWindow@@00@Z -?_Ret@?$_BothPtrType@PAPAVWindow@@PAPAV1@@_STL@@SA?AU__true_type@2@XZ -?_Ret@?$_OKToMemCpy@PAVWindow@@PAV1@@_STL@@SA?AU__true_type@2@XZ -?__advance@_STL@@YAXAAPAPAVWindow@@HABUrandom_access_iterator_tag@1@@Z -?__chunk_insertion_sort@_STL@@YAXPAPAVWindow@@0HULTRSort@@@Z -?__chunk_insertion_sort@_STL@@YAXPAPAVWindow@@0HULTRSortBackward@@@Z -?__copy_aux@_STL@@YAPAPAVWindow@@PAPAV2@00ABU__true_type@1@@Z -?__copy_backward_aux@_STL@@YAPAPAVWindow@@PAPAV2@00ABU__true_type@1@@Z -?__copy_backward_ptrs@_STL@@YAPAPAVWindow@@PAPAV2@00ABU__true_type@1@@Z -?__copy_ptrs@_STL@@YAPAPAVWindow@@PAPAV2@00ABU__true_type@1@@Z -?__destroy@_STL@@YAXPAPAVWindow@@00@Z -?__destroy_aux@_STL@@YAXPAPAVWindow@@0ABU__true_type@1@@Z -?__distance@_STL@@YAHABQAPAVWindow@@0ABUrandom_access_iterator_tag@1@@Z -?__find@_STL@@YAPAPAVWindow@@PAPAV2@0ABQAV2@ABUrandom_access_iterator_tag@1@@Z -?__gcd@_STL@@YAHHH@Z -?__inplace_stable_sort@_STL@@YAXPAPAVWindow@@0ULTRSort@@@Z -?__inplace_stable_sort@_STL@@YAXPAPAVWindow@@0ULTRSortBackward@@@Z -?__insertion_sort@_STL@@YAXPAPAVWindow@@0ULTRSort@@@Z -?__insertion_sort@_STL@@YAXPAPAVWindow@@0ULTRSortBackward@@@Z -?__linear_insert@_STL@@YAXPAPAVWindow@@0PAV2@ULTRSort@@@Z -?__linear_insert@_STL@@YAXPAPAVWindow@@0PAV2@ULTRSortBackward@@@Z -?__lower_bound@_STL@@YAPAPAVWindow@@PAPAV2@0ABQAV2@ULTRSort@@PAH@Z -?__lower_bound@_STL@@YAPAPAVWindow@@PAPAV2@0ABQAV2@ULTRSortBackward@@PAH@Z -?__merge_adaptive@_STL@@YAXPAPAVWindow@@00HH0HULTRSort@@@Z -?__merge_adaptive@_STL@@YAXPAPAVWindow@@00HH0HULTRSortBackward@@@Z -?__merge_backward@_STL@@YAPAPAVWindow@@PAPAV2@0000ULTRSort@@@Z -?__merge_backward@_STL@@YAPAPAVWindow@@PAPAV2@0000ULTRSortBackward@@@Z -?__merge_sort_loop@_STL@@YAXPAPAVWindow@@00HULTRSort@@@Z -?__merge_sort_loop@_STL@@YAXPAPAVWindow@@00HULTRSortBackward@@@Z -?__merge_sort_with_buffer@_STL@@YAXPAPAVWindow@@00PAHULTRSort@@@Z -?__merge_sort_with_buffer@_STL@@YAXPAPAVWindow@@00PAHULTRSortBackward@@@Z -?__merge_without_buffer@_STL@@YAXPAPAVWindow@@00HHULTRSort@@@Z -?__merge_without_buffer@_STL@@YAXPAPAVWindow@@00HHULTRSortBackward@@@Z -?__rotate@_STL@@YAPAPAVWindow@@PAPAV2@00PAH0@Z -?__rotate@_STL@@YAPAPAVWindow@@PAPAV2@00PAHABUrandom_access_iterator_tag@1@@Z -?__rotate_adaptive@_STL@@YAPAPAVWindow@@PAPAV2@00HH0H@Z -?__stable_sort_adaptive@_STL@@YAXPAPAVWindow@@00HULTRSort@@@Z -?__stable_sort_adaptive@_STL@@YAXPAPAVWindow@@00HULTRSortBackward@@@Z -?__stable_sort_aux@_STL@@YAXPAPAVWindow@@00PAHULTRSort@@@Z -?__stable_sort_aux@_STL@@YAXPAPAVWindow@@00PAHULTRSortBackward@@@Z -?__unguarded_linear_insert@_STL@@YAXPAPAVWindow@@PAV2@ULTRSort@@@Z -?__unguarded_linear_insert@_STL@@YAXPAPAVWindow@@PAV2@ULTRSortBackward@@@Z -?__upper_bound@_STL@@YAPAPAVWindow@@PAPAV2@0ABQAV2@ULTRSort@@PAH@Z -?__upper_bound@_STL@@YAPAPAVWindow@@PAPAV2@0ABQAV2@ULTRSortBackward@@PAH@Z -?advance@_STL@@YAXAAPAPAVWindow@@H@Z -?allocate@?$allocator@PAVWindow@@@_STL@@QBEPAPAVWindow@@IPBX@Z -?begin@?$_Temporary_buffer@PAPAVWindow@@PAV1@@_STL@@QAEPAPAVWindow@@XZ -?begin@?$vector@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAEPAPAVWindow@@XZ -?copy@_STL@@YAPAPAVWindow@@PAPAV2@00@Z -?copy_backward@_STL@@YAPAPAVWindow@@PAPAV2@00@Z -?deallocate@?$allocator@PAVWindow@@@_STL@@QBEXPAPAVWindow@@I@Z -?distance@_STL@@YAHABQAPAVWindow@@0@Z -?distance_type@_STL@@YAPAHPBQAVWindow@@@Z -?end@?$vector@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAEPAPAVWindow@@XZ -?erase@?$vector@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAEPAPAVWindow@@PAPAV3@@Z -?fill_n@_STL@@YAPAPAVWindow@@PAPAV2@IABQAV2@@Z -?find@_STL@@YAPAPAVWindow@@PAPAV2@0ABQAV2@@Z -?iter_swap@_STL@@YAXPAPAVWindow@@0@Z -?iterator_category@_STL@@YA?AUrandom_access_iterator_tag@1@PBQAVWindow@@@Z -?lower_bound@_STL@@YAPAPAVWindow@@PAPAV2@0ABQAV2@ULTRSort@@@Z -?lower_bound@_STL@@YAPAPAVWindow@@PAPAV2@0ABQAV2@ULTRSortBackward@@@Z -?merge@_STL@@YAPAPAVWindow@@PAPAV2@0000ULTRSort@@@Z -?merge@_STL@@YAPAPAVWindow@@PAPAV2@0000ULTRSortBackward@@@Z -?min@_STL@@YAABHABH0@Z -?push_back@?$vector@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QAEXABQAVWindow@@@Z -?rotate@_STL@@YAPAPAVWindow@@PAPAV2@00@Z -?size@?$_Temporary_buffer@PAPAVWindow@@PAV1@@_STL@@QBEHXZ -?size@?$vector@PAVWindow@@V?$allocator@PAVWindow@@@_STL@@@_STL@@QBEIXZ -?stable_sort@_STL@@YAXPAPAVWindow@@0ULTRSort@@@Z -?stable_sort@_STL@@YAXPAPAVWindow@@0ULTRSortBackward@@@Z -?swap@_STL@@YAXAAPAVWindow@@0@Z -?swap_ranges@_STL@@YAPAPAVWindow@@PAPAV2@00@Z -?upper_bound@_STL@@YAPAPAVWindow@@PAPAV2@0ABQAV2@ULTRSort@@@Z -?upper_bound@_STL@@YAPAPAVWindow@@PAPAV2@0ABQAV2@ULTRSortBackward@@@Z -?value_type@_STL@@YAPAPAVWindow@@PBQAV2@@Z -??0Button@@QAE@PAVWindow@@_J@Z -??0CancelButton@@QAE@PAVWindow@@_J@Z -??0CheckBox@@QAE@PAVWindow@@_J@Z -??0HelpButton@@QAE@PAVWindow@@_J@Z -??0ImageButton@@QAE@PAVWindow@@_J@Z -??0ImageRadioButton@@QAE@PAVWindow@@_J@Z -??0OKButton@@QAE@PAVWindow@@_J@Z -??0PushButton@@QAE@PAVWindow@@_J@Z -??0RadioButton@@QAE@PAVWindow@@_J@Z -??0TriStateBox@@QAE@PAVWindow@@_J@Z -?EnableImageDisplay@CheckBox@@QAEXE@Z -?EnableImageDisplay@PushButton@@QAEXE@Z -?EnableImageDisplay@RadioButton@@QAEXE@Z -?EnableTextDisplay@CheckBox@@QAEXE@Z -?EnableTextDisplay@PushButton@@QAEXE@Z -?EnableTextDisplay@RadioButton@@QAEXE@Z -?FillLayoutData@CheckBox@@MBEXXZ -?FillLayoutData@PushButton@@MBEXXZ -?FillLayoutData@RadioButton@@MBEXXZ -?GetModeBitmap@PushButton@@QBE?AVBitmapEx@@W4BmpColorMode@@@Z -?GetModeImage@PushButton@@QBEABVImage@@W4BmpColorMode@@@Z -?GetModeImage@RadioButton@@QBEABVImage@@W4BmpColorMode@@@Z -?GetPrevStyle@Window@@QBE_JXZ -?IsImageDisplayEnabled@CheckBox@@QAEEXZ -?IsImageDisplayEnabled@PushButton@@QAEEXZ -?IsImageDisplayEnabled@RadioButton@@QAEEXZ -?IsTextDisplayEnabled@CheckBox@@QAEEXZ -?IsTextDisplayEnabled@PushButton@@QAEEXZ -?IsTextDisplayEnabled@RadioButton@@QAEEXZ -?SetModeBitmap@PushButton@@QAEEABVBitmapEx@@W4BmpColorMode@@@Z -?SetModeImage@PushButton@@QAEEABVImage@@W4BmpColorMode@@@Z -?SetModeImage@RadioButton@@QAEEABVImage@@W4BmpColorMode@@@Z -??0Control@@QAE@PAVWindow@@_J@Z -??1ControlLayoutData@vcl@@QAE@XZ -??A?$vector@JV?$allocator@J@_STL@@@_STL@@QBEABJI@Z -??A?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@QAEAAVRectangle@@I@Z -??A?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@QBEABVRectangle@@I@Z -??_GControlLayoutData@vcl@@QAEPAXI@Z -?A@Pair@@QAEAAJXZ -?AppendLayoutData@Control@@IBEXABV1@@Z -?B@Pair@@QAEAAJXZ -?FillLayoutData@Control@@MBEXXZ -?GetCharacterBounds@Control@@QBE?AVRectangle@@J@Z -?GetCharacterBounds@ControlLayoutData@vcl@@QBE?AVRectangle@@J@Z -?GetDisplayText@Control@@UBE?AVString@@XZ -?GetIndexForPoint@Control@@QBEJABVPoint@@@Z -?GetIndexForPoint@ControlLayoutData@vcl@@QBEJABVPoint@@@Z -?GetLineCount@Control@@QBEJXZ -?GetLineCount@ControlLayoutData@vcl@@QBEJXZ -?GetLineStartEnd@Control@@QBE?AVPair@@J@Z -?GetLineStartEnd@ControlLayoutData@vcl@@QBE?AVPair@@J@Z -?Resize@Control@@UAEXXZ -?SetLayoutDataParent@Control@@QBEXPBV1@@Z -?SetText@Control@@UAEXABVString@@@Z -?StateChanged@Control@@UAEXG@Z -?begin@?$vector@JV?$allocator@J@_STL@@@_STL@@QBEPBJXZ -?begin@?$vector@VRectangle@@V?$allocator@VRectangle@@@_STL@@@_STL@@QBEPBVRectangle@@XZ -??0ComboBox@@QAE@PAVWindow@@_J@Z -?EnableDDAutoWidth@ComboBox@@QAEXE@Z -?FillLayoutData@ComboBox@@MBEXXZ -?GetBoundingRectangle@ComboBox@@QBE?AVRectangle@@G@Z -?GetDisplayBackground@ComboBox@@UBEABVWallpaper@@XZ -?GetDisplayLineCount@ComboBox@@QBEGXZ -?GetDropDownPosSizePixel@ComboBox@@QBE?AVRectangle@@XZ -?GetSelectEntryCount@ComboBox@@QBEGXZ -?GetSelectEntryPos@ComboBox@@QBEGG@Z -?GetTopEntry@ComboBox@@QBEGXZ -?IsDDAutoWidthEnabled@ComboBox@@QBEEXZ -?IsEntryPosSelected@ComboBox@@QBEEG@Z -?IsPopupModeCanceled@FloatingWindow@@QBEEXZ -?SelectEntryPos@ComboBox@@QAEXGE@Z -?SetNoSelection@ComboBox@@QAEXXZ -?SetTopEntry@ComboBox@@QAEXG@Z -?ToggleDropDown@ComboBox@@QAEXXZ -??0?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXFlushableClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXTransferable@datatransfer@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0Edit@@QAE@PAVWindow@@_J@Z -??0EventObject@lang@star@sun@com@@QAE@XZ -??1?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??4?$Reference@VXTransferable@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??7Selection@@QBEEXZ -??C?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@QBAPAVXEventListener@lang@234@XZ -?FillLayoutData@Edit@@MBEXXZ -?GetPreferredKeyInputWindow@Edit@@UAEPAVWindow@@XZ -?IsMiddle@MouseEvent@@QBEEXZ -?iquery@?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@CAPAVXEventListener@lang@345@PAVXInterface@2345@@Z -?iquery@?$Reference@VXFlushableClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXFlushableClipboard@clipboard@datatransfer@345@PAVXInterface@2345@@Z -?set@?$Reference@VXTransferable@datatransfer@star@sun@com@@@uno@star@sun@com@@QAAEPAVXTransferable@datatransfer@345@@Z -??0CurrencyBox@@QAE@PAVWindow@@_J@Z -??0CurrencyField@@QAE@PAVWindow@@_J@Z -??0MetricBox@@QAE@PAVWindow@@_J@Z -??0MetricField@@QAE@PAVWindow@@_J@Z -??0NumericBox@@QAE@PAVWindow@@_J@Z -??0NumericField@@QAE@PAVWindow@@_J@Z -?Count@ResStringArray@@QBEGXZ -?GetString@ResStringArray@@QBEABVString@@G@Z -?GetValue@ResStringArray@@QBEJG@Z -??0DateBox@@QAE@PAVWindow@@_J@Z -??0DateField@@QAE@PAVWindow@@_J@Z -??0PatternBox@@QAE@PAVWindow@@_J@Z -??0PatternField@@QAE@PAVWindow@@_J@Z -??0TimeBox@@QAE@PAVWindow@@_J@Z -??0TimeField@@QAE@PAVWindow@@_J@Z -?GetExtDateFormat@DateFormatter@@QBE?AW4ExtDateFieldFormat@@E@Z -?SetExtDateFormat@DateFormatter@@QAEXW4ExtDateFieldFormat@@@Z -?isLetterNumericType@CharClass@@SAEJ@Z -?isLetterType@CharClass@@SAEJ@Z -?isNumericType@CharClass@@SAEJ@Z -??0FixedBorder@@QAE@PAVWindow@@_J@Z -??0FixedBitmap@@QAE@PAVWindow@@_J@Z -??0FixedImage@@QAE@PAVWindow@@_J@Z -??0FixedLine@@QAE@PAVWindow@@_J@Z -??0FixedText@@QAE@PAVWindow@@_J@Z -?FillLayoutData@FixedLine@@MBEXXZ -?FillLayoutData@FixedText@@MBEXXZ -?GetModeBitmap@FixedBitmap@@QBEABVBitmap@@W4BmpColorMode@@@Z -?GetModeImage@FixedImage@@QBEABVImage@@W4BmpColorMode@@@Z -?SetModeBitmap@FixedBitmap@@QAEEABVBitmap@@W4BmpColorMode@@@Z -?SetModeImage@FixedImage@@QAEEABVImage@@W4BmpColorMode@@@Z -??0GroupBox@@QAE@PAVWindow@@_J@Z -?FillLayoutData@GroupBox@@EBEXXZ -??0?$Reference@VXAccessible@accessibility@star@sun@com@drafts@@@uno@star@sun@com@@QAE@PAVXAccessible@accessibility@234drafts@@@Z -??0ImageControl@@QAE@PAVWindow@@_J@Z -?GetFocus@ImageControl@@UAEXXZ -?GetModeBitmap@ImageControl@@QBEABVBitmapEx@@W4BmpColorMode@@@Z -?IsScaleImage@ImageControl@@QBEEXZ -?LoseFocus@ImageControl@@UAEXXZ -?Paint@ImageControl@@UAEXABVRectangle@@@Z -?SetModeBitmap@ImageControl@@QAEEABVBitmapEx@@W4BmpColorMode@@@Z -?SetScaleImage@ImageControl@@QAEXE@Z -??0LongCurrencyBox@@QAE@PAVWindow@@_J@Z -??0LongCurrencyField@@QAE@PAVWindow@@_J@Z -??0ListBox@@QAE@PAVWindow@@_J@Z -??0MultiListBox@@QAE@PAVWindow@@_J@Z -?EnableDDAutoWidth@ListBox@@QAEXE@Z -?FillLayoutData@ListBox@@MBEXXZ -?GetBoundingRectangle@ListBox@@QBE?AVRectangle@@G@Z -?GetDisplayBackground@ListBox@@UBEABVWallpaper@@XZ -?GetDisplayLineCount@ListBox@@QBEGXZ -?GetDropDownPosSizePixel@ListBox@@QBE?AVRectangle@@XZ -?GetPreferredKeyInputWindow@ListBox@@UAEPAVWindow@@XZ -?IsDDAutoWidthEnabled@ListBox@@QBEEXZ -?ToggleDropDown@ListBox@@QAEXXZ -??0MoreButton@@QAE@PAVWindow@@_J@Z -??0MenuButton@@QAE@PAVWindow@@_J@Z -??0ScrollBar@@QAE@PAVWindow@@_J@Z -??0ScrollBarBox@@QAE@PAVWindow@@_J@Z -??0Slider@@QAE@PAVWindow@@_J@Z -??0SpinField@@QAE@PAVWindow@@_J@Z -?FillLayoutData@SpinField@@MBEXXZ -??0SpinButton@@QAE@PAVWindow@@_J@Z -??0TabControl@@QAE@PAVWindow@@_J@Z -??0?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@PAVXInterface@1234@W4UnoReference_Query@1234@@Z -??0?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_Const_traits@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@ABU?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_Nonconst_traits@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@1@@Z -??0?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_Nonconst_traits@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@ABU01@@Z -??0?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_Nonconst_traits@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@PAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@1@@Z -??0?$_STLP_alloc_proxy@PAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@U12@V?$allocator@U?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@1@PAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@1@@Z -??0?$allocator@U?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@ABV?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@1@@Z -??1?$_STLP_alloc_proxy@PAU?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@U12@V?$allocator@U?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@@_STL@@QAE@XZ -??1?$allocator@U?$_List_node@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE@XZ -??D?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_Const_traits@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QBEABV?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@XZ -??D?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_Nonconst_traits@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QBEAAV?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@XZ -??E?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_Const_traits@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAEAAU01@XZ -??E?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_Nonconst_traits@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAEAAU01@XZ -??_7DisplayConnection@vcl@@6BOWeakObject@cppu@@@ -?begin@?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE?AU?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_Nonconst_traits@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@XZ -?end@?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE?AU?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_Nonconst_traits@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@XZ -?erase@?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE?AU?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_Nonconst_traits@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@U32@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDisplayConnection@awt@star@sun@com@@@2345@@Z -?insert@?$list@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@V?$allocator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@_STL@@QAE?AU?$_List_iterator@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@U?$_Nonconst_traits@V?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@_STL@@@2@U32@ABV?$Reference@VXEventHandler@awt@star@sun@com@@@uno@star@sun@com@@@Z -?iquery@?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?SetMenuBarColor@StyleSettings@@QAEXABVColor@@@Z -?SetMenuBorderColor@StyleSettings@@QAEXABVColor@@@Z -?SetToolbarIconSize@StyleSettings@@QAEXK@Z -?SetUseFlatMenues@StyleSettings@@QAEXE@Z -?SetWorkspaceColor@StyleSettings@@QAEXABVColor@@@Z -InitMultipleMonitorStubs -IsPlatformNT -g_fMultiMonInitDone -g_fMultimonPlatformNT -g_pfnEnumDisplayDevices -g_pfnEnumDisplayMonitors -g_pfnGetMonitorInfo -g_pfnGetSystemMetrics -g_pfnMonitorFromPoint -g_pfnMonitorFromRect -g_pfnMonitorFromWindow -xEnumDisplayDevices@16 -xEnumDisplayMonitors@16 -xGetMonitorInfo@8 -xGetSystemMetrics@4 -xMonitorFromPoint@12 -xMonitorFromRect@8 -xMonitorFromWindow@8 -??0?$_STLP_alloc_proxy@PAEEV?$allocator@E@_STL@@@_STL@@QAE@ABV?$allocator@E@1@PAE@Z -??0?$_Vector_base@EV?$allocator@E@_STL@@@_STL@@QAE@IABV?$allocator@E@1@@Z -??0?$allocator@E@_STL@@QAE@ABV01@@Z -??0?$allocator@E@_STL@@QAE@XZ -??0?$vector@EV?$allocator@E@_STL@@@_STL@@QAE@I@Z -??0Directory@osl@@QAE@ABVOUString@rtl@@@Z -??0DirectoryItem@osl@@QAE@XZ -??0FileStatus@osl@@QAE@K@Z -??0OString@rtl@@QAE@XZ -??0OUString@rtl@@QAE@PAU_rtl_uString@@@Z -??0OUString@rtl@@QAE@PBG@Z -??0ScopedCharArray@@QAE@PAD@Z -??0ScopedTrueTypeFont@@QAE@XZ -??0TempFontItem@@QAE@XZ -??1?$_STLP_alloc_proxy@PAEEV?$allocator@E@_STL@@@_STL@@QAE@XZ -??1?$_Vector_base@EV?$allocator@E@_STL@@@_STL@@QAE@XZ -??1?$allocator@E@_STL@@QAE@XZ -??1?$vector@EV?$allocator@E@_STL@@@_STL@@QAE@XZ -??1Directory@osl@@QAE@XZ -??1DirectoryItem@osl@@QAE@XZ -??1FileStatus@osl@@QAE@XZ -??1ScopedCharArray@@QAE@XZ -??1ScopedFont@@QAE@XZ -??1ScopedTrueTypeFont@@QAE@XZ -??1TempFontItem@@QAE@XZ -??4OString@rtl@@QAEAAV01@ABV01@@Z -??A?$vector@EV?$allocator@E@_STL@@@_STL@@QAEAAEI@Z -??_GTempFontItem@@QAEPAXI@Z -?_Destroy@_STL@@YAXPAE0@Z -?_IsOKToMemCpy@_STL@@YA?AU?$_OKToMemCpy@UtagKERNINGPAIR@@U1@@1@PAUtagKERNINGPAIR@@0@Z -?_Is_POD@_STL@@YA?AU?$_IsPOD@E@1@PAE@Z -?_Ret@?$_BothPtrType@PAUtagKERNINGPAIR@@PAU1@@_STL@@SA?AU__true_type@2@XZ -?_Ret@?$_IsPOD@E@_STL@@SA?AU__true_type@2@XZ -?_Ret@?$_OKToMemCpy@UtagKERNINGPAIR@@U1@@_STL@@SA?AU__false_type@2@XZ -?__adjust_heap@_STL@@YAXPAUtagKERNINGPAIR@@HHU2@P6A_NABU2@2@Z@Z -?__copy_backward@_STL@@YAPAUtagKERNINGPAIR@@PAU2@00ABUrandom_access_iterator_tag@1@PAH@Z -?__copy_backward_aux@_STL@@YAPAUtagKERNINGPAIR@@PAU2@00ABU__true_type@1@@Z -?__copy_backward_ptrs@_STL@@YAPAUtagKERNINGPAIR@@PAU2@00ABU__false_type@1@@Z -?__destroy@_STL@@YAXPAE00@Z -?__destroy_aux@_STL@@YAXPAE0ABU__true_type@1@@Z -?__final_insertion_sort@_STL@@YAXPAUtagKERNINGPAIR@@0P6A_NABU2@1@Z@Z -?__insertion_sort@_STL@@YAXPAUtagKERNINGPAIR@@0P6A_NABU2@1@Z@Z -?__introsort_loop@_STL@@YAXPAUtagKERNINGPAIR@@00HP6A_NABU2@1@Z@Z -?__linear_insert@_STL@@YAXPAUtagKERNINGPAIR@@0U2@P6A_NABU2@2@Z@Z -?__make_heap@_STL@@YAXPAUtagKERNINGPAIR@@0P6A_NABU2@1@Z0PAH@Z -?__median@_STL@@YAABUtagKERNINGPAIR@@ABU2@00P6A_N00@Z@Z -?__partial_sort@_STL@@YAXPAUtagKERNINGPAIR@@000P6A_NABU2@1@Z@Z -?__pop_heap@_STL@@YAXPAUtagKERNINGPAIR@@00U2@P6A_NABU2@2@ZPAH@Z -?__pop_heap_aux@_STL@@YAXPAUtagKERNINGPAIR@@00P6A_NABU2@1@Z@Z -?__push_heap@_STL@@YAXPAUtagKERNINGPAIR@@HHU2@P6A_NABU2@2@Z@Z -?__unguarded_insertion_sort@_STL@@YAXPAUtagKERNINGPAIR@@0P6A_NABU2@1@Z@Z -?__unguarded_insertion_sort_aux@_STL@@YAXPAUtagKERNINGPAIR@@00P6A_NABU2@1@Z@Z -?__unguarded_linear_insert@_STL@@YAXPAUtagKERNINGPAIR@@U2@P6A_NABU2@2@Z@Z -?__unguarded_partition@_STL@@YAPAUtagKERNINGPAIR@@PAU2@0U2@P6A_NABU2@2@Z@Z -?__uninitialized_fill_n@_STL@@YAPAEPAEIABEABU__true_type@1@@Z -?allocate@?$allocator@E@_STL@@QBEPAEIPBX@Z -?begin@?$vector@EV?$allocator@E@_STL@@@_STL@@QAEPAEXZ -?close@Directory@osl@@QAE?AW4RC@FileBase@2@XZ -?copy@OUString@rtl@@QBE?AV12@JJ@Z -?copy_backward@_STL@@YAPAUtagKERNINGPAIR@@PAU2@00@Z -?deallocate@?$allocator@E@_STL@@QBEXPAEI@Z -?distance_type@_STL@@YAPAHPBUtagKERNINGPAIR@@@Z -?fill_n@_STL@@YAPAEPAEIABE@Z -?get@ScopedCharArray@@QBEPADXZ -?get@ScopedTrueTypeFont@@QBEPAU_TrueTypeFont@@XZ -?getFileStatus@DirectoryItem@osl@@QAE?AW4RC@FileBase@2@AAVFileStatus@2@@Z -?getFileURL@FileStatus@osl@@QBE?AVOUString@rtl@@XZ -?getNextItem@Directory@osl@@QAE?AW4RC@FileBase@2@AAVDirectoryItem@2@K@Z -?iter_swap@_STL@@YAXPAUtagKERNINGPAIR@@0@Z -?iterator_category@_STL@@YA?AUrandom_access_iterator_tag@1@PBUtagKERNINGPAIR@@@Z -?lastIndexOf@OUString@rtl@@QBEJG@Z -?make_heap@_STL@@YAXPAUtagKERNINGPAIR@@0P6A_NABU2@1@Z@Z -?open@Directory@osl@@QAE?AW4RC@FileBase@2@XZ -?open@ScopedTrueTypeFont@@QAEHPAXKK@Z -?partial_sort@_STL@@YAXPAUtagKERNINGPAIR@@00P6A_NABU2@1@Z@Z -?pop_heap@_STL@@YAXPAUtagKERNINGPAIR@@0P6A_NABU2@1@Z@Z -?sort@_STL@@YAXPAUtagKERNINGPAIR@@0P6A_NABU2@1@Z@Z -?sort_heap@_STL@@YAXPAUtagKERNINGPAIR@@0P6A_NABU2@1@Z@Z -?swap@_STL@@YAXAAUtagKERNINGPAIR@@0@Z -?uninitialized_fill_n@_STL@@YAPAEPAEIABE@Z -?value_type@_STL@@YAPAEPBE@Z -?value_type@_STL@@YAPAUtagKERNINGPAIR@@PBU2@@Z -threadFunc -??0?$_STLP_alloc_proxy@PAUPaperInfo@vcl@@U12@V?$allocator@UPaperInfo@vcl@@@_STL@@@_STL@@QAE@ABV?$allocator@UPaperInfo@vcl@@@1@PAUPaperInfo@vcl@@@Z -??0?$_Vector_base@UPaperInfo@vcl@@V?$allocator@UPaperInfo@vcl@@@_STL@@@_STL@@QAE@ABV?$allocator@UPaperInfo@vcl@@@1@@Z -??0?$allocator@UPaperInfo@vcl@@@_STL@@QAE@ABV01@@Z -??0?$allocator@UPaperInfo@vcl@@@_STL@@QAE@XZ -??0?$vector@UPaperInfo@vcl@@V?$allocator@UPaperInfo@vcl@@@_STL@@@_STL@@QAE@ABV?$allocator@UPaperInfo@vcl@@@1@@Z -??0PaperInfo@vcl@@QAE@ABU01@@Z -??1?$_STLP_alloc_proxy@PAUPaperInfo@vcl@@U12@V?$allocator@UPaperInfo@vcl@@@_STL@@@_STL@@QAE@XZ -??1?$_Vector_base@UPaperInfo@vcl@@V?$allocator@UPaperInfo@vcl@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@UPaperInfo@vcl@@@_STL@@QAE@XZ -??1?$vector@UPaperInfo@vcl@@V?$allocator@UPaperInfo@vcl@@@_STL@@@_STL@@QAE@XZ -??4PaperInfo@vcl@@QAEAAU01@ABU01@@Z -??_GPaperInfo@vcl@@QAEPAXI@Z -?Abs@@YAHH@Z -?_Construct@_STL@@YAXPAUPaperInfo@vcl@@ABU23@@Z -?_Destroy@_STL@@YAXPAUPaperInfo@vcl@@0@Z -?_Destroy@_STL@@YAXPAUPaperInfo@vcl@@@Z -?_M_clear@?$vector@UPaperInfo@vcl@@V?$allocator@UPaperInfo@vcl@@@_STL@@@_STL@@IAEXXZ -?_M_insert_overflow@?$vector@UPaperInfo@vcl@@V?$allocator@UPaperInfo@vcl@@@_STL@@@_STL@@IAEXPAUPaperInfo@vcl@@ABU34@ABU__false_type@2@I_N@Z -?_M_set@?$vector@UPaperInfo@vcl@@V?$allocator@UPaperInfo@vcl@@@_STL@@@_STL@@IAEXPAUPaperInfo@vcl@@00@Z -?__copy@_STL@@YAPAUPaperInfo@vcl@@PAU23@00ABUrandom_access_iterator_tag@1@PAH@Z -?__copy_ptrs@_STL@@YAPAUPaperInfo@vcl@@PAU23@00ABU__false_type@1@@Z -?__destroy@_STL@@YAXPAUPaperInfo@vcl@@00@Z -?__destroy_aux@_STL@@YAXPAUPaperInfo@vcl@@0ABU__false_type@1@@Z -?__uninitialized_copy@_STL@@YAPAUPaperInfo@vcl@@PAU23@00ABU__false_type@1@@Z -?__uninitialized_fill_n@_STL@@YAPAUPaperInfo@vcl@@PAU23@IABU23@ABU__false_type@1@@Z -?allocate@?$allocator@UPaperInfo@vcl@@@_STL@@QBEPAUPaperInfo@vcl@@IPBX@Z -?clear@?$vector@UPaperInfo@vcl@@V?$allocator@UPaperInfo@vcl@@@_STL@@@_STL@@QAEXXZ -?deallocate@?$allocator@UPaperInfo@vcl@@@_STL@@QBEXPAUPaperInfo@vcl@@I@Z -?distance_type@_STL@@YAPAHPBUPaperInfo@vcl@@@Z -?end@?$vector@UPaperInfo@vcl@@V?$allocator@UPaperInfo@vcl@@@_STL@@@_STL@@QAEPAUPaperInfo@vcl@@XZ -?erase@?$vector@UPaperInfo@vcl@@V?$allocator@UPaperInfo@vcl@@@_STL@@@_STL@@QAEPAUPaperInfo@vcl@@PAU34@0@Z -?iterator_category@_STL@@YA?AUrandom_access_iterator_tag@1@PBUPaperInfo@vcl@@@Z -?push_back@?$vector@UPaperInfo@vcl@@V?$allocator@UPaperInfo@vcl@@@_STL@@@_STL@@QAEXABUPaperInfo@vcl@@@Z -?value_type@_STL@@YAPAUPaperInfo@vcl@@PBU23@@Z -??0SimpleWinLayout@@QAE@PAUHDC__@@EPBUtagKERNINGPAIR@@H@Z -??0UniscribeLayout@@QAE@PAUHDC__@@@Z -??0WinLayout@@QAE@PAUHDC__@@@Z -??1SimpleWinLayout@@UAE@XZ -??1UniscribeLayout@@MAE@XZ -??1WinLayout@@UAE@XZ -??_7SimpleWinLayout@@6B@ -??_7UniscribeLayout@@6B@ -??_7WinLayout@@6B@ -??_GSimpleWinLayout@@UAEPAXI@Z -??_GUniscribeLayout@@MAEPAXI@Z -??_GWinLayout@@UAEPAXI@Z -?DropGlyph@SimpleWinLayout@@UAEXH@Z -?DropGlyph@UniscribeLayout@@UAEXH@Z -?FillDXArray@SimpleWinLayout@@UBEJPAJ@Z -?FillDXArray@UniscribeLayout@@UBEJPAJ@Z -?GetCaretPositions@SimpleWinLayout@@UBEXHPAJ@Z -?GetCaretPositions@UniscribeLayout@@UBEXHPAJ@Z -?GetItemSubrange@UniscribeLayout@@IBE_NABUVisualItem@@AAH1@Z -?GetNextGlyphs@SimpleWinLayout@@UBEHHPAJAAVPoint@@AAH0PAH@Z -?GetNextGlyphs@UniscribeLayout@@UBEHHPAJAAVPoint@@AAH0PAH@Z -?GetTextBreak@SimpleWinLayout@@UBEHJJH@Z -?GetTextBreak@UniscribeLayout@@UBEHJJH@Z -?InitFont@WinLayout@@UBEXXZ -?IsEmpty@VisualItem@@QBE_NXZ -?Justify@SimpleWinLayout@@IAEXJ@Z -?Justify@UniscribeLayout@@IAEXJ@Z -?MoveGlyph@SimpleWinLayout@@UAEXHJ@Z -?MoveGlyph@UniscribeLayout@@UAEXHJ@Z -?Simplify@SimpleWinLayout@@UAEX_N@Z -?Simplify@UniscribeLayout@@UAEX_N@Z -?__adjust_heap@_STL@@YAXPAHHHHU?$less@H@1@@Z -?__advance@_STL@@YAXAAPBUtagKERNINGPAIR@@HABUrandom_access_iterator_tag@1@@Z -?__copy_backward@_STL@@YAPAHPAH00ABUrandom_access_iterator_tag@1@0@Z -?__copy_backward_aux@_STL@@YAPAHPAH00ABU__true_type@1@@Z -?__copy_backward_ptrs@_STL@@YAPAHPAH00ABU__false_type@1@@Z -?__distance@_STL@@YAHABQBUtagKERNINGPAIR@@0ABUrandom_access_iterator_tag@1@@Z -?__final_insertion_sort@_STL@@YAXPAH0U?$less@H@1@@Z -?__insertion_sort@_STL@@YAXPAH0U?$less@H@1@@Z -?__introsort_loop@_STL@@YAXPAH00HU?$less@H@1@@Z -?__less@_STL@@YA?AU?$less@H@1@PAH@Z -?__linear_insert@_STL@@YAXPAH0HU?$less@H@1@@Z -?__lower_bound@_STL@@YAPBUtagKERNINGPAIR@@PBU2@0ABU2@P6A_N11@ZPAH@Z -?__make_heap@_STL@@YAXPAH0U?$less@H@1@00@Z -?__median@_STL@@YAABHABH00U?$less@H@1@@Z -?__partial_sort@_STL@@YAXPAH000U?$less@H@1@@Z -?__pop_heap@_STL@@YAXPAH00HU?$less@H@1@0@Z -?__pop_heap_aux@_STL@@YAXPAH00U?$less@H@1@@Z -?__push_heap@_STL@@YAXPAHHHHU?$less@H@1@@Z -?__unguarded_insertion_sort@_STL@@YAXPAH0U?$less@H@1@@Z -?__unguarded_insertion_sort_aux@_STL@@YAXPAH00U?$less@H@1@@Z -?__unguarded_linear_insert@_STL@@YAXPAHHU?$less@H@1@@Z -?__unguarded_partition@_STL@@YAPAHPAH0HU?$less@H@1@@Z -?advance@_STL@@YAXAAPBUtagKERNINGPAIR@@H@Z -?copy_backward@_STL@@YAPAHPAH00@Z -?distance@_STL@@YAHABQBUtagKERNINGPAIR@@0@Z -?iter_swap@_STL@@YAXPAH0@Z -?lower_bound@_STL@@YAPBUtagKERNINGPAIR@@PBU2@0ABU2@P6A_N11@Z@Z -?make_heap@_STL@@YAXPAH0U?$less@H@1@@Z -?partial_sort@_STL@@YAXPAH00U?$less@H@1@@Z -?pop_heap@_STL@@YAXPAH0U?$less@H@1@@Z -?sort@_STL@@YAXPAH0@Z -?sort_heap@_STL@@YAXPAH0U?$less@H@1@@Z -?swap@_STL@@YAXAAH0@Z -?GetItemPos@ToolBox@@QBEGABVPoint@@@Z -??1CancelButton@@UAE@XZ -??1FixedText@@UAE@XZ -??1GroupBox@@UAE@XZ -??1HelpButton@@UAE@XZ -??1OKButton@@UAE@XZ -??8Date@@QBEEABV0@@Z -??8Time@@QBEEABV0@@Z -??O@YAEABVString@@0@Z -?GetSavedValue@CheckBox@@QBE?AW4TriState@@XZ -?SaveValue@CheckBox@@QAEXXZ -?SetPosSizePixel@ListBox@@QAEXABVPoint@@ABVSize@@@Z -??_C@_0BP@EGLBGAIM@?$CD?$CD?$CD?5illegal?5index?5of?5sequence?$CB?$AA@ -??_C@_0DF@HCMHNEML@o?3?2SRX644?2wntmsci8?2inc?2com?1sun?1s@ -??_C@_0BL@JGPCIGAJ@No?5color?5buffer?5available?$CB?$AA@ -??_C@_0BP@GLKOFDG@Palette?5index?5is?5out?5of?5range?$CB?$AA@ -??_C@_0BP@IICOAGKJ@Pixel?5represents?5color?5values?$CB?$AA@ -??_C@_0CI@HDFFEOGI@Pixel?5represents?5index?5into?5colo@ -??_C@_0BF@JINJEMP@Access?5is?5not?5valid?$CB?$AA@ -??_C@_0BH@HKMJOPEK@Bitmap?5has?5no?5palette?$CB?$AA@ -??_C@_0BL@JMALBHPM@x?9coordinate?5out?5of?5range?$CB?$AA@ -??_C@_0BL@PCIHAMLN@y?9coordinate?5out?5of?5range?$CB?$AA@ -??_C@_0DA@EKKKGKOJ@Drawing?5with?5index?5into?5palette?5@ -??YByteString@@QAEAAV0@ABV0@@Z -??YByteString@@QAEAAV0@D@Z -?SetBitmapEx@Animation@@QAEXABVBitmapEx@@@Z -??_C@_0CJ@FMKCFDPH@O?3?2SRX644?2src?2vcl?2source?2gdi?2imp@ -?getLength@?$Sequence@J@uno@star@sun@com@@QBAJXZ -?__distance@_STL@@YAHABU?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Const_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@1@0ABUinput_iterator_tag@1@@Z -?distance@_STL@@YAHABU?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Const_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@1@0@Z -?size@?$list@U?$pair@PBVMetaAction@@H@_STL@@V?$allocator@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QBEIXZ -??YByteString@@QAEAAV0@PBD@Z -?GetMessText@MessBox@@QBEABVString@@XZ -??_C@_0BD@FGFOJMDE@object?5is?5disposed?$AA@ -??_C@_0CJ@BKMIJDED@do?5not?5add?5listeners?5in?5the?5disp@ -??_C@_0DH@HLDPLLAC@o?3?2SRX644?2wntmsci8?2inc?2cppuhelpe@ -?getLength@?$Sequence@UCalendarItem@i18n@star@sun@com@@@uno@star@sun@com@@QBAJXZ -??_C@_0CH@POINNAOP@o?3?2SRX644?2wntmsci8?2inc?2rtl?1ustri@ -??1?$Reference@VXAccessible@accessibility@star@sun@com@@@uno@star@sun@com@@QAE@XZ -?InitAccessBridge@@YAEEAAE@Z -??0?$Reference@VXExtendedToolkit@awt@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??1?$Reference@VXExtendedToolkit@awt@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??_C@_0CC@NAPDODH@com?4sun?4star?4awt?4XExtendedToolki@ -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXExtendedToolkit@awt@star@sun@com@@@2345@@Z -?iquery@?$Reference@VXExtendedToolkit@awt@star@sun@com@@@uno@star@sun@com@@CAPAVXExtendedToolkit@awt@345@PAVXInterface@2345@@Z -?makeAny@uno@star@sun@com@@YA?AVAny@1234@ABV?$Reference@VXExtendedToolkit@awt@star@sun@com@@@1234@@Z -?s_pType_com_sun_star_awt_XExtendedToolkit@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXExtendedToolkit@awt@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??C?$Reference@VXExtendedToolkit@awt@star@sun@com@@@uno@star@sun@com@@QBAPAVXExtendedToolkit@awt@234@XZ -?NotifyAccessibleStateEventGlobally@unohelper@vcl@@YAXABUAccessibleEventObject@accessibility@star@sun@com@@@Z -?Blend@Bitmap@@QAEEABVAlphaMask@@ABVColor@@@Z -?SetDigitLanguage@OutputDevice@@QAEXG@Z -??C?$_List_iterator@U?$pair@PBVMetaAction@@H@_STL@@U?$_Const_traits@U?$pair@PBVMetaAction@@H@_STL@@@2@@_STL@@QBEPBU?$pair@PBVMetaAction@@H@1@XZ -?GetBestPaletteColor@BitmapReadAccess@@QBEABVBitmapColor@@ABV2@@Z -??0?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE@ABU?$less@G@1@ABV?$allocator@U?$pair@$$CBGC@_STL@@@1@@Z -??0?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE@ABV01@@Z -??0?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE@ABV01@@Z -??0?$_Rb_tree_base@U?$pair@$$CBGC@_STL@@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBGC@_STL@@@1@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBGC@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE@ABU01@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBGC@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE@PAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@1@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBGJ@_STL@@U?$_Const_traits@U?$pair@$$CBGJ@_STL@@@2@@_STL@@QAE@PAU?$_Rb_tree_node@U?$pair@$$CBGJ@_STL@@@1@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBGJ@_STL@@U?$_Const_traits@U?$pair@$$CBGJ@_STL@@@2@@_STL@@QAE@XZ -??0?$_Rb_tree_iterator@U?$pair@$$CBGVOString@rtl@@@_STL@@U?$_Const_traits@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@@_STL@@QAE@PAU?$_Rb_tree_node@U?$pair@$$CBGVOString@rtl@@@_STL@@@1@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBGVOString@rtl@@@_STL@@U?$_Const_traits@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@@_STL@@QAE@XZ -??0?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@_STL@@U12@V?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@_STL@@@1@PAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@1@@Z -??0?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBGC@_STL@@@1@@Z -??0?$allocator@U?$pair@$$CBGC@_STL@@@_STL@@QAE@ABV?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@_STL@@@1@@Z -??0?$allocator@U?$pair@$$CBGC@_STL@@@_STL@@QAE@XZ -??0?$allocator@U?$pair@$$CBJJ@_STL@@@_STL@@QAE@ABV?$allocator@U?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@_STL@@@1@@Z -??0?$map@GCU?$less@G@_STL@@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE@ABV01@@Z -??0?$map@GCU?$less@G@_STL@@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE@XZ -??0?$map@JJU?$less@J@_STL@@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QAE@ABV01@@Z -??0?$pair@$$CBGC@_STL@@QAE@ABGABC@Z -??0?$pair@$$CBGC@_STL@@QAE@ABU01@@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGC@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGC@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBGC@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGC@_STL@@@2@@1@AB_N@Z -??0OString@rtl@@QAE@ABV01@@Z -??1?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE@XZ -??1?$_Rb_tree_base@U?$pair@$$CBGC@_STL@@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@_STL@@U12@V?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@$$CBGC@_STL@@@_STL@@QAE@XZ -??1?$map@GCU?$less@G@_STL@@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE@XZ -??4?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAEAAV01@ABV01@@Z -??4?$map@GCU?$less@G@_STL@@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAEAAV01@ABV01@@Z -??A?$map@GCU?$less@G@_STL@@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAEAACABG@Z -??C?$_Rb_tree_iterator@U?$pair@$$CBGJ@_STL@@U?$_Const_traits@U?$pair@$$CBGJ@_STL@@@2@@_STL@@QBEPBU?$pair@$$CBGJ@1@XZ -??C?$_Rb_tree_iterator@U?$pair@$$CBGVOString@rtl@@@_STL@@U?$_Const_traits@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@@_STL@@QBEPBU?$pair@$$CBGVOString@rtl@@@1@XZ -??D?$_Rb_tree_iterator@U?$pair@$$CBGC@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGC@_STL@@@2@@_STL@@QBEAAU?$pair@$$CBGC@1@XZ -??D?$_Rb_tree_iterator@U?$pair@$$CBGJ@_STL@@U?$_Const_traits@U?$pair@$$CBGJ@_STL@@@2@@_STL@@QBEABU?$pair@$$CBGJ@1@XZ -??D?$_Rb_tree_iterator@U?$pair@$$CBGVOString@rtl@@@_STL@@U?$_Const_traits@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@@_STL@@QBEABU?$pair@$$CBGVOString@rtl@@@1@XZ -??E?$_Rb_tree_iterator@U?$pair@$$CBGC@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAEAAU01@XZ -??E?$_Rb_tree_iterator@U?$pair@$$CBGJ@_STL@@U?$_Const_traits@U?$pair@$$CBGJ@_STL@@@2@@_STL@@QAEAAU01@XZ -??F?$_Rb_tree_iterator@U?$pair@$$CBGC@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAEAAU01@XZ -??R?$_Select1st@U?$pair@$$CBGC@_STL@@@_STL@@QBEABGABU?$pair@$$CBGC@1@@Z -??R?$_Select1st@U?$pair@$$CBGJ@_STL@@@_STL@@QBEABGABU?$pair@$$CBGJ@1@@Z -??R?$_Select1st@U?$pair@$$CBGVOString@rtl@@@_STL@@@_STL@@QBEABGABU?$pair@$$CBGVOString@rtl@@@1@@Z -?_Construct@_STL@@YAXPAU?$pair@$$CBGC@1@ABU21@@Z -?_Destroy@_STL@@YAXPAU?$pair@$$CBGC@1@@Z -?_M_clone_node@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@PAU32@@Z -?_M_clone_node@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@PAU32@@Z -?_M_copy@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@AAEPAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@PAU32@0@Z -?_M_copy@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@AAEPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@PAU32@0@Z -?_M_create_node@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@ABU?$pair@$$CBGC@2@@Z -?_M_empty_initialize@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@AAEXXZ -?_M_erase@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@@Z -?_M_find@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@ABG@Z -?_M_find@?$_Rb_tree@GU?$pair@$$CBGJ@_STL@@U?$_Select1st@U?$pair@$$CBGJ@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBGJ@_STL@@@2@ABG@Z -?_M_find@?$_Rb_tree@GU?$pair@$$CBGVOString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@ABG@Z -?_M_insert@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGC@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGC@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBGC@2@0@Z -?_M_leftmost@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@XZ -?_M_leftmost@?$_Rb_tree@GU?$pair@$$CBGJ@_STL@@U?$_Select1st@U?$pair@$$CBGJ@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBGJ@_STL@@@2@XZ -?_M_lower_bound@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@ABG@Z -?_M_rightmost@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@XZ -?_M_root@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@XZ -?_M_root@?$_Rb_tree@GU?$pair@$$CBGJ@_STL@@U?$_Select1st@U?$pair@$$CBGJ@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBGJ@_STL@@@2@XZ -?_M_root@?$_Rb_tree@GU?$pair@$$CBGVOString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@XZ -?_S_color@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@KAAA_NPAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@@Z -?_S_key@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@KAABGPAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@@Z -?_S_key@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@KAABGPAU_Rb_tree_node_base@2@@Z -?_S_key@?$_Rb_tree@GU?$pair@$$CBGJ@_STL@@U?$_Select1st@U?$pair@$$CBGJ@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@KAABGPAU?$_Rb_tree_node@U?$pair@$$CBGJ@_STL@@@2@@Z -?_S_key@?$_Rb_tree@GU?$pair@$$CBGVOString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@@_STL@@KAABGPAU?$_Rb_tree_node@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@@Z -?_S_left@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@PAU32@@Z -?_S_left@?$_Rb_tree@GU?$pair@$$CBGJ@_STL@@U?$_Select1st@U?$pair@$$CBGJ@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBGJ@_STL@@@2@PAU32@@Z -?_S_left@?$_Rb_tree@GU?$pair@$$CBGVOString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@PAU32@@Z -?_S_maximum@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@KAPAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@PAU32@@Z -?_S_maximum@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@KAPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@PAU32@@Z -?_S_minimum@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@KAPAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@PAU32@@Z -?_S_minimum@?$_Rb_tree@JU?$pair@$$CBJJ@_STL@@U?$_Select1st@U?$pair@$$CBJJ@_STL@@@2@U?$less@J@2@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@KAPAU?$_Rb_tree_node@U?$pair@$$CBJJ@_STL@@@2@PAU32@@Z -?_S_parent@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@PAU32@@Z -?_S_right@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@PAU32@@Z -?_S_right@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@PAU_Rb_tree_node_base@2@@Z -?_S_right@?$_Rb_tree@GU?$pair@$$CBGJ@_STL@@U?$_Select1st@U?$pair@$$CBGJ@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBGJ@_STL@@@2@PAU32@@Z -?_S_right@?$_Rb_tree@GU?$pair@$$CBGVOString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@PAU32@@Z -?_S_value@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@KAAAU?$pair@$$CBGC@2@PAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@@Z -?_S_value@?$_Rb_tree@GU?$pair@$$CBGJ@_STL@@U?$_Select1st@U?$pair@$$CBGJ@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@KAAAU?$pair@$$CBGJ@2@PAU?$_Rb_tree_node@U?$pair@$$CBGJ@_STL@@@2@@Z -?_S_value@?$_Rb_tree@GU?$pair@$$CBGVOString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@@_STL@@KAAAU?$pair@$$CBGVOString@rtl@@@2@PAU?$_Rb_tree_node@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@@Z -?__default_constructed@_STL@@YACPAC@Z -?__default_constructed_aux@_STL@@YACPACABU__true_type@1@@Z -?allocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@_STL@@@_STL@@QBEPAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@IPBX@Z -?begin@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGC@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGC@_STL@@@2@@2@XZ -?begin@?$_Rb_tree@GU?$pair@$$CBGJ@_STL@@U?$_Select1st@U?$pair@$$CBGJ@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBGJ@_STL@@U?$_Const_traits@U?$pair@$$CBGJ@_STL@@@2@@2@XZ -?begin@?$map@GJU?$less@G@_STL@@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBGJ@_STL@@U?$_Const_traits@U?$pair@$$CBGJ@_STL@@@2@@2@XZ -?clear@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAEXXZ -?deallocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@U?$pair@$$CBGC@_STL@@@2@I@Z -?end@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGC@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGC@_STL@@@2@@2@XZ -?end@?$_Rb_tree@GU?$pair@$$CBGJ@_STL@@U?$_Select1st@U?$pair@$$CBGJ@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBGJ@_STL@@U?$_Const_traits@U?$pair@$$CBGJ@_STL@@@2@@2@XZ -?end@?$_Rb_tree@GU?$pair@$$CBGVOString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVOString@rtl@@@_STL@@U?$_Const_traits@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@@2@XZ -?end@?$map@GCU?$less@G@_STL@@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGC@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGC@_STL@@@2@@2@XZ -?end@?$map@GJU?$less@G@_STL@@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBGJ@_STL@@U?$_Const_traits@U?$pair@$$CBGJ@_STL@@@2@@2@XZ -?end@?$map@GVOString@rtl@@U?$less@G@_STL@@V?$allocator@U?$pair@$$CBGVOString@rtl@@@_STL@@@4@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVOString@rtl@@@_STL@@U?$_Const_traits@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@@2@XZ -?find@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGC@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGC@_STL@@@2@@2@ABG@Z -?find@?$_Rb_tree@GU?$pair@$$CBGJ@_STL@@U?$_Select1st@U?$pair@$$CBGJ@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBGJ@_STL@@U?$_Const_traits@U?$pair@$$CBGJ@_STL@@@2@@2@ABG@Z -?find@?$_Rb_tree@GU?$pair@$$CBGVOString@rtl@@@_STL@@U?$_Select1st@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVOString@rtl@@@_STL@@U?$_Const_traits@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@@2@ABG@Z -?find@?$map@GCU?$less@G@_STL@@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGC@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGC@_STL@@@2@@2@ABG@Z -?find@?$map@GJU?$less@G@_STL@@V?$allocator@U?$pair@$$CBGJ@_STL@@@2@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBGJ@_STL@@U?$_Const_traits@U?$pair@$$CBGJ@_STL@@@2@@2@ABG@Z -?find@?$map@GVOString@rtl@@U?$less@G@_STL@@V?$allocator@U?$pair@$$CBGVOString@rtl@@@_STL@@@4@@_STL@@QBE?AU?$_Rb_tree_iterator@U?$pair@$$CBGVOString@rtl@@@_STL@@U?$_Const_traits@U?$pair@$$CBGVOString@rtl@@@_STL@@@2@@2@ABG@Z -?get_allocator@?$_Rb_tree_base@U?$pair@$$CBGC@_STL@@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QBE?AV?$allocator@U?$pair@$$CBGC@_STL@@@2@XZ -?get_allocator@?$_Rb_tree_base@U?$pair@$$CBJJ@_STL@@V?$allocator@U?$pair@$$CBJJ@_STL@@@2@@_STL@@QBE?AV?$allocator@U?$pair@$$CBJJ@_STL@@@2@XZ -?insert@?$map@GCU?$less@G@_STL@@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGC@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGC@_STL@@@2@@2@U32@ABU?$pair@$$CBGC@2@@Z -?insert_unique@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGC@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGC@_STL@@@2@@2@U32@ABU?$pair@$$CBGC@2@@Z -?insert_unique@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBGC@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGC@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBGC@2@@Z -?key_comp@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QBE?AU?$less@G@2@XZ -?key_comp@?$map@GCU?$less@G@_STL@@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QBE?AU?$less@G@2@XZ -?lower_bound@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGC@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGC@_STL@@@2@@2@ABG@Z -?lower_bound@?$map@GCU?$less@G@_STL@@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBGC@_STL@@U?$_Nonconst_traits@U?$pair@$$CBGC@_STL@@@2@@2@ABG@Z -?size@?$_Rb_tree@GU?$pair@$$CBGC@_STL@@U?$_Select1st@U?$pair@$$CBGC@_STL@@@2@U?$less@G@2@V?$allocator@U?$pair@$$CBGC@_STL@@@2@@_STL@@QBEIXZ -?GetLocalizedChar@@YAGGG@Z -?empty@?$vector@HV?$allocator@H@_STL@@@_STL@@QBE_NXZ -??0?$Reference@VXAccessible@accessibility@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXAccessible@accessibility@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXAccessibleContext@accessibility@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??4?$Reference@VXAccessible@accessibility@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??C?$Reference@VXAccessible@accessibility@star@sun@com@@@uno@star@sun@com@@QBAPAVXAccessible@accessibility@234@XZ -??C?$Reference@VXAccessibleContext@accessibility@star@sun@com@@@uno@star@sun@com@@QBAPAVXAccessibleContext@accessibility@234@XZ -?GetAccessible@Menu@@QAE?AV?$Reference@VXAccessible@accessibility@star@sun@com@@@uno@star@sun@com@@XZ -?GetAccessibleDescription@Menu@@QBE?AVString@@G@Z -?GetAccessibleName@Menu@@QBE?AVString@@G@Z -?SetAccessible@Menu@@QAEXABV?$Reference@VXAccessible@accessibility@star@sun@com@@@uno@star@sun@com@@@Z -?SetAccessibleDescription@Menu@@QAEXGABVString@@@Z -?SetAccessibleName@Menu@@QAEXGABVString@@@Z -?set@?$Reference@VXAccessible@accessibility@star@sun@com@@@uno@star@sun@com@@QAAEPAVXAccessible@accessibility@345@@Z -?CreateAccessible@TabPage@@UAE?AV?$Reference@VXAccessible@accessibility@star@sun@com@@@uno@star@sun@com@@XZ -??0?$Reference@VXAccessible@accessibility@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??_C@_0CH@NKELPHFO@com?4sun?4star?4accessibility?4XAcce@ -?CreateAccessible@Window@@UAE?AV?$Reference@VXAccessible@accessibility@star@sun@com@@@uno@star@sun@com@@XZ -?GetAccessible@Window@@QAE?AV?$Reference@VXAccessible@accessibility@star@sun@com@@@uno@star@sun@com@@E@Z -?GetInputLanguage@Window@@QBEGXZ -?HasActiveChildFrame@Window@@QAEEXZ -?SetAccessible@Window@@QAEXV?$Reference@VXAccessible@accessibility@star@sun@com@@@uno@star@sun@com@@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessible@accessibility@star@sun@com@@@2345@@Z -?iquery@?$Reference@VXAccessible@accessibility@star@sun@com@@@uno@star@sun@com@@CAPAVXAccessible@accessibility@345@PAVXInterface@2345@@Z -?s_pType_com_sun_star_accessibility_XAccessible@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessible@accessibility@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?SetPluginParent@WorkWindow@@QAEEPAUSystemParentData@@@Z -?DrawRadioButtonState@RadioButton@@IAEXXZ -?GetListPosSizePixel@ComboBox@@QBE?AVRectangle@@XZ -??0?$Reference@VXAccessible@accessibility@star@sun@com@@@uno@star@sun@com@@QAE@PAVXAccessible@accessibility@234@@Z -??0File@osl@@QAE@ABVOUString@rtl@@@Z -??1File@osl@@QAE@XZ -?OStringToOUString@rtl@@YA?AVOUString@1@ABVOString@1@GK@Z -?close@File@osl@@QAE?AW4RC@FileBase@2@XZ -?open@File@osl@@QAE?AW4RC@FileBase@2@K@Z -?read@File@osl@@QAE?AW4RC@FileBase@2@PAX_KAA_K@Z -??0?$Reference@VXFilePicker@dialogs@ui@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXFilterManager@dialogs@ui@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXInitialization@lang@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??1?$Reference@VXFilePicker@dialogs@ui@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXFilterManager@dialogs@ui@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXInitialization@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??3@YAXPAX0@Z -??A?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QAAAAVOUString@rtl@@J@Z -??C?$Reference@VXFilePicker@dialogs@ui@star@sun@com@@@uno@star@sun@com@@QBAPAVXFilePicker@dialogs@ui@234@XZ -??C?$Reference@VXInitialization@lang@star@sun@com@@@uno@star@sun@com@@QBAPAVXInitialization@lang@234@XZ -??_3uno@star@sun@com@@YAXAAVAny@0123@ABF@Z -??_C@_0CC@FKPJKCAC@com?4sun?4star?4lang?4XInitializatio@ -??_C@_0CE@OOECPOPJ@com?4sun?4star?4ui?4dialogs?4XFilePic@ -??_C@_0CH@JHCAMFFL@com?4sun?4star?4ui?4dialogs?4XFilterM@ -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFilePicker@dialogs@ui@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFilterManager@dialogs@ui@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInitialization@lang@star@sun@com@@@2345@@Z -?iquery@?$Reference@VXFilePicker@dialogs@ui@star@sun@com@@@uno@star@sun@com@@CAPAVXFilePicker@dialogs@ui@345@PAVXInterface@2345@@Z -?iquery@?$Reference@VXFilterManager@dialogs@ui@star@sun@com@@@uno@star@sun@com@@CAPAVXFilterManager@dialogs@ui@345@PAVXInterface@2345@@Z -?iquery@?$Reference@VXInitialization@lang@star@sun@com@@@uno@star@sun@com@@CAPAVXInitialization@lang@345@PAVXInterface@2345@@Z -?s_pType_com_sun_star_lang_XInitialization@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInitialization@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_ui_dialogs_XFilePicker@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFilePicker@dialogs@ui@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_ui_dialogs_XFilterManager@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFilterManager@dialogs@ui@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -??0UniscribeLayout@@QAE@PAUHDC__@@PAVUniscribeLayoutCache@@@Z -??0UniscribeLayoutCache@@QAE@XZ -??_7UniscribeLayoutCache@@6B@ -??_GUniscribeLayoutCache@@UAEPAXI@Z -?flush@UniscribeLayoutCache@@UAEXXZ -??_C@_0DF@NBFBPMIH@o?3?2SRX645?2wntmsci8?2inc?2com?1sun?1s@ -??_C@_0CJ@GKFAMDAE@O?3?2SRX645?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DH@BCEGLAGH@o?3?2SRX645?2wntmsci8?2inc?2cppuhelpe@ -??_C@_0CH@PAGKDIDO@o?3?2SRX645?2wntmsci8?2inc?2rtl?1ustri@ -??4?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??_C@_0DK@PGAMEKMG@y?3?2SRX645?2wntmsci8?2inc?4m2s2?2com?1@ -??_C@_0CP@JJBHNKEB@M?3?2workspaces?2uaa04?2vcl?2source?2g@ -_real@408f400000000000 -_real@4096800000000000 -??0?$hash_map@HHU?$hash@H@_STL@@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAE@XZ -??A?$hash_map@HHU?$hash@H@_STL@@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAEAAHABH@Z -?FillLayoutData@TabControl@@MBEXXZ -?GetCharacterBounds@TabControl@@QBE?AVRectangle@@GJ@Z -?GetIndexForPoint@TabControl@@QBEJABVPoint@@AAG@Z -?GetTabBounds@TabControl@@QBE?AVRectangle@@G@Z -?GetTabPageBounds@TabControl@@QBE?AVRectangle@@G@Z -?_M_find@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@ABEPAU?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@2@ABH@Z -?_M_initialize_buckets@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@AAEXI@Z -?_M_insert@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAEAAU?$pair@$$CBHH@2@ABU32@@Z -?_M_new_node@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@AAEPAU?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@2@ABU?$pair@$$CBHH@2@@Z -?_M_next_size@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@ABEII@Z -?clear@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAEXXZ -?resize@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAEXI@Z -?MyOutputDebugString@@YAXPBD@Z -??_C@_0CM@IONDMLHL@y?3?2SRX645?2wntmsci8?2inc?4m2s2?2rtl?1@ -??_C@_0EA@EPFJOGJP@y?3?2uaa04?2SRX645?2wntmsci8?2inc?4m2s@ -?GetTextOutline@OutputDevice@@QBEEAAVPolyPolygon@@ABVString@@GGGEKPBJ@Z -?GetTextOutlines@OutputDevice@@QBEEAAV?$vector@VPolyPolygon@@V?$allocator@VPolyPolygon@@@_STL@@@_STL@@ABVString@@GGGEKPBJ@Z -?GetDigitLanguage@OutputDevice@@QBEGXZ -?GetDocInfo@PDFWriter@vcl@@QBEABUPDFDocInfo@2@XZ -?SetDocInfo@PDFWriter@vcl@@QAEXABUPDFDocInfo@2@@Z -??0PDFDocInfo@vcl@@QAE@XZ -??1PDFDocInfo@vcl@@QAE@XZ -??K@YA?AVFraction@@ABV0@0@Z -??A?$vector@HV?$allocator@H@_STL@@@_STL@@QBEABHI@Z -?IsControlChar@@YA_NG@Z -?begin@?$vector@HV?$allocator@H@_STL@@@_STL@@QBEPBHXZ -??0?$_Hashtable_iterator@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAE@PAU?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@1@PAV?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@1@@Z -??0?$_Ht_iterator@U?$pair@$$CBHH@_STL@@U?$_Const_traits@U?$pair@$$CBHH@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAE@ABU?$_Ht_iterator@U?$pair@$$CBHH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHH@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@1@@Z -??0?$_Ht_iterator@U?$pair@$$CBHH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHH@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAE@PBU?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@1@PBV?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@1@@Z -??0?$_STLP_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@_STL@@V?$allocator@U?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@_STL@@@1@I@Z -??0?$allocator@PAX@_STL@@QAE@ABV?$allocator@U?$pair@$$CBHH@_STL@@@1@@Z -??0?$allocator@U?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBHH@_STL@@@1@@Z -??0?$allocator@U?$pair@$$CBHH@_STL@@@_STL@@QAE@XZ -??0?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAE@IABU?$hash@H@1@ABU?$equal_to@H@1@ABV?$allocator@U?$pair@$$CBHH@_STL@@@1@@Z -??0?$pair@$$CBHH@_STL@@QAE@ABH0@Z -??0?$pair@$$CBHH@_STL@@QAE@ABU01@@Z -??1?$_STLP_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@_STL@@V?$allocator@U?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$allocator@U?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@$$CBHH@_STL@@@_STL@@QAE@XZ -??1?$hash_map@HHU?$hash@H@_STL@@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAE@XZ -??1?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAE@XZ -??8_STL@@YA_NABU?$_Ht_iterator@U?$pair@$$CBHH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHH@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@0@0@Z -??9_STL@@YA_NABU?$_Hashtable_iterator@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@0@0@Z -??C?$_Ht_iterator@U?$pair@$$CBHH@_STL@@U?$_Const_traits@U?$pair@$$CBHH@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QBEPBU?$pair@$$CBHH@1@XZ -??D?$_Ht_iterator@U?$pair@$$CBHH@_STL@@U?$_Const_traits@U?$pair@$$CBHH@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QBEABU?$pair@$$CBHH@1@XZ -??D?$_Ht_iterator@U?$pair@$$CBHH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHH@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QBEAAU?$pair@$$CBHH@1@XZ -??R?$_Select1st@U?$pair@$$CBHH@_STL@@@_STL@@QBEABHABU?$pair@$$CBHH@1@@Z -??R?$equal_to@H@_STL@@QBE_NABH0@Z -??R?$hash@H@_STL@@QBEIH@Z -?_Construct@_STL@@YAXPAU?$pair@$$CBHH@1@ABU21@@Z -?_Destroy@_STL@@YAXPAU?$pair@$$CBHH@1@@Z -?_M_bkt_num@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@ABEIABU?$pair@$$CBHH@2@@Z -?_M_bkt_num@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@ABEIABU?$pair@$$CBHH@2@I@Z -?_M_bkt_num_key@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@ABEIABH@Z -?_M_bkt_num_key@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@ABEIABHI@Z -?_M_delete_node@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@AAEXPAU?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@2@@Z -?allocate@?$allocator@U?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@_STL@@@_STL@@QBEPAU?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@2@IPBX@Z -?clear@?$hash_map@HHU?$hash@H@_STL@@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAEXXZ -?deallocate@?$allocator@U?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@_STL@@@_STL@@QBEXPAU?$_Hashtable_node@U?$pair@$$CBHH@_STL@@@2@I@Z -?end@?$hash_map@HHU?$hash@H@_STL@@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBHH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHH@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@2@XZ -?end@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBHH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHH@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@2@XZ -?find@?$hash_map@HHU?$hash@H@_STL@@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBHH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHH@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@2@ABH@Z -?find@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBHH@_STL@@U?$_Nonconst_traits@U?$pair@$$CBHH@_STL@@@2@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@2@ABH@Z -?size@?$hash_map@HHU?$hash@H@_STL@@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QBEIXZ -?size@?$hashtable@U?$pair@$$CBHH@_STL@@HU?$hash@H@2@U?$_Select1st@U?$pair@$$CBHH@_STL@@@2@U?$equal_to@H@2@V?$allocator@U?$pair@$$CBHH@_STL@@@2@@_STL@@QBEIXZ -??0UniscribeLayout@@QAE@PAUHDC__@@AAPAX@Z -??1UniscribeLayoutCache@@UAE@XZ -?flush@UniscribeLayoutCache@@UAEXH@Z -?__lower_bound@_STL@@YAPBUFontNameAttr@FontSubstConfigItem@vcl@@PBU234@0ABU234@UStrictStringSort@@PAH@Z -?lower_bound@_STL@@YAPBUFontNameAttr@FontSubstConfigItem@vcl@@PBU234@0ABU234@UStrictStringSort@@@Z -?IsPrefMapModeValid@GfxLink@@QAE_NXZ -?IsPrefSizeValid@GfxLink@@QAE_NXZ -?GetTitleType@FloatingWindow@@QBEGXZ -??0?$_Hashtable_iterator@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QAE@PAU?$_Hashtable_node@H@1@PAV?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@1@@Z -??0?$_Ht_iterator@HU?$_Const_traits@H@_STL@@HU?$hash@H@2@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QAE@PBU?$_Hashtable_node@H@1@PBV?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@1@@Z -??0?$_Ht_iterator@HU?$_Nonconst_traits@H@_STL@@HU?$hash@H@2@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QAE@ABU01@@Z -??0?$_Ht_iterator@HU?$_Nonconst_traits@H@_STL@@HU?$hash@H@2@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QAE@PBU?$_Hashtable_node@H@1@PBV?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@1@@Z -??0?$_STLP_alloc_proxy@IU?$_Hashtable_node@H@_STL@@V?$allocator@U?$_Hashtable_node@H@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_Hashtable_node@H@_STL@@@1@I@Z -??0?$_Vector_base@DV?$allocator@D@_STL@@@_STL@@QAE@IABV?$allocator@D@1@@Z -??0?$allocator@PAX@_STL@@QAE@ABV?$allocator@H@1@@Z -??0?$allocator@U?$_Hashtable_node@H@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_Hashtable_node@H@_STL@@@_STL@@QAE@ABV?$allocator@H@1@@Z -??0?$hash_set@HU?$hash@H@_STL@@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QAE@XZ -??0?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QAE@IABU?$hash@H@1@ABU?$equal_to@H@1@ABV?$allocator@H@1@@Z -??0?$pair@U?$_Ht_iterator@HU?$_Const_traits@H@_STL@@HU?$hash@H@2@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@_N@_STL@@QAE@ABU?$_Ht_iterator@HU?$_Const_traits@H@_STL@@HU?$hash@H@2@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@1@AB_N@Z -??0?$pair@U?$_Ht_iterator@HU?$_Nonconst_traits@H@_STL@@HU?$hash@H@2@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@_N@_STL@@QAE@ABU?$_Ht_iterator@HU?$_Nonconst_traits@H@_STL@@HU?$hash@H@2@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@1@AB_N@Z -??0?$vector@DV?$allocator@D@_STL@@@_STL@@QAE@I@Z -??0GNGVertLayoutCache@@QAE@XZ -??0SimpleWinLayout@@QAE@PAUHDC__@@EPBUtagKERNINGPAIR@@HAAV?$hash_set@HU?$hash@H@_STL@@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@@Z -??1?$_STLP_alloc_proxy@IU?$_Hashtable_node@H@_STL@@V?$allocator@U?$_Hashtable_node@H@_STL@@@2@@_STL@@QAE@XZ -??1?$_Vector_base@DV?$allocator@D@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$_Hashtable_node@H@_STL@@@_STL@@QAE@XZ -??1?$hash_set@HU?$hash@H@_STL@@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QAE@XZ -??1?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QAE@XZ -??1?$vector@DV?$allocator@D@_STL@@@_STL@@QAE@XZ -??1GNGVertLayoutCache@@UAE@XZ -??8_STL@@YA_NABU?$_Ht_iterator@HU?$_Const_traits@H@_STL@@HU?$hash@H@2@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@0@0@Z -??9_STL@@YA_NABU?$_Hashtable_iterator@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@0@0@Z -??A?$vector@DV?$allocator@D@_STL@@@_STL@@QAEAADI@Z -??R?$_Identity@H@_STL@@QBEABHABH@Z -??_7GNGVertLayoutCache@@6B@ -??_GGNGVertLayoutCache@@UAEPAXI@Z -?HasGSUBstitutions@SimpleWinLayout@@ABE_NXZ -?IsGSUBstituted@SimpleWinLayout@@ABE_NG@Z -?_Destroy@_STL@@YAXPAD0@Z -?_Is_POD@_STL@@YA?AU?$_IsPOD@D@1@PAD@Z -?_M_bkt_num@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@ABEIABH@Z -?_M_bkt_num@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@ABEIABHI@Z -?_M_bkt_num_key@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@ABEIABH@Z -?_M_bkt_num_key@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@ABEIABHI@Z -?_M_delete_node@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@AAEXPAU?$_Hashtable_node@H@2@@Z -?_M_find@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@ABEPAU?$_Hashtable_node@H@2@ABG@Z -?_M_find@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@ABEPAU?$_Hashtable_node@H@2@ABH@Z -?_M_initialize_buckets@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@AAEXI@Z -?_M_new_node@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@AAEPAU?$_Hashtable_node@H@2@ABH@Z -?_M_next_size@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@ABEII@Z -?_Ret@?$_IsPOD@D@_STL@@SA?AU__true_type@2@XZ -?__uninitialized_fill_n@_STL@@YAPADPADIABDABU__true_type@1@@Z -?allocate@?$allocator@U?$_Hashtable_node@H@_STL@@@_STL@@QBEPAU?$_Hashtable_node@H@2@IPBX@Z -?begin@?$vector@DV?$allocator@D@_STL@@@_STL@@QAEPADXZ -?clear@?$hash_set@HU?$hash@H@_STL@@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QAEXXZ -?clear@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QAEXXZ -?deallocate@?$allocator@U?$_Hashtable_node@H@_STL@@@_STL@@QBEXPAU?$_Hashtable_node@H@2@I@Z -?empty@?$hash_set@HU?$hash@H@_STL@@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QBE_NXZ -?empty@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QBE_NXZ -?end@?$hash_set@HU?$hash@H@_STL@@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QBE?AU?$_Ht_iterator@HU?$_Const_traits@H@_STL@@HU?$hash@H@2@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@2@XZ -?end@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QBE?AU?$_Ht_iterator@HU?$_Const_traits@H@_STL@@HU?$hash@H@2@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@2@XZ -?erase@?$hash_set@HU?$hash@H@_STL@@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QAEIABH@Z -?erase@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QAEIABH@Z -?fill_n@_STL@@YAPADPADIABD@Z -?find@?$hash_set@HU?$hash@H@_STL@@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QBE?AU?$_Ht_iterator@HU?$_Const_traits@H@_STL@@HU?$hash@H@2@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@2@ABG@Z -?find@?$hash_set@HU?$hash@H@_STL@@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QBE?AU?$_Ht_iterator@HU?$_Const_traits@H@_STL@@HU?$hash@H@2@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@2@ABH@Z -?find@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QBE?AU?$_Ht_iterator@HU?$_Const_traits@H@_STL@@HU?$hash@H@2@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@2@ABG@Z -?find@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QBE?AU?$_Ht_iterator@HU?$_Const_traits@H@_STL@@HU?$hash@H@2@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@2@ABH@Z -?flush@GNGVertLayoutCache@@UAEXH@Z -?insert@?$hash_set@HU?$hash@H@_STL@@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QAE?AU?$pair@U?$_Ht_iterator@HU?$_Const_traits@H@_STL@@HU?$hash@H@2@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@_N@2@ABH@Z -?insert_unique@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QAE?AU?$pair@U?$_Ht_iterator@HU?$_Nonconst_traits@H@_STL@@HU?$hash@H@2@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@_N@2@ABH@Z -?insert_unique_noresize@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QAE?AU?$pair@U?$_Ht_iterator@HU?$_Nonconst_traits@H@_STL@@HU?$hash@H@2@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@_N@2@ABH@Z -?resize@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QAEXI@Z -?size@?$hashtable@HHU?$hash@H@_STL@@U?$_Identity@H@2@U?$equal_to@H@2@V?$allocator@H@2@@_STL@@QBEIXZ -?uninitialized_fill_n@_STL@@YAPADPADIABD@Z -?value_type@_STL@@YAPADPBD@Z -??0WinTextLayoutCache@@QAE@XZ -??1WinTextLayoutCache@@UAE@XZ -??_7WinTextLayoutCache@@6B@ -??_GWinTextLayoutCache@@UAEPAXI@Z -?flush@WinTextLayoutCache@@UAEXH@Z -??_C@_0DF@OACFFDKI@o?3?2SRC680?2wntmsci8?2inc?2com?1sun?1s@ -??_C@_0CJ@BPADHDJO@O?3?2SRC680?2src?2vcl?2source?2gdi?2imp@ -??_C@_0DH@EGDDAHAH@o?3?2SRC680?2wntmsci8?2inc?2cppuhelpe@ -??_C@_0CH@OANPDINN@o?3?2SRC680?2wntmsci8?2inc?2rtl?1ustri@ -??_C@_0CG@OKFAEJOB@o?3?2SRC680?2wntmsci8?2inc?2rtl?1strbu@ -?GetLayoutMode@OutputDevice@@QBEKXZ -??0Matrix3@vcl@@QAE@XZ -??1Matrix3@vcl@@QAE@XZ -?rotate@Matrix3@vcl@@QAEXN@Z -?scale@Matrix3@vcl@@QAEXNN@Z -?set@Matrix3@vcl@@AAEXPAN@Z -?skew@Matrix3@vcl@@QAEXNN@Z -?transform@Matrix3@vcl@@QAE?AVPoint@@ABV3@@Z -?translate@Matrix3@vcl@@QAEXNN@Z -??0bad_alloc@std@@QAE@ABV01@@Z -??0bad_alloc@std@@QAE@PBD@Z -??1bad_alloc@std@@UAE@XZ -??_7bad_alloc@std@@6B@ -??_C@_0P@GHFPNOJB@bad?5allocation?$AA@ -??_Gbad_alloc@std@@UAEPAXI@Z -??_R0?AVbad_alloc@std@@@8 -??_R0?AVexception@@@8 -?getArray@?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@QAAPAVAny@2345@XZ -_TI2?AVbad_alloc@std@@ -??0MetaTextLanguageAction@@QAE@ABV0@@Z -??0MetaTextLanguageAction@@QAE@G@Z -??0MetaTextLanguageAction@@QAE@XZ -??1MetaTextLanguageAction@@UAE@XZ -??_7MetaTextLanguageAction@@6B@ -??_GMetaTextLanguageAction@@UAEPAXI@Z -?Clone@MetaTextLanguageAction@@UAEPAVMetaAction@@XZ -?Compare@MetaTextLanguageAction@@EBEEABVMetaAction@@@Z -?Execute@MetaTextLanguageAction@@UAEXPAVOutputDevice@@@Z -?GetAlphaBitCount@OutputDevice@@QBEGXZ -?HasAlpha@OutputDevice@@QAEEXZ -?GetBitmapEx@OutputDevice@@QBE?AVBitmapEx@@ABVPoint@@ABVSize@@@Z -?getArray@?$Sequence@J@uno@star@sun@com@@QAAPAJXZ -??0VirtualDevice@@QAE@ABVOutputDevice@@GG@Z -?SetReferenceDevice@VirtualDevice@@QAEXW4RefDevMode@1@@Z -?GetOutOffXPixel@OutputDevice@@QBEJXZ -?GetOutputWidthPixel@OutputDevice@@QBEJXZ -?_M_allocate_and_copy@?$vector@HV?$allocator@H@_STL@@@_STL@@IAEPAHIPAH0@Z -?reserve@?$vector@HV?$allocator@H@_STL@@@_STL@@QAEXI@Z -??0Menu@@QAE@E@Z -?GetSystemMenuData@Menu@@QBEEPAUSystemMenuData@@@Z -?HandleMenuActivateEvent@MenuBar@@QBEEPAVMenu@@@Z -?HandleMenuCommandEvent@MenuBar@@QBEEPAVMenu@@G@Z -?HandleMenuDeActivateEvent@MenuBar@@QBEEPAVMenu@@@Z -?HandleMenuHighlightEvent@MenuBar@@QBEEPAVMenu@@G@Z -?IsDisplayable@MenuBar@@QBEEXZ -?SetDisplayable@MenuBar@@QAEXE@Z -?ExpandPaintClipRegion@Window@@QAEXABVRegion@@@Z -?SetBorderStyle@ComboBox@@QAEXG@Z -?getArray@?$Sequence@UCalendarItem@i18n@star@sun@com@@@uno@star@sun@com@@QAAPAUCalendarItem@i18n@345@XZ -_real@3fd3333333333333 -??0WinImeStatus@@QAE@XZ -??_7WinImeStatus@@6B@ -??_GWinImeStatus@@UAEPAXI@Z -?canToggle@WinImeStatus@@UAE_NXZ -?toggle@WinImeStatus@@UAEXXZ -?Draw@ScrollBar@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?GetFocus@ScrollBar@@UAEXXZ -?LoseFocus@ScrollBar@@UAEXXZ -?getHeight@Rectangle@@QBEJXZ -?Draw@SpinButton@@UAEXPAVOutputDevice@@ABVPoint@@ABVSize@@K@Z -?GetFocus@SpinButton@@UAEXXZ -?GetRangeMax@SpinButton@@QBEJXZ -?GetRangeMin@SpinButton@@QBEJXZ -?LoseFocus@SpinButton@@UAEXXZ -?SetRange@SpinButton@@QAEXABVRange@@@Z -?SetRangeMax@SpinButton@@QAEXJ@Z -?SetRangeMin@SpinButton@@QAEXJ@Z -?SetValue@SpinButton@@QAEXJ@Z -?EraseAllMnemonicChars@MnemonicGenerator@@SA?AVString@@ABV2@@Z -??1Help@@UAE@XZ -??_GHelp@@UAEPAXI@Z -??1AutoTimer@@UAE@XZ -??1OConfigurationTreeRoot@utl@@UAE@XZ -??1Sound@@UAE@XZ -??_GSound@@UAEPAXI@Z -??1Application@@UAE@XZ -??_GApplication@@UAEPAXI@Z -??1Timer@@UAE@XZ -??_GAutoTimer@@UAEPAXI@Z -??_GTimer@@UAEPAXI@Z -??_C@_0BH@GJJOJLAF@?4?4?2?4?4?2inc?2salbtype?4hxx?$AA@ -??_C@_0BF@DDLEPBKO@?4?4?2?4?4?2inc?2bmpacc?4hxx?$AA@ -??1GDIMetaFile@@UAE@XZ -??_GGDIMetaFile@@UAEPAXI@Z -_real@3f5c987103b761f5 -_real@bfe45f306dc9c883 -??1Accelerator@@UAE@XZ -??_GAccelerator@@UAEPAXI@Z -??0Module@osl@@QAE@XZ -??1Module@osl@@QAE@XZ -??1VclAbstractDialog@@UAE@XZ -??_7VclAbstractDialog@@6B@ -??_GVclAbstractDialog@@UAEPAXI@Z -?Create@VclAbstractDialogFactory@@SAPAV1@XZ -?getSymbol@Module@osl@@QAAPAXABVOUString@rtl@@@Z -?is@Module@osl@@QBAEXZ -?load@Module@osl@@QAAEABVOUString@rtl@@J@Z -?unload@Module@osl@@QAAXXZ -?Close@WorkWindow@@UAEEXZ -??0MutexHelper@unohelper@vcl@@QAE@XZ -??1MutexHelper@unohelper@vcl@@QAE@XZ -?GetMutex@MutexHelper@unohelper@vcl@@QAEAAVMutex@osl@@XZ -??1CurrencyFormatter@@UAE@XZ -??1FormatterBase@@UAE@XZ -??1MetricFormatter@@UAE@XZ -??1NumericFormatter@@UAE@XZ -??_ECurrencyBox@@WCKI@AEPAXI@Z -??_ECurrencyField@@WCPA@AEPAXI@Z -??_EMetricBox@@WCKI@AEPAXI@Z -??_EMetricField@@WCPA@AEPAXI@Z -??_ENumericBox@@WCKI@AEPAXI@Z -??_ENumericField@@WCPA@AEPAXI@Z -??_GCurrencyFormatter@@UAEPAXI@Z -??_GFormatterBase@@UAEPAXI@Z -??_GMetricFormatter@@UAEPAXI@Z -??_GNumericFormatter@@UAEPAXI@Z -??1DateFormatter@@UAE@XZ -??1PatternFormatter@@UAE@XZ -??1TimeFormatter@@UAE@XZ -??_EDateBox@@WCKI@AEPAXI@Z -??_EDateField@@WCPA@AEPAXI@Z -??_EPatternBox@@WCKI@AEPAXI@Z -??_EPatternField@@WCPA@AEPAXI@Z -??_ETimeBox@@WCKI@AEPAXI@Z -??_ETimeField@@WCPA@AEPAXI@Z -??_GDateFormatter@@UAEPAXI@Z -??_GPatternFormatter@@UAEPAXI@Z -??_GTimeFormatter@@UAEPAXI@Z -??1LongCurrencyFormatter@@UAE@XZ -??_ELongCurrencyBox@@WCKI@AEPAXI@Z -??_ELongCurrencyField@@WCPA@AEPAXI@Z -??_GLongCurrencyFormatter@@UAEPAXI@Z -??1SolarThreadExecutor@vcl@@UAE@XZ -??1ThreadExecutor@vcl@@UAE@XZ -??_GSolarThreadExecutor@vcl@@UAEPAXI@Z -??_GThreadExecutor@vcl@@UAEPAXI@Z -?Max@@YAHHH@Z -??_C@_0BK@EELCNHGL@?4?4?2?4?4?2?4?4?2inc?2salbtype?4hxx?$AA@ -?iquery@?$Reference@VXComponent@lang@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXExtendedToolkit@awt@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?NormalizedScreenToOutputPixel@Window@@QBE?AVPoint@@ABV2@@Z -?OutputToNormalizedScreenPixel@Window@@QBE?AVPoint@@ABV2@@Z -?iquery@?$Reference@VXAccessible@accessibility@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXDragGestureListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXTopWindow@awt@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXFlushableClipboard@clipboard@datatransfer@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?EnableMirroring@ListBox@@QAEXXZ -?iquery@?$Reference@VXFilePicker@dialogs@ui@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXFilterManager@dialogs@ui@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXInitialization@lang@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?Paint@TabPage@@UAEXABVRectangle@@@Z -_real@3f5b4e81b4e81b4f -_real@4020000000000000 -?PreNotify@CheckBox@@UAEJAAVNotifyEvent@@@Z -?PreNotify@PushButton@@UAEJAAVNotifyEvent@@@Z -?PreNotify@RadioButton@@UAEJAAVNotifyEvent@@@Z -?PreNotify@ScrollBar@@UAEJAAVNotifyEvent@@@Z -?PreNotify@SpinField@@UAEJAAVNotifyEvent@@@Z -?PreNotify@TabControl@@UAEJAAVNotifyEvent@@@Z -?Append@String@@QAEAAV1@D@Z -?GetHelpCommand@Menu@@QBEABVString@@G@Z -?IsMenuBar@Menu@@QBEEXZ -?SetHelpCommand@Menu@@QAEXGABVString@@@Z -??YString@@QAEAAV0@D@Z -?Assign@String@@QAEAAV1@D@Z -??0?$Reference@VXSessionManagerClient@frame@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXSessionManagerClient@frame@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAE@PAVXMultiServiceFactory@lang@234@@Z -??0?$Reference@VXRegistryKey@registry@star@sun@com@@@uno@star@sun@com@@QAE@PAVXRegistryKey@registry@234@@Z -??0?$Reference@VXSessionManagerListener@frame@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$_List_base@UListener@VCLSession@@V?$allocator@UListener@VCLSession@@@_STL@@@_STL@@QAE@ABV?$allocator@UListener@VCLSession@@@1@@Z -??0?$_List_iterator@UListener@VCLSession@@U?$_Const_traits@UListener@VCLSession@@@_STL@@@_STL@@QAE@ABU?$_List_iterator@UListener@VCLSession@@U?$_Nonconst_traits@UListener@VCLSession@@@_STL@@@1@@Z -??0?$_List_iterator@UListener@VCLSession@@U?$_Const_traits@UListener@VCLSession@@@_STL@@@_STL@@QAE@PAU?$_List_node@UListener@VCLSession@@@1@@Z -??0?$_List_iterator@UListener@VCLSession@@U?$_Nonconst_traits@UListener@VCLSession@@@_STL@@@_STL@@QAE@ABU01@@Z -??0?$_List_iterator@UListener@VCLSession@@U?$_Nonconst_traits@UListener@VCLSession@@@_STL@@@_STL@@QAE@PAU?$_List_node@UListener@VCLSession@@@1@@Z -??0?$_STLP_alloc_proxy@PAU?$_List_node@UListener@VCLSession@@@_STL@@U12@V?$allocator@U?$_List_node@UListener@VCLSession@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_List_node@UListener@VCLSession@@@_STL@@@1@PAU?$_List_node@UListener@VCLSession@@@1@@Z -??0?$allocator@U?$_List_node@UListener@VCLSession@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_List_node@UListener@VCLSession@@@_STL@@@_STL@@QAE@ABV?$allocator@UListener@VCLSession@@@1@@Z -??0?$allocator@UListener@VCLSession@@@_STL@@QAE@XZ -??0?$list@UListener@VCLSession@@V?$allocator@UListener@VCLSession@@@_STL@@@_STL@@QAE@ABV?$allocator@UListener@VCLSession@@@1@@Z -??0Listener@VCLSession@@QAE@ABU01@@Z -??0Listener@VCLSession@@QAE@ABV?$Reference@VXSessionManagerListener@frame@star@sun@com@@@uno@star@sun@com@@@Z -??0OUStringBuffer@rtl@@QAE@VOUString@1@@Z -??0VCLSession@@QAE@XZ -??0XSessionManagerClient@frame@star@sun@com@@QAE@XZ -??1?$Reference@VXRegistryKey@registry@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXSessionManagerListener@frame@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$_List_base@UListener@VCLSession@@V?$allocator@UListener@VCLSession@@@_STL@@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAU?$_List_node@UListener@VCLSession@@@_STL@@U12@V?$allocator@U?$_List_node@UListener@VCLSession@@@_STL@@@2@@_STL@@QAE@XZ -??1?$allocator@U?$_List_node@UListener@VCLSession@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@UListener@VCLSession@@@_STL@@QAE@XZ -??1?$list@UListener@VCLSession@@V?$allocator@UListener@VCLSession@@@_STL@@@_STL@@QAE@XZ -??1Listener@VCLSession@@QAE@XZ -??1OUStringBuffer@rtl@@QAE@XZ -??1VCLSession@@UAE@XZ -??4?$Reference@VXSessionManagerClient@frame@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXSessionManagerClient@frame@234@@Z -??4?$Reference@VXSessionManagerListener@frame@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??4?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??4?$list@UListener@VCLSession@@V?$allocator@UListener@VCLSession@@@_STL@@@_STL@@QAEAAV01@ABV01@@Z -??4Listener@VCLSession@@QAEAAU01@ABU01@@Z -??C?$Reference@VXRegistryKey@registry@star@sun@com@@@uno@star@sun@com@@QBAPAVXRegistryKey@registry@234@XZ -??C?$Reference@VXSessionManagerListener@frame@star@sun@com@@@uno@star@sun@com@@QBAPAVXSessionManagerListener@frame@234@XZ -??C?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QBAPAVXSingleServiceFactory@lang@234@XZ -??C?$_List_iterator@UListener@VCLSession@@U?$_Const_traits@UListener@VCLSession@@@_STL@@@_STL@@QBEPBUListener@VCLSession@@XZ -??C?$_List_iterator@UListener@VCLSession@@U?$_Nonconst_traits@UListener@VCLSession@@@_STL@@@_STL@@QBEPAUListener@VCLSession@@XZ -??D?$_List_iterator@UListener@VCLSession@@U?$_Const_traits@UListener@VCLSession@@@_STL@@@_STL@@QBEABUListener@VCLSession@@XZ -??D?$_List_iterator@UListener@VCLSession@@U?$_Nonconst_traits@UListener@VCLSession@@@_STL@@@_STL@@QBEAAUListener@VCLSession@@XZ -??E?$_List_iterator@UListener@VCLSession@@U?$_Const_traits@UListener@VCLSession@@@_STL@@@_STL@@QAE?AU01@H@Z -??E?$_List_iterator@UListener@VCLSession@@U?$_Const_traits@UListener@VCLSession@@@_STL@@@_STL@@QAEAAU01@XZ -??E?$_List_iterator@UListener@VCLSession@@U?$_Nonconst_traits@UListener@VCLSession@@@_STL@@@_STL@@QAE?AU01@H@Z -??E?$_List_iterator@UListener@VCLSession@@U?$_Nonconst_traits@UListener@VCLSession@@@_STL@@@_STL@@QAEAAU01@XZ -??_7VCLSession@@6BOWeakObject@cppu@@@ -??_7VCLSession@@6BXComponent@lang@star@sun@com@@@ -??_7VCLSession@@6BXSessionManagerClient@frame@star@sun@com@@@ -??_7VCLSession@@6BXTypeProvider@lang@star@sun@com@@@ -??_C@_0CJ@PKOEGDHA@com?4sun?4star?4frame?4XSessionManag@ -??_GListener@VCLSession@@QAEPAXI@Z -??_GVCLSession@@UAEPAXI@Z -??_R0?AVInvalidRegistryException@registry@star@sun@com@@@8 -?_Construct@_STL@@YAXPAUListener@VCLSession@@ABU23@@Z -?_Destroy@_STL@@YAXPAUListener@VCLSession@@@Z -?_M_create_node@?$list@UListener@VCLSession@@V?$allocator@UListener@VCLSession@@@_STL@@@_STL@@IAEPAU?$_List_node@UListener@VCLSession@@@2@ABUListener@VCLSession@@@Z -?_M_insert_dispatch@?$list@UListener@VCLSession@@V?$allocator@UListener@VCLSession@@@_STL@@@_STL@@QAEXU?$_List_iterator@UListener@VCLSession@@U?$_Nonconst_traits@UListener@VCLSession@@@_STL@@@2@U?$_List_iterator@UListener@VCLSession@@U?$_Const_traits@UListener@VCLSession@@@_STL@@@2@1ABU__false_type@2@@Z -?addSessionManagerListener@VCLSession@@UAAXABV?$Reference@VXSessionManagerListener@frame@star@sun@com@@@uno@star@sun@com@@@Z -?allocate@?$allocator@U?$_List_node@UListener@VCLSession@@@_STL@@@_STL@@QBEPAU?$_List_node@UListener@VCLSession@@@2@IPBX@Z -?appendAscii@OUStringBuffer@rtl@@QAEAAV12@PBD@Z -?appendAscii@OUStringBuffer@rtl@@QAEAAV12@PBDJ@Z -?begin@?$list@UListener@VCLSession@@V?$allocator@UListener@VCLSession@@@_STL@@@_STL@@QAE?AU?$_List_iterator@UListener@VCLSession@@U?$_Nonconst_traits@UListener@VCLSession@@@_STL@@@2@XZ -?begin@?$list@UListener@VCLSession@@V?$allocator@UListener@VCLSession@@@_STL@@@_STL@@QBE?AU?$_List_iterator@UListener@VCLSession@@U?$_Const_traits@UListener@VCLSession@@@_STL@@@2@XZ -?callInteractionGranted@VCLSession@@AAEX_N@Z -?callSaveRequested@VCLSession@@AAEX_N0@Z -?callShutdownCancelled@VCLSession@@AAEXXZ -?cancelShutdown@VCLSession@@UAAEXZ -?clear@?$_List_base@UListener@VCLSession@@V?$allocator@UListener@VCLSession@@@_STL@@@_STL@@QAEXXZ -?deallocate@?$allocator@U?$_List_node@UListener@VCLSession@@@_STL@@@_STL@@QBEXPAU?$_List_node@UListener@VCLSession@@@2@I@Z -?end@?$list@UListener@VCLSession@@V?$allocator@UListener@VCLSession@@@_STL@@@_STL@@QAE?AU?$_List_iterator@UListener@VCLSession@@U?$_Nonconst_traits@UListener@VCLSession@@@_STL@@@2@XZ -?end@?$list@UListener@VCLSession@@V?$allocator@UListener@VCLSession@@@_STL@@@_STL@@QBE?AU?$_List_iterator@UListener@VCLSession@@U?$_Const_traits@UListener@VCLSession@@@_STL@@@2@XZ -?equals@OString@rtl@@QBEEABV12@@Z -?erase@?$list@UListener@VCLSession@@V?$allocator@UListener@VCLSession@@@_STL@@@_STL@@QAE?AU?$_List_iterator@UListener@VCLSession@@U?$_Nonconst_traits@UListener@VCLSession@@@_STL@@@2@U32@0@Z -?erase@?$list@UListener@VCLSession@@V?$allocator@UListener@VCLSession@@@_STL@@@_STL@@QAE?AU?$_List_iterator@UListener@VCLSession@@U?$_Nonconst_traits@UListener@VCLSession@@@_STL@@@2@U32@@Z -?get@?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QBAPAVXSingleServiceFactory@lang@345@XZ -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSessionManagerClient@frame@star@sun@com@@@2345@@Z -?getLength@OUStringBuffer@rtl@@QAEJXZ -?insert@?$list@UListener@VCLSession@@V?$allocator@UListener@VCLSession@@@_STL@@@_STL@@QAE?AU?$_List_iterator@UListener@VCLSession@@U?$_Nonconst_traits@UListener@VCLSession@@@_STL@@@2@U32@ABUListener@VCLSession@@@Z -?insert@?$list@UListener@VCLSession@@V?$allocator@UListener@VCLSession@@@_STL@@@_STL@@QAEXU?$_List_iterator@UListener@VCLSession@@U?$_Nonconst_traits@UListener@VCLSession@@@_STL@@@2@U?$_List_iterator@UListener@VCLSession@@U?$_Const_traits@UListener@VCLSession@@@_STL@@@2@1@Z -?interactionDone@VCLSession@@UAAXABV?$Reference@VXSessionManagerListener@frame@star@sun@com@@@uno@star@sun@com@@@Z -?makeStringAndClear@OUStringBuffer@rtl@@QAE?AVOUString@2@XZ -?pOneInstance@VCLSession@@0PAV1@A -?push_back@?$list@UListener@VCLSession@@V?$allocator@UListener@VCLSession@@@_STL@@@_STL@@QAEXABUListener@VCLSession@@@Z -?queryInteraction@VCLSession@@UAAXABV?$Reference@VXSessionManagerListener@frame@star@sun@com@@@uno@star@sun@com@@@Z -?removeSessionManagerListener@VCLSession@@UAAXABV?$Reference@VXSessionManagerListener@frame@star@sun@com@@@uno@star@sun@com@@@Z -?s_pType_com_sun_star_frame_XSessionManagerClient@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSessionManagerClient@frame@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?saveDone@VCLSession@@UAAXABV?$Reference@VXSessionManagerListener@frame@star@sun@com@@@uno@star@sun@com@@@Z -?set@?$Reference@VXSessionManagerClient@frame@star@sun@com@@@uno@star@sun@com@@QAAEPAVXSessionManagerClient@frame@345@@Z -?set@?$Reference@VXSessionManagerListener@frame@star@sun@com@@@uno@star@sun@com@@QAAEPAVXSessionManagerListener@frame@345@@Z -?set@?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAAEPAVXSingleServiceFactory@lang@345@@Z -component_getFactory -component_writeInfo -?GetEnableLocalizedDecimalSep@MiscSettings@@QBEEXZ -?SetEnableLocalizedDecimalSep@MiscSettings@@QAEXE@Z -??0?$Reference@VXCanvas@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXCanvas@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXCanvas@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXWindow@awt@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXWindow@awt@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0Rectangle@awt@star@sun@com@@QAE@ABJ000@Z -??1?$Reference@VXCanvas@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXWindow@awt@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??4?$Reference@VXCanvas@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??4?$Reference@VXCanvas@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAAAAV01234@PAVXCanvas@rendering@234drafts@@@Z -??4?$Reference@VXWindow@awt@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??4?$Reference@VXWindow@awt@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXWindow@awt@234@@Z -??C?$Reference@VXWindow@awt@star@sun@com@@@uno@star@sun@com@@QBAPAVXWindow@awt@234@XZ -??_C@_0BJ@GKPHEPBP@com?4sun?4star?4awt?4XWindow?$AA@ -??_C@_0BL@KEBNNIH@com?4sun?4star?4awt?4Rectangle?$AA@ -??_C@_0CG@KKIEGOLJ@drafts?4com?4sun?4star?4rendering?4XC@ -?GetCanvas@Window@@QBE?AV?$Reference@VXCanvas@rendering@star@sun@com@drafts@@@uno@star@sun@com@@XZ -?GetFullscreenCanvas@Window@@QBE?AV?$Reference@VXCanvas@rendering@star@sun@com@drafts@@@uno@star@sun@com@@ABVSize@@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBURectangle@awt@345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXCanvas@rendering@star@sun@com@drafts@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXWindow@awt@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PB_J@Z -?iquery@?$Reference@VXCanvas@rendering@star@sun@com@drafts@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXWindow@awt@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?makeAny@uno@star@sun@com@@YA?AVAny@1234@ABURectangle@awt@234@@Z -?makeAny@uno@star@sun@com@@YA?AVAny@1234@AB_J@Z -?s_pType_com_sun_star_awt_Rectangle@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBURectangle@awt@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_awt_XWindow@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXWindow@awt@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_drafts_com_sun_star_rendering_XCanvas@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXCanvas@rendering@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?set@?$Reference@VXCanvas@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAAEPAVXCanvas@rendering@345drafts@@@Z -?set@?$Reference@VXWindow@awt@star@sun@com@@@uno@star@sun@com@@QAAEPAVXWindow@awt@345@@Z -??_ECurrencyBox@@WCLA@AEPAXI@Z -??_ECurrencyField@@WCPI@AEPAXI@Z -??_EMetricBox@@WCLA@AEPAXI@Z -??_EMetricField@@WCPI@AEPAXI@Z -??_ENumericBox@@WCLA@AEPAXI@Z -??_ENumericField@@WCPI@AEPAXI@Z -??_EDateBox@@WCLA@AEPAXI@Z -??_EDateField@@WCPI@AEPAXI@Z -??_EPatternBox@@WCLA@AEPAXI@Z -??_EPatternField@@WCPI@AEPAXI@Z -??_ETimeBox@@WCLA@AEPAXI@Z -??_ETimeField@@WCPI@AEPAXI@Z -??_ELongCurrencyBox@@WCLA@AEPAXI@Z -??_ELongCurrencyField@@WCPI@AEPAXI@Z -??0?$BasicRange@NUDoubleTraits@basegfx@@@basegfx@@QAE@N@Z -??0?$Reference@VXBitmap@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXBitmap@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXIntegerBitmap@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXPolyPolygon2D@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXPolyPolygon2D@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??0?$ScopedBitmapAccess@VBitmapReadAccess@@@@QAE@PAVBitmapReadAccess@@AAVBitmap@@@Z -??0?$ScopedBitmapAccess@VBitmapWriteAccess@@@@QAE@PAVBitmapWriteAccess@@AAVBitmap@@@Z -??0?$Sequence@C@uno@star@sun@com@@QAE@J@Z -??0?$Sequence@N@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Sequence@N@uno@star@sun@com@@QAE@J@Z -??0?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAE@J@Z -??0?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAE@J@Z -??0?$Sequence@V?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@J@Z -??0?$Sequence@V?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@J@Z -??0B2DPoint@basegfx@@QAE@NN@Z -??0B2DRange@basegfx@@QAE@NNNN@Z -??0B2DTuple@basegfx@@QAE@NN@Z -??0B2DVector@basegfx@@QAE@NN@Z -??0IntegerPoint2D@geometry@star@sun@com@drafts@@QAE@ABJ0@Z -??0IntegerRectangle2D@geometry@star@sun@com@drafts@@QAE@ABJ000@Z -??0IntegerSize2D@geometry@star@sun@com@drafts@@QAE@ABJ0@Z -??0RealBezierSegment2D@geometry@star@sun@com@drafts@@QAE@ABN00000@Z -??0RealPoint2D@geometry@star@sun@com@drafts@@QAE@ABN0@Z -??0RealRectangle2D@geometry@star@sun@com@drafts@@QAE@ABN000@Z -??0RealSize2D@geometry@star@sun@com@drafts@@QAE@ABN0@Z -??1?$Reference@VXBezierPolyPolygon2D@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXBitmap@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXIntegerBitmap@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXLinePolyPolygon2D@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXPolyPolygon2D@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??1?$ScopedBitmapAccess@VBitmapReadAccess@@@@QAE@XZ -??1?$ScopedBitmapAccess@VBitmapWriteAccess@@@@QAE@XZ -??1?$Sequence@N@uno@star@sun@com@@QAE@XZ -??1?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??1?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAE@XZ -??1?$Sequence@V?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Sequence@V?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1B2DPoint@basegfx@@QAE@XZ -??1B2DTuple@basegfx@@QAE@XZ -??1B2DVector@basegfx@@QAE@XZ -??4?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??4?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??A?$Sequence@C@uno@star@sun@com@@QAAAACJ@Z -??A?$Sequence@C@uno@star@sun@com@@QBAABCJ@Z -??A?$Sequence@N@uno@star@sun@com@@QAAAANJ@Z -??A?$Sequence@N@uno@star@sun@com@@QBAABNJ@Z -??A?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAAAAURealBezierSegment2D@geometry@234drafts@@J@Z -??A?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QBAABURealBezierSegment2D@geometry@234drafts@@J@Z -??A?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAAAAURealPoint2D@geometry@234drafts@@J@Z -??A?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QBAABURealPoint2D@geometry@234drafts@@J@Z -??A?$Sequence@V?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QAAAAV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@1234@J@Z -??A?$Sequence@V?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QBAABV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@1234@J@Z -??A?$Sequence@V?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QAAAAV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@1234@J@Z -??A?$Sequence@V?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QBAABV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@1234@J@Z -??C?$Reference@VXGraphicDevice@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QBAPAVXGraphicDevice@rendering@234drafts@@XZ -??C?$Reference@VXIntegerBitmap@rendering@star@sun@com@drafts@@@uno@star@sun@com@@QBAPAVXIntegerBitmap@rendering@234drafts@@XZ -??C?$ScopedBitmapAccess@VBitmapReadAccess@@@@QAEPAVBitmapReadAccess@@XZ -??C?$ScopedBitmapAccess@VBitmapWriteAccess@@@@QAEPAVBitmapWriteAccess@@XZ -??_C@_0CG@GGMFOLBO@drafts?4com?4sun?4star?4rendering?4XB@ -??_C@_0CJ@PLLOKPAP@drafts?4com?4sun?4star?4geometry?4Rea@ -??_C@_0CN@CLLEGIOK@drafts?4com?4sun?4star?4rendering?4XP@ -??_C@_0CN@KGDFHFDA@drafts?4com?4sun?4star?4rendering?4XI@ -??_C@_0DB@JNGPGCBG@drafts?4com?4sun?4star?4geometry?4Rea@ -?b2DPointFromPoint@unotools@vcl@@YA?AVB2DPoint@basegfx@@ABVPoint@@@Z -?b2DRectangleFromRectangle@unotools@vcl@@YA?AVB2DRange@basegfx@@ABVRectangle@@@Z -?b2DSizeFromSize@unotools@vcl@@YA?AVB2DVector@basegfx@@ABVSize@@@Z -?bezierSequenceFromPolygon@?A0x6eec9217@unotools@vcl@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?bitmapExFromXBitmap@unotools@vcl@@YA?AVBitmapEx@@ABV?$Reference@VXGraphicDevice@rendering@star@sun@com@drafts@@@uno@star@sun@com@@ABV?$Reference@VXIntegerBitmap@rendering@star@sun@com@drafts@@@5678@@Z -?colorToDoubleSequence@unotools@vcl@@YA?AV?$Sequence@N@uno@star@sun@com@@ABV?$Reference@VXGraphicDevice@rendering@star@sun@com@drafts@@@4567@ABVColor@@@Z -?colorToIntSequence@unotools@vcl@@YA?AV?$Sequence@C@uno@star@sun@com@@ABV?$Reference@VXGraphicDevice@rendering@star@sun@com@drafts@@@4567@ABVColor@@@Z -?expand@?$BasicRange@NUDoubleTraits@basegfx@@@basegfx@@QAEXN@Z -?get@?$ScopedBitmapAccess@VBitmapReadAccess@@@@QAEPAVBitmapReadAccess@@XZ -?get@?$ScopedBitmapAccess@VBitmapWriteAccess@@@@QAEPAVBitmapWriteAccess@@XZ -?getArray@?$Sequence@N@uno@star@sun@com@@QAAPANXZ -?getArray@?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAAPAURealBezierSegment2D@geometry@345drafts@@XZ -?getArray@?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QAAPAURealPoint2D@geometry@345drafts@@XZ -?getArray@?$Sequence@V?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QAAPAV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@2345@XZ -?getArray@?$Sequence@V?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QAAPAV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@2345@XZ -?getCppuType@@YAABVType@uno@star@sun@com@@PBN@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBURealBezierSegment2D@geometry@345drafts@@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBURealPoint2D@geometry@345drafts@@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXBitmap@rendering@star@sun@com@drafts@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXIntegerBitmap@rendering@star@sun@com@drafts@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPolyPolygon2D@rendering@star@sun@com@drafts@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@N@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@V?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@V?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@2345@@Z -?getLength@?$Sequence@N@uno@star@sun@com@@QBAJXZ -?getLength@?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QBAJXZ -?getLength@?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@QBAJXZ -?getLength@?$Sequence@V?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QBAJXZ -?getLength@?$Sequence@V?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@QBAJXZ -?getMaxX@B2DRange@basegfx@@QBENXZ -?getMaxY@B2DRange@basegfx@@QBENXZ -?getMaximum@?$BasicRange@NUDoubleTraits@basegfx@@@basegfx@@QBENXZ -?getMinX@B2DRange@basegfx@@QBENXZ -?getMinY@B2DRange@basegfx@@QBENXZ -?getMinimum@?$BasicRange@NUDoubleTraits@basegfx@@@basegfx@@QBENXZ -?getX@B2DTuple@basegfx@@QBENXZ -?getY@B2DTuple@basegfx@@QBENXZ -?integerPoint2DFromPoint@unotools@vcl@@YA?AUIntegerPoint2D@geometry@star@sun@com@drafts@@ABVPoint@@@Z -?integerRectangle2DFromRectangle@unotools@vcl@@YA?AUIntegerRectangle2D@geometry@star@sun@com@drafts@@ABVRectangle@@@Z -?integerSize2DFromSize@unotools@vcl@@YA?AUIntegerSize2D@geometry@star@sun@com@drafts@@ABVSize@@@Z -?iquery@?$Reference@VXBitmap@rendering@star@sun@com@drafts@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXIntegerBitmap@rendering@star@sun@com@drafts@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXPolyPolygon2D@rendering@star@sun@com@drafts@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?point2DFromPoint@unotools@vcl@@YA?AURealPoint2D@geometry@star@sun@com@drafts@@ABVPoint@@@Z -?pointFromB2DPoint@unotools@vcl@@YA?AVPoint@@ABVB2DPoint@basegfx@@@Z -?pointFromIntegerPoint2D@unotools@vcl@@YA?AVPoint@@ABUIntegerPoint2D@geometry@star@sun@com@drafts@@@Z -?pointFromRealPoint2D@unotools@vcl@@YA?AVPoint@@ABURealPoint2D@geometry@star@sun@com@drafts@@@Z -?pointSequenceFromPolygon@?A0x6eec9217@unotools@vcl@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?polyPolygonFromBezier2DSequenceSequence@unotools@vcl@@YA?AVPolyPolygon@@ABV?$Sequence@V?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@@Z -?polyPolygonFromPoint2DSequenceSequence@unotools@vcl@@YA?AVPolyPolygon@@ABV?$Sequence@V?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@@Z -?polygonFromBezier2DSequence@unotools@vcl@@YA?AVPolygon@@ABV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@Z -?polygonFromPoint2DSequence@unotools@vcl@@YA?AVPolygon@@ABV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@Z -?rectangle2DFromRectangle@unotools@vcl@@YA?AURealRectangle2D@geometry@star@sun@com@drafts@@ABVRectangle@@@Z -?rectangleFromB2DRectangle@unotools@vcl@@YA?AVRectangle@@ABVB2DRange@basegfx@@@Z -?rectangleFromIntegerRectangle2D@unotools@vcl@@YA?AVRectangle@@ABUIntegerRectangle2D@geometry@star@sun@com@drafts@@@Z -?rectangleFromRealRectangle2D@unotools@vcl@@YA?AVRectangle@@ABURealRectangle2D@geometry@star@sun@com@drafts@@@Z -?s_pType@?$Sequence@N@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType@?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType@?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType@?$Sequence@V?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType@?$Sequence@V?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A -?s_pType_drafts_com_sun_star_geometry_RealBezierSegment2D@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBURealBezierSegment2D@geometry@456drafts@@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_drafts_com_sun_star_geometry_RealPoint2D@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBURealPoint2D@geometry@456drafts@@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_drafts_com_sun_star_rendering_XBitmap@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXBitmap@rendering@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_drafts_com_sun_star_rendering_XIntegerBitmap@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXIntegerBitmap@rendering@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_drafts_com_sun_star_rendering_XPolyPolygon2D@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPolyPolygon2D@rendering@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?sequenceToColor@unotools@vcl@@YA?AVColor@@ABV?$Reference@VXGraphicDevice@rendering@star@sun@com@drafts@@@uno@star@sun@com@@ABV?$Sequence@C@5678@@Z -?sequenceToColor@unotools@vcl@@YA?AVColor@@ABV?$Reference@VXGraphicDevice@rendering@star@sun@com@drafts@@@uno@star@sun@com@@ABV?$Sequence@N@5678@@Z -?size2DFromSize@unotools@vcl@@YA?AURealSize2D@geometry@star@sun@com@drafts@@ABVSize@@@Z -?sizeFromB2DSize@unotools@vcl@@YA?AVSize@@ABVB2DVector@basegfx@@@Z -?sizeFromIntegerSize2D@unotools@vcl@@YA?AVSize@@ABUIntegerSize2D@geometry@star@sun@com@drafts@@@Z -?sizeFromRealSize2D@unotools@vcl@@YA?AVSize@@ABURealSize2D@geometry@star@sun@com@drafts@@@Z -?xBitmapFromBitmap@unotools@vcl@@YA?AV?$Reference@VXBitmap@rendering@star@sun@com@drafts@@@uno@star@sun@com@@ABV?$Reference@VXGraphicDevice@rendering@star@sun@com@drafts@@@4567@ABVBitmap@@@Z -?xBitmapFromBitmapEx@unotools@vcl@@YA?AV?$Reference@VXBitmap@rendering@star@sun@com@drafts@@@uno@star@sun@com@@ABV?$Reference@VXGraphicDevice@rendering@star@sun@com@drafts@@@4567@ABVBitmapEx@@@Z -?xPolyPolygonFromPolyPolygon@unotools@vcl@@YA?AV?$Reference@VXPolyPolygon2D@rendering@star@sun@com@drafts@@@uno@star@sun@com@@ABV?$Reference@VXGraphicDevice@rendering@star@sun@com@drafts@@@4567@ABVPolyPolygon@@@Z -?xPolyPolygonFromPolygon@unotools@vcl@@YA?AV?$Reference@VXPolyPolygon2D@rendering@star@sun@com@drafts@@@uno@star@sun@com@@ABV?$Reference@VXGraphicDevice@rendering@star@sun@com@drafts@@@4567@ABVPolygon@@@Z -?bezierSequenceFromPolygon@?A0xb8f080a5@unotools@vcl@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?pointSequenceFromPolygon@?A0xb8f080a5@unotools@vcl@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?bezierSequenceFromPolygon@?A0xd0d9a501@unotools@vcl@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?pointSequenceFromPolygon@?A0xd0d9a501@unotools@vcl@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?bezierSequenceFromPolygon@?A0x59c95cfc@unotools@vcl@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?pointSequenceFromPolygon@?A0x59c95cfc@unotools@vcl@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?bezierSequenceFromPolygon@?A0xf614a391@unotools@vcl@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?pointSequenceFromPolygon@?A0xf614a391@unotools@vcl@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?bezierSequenceFromPolygon@?A0x1949b091@unotools@vcl@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?pointSequenceFromPolygon@?A0x1949b091@unotools@vcl@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -??_C@_0CG@BJLPEOCG@o?3?2SRC680?2wntmsci8?2inc?2rtl?1strin@ -?GetInvalidDate@DateFormatter@@SA?AVDate@@XZ -?GetInvalidTime@TimeFormatter@@SA?AVTime@@XZ -?bezierSequenceFromPolygon@?A0xbbca3827@unotools@vcl@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?pointSequenceFromPolygon@?A0xbbca3827@unotools@vcl@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?bezierSequenceFromPolygon@?A0xe80b0494@unotools@vcl@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?pointSequenceFromPolygon@?A0xe80b0494@unotools@vcl@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?bezierSequenceFromPolygon@?A0x3d7a9297@unotools@vcl@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?pointSequenceFromPolygon@?A0x3d7a9297@unotools@vcl@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?GetUnlimitedBitmap@Graphic@@QBE?AVBitmap@@PBVSize@@@Z -?GetUnlimitedBitmapEx@Graphic@@QBE?AVBitmapEx@@PBVSize@@@Z -?bezierSequenceFromPolygon@?A0x0cad9a9d@unotools@vcl@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?pointSequenceFromPolygon@?A0x0cad9a9d@unotools@vcl@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?bezierSequenceFromPolygon@?A0x8638a30d@unotools@vcl@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?pointSequenceFromPolygon@?A0x8638a30d@unotools@vcl@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?bezierSequenceFromPolygon@?A0xa975ac56@unotools@vcl@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?pointSequenceFromPolygon@?A0xa975ac56@unotools@vcl@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?GetDesktopEnvironment@Application@@SAABVOUString@rtl@@XZ -?GetUseFlatBorders@StyleSettings@@QBEEXZ -?EnableNativeWidget@Window@@QAEXE@Z -?GetData@CommandEvent@@QBEPAXXZ -?GetLastPointerPosPixel@Window@@QAE?AVPoint@@XZ -?IsMouseOver@Window@@QAEEXZ -?IsNativeWidgetEnabled@Window@@QBEEXZ -?HitTestNativeControl@Window@@QAEEKKABVRegion@@ABVPoint@@AAE@Z -?IsInPaint@Window@@QBEEXZ -?IsNativeControlSupported@Window@@QAEEKK@Z -?GetSymbol@PushButton@@QBEGXZ -??0ScrollbarValue@@QAE@XZ -??1ScrollbarValue@@QAE@XZ -??0SpinbuttonValue@@QAE@XZ -??1SpinbuttonValue@@QAE@XZ -?PreNotify@SpinButton@@UAEJAAVNotifyEvent@@@Z -??0TabitemValue@@QAE@XZ -??1TabitemValue@@QAE@XZ -?bezierSequenceFromPolygon@?A0x9c8b56ef@unotools@vcl@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?pointSequenceFromPolygon@?A0x9c8b56ef@unotools@vcl@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?SetUseFlatBorders@StyleSettings@@QAEXE@Z -??0?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE@ABU?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@1@ABV?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@1@@Z -??0?$_Rb_tree_base@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@1@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE@ABU01@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE@PAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@1@@Z -??0?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE@XZ -??0?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@_STL@@U12@V?$allocator@U?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@_STL@@@1@PAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@1@@Z -??0?$allocator@U?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@1@@Z -??0?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@_STL@@QAE@XZ -??0?$map@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAXU?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE@XZ -??0?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@QAE@ABU01@@Z -??0?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@QAE@ABV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@1@ABQAX@Z -??0?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@1@AB_N@Z -??0VisualStylesAPI@@QAE@XZ -??1?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE@XZ -??1?$_Rb_tree_base@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@_STL@@U12@V?$allocator@U?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$allocator@U?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@_STL@@QAE@XZ -??1?$map@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAXU?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE@XZ -??1?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@QAE@XZ -??1VisualStylesAPI@@QAE@XZ -??A?$map@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAXU?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAEAAPAXABV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@1@@Z -??C?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QBEPAU?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@1@XZ -??D?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QBEAAU?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@1@XZ -??E?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE?AU01@H@Z -??E?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAEAAU01@XZ -??F?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAEAAU01@XZ -??M_STL@@YA_NABV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@0@0@Z -??R?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@_STL@@QBEABV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@1@ABU?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@1@@Z -??R?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@_STL@@QBE_NABV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@1@0@Z -??_G?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@QAEPAXI@Z -?CloseThemeData@VisualStylesAPI@@QAEJPAX@Z -?DrawThemeBackground@VisualStylesAPI@@QAEJPAXPAUHDC__@@HHPBUtagRECT@@2@Z -?DrawThemeText@VisualStylesAPI@@QAEJPAXPAUHDC__@@HHPBGHKKPBUtagRECT@@@Z -?GetThemeBackgroundContentRect@VisualStylesAPI@@QAEJPAXPAUHDC__@@HHPBUtagRECT@@PAU3@@Z -?GetThemePartSize@VisualStylesAPI@@QAEJPAXPAUHDC__@@HHPAUtagRECT@@W4THEMESIZE@@PAUtagSIZE@@@Z -?OpenThemeData@VisualStylesAPI@@QAEPAXPAUHWND__@@PBG@Z -?_Construct@_STL@@YAXPAU?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@1@ABU21@@Z -?_Destroy@_STL@@YAXPAU?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@1@@Z -?_M_create_node@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@IAEPAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@ABU?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@@Z -?_M_empty_initialize@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@AAEXXZ -?_M_erase@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@AAEXPAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@Z -?_M_find@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@ABV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@2@@Z -?_M_insert@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@AAE?AU?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@2@PAU_Rb_tree_node_base@2@0ABU?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@0@Z -?_M_leftmost@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@XZ -?_M_lower_bound@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@ABEPAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@ABV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@2@@Z -?_M_rightmost@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@XZ -?_M_root@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@IBEAAPAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@XZ -?_S_color@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@KAAA_NPAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@Z -?_S_key@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@KAABV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@2@PAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@Z -?_S_key@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@KAABV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@2@PAU_Rb_tree_node_base@2@@Z -?_S_left@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@PAU32@@Z -?_S_parent@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@PAU32@@Z -?_S_right@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@PAU32@@Z -?_S_right@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@KAAAPAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@PAU_Rb_tree_node_base@2@@Z -?_S_value@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@KAAAU?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@PAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@Z -?__default_constructed@_STL@@YAPAXPAPAX@Z -?__default_constructed_aux@_STL@@YAPAXPAPAXABU__false_type@1@@Z -?allocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@_STL@@@_STL@@QBEPAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@IPBX@Z -?begin@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@2@XZ -?begin@?$map@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAXU?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@2@XZ -?clear@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAEXXZ -?clear@?$map@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAXU?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAEXXZ -?deallocate@?$allocator@U?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@I@Z -?end@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@2@XZ -?end@?$map@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAXU?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@2@XZ -?find@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@2@ABV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@2@@Z -?find@?$map@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAXU?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@2@ABV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@2@@Z -?insert@?$map@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAXU?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@2@U32@ABU?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@@Z -?insert_unique@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@2@U32@ABU?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@@Z -?insert_unique@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@_N@2@ABU?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@@Z -?isBothAligned@TabitemValue@@QAEEXZ -?isLeftAligned@TabitemValue@@QAEEXZ -?isNotAligned@TabitemValue@@QAEEXZ -?isRightAligned@TabitemValue@@QAEEXZ -?key_comp@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QBE?AU?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@XZ -?key_comp@?$map@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAXU?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QBE?AU?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@XZ -?lower_bound@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@2@ABV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@2@@Z -?lower_bound@?$map@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAXU?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QAE?AU?$_Rb_tree_iterator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@2@ABV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@2@@Z -?replace@OUString@rtl@@QBE?AV12@GG@Z -?size@?$_Rb_tree@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@2@U?$_Select1st@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@U?$less@V?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@GV?$char_traits@G@_STL@@V?$allocator@G@2@@_STL@@PAX@_STL@@@2@@_STL@@QBEIXZ -?bezierSequenceFromPolygon@?A0xe7da5b64@unotools@vcl@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?pointSequenceFromPolygon@?A0xe7da5b64@unotools@vcl@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -??0?$Guard@VMutex@osl@@@osl@@QAE@PAVMutex@1@@Z -??0BitmapEx@@QAE@ABVResId@@@Z -??RGetGlobalMutex@osl@@QAEPAVMutex@1@XZ -?getGlobalMutex@Mutex@osl@@SAPAV12@XZ -??_GBitmapColor@@QAEPAXI@Z -?FillPolyPolygon@BitmapWriteAccess@@QAEXABVPolyPolygon@@@Z -?FillPolygon@BitmapWriteAccess@@QAEXABVPolygon@@@Z -?GetFillColor@BitmapWriteAccess@@QBE?AVColor@@XZ -?GetLineColor@BitmapWriteAccess@@QBE?AVColor@@XZ -?SetFillColor@BitmapWriteAccess@@QAEXABVColor@@@Z -?SetFillColor@BitmapWriteAccess@@QAEXXZ -?SetLineColor@BitmapWriteAccess@@QAEXABVColor@@@Z -?SetLineColor@BitmapWriteAccess@@QAEXXZ -??0ImageList@@QAE@ABV?$vector@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@PBVColor@@@Z -??0ImageList@@QAE@ABVBitmapEx@@GPAGG@Z -??A?$vector@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@QBEABVOUString@rtl@@I@Z -??_EImageAryData@@QAEPAXI@Z -??_EString@@QAEPAXI@Z -?AddImage@ImageList@@QAEXABVOUString@rtl@@ABVImage@@@Z -?CopyImage@ImageList@@QAEXABVOUString@rtl@@0@Z -?GetBitmapEx@Image@@QBE?AVBitmapEx@@XZ -?GetBitmapEx@ImageList@@QBE?AVBitmapEx@@XZ -?GetFileName@ResMgr@@QBEABVString@@XZ -?GetId@ResId@@QBEGXZ -?GetImage@ImageList@@QBE?AVImage@@ABVOUString@rtl@@@Z -?GetImageName@ImageList@@QBE?AVOUString@rtl@@G@Z -?GetImagePos@ImageList@@QBEGABVOUString@rtl@@@Z -?RemoveImage@ImageList@@QAEXABVOUString@rtl@@@Z -?ReplaceImage@ImageList@@QAEXABVOUString@rtl@@0@Z -?ReplaceImage@ImageList@@QAEXABVOUString@rtl@@ABVImage@@@Z -?begin@?$vector@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@QBEPBVOUString@rtl@@XZ -?size@?$vector@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@QBEIXZ -??0ImageAryData@@QAE@ABU0@@Z -??0ImageAryData@@QAE@XZ -??1ImageAryData@@QAE@XZ -??4ImageAryData@@QAEAAU0@ABU0@@Z -??0?$Reference@VXInputStream@io@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXInputStream@io@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXNameAccess@container@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXSimpleFileAccess@ucb@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXZipFileAccess@zip@packages@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$_Hashtable_iterator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@QAE@PAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@1@PAV?$hashtable@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@1@@Z -??0?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@QAE@ABU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@1@@Z -??0?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@QAE@PBU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@1@PBV?$hashtable@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@1@@Z -??0?$_STLP_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@_STL@@V?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@_STL@@@1@I@Z -??0?$allocator@PAX@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@1@@Z -??0?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@1@@Z -??0?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@_STL@@QAE@XZ -??0?$hash_map@VOUString@rtl@@VBitmapEx@@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@6@@_STL@@QAE@XZ -??0?$hashtable@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@QAE@IABUOUStringHash@rtl@@ABU?$equal_to@VOUString@rtl@@@1@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@1@@Z -??0?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@QAE@ABU01@@Z -??0?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@QAE@ABVOUString@rtl@@ABVBitmapEx@@@Z -??0DateTime@@QAE@XZ -??1?$Reference@VXInputStream@io@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXNameAccess@container@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXSimpleFileAccess@ucb@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXZipFileAccess@zip@packages@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$_STLP_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@_STL@@V?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@_STL@@@2@@_STL@@QAE@XZ -??1?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@_STL@@QAE@XZ -??1?$hash_map@VOUString@rtl@@VBitmapEx@@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@6@@_STL@@QAE@XZ -??1?$hashtable@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@QAE@XZ -??1?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@QAE@XZ -??8_STL@@YA_NABU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@0@0@Z -??9_STL@@YA_NABU?$_Hashtable_iterator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@0@0@Z -??A?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QBAABVOUString@rtl@@J@Z -??A?$hash_map@VOUString@rtl@@VBitmapEx@@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@6@@_STL@@QAEAAVBitmapEx@@ABVOUString@rtl@@@Z -??C?$Reference@VXNameAccess@container@star@sun@com@@@uno@star@sun@com@@QBAPAVXNameAccess@container@234@XZ -??C?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QBAPAVXPropertySet@beans@234@XZ -??C?$Reference@VXSimpleFileAccess@ucb@star@sun@com@@@uno@star@sun@com@@QBAPAVXSimpleFileAccess@ucb@234@XZ -??D?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@QBEABU?$pair@$$CBVOUString@rtl@@VBitmapEx@@@1@XZ -??D?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@QBEAAU?$pair@$$CBVOUString@rtl@@VBitmapEx@@@1@XZ -??R?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@_STL@@QBEABVOUString@rtl@@ABU?$pair@$$CBVOUString@rtl@@VBitmapEx@@@1@@Z -??_2uno@star@sun@com@@YAEABVAny@0123@AAV?$Reference@VXInputStream@io@star@sun@com@@@0123@@Z -??_C@_0BN@CAAHCCJE@com?4sun?4star?4io?4XInputStream?$AA@ -??_C@_0CA@MIBACMNI@com?4sun?4star?4beans?4XPropertySet?$AA@ -??_C@_0CD@FIEKNFBB@com?4sun?4star?4ucb?4XSimpleFileAcce@ -??_C@_0CD@PODAOHBM@com?4sun?4star?4container?4XNameAcce@ -??_C@_0CJ@JJHJGNGO@com?4sun?4star?4packages?4zip?4XZipFi@ -??_G?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@QAEPAXI@Z -?Append@INetURLObject@@QAE_NABVString@@W4EncodeMechanism@1@G@Z -?_Construct@_STL@@YAXPAU?$pair@$$CBVOUString@rtl@@VBitmapEx@@@1@ABU21@@Z -?_Destroy@_STL@@YAXPAU?$pair@$$CBVOUString@rtl@@VBitmapEx@@@1@@Z -?_M_bkt_num@?$hashtable@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@ABEIABU?$pair@$$CBVOUString@rtl@@VBitmapEx@@@2@@Z -?_M_bkt_num@?$hashtable@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@ABEIABU?$pair@$$CBVOUString@rtl@@VBitmapEx@@@2@I@Z -?_M_bkt_num_key@?$hashtable@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@ABEIABVOUString@rtl@@@Z -?_M_bkt_num_key@?$hashtable@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@ABEIABVOUString@rtl@@I@Z -?_M_delete_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@AAEXPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@Z -?_M_find@?$hashtable@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@ABEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@ABVOUString@rtl@@@Z -?_M_initialize_buckets@?$hashtable@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@AAEXI@Z -?_M_insert@?$hashtable@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@QAEAAU?$pair@$$CBVOUString@rtl@@VBitmapEx@@@2@ABU32@@Z -?_M_new_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@AAEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@ABU?$pair@$$CBVOUString@rtl@@VBitmapEx@@@2@@Z -?_M_next_size@?$hashtable@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@ABEII@Z -?allocate@?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@_STL@@@_STL@@QBEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@IPBX@Z -?clear@?$Reference@VXZipFileAccess@zip@packages@star@sun@com@@@uno@star@sun@com@@QAAXXZ -?clear@?$hashtable@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@QAEXXZ -?deallocate@?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@I@Z -?end@?$hash_map@VOUString@rtl@@VBitmapEx@@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@6@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@2@XZ -?end@?$hashtable@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@2@XZ -?find@?$hash_map@VOUString@rtl@@VBitmapEx@@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@6@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@2@ABVOUString@rtl@@@Z -?find@?$hashtable@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@VOUString@rtl@@UOUStringHash@5@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@2@ABVOUString@rtl@@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInputStream@io@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXNameAccess@container@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertySet@beans@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSimpleFileAccess@ucb@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXZipFileAccess@zip@packages@star@sun@com@@@2345@@Z -?iquery@?$Reference@VXNameAccess@container@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXSimpleFileAccess@ucb@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXZipFileAccess@zip@packages@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?lastIndexOf@OUString@rtl@@QBEJABV12@@Z -?resize@?$hashtable@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@QAEXI@Z -?s_pType_com_sun_star_beans_XPropertySet@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertySet@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_container_XNameAccess@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXNameAccess@container@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_io_XInputStream@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInputStream@io@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_packages_zip_XZipFileAccess@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXZipFileAccess@zip@packages@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?s_pType_com_sun_star_ucb_XSimpleFileAccess@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSimpleFileAccess@ucb@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?set@?$Reference@VXNameAccess@container@star@sun@com@@@uno@star@sun@com@@QAAEABVBaseReference@2345@W4UnoReference_Query@2345@@Z -?set@?$Reference@VXNameAccess@container@star@sun@com@@@uno@star@sun@com@@QAAEPAVXNameAccess@container@345@W4__sal_NoAcquire@@@Z -?set@?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QAAEABVBaseReference@2345@W4UnoReference_Query@2345@@Z -?set@?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QAAEPAVXPropertySet@beans@345@W4__sal_NoAcquire@@@Z -?set@?$Reference@VXSimpleFileAccess@ucb@star@sun@com@@@uno@star@sun@com@@QAAEABVBaseReference@2345@W4UnoReference_Query@2345@@Z -?set@?$Reference@VXSimpleFileAccess@ucb@star@sun@com@@@uno@star@sun@com@@QAAEPAVXSimpleFileAccess@ucb@345@W4__sal_NoAcquire@@@Z -?set@?$Reference@VXZipFileAccess@zip@packages@star@sun@com@@@uno@star@sun@com@@QAAEABVBaseReference@2345@W4UnoReference_Query@2345@@Z -?set@?$Reference@VXZipFileAccess@zip@packages@star@sun@com@@@uno@star@sun@com@@QAAEPAVXZipFileAccess@zip@packages@345@W4__sal_NoAcquire@@@Z -??0PNGReader@vcl@@QAE@AAVSvStream@@@Z -??1PNGReader@vcl@@QAE@XZ -?Read@PNGReader@vcl@@QAE?AVBitmapEx@@XZ -_real@3ee4f8b588e368f1 -_real@40f86a0000000000 -??0PNGWriter@vcl@@QAE@AAVSvStream@@@Z -??1PNGWriter@vcl@@QAE@XZ -?Write@PNGWriter@vcl@@QAE_NABVBitmapEx@@JJ@Z -?ToRelativeLineIndex@Control@@QBEJJ@Z -?ToRelativeLineIndex@ControlLayoutData@vcl@@QBEJJ@Z -?GetIndexForPoint@ComboBox@@QBEJABVPoint@@AAG@Z -?GetIndexForPoint@ListBox@@QBEJABVPoint@@AAG@Z -??_C@_0DC@CNNGEIGA@o?3?2SRC680?2wntmsci8?2inc?2salhelper@ -??_C@_0DH@CEGOBNEJ@Race?$DP?5Ref?5count?5of?5singleton?5?$DO0?0@ -??0?$_STLP_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@_STL@@V?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@_STL@@@2@@_STL@@QAE@ABV01@@Z -?swap@?$hash_map@VOUString@rtl@@VBitmapEx@@UOUStringHash@2@U?$equal_to@VOUString@rtl@@@_STL@@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@6@@_STL@@QAEXAAV12@@Z -?swap@?$hashtable@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@VOUString@rtl@@UOUStringHash@4@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@U?$equal_to@VOUString@rtl@@@2@V?$allocator@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@2@@_STL@@QAEXAAV12@@Z -?swap@_STL@@YAXAAU?$_Select1st@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@1@0@Z -?swap@_STL@@YAXAAU?$equal_to@VOUString@rtl@@@1@0@Z -?swap@_STL@@YAXAAUOUStringHash@rtl@@0@Z -?swap@_STL@@YAXAAV?$_STLP_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@_STL@@V?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@VBitmapEx@@@_STL@@@_STL@@@2@@1@0@Z -?bezierSequenceFromPolygon@?A0xeafaaed0@unotools@vcl@@YA?AV?$Sequence@URealBezierSegment2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?pointSequenceFromPolygon@?A0xeafaaed0@unotools@vcl@@YA?AV?$Sequence@URealPoint2D@geometry@star@sun@com@drafts@@@uno@star@sun@com@@ABVPolygon@@@Z -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXComponent@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXCurrentContext@uno@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXExtendedToolkit@awt@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTypeProvider@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragGestureListener@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragSourceListener@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTargetListener@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXEventListener@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXBreakIterator@i18n@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXCharacterClassification@i18n@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXCollator@i18n@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUDataFlavor@datatransfer@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTransferable@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSessionManagerClient@frame@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInitialization@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInputStream@io@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXNameAccess@container@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertySet@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSimpleFileAccess@ucb@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXZipFileAccess@zip@packages@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUPropertyValue@beans@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBW4PropertyState@beans@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXBitmap@awt@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInvocation@script@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBURectangle@awt@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAccessible@accessibility@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXCanvas@rendering@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXClipboard@clipboard@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragGestureRecognizer@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDragSource@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTarget@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTopWindow@awt@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXWindow@awt@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUEventObject@lang@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUInputEvent@awt@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUMouseEvent@awt@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTargetDragContext@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDropTargetDropContext@dnd@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFlushableClipboard@clipboard@datatransfer@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUCalendarItem@i18n@456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBURealBezierSegment2D@geometry@456drafts@@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBURealPoint2D@geometry@456drafts@@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXBitmap@rendering@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXIntegerBitmap@rendering@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPolyPolygon2D@rendering@star@sun@com@drafts@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDisplayConnection@awt@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFilePicker@dialogs@ui@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFilterManager@dialogs@ui@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?IsHighContrastBlackAndWhite@StyleSettings@@QBEEXZ -??0?$Reference@VXGraphic@graphic@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z -??0?$Reference@VXGraphic@graphic@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??0?$Reference@VXGraphicProvider@graphic@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXTypeProvider@lang@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$Reference@VXUnoTunnel@lang@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z -??0?$_STLP_alloc_proxy@PAVOUString@rtl@@V12@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@QAE@ABV?$allocator@VOUString@rtl@@@1@PAVOUString@rtl@@@Z -??0?$_Vector_base@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@QAE@ABV?$allocator@VOUString@rtl@@@1@@Z -??0?$allocator@VOUString@rtl@@@_STL@@QAE@ABV01@@Z -??0?$allocator@VOUString@rtl@@@_STL@@QAE@XZ -??0?$vector@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@QAE@ABV?$allocator@VOUString@rtl@@@1@@Z -??0Image@@QAE@ABV?$Reference@VXGraphic@graphic@star@sun@com@@@uno@star@sun@com@@@Z -??0ImageList@@QAE@ABV?$vector@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@ABVOUString@rtl@@PBVColor@@@Z -??0ImageList@@QAE@ABVBitmapEx@@ABV?$vector@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@G@Z -??1?$Reference@VXGraphic@graphic@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXGraphicProvider@graphic@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXTypeProvider@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$Reference@VXUnoTunnel@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ -??1?$_STLP_alloc_proxy@PAVOUString@rtl@@V12@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@QAE@XZ -??1?$_Vector_base@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@QAE@XZ -??1?$allocator@VOUString@rtl@@@_STL@@QAE@XZ -??1?$vector@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@QAE@XZ -??4?$Reference@VXGraphic@graphic@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z -??4?$vector@GV?$allocator@G@_STL@@@_STL@@QAEAAV01@ABV01@@Z -??4?$vector@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@QAEAAV01@ABV01@@Z -??A?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@QAAAAUPropertyValue@beans@234@J@Z -??C?$Reference@VXGraphicProvider@graphic@star@sun@com@@@uno@star@sun@com@@QBAPAVXGraphicProvider@graphic@234@XZ -??C?$Reference@VXTypeProvider@lang@star@sun@com@@@uno@star@sun@com@@QBAPAVXTypeProvider@lang@234@XZ -??C?$Reference@VXUnoTunnel@lang@star@sun@com@@@uno@star@sun@com@@QBAPAVXUnoTunnel@lang@234@XZ -??_C@_0BN@IOEAJMLF@com?4sun?4star?4lang?4XUnoTunnel?$AA@ -??_C@_0CG@NOMEPKJC@com?4sun?4star?4graphic?4XGraphicPro@ -??_GOUString@rtl@@QAEPAXI@Z -?GetImageIds@ImageList@@QBEXAAV?$vector@GV?$allocator@G@_STL@@@_STL@@@Z -?GetImageNames@ImageList@@QBEXAAV?$vector@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@@Z -?GetXGraphic@Image@@QBE?AV?$Reference@VXGraphic@graphic@star@sun@com@@@uno@star@sun@com@@XZ -?Invert@Image@@QAEXXZ -?Invert@ImageList@@QAEXXZ -?_Construct@_STL@@YAXPAVOUString@rtl@@ABV23@@Z -?_Destroy@_STL@@YAXPAVOUString@rtl@@0@Z -?_Destroy@_STL@@YAXPAVOUString@rtl@@@Z -?_IsOKToMemCpy@_STL@@YA?AU?$_OKToMemCpy@GG@1@PAG0@Z -?_M_allocate_and_copy@?$vector@GV?$allocator@G@_STL@@@_STL@@IAEPAGIPBG0@Z -?_M_allocate_and_copy@?$vector@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@IAEPAVOUString@rtl@@IPBV34@0@Z -?_M_clear@?$vector@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@IAEXXZ -?_M_insert_overflow@?$vector@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@IAEXPAVOUString@rtl@@ABV34@ABU__false_type@2@I_N@Z -?_M_set@?$vector@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@IAEXPAVOUString@rtl@@00@Z -?_Ret@?$_BothPtrType@PBGPAG@_STL@@SA?AU__true_type@2@XZ -?_Ret@?$_OKToMemCpy@GG@_STL@@SA?AU__false_type@2@XZ -?__copy@_STL@@YAPAGPBG0PAGABUrandom_access_iterator_tag@1@PAH@Z -?__copy@_STL@@YAPAVOUString@rtl@@PBV23@0PAV23@ABUrandom_access_iterator_tag@1@PAH@Z -?__copy_aux@_STL@@YAPAGPBG0PAGABU__true_type@1@@Z -?__copy_ptrs@_STL@@YAPAGPBG0PAGABU__false_type@1@@Z -?__copy_ptrs@_STL@@YAPAGPBG0PAGABU__true_type@1@@Z -?__copy_ptrs@_STL@@YAPAVOUString@rtl@@PBV23@0PAV23@ABU__false_type@1@@Z -?__destroy@_STL@@YAXPAVOUString@rtl@@00@Z -?__destroy_aux@_STL@@YAXPAVOUString@rtl@@0ABU__false_type@1@@Z -?__uninitialized_copy@_STL@@YAPAGPBG0PAGABU__true_type@1@@Z -?__uninitialized_copy@_STL@@YAPAVOUString@rtl@@PAV23@00ABU__false_type@1@@Z -?__uninitialized_copy@_STL@@YAPAVOUString@rtl@@PBV23@0PAV23@ABU__false_type@1@@Z -?__uninitialized_fill_n@_STL@@YAPAVOUString@rtl@@PAV23@IABV23@ABU__false_type@1@@Z -?allocate@?$allocator@VOUString@rtl@@@_STL@@QBEPAVOUString@rtl@@IPBX@Z -?capacity@?$vector@GV?$allocator@G@_STL@@@_STL@@QBEIXZ -?capacity@?$vector@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@QBEIXZ -?deallocate@?$allocator@VOUString@rtl@@@_STL@@QBEXPAVOUString@rtl@@I@Z -?distance_type@_STL@@YAPAHPBG@Z -?distance_type@_STL@@YAPAHPBVOUString@rtl@@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXGraphicProvider@graphic@star@sun@com@@@2345@@Z -?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXUnoTunnel@lang@star@sun@com@@@2345@@Z -?getLength@?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@QBAJXZ -?iquery@?$Reference@VXGraphicProvider@graphic@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXTypeProvider@lang@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iquery@?$Reference@VXUnoTunnel@lang@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z -?iterator_category@_STL@@YA?AUrandom_access_iterator_tag@1@PBG@Z -?iterator_category@_STL@@YA?AUrandom_access_iterator_tag@1@PBVOUString@rtl@@@Z -?push_back@?$vector@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@QAEXABVOUString@rtl@@@Z -?set@?$Reference@VXGraphic@graphic@star@sun@com@@@uno@star@sun@com@@QAAEPAVXGraphic@graphic@345@@Z -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXGraphicProvider@graphic@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXUnoTunnel@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A -?valueOf@OUString@rtl@@SA?AV12@_JF@Z -?value_type@_STL@@YAPAGPBG@Z -?value_type@_STL@@YAPAVOUString@rtl@@PBV23@@Z -?clear@?$Reference@VXNameAccess@container@star@sun@com@@@uno@star@sun@com@@QAAXXZ -?clear@?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QAAXXZ -?clear@?$Reference@VXSimpleFileAccess@ucb@star@sun@com@@@uno@star@sun@com@@QAAXXZ -??0?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@QAE@ABU?$less@K@1@ABV?$allocator@K@1@@Z -??0?$_Rb_tree_base@KV?$allocator@K@_STL@@@_STL@@QAE@ABV?$allocator@K@1@@Z -??0?$_Rb_tree_iterator@KU?$_Const_traits@K@_STL@@@_STL@@QAE@PAU?$_Rb_tree_node@K@1@@Z -??0?$_Rb_tree_iterator@KU?$_Nonconst_traits@K@_STL@@@_STL@@QAE@ABU01@@Z -??0?$_Rb_tree_iterator@KU?$_Nonconst_traits@K@_STL@@@_STL@@QAE@PAU?$_Rb_tree_node@K@1@@Z -??0?$_STLP_alloc_proxy@PAKKV?$allocator@K@_STL@@@_STL@@QAE@ABV?$allocator@K@1@PAK@Z -??0?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@K@_STL@@U12@V?$allocator@U?$_Rb_tree_node@K@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_Rb_tree_node@K@_STL@@@1@PAU?$_Rb_tree_node@K@1@@Z -??0?$_Vector_base@KV?$allocator@K@_STL@@@_STL@@QAE@ABV?$allocator@K@1@@Z -??0?$allocator@K@_STL@@QAE@ABV01@@Z -??0?$allocator@K@_STL@@QAE@XZ -??0?$allocator@U?$_Rb_tree_node@K@_STL@@@_STL@@QAE@ABV01@@Z -??0?$allocator@U?$_Rb_tree_node@K@_STL@@@_STL@@QAE@ABV?$allocator@K@1@@Z -??0?$pair@U?$_Rb_tree_iterator@KU?$_Const_traits@K@_STL@@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@KU?$_Const_traits@K@_STL@@@1@AB_N@Z -??0?$pair@U?$_Rb_tree_iterator@KU?$_Nonconst_traits@K@_STL@@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@KU?$_Nonconst_traits@K@_STL@@@1@AB_N@Z -??0?$set@KU?$less@K@_STL@@V?$allocator@K@2@@_STL@@QAE@XZ -??0?$vector@KV?$allocator@K@_STL@@@_STL@@QAE@ABV?$allocator@K@1@@Z -??1?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@QAE@XZ -??1?$_Rb_tree_base@KV?$allocator@K@_STL@@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAKKV?$allocator@K@_STL@@@_STL@@QAE@XZ -??1?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@K@_STL@@U12@V?$allocator@U?$_Rb_tree_node@K@_STL@@@2@@_STL@@QAE@XZ -??1?$_Vector_base@KV?$allocator@K@_STL@@@_STL@@QAE@XZ -??1?$allocator@K@_STL@@QAE@XZ -??1?$allocator@U?$_Rb_tree_node@K@_STL@@@_STL@@QAE@XZ -??1?$set@KU?$less@K@_STL@@V?$allocator@K@2@@_STL@@QAE@XZ -??1?$vector@KV?$allocator@K@_STL@@@_STL@@QAE@XZ -??D?$_Rb_tree_iterator@KU?$_Const_traits@K@_STL@@@_STL@@QBEABKXZ -??E?$_Rb_tree_iterator@KU?$_Const_traits@K@_STL@@@_STL@@QAE?AU01@H@Z -??F?$_Rb_tree_iterator@KU?$_Nonconst_traits@K@_STL@@@_STL@@QAEAAU01@XZ -??R?$_Identity@K@_STL@@QBEABKABK@Z -??R?$less@K@_STL@@QBE_NABK0@Z -?_Construct@_STL@@YAXPAKABK@Z -?_Destroy@_STL@@YAXPAK0@Z -?_Destroy@_STL@@YAXPAK@Z -?_IsOKToMemCpy@_STL@@YA?AU?$_OKToMemCpy@KK@1@PAK0@Z -?_M_allocate_and_copy@?$vector@KV?$allocator@K@_STL@@@_STL@@IAEPAKIPAK0@Z -?_M_clear@?$vector@KV?$allocator@K@_STL@@@_STL@@IAEXXZ -?_M_create_node@?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@IAEPAU?$_Rb_tree_node@K@2@ABK@Z -?_M_empty_initialize@?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@AAEXXZ -?_M_erase@?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@AAEXPAU?$_Rb_tree_node@K@2@@Z -?_M_insert@?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@AAE?AU?$_Rb_tree_iterator@KU?$_Nonconst_traits@K@_STL@@@2@PAU_Rb_tree_node_base@2@0ABK0@Z -?_M_insert_overflow@?$vector@KV?$allocator@K@_STL@@@_STL@@IAEXPAKABKABU__true_type@2@I_N@Z -?_M_leftmost@?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@IBEAAPAU?$_Rb_tree_node@K@2@XZ -?_M_rightmost@?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@IBEAAPAU?$_Rb_tree_node@K@2@XZ -?_M_root@?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@IBEAAPAU?$_Rb_tree_node@K@2@XZ -?_M_set@?$vector@KV?$allocator@K@_STL@@@_STL@@IAEXPAK00@Z -?_Ret@?$_BothPtrType@PAKPAK@_STL@@SA?AU__true_type@2@XZ -?_Ret@?$_OKToMemCpy@KK@_STL@@SA?AU__false_type@2@XZ -?_S_color@?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@KAAA_NPAU?$_Rb_tree_node@K@2@@Z -?_S_key@?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@KAABKPAU?$_Rb_tree_node@K@2@@Z -?_S_key@?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@KAABKPAU_Rb_tree_node_base@2@@Z -?_S_left@?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@KAAAPAU?$_Rb_tree_node@K@2@PAU32@@Z -?_S_parent@?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@KAAAPAU?$_Rb_tree_node@K@2@PAU32@@Z -?_S_right@?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@KAAAPAU?$_Rb_tree_node@K@2@PAU32@@Z -?_S_value@?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@KAAAKPAU?$_Rb_tree_node@K@2@@Z -?__copy@_STL@@YAPAKPAK00ABUrandom_access_iterator_tag@1@PAH@Z -?__copy_aux@_STL@@YAPAKPAK00ABU__true_type@1@@Z -?__copy_ptrs@_STL@@YAPAKPAK00ABU__false_type@1@@Z -?__copy_ptrs@_STL@@YAPAKPAK00ABU__true_type@1@@Z -?__destroy@_STL@@YAXPAK00@Z -?__destroy_aux@_STL@@YAXPAK0ABU__true_type@1@@Z -?__uninitialized_copy@_STL@@YAPAKPAK00ABU__true_type@1@@Z -?allocate@?$allocator@K@_STL@@QBEPAKIPBX@Z -?allocate@?$allocator@U?$_Rb_tree_node@K@_STL@@@_STL@@QBEPAU?$_Rb_tree_node@K@2@IPBX@Z -?back@?$vector@KV?$allocator@K@_STL@@@_STL@@QAEAAKXZ -?begin@?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@QAE?AU?$_Rb_tree_iterator@KU?$_Nonconst_traits@K@_STL@@@2@XZ -?begin@?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@QBE?AU?$_Rb_tree_iterator@KU?$_Const_traits@K@_STL@@@2@XZ -?begin@?$set@KU?$less@K@_STL@@V?$allocator@K@2@@_STL@@QBE?AU?$_Rb_tree_iterator@KU?$_Const_traits@K@_STL@@@2@XZ -?begin@?$vector@KV?$allocator@K@_STL@@@_STL@@QAEPAKXZ -?capacity@?$vector@KV?$allocator@K@_STL@@@_STL@@QBEIXZ -?clear@?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@QAEXXZ -?clear@?$vector@KV?$allocator@K@_STL@@@_STL@@QAEXXZ -?deallocate@?$allocator@K@_STL@@QBEXPAKI@Z -?deallocate@?$allocator@U?$_Rb_tree_node@K@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@K@2@I@Z -?distance_type@_STL@@YAPAHPBK@Z -?empty@?$vector@KV?$allocator@K@_STL@@@_STL@@QBE_NXZ -?end@?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@QBE?AU?$_Rb_tree_iterator@KU?$_Const_traits@K@_STL@@@2@XZ -?end@?$set@KU?$less@K@_STL@@V?$allocator@K@2@@_STL@@QBE?AU?$_Rb_tree_iterator@KU?$_Const_traits@K@_STL@@@2@XZ -?end@?$vector@KV?$allocator@K@_STL@@@_STL@@QAEPAKXZ -?erase@?$vector@KV?$allocator@K@_STL@@@_STL@@QAEPAKPAK0@Z -?fill_n@_STL@@YAPAKPAKIABK@Z -?insert@?$set@KU?$less@K@_STL@@V?$allocator@K@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@KU?$_Const_traits@K@_STL@@@_STL@@_N@2@ABK@Z -?insert_unique@?$_Rb_tree@KKU?$_Identity@K@_STL@@U?$less@K@2@V?$allocator@K@2@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@KU?$_Nonconst_traits@K@_STL@@@_STL@@_N@2@ABK@Z -?iterator_category@_STL@@YA?AUrandom_access_iterator_tag@1@PBK@Z -?push_back@?$vector@KV?$allocator@K@_STL@@@_STL@@QAEXABK@Z -?reserve@?$vector@KV?$allocator@K@_STL@@@_STL@@QAEXI@Z -?size@?$vector@KV?$allocator@K@_STL@@@_STL@@QBEIXZ -?value_type@_STL@@YAPAKPBK@Z diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/util/makefile.mk ooo_SRC680_m202_src.aquavcl01/vcl/util/makefile.mk --- ooo_SRC680_m202_src.orig/vcl/util/makefile.mk 2007-01-23 07:36:24.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/vcl/util/makefile.mk 2007-02-02 12:10:23.000000000 +0100 @@ -152,7 +152,7 @@ $(SLB)$/components.lib -.IF "$(GUI)" == "UNX" +.IF "$(GUI)" == "UNX" && "$(GUIBASE)"!="aqua" LIB1FILES+=$(SLB)$/salplug.lib .ELSE LIB1FILES+= \ @@ -225,6 +225,17 @@ # --- UNX ---------------------------------------------------------------- +# FIXME: This all should be done in unxmacx.mk, no need to add hacks +# like this here again... + +#.IF "$(GUIBASE)"=="aqua" +#SHL1STDLIBS += -framework Cocoa -framework Carbon -framework AppKit +#.ENDIF + +#.IF "$(OS)"=="MACOSX" +#SHL1STDLIBS += -framework Foundation -framework CoreFoundation +#.ENDIF # "$(OS)"=="MACOSX" + # UNX sal plugins .IF "$(GUI)" == "UNX" @@ -242,7 +253,6 @@ # libs for generic plugin SHL2STDLIBS=\ $(VCLLIB)\ - -lpsp$(VERSION)$(DLLPOSTFIX)\ $(SOTLIB) \ $(UNOTOOLSLIB) \ $(TOOLSLIB) \ @@ -253,11 +263,17 @@ $(VOSLIB) \ $(SALLIB) +.IF "$(GUIBASE)"!="aqua" +SHL2STDLIBS+=-lpsp$(VERSION)$(DLLPOSTFIX) +.ENDIF + # prepare linking of Xinerama .IF "$(USE_XINERAMA)" != "NO" .IF "$(OS)"=="MACOSX" +.IF "$(GUIBASE)"!="aqua" XINERAMALIBS=-lXinerama +.ENDIF #aqua .ELSE .IF "$(OS)" != "SOLARIS" || "$(USE_XINERAMA_VERSION)" == "Xorg" .IF "$(XINERAMA_LINK)" == "dynamic" @@ -277,11 +293,15 @@ .IF "$(ENABLE_PASF)" != "" +SHL2STDLIBS += -lsndfile -lportaudio .IF "$(OS)"=="MACOSX" SHL2STDLIBS += -framework CoreAudio -framework AudioToolbox -.ENDIF -SHL2STDLIBS += -lsndfile -lportaudio -.ENDIF # ENABLE_PASF +.ENDIF # "$(OS)"=="MACOSX" +.ENDIF # "$(ENABLE_PASF)"!="" + +.IF "$(GUIBASE)"=="aqua" +SHL2STDLIBS += -framework Cocoa -framework Carbon +.ENDIF # aqua .IF "$(ENABLE_NAS)" != "" SHL2STDLIBS += -laudio @@ -310,8 +330,10 @@ # dummy plugin LIB3TARGET=$(SLB)$/idummy_plug_ +.IF "$(GUIBASE)"!="aqua" LIB3FILES= \ $(SLB)$/dapp.lib +.ENDIF SHL3TARGET=vclplug_dummy$(UPD)$(DLLPOSTFIX) SHL3IMPLIB=idummy_plug_ SHL3LIBS=$(LIB3TARGET) @@ -320,7 +342,6 @@ # libs for dummy plugin SHL3STDLIBS=\ $(VCLLIB)\ - -lpsp$(VERSION)$(DLLPOSTFIX)\ $(SOTLIB) \ $(UNOTOOLSLIB) \ $(TOOLSLIB) \ @@ -331,6 +352,10 @@ $(VOSLIB) \ $(SALLIB) +.IF "$(GUIBASE)"!="aqua" +SHL3STDLIBS += -lpsp$(VERSION)$(DLLPOSTFIX) +.ENDIF + # gtk plugin .IF "$(ENABLE_GTK)" != "" PKGCONFIG_MODULES=gtk+-2.0 gthread-2.0 diff -x CVS -urN ooo_SRC680_m202_src.orig/vcl/workben/svdem.cxx ooo_SRC680_m202_src.aquavcl01/vcl/workben/svdem.cxx --- ooo_SRC680_m202_src.orig/vcl/workben/svdem.cxx 2006-12-05 12:38:47.000000000 +0100 +++ ooo_SRC680_m202_src.aquavcl01/vcl/workben/svdem.cxx 2007-02-20 19:41:08.000000000 +0100 @@ -43,11 +43,16 @@ #include #include #include +#include +#include #include #include #include +#include +#include + using namespace ::com::sun::star::uno; using namespace ::com::sun::star::lang; // ----------------------------------------------------------------------- @@ -89,10 +94,22 @@ void Main() { + /* + IntroWindow splash; + splash.Show(); + sleep(5); + splash.Hide(); + */ + MyWin aMainWin( NULL, WB_APP | WB_STDWORK ); aMainWin.SetText( XubString( RTL_CONSTASCII_USTRINGPARAM( "VCL - Workbench" ) ) ); aMainWin.Show(); + /* + InfoBox ib(NULL, String((sal_Char*)"Test", sizeof("Test"))); + ib.Execute(); + */ + Application::Execute(); } @@ -114,14 +131,16 @@ void MyWin::MouseButtonDown( const MouseEvent& rMEvt ) { - WorkWindow::MouseButtonDown( rMEvt ); + Rectangle aRect(0,0,4,4); + aRect.SetPos( rMEvt.GetPosPixel() ); + SetFillColor(Color(COL_RED)); + DrawRect( aRect ); } // ----------------------------------------------------------------------- void MyWin::MouseButtonUp( const MouseEvent& rMEvt ) { - WorkWindow::MouseButtonUp( rMEvt ); } // ----------------------------------------------------------------------- @@ -142,7 +161,21 @@ void MyWin::Paint( const Rectangle& rRect ) { - WorkWindow::Paint( rRect ); + fprintf(stderr, "MyWin::Paint(%ld,%ld,%ld,%ld)\n", rRect.getX(), rRect.getY(), rRect.getWidth(), rRect.getHeight()); + + Size aSz(GetSizePixel()); + Point aPt; + Rectangle r(aPt, aSz); + + SetFillColor(Color(COL_BLUE)); + SetLineColor(Color(COL_YELLOW)); + + DrawRect( r ); + + for(int i=0; i