1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
3<script:module xmlns:script="http://openoffice.org/2000/script" script:name="xmloff_Draw_XMLContentExporter" script:language="StarBasic">
4
5
6'*************************************************************************
7'
8' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9'
10' Copyright 2000, 2010 Oracle and/or its affiliates.
11'
12' OpenOffice.org - a multi-platform office productivity suite
13'
14' This file is part of OpenOffice.org.
15'
16' OpenOffice.org is free software: you can redistribute it and/or modify
17' it under the terms of the GNU Lesser General Public License version 3
18' only, as published by the Free Software Foundation.
19'
20' OpenOffice.org is distributed in the hope that it will be useful,
21' but WITHOUT ANY WARRANTY; without even the implied warranty of
22' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23' GNU Lesser General Public License version 3 for more details
24' (a copy is included in the LICENSE file that accompanied this code).
25'
26' You should have received a copy of the GNU Lesser General Public License
27' version 3 along with OpenOffice.org.  If not, see
28' <http://www.openoffice.org/license.html>
29' for a copy of the LGPLv3 License.
30'
31'*************************************************************************
32'*************************************************************************
33
34
35
36' Be sure that all variables are dimensioned:
37option explicit
38
39
40' REQUIRED VARIABLES for interface/service tests:
41
42'Required for com.sun.star.document.XFilter
43Global oFilterDescriptor As Variant
44
45'Required for com.sun.star.lang.XInitialization
46Global aInitArgs() As Variant
47
48'Required for com.sun.star.document.XExporter
49Global oSrcDocument As Object
50
51
52Sub CreateObj()
53
54'*************************************************************************
55' COMPONENT:
56' xmloff.Draw.XMLContentExporter
57'*************************************************************************
58On error goto ErrHndl
59    Dim initArgs(0) As Object
60    Dim oMSF As Object
61    Dim oDrawPages As Variant
62    Dim printXML As Boolean
63    Dim expString1 As String
64    Dim expString2 As String
65    Dim filter As Variant
66    Dim Tag1, Tag2, Tag3, Tag4, Tag5 As Variant
67
68    printXML = true
69    expString1 = "NewSlide1"
70    expString2 = "NewSlide2"
71    oMSF = getProcessServiceManager()
72    oDoc = utils.createDocument("sdraw", cObjectName)
73    oDocHandler = oMSF.createInstanceWithArguments("basichelper.DocumentHandler", Array(printXML))
74
75    Tag1 = Array("office:document-content")
76    Tag2 = Array("office:body")
77    Tag3 = Array("draw:page","draw:name","NewSlide1")
78    Tag4 = Array("draw:page","draw:name","NewSlide2")
79    Tag5 = Array("draw:page")
80    filter = Array( _
81                Array("TagExists", Tag1, Tag2, Tag3, Tag4), _
82                Array("TagEnclosed", Tag5, Tag2) _
83             )
84
85    oDocHandler.initialize(filter)
86
87    initArgs(0) = oDocHandler
88    aInitArgs = initArgs()
89    oObj = oMSF.createInstanceWithArguments("com.sun.star.comp.Draw.XMLContentExporter", initArgs())
90
91    oDrawPages = oDoc.getDrawPages()
92    oDrawPages.insertNewByIndex(1)
93    oDrawPages.getByIndex(0).setName(expString1)
94    oDrawPages.getByIndex(1).setName(expString2)
95
96    oObj.setSourceDocument(oDoc)
97
98    Dim aFilterDescr(0) As New com.sun.star.beans.PropertyValue
99    aFilterDescr(0).Name = "FilterName"
100    aFilterDescr(0).Value = "sdraw: StarOffice XML (Draw)"
101    oFilterDescriptor = aFilterDescr()
102
103    oSrcDocument = oDoc
104Exit Sub
105ErrHndl:
106    Test.Exception()
107End Sub
108
109Global oDocHandler As Object
110
111Function checkFilter() As Boolean
112    checkFilter = oDocHandler.getByName("XMLIsCorrect")
113    Out.Log(oDocHandler.getByName("XMLCode"))
114End Function
115</script:module>
116