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_OCurrencyModel" 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 46Global oForm As Object 47 48 49Sub CreateObj() 50 51'************************************************************************* 52' COMPONENT: 53' forms.OCurrencyModel 54'************************************************************************* 55On Error Goto ErrHndl 56 57 Dim bOK As Boolean 58 Dim oShape As Object, oDrawPage As Object 59 60 bOK = true 61' --- create a document if needed 62 63 oDoc = utils.createDocument("swriter", cObjectName) 64 65 oShape = toolkittools.addControlToDefaultForm("CurrencyField", 1000, 1000, 2000, 1000) 66 oObj = oShape.getControl() 67 oShape = toolkittools.addControlToDefaultForm("CurrencyField", 1000, 3000, 2000, 1000) 68 oComponentInstance = oShape.getControl() 69 oShape = toolkittools.addControlToDefaultForm("CurrencyField", 1000, 5000, 2000, 1000) 70 oPersistInstance = oShape.getControl() 71 72 'get control from document 73 oDrawPage = oDoc.DrawPage 74 oForm = oDrawPage.Forms.getByName("Standard") 75 76 oForm.DataSourceName = "Bibliography" 77 oForm.Command = "biblio" 78 oForm.CommandType = com.sun.star.sdb.CommandType.TABLE 79 80 oObj.DataField = "Pages" 81 82 oForm.load() 83 84 ' for XUpdateBroadcaster 85 bCustomUpdate = true 86 87 88Exit Sub 89ErrHndl: 90 Test.Exception() 91End Sub 92 93Global aChangedValue As Double 94 95' for XBoundComponent 96Sub prepareCommit() 97On Error Goto ErrHndl 98 Out.Log("prepareCommit() called.") 99 if NOT (isNull(oObj.Value) OR isEmpty(oObj.Value)) then 100 aChangedValue = oObj.Value + 1 101 else 102 aChangedValue = 1 103 end if 104 oObj.Value = aChangedValue 105 106 exit sub 107ErrHndl: 108 Test.Exception() 109End Sub 110 111' for XBoundComponent 112Function checkCommit() As Boolean 113On Error Goto ErrHndl 114 Out.Log("checkCommit() called.") 115 Dim rowValue As Variant 116 117 rowValue = oForm.getDouble(oForm.findColumn("Pages")) 118 Out.Log("Value was set to " + aChangedValue ) 119 Out.Log("the value in current row is " + rowValue) 120 checkCommit() = (rowValue = aChangedValue) 121 122 exit function 123ErrHndl: 124 Test.Exception() 125End Function 126 127' for XUpdateBroadcaster 128Sub UpdateComponent() 129 oObj.Value = oObj.Value + 1 130 oObj.commit() 131End Sub 132</script:module> 133