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="ui_dialogs_XFilePreview" script:language="StarBasic"> 4 5 6'************************************************************************* 7' 8' Licensed to the Apache Software Foundation (ASF) under one 9' or more contributor license agreements. See the NOTICE file 10' distributed with this work for additional information 11' regarding copyright ownership. The ASF licenses this file 12' to you under the Apache License, Version 2.0 (the 13' "License"); you may not use this file except in compliance 14' with the License. You may obtain a copy of the License at 15' 16' http://www.apache.org/licenses/LICENSE-2.0 17' 18' Unless required by applicable law or agreed to in writing, 19' software distributed under the License is distributed on an 20' "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 21' KIND, either express or implied. See the License for the 22' specific language governing permissions and limitations 23' under the License. 24' 25'************************************************************************* 26 27 28 29 30 31' Be sure that all variables are dimensioned: 32option explicit 33 34 35 36Sub RunTest() 37 38'************************************************************************* 39' INTERFACE: 40' com.sun.star.ui.dialogs.XFilePreview 41'************************************************************************* 42On Error Goto ErrHndl 43 Dim bOK As Boolean 44 Dim formats As Variant 45 Dim tmp As Integer 46 Dim state As Boolean, resState As Boolean 47 Dim i As Integer 48 49 Test.StartMethod("getSupportedImageFormats()") 50 bOK = true 51 formats = oObj.getSupportedImageFormats() 52 bOK = bOK AND NOT isNull(formats) 53 Out.Log("Supported image formats :") 54 for i = lbound(formats()) to ubound(formats()) 55 Out.Log(" " + formats(i)) 56 next i 57 Test.MethodTested("getSupportedImageFormats()", bOK) 58 59 Test.StartMethod("getTargetColorDepth()") 60 bOK = true 61 tmp = oObj.getTargetColorDepth() 62 Out.Log("ColorDepth = " + tmp) 63 Test.MethodTested("getTargetColorDepth()", bOK) 64 65 Test.StartMethod("getAvailableWidth()") 66 bOK = true 67 tmp = oObj.getAvailableWidth() 68 Out.Log("AvailableWidth = " + tmp) 69 Test.MethodTested("getAvailableWidth()", bOK) 70 71 Test.StartMethod("getAvailableHeight()") 72 bOK = true 73 tmp = oObj.getAvailableHeight() 74 Out.Log("AvailableHeight = " + tmp) 75 Test.MethodTested("getAvailableHeight()", bOK) 76 77 Test.StartMethod("setImage()") 78 bOK = true 79 Dim emptyImage As Variant 80 oObj.setImage(com.sun.star.ui.dialogs.FilePreviewImageFormats.BITMAP, emptyImage) 81 Out.Log("No documentation is available for this method !!!!") 82 Test.MethodTested("setImage()", bOK) 83 84 Test.StartMethod("getShowState()") 85 bOK = true 86 state = oObj.getShowState() 87 Out.Log("Was :" + state) 88 89 Dim bRet As Boolean 90 Test.StartMethod("setShowState()") 91 bOK = true 92 Out.Log("Set to :" + (NOT state)) 93 bRet = oObj.setShowState(NOT state) 94 Out.Log("The returned value is " + bRet) 95 resState = oObj.getShowState() 96 Out.Log("Get : " + resState) 97 bOK = bOK AND ( NOT bRet OR (resState = NOT state)) 98 Test.MethodTested("getShowState()", bOK) 99 Test.MethodTested("setShowState()", bOK) 100 101Exit Sub 102ErrHndl: 103 Test.Exception() 104 bOK = false 105 resume next 106End Sub 107</script:module> 108