summaryrefslogtreecommitdiff
path: root/wizards/source/webwizard
diff options
context:
space:
mode:
authorBehrend Cornelius <bc@openoffice.org>2002-07-10 14:38:38 +0000
committerBehrend Cornelius <bc@openoffice.org>2002-07-10 14:38:38 +0000
commitf8d27c7d19ee1661aefebb8a6503964a505d64cb (patch)
tree0cfbde31df527fb05d082f91af7d22b031c497dc /wizards/source/webwizard
parent0c5108d047eaf8054492fa65133e6c708ffaa055 (diff)
#100987# Dialog now created later
Diffstat (limited to 'wizards/source/webwizard')
-rw-r--r--wizards/source/webwizard/Common.xba47
-rw-r--r--wizards/source/webwizard/HtmlAutoPilotBasic.xba116
-rw-r--r--wizards/source/webwizard/Language.xba51
-rw-r--r--wizards/source/webwizard/script.xlb2
4 files changed, 130 insertions, 86 deletions
diff --git a/wizards/source/webwizard/Common.xba b/wizards/source/webwizard/Common.xba
index b4c53942b270..d5dcab8bc3c3 100644
--- a/wizards/source/webwizard/Common.xba
+++ b/wizards/source/webwizard/Common.xba
@@ -3,6 +3,7 @@
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Common" script:language="StarBasic">REM ***** BASIC *****
Option Explicit
+
Function LoadNewStyles(oDocument as Object, oDialogModel as Object, CurIndex as Integer, SourceFile as String, Styles() as String, TextureDir as String) as Boolean
Dim BackGroundURL as String
Dim oBackGraph as Object
@@ -18,7 +19,7 @@ Dim StylesOptions(0) as New com.sun.star.beans.PropertyValue
End If
&apos; Read array fields for background, bullet &amp; graphics
- BackgroundURL = Styles(7, CurIndex)
+ BackgroundURL = Styles(CurIndex, 7)
If Left(BackgroundURL, 1) &lt;&gt; &quot;#&quot; Then
BackgroundURL = TextureDir + BackgroundURL
bLocWithBackGraphic = True
@@ -40,6 +41,7 @@ Dim StylesOptions(0) as New com.sun.star.beans.PropertyValue
oStyle.BackGraphicUrl = BackGroundURL
SetTileBackgroundorNot(oDialogModel, oStyle)
End If
+ Exit For
End If
End If
Next i
@@ -47,7 +49,7 @@ Dim StylesOptions(0) as New com.sun.star.beans.PropertyValue
ErrorOcurred:
If Err &lt;&gt; 0 Then
MsgBox (WebWiz_gErrWhileLoadStyles$, 16, WebWiz_gWizardName$)
- CancelHTMLWizard()
+&apos; CancelHTMLWizard()
End If
End Function
@@ -62,7 +64,7 @@ Dim i as Integer
oStyle = oPageFamily.GetbyIndex(i)
If oStyle.PropertySetInfo.HasPropertybyName(&quot;BackGraphicURL&quot;) Then
If oStyle.BackGraphicUrl &lt;&gt; &quot;&quot; Then
- oStyleBack.GraphicUrl = CopyFile(oStyle.BackGraphicUrl, SavePath)
+ oStyle.BackGraphicUrl = CopyFile(oStyle.BackGraphicUrl, SavePath)
Exit Sub
End If
End If
@@ -97,31 +99,42 @@ End Sub
Sub SetTileBackgroundorNot(DialogModel as Object, oStyle as Object)
- If DialogModel.optTiled.State = 1 Then
- oStyle.BackGraphicLocation = com.sun.star.style.GraphicLocation.TILED
- Else
- oStyle.BackGraphicLocation = com.sun.star.style.GraphicLocation.AREA
+ If Not IsNull(DialogModel) Then
+ If DialogModel.optTiled.State = 1 Then
+ oStyle.BackGraphicLocation = com.sun.star.style.GraphicLocation.TILED
+ Else
+ oStyle.BackGraphicLocation = com.sun.star.style.GraphicLocation.AREA
+ End If
End If
End Sub
Sub ToggleOptionButtons(DialogModel as Object, bDoEnable as Integer)
- DialogModel.optTiled.Enabled = bDoEnable
- DialogModel.optArea.Enabled = bDoEnable
- DialogModel.hlnBackground.Enabled = bDoEnable
+ If Not IsNull(DialogModel) Then
+ DialogModel.optTiled.Enabled = bDoEnable
+ DialogModel.optArea.Enabled = bDoEnable
+ DialogModel.hlnBackground.Enabled = bDoEnable
+ End If
End Sub
-Function GetCurIndex(oListbox as Object, sList() as String, MaxIndex as Integer, FileIndex as Integer)
-Dim i, n as Integer
+Function GetCurIndex(oListbox as Object, sList() as String, FileIndex as Integer)
+Dim i as Integer
+Dim n as Integer
Dim SelValue as String
- &apos; Get selected list entry
- n = oListbox.SelectedItems(0)
- SelValue = oListbox.StringItemList(n)
+Dim MaxIndex as Integer
+ If IsNull(oListBox) Then
+ &apos; Startup for WebWizard
+ SelValue = sList(0,1)
+ Else
+ n = oListbox.SelectedItems(0)
+ SelValue = oListbox.StringItemList(n)
+ End If
&apos; Find field index for chosen list entry
+ MaxIndex = Ubound(sList)
For i = 0 To MaxIndex
- If sList(1, i) = SelValue Then
- FileStr = sList(FileIndex, i)
+ If sList(i,1) = SelValue Then
+ FileStr = sList(i, FileIndex)
Exit For
End If
Next
diff --git a/wizards/source/webwizard/HtmlAutoPilotBasic.xba b/wizards/source/webwizard/HtmlAutoPilotBasic.xba
index bcb6e4b40906..f6ce5316f627 100644
--- a/wizards/source/webwizard/HtmlAutoPilotBasic.xba
+++ b/wizards/source/webwizard/HtmlAutoPilotBasic.xba
@@ -14,12 +14,12 @@ Const MaxLayouts = 50
Const MaxStyles = 100
Const MaxBullets = 10
-Public NumberOfLayouts%, NumberOfStyles%
+&apos;Public NumberOfLayouts%, NumberOfStyles%
&apos; Filled with title, previous, next, home, top, bullet, background, file name
-Public Style(8, MaxStyles) as String
+Public Style(MaxStyles, 8) as String
-Public Layout$(2, MaxLayouts)
+Public Layout$(MaxLayouts, 2)
Public TextureDir$, BulletDir$, GraphicsDir$, GalleryDir$, PhotosDir$
Public CurrentBullet$, CurrentPrev$, CurrentNext$, CurrentHome$, CurrentTop$
@@ -47,42 +47,36 @@ Public DialogModel as Object
Sub Main
Dim RetValue
-&apos;On Local Error Goto GlobalErrorHandler
- Dim SOBitmapPath,sBitmapPath as String
+On Local Error Goto GlobalErrorHandler
BasicLibraries.LoadLibrary(&quot;Tools&quot;)
oUcb = createUnoService(&quot;com.sun.star.ucb.SimpleFileAccess&quot;)
oBaseDocument = StarDesktop.LoadComponentFromURL(&quot;private:factory/swriter/web&quot;, &quot;_blank&quot;, 0, NoArgs())
oViewSettings = oBaseDocument.CurrentController.ViewSettings
oViewCursor = oBaseDocument.GetCurrentController.ViewCursor
+ CurWebPageIndex = -1
ProgressBar = oBaseDocument.GetCurrentController.GetFrame.CreateStatusIndicator
ProgressBar.Start(&quot;&quot;, 100)
SetProgressValue(2)
oBaseDocument.LockControllers
oViewSettings.ShowTableBoundaries = False
oViewSettings.ShowTextBoundaries = False
- MainDialog = LoadDialog(&quot;WebWizard&quot;,&quot;WebWzrd&quot;)
- DialogModel = MainDialog.Model
LoadLanguage
SetProgressValue(10)
GetPaths()
- NumberofLayouts = FillupWebListbox(oUcb, &quot;/cnt&quot;, MainDialog, &quot;lbTemplate&quot;, Layout$())
+ Layout() = getListBoxArrays(oUcb, &quot;/cnt&quot;)
+ GetCurIndex(DialogModel, Layout(),2)
SetProgressValue(30)
- GetCurIndex(DialogModel.lbTemplate, Layout(),NumberofLayouts,2)
oCursor = oBasedocument.Text.CreateTextCursor
oCursor.InsertDocumentfromURL(FileStr, NoArgs())
- SetProgressValue(40)
- NumberofStyles = FillupWebListbox(oUcb, &quot;/stl&quot;, MainDialog, &quot;lbStyles&quot;, Style())
SetProgressValue(50)
+ Style() = getListBoxArrays(oUcb, &quot;/stl&quot;)
+ SetProgressValue(70)
LoadWebPageStyles(oBaseDocument)
+ SetProgressValue(90)
+ oBaseDocument.UnlockControllers
+ OpenWebDialog()
SetProgressValue(98)
SetProgressValue(0)
- oBaseDocument.UnlockControllers
- SOBitmapPath = GetOfficeSubPath(&quot;Template&quot;, &quot;wizard/bitmap&quot;)
- sBitmapPath = SOBitmapPath &amp; &quot;webwizard.bmp&quot;
- DialogModel.ImagePreview.ImageURL = sBitmapPath
- ToggleOptionButtons(DialogModel, bWithBackGraphic)
- MainDialog.GetControl(&quot;lbTemplate&quot;).SetFocus()
- DialogModel.cbGoOn.DefaultButton = True
RetValue = MainDialog.Execute
Select Case RetValue
Case 0
@@ -95,7 +89,7 @@ Dim RetValue
GLOBALERRORHANDLER:
If Err &lt;&gt; 0 Then
MsgBox (WebWiz_gErrMsg$, 16, WebWiz_gWizardName$)
- CancelHTMLWizard()
+&apos; CancelHTMLWizard()
End If
End Sub
@@ -113,7 +107,7 @@ Sub ReloadCurrentDocument()
Dim OldDocIndex as Integer
On Local Error Goto ErrorOcurred
OldDocIndex = CurDocIndex
- CurDocIndex = GetCurIndex(DialogModel.lbTemplate, Layout(), NumberofLayouts%, 2)
+ CurDocIndex = GetCurIndex(DialogModel.lbTemplate, Layout(), 2)
If OldDocIndex &lt;&gt; CurDocIndex Then
oBaseDocument.LockControllers
ToggleDialogControls(False)
@@ -136,24 +130,29 @@ End Sub
-Sub LoadWebPageStyles()
+
+Sub LoadWebPageStyles(aEvent as Object, Optional bStartUp as Boolean)
Dim OldWebPageIndex as Integer
OldWebPageIndex = CurWebPageIndex
- CurWebPageIndex = GetCurIndex(DialogModel.lbStyles, Style(), NumberofStyles%,8)
+ If IsNull(DialogModel) Then
+ CurWebPageIndex = GetCurIndex(DialogModel, Style(), 8)
+ Else
+ CurWebPageIndex = GetCurIndex(DialogModel.lbStyles, Style(), 8)
+ End If
If OldWebPageIndex &lt;&gt; CurWebPageIndex Then
ToggleDialogControls(False)
oBaseDocument.LockControllers
bWithBackGraphic = LoadNewStyles(oBaseDocument, DialogModel, CurWebPageIndex, FileStr, Style(), TextureDir)
- CurrentBullet$ = BulletDir + Style(6, CurWebPageIndex)
- CurrentPrev$ = GraphicsDir + Style(2, CurWebPageIndex)
- CurrentNext$ = GraphicsDir + Style(3, CurWebPageIndex)
- CurrentHome$ = GraphicsDir + Style(4, CurWebPageIndex)
- CurrentTop$ = GraphicsDir + Style(5, CurWebPageIndex)
+ CurrentBullet$ = BulletDir + Style(CurWebPageIndex, 6)
+ CurrentPrev$ = GraphicsDir + Style(CurWebPageIndex, 2)
+ CurrentNext$ = GraphicsDir + Style(CurWebPageIndex, 3)
+ CurrentHome$ = GraphicsDir + Style(CurWebPageIndex, 4)
+ CurrentTop$ = GraphicsDir + Style(CurWebPageIndex, 5)
With oBaseDocument.DocumentInfo
.GetUserFieldValue(0) = ExtractGraphicNames(CurWebPageIndex,2)
.GetUserFieldValue(1) = ExtractGraphicNames(CurWebPageIndex, 4)
- .GetUserFieldValue(2) = Style(6, CurWebPageIndex) &apos; Bullet
- .GetUserFieldValue(3) = Style(7, CurWebPageIndex) &apos; Background
+ .GetUserFieldValue(2) = Style(CurWebPageIndex, 6) &apos; Bullet
+ .GetUserFieldValue(3) = Style(CurWebPageIndex, 7) &apos; Background
End With
SetBulletAndGraphics()
CheckControls(oBaseDocument.DrawPage)
@@ -166,8 +165,8 @@ End Sub
Function ExtractGraphicNames(CurIndex as Integer, i as Integer) as String
Dim FieldValue as String
- FieldValue = GetFileNameWithoutExtension(Style(i,CurIndex))
- FieldValue = FieldValue &amp; &quot; &quot; &amp; GetFileNameWithoutExtension(Style(i+1,CurIndex))
+ FieldValue = GetFileNameWithoutExtension(Style(CurIndex, i))
+ FieldValue = FieldValue &amp; &quot; &quot; &amp; GetFileNameWithoutExtension(Style(CurIndex, i+1))
ExtractGraphicNames = FieldValue
End Function
@@ -257,7 +256,6 @@ Dim SavePath as String
.GetUserFieldValue(2) = &quot;&quot;
.GetUserFieldValue(3) = &quot;&quot;
End With
-
AttachBasicMacroToEvent(oBaseDocument,&quot;OnSaveDone&quot;, &quot;&quot;)
AttachBasicMacroToEvent(oBaseDocument,&quot;OnSaveAsDone&quot;, &quot;&quot;)
AttachBasicMacroToEvent(oBaseDocument,&quot;OnNew&quot;, &quot;&quot;)
@@ -265,7 +263,7 @@ Dim SavePath as String
&apos; oBaseDocument.UnlockControllers()
End Sub
-
+
Function CopyFile(ByVal SourceUrl as String, TargetDir as String)
Dim sFileName as String
Dim sNewFileUrl as String
@@ -276,8 +274,7 @@ Dim sNewFileUrl as String
End Function
-
-Function FillupWebListbox(oUcb as Object, sFileFilter as String, oDialog as Object, ListboxName as String, List() as String)
+Function getListBoxArrays(oUcb as Object, sFileFilter as String)
Dim oDocInfo as Object
Dim oListboxControl as Object
Dim Description as String
@@ -294,18 +291,21 @@ Dim m as Integer
Dim n as Integer
Dim s as Integer
Dim a as Integer
-Dim SelList(0) as Integer
Dim LocMaxIndex as Integer
Dim InfoNames()
- oListboxControl = oDialog.GetControl(ListboxName)
+Dim DimCount as Integer
oDocInfo = CreateUnoService(&quot;com.sun.star.document.DocumentProperties&quot;)
FilterLen = Len(sFileFilter)
bItemFound = False
TemplatePath = GetOfficeSubPath(&quot;Template&quot;, &quot;wizard/web/&quot;)
DirContent() = oUcb.GetFolderContents(TemplatePath,True)
-
+ If sFileFilter = &quot;/cnt&quot; Then
+ DimCount = 2
+ Else
+ DimCount = 8
+ End If
LocMaxIndex = Ubound(DirContent())
-
+ Dim List(LocMaxIndex, DimCount) as String
Dim SortList(LocMaxIndex,1)
For i = 0 to LocMaxIndex
SortList(i,0) = DirContent(i)
@@ -323,11 +323,9 @@ Dim InfoNames()
Description = RetrieveDocTitle(oDocInfo, FileName)
oDocInfo.Read(FileName)
InfoNames = oDocInfo.ElementNames()
- oListboxControl.AddItem(Description,a)
- a = a + 1
- List(1,i) = Description
+ List(a,1) = Description
If sFileFilter = &quot;/cnt&quot; Then
- List(2,i) = Filename
+ List(a,2) = Filename
Else
m = 2
For n = 0 To 3
@@ -335,25 +333,29 @@ Dim InfoNames()
sFieldList() = ArrayoutofString(sField, &quot; &quot;, MaxIndex)
For s = 0 To MaxIndex
If m &lt; 6 Then
- List(m,i) = sFieldList(s) &amp; &quot;.gif&quot;
+ List(a,m) = sFieldList(s) &amp; &quot;.gif&quot;
Else
- List(m,i) = sFieldList(s)
+ List(a,m) = sFieldList(s)
End If
m = m + 1
Next s
Next n
- List(8,i) = FileName
+ List(a,8) = FileName
End If
+ a = a + 1
End If
Next i
+ If sFileFilter = &quot;/cnt&quot; Then
+ ReDim PreServe List(a-1,2) as String
+ Else
+ ReDim PreServe List(a-1,8) as String
+ End If
If Not bItemfound Then
- MsgBox(WebWiz_gErrContentNotFound$ , 16, WebWiz_gWizardName$)
+ MsgBox(WebWiz_gErrContentNotFound$, 16, WebWiz_gWizardName$)
oBaseDocument.Dispose()
Stop
End If
- SelList(0) = 0
- oListboxControl.Model.SelectedItems() = SelList()
- FillupWebListbox = i
+ getListBoxArrays = List()
End Function
@@ -404,11 +406,13 @@ End Sub
Sub ToggleDialogControls(ByVal bDoEnable as Boolean, Optional FocusControlName as String)
- DialogModel.Enabled = bDoEnable
- If bDoEnable Then
- &apos; Enable Controls referring to Background graphic only when this Property is set
- bDoEnable = bWithBackGraphic
- ToggleOptionButtons(DialogModel, bDoEnable)
- MainDialog.GetControl(FocusControlName).SetFocus()
+ If Not IsNull(DialogModel) Then
+ DialogModel.Enabled = bDoEnable
+ If bDoEnable Then
+ &apos; Enable Controls referring to Background graphic only when this Property is set
+ bDoEnable = bWithBackGraphic
+ ToggleOptionButtons(DialogModel, bDoEnable)
+ MainDialog.GetControl(FocusControlName).SetFocus()
+ End If
End If
End Sub</script:module> \ No newline at end of file
diff --git a/wizards/source/webwizard/Language.xba b/wizards/source/webwizard/Language.xba
index f78e27f4ffe7..a3c8bc66fdb0 100644
--- a/wizards/source/webwizard/Language.xba
+++ b/wizards/source/webwizard/Language.xba
@@ -5,18 +5,6 @@
Sub LoadLanguage()
If InitResources(&quot;WebWizard&quot;,&quot;wwz&quot;) Then
- With DialogModel
- .cbHelp.Label = GetResText(1000)
- .Title = GetResText(1001)
- .cbCancel.Label = GetResText(1002)
- .cbGoOn.Label = GetResText(1003)
- .lblTemplate.Label = GetResText(1004)
- .lblStyle.Label = GetResText(1005)
- .hlnBackground.Label = GetResText(1006)
- .optTiled.Label = GetRestext(1007)
- .optArea.Label = GetResText(1008)
- .chkSaveasTemplate.Label = GetResText(1010)
- End With
WebWiz_gErrContentNotFound = GetResText(1101)
WebWiz_gErrStyleNotFound = GetResText(1102)
WebWiz_gErrMainTemplateError = GetResText(1103)
@@ -33,4 +21,43 @@ Sub GetPaths
GraphicsDir = GetOfficeSubPath(&quot;Gallery&quot;, &quot;www-graf/&quot;)
BulletDir = GetOfficeSubPath(&quot;Gallery&quot;, &quot;bullets/&quot;)
PhotosDir = GetPathSettings(&quot;Gallery&quot;, False, 1)
+End Sub
+
+
+Sub OpenWebDialog()
+ Dim SOBitmapPath,sBitmapPath as String
+ Dim BufferNames() as String
+ Dim SelList(0) as Integer
+ SelList(0) = 0
+ MainDialog = LoadDialog(&quot;WebWizard&quot;,&quot;WebWzrd&quot;)
+ DialogModel = MainDialog.Model
+ With DialogModel
+ .cbHelp.Label = GetResText(1000)
+ .Title = GetResText(1001)
+ .cbCancel.Label = GetResText(1002)
+ .cbGoOn.Label = GetResText(1003)
+ .lblTemplate.Label = GetResText(1004)
+ .lblStyle.Label = GetResText(1005)
+ .hlnBackground.Label = GetResText(1006)
+ .optTiled.Label = GetRestext(1007)
+ .optArea.Label = GetResText(1008)
+ .chkSaveasTemplate.Label = GetResText(1010)
+ End With
+
+ BufferNames() = ArrayfromMultiArray(Layout, 1)
+ DialogModel.lbTemplate.StringItemList() = BufferNames()
+ DialogModel.lbTemplate.SelectedItems() = SelList()
+
+
+ BufferNames() = ArrayfromMultiArray(Style, 1)
+ DialogModel.lbStyles.StringItemList() = BufferNames()
+ DialogModel.lbStyles.SelectedItems() = SelList()
+
+ SOBitmapPath = GetOfficeSubPath(&quot;Template&quot;, &quot;wizard/bitmap&quot;)
+ sBitmapPath = SOBitmapPath &amp; &quot;webwizard.bmp&quot;
+
+ DialogModel.ImagePreview.ImageURL = sBitmapPath
+ ToggleOptionButtons(DialogModel, bWithBackGraphic)
+ MainDialog.GetControl(&quot;lbTemplate&quot;).SetFocus()
+ DialogModel.cbGoOn.DefaultButton = True
End Sub</script:module> \ No newline at end of file
diff --git a/wizards/source/webwizard/script.xlb b/wizards/source/webwizard/script.xlb
index 1045820b7002..d2ade7377e0f 100644
--- a/wizards/source/webwizard/script.xlb
+++ b/wizards/source/webwizard/script.xlb
@@ -5,4 +5,4 @@
<library:element library:name="Language"/>
<library:element library:name="Bullets"/>
<library:element library:name="Common"/>
-</library:library>
+</library:library> \ No newline at end of file