File: TexMathsPreamble.xba

package info (click to toggle)
libreoffice-texmaths 0.49-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 4,388 kB
  • sloc: sh: 67; xml: 32; makefile: 2
file content (523 lines) | stat: -rw-r--r-- 17,461 bytes parent folder | download
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
<?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="TexMathsPreamble" script:language="StarBasic">&apos;
&apos;    TexMathsPreamble
&apos;
&apos;	 Copyright (C) 2012-2020 Roland Baudin (roland65@free.fr)
&apos;    Based on the work of Geoffroy Piroux (gpiroux@gmail.com)
&apos;
&apos;    This program is free software; you can redistribute it and/or modify
&apos;    it under the terms of the GNU General Public License as published by
&apos;    the Free Software Foundation; either version 2 of the License, or
&apos;    (at your option) any later version.
&apos;
&apos;    This program is distributed in the hope that it will be useful,
&apos;    but WITHOUT ANY WARRANTY; without even the implied warranty of
&apos;    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
&apos;    GNU General Public License for more details.
&apos;
&apos;    You should have received a copy of the GNU General Public License
&apos;    along with this program; if not, write to the Free Software
&apos;    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
&apos;

&apos;	Macros used to create and manage the Preamble dialog


&apos; Force variable declaration
Option Explicit


&apos; Dialog declaration
Private oDlgBasePreamble as Variant
Private oDlgPreamble as Variant

&apos; Conversion factors map appFonts -&gt; pixels
Private convX as Double
Private convY as Double


&apos; Main subroutine
Sub PreambleDialog()

	DefaultSysConfig()

	&apos; Parent window
	Dim oParent as Variant
	oParent = ThisComponent.getCurrentController().getFrame().getContainerWindow()
      
	&apos; Create base outer window as modal dialog
	oDlgBasePreamble = CreateBaseDialog(oParent)
 
	&apos; Set window title
	oDlgBasePreamble.setTitle( _(&quot;TexMaths Preamble&quot;) )
     
	&apos; Embed inner dialog created with the dialog editor
	Dim sURL as String
	sURL = &quot;vnd.sun.star.script:TexMaths.TexMathsPreamble_GUI?location=application&quot;
	oDlgPreamble = CreateInnerDialog(oDlgBasePreamble, sURL)

	&apos; Set the preamble text
	oDlgPreamble.getControl(&quot;Preamble&quot;).setText(glb_Preamble)
	oDlgPreamble.getControl(&quot;Preamble&quot;).Model.FontName = &quot;Monospace&quot;

	Dim aRect as New com.sun.star.awt.Rectangle
	aRect = CreateUnoStruct(&quot;com.sun.star.awt.Rectangle&quot;)

	&apos; Compute conversion factors between map appFonts and pixels
	aRect = oDlgPreamble.getPosSize()
	convX = aRect.Width / oDlgPreamble.Model.Width 
	convY = aRect.Height / oDlgPreamble.Model.Height

	&apos; Show the modal dialog, has to be done by the outer dialog
	If oDlgBasePreamble.execute() &gt; 0 Then
		MsgBox( _(&quot;Error: dialog box can&apos;t be created...&quot;), 0, &quot;TexMaths&quot;)
	End If

	&apos; Delete dialog
	oDlgBasePreamble.dispose()

End Sub



&apos; Create new outer base dialog
&apos; oParent: parent window peer
&apos; Return dialog window
Function CreateBaseDialog(oParent as Variant) as Variant
     
	Dim oToolkit as Variant
	oToolkit = oParent.getToolkit()
	
	Dim WA as Variant, aRect as Variant, oDesc as Variant
	WA = com.sun.star.awt.WindowAttribute
	aRect = CreateUnoStruct(&quot;com.sun.star.awt.Rectangle&quot;)
	oDesc = CreateUnoStruct(&quot;com.sun.star.awt.WindowDescriptor&quot;)

	With oDesc
    	.Type = com.sun.star.awt.WindowClass.SIMPLE
        .WindowServiceName = &quot;dialog&quot;
        .Parent = oParent
        .ParentIndex = -1
        .Bounds = aRect
        .WindowAttributes = WA.CLOSEABLE OR WA.MOVEABLE OR WA.SIZEABLE OR WA.BORDER
	End With

	Dim oDialog as Variant
	oDialog = oToolkit.createWindow(oDesc)

	&apos; Create listeners
	oDialog.addTopWindowListener(CreateUnoListener(&quot;PreambleWindowListener_&quot;, &quot;com.sun.star.awt.XTopWindowListener&quot;))
	oDialog.addWindowListener(CreateUnoListener(&quot;PreambleWindowListener_&quot;, &quot;com.sun.star.awt.XWindowListener&quot;))

	CreateBaseDialog = oDialog

