summaryrefslogtreecommitdiff
path: root/test/user-template/user/basic/Template/Autotext.xba
blob: 27a7bca1290e93a8639c4cbe9c9a0d291d3012fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Autotext" script:language="StarBasic">Option Explicit

Public UserfieldDataType(14) as String
Public oDocAuto as Object
Public BulletList(7) as Integer
Public sTextFieldNotDefined as String
Public sGeneralError as String


Sub Main()
	Dim oCursor as Object
	Dim oStyles as Object
	Dim oSearchDesc as Object
	Dim oFoundall as Object
	Dim oFound as Object
	Dim i as Integer
	Dim sFoundString as String
	Dim sFoundContent as String
	Dim FieldStringThere as String
	Dim ULStringThere as String
	Dim PHStringThere as String
	On Local Error Goto GENERALERROR
	&apos; Initialization...
    BasicLibraries.LoadLibrary(&quot;Tools&quot;)
	If InitResources(&quot;&apos;Template&apos;&quot;, &quot;tpl&quot;) Then
		sGeneralError = GetResText(1302)
		sTextFieldNotDefined = GetResText(1400)
	End If

	UserfieldDatatype(0) = &quot;COMPANY&quot;
	UserfieldDatatype(1) = &quot;FIRSTNAME&quot;
	UserfieldDatatype(2) = &quot;NAME&quot;
	UserfieldDatatype(3) = &quot;SHORTCUT&quot;
	UserfieldDatatype(4) = &quot;STREET&quot;
	UserfieldDatatype(5) = &quot;COUNTRY&quot;
	UserfieldDatatype(6) = &quot;ZIP&quot;
	UserfieldDatatype(7) = &quot;CITY&quot;
	UserfieldDatatype(8) = &quot;TITLE&quot;
	UserfieldDatatype(9) = &quot;POSITION&quot;
	UserfieldDatatype(10) = &quot;PHONE_PRIVATE&quot;
	UserfieldDatatype(11) = &quot;PHONE_COMPANY&quot;
	UserfieldDatatype(12) = &quot;FAX&quot;
	UserfieldDatatype(13) = &quot;EMAIL&quot;
	UserfieldDatatype(14) = &quot;STATE&quot;
	BulletList(0) = 149
	BulletList(1) = 34
	BulletList(2) = 65
	BulletList(3) = 61
	BulletList(4) = 49
	BulletList(5) = 47
	BulletList(6) = 79
	BulletList(7) = 58

	oDocAuto = ThisComponent
	oStyles = oDocAuto.Stylefamilies.GetByName(&quot;NumberingStyles&quot;)

	&apos; Prepare the Search-Descriptor
	oSearchDesc = oDocAuto.createsearchDescriptor()
	oSearchDesc.SearchRegularExpression = True
	oSearchDesc.SearchWords = True
	oSearchDesc.SearchString  = &quot;&lt;[^&gt;]+&gt;&quot;
	oFoundall = oDocAuto.FindAll(oSearchDesc)

	&apos;Loop over the foundings
	For i = 0 To oFoundAll.Count - 1
		oFound = oFoundAll.GetByIndex(i)
		sFoundString = oFound.String
		&apos;Extract the string inside the brackets
		sFoundContent = FindPartString(sFoundString,&quot;&lt;&quot;,&quot;&gt;&quot;,1)
		sFoundContent = LTrim(sFoundContent)

		&apos; Define the Cursor and place it on the founding
		oCursor = oFound.Text.CreateTextCursorbyRange(oFound)

		&apos; Find out, which object is to be created...
		FieldStringThere = Instr(1,sFoundContent,&quot;Field&quot;)
		ULStringThere = Instr(1,sFoundContent,&quot;UL&quot;)
		PHStringThere = Instr(1,sFoundContent,&quot;Placeholder&quot;)
		If FieldStringThere = 1 Then
			CreateUserDatafield(oCursor, sFoundContent)
		ElseIf ULStringThere = 1 Then
			CreateBullet(oCursor, oStyles)
		ElseIf PHStringThere = 1 Then
			CreatePlaceholder(oCursor, sFoundContent)
		End If
	Next i

	GENERALERROR:
	If Err &lt;&gt; 0 Then
		Msgbox(sGeneralError,16, GetProductName())
		Resume LETSGO
	End If
	LETSGO:
End Sub


&apos; creates a User - datafield out of a string with the following structure
&apos; &quot;&lt;field:Company&gt;&quot;
Sub	CreateUserDatafield(oCursor, sFoundContent as String)
	Dim MaxIndex as Integer
	Dim sFoundList(3)
	Dim oUserfield as Object
	Dim UserInfo as String
	Dim UserIndex as Integer

	oUserfield = oDocAuto.CreateInstance(&quot;com.sun.star.text.TextField.ExtendedUser&quot;)
	sFoundList() = ArrayoutofString(sFoundContent,&quot;:&quot;,MaxIndex)
	UserInfo = UCase(LTrim(sFoundList(1)))
	UserIndex = IndexinArray(UserInfo, UserfieldDatatype())
	If UserIndex &lt;&gt; -1 Then
		oUserField.UserDatatype = UserIndex
		oCursor.Text.InsertTextContent(oCursor,oUserField,True)
		oUserField.IsFixed = True
	Else
		Msgbox(UserInfo &amp;&quot;: &quot; &amp; sTextFieldNotDefined,16, GetProductName())
	End If
End Sub


&apos; Creates a Bullet by setting a soft Formatation on the first unsorted List-Templates with a defined
&apos; Bullet Id
Sub	CreateBullet(oCursor, oStyles as Object)
	Dim n, m, s as Integer
	Dim StyleSet as Boolean
	Dim ostyle as Object
	Dim StyleName as String
	Dim alevel()
	StyleSet = False
	For s = 0 To Ubound(BulletList())
		For n = 0 To oStyles.Count - 1
			ostyle = oStyles.getbyindex(n)
			StyleName = oStyle.Name
			alevel() = ostyle.NumberingRules.getbyindex(0)
			&apos; The properties of the style are stored in a Name-Value-Array()
			For m = 0 to Ubound(alevel())
				&apos; Set the first Numbering template without a bulletID
				If (aLevel(m).Name = &quot;BulletId&quot;) Then
					If alevel(m).Value = BulletList(s) Then
						oCursor.NumberingStyle = StyleName
						oCursor.SetString(&quot;&quot;)
						exit Sub
					End if
				End If
			Next m
		Next n
	Next s
	If Not StyleSet Then
		&apos; The Template with the demanded BulletID is not available, so take the first style in the sequence
		&apos; that has a defined Bullet ID
		oCursor.NumberingStyleName = oStyles.GetByIndex(5).Name
		oCursor.SetString(&quot;&quot;)
	End If
End Sub


&apos; Creates a placeholder out of a string with the following structure:
&apos;&lt;placeholder:Showtext:Helptext&gt;
Sub	CreatePlaceholder(oCursor as Object, sFoundContent as String)
	Dim oPlaceholder as Object
	Dim MaxIndex as Integer
	Dim sFoundList(3)
	oPlaceholder = oDocAuto.CreateInstance(&quot;com.sun.star.text.TextField.JumpEdit&quot;)
	sFoundList() = ArrayoutofString(sFoundContent, &quot;:&quot; &amp; chr(34),MaxIndex)
	&apos; Delete The Double-quotes
	oPlaceholder.Hint = DeleteStr(sFoundList(2),chr(34))
	oPlaceholder.placeholder = 	DeleteStr(sFoundList(1),chr(34))
	oCursor.Text.InsertTextContent(oCursor,oPlaceholder,True)
End Sub


</script:module>