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_OComboBoxModel" 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' REQUIRED VARIABLES for interface/service tests: 36 37' for XComponent 38Global oComponentInstance As Object 39 40' for XPersistObject 41Global oPersistInstance As Object 42 43' for XUpdateBroadcaster 44Global bCustomUpdate As Boolean 45 46' for relation function checkCommit 47Global oForm As Object 48 49 50Sub CreateObj() 51 52'************************************************************************* 53' COMPONENT: 54' forms.OComboBoxModel 55'************************************************************************* 56On Error Goto ErrHndl 57 Dim bOK As Boolean 58 Dim oCntrlShape As Object, oDrawPage As Object 59 60 bOK = true 61 ' --- create a document if needed 62 63 oDoc = utils.createDocument("swriter", cObjectName) 64 65 66 oCntrlShape = toolkittools.addControlToDefaultForm("ComboBox", 1000, 1000, 2000, 1000) 67 oObj = oCntrlShape.getControl() 68 oCntrlShape = toolkittools.addControlToDefaultForm("ComboBox", 1000, 3000, 2000, 1000) 69 oComponentInstance = oCntrlShape.getControl() 70 oCntrlShape = toolkittools.addControlToDefaultForm("ComboBox", 1000, 5000, 2000, 1000) 71 oPersistInstance = oCntrlShape.getControl() 72 73 'get control from document 74 oDrawPage = oDoc.DrawPage 75 oForm = oDrawPage.Forms.getByName("Standard") 76 77 oForm.DataSourceName = "Bibliography" 78 oForm.Command = "biblio" 79 oForm.CommandType = com.sun.star.sdb.CommandType.TABLE 80 81 oObj.DataField = "Author" 82 83 oForm.load() 84 85 ' for XUpdateBroadcaster 86 bCustomUpdate = true 87 88Exit Sub 89ErrHndl: 90 Test.Exception() 91End Sub 92 93Global sChangedText As String 94 95' for XBoundComponent 96Sub prepareCommit() 97On Error Goto ErrHndl 98 Out.Log("prepareCommit() called.") 99 sChangedText = "_" + oObj.Text 100 oObj.Text = sChangedText 101 102 exit sub 103ErrHndl: 104 Test.Exception() 105End Sub 106 107' for XBoundComponent 108Function checkCommit() As Boolean 109On Error Goto ErrHndl 110 Out.Log("checkCommit() called.") 111 Dim rowText As Variant 112 113 rowText = oForm.getString(oForm.findColumn("Author")) 114 checkCommit() = (rowText = sChangedText) 115 116 exit function 117ErrHndl: 118 Test.Exception() 119End Function 120 121' for XUpdateBroadcaster 122Sub UpdateComponent() 123 oObj.Text = "_" + oObj.Text 124 oObj.commit() 125End Sub 126</script:module> 127