summaryrefslogtreecommitdiff
path: root/wizards/source/template/Samples.xba
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/source/template/Samples.xba')
-rw-r--r--wizards/source/template/Samples.xba217
1 files changed, 0 insertions, 217 deletions
diff --git a/wizards/source/template/Samples.xba b/wizards/source/template/Samples.xba
deleted file mode 100644
index 03f6c68bb107..000000000000
--- a/wizards/source/template/Samples.xba
+++ /dev/null
@@ -1,217 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
-<!--
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
--->
-<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Samples" script:language="StarBasic">Option Explicit
-
-Const SAMPLES = 1000
-Const STYLES = 1100
-Const STYLENAME_DEF = 1120
-Const STYLENAME = 1150
-Const NumStyles = 18
-Const aTempFileName = &quot;Berend_Ilko_Tom_Stella_Volker.stc&quot;
-Public Const Twip = 425
-Dim oUcbObject as Object
-Public StylesDir as String
-Public StylesDialog as Object
-Public PathSeparator as String
-Public oFamilies as Object
-Public aOptions(0) as New com.sun.star.beans.PropertyValue
-Public sQueryPath as String
-Public NoArgs()as New com.sun.star.beans.PropertyValue
-Public aTempURL as String
-
-Public Files(100) as String
-
-
-&apos;--------------------------------------------------------------------------------------
-&apos;Miscellaneous Section starts here
-
-Function PrepareForEditing(Optional ByVal oDocument)
-&apos;This sub is called when sample documents are loaded (load event).
-&apos;It checks whether the documents is read-only, in which case it
-&apos;offers the user to create a new (writable) document using the original
-&apos;as a template.
-Dim DocPath as String
-Dim MMessage as String
-Dim MTitle as String
-Dim RValue as Integer
-Dim oNewDocument as Object
-Dim mFileProperties(1) as New com.sun.star.beans.PropertyValue
- PrepareForEditing = NULL
- BasicLibraries.LoadLibrary( &quot;Tools&quot; )
- If InitResources(&quot;&apos;Template&apos;&quot;, &quot;tpl&quot;) then
- If IsMissing(oDocument) Then
- oDocument = ThisComponent
- End If
- If oDocument.IsReadOnly then
- MMessage = GetResText(SAMPLES)
- MTitle = GetResText(SAMPLES + 1)
- RValue = Msgbox(MMessage, (128+48+1), MTitle)
- If RValue = 1 Then
- DocPath = oDocument.URL
- mFileProperties(0).Name = &quot;AsTemplate&quot;
- mFileProperties(0).Value = True
- mFileProperties(1).Name = &quot;MacroExecutionMode&quot;
- mFileProperties(1).Value = com.sun.star.document.MacroExecMode.USE_CONFIG
-
- oNewDocument = StarDesktop.LoadComponentFromURL(DocPath,&quot;_default&quot;,0, mFileProperties())
- PrepareForEditing() = oNewDocument
- DisposeDocument(oDocument)
- Else
- PrepareForEditing() = NULL
- End If
- Else
- PrepareForEditing() = oDocument
- End If
- End If
-End Function
-
-
-
-&apos;--------------------------------------------------------------------------------------
-&apos;Calc Style Section starts here
-
-Sub ShowStyles
-&apos;This sub displays the style selection dialog if the current document is a calc document.
-Dim TemplateDir, ActFileTitle, DisplayDummy as String
-Dim sFilterName(0) as String
-Dim StyleNames() as String
-Dim LocalizedStyleNames(NumStyles,2) As String
-Dim LocalizedStyleName As String
-Dim t as Integer
-Dim MaxIndex as Integer
- BasicLibraries.LoadLibrary(&quot;Tools&quot;)
- If InitResources(&quot;&apos;Template&apos;&quot;, &quot;tpl&quot;) then
- oDocument = ThisComponent
- If oDocument.SupportsService(&quot;com.sun.star.sheet.SpreadsheetDocument&quot;) Then
- ToggleWindow(False)
- oUcbObject = createUnoService(&quot;com.sun.star.ucb.SimpleFileAccess&quot;)
- oFamilies = oDocument.StyleFamilies
- SaveCurrentStyles(oDocument)
- StylesDialog = LoadDialog(&quot;Template&quot;, &quot;DialogStyles&quot;)
- DialogModel = StylesDialog.Model
- TemplateDir = GetPathSettings(&quot;Template&quot;, False, 0)
- StylesDir = GetOfficeSubPath(&quot;Template&quot;, &quot;wizard/styles/&quot;)
- sQueryPath = GetOfficeSubPath(&quot;Template&quot;, &quot;../wizard/bitmap/&quot;)
- DialogModel.Title = GetResText(STYLES)
- DialogModel.cmdCancel.Label = GetResText(STYLES+2)
- DialogModel.cmdOk.Label = GetResText(STYLES+3)
- For t = 0 to NumStyles - 1
- LocalizedStyleNames(t,0) = GetResText(STYLENAME_DEF+t)
- LocalizedStyleNames(t,1) = GetResText(STYLENAME+t)
- Next t
- Stylenames() = ReadDirectories(StylesDir, False, False, True,)
- MaxIndex = Ubound(Stylenames())
- For t = 0 to MaxIndex
- LocalizedStyleName = StringInMultiArray(LocalizedStyleNames(), StyleNames(t,1), 0, 1)
- If LocalizedStyleName &lt;&gt; "" Then
- StyleNames(t,1) = LocalizedStyleName
- End If
- Next t
- BubbleSortList(Stylenames(),True)
- Dim cStyles(MaxIndex)
- For t = 0 to MaxIndex
- Files(t) = StyleNames(t,0)
- cStyles(t) = StyleNames(t,1)
- Next t
- On Local Error Resume Next
- DialogModel.lbStyles.StringItemList() = cStyles()
- ToggleWindow(True)
- StylesDialog.Execute
- End If
- End If
-End Sub
-
-
-Sub SelectStyle
-&apos;This sub loads the specific styles from a style document and loads them into the
-&apos;current document.
-Dim StylePath as String
-Dim NewStyle as String
-Dim Position as Integer
- Position = DialogModel.lbStyles.SelectedItems(0)
- If Position &gt; -1 Then
- ToggleWindow(False)
- StylePath = Files(Position)
- aOptions(0).Name = &quot;OverwriteStyles&quot;
- aOptions(0).Value = true
- oFamilies.loadStylesFromURL(StylePath, aOptions())
- ToggleWindow(True)
- End If
-End Sub
-
-
-Sub SaveCurrentStyles(oDocument as Object)
-&apos;This sub stores the current document in the user work directory
- On Error Goto ErrorOcurred
- aTempURL = GetPathSettings(&quot;Work&quot;, False)
- Dim aRightMost as String
- aRightMost = Right(aTempURL, 1)
- if aRightMost = &quot;/&quot; Then
- aTempURL = aTempURL &amp; aTempFileName
- Else
- aTempURL = aTempURL &amp; &quot;/&quot; &amp; aTempFileName
- End If
-
- While FileExists(aTempURL)
- aTempURL=Left(aTempURL,(Len(aTempURL)-4)) &amp; &quot;_1.stc&quot;
- Wend
- oDocument.storeToURL(aTempURL, NoArgs())
- Exit Sub
-
-ErrorOcurred:
- MsgBox(GetResText( STYLES+1 ), 16, GetResText( STYLES ))
- On Local Error Goto 0
-End Sub
-
-
-Sub RestoreCurrentStyles
-&apos;This sub retrieves the styles from the temporarily save document
- ToggleWindow(False)
- On Local Error Goto NoFile
- If FileExists(aTempURL) Then
- aOptions(0).Name = &quot;OverwriteStyles&quot;
- aOptions(0).Value = true
- oFamilies.LoadStylesFromURL(aTempURL, aOptions())
- KillTempFile()
- End If
- StylesDialog.EndExecute
- ToggleWindow(True)
-NOFILE:
- If Err &lt;&gt; 0 Then
- Msgbox(&quot;Cannot load Document from &quot; &amp; aTempUrl, 64, GetProductname())
- End If
- On Local Error Goto 0
-End Sub
-
-
-Sub CloseStyleDialog
- KillTempFile()
- DialogExited = True
- StylesDialog.Endexecute
-End Sub
-
-
-Sub KillTempFile()
- If oUcbObject.Exists(aTempUrl) Then
- oUcbObject.Kill(aTempUrl)
- End If
-End Sub
-
-</script:module> \ No newline at end of file