End Function


&apos; Create inner (child) dialog embedded
&apos; oParent: parent window
&apos; sURL: dialog URL, without toolbar
&apos; Return dialog window
Function CreateInnerDialog(oParent as Variant, sURL as String) as Variant

	Dim PS as Variant
	PS = com.sun.star.awt.PosSize
	
	Dim oDP as Variant, oChildDialog as Variant
	oDP = CreateUnoService(&quot;com.sun.star.awt.ContainerWindowProvider&quot;)
	oChildDialog = oDP.createContainerWindow(sURL, &quot;&quot;, oParent, nothing)
	oChildDialog.setPosSize(0, 0, 0, 0, PS.POS)
	oChildDialog.setVisible(True)

	&apos; Dialog strings for translation
	oChildDialog.setTitle( _(&quot;TexMaths Preamble&quot;) )
	oChildDialog.getControl(&quot;LoadDefaultButton&quot;).Model.Label = _(&quot;Load Default&quot;)
	oChildDialog.getControl(&quot;LoadDefaultButton&quot;).Model.HelpText = _(&quot;Load default preamble&quot;)
	oChildDialog.getControl(&quot;LoadLocalButton&quot;).Model.Label = _(&quot;Load Local&quot;)
	oChildDialog.getControl(&quot;LoadLocalButton&quot;).Model.HelpText = _(&quot;Load local preamble (from the current document)&quot;)
	oChildDialog.getControl(&quot;LoadGlobalButton&quot;).Model.Label = _(&quot;Load Global&quot;)
	oChildDialog.getControl(&quot;LoadGlobalButton&quot;).Model.HelpText = _(&quot;Load global preamble&quot;)
	oChildDialog.getControl(&quot;ApplyButton&quot;).Model.Label = _(&quot;Apply&quot;)
	oChildDialog.getControl(&quot;ApplyButton&quot;).Model.HelpText = _(&quot;Apply current preamble&quot;)
	oChildDialog.getControl(&quot;SaveGlobalButton&quot;).Model.Label = _(&quot;Save Global&quot;)
	oChildDialog.getControl(&quot;SaveGlobalButton&quot;).Model.HelpText = _(&quot;Save current preamble as global and apply it&quot;)
	oChildDialog.getControl(&quot;SaveLocalButton&quot;).Model.Label = _(&quot;Save Local&quot;)
	oChildDialog.getControl(&quot;SaveLocalButton&quot;).Model.HelpText = _(&quot;Save current preamble as local (into the current document) and apply it&quot;)
	oChildDialog.getControl(&quot;IgnorePreamble&quot;).Model.Label = _(&quot;Do not use preamble for LaTeX type equations&quot;)
	oChildDialog.getControl(&quot;IgnorePreamble&quot;).Model.HelpText = _(&quot;Ignore preamble when generating LaTeX type equations. Full LaTeX code must then be entered in the TexMaths equation dialog.&quot;)

	&apos; Set the value
	oChildDialog.getControl(&quot;Preamble&quot;).setText(glb_Preamble)
	
	&apos; Ignore preamble button state
	If glb_IgnorePreamble Then
		oChildDialog.getControl(&quot;IgnorePreamble&quot;).setState(1)
	Else
		oChildDialog.getControl(&quot;IgnorePreamble&quot;).setState(0)
	End If

	&apos; The local load button is activated if a preamble is stored in the current document
	If ReadLocalPreamble() = 1 Then 
		oChildDialog.getControl(&quot;LoadLocalButton&quot;).setEnable(TRUE)
	Else
		oChildDialog.getControl(&quot;LoadLocalButton&quot;).setEnable(FALSE)
	End If

	&apos; The global load button is activated if a global preamble exists
	If FileExists(ConvertFromURL( glb_UserPath ) &amp; &quot;GlobalPreamble.tex&quot; ) Then
		oChildDialog.getControl(&quot;LoadGlobalButton&quot;).setEnable(TRUE)
	Else
		oChildDialog.getControl(&quot;LoadGlobalButton&quot;).setEnable(FALSE)
	End If

	Dim aSize as Variant
	aSize = oChildDialog.getPosSize()
	oParent.setPosSize(0, 0, aSize.Width, aSize.Height, PS.SIZE)
	oChildDialog.addWindowListener(CreateUnoListener(&quot;PreambleChildWindowListener_&quot;, &quot;com.sun.star.awt.XWindowListener&quot;))
	
	CreateInnerDialog = oChildDialog

End Function


&apos; Resize inner dialog window
&apos; This is called indirectly when resizing the outer base dialog      
Sub PreambleChildWindowListener_windowResized(ev)

	&apos; Inner dialog
	Dim oDialog as Variant
	oDialog = ev.Source
	
	&apos; Dialog size
	Dim aRect as Variant
	aRect = oDialog.getPosSize()

	&apos; Dialog min width and height 
	Const PRB_MIN_WIDTH  = 275
	Const PRB_MIN_HEIGHT = 230

	&apos; Convert min width and height to pixels
	Dim minW as Integer, minH as Integer
	minW = PRB_MIN_WIDTH * convX
	minH = PRB_MIN_HEIGHT * convY

	&apos; Resize inner dialog if too narrow
	If aRect.Width &lt; minW Then

		aRect.Width = minW
		oDialog.setPosSize(0, 0, aRect.Width, aRect.Height, com.sun.star.awt.PosSize.SIZE)

	End If

	&apos; Resize inner dialog if too short
	If aRect.Height &lt; minH Then

		aRect.Height = minH
		oDialog.setPosSize(0, 0, aRect.Width, aRect.Height, com.sun.star.awt.PosSize.SIZE)

	End If
	
	Dim oWidget as Variant
	Dim X as Integer, Y as Integer, W as Integer, H as Integer

	&apos; Resize preamble text
	oWidget = oDialog.getControl(&quot;Preamble&quot;)
	W = aRect.Width - (oDialog.Model.Width - oWidget.Model.Width ) * convX
	H = aRect.Height - (oDialog.Model.Height - oWidget.Model.Height ) * convY
	oWidget.setPosSize(0, 0, W, H, com.sun.star.awt.PosSize.SIZE)

	&apos; Position Apply button
	oWidget = oDialog.getControl(&quot;ApplyButton&quot;)
	X = aRect.Width - (oDialog.Model.Width - oWidget.Model.PositionX) * convX
	Y = aRect.Height - (oDialog.Model.Height - oWidget.Model.PositionY ) * convY
	oWidget.setPosSize(X , Y, 0, 0, com.sun.star.awt.PosSize.POS)

	&apos; Position Load Default button
	oWidget = oDialog.getControl(&quot;LoadDefaultButton&quot;)
	X = aRect.Width - (oDialog.Model.Width - oWidget.Model.PositionX) * convX
	&apos;X = oWidget.Model.PositionX * convX
	Y = aRect.Height - (oDialog.Model.Height - oWidget.Model.PositionY ) * convY
	oWidget.setPosSize(X , Y, 0, 0, com.sun.star.awt.PosSize.POS)

	&apos; Position Save Global button
	oWidget = oDialog.getControl(&quot;SaveGlobalButton&quot;)
	X = oWidget.Model.PositionX * convX
	Y = aRect.Height - (oDialog.Model.Height - oWidget.Model.PositionY ) * convY
	oWidget.setPosSize(X , Y, 0, 0, com.sun.star.awt.PosSize.POS)

	&apos; Position Load Global button
	oWidget = oDialog.getControl(&quot;LoadGlobalButton&quot;)
	X = oWidget.Model.PositionX * convX
	Y = aRect.Height - (oDialog.Model.Height - oWidget.Model.PositionY ) * convY
	oWidget.setPosSize(X , Y, 0, 0, com.sun.star.awt.PosSize.POS)

	&apos; Position Save Local button
	oWidget = oDialog.getControl(&quot;SaveLocalButton&quot;)
	X = oWidget.Model.PositionX * convX
	Y = aRect.Height - (oDialog.Model.Height - oWidget.Model.PositionY ) * convY
	oWidget.setPosSize(X , Y, 0, 0, com.sun.star.awt.PosSize.POS)

	&apos; Position Load Local button
	oWidget = oDialog.getControl(&quot;LoadLocalButton&quot;)
	X = oWidget.Model.PositionX * convX
	Y = aRect.Height - (oDialog.Model.Height - oWidget.Model.PositionY ) * convY
	oWidget.setPosSize(X , Y, 0, 0, com.sun.star.awt.PosSize.POS)

	&apos; Position IgnorePreamble 
	oWidget = oDialog.getControl(&quot;IgnorePreamble&quot;)
	X = oWidget.Model.PositionX * convX
	Y = aRect.Height - (oDialog.Model.Height - oWidget.Model.PositionY ) * convY
	oWidget.setPosSize(X , Y, 0, 0, com.sun.star.awt.PosSize.POS)

End Sub


&apos; Close modal dialog
Sub ClosePreamble()

	oDlgBasePreamble.endExecute()

End Sub


&apos; Load the default preamble
Sub LoadDefaultPreambleButton_Clicked()
	
	&apos; Load the default preamble 
	SetDefaultPreamble()
	oDlgPreamble.getControl(&quot;Preamble&quot;).setText(glb_Preamble)
	oDlgPreamble.getControl(&quot;IgnorePreamble&quot;).setState(glb_IgnorePreamble)

End Sub


&apos; Load the local preamble if any
Sub LoadLocalPreambleButton_Clicked()

	&apos; Try to read the local (stored in the current document) preamble
	If ReadLocalPreamble() = 0 Then
		
		&apos; Try to read the global preamble
		If ReadGlobalPreamble() = 0 Then
			
			&apos; Fallback to the default preamble
			SetDefaultPreamble()
			
		End If
		
	End If
	
	oDlgPreamble.getControl(&quot;Preamble&quot;).setText(glb_Preamble)
	oDlgPreamble.getControl(&quot;IgnorePreamble&quot;).setState(glb_IgnorePreamble)

End Sub


&apos; Save the current preamble as local (store it into the current document)
Sub SaveLocalPreambleButton_Clicked()

	&apos; Set the preamble variable
	glb_Preamble = oDlgPreamble.getControl(&quot;Preamble&quot;).getText()

	&apos; Save the preamble to a UserDefinedProperties property
	Dim oDoc as Variant, oProperties as Variant, sIgnorePreamble as String
	
	oDoc = ThisComponent
	oProperties = oDoc.DocumentProperties.UserDefinedProperties
	
	&apos; Set the ignore preamble state 
	If oDlgPreamble.getControl(&quot;IgnorePreamble&quot;).state() = 1 Then
		sIgnorePreamble = &quot;TRUE&quot;
		glb_IgnorePreamble = TRUE
	Else
		sIgnorePreamble = &quot;FALSE&quot;
		glb_IgnorePreamble = FALSE
	End If

	&apos; No LaTeX preamble already set =&gt; create it and set it
	If Not oProperties.PropertySetInfo.hasPropertyByName(&quot;TexMathsPreamble&quot;) Then
	
		&apos; Encode the preamble string to avoid newline characters (workaround for an LO bug)
		oProperties.addProperty(&quot;TexMathsPreamble&quot;, com.sun.star.beans.PropertyAttribute.REMOVEABLE, EncodeNewline(glb_Preamble))
	
	&apos; Latex preamble already set =&gt; modify it
	Else
	
		&apos; Encode the preamble string to avoid newline characters (workaround for an LO bug)
		oProperties.setPropertyValue(&quot;TexMathsPreamble&quot;, EncodeNewline(glb_Preamble))
	
	End If

	&apos; IgnorePreamble value might be present or not
	If Not oProperties.PropertySetInfo.hasPropertyByName(&quot;TexMathsIgnorePreamble&quot;) Then
		oProperties.addProperty(&quot;TexMathsIgnorePreamble&quot;, com.sun.star.beans.PropertyAttribute.REMOVEABLE, sIgnorePreamble)
	
	Else
		oProperties.setPropertyValue(&quot;TexMathsIgnorePreamble&quot;, sIgnorePreamble)
	
	End If

	&apos; Close the dialog
	oDlgBasePreamble.endExecute()
	DisplayStatus( _(&quot;Preamble applied and saved...&quot;) )
	
End Sub


&apos; Apply the current preamble
Sub ApplyPreambleButton_Clicked()
	
	&apos; Set The preamble variable
	glb_Preamble = oDlgPreamble.getControl(&quot;Preamble&quot;).getText()

	If oDlgPreamble.getControl(&quot;IgnorePreamble&quot;).state() = 1 Then
		glb_IgnorePreamble = TRUE
	Else
		glb_IgnorePreamble = FALSE
	End If

	oDlgBasePreamble.endExecute()

	DisplayStatus( _(&quot;Preamble applied...&quot;) )
	
End Sub


&apos; Load the global preamble if any
Sub LoadGlobalPreambleButton_Clicked()

	&apos; Try to read the global preamble
	If ReadGlobalPreamble() = 0 Then
	
		&apos; Fallback to the default preamble
		SetDefaultPreamble()
			
	End If

	oDlgPreamble.getControl(&quot;Preamble&quot;).setText(glb_Preamble)
	oDlgPreamble.getControl(&quot;IgnorePreamble&quot;).setState(glb_IgnorePreamble)

End Sub


&apos; Save the current preamble as global
Sub SaveGlobalPreambleButton_Clicked()

	Dim cURL as String
	
	&apos; Set the preamble variable
	glb_Preamble = oDlgPreamble.getControl(&quot;Preamble&quot;).getText()

	cURL = ConvertFromURL( glb_UserPath ) &amp; &quot;GlobalPreamble.tex&quot;

	&apos; Open service file and an output stream
	Dim oFileAccess as Variant, oTextStream as Variant
	oFileAccess = createUnoService(&quot;com.sun.star.ucb.SimpleFileAccess&quot;)
	oTextStream  = createUnoService(&quot;com.sun.star.io.TextOutputStream&quot;)

	&apos; Write file
	If oFileAccess.exists( cURL ) Then oFileAccess.kill( cURL )
    oTextStream.setOutputStream( oFileAccess.openFileWrite( cURL ) )
	oTextStream.writeString(glb_Preamble)

	&apos; Close the file
    oTextStream.closeOutput()
	
 	&apos; Save IgnorePreamble state to the registry
 	Dim oSystemInfo as Variant
	oSystemInfo = GetConfigAccess(&quot;/ooo.ext.texmaths.Registry/SystemInfo&quot;, TRUE)
	
	If oDlgPreamble.getControl(&quot;IgnorePreamble&quot;).state() = 1 Then
	
		glb_IgnorePreamble = TRUE
		oSystemInfo.IgnorePreamble = &quot;TRUE&quot;
	
	Else
	
		glb_IgnorePreamble = FALSE
		oSystemInfo.IgnorePreamble = &quot;FALSE&quot;
	
	End If

	oSystemInfo.commitChanges()

	&apos; Close dialog
	oDlgBasePreamble.endExecute()
	DisplayStatus( _(&quot;Global preamble applied and saved...&quot;) )
	
End Sub


Sub PreambleChildWindowListener_windowMoved(ev)
End Sub

Sub PreambleChildWindowListener_windowShown(ev)
End Sub

Sub PreambleChildWindowListener_windowHidden(ev)
End Sub


&apos; Invoked when a window is resized
Sub PreambleWindowListener_windowResized(ev)
      
	&apos; Inner dialog size
	Dim aSize as Variant
	aSize = ev.Source.getSize()

	&apos; Child window index is 0 for OpenOffice and 2 for LibreOffice
	Dim i as Integer
	If ev.Source.Windows(0).isVisible Then i = 0 Else i = 2
	ev.Source.Windows(i).setPosSize(0, 0, aSize.Width, aSize.Height, com.sun.star.awt.PosSize.SIZE)

End Sub


&apos; Invoked when a window is in the process of being closed
Sub PreambleWindowListener_windowClosing(ev)
    
	&apos; Close modal window
	ev.Source.endExecute()

End Sub

&apos; Invoked when a window has been opened
Sub PreambleWindowListener_windowOpened(ev)
End Sub

&apos; Invoked when a window has been closed
Sub PreambleWindowListener_windowClosed(ev)
End Sub

&apos; Invoked when a window is iconified
Sub PreambleWindowListener_windowMinimized(ev)
End Sub

&apos; Invoked when a window is de-iconified
Sub PreambleWindowListener_windowNormalized(ev)
End Sub

&apos; Invoked when a window is activated
Sub PreambleWindowListener_windowActivated(ev)
End Sub

&apos; Invoked when a window is de-activated
Sub PreambleWindowListener_windowDeactivated(ev)
End Sub

Sub PreambleWindowListener_disposing(ev)
End Sub

Sub PreambleWindowListener_windowMoved(ev)
End Sub

Sub PreambleWindowListener_windowShown(ev)
End Sub

Sub PreambleWindowListener_windowHidden(ev)
End Sub



</script:module>