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_ODateModel" 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.ODateModel 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("DateField", 1000, 1000, 2000, 1000) 66 oObj = oShape.getControl() 67 oShape = toolkittools.addControlToDefaultForm("DateField", 1000, 3000, 2000, 1000) 68 oComponentInstance = oShape.getControl() 69 oShape = toolkittools.addControlToDefaultForm("DateField", 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 = "Custom1" 81 82 oForm.load() 83 84 ' for XUpdateBroadcaster 85 bCustomUpdate = true 86 87Exit Sub 88ErrHndl: 89 Test.Exception() 90End Sub 91 92Global aChangedValue As Variant 93 94' for XBoundComponent 95Sub prepareCommit() 96On Error Goto ErrHndl 97 Dim dat As New com.sun.star.util.Date 98 99 Out.Log("prepareCommit() called.") 100 if NOT (isNull(oObj.Date) OR isEmpty(oObj.Date)) then 101 aChangedValue = oObj.Date + 1 102 else 103 aChangedValue = 1 104 end if 105 oObj.Date = aChangedValue 106 107 exit sub 108ErrHndl: 109 Test.Exception() 110End Sub 111 112' for XBoundComponent 113Function checkCommit() As Boolean 114On Error Goto ErrHndl 115 Out.Log("checkCommit() called.") 116 Dim rowValue As Variant 117 118 oForm.updateRow() 119 oForm.reload() 120 rowValue = oObj.Date 121 Out.Log("Value was set to " + aChangedValue ) 122 Out.Log("the value in current row is " + rowValue) 123 checkCommit() = (rowValue = aChangedValue) 124 125 exit function 126ErrHndl: 127 Test.Exception() 128End Function 129 130' for XUpdateBroadcaster 131Sub UpdateComponent() 132 oObj.Date = oObj.Date + 1 133 oObj.commit() 134End Sub 135</script:module> 136