1cdf0e10cSrcweir<?xml version="1.0" encoding="UTF-8"?>
2cdf0e10cSrcweir<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
3cdf0e10cSrcweir<script:module xmlns:script="http://openoffice.org/2000/script" script:name="forms_ORadioButtonModel" script:language="StarBasic">
4cdf0e10cSrcweir
5cdf0e10cSrcweir
6cdf0e10cSrcweir'*************************************************************************
7cdf0e10cSrcweir'
8*ce3cae9fSAndrew Rist'  Licensed to the Apache Software Foundation (ASF) under one
9*ce3cae9fSAndrew Rist'  or more contributor license agreements.  See the NOTICE file
10*ce3cae9fSAndrew Rist'  distributed with this work for additional information
11*ce3cae9fSAndrew Rist'  regarding copyright ownership.  The ASF licenses this file
12*ce3cae9fSAndrew Rist'  to you under the Apache License, Version 2.0 (the
13*ce3cae9fSAndrew Rist'  "License"); you may not use this file except in compliance
14*ce3cae9fSAndrew Rist'  with the License.  You may obtain a copy of the License at
15*ce3cae9fSAndrew Rist'
16*ce3cae9fSAndrew Rist'    http://www.apache.org/licenses/LICENSE-2.0
17*ce3cae9fSAndrew Rist'
18*ce3cae9fSAndrew Rist'  Unless required by applicable law or agreed to in writing,
19*ce3cae9fSAndrew Rist'  software distributed under the License is distributed on an
20*ce3cae9fSAndrew Rist'  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
21*ce3cae9fSAndrew Rist'  KIND, either express or implied.  See the License for the
22*ce3cae9fSAndrew Rist'  specific language governing permissions and limitations
23*ce3cae9fSAndrew Rist'  under the License.
24cdf0e10cSrcweir'
25cdf0e10cSrcweir'*************************************************************************
26cdf0e10cSrcweir
27cdf0e10cSrcweir
28cdf0e10cSrcweir
29*ce3cae9fSAndrew Rist
30*ce3cae9fSAndrew Rist
31cdf0e10cSrcweir' Be sure that all variables are dimensioned:
32cdf0e10cSrcweiroption explicit
33cdf0e10cSrcweir
34cdf0e10cSrcweir
35cdf0e10cSrcweir' REQUIRED VARIABLES for interface/service tests:
36cdf0e10cSrcweir
37cdf0e10cSrcweir' for XComponent
38cdf0e10cSrcweirGlobal oComponentInstance As Object
39cdf0e10cSrcweir
40cdf0e10cSrcweir' for XPersistObject
41cdf0e10cSrcweirGlobal oPersistInstance As Object
42cdf0e10cSrcweir
43cdf0e10cSrcweir' for XUpdateBroadcaster
44cdf0e10cSrcweirGlobal bCustomUpdate As Boolean
45cdf0e10cSrcweir
46cdf0e10cSrcweirGlobal oForm As Object
47cdf0e10cSrcweir
48cdf0e10cSrcweir
49cdf0e10cSrcweirSub CreateObj()
50cdf0e10cSrcweir
51cdf0e10cSrcweir'*************************************************************************
52cdf0e10cSrcweir' COMPONENT:
53cdf0e10cSrcweir' forms.ORadioButtonModel
54cdf0e10cSrcweir'*************************************************************************
55cdf0e10cSrcweirOn Error Goto ErrHndl
56cdf0e10cSrcweir    Dim bOK As Boolean
57cdf0e10cSrcweir    Dim oShape As Object, oDrawPage As Object
58cdf0e10cSrcweir
59cdf0e10cSrcweir    bOK = true
60cdf0e10cSrcweir
61cdf0e10cSrcweir    oDoc = utils.createDocument("swriter", cObjectName)
62cdf0e10cSrcweir
63cdf0e10cSrcweir    oShape = toolkittools.addControlToDefaultForm("RadioButton", 1000, 1000, 2000, 1000)
64cdf0e10cSrcweir    oObj = oShape.getControl()
65cdf0e10cSrcweir    oShape = toolkittools.addControlToDefaultForm("RadioButton", 1000, 3000, 2000, 1000)
66cdf0e10cSrcweir    oComponentInstance = oShape.getControl()
67cdf0e10cSrcweir    oShape = toolkittools.addControlToDefaultForm("RadioButton", 1000, 5000, 2000, 1000)
68cdf0e10cSrcweir    oPersistInstance = oShape.getControl()
69cdf0e10cSrcweir
70cdf0e10cSrcweir    'get control from document
71cdf0e10cSrcweir    oDrawPage = oDoc.DrawPage
72cdf0e10cSrcweir    oForm = oDrawPage.Forms.getByName("Standard")
73cdf0e10cSrcweir
74cdf0e10cSrcweir	oForm.DataSourceName = "Bibliography"
75cdf0e10cSrcweir	oForm.Command = "biblio"
76cdf0e10cSrcweir	oForm.CommandType = com.sun.star.sdb.CommandType.TABLE
77cdf0e10cSrcweir
78cdf0e10cSrcweir    oObj.DataField = "Custom3"
79cdf0e10cSrcweir
80cdf0e10cSrcweir    oForm.load()
81cdf0e10cSrcweir
82cdf0e10cSrcweir    ' for XUpdateBroadcaster
83cdf0e10cSrcweir    bCustomUpdate = true
84cdf0e10cSrcweir
85cdf0e10cSrcweirExit Sub
86cdf0e10cSrcweirErrHndl:
87cdf0e10cSrcweir    Test.Exception()
88cdf0e10cSrcweirEnd Sub
89cdf0e10cSrcweir
90cdf0e10cSrcweirGlobal aChangedVal As String
91cdf0e10cSrcweir
92cdf0e10cSrcweir' for XBoundComponent
93cdf0e10cSrcweirSub prepareCommit()
94cdf0e10cSrcweirOn Error Goto ErrHndl
95cdf0e10cSrcweir    Out.Log("prepareCommit() called.")
96cdf0e10cSrcweir    aChangedVal = 1 - oObj.State
97cdf0e10cSrcweir    oObj.State = aChangedVal
98cdf0e10cSrcweir
99cdf0e10cSrcweir    exit sub
100cdf0e10cSrcweirErrHndl:
101cdf0e10cSrcweir    Test.Exception()
102cdf0e10cSrcweirEnd Sub
103cdf0e10cSrcweir
104cdf0e10cSrcweir' for XBoundComponent
105cdf0e10cSrcweirFunction checkCommit() As Boolean
106cdf0e10cSrcweirOn Error Goto ErrHndl
107cdf0e10cSrcweir    Out.Log("checkCommit() called.")
108cdf0e10cSrcweir    Dim rowVal As Variant
109cdf0e10cSrcweir
110cdf0e10cSrcweir    rowVal = oForm.getBoolean(oForm.findColumn("Custom3"))
111cdf0e10cSrcweir    if rowVal = true then
112cdf0e10cSrcweir        checkCommit() = (aChangedVal = 1)
113cdf0e10cSrcweir    else
114cdf0e10cSrcweir        checkCommit() = (aChangedVal = 0)
115cdf0e10cSrcweir    end if
116cdf0e10cSrcweir
117cdf0e10cSrcweir    exit function
118cdf0e10cSrcweirErrHndl:
119cdf0e10cSrcweir    Test.Exception()
120cdf0e10cSrcweirEnd Function
121cdf0e10cSrcweir
122cdf0e10cSrcweir' for XUpdateBroadcaster
123cdf0e10cSrcweirSub UpdateComponent()
124cdf0e10cSrcweir    oObj.State = 1 - oObj.State
125cdf0e10cSrcweir    oObj.commit()
126cdf0e10cSrcweirEnd Sub
127cdf0e10cSrcweir</script:module>
128