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="toolkit_UnoControlButton" 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 Object
53
54
55Sub CreateObj()
56
57'*************************************************************************
58' COMPONENT:
59' toolkit.UnoControlButton
60'*************************************************************************
61On Error Goto ErrHndl
62    Dim oShape1 As Object
63    Dim oShape2 As Object
64    Dim oShape3 As Object
65    Dim oCurrCtrl As Object
66    Dim oWin As Object
67    Dim oKit As Object
68    Dim oDevice As Object
69    Dim oDoc2 As Object
70
71    oDoc = utils.createDocument("swriter", cObjectName)
72    oDoc2 = utils.createDocument("swriter", cObjectName &amp; "1")
73
74    oShape1 = ToolkitTools.createUnoControlShape("CommandButton", "UnoControlButton")
75    oShape2 = ToolkitTools.createUnoControlShape("CommandButton", "UnoControlButton")
76    oShape3 = ToolkitTools.createControlShape("TextField")
77
78    ToolkitTools.addShape(oShape1)
79    ToolkitTools.addShape(oShape2)
80    ToolkitTools.addShape(oShape3)
81
82    oModel = oShape1.getControl()
83    oCurrCtrl = oDoc.getCurrentController()
84    oWin = oCurrCtrl.getControl(oModel).getPeer()
85    oKit = oWin.getToolkit()
86    oDevice = oKit.createScreenCompatibleDevice(200, 200)
87    oGraphics = oDevice.createGraphics()
88
89    oObj = oCurrCtrl.getControl(oModel)
90    oComponentInstance = oDoc.getCurrentcontroller.getControl(oShape2.getControl())
91    oContext = oDoc
92    oWinpeer = oWin
93    oToolkit = oKit
94    oXWindow =  oDoc2.getCurrentController().getFrame().getComponentWindow()
95Exit Sub
96ErrHndl:
97    Test.Exception()
98End Sub
99
100Sub DisposeObj()
101    'Re-open this document to close it successfully
102    Dim oDoc2 As Object
103    oDoc2 = utils.createDocument("swriter", cObjectName &amp; "1")
104    oDoc2.Dispose()
105End Sub
106</script:module>
107