home *** CD-ROM | disk | FTP | other *** search
- <?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="DialogModul" script:language="StarBasic">Option Explicit
-
- Public Const bDebugWizard=True
-
- Public Const SBFIRSTAPPLCHECKED = 0
- Public Const SBSECONDAPPLCHECKED = 1
- Public Const SBTHIRDAPPLCHECKED = 2
- Public Const SBFOURTHAPPLCHECKED = 3
- Public WizardMode as String
- Public Const SBMICROSOFTMODE = "MS"
- Public Const SBXMLMODE = "XML"
- ' The absolute maximal Number of possible Applications
- Public Const Twip = 425
- Public Const SBMAXAPPLCOUNT = 4
- Public MaxApplCount as Integer
- Public CurOffice As Integer
- Public SOBitmapPath As String
- Public SOWorkPath As String
- Public SOTemplatePath as String
- Public bCancelTask As Boolean
- Public bDoKeepApplValues as Boolean
- Public iApplSection as Integer
- Public oUcb as Object
- Public PathSeparator as String
-
- Public ApplCount as Integer
- Public sKeyName(SBMAXAPPLCOUNT-1) as String
- Public sValueName(SBMAXAPPLCOUNT-1) as String
- Public sCRLF as String
- Public MSFilterName(5,2) as String
- Public XMLFilterName(7,2)
-
- ' e.g.:
- ' XMLFilterName(x,0) = "sdw" ' in documents we take the extensions; in SO-templates the appropriate Filtername
- ' XMLFilterName(x,1) = "swriter: StarWriter 5.0" ' the filtername of the target-format
- ' XMLFilterName(x,2) = "sxw" ' the target extension
-
- Public ChkApplication(SBMAXAPPLCOUNT-1) as Object
- Public Applications(SBMAXAPPLCOUNT-1,9)
-
- Public Const SBAPPLCONVERT = 0
- Public Const SBDOCCONVERT = 1
- Public Const SBDOCRECURSIVE = 2
- Public Const SBDOCSOURCE = 3
- Public Const SBDOCTARGET = 4
- Public Const SBTEMPLCONVERT = 5
- Public Const SBTEMPLRECURSIVE = 6
- Public Const SBTEMPLSOURCE = 7
- Public Const SBTEMPLTARGET = 8
- Public Const SBAPPLKEY = 9
-
- ' Application-relating Data are stored in this Array
- ' according to the following structure:
- ' Applications(X,0) = True/False (Application is to be converted)
- ' Applications(X,1) = True/False (Documents are to be converted)
- ' Applications(X,2) = True/False (Including Subdirectories)
- ' Applications(X,3) = "File:///..." (SourceUrl of the documents)
- ' Applications(X,4) = "File///:..." (TargetUrl of the documents)
- ' Applications(X,5) = True/False (Templates are to be converted)
- ' Applications(X,6) = True/False (Including Subdirectories)
- ' Applications(X,7) = "File:///..." (SourceUrl of the templates)
- ' Applications(X,8) = "File:///..." (TargetUrl of the templates)
- ' Applications(X,9) = 0 (Key to the original Index of the Applications)
-
-
- Sub FillStep_Welcome()
- Dim i as Integer
- ' bDoKeepApplValues = False
- With ImportDialog
- .cbHelp.Label = sHelpButton
- .cbCancel.Label = sCancelButton
- .cbBack.Label = sBackButton
- .cbGoOn.Label = sNextButton
- .WelcomeTextLabel.Label = sWelcomeTextLabel1
- .WelcomeTextLabel2.Label = sWelcomeTextLabel2
- .WelcomeTextLabel3.Label = sWelcomeTextLabel3
-
- .OptMSDocuments.Label = sContainerName(0)
- .ChkFirstMSApplication.Label = sMsDocumentCheckbox(0)
- .ChkSecondMSApplication.Label = sMsDocumentCheckbox(1)
- .ChkThirdMSApplication.Label = sMsDocumentCheckbox(2)
-
- .OptSODocuments.Label = sContainerName(1)
- .ChkFirstSOApplication.Label = sSODocumentCheckbox(0)
- .ChkSecondSOApplication.Label = sSODocumentCheckbox(1)
- .ChkThirdSOApplication.Label = sSODocumentCheckbox(2)
- .ChkFourthSOApplication.Label = sSODocumentCheckbox(3)
- .cbBack.Enabled = False
- .Step = 1
- End With
- ToggleNextButton()
- End Sub
-
-
- Sub FillStep_InputPaths(OfficeIndex as Integer, bStartup as Boolean)
- Dim Index as Integer
- If bStartup And Not bDoKeepApplValues Then
- If ImportDialog.OptMSDocuments.State = 1 Then
- SetupMSConfiguration()
- Else
- SetupXMLConfiguration()
- End If
- ' TemplateCheckBox-Captions
- GetApplResourceArray(1009 + iApplSection, ApplCount, sTemplateCheckBox())
- ' DocumentCheckbox- Captions
- GetApplResourceArray(1009 + iApplSection + ApplCount, ApplCount, sDocumentCheckBox())
- AssignCheckboxObjects()
- FillUpApplicationList()
- End If
- CurOffice = OfficeIndex
- Index = Applications(CurOffice,SBAPPLKEY)
- InitializePathsforCurrentApplication(Index)
- With ImportDialog
- .TemplateCheckbox.Label = sTemplateCheckbox(Index)
- .DocumentPathCheckbox.State = Abs(Applications(CurOffice,SBDOCCONVERT))
- SetEnabledDocument_InputPath()
- .DocumentSearchSubDir.State = Abs(Applications(CurOffice,SBDOCRECURSIVE))
- .DocumentImportPath.Text = ConvertFromUrl(Applications(CurOffice,SBDOCSOURCE))
- .DocumentExportPath.Text = ConvertFromUrl(Applications(CurOffice,SBDOCTARGET))
- .hlnDocuments.Label = sProgressMoreDocs
-
- If WizardMode = SBXMLMODE AND Index = 3 Then
- ' Note: SO-Helper Applications are partly treated like templates although they only have documents
- .hlnTemplates.Label = sProgressMoreDocs
- .TemplateCheckbox.Label = sSOHelperDocuments(0)
- .DocumentPathCheckbox.Label = sSOHelperDocuments(1)
- Else
- .TemplateCheckbox.Label = sTemplateCheckbox(Index)
- .DocumentPathCheckbox.Label = sDocumentCheckbox(Index)
- .hlnTemplates.Label = sProgressMoreTemplates
- End If
- .TemplateCheckbox.State = Abs(Applications(CurOffice,SBTEMPLCONVERT))
- SetEnabledTemplate_InputPath()
- .TemplateSearchSubDir.State = Abs(Applications(CurOffice,SBTEMPLRECURSIVE))
- .TemplateImportPath.Text = ConvertFromUrl(Applications(CurOffice,SBTEMPLSOURCE))
- .TemplateExportPath.Text = ConvertFromUrl(Applications(CurOffice,SBTEMPLTARGET))
- .cbGoOn.Label = sNextButton
- .cbBack.Enabled = True
- ImportDialog.Step = 2
- End With
- ToggleNextButton()
- End Sub
-
-
- Sub FillUpApplicationList()
- Dim i as Integer
- Dim a as Integer
- Dim BoolValue as Boolean
- If Not bDoKeepApplValues Then
- a = 0
- For i = 0 To ApplCount - 1
- BoolValue = ChkApplication(i).State = 1
- Applications(a,SBAPPLCONVERT) = BoolValue
- Applications(a,SBDOCCONVERT) = BoolValue
- Applications(a,SBDOCRECURSIVE) = BoolValue
- Applications(a,SBDOCSOURCE) = "" ' GetDefaultPath(i)
- Applications(a,SBDOCTARGET) = "" ' SOWorkPath
- Applications(a,SBTEMPLCONVERT) = BoolValue
- Applications(a,SBTEMPLRECURSIVE) = BoolValue
- Applications(a,SBTEMPLSOURCE) = "" ' GetTemplateDefaultPath(i)
- Applications(a,SBTEMPLTARGET) = "" ' GetTargetTemplatePath(i)
- Applications(a,SBAPPLKEY) = i
- If ChkApplication(i).State = 1 Then
- a = a + 1
- End If
- Next i
- ApplCount = a
- End If
- End Sub
-
-
- Sub InitializePathsforCurrentApplication(i as Integer)
- AssignPathToCurrentApplication(SBDOCSOURCE, GetDefaultPath(i))
- AssignPathToCurrentApplication(SBDOCTARGET, SOWorkPath)
- AssignPathToCurrentApplication(SBTEMPLSOURCE, GetTemplateDefaultPath(i))
- AssignPathToCurrentApplication(SBTEMPLTARGET, GetTargetTemplatePath(i))
- End Sub
-
-
- Sub AssignPathToCurrentApplication(Index as Integer, NewPath as String)
- If Applications(CurOffice,Index) = "" Then
- If CurOffice > 0 Then
- Applications(CurOffice,Index) = Applications(CurOffice-1,Index)
- Else
- Applications(CurOffice,Index) = NewPath
- End If
- End If
- End Sub
-
-
- Sub SaveStep_InputPath()
- Applications(CurOffice,SBDOCCONVERT) = ImportDialog.DocumentPathCheckbox.State = 1
- Applications(CurOffice,SBDOCRECURSIVE) = ImportDialog.DocumentSearchSubDir.State = 1
- Applications(CurOffice,SBDOCSOURCE) = ConvertToURL(ImportDialog.DocumentImportPath.Text)
- Applications(CurOffice,SBDOCTARGET) = ConvertToUrl(ImportDialog.DocumentExportPath.Text)
- Applications(CurOffice,SBTEMPLCONVERT) = ImportDialog.TemplateCheckbox.State = 1
- Applications(CurOffice,SBTEMPLRECURSIVE) = ImportDialog.TemplateSearchSubDir.State = 1
- Applications(CurOffice,SBTEMPLSOURCE) = ConvertToURL(ImportDialog.TemplateImportPath.Text)
- Applications(CurOffice,SBTEMPLTARGET) = ConvertToURL(ImportDialog.TemplateExportPath.Text)
- End Sub
-
-
- Sub SetEnabledTemplate_InputPath()
- Dim bDoEnable as Boolean
- With ImportDialog
- bDoEnable = .TemplateCheckbox.State = 1
- .TemplateImportLabel.Enabled = bDoEnable
- .TemplateExportLabel.Enabled = bDoEnable
- .TemplateImportPath.Enabled = bDoEnable
- .TemplateExportPath.Enabled = bDoEnable
- .TemplateSearchSubDir.Enabled = bDoEnable
- .TemplateImportPath.Enabled = bDoEnable
- If Not bDoEnable Then
- .cbGoOn.Enabled = .DocumentPathCheckbox.State = 1
- Else
- .cbGoOn.Enabled = True
- End If
- End With
- End Sub
-
-
- Sub SetEnabledDocument_InputPath()
- Dim bDoEnable as Boolean
- With ImportDialog
- bDoEnable = .DocumentPathCheckbox.State = 1
- .DocumentImportLabel.Enabled = bDoEnable
- .DocumentExportLabel.Enabled = bDoEnable
- .DocumentSearchSubDir.Enabled = bDoEnable
- .DocumentImportPath.Enabled = bDoEnable
- .DocumentExportPath.Enabled = bDoEnable
- End With
- ToggleNextButton()
- End Sub
-
-
- Function MakeSummaryString()
- Dim sTmpText As String
- Dim i as Integer
- Dim Index as Integer
- Dim sAddText as String
- For i = 0 To ApplCount -1
- Index = Applications(i,SBAPPLKEY)
- If Applications(i,SBTEMPLCONVERT) Then
- ' Templates are to be converted
- sAddText = ""
- If WizardMode = SBMICROSOFTMODE Then
- sAddText = sSumMSTemplates(Index) & sCRLF
- Else
- sAddText = sSumSOTemplates(Index) & sCRLF
- End If
- sTmpText = sTmpText & sAddText & ConvertFromUrl(Applications(i,SBTEMPLSOURCE)) & sCRLF
- If Applications(i,SBTEMPLRECURSIVE) Then
- ' Including Subdirectories
- sTmpText = sTmpText & sSumInclusiveSubDir & sCRLF
- End If
- sTmpText = sTmpText & sSumSaveDocuments & sCRLF
- sTmpText = sTmpText & ConvertFromUrl(Applications(i,SBTEMPLTARGET)) & sCRLF
- sTmpText = sTmpText & sCRLF
- End If
-
- If Applications(i,SBDOCCONVERT) Then
- ' Documents are to be converted
- If WizardMode = SBMICROSOFTMODE Then
- sAddText = sSumMSDocuments(Index) & sCRLF
- Else
- sAddText = sSumSODocuments(Index) & sCRLF
- End If
- sTmpText = sTmpText & sAddText & ConvertFromUrl(Applications(i,SBDOCSOURCE)) & sCRLF
-
- If Applications(i,SBDOCRECURSIVE) Then
- ' Including Subdirectories
- sTmpText = sTmpText & sSumInclusiveSubDir & sCRLF
- End If
-
- sTmpText = sTmpText & sSumSaveDocuments & sCRLF
- sTmpText = sTmpText & ConvertFromUrl(Applications(i,SBDOCTARGET)) & sCRLF
- sTmpText = sTmpText & sCRLF
- End If
- Next i
- MakeSummaryString = sTmpText
- End Function
-
-
- Sub FillStep_Summary()
- ' Todo: Angabe ├╝ber die Vorlagengruppen,bzw. Template-Exportpfad
- With ImportDialog
- .SummaryTextbox.Text = MakeSummaryString()
- .cbGoOn.Enabled = .SummaryTextbox.Text <> ""
- .cbGoOn.Label = sBeginButton
- .SummaryHeaderLabel.Label = sSummaryHeader
- .Step = 3
- End With
- End Sub
-
-
- Sub FillStep_Progress()
- With ImportDialog
- .cbBack.Enabled = False
- .cbGoOn.Enabled = False
- .hlnProgress.Label = sProgressPage_1
- .LabelRetrieval.FontWeight = com.sun.star.awt.FontWeight.BOLD
- .LabelRetrieval.Label = sProgressPage_2
- .LabelCurProgress.Label = sProgressPage_3
- .LabelCurDocumentRetrieval.Label = ""
- .LabelCurTemplateRetrieval.Label = ""
- .LabelCurDocument.Label = ""
- .Step = 4
- End With
- End Sub
-
-
- Sub SetupMSConfiguration()
- iApplSection = 0
- Wizardmode = SBMICROSOFTMODE
- MaxApplCount = 3
- ApplCount = 3
-
- sKeyName(0) = "Software\Microsoft\Office\8.0\Word\Options"
- sKeyName(1) = "Software\Microsoft\Office\8.0\Excel\Microsoft Excel"
- sKeyName(2) = "Software\Microsoft\Office\8.0\PowerPoint\Recent Folder List\Default"
-
- sValueName(0) = "DOC-PATH"
- sValueName(1) = "DefaultPath"
- sValueName(2) = ""
-
- ' See definition of Filtername-Array about meaning of fields
- MSFilterName(0,0) = "doc"
- MSFilterName(0,1) = "swriter: StarOffice XML (Writer)"
- MSFilterName(0,2) = "sxw"
-
- MSFilterName(1,0) = "xls"
- MSFilterName(1,1) = "scalc: StarOffice XML (Calc)"
- MSFilterName(1,2) = "sxc"
-
- MSFilterName(2,0) = "ppt"
- MSFilterName(2,1) = "simpress: StarOffice XML (Impress)"
- MSFilterName(2,2) = "sxi"
-
- MSFilterName(3,0) = "dot"
- MSFilterName(3,1) = "swriter: writer_StarOffice_XML_Writer_Template"
- MSFilterName(3,2) = "stw"
-
- MSFilterName(4,0) = "xlt"
- MSFilterName(4,1) = "scalc: calc_StarOffice_XML_Calc_Template"
- MSFilterName(4,2) = "stc"
-
- MSFilterName(5,0) = "pot"
- MSFilterName(5,1) = "simpress: impress_StarOffice_XML_Impress_Template"
- MSFilterName(5,2) = "sti"
- End Sub
-
-
-
- Sub SetupXMLConfiguration()
- iApplSection = 1000
- Wizardmode = SBXMLMODE
- ApplCount = 4
- MaxApplCount = 4
-
- XMLFilterName(0,0) = "sdw"
- XMLFilterName(0,1) = "swriter: StarOffice XML (Writer)"
- XMLFilterName(0,2) = "sxw"
-
- XMLFilterName(1,0) = "sdc"
- XMLFilterName(1,1) = "scalc: StarOffice XML (Calc)"
- XMLFilterName(1,2) = "sxc"
- ' Todo: Gepacktes 'sdp' Format ber├╝cksichtigen
- XMLFilterName(2,0) = "sdd|sda"
- XMLFilterName(2,1) = "simpress: StarOffice XML (Impress)|sdraw: StarOffice XML (Draw)"
- XMLFilterName(2,2) = "sxi|sxd"
-
- XMLFilterName(3,0) = "smf"
- XMLFilterName(3,1) = "smath: StarOffice XML (Math)"
- XMLFilterName(3,2) = "sxm"
-
- XMLFilterName(4,0) = "application/vnd.stardivision.writer;application/x-starwriter|application/vnd.stardivision.writer/web"
- XMLFilterName(4,1) = "swriter: writer_StarOffice_XML_Writer_Template|swriter/web: writer_web_StarOffice_XML_Writer_Web_Template"
- XMLFilterName(4,2) = "stw|stw"
-
- XMLFilterName(5,0) = "application/vnd.stardivision.calc;application/x-starcalc"
- XMLFilterName(5,1) = "scalc: calc_StarOffice_XML_Calc_Template"
- XMLFilterName(5,2) = "stc"
-
- XMLFilterName(6,0) = "application/vnd.stardivision.impress;application/x-starimpress|application/vnd.stardivision.draw;application/x-stardraw"
- XMLFilterName(6,1) = "simpress: impress_StarOffice_XML_Impress_Template|draw_StarOffice_XML_Draw_Template"
- XMLFilterName(6,2) = "sti|std"
-
- XMLFilterName(7,0) = "sgl"
- XMLFilterName(7,1) = "swriter: writer_globaldocument_StarOffice_XML_Writer_GlobalDocument"
- XMLFilterName(7,2) = "sxg"
- End Sub
-
-
- Function CheckControlPath(oCheckbox as Object, oTextBox as Object, ByVal bDoEnable as Boolean)
- Dim sPath as String
- If Not bDoEnable Then
- CheckControlPath = False
- ElseIf oCheckbox.State = 0 Then
- CheckControlPath = True
- Else
- sPath = ConvertToUrl(Trim(oTextBox.Text)
- CheckControlPath = oUcb.Exists(sPath)
- End If
- End Function
-
-
- Sub AssignCheckboxObjects()
- With ImportDialog
- If .OptSODocuments.State = 1 Then
- Set ChkApplication(0) = .ChkFirstSOApplication
- Set ChkApplication(1) = .ChkSecondSOApplication
- Set ChkApplication(2) = .ChkThirdSOApplication
- Set ChkApplication(3) = .ChkFourthSOApplication
- Else
- Set ChkApplication(0) = .ChkFirstMSApplication
- Set ChkApplication(1) = .ChkSecondMSApplication
- Set ChkApplication(2) = .ChkThirdMSApplication
- End If
- End With
- End Sub
-
-
- Function CheckInputPaths() as Boolean
- Dim bChangePage as Boolean
- bChangePage = CheckTextBoxPath(ImportDialog.TemplateImportPath, True, False)
- bChangePage = CheckTextBoxPath(ImportDialog.TemplateExportPath, bChangePage, True)
- bChangePage = CheckTextBoxPath(ImportDialog.DocumentImportPath, bChangePage, False)
- bChangePage = CheckTextBoxPath(ImportDialog.DocumentExportPath, bChangePage, True)
- CheckInputPaths = bChangePage
- End Function
-
-
- Function CheckTextBoxPath(oTextBox as Object, ByVal bCheck as Boolean, bCreateNew as Boolean) as Boolean
- Dim iCreate as Integer
- Dim sQueryMessage as String
- Dim sUrlPath as String
- Dim sMessageNoDir as String
- Dim sShowPath as String
- If oTextBox.Enabled Then
- If bCheck Then
- sShowPath = oTextBox.Text
- sUrlPath = ConvertToUrl(sShowPath)
- If Not oUcb.Exists(sUrlPath) Then
- If Not bCreateNew Then
- ' Sourcedirectories must be existing, Targetdirectories may be created new
- sQueryMessage = ReplaceString(sMsgDirNotThere, sShowPath,"%1")
- Msgbox(sQueryMessage,16,sTitle)
- CheckTextBoxPath() = False
- Exit Function
- Else
- sQueryMessage = ReplaceString(sMsgDirNotThere, sShowPath,"%1")
- sQueryMessage = sQueryMessage & Chr(13) & sQueryForNewCreation
- iCreate = Msgbox (sQueryMessage, 36, sTitle)
- If iCreate = 6 Then
- On Local Error Goto NOVALIDPATH
- oUcb.CreateFolder(sUrlPath)
- If Not oUcb.Exists(sUrlPath) Then
- Goto NOVALIDPATH
- End If
- Else
- CheckTextBoxPath() = False
- Exit Function
- End If
- End If
- End If
- CheckTextBoxPath() = True
- Else
- CheckTextBoxPath() = False
- End If
- Else
- CheckTextBoxPath() = True
- End If
- Exit Function
- NOVALIDPATH:
- sMessageNoDir = ReplaceString(sNoDirCreation, sShowPath, "%1")
- Msgbox(sMessageNoDir, 16, sTitle)
- CheckTextBoxPath() = False
- End Function
-
-
- Sub InitializeProgressPage(oDialog as Object)
- 'oDialog.LabelRetrieval.Label = ""
- 'oDialog.LabelCurProgress.Label = ""
- oDialog.LabelRetrieval.FontWeight = com.sun.star.awt.FontWeight.NORMAL
- oDialog.LabelCurProgress.FontWeight = com.sun.star.awt.FontWeight.BOLD
- End Sub
-
-
- Sub TakoverFolderName(aEvent as Object)
- Dim RefControlName as String
- Dim oRefControl
- RefControlName = aEvent.Source.Model.Tag
- oRefControl = ImportDialogArea.GetControl(RefControlName)
- GetFolderName(oRefControl.Model)
- ToggleNextButton()
- End Sub
- </script:module>