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_Impress_XMLMetaExporter" 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
37' Be sure that all variables are dimensioned:
38option explicit
39
40
41' REQUIRED VARIABLES for interface/service tests:
42
43'Required for com.sun.star.document.XFilter
44Global oFilterDescriptor As Variant
45
46'Required for com.sun.star.lang.XInitialization
47Global aInitArgs() As Variant
48
49'Required for com.sun.star.document.XExporter
50Global oSrcDocument As Object
51
52
53Sub CreateObj()
54
55'*************************************************************************
56' COMPONENT:
57' xmloff.Impress.XMLMetaExporter
58'*************************************************************************
59On error goto ErrHndl
60    Dim initArgs(0) As Object
61    Dim oMSF As Object
62    Dim oDocInfo As Object
63    Dim printXML As Boolean
64    Dim expString As String
65    Dim Tag1, Tag2, Tag3 As Variant
66    Dim filter As Variant
67
68    printXML = true
69    expString = "NewTitleOfDrawDocument"
70    oMSF = getProcessServiceManager()
71    oDoc = utils.createImpressDocument(cObjectName)
72    oDocHandler = oMSF.createInstanceWithArguments("basichelper.DocumentHandler", Array(printXML))
73
74    Tag1 = Array("office:document-meta")
75    Tag2 = Array("office:meta")
76    Tag3 = Array("dc:title")
77    filter = Array( _
78                Array("TagExists", Tag1), _
79                Array("TagEnclosed", Tag2, Tag1), _
80                Array("TagEnclosed", Tag3, Tag2), _
81                Array("CharsEnclosed", Tag3, expString) _
82             )
83
84    oDocHandler.initialize(filter)
85
86    initArgs(0) = oDocHandler
87    aInitArgs = initArgs()
88    oObj = oMSF.createInstanceWithArguments("com.sun.star.comp.Impress.XMLMetaExporter", initArgs())
89
90    oDocInfo = oDoc.getDocumentInfo()
91    oDocInfo.setPropertyValue("Title", expString)
92
93    oObj.setSourceDocument(oDoc)
94
95    Dim aFilterDescr(0) As New com.sun.star.beans.PropertyValue
96    aFilterDescr(0).Name = "FilterName"
97    aFilterDescr(0).Value = "simpress: StarOffice XML (Impress)"
98    oFilterDescriptor = aFilterDescr()
99
100    oSrcDocument = oDoc
101Exit Sub
102ErrHndl:
103    Test.Exception()
104End Sub
105
106Global oDocHandler As Object
107
108Function checkFilter() As Boolean
109    checkFilter = oDocHandler.getByName("XMLIsCorrect")
110    Out.Log(oDocHandler.getByName("XMLCode"))
111End Function
112</script:module>
113