diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-06-27 11:15:12 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-06-27 11:15:12 +0000 |
commit | 882dff32988ee25e84776575626a3e4ecd4c8806 (patch) | |
tree | ebc8313c5dbb8149a3e7e25c7632446c99bc783f /canvas/source | |
parent | 098cce1d5c66278b20c2efe69dca4bc59883a613 (diff) |
INTEGRATION: CWS awttree01 (1.1.2); FILE ADDED
2007/04/25 12:22:12 thb 1.1.2.1: #i75289# Added XSimpleCanvas canvas wrapper service (instantiate with com.sun.star.rendering.SimpleCanvas from the service manager)
Diffstat (limited to 'canvas/source')
-rw-r--r-- | canvas/source/simplecanvas/exports.dxp | 3 | ||||
-rw-r--r-- | canvas/source/simplecanvas/exports.map | 9 | ||||
-rw-r--r-- | canvas/source/simplecanvas/makefile.mk | 70 |
3 files changed, 82 insertions, 0 deletions
diff --git a/canvas/source/simplecanvas/exports.dxp b/canvas/source/simplecanvas/exports.dxp new file mode 100644 index 000000000000..0c2e3e7cddd7 --- /dev/null +++ b/canvas/source/simplecanvas/exports.dxp @@ -0,0 +1,3 @@ +component_getImplementationEnvironment +component_writeInfo +component_getFactory
\ No newline at end of file diff --git a/canvas/source/simplecanvas/exports.map b/canvas/source/simplecanvas/exports.map new file mode 100644 index 000000000000..071cac1c1b35 --- /dev/null +++ b/canvas/source/simplecanvas/exports.map @@ -0,0 +1,9 @@ +CAN_1_0 { + global: + component_getImplementationEnvironment; + component_writeInfo; + component_getFactory; + component_getDescriptionFunc; + local: + *; +}; diff --git a/canvas/source/simplecanvas/makefile.mk b/canvas/source/simplecanvas/makefile.mk new file mode 100644 index 000000000000..04e0181dfe00 --- /dev/null +++ b/canvas/source/simplecanvas/makefile.mk @@ -0,0 +1,70 @@ +#************************************************************************* +# +# OpenOffice.org - a multi-platform office productivity suite +# +# $RCSfile: makefile.mk,v $ +# +# $Revision: 1.2 $ +# +# last change: $Author: hr $ $Date: 2007-06-27 12:15:12 $ +# +# 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=canvas +TARGET=simplecanvas +ENABLE_EXCEPTIONS=TRUE + +# --- Settings ----------------------------------------------------------- + +.INCLUDE : settings.mk +DLLPRE = + +# --- Common ---------------------------------------------------------- + +.IF "$(verbose)"!="" || "$(VERBOSE)"!="" +CDEFS+= -DVERBOSE +.ENDIF + +SLOFILES = $(SLO)$/simplecanvasimpl.obj + +SHL1TARGET=$(TARGET).uno + +SHL1STDLIBS= $(CPPULIB) $(SALLIB) $(COMPHELPERLIB) $(CPPUHELPERLIB) $(BASEGFXLIB) $(CANVASTOOLSLIB) + +SHL1IMPLIB=i$(TARGET) +SHL1LIBS=$(SLB)$/$(TARGET).lib +SHL1DEF=$(MISC)$/$(SHL1TARGET).def + +SHL1VERSIONMAP=exports.map + +DEF1NAME=$(SHL1TARGET) +DEF1EXPORTFILE=exports.dxp + +# ========================================================================== + +.INCLUDE : target.mk |