This file is indexed.

/usr/lib/libreoffice/share/extensions/DmathsAddon/OOoGdmath/DeplaceCordeForm.xba is in libreoffice-dmaths 3.4+dfsg1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
<?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="DeplaceCordeForm" script:language="StarBasic">&apos;OOoGdmath
&apos;Copyright (C) 2005-2009  Gilles Daurat

&apos;This program is free software; you can redistribute it and/or
&apos;modify it under the terms of the GNU General Public License
&apos;as published by the Free Software Foundation; either version 2
&apos;of the License, or (at your option) any later version.

&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;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 Street, Fifth Floor, Boston, MA  02110-1301, USA.

Option Explicit

private UneLigne As object
private Pointille1 As object
private Pointille2 As object
dim oDeplaceCordeForm as object

Sub Main
End Sub

Private Sub DeplaceCordeForm_TextBox1_Change()
dim tang as string

	on error resume next
	tang=oDeplaceCordeForm.Model.TextField1.Text
	if instr(1,tang,&quot;.&quot;)&lt;&gt;0 then 
		tang=left(tang,len(tang)-2) &amp; right(tang,1)
	else
		tang=tang &amp; &quot;0&quot;
	end if
	oDeplaceCordeForm.Model.ScrollBar1.ScrollValue=val(tang)
	TraceCorde
End Sub

Private Sub DeplaceCordeForm_TextBox2_Change()
dim tang as string

	on error resume next
	tang=oDeplaceCordeForm.Model.TextField2.Text
	if instr(1,tang,&quot;.&quot;)&lt;&gt;0 then 
		tang=left(tang,len(tang)-2) &amp; right(tang,1)
	else
		tang=tang &amp; &quot;0&quot;
	end if
	oDeplaceCordeForm.Model.ScrollBar2.ScrollValue=val(tang)
	TraceCorde
End Sub

Private Sub DeplaceCordeForm_CommandButton1_Click()
	on error resume next
    oDocumentDessin.DrawPages.GetByIndex(0).remove(UneLigne)
    oDocumentDessin.DrawPages.GetByIndex(0).remove(Pointille1)
    oDocumentDessin.DrawPages.GetByIndex(0).remove(Pointille2)
    oDeplaceCordeForm.endexecute()
End Sub

Private Sub DeplaceCordeForm_ScrollBar1()
dim tang as string

&apos;	BasicLibraries.LoadLibrary(&quot;Xray&quot;)
	tang=oDeplaceCordeForm.Model.ScrollBar1.ScrollValue
	if right(tang,1)&lt;&gt;&quot;0&quot; then
		tang=left(tang,len(tang)-1) &amp; &quot;.&quot; &amp; right(tang,1)
	else
		tang=left(tang,len(tang)-1) &amp; &quot;.&quot; &amp; right(tang,1)
	end if
	oDeplaceCordeForm.Model.TextField1.Text=tang
	TraceCorde
End Sub

Private Sub DeplaceCordeForm_ScrollBar2()
dim tang as string

&apos;	BasicLibraries.LoadLibrary(&quot;Xray&quot;)
	tang=oDeplaceCordeForm.Model.ScrollBar2.ScrollValue
	if right(tang,1)&lt;&gt;&quot;0&quot; then
		tang=left(tang,len(tang)-1) &amp; &quot;.&quot; &amp; right(tang,1)
	else
		tang=left(tang,len(tang)-1) &amp; &quot;.&quot; &amp; right(tang,1)
	end if
	oDeplaceCordeForm.Model.TextField2.Text=tang
	TraceCorde
End Sub

Private Sub TraceCorde()
on error resume next
Dim x6, y6, rayon, xx, yy,xx1,yy1,ang1,ang2
    x6 = Val(oDeplaceCordeForm.Model.Label1.Label)
    y6 = Val(oDeplaceCordeForm.Model.Label2.Label)
    rayon = Val(oDeplaceCordeForm.Model.Label3.Label)
    ang1=oDeplaceCordeForm.Model.Scrollbar1.ScrollValue
    ang2=oDeplaceCordeForm.Model.Scrollbar2.ScrollValue
    xx = x6 + rayon * Cos(ang1*3.1415926/1800)
    yy = y6 + rayon * Sin(ang1*3.1415926/1800)
    xx1 = x6 + rayon * Cos(ang2*3.1415926/1800)
    yy1 = y6 + rayon * Sin(ang2*3.1415926/1800)
    oDocumentDessin.DrawPages.GetByIndex(0).remove(UneLigne)
    oDocumentDessin.DrawPages.GetByIndex(0).remove(Pointille1)
    oDocumentDessin.DrawPages.GetByIndex(0).remove(Pointille2)
    UneLigne=InsereLigne(xx1, yy1, xx, yy)
    Pointille1=InsereLigne(x6, y6, xx, yy)
    Pointille2=InsereLigne(x6, y6, xx1, yy1)
&apos;    XRay.xray Pointille1
    Pointille1.LineColor=rgb(255,0,0)
    Pointille2.LineColor=rgb(0,0,255)
	oDeplaceCordeForm.Model.Label5.Label=xx
	oDeplaceCordeForm.Model.Label6.Label=yy
	oDeplaceCordeForm.Model.Label7.Label=xx1
	oDeplaceCordeForm.Model.Label8.Label=yy1
End Sub

</script:module>