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="forms_OEditControl" 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 36' REQUIRED VARIABLES for interface/service tests: 37 38' Required for com.sun.star.awt.XView: 39 Global oGraphics as Object 40 41' Required for com.sun.star.lang.XComponent: 42 Global oComponentInstance As Object ' it will be disposed 43 44' Required for com.sun.star.awt.XControl: 45 Global oContext As Object 46 Global oWinpeer As Object 47 Global oToolkit As Object 48 Global oModel As Object 49 50' Required for com.sun.star.awt.XWindow: 51 Global oXWindow as Object 52 Global oCtrlShape As Variant 53 54 55 56Sub CreateObj() 57 58'************************************************************************* 59' COMPONENT: 60' forms.OEditControl 61'************************************************************************* 62On Error Goto ErrHndl 63 64 Dim bOK As Boolean 65 Dim oShape1 As Object 66 Dim oShape2 As Object 67 Dim oShape3 As Object 68 Dim oCurrCtrl As Object 69 Dim oWin As Object 70 Dim oKit As Object 71 Dim oDevice As Object 72 73 bOK = true 74 75 oDoc = utils.createDocument("swriter", cObjectName) 76 77 oShape1 = toolkittools.addControlToDefaultForm("TextField", 1000, 1000, 2000, 1000) 78 oShape2 = toolkittools.addControlToDefaultForm("TextField", 1000, 3000, 2000, 1000) 79 oShape3 = toolkittools.addControlToDefaultForm("TextField", 1000, 5000, 2000, 1000) 80 81 oModel = oShape1.getControl() 82 oCurrCtrl = oDoc.getCurrentController() 83 oWin = oCurrCtrl.getControl(oModel).getPeer() 84 oKit = oWin.getToolkit() 85 oDevice = oKit.createScreenCompatibleDevice(200,200) 86 oGraphics = oDevice.createGraphics() 87 88 oObj = oCurrCtrl.getControl(oModel) 89 oComponentInstance = oCurrCtrl.getControl(oShape2.getControl()) 90 oContext = oDoc 91 oWinpeer = oWin 92 oToolkit = oKit 93 oXWindow = oCurrCtrl.getControl(oShape3.getControl()) 94 oCtrlShape = oShape1 95 96 97Exit Sub 98ErrHndl: 99 Test.Exception() 100End Sub 101</script:module> 102