diff options
231 files changed, 28445 insertions, 28818 deletions
diff --git a/qadevOOo/runner/stats/Summarizer.java b/qadevOOo/runner/stats/Summarizer.java index b1fe5fe61dd3..5f4a58cc31f8 100644 --- a/qadevOOo/runner/stats/Summarizer.java +++ b/qadevOOo/runner/stats/Summarizer.java @@ -78,7 +78,7 @@ public class Summarizer { if (states.elementAt(j).equals("not part of the job")) { - state = "Not possible since not all Interfaces/Services have been checked"; + state = "PASSED(some interfaces/services not tested).OK"; } else { diff --git a/qadevOOo/tests/java/mod/_forms/GenericModelTest.java b/qadevOOo/tests/java/mod/_forms/GenericModelTest.java index dce88234885f..5ac071c38eb5 100644 --- a/qadevOOo/tests/java/mod/_forms/GenericModelTest.java +++ b/qadevOOo/tests/java/mod/_forms/GenericModelTest.java @@ -27,6 +27,7 @@ package mod._forms; import com.sun.star.beans.NamedValue; import com.sun.star.beans.PropertyValue; +import com.sun.star.container.XIndexAccess; import java.io.PrintWriter; import lib.StatusException; @@ -251,11 +252,10 @@ public class GenericModelTest extends TestCase { if (m_ConnectionColsed) return; try { + XIndexAccess forms = UnoRuntime.queryInterface( XIndexAccess.class, + FormTools.getForms( WriterTools.getDrawPage( m_xTextDoc ) ) ); XForm myForm = (XForm) AnyConverter.toObject(new Type(XForm.class), - (FormTools.getForms( - WriterTools.getDrawPage( - m_xTextDoc))) - .getByName("Standard")); + forms.getByIndex(0)); if (debug){ if (myForm == null){ @@ -269,18 +269,20 @@ public class GenericModelTest extends TestCase { } - XPropertySet xSetProp = (XPropertySet) UnoRuntime.queryInterface( - XPropertySet.class, myForm); - XConnection connection = (XConnection) AnyConverter.toObject( - new Type(XConnection.class), - xSetProp.getPropertyValue("ActiveConnection")); - if (debug && connection == null){ - log.println("ERROR: could not get property 'ActiveConnection' from the XForm"); + XPropertySet xSetProp = UnoRuntime.queryInterface( XPropertySet.class, myForm ); + XConnection connection = UnoRuntime.queryInterface( XConnection.class, xSetProp.getPropertyValue( "ActiveConnection" ) ); + if ( connection == null ) + { + if ( debug ) + log.println("ERROR: could not get property 'ActiveConnection' from the XForm"); + } + else + { + connection.close(); } - - connection.close(); } catch (Exception e) { log.println("ERROR: Can't close the connection: " + e.toString()); + e.printStackTrace( log ); } log.println("closing data source..."); diff --git a/smoketestoo_native/data/Events.xml b/smoketestoo_native/data/Events.xml index 6536c1c5eafc..61272293f633 100644 --- a/smoketestoo_native/data/Events.xml +++ b/smoketestoo_native/data/Events.xml @@ -28,28 +28,6 @@ <!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd"> <script:module xmlns:script="http://openoffice.org/2000/script" script:name="Events" script:language="StarBasic">REM ***** BASIC ***** -Sub InitEvents - call ClickCutTest -End Sub - -Sub ClickSaveTest - if not OptionsDlg.cbSaveTest.Value then - OptionsDlg.cbOpenTest.Value = false - OptionsDlg.cbOpenTest.Enabled = false - else - OptionsDlg.cbOpenTest.Enabled = true - end If -End Sub - -Sub ClickCutTest - if not OptionsDlg.cbCutTest.Value then - OptionsDlg.cbPasteTest.Value = false - OptionsDlg.cbPasteTest.Enabled = false - else - OptionsDlg.cbPasteTest.Enabled = true - end If -End Sub - Sub PressCancel gDlgState = cDlgCancel end Sub diff --git a/smoketestoo_native/data/Global.xml b/smoketestoo_native/data/Global.xml index 364d2e2efcfb..1ff082b0a1eb 100644 --- a/smoketestoo_native/data/Global.xml +++ b/smoketestoo_native/data/Global.xml @@ -35,7 +35,7 @@ const cParagraphBreak = 0 global const cExtensionFileName = "TestExtension.oxt" -global const cDocNew = 0, cDocCut = 1, cDocPaste = 2, cDocSaveOpen8 = 3, cDocSaveOpenXML = 4, cDocSaveOpen50 = 5, cDocClose = 6, cDocWrite = 7 +global const cDocNew = 0, cDocSaveOpen8 = 1, cDocSaveOpenXML = 2, cDocSaveOpen50 = 3, cDocClose = 4, cDocWrite = 5 global const cDBService = 0, cDBOpen = 1, cDBInsert = 2, cDBDelete = 3, cDBSeek = 4, cDBClose = 5 global const cEXTService = 0, cEXTInstall = 1, cEXTUninstall = 2 global const cLogfileFailed = 255 @@ -83,8 +83,8 @@ Global const cUserFieldTestWriter = "Writer", cUserFieldTestCalc = &qu Global const cUserFieldTestDraw = "Draw", cUserFieldTestMath = "Math", cUserFieldTestChart = "Chart" Global const cUserFieldTestHTML = "HTML", cUserFieldTestJava = "Java", cUserFieldTestDatabase = "Database" Global const cUserFieldTestExtension = "Extension" -Global const cUserFieldTestOpenSaveXML = "SaveOpenXML", cUserFieldTestOpenSave50 = "SaveOpen50", cUserFieldTestCut = "Cut" -Global const cUserFieldTestPaste = "Paste", cUserFieldTestTerminateAfterTest = "Terminate", cUserFieldTestOpenSave8 = "SaveOpen8" +Global const cUserFieldTestOpenSaveXML = "SaveOpenXML", cUserFieldTestOpenSave50 = "SaveOpen50" +Global const cUserFieldTestTerminateAfterTest = "Terminate", cUserFieldTestOpenSave8 = "SaveOpen8" Global const cOptionsDialogName = "OptionsDlg", cTest10Modul = "Standard" @@ -100,8 +100,8 @@ Global bMakeWriterTest as boolean, bMakeCalcTest as boolean, bMakeImpressTest a Global bMakeDrawTest as Boolean, bMakeMathTest as boolean, bMakeChartTest as boolean Global bMakeHTMLTest as boolean, bMakeJavaTest as boolean, bMakeDBTest as boolean Global bMakeExtensionTest as boolean -Global bMakeSaveOpenXMLTest as boolean, bMakeSaveOpen50Test as boolean, bMakeCutTest as boolean -Global bMakePasteTest as boolean, bMakeTerminateAfterTest as boolean, bShowTable as boolean +Global bMakeSaveOpenXMLTest as boolean, bMakeSaveOpen50Test as boolean +Global bMakeTerminateAfterTest as boolean, bShowTable as boolean Global bMakeSaveOpen8Test as boolean global sExtensionURL as string @@ -156,10 +156,8 @@ Sub CreateStatusTable tableHeaders(cStHTML) = "HTML" tableHeaders(cStJava) = "Java" - dim tableColums(5) as string + dim tableColums(3) as string tableColums(cDocNew) = "new" - tableColums(cDocCut) = "cut" - tableColums(cDocPaste) = "paste" tableColums(cDocSaveOpen8) = "V8.0" tableColums(cDocSaveOpenXML) = "XML" tableColums(cDocSaveOpen50) = "V5.0" @@ -211,7 +209,7 @@ Sub CreateStatusTable xCell.BackTransparent = False xCell.BackColor = cCoGrey - for i% = 0 to 5 + for i% = 0 to 3 tableCursor.goDown(1,FALSE) cName = tableCursor.getRangeName() xCell = table.getCellByName(cName) @@ -509,8 +507,6 @@ Sub SetOptions SetUserFieldState (cUserFieldTestOpenSaveXML, -(gOptionsDialog.getControl("cbSaveOpenXMLTest").getState), gOutPutDoc) SetUserFieldState (cUserFieldTestOpenSave50, -(gOptionsDialog.getControl("cbSaveOpen50Test").getState), gOutPutDoc) SetUserFieldState (cUserFieldTestOpenSave8, -(gOptionsDialog.getControl("cbSaveOpen8Test").getState), gOutPutDoc) - SetUserFieldState (cUserFieldTestCut, -(gOptionsDialog.getControl("cbCutTest").getState), gOutPutDoc) - SetUserFieldState (cUserFieldTestPaste, -(gOptionsDialog.getControl("cbPasteTest").getState), gOutPutDoc) SetUserFieldState (cUserFieldTestTerminateAfterTest, -(gOptionsDialog.getControl("cbTerminateAfterTest").getState), gOutPutDoc) end Sub @@ -529,8 +525,6 @@ Sub GetOptions gOptionsDialog.getControl("cbSaveOpenXMLTest").setState( -( GetUserFieldState (cUserFieldTestOpenSaveXML, gOutPutDoc))) gOptionsDialog.getControl("cbSaveOpen50Test").setState( -( GetUserFieldState (cUserFieldTestOpenSave50, gOutPutDoc))) gOptionsDialog.getControl("cbSaveOpen8Test").setState( -( GetUserFieldState (cUserFieldTestOpenSave8, gOutPutDoc))) - gOptionsDialog.getControl("cbCutTest").setState( -( GetUserFieldState (cUserFieldTestCut, gOutPutDoc))) - gOptionsDialog.getControl("cbPasteTest").setState( -( GetUserFieldState (cUserFieldTestPaste, gOutPutDoc))) gOptionsDialog.getControl("cbTerminateAfterTest").setState( -( GetUserFieldState (cUserFieldTestTerminateAfterTest, gOutPutDoc))) End Sub @@ -549,8 +543,6 @@ Sub ReadOptions bMakeSaveOpenXMLTest = GetUserFieldState (cUserFieldTestOpenSaveXML, gOutPutDoc) bMakeSaveOpen50Test = GetUserFieldState (cUserFieldTestOpenSave50, gOutPutDoc) bMakeSaveOpen8Test = GetUserFieldState (cUserFieldTestOpenSave8, gOutPutDoc) - bMakeCutTest = GetUserFieldState (cUserFieldTestCut, gOutPutDoc) - bMakePasteTest = GetUserFieldState (cUserFieldTestPaste, gOutPutDoc) bMakeTerminateAfterTest = GetUserFieldState (cUserFieldTestTerminateAfterTest, gOutPutDoc) end Sub @@ -579,8 +571,6 @@ Sub SetDefaultOptions bMakeSaveOpen50Test = true End If bMakeSaveOpen8Test = true - bMakeCutTest = true - bMakePasteTest = true bMakeTerminateAfterTest = false end Sub @@ -614,10 +604,8 @@ Function StartTestWithDefaultOptions component(cStJava) = "Java" component(cStDataBase) = "Base" component(cStExtension) = "Extensions" - dim action(5) as string + dim action(3) as string action(cDocNew) = "new" - action(cDocCut) = "cut" - action(cDocPaste) = "paste" action(cDocSaveOpen8) = "V8.0" action(cDocSaveOpenXML) = "XML" action(cDocSaveOpen50) = "V5.0" @@ -700,14 +688,6 @@ Sub ExecuteSlot( SlotNr As String, oDoc as Object ) End Sub -Sub CutText (oDoc as Object) - ExecuteSlot ("5710", oDoc) -End Sub - -Sub PasteText (oDoc as Object) - ExecuteSlot ("5712", oDoc) -End Sub - Sub DelAllUserFields (aDoc as Object) Dim aFieldType as Object Dim aElements as Variant diff --git a/smoketestoo_native/data/OptionsDlg.xml b/smoketestoo_native/data/OptionsDlg.xml index b993a31c9a27..213c880d4d51 100644 --- a/smoketestoo_native/data/OptionsDlg.xml +++ b/smoketestoo_native/data/OptionsDlg.xml @@ -43,22 +43,20 @@ <dlg:checkbox dlg:id="cbChartTest" dlg:tab-index="8" dlg:left="126" dlg:top="105" dlg:width="80" dlg:height="8" dlg:value="Chart" dlg:checked="false"/> <dlg:checkbox dlg:id="cbSaveOpenXMLTest" dlg:tab-index="9" dlg:left="19" dlg:top="49" dlg:width="80" dlg:height="8" dlg:value="Save / Open XML" dlg:checked="false"/> <dlg:checkbox dlg:id="cbSaveOpen50Test" dlg:tab-index="10" dlg:left="19" dlg:top="63" dlg:width="80" dlg:height="8" dlg:value="Save / Open V5.0" dlg:checked="false"/> - <dlg:checkbox dlg:id="cbCutTest" dlg:tab-index="11" dlg:left="19" dlg:top="77" dlg:width="80" dlg:height="8" dlg:value="Cut" dlg:checked="false"/> - <dlg:checkbox dlg:id="cbPasteTest" dlg:tab-index="12" dlg:left="19" dlg:top="91" dlg:width="80" dlg:height="8" dlg:value="Paste" dlg:checked="false"/> - <dlg:checkbox dlg:id="cbTerminateAfterTest" dlg:tab-index="13" dlg:disabled="true" dlg:left="19" dlg:top="174" dlg:width="190" dlg:height="8" dlg:value="Terminate Office after test" dlg:checked="false"/> - <dlg:titledbox dlg:id="fmBroker" dlg:tab-index="14" dlg:left="7" dlg:top="169" dlg:width="208" dlg:height="17"/> - <dlg:button dlg:id="btOk" dlg:tab-index="15" dlg:left="7" dlg:top="193" dlg:width="65" dlg:height="15" dlg:value="Ok" dlg:button-type="ok"> + <dlg:checkbox dlg:id="cbTerminateAfterTest" dlg:tab-index="11" dlg:disabled="true" dlg:left="19" dlg:top="174" dlg:width="190" dlg:height="8" dlg:value="Terminate Office after test" dlg:checked="false"/> + <dlg:titledbox dlg:id="fmBroker" dlg:tab-index="12" dlg:left="7" dlg:top="169" dlg:width="208" dlg:height="17"/> + <dlg:button dlg:id="btOk" dlg:tab-index="13" dlg:left="7" dlg:top="193" dlg:width="65" dlg:height="15" dlg:value="Ok" dlg:button-type="ok"> <script:event script:event-name="on-performaction" script:location="document" script:macro-name="Standard.Events.PressOk" script:language="StarBasic"/> </dlg:button> - <dlg:button dlg:id="btCancel" dlg:tab-index="16" dlg:left="80" dlg:top="193" dlg:width="65" dlg:height="15" dlg:value="Cancel" dlg:button-type="ok"> + <dlg:button dlg:id="btCancel" dlg:tab-index="14" dlg:left="80" dlg:top="193" dlg:width="65" dlg:height="15" dlg:value="Cancel" dlg:button-type="ok"> <script:event script:event-name="on-performaction" script:location="document" script:macro-name="Standard.Events.PressCancel" script:language="StarBasic"/> </dlg:button> - <dlg:button dlg:id="btStart" dlg:tab-index="17" dlg:left="152" dlg:top="193" dlg:width="65" dlg:height="15" dlg:value="Smoketest"> + <dlg:button dlg:id="btStart" dlg:tab-index="15" dlg:left="152" dlg:top="193" dlg:width="65" dlg:height="15" dlg:value="Smoketest"> <script:event script:event-name="on-performaction" script:location="vnd.sun.star.script" script:macro-name="Standard.Events.PressTest?language=Basic&location=document" script:language="Script"/> </dlg:button> - <dlg:checkbox dlg:id="cbJavaTest" dlg:tab-index="18" dlg:left="126" dlg:top="119" dlg:width="80" dlg:height="8" dlg:value="Java" dlg:checked="false"/> - <dlg:checkbox dlg:id="cbSaveOpen8Test" dlg:tab-index="19" dlg:left="19" dlg:top="35" dlg:width="80" dlg:height="8" dlg:value="Save / Open V8.0" dlg:checked="false"/> - <dlg:checkbox dlg:id="cbDatabaseTest" dlg:tab-index="20" dlg:left="126" dlg:top="133" dlg:width="80" dlg:height="8" dlg:value="Database" dlg:checked="false"/> - <dlg:checkbox dlg:id="cbExtensionTest" dlg:tab-index="21" dlg:left="126" dlg:top="147" dlg:width="80" dlg:height="8" dlg:value="Extension" dlg:checked="false"/> + <dlg:checkbox dlg:id="cbJavaTest" dlg:tab-index="16" dlg:left="126" dlg:top="119" dlg:width="80" dlg:height="8" dlg:value="Java" dlg:checked="false"/> + <dlg:checkbox dlg:id="cbSaveOpen8Test" dlg:tab-index="17" dlg:left="19" dlg:top="35" dlg:width="80" dlg:height="8" dlg:value="Save / Open V8.0" dlg:checked="false"/> + <dlg:checkbox dlg:id="cbDatabaseTest" dlg:tab-index="18" dlg:left="126" dlg:top="133" dlg:width="80" dlg:height="8" dlg:value="Database" dlg:checked="false"/> + <dlg:checkbox dlg:id="cbExtensionTest" dlg:tab-index="19" dlg:left="126" dlg:top="147" dlg:width="80" dlg:height="8" dlg:value="Extension" dlg:checked="false"/> </dlg:bulletinboard> </dlg:window> diff --git a/smoketestoo_native/data/Test_10er.xml b/smoketestoo_native/data/Test_10er.xml index 636dc2129120..e39a39eae2aa 100644 --- a/smoketestoo_native/data/Test_10er.xml +++ b/smoketestoo_native/data/Test_10er.xml @@ -42,8 +42,6 @@ const cMessageSaveOpenXMLDoc = "Save/Open Document XML (6/7)" const cMessageSaveOpen50Doc = "Save/Open Document 5.0" const cMessageNewDoc = "New Document" const cMessageCloseDoc = "Close Document" -const cMessageCutObj = "Cut Object" -const cMessagePasteObj = "Paste Object" Global sWorkPath$ Global sWorkPathURL$ @@ -294,12 +292,6 @@ Sub WriteTests (sText as string, bTestAll as boolean, nFileChannel as integer) sWriteStr = sText sWriteStr = sWriteStr + "new" if bTestAll then - if bMakeCutTest then - sWriteStr = sWriteStr + ", cut" - end if - if bMakePasteTest then - sWriteStr = sWriteStr + ", paste" - end if if bMakeSaveOpen8Test then sWriteStr = sWriteStr + ", save 8.0" end if @@ -364,9 +356,6 @@ Sub MakeDocTest (FilterType as Integer) LogState (not IsNull (oDoc), GetDocFilter(FilterType or cFltNewDoc)+" "+ cMessageNewDoc, MainFileChannel) SetStatus (FilterType, cDocNew, not IsNull (oDoc)) if not IsNull (oDoc) then - nCurrentAction = cDocCut - call CutAndPaste(FilterType, oDoc) -' bError = oDoc.CurrentController.frame.close nCurrentAction = cDocSaveOpen8 if bMakeSaveOpen8Test and IsFilterAvailable (FilterType or cFlt8) then sFileName8 = sWorkPathURL+cTempFileName+"."+GetDocEndings(FilterType or cFlt8) @@ -674,10 +663,6 @@ Function GetErrorMessageOnAction (nAction as Integer) as String Select Case ( nAction ) case cDocNew GetErrorMessageOnAction = cMessageNewDoc - case cDocCut - GetErrorMessageOnAction = cMessageCutObj - case cDocPaste - GetErrorMessageOnAction = cMessagePasteObj case cDocSaveOpen8 GetErrorMessageOnAction = cMessageSaveOpen8Doc case cDocSaveOpenXML @@ -712,152 +697,6 @@ Function TestJava (FilterType as Integer) as boolean TestJava = not IsNull (oObj) End Function -Sub CutAndPaste (DocType as Integer, oDoc as Object) - Dim sText as String - Dim oWin as Object - Dim oText as Object - Dim oView as Object - Dim bCutState as boolean, bPasteState as boolean - Select Case ( DocType ) - case frmWriter - Dim oCursor as Object - - sText = "AutomaticText" - oText = oDoc.GetText - oCursor = oText.CreateTextCursor - oText.InsertString(oCursor, sText, true) ' Cursor selektiert den Text - oView = oDoc.getCurrentController - oView.Select(oCursor) - - if bMakeCutTest then - call CutText (oDoc) - - if oText.GetString = "" Then - bCutState = True - else - bCutState = False - end If - SetStatus (DocType, cDocCut, bCutState) - LogState (bCutState, GetDocFilter(DocType or cFltNewDoc)+" "+ cMessageCutObj, FileChannel) - LogState (bCutState, GetDocFilter(DocType or cFltNewDoc)+" "+ cMessageCutObj, MainFileChannel) - end if - - if bMakePasteTest and bMakeCutTest then - call PasteText (oDoc) - - if oText.GetString = sText Then - bPasteState = True - else - bPasteState = False - end If - SetStatus (DocType, cDocPaste, bPasteState) - LogState (bPasteState, GetDocFilter(DocType or cFltNewDoc)+" "+ cMessagePasteObj, FileChannel) - LogState (bPasteState, GetDocFilter(DocType or cFltNewDoc)+" "+ cMessagePasteObj, MainFileChannel) - end if - - case frmCalc - DIM oCell as Object - - sText = "AutomaticText" - oCell = oDoc.Sheets(0).GetCellByPosition(0, 0) - oCell.String = sText - oView = oDoc.getCurrentController - oView.Select(oCell) - - if bMakeCutTest then - call CutText (oDoc) - - if oCell.String = "" Then - bCutState = True - else - bCutState = False - end If - SetStatus (DocType, cDocCut, bCutState) - LogState (bCutState, GetDocFilter(DocType or cFltNewDoc)+" "+ cMessageCutObj, FileChannel) - LogState (bCutState, GetDocFilter(DocType or cFltNewDoc)+" "+ cMessageCutObj, MainFileChannel) - end if - - if bMakePasteTest and bMakeCutTest then - call PasteText (oDoc) - - if oCell.String = sText Then - bPasteState = True - else - bPasteState = False - end If - SetStatus (DocType, cDocPaste, bPasteState) - LogState (bPasteState, GetDocFilter(DocType or cFltNewDoc)+" "+ cMessagePasteObj, FileChannel) - LogState (bPasteState, GetDocFilter(DocType or cFltNewDoc)+" "+ cMessagePasteObj, MainFileChannel) - end if - case frmMessage - case frmImpress, frmDraw - Dim oPage as Object - Dim oRect as Object - Dim xSize as Object - Dim xPoint as Object - Dim bObjState as Boolean - - xSize = CreateUnoStruct ("com.sun.star.awt.Size") - xPoint = CreateUnoStruct ("com.sun.star.awt.Point") - xSize.Width = 2000 - xSize.Height = 2000 - xPoint.x = 10000 - xPoint.y = 10000 - oPage = oDoc.DrawPages(0) - - if DocType = frmImpress Then - oPage.Layout = 20 ' set page layot to none - end If - - oRect = oDoc.CreateInstance("com.sun.star.drawing.RectangleShape") - oRect.Size = xSize - oRect.Position = xPoint - oPage.add(oRect) - - oView = oDoc.getCurrentController - oView.Select(oRect) - - ' Prüft ob überhaupt ein Object angelegt wurde - if oPage.count = 1 Then - bObjState = True - else - bObjState = False - end If - - if bMakeCutTest then - call CutText (oDoc) - - if (oPage.count = 0) and bObjState Then - bCutState = True - else - bCutState = False - end If - SetStatus (DocType, cDocCut, bCutState) - LogState (bCutState, GetDocFilter(DocType or cFltNewDoc)+" "+ cMessageCutObj, FileChannel) - LogState (bCutState, GetDocFilter(DocType or cFltNewDoc)+" "+ cMessageCutObj, MainFileChannel) - end if - - wait (1000) 'wait after cut - - if bMakePasteTest and bMakeCutTest then - call PasteText (oDoc) - - if (oPage.count = 1) and bObjState Then - bPasteState = True - else - bPasteState = False - end If - SetStatus (DocType, cDocPaste, bPasteState) - LogState (bPasteState, GetDocFilter(DocType or cFltNewDoc)+" "+ cMessagePasteObj, FileChannel) - LogState (bPasteState, GetDocFilter(DocType or cFltNewDoc)+" "+ cMessagePasteObj, MainFileChannel) - end if - case frmMath - case frmImage - case frmHyperText - case frmChart - end Select -end Sub - Sub LoadLibrary( LibName as String ) dim args(1) diff --git a/smoketestoo_native/data/content.xml b/smoketestoo_native/data/content.xml index bc63d1d2c551..dcd31b1759e4 100644 --- a/smoketestoo_native/data/content.xml +++ b/smoketestoo_native/data/content.xml @@ -25,4 +25,4 @@ * for a copy of the LGPLv3 License. * **********************************************************************--> -<office:document-content xmlns:office="http://openoffice.org/2000/office" xmlns:style="http://openoffice.org/2000/style" xmlns:text="http://openoffice.org/2000/text" xmlns:table="http://openoffice.org/2000/table" xmlns:draw="http://openoffice.org/2000/drawing" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="http://openoffice.org/2000/meta" xmlns:number="http://openoffice.org/2000/datastyle" xmlns:svg="http://www.w3.org/2000/svg" xmlns:chart="http://openoffice.org/2000/chart" xmlns:dr3d="http://openoffice.org/2000/dr3d" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="http://openoffice.org/2000/form" xmlns:script="http://openoffice.org/2000/script" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" office:version="1.2" grddl:transformation="http://docs.oasis-open.org/office/1.2/xslt/odf2rdf.xsl" office:class="text"><office:script/><office:font-decls><style:font-decl style:name="Arial Unicode MS" fo:font-family="'Arial Unicode MS'" style:font-pitch="variable"/><style:font-decl style:name="HG Mincho Light J" fo:font-family="'HG Mincho Light J', 'MS Mincho', 'HG Mincho J', 'HG Mincho L', 'HG Mincho', Mincho, 'MS PMincho', 'MS Gothic', 'HG Gothic J', 'HG Gothic B', 'HG Gothic', Gothic, 'MS PGothic', 'Andale Sans UI', 'Arial Unicode MS', 'Lucida Sans Unicode', Tahoma" style:font-pitch="variable"/><style:font-decl style:name="Thorndale" fo:font-family="Thorndale, 'Times New Roman', Times, 'Lucida Serif', 'Lucida Bright', Timmons, 'New York', Serif" style:font-family-generic="roman" style:font-pitch="variable"/><style:font-decl style:name="Arial" fo:font-family="Arial" style:font-family-generic="swiss" style:font-pitch="variable"/></office:font-decls><office:automatic-styles><style:style style:name="P1" style:family="paragraph"><style:properties fo:text-align="center"/></style:style><style:style style:name="gr1" style:family="graphics"><style:properties style:wrap="run-through" style:number-wrapped-paragraphs="no-limit" style:vertical-pos="from-top" style:horizontal-pos="from-left" style:horizontal-rel="paragraph"/></style:style></office:automatic-styles><office:body><office:forms form:automatic-focus="false" form:apply-design-mode="false"><form:form form:name="Standard" form:apply-filter="true" form:command-type="table" form:service-name="com.sun.star.form.component.Form" office:target-frame="" xlink:href=""><form:control form:name="options" form:service-name="com.sun.star.form.component.CommandButton" form:id="control1"><form:button form:label="options" office:target-frame="" xlink:href="" form:image-data="" form:delay-for-repeat="PT0.50S" form:image-position="center"><form:properties><form:property form:property-name="DefaultControl" form:property-type="string"><form:property-value>stardiv.one.form.control.CommandButton</form:property-value></form:property></form:properties><office:events><script:event script:language="StarBasic" script:event-name="on-performaction" script:macro-name="Standard.Global.ShowOptionsDlg" script:location="document" script:library="document"/></office:events></form:button></form:control><form:control form:name="start" form:service-name="com.sun.star.form.component.CommandButton" form:id="control2"><form:button form:label="start smoketest" office:target-frame="" xlink:href="" form:image-data="" form:delay-for-repeat="PT0.50S" form:image-position="center"><form:properties><form:property form:property-name="DefaultControl" form:property-type="string"><form:property-value>stardiv.one.form.control.CommandButton</form:property-value></form:property></form:properties><office:events><script:event script:language="StarBasic" script:event-name="on-performaction" script:macro-name="Standard.Global.StartTestByOptions" script:location="document" script:library="document"/></office:events></form:button></form:control><form:control form:name="table" form:service-name="com.sun.star.form.component.CommandButton" form:id="control3"><form:button form:label="delete table" office:target-frame="" xlink:href="" form:image-data="" form:delay-for-repeat="PT0.50S" form:image-position="center"><form:properties><form:property form:property-name="DefaultControl" form:property-type="string"><form:property-value>stardiv.one.form.control.CommandButton</form:property-value></form:property></form:properties><office:events><script:event script:language="StarBasic" script:event-name="on-performaction" script:macro-name="Standard.Global.ClearAllText" script:location="document" script:library="document"/></office:events></form:button></form:control></form:form></office:forms><text:sequence-decls><text:sequence-decl text:display-outline-level="0" text:name="Illustration"/><text:sequence-decl text:display-outline-level="0" text:name="Table"/><text:sequence-decl text:display-outline-level="0" text:name="Text"/><text:sequence-decl text:display-outline-level="0" text:name="Drawing"/></text:sequence-decls><text:user-field-decls><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Writer"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Calc"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Impress"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Draw"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="HTML"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Math"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Chart"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="SaveOpenXML"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="SaveOpen50"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Cut"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Paste"/><text:user-field-decl text:value-type="string" text:string-value="n" text:name="Terminate"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Java"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="SaveOpen8"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Database"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Extension"/></text:user-field-decls><text:p text:style-name="Standard"><draw:control text:anchor-type="as-char" svg:y="0cm" draw:z-index="1" draw:style-name="gr1" draw:text-style-name="P1" svg:width="2.477cm" svg:height="0.787cm" form:id="control2"/><draw:control text:anchor-type="as-char" svg:y="0cm" draw:z-index="0" draw:style-name="gr1" draw:text-style-name="P1" svg:width="2.477cm" svg:height="0.787cm" form:id="control1"/><draw:control text:anchor-type="as-char" svg:y="0cm" draw:z-index="2" draw:style-name="gr1" draw:text-style-name="P1" svg:width="2.477cm" svg:height="0.787cm" form:id="control3"/></text:p><text:p text:style-name="Standard"/></office:body></office:document-content> +<office:document-content xmlns:office="http://openoffice.org/2000/office" xmlns:style="http://openoffice.org/2000/style" xmlns:text="http://openoffice.org/2000/text" xmlns:table="http://openoffice.org/2000/table" xmlns:draw="http://openoffice.org/2000/drawing" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="http://openoffice.org/2000/meta" xmlns:number="http://openoffice.org/2000/datastyle" xmlns:svg="http://www.w3.org/2000/svg" xmlns:chart="http://openoffice.org/2000/chart" xmlns:dr3d="http://openoffice.org/2000/dr3d" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="http://openoffice.org/2000/form" xmlns:script="http://openoffice.org/2000/script" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" office:version="1.2" grddl:transformation="http://docs.oasis-open.org/office/1.2/xslt/odf2rdf.xsl" office:class="text"><office:script/><office:font-decls><style:font-decl style:name="Arial Unicode MS" fo:font-family="'Arial Unicode MS'" style:font-pitch="variable"/><style:font-decl style:name="HG Mincho Light J" fo:font-family="'HG Mincho Light J', 'MS Mincho', 'HG Mincho J', 'HG Mincho L', 'HG Mincho', Mincho, 'MS PMincho', 'MS Gothic', 'HG Gothic J', 'HG Gothic B', 'HG Gothic', Gothic, 'MS PGothic', 'Andale Sans UI', 'Arial Unicode MS', 'Lucida Sans Unicode', Tahoma" style:font-pitch="variable"/><style:font-decl style:name="Thorndale" fo:font-family="Thorndale, 'Times New Roman', Times, 'Lucida Serif', 'Lucida Bright', Timmons, 'New York', Serif" style:font-family-generic="roman" style:font-pitch="variable"/><style:font-decl style:name="Arial" fo:font-family="Arial" style:font-family-generic="swiss" style:font-pitch="variable"/></office:font-decls><office:automatic-styles><style:style style:name="P1" style:family="paragraph"><style:properties fo:text-align="center"/></style:style><style:style style:name="gr1" style:family="graphics"><style:properties style:wrap="run-through" style:number-wrapped-paragraphs="no-limit" style:vertical-pos="from-top" style:horizontal-pos="from-left" style:horizontal-rel="paragraph"/></style:style></office:automatic-styles><office:body><office:forms form:automatic-focus="false" form:apply-design-mode="false"><form:form form:name="Standard" form:apply-filter="true" form:command-type="table" form:service-name="com.sun.star.form.component.Form" office:target-frame="" xlink:href=""><form:control form:name="options" form:service-name="com.sun.star.form.component.CommandButton" form:id="control1"><form:button form:label="options" office:target-frame="" xlink:href="" form:image-data="" form:delay-for-repeat="PT0.50S" form:image-position="center"><form:properties><form:property form:property-name="DefaultControl" form:property-type="string"><form:property-value>stardiv.one.form.control.CommandButton</form:property-value></form:property></form:properties><office:events><script:event script:language="StarBasic" script:event-name="on-performaction" script:macro-name="Standard.Global.ShowOptionsDlg" script:location="document" script:library="document"/></office:events></form:button></form:control><form:control form:name="start" form:service-name="com.sun.star.form.component.CommandButton" form:id="control2"><form:button form:label="start smoketest" office:target-frame="" xlink:href="" form:image-data="" form:delay-for-repeat="PT0.50S" form:image-position="center"><form:properties><form:property form:property-name="DefaultControl" form:property-type="string"><form:property-value>stardiv.one.form.control.CommandButton</form:property-value></form:property></form:properties><office:events><script:event script:language="StarBasic" script:event-name="on-performaction" script:macro-name="Standard.Global.StartTestByOptions" script:location="document" script:library="document"/></office:events></form:button></form:control><form:control form:name="table" form:service-name="com.sun.star.form.component.CommandButton" form:id="control3"><form:button form:label="delete table" office:target-frame="" xlink:href="" form:image-data="" form:delay-for-repeat="PT0.50S" form:image-position="center"><form:properties><form:property form:property-name="DefaultControl" form:property-type="string"><form:property-value>stardiv.one.form.control.CommandButton</form:property-value></form:property></form:properties><office:events><script:event script:language="StarBasic" script:event-name="on-performaction" script:macro-name="Standard.Global.ClearAllText" script:location="document" script:library="document"/></office:events></form:button></form:control></form:form></office:forms><text:sequence-decls><text:sequence-decl text:display-outline-level="0" text:name="Illustration"/><text:sequence-decl text:display-outline-level="0" text:name="Table"/><text:sequence-decl text:display-outline-level="0" text:name="Text"/><text:sequence-decl text:display-outline-level="0" text:name="Drawing"/></text:sequence-decls><text:user-field-decls><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Writer"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Calc"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Impress"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Draw"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="HTML"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Math"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Chart"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="SaveOpenXML"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="SaveOpen50"/><text:user-field-decl text:value-type="string" text:string-value="n" text:name="Terminate"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Java"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="SaveOpen8"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Database"/><text:user-field-decl text:value-type="string" text:string-value="y" text:name="Extension"/></text:user-field-decls><text:p text:style-name="Standard"><draw:control text:anchor-type="as-char" svg:y="0cm" draw:z-index="1" draw:style-name="gr1" draw:text-style-name="P1" svg:width="2.477cm" svg:height="0.787cm" form:id="control2"/><draw:control text:anchor-type="as-char" svg:y="0cm" draw:z-index="0" draw:style-name="gr1" draw:text-style-name="P1" svg:width="2.477cm" svg:height="0.787cm" form:id="control1"/><draw:control text:anchor-type="as-char" svg:y="0cm" draw:z-index="2" draw:style-name="gr1" draw:text-style-name="P1" svg:width="2.477cm" svg:height="0.787cm" form:id="control3"/></text:p><text:p text:style-name="Standard"/></office:body></office:document-content> diff --git a/testautomation/chart2/optional/includes/ch2_flexible_source_range_selection01.inc b/testautomation/chart2/optional/includes/ch2_flexible_source_range_selection01.inc index ec2496ecb1f3..071e9146ef78 100644 --- a/testautomation/chart2/optional/includes/ch2_flexible_source_range_selection01.inc +++ b/testautomation/chart2/optional/includes/ch2_flexible_source_range_selection01.inc @@ -782,9 +782,7 @@ endcase ' function fOpenWriterTestDocumentAndInsertChart(sInputFile as STRING) as BOOLEAN fOpenWriterTestDocumentAndInsertChart = FALSE - call hFileOpen(sInputFile) - sleep(2) - Call sMakeReadOnlyDocumentEditable() + hFileOpenLocally(sInputFile) '///Menu Insert Object Chart to open chart wizard printlog "Menu Insert Object Chart to open chart wizard" InsertObjectChart diff --git a/testautomation/chart2/tools/ch_tools_common.inc b/testautomation/chart2/tools/ch_tools_common.inc index f6d722fa2a25..ad9f2108f024 100644 --- a/testautomation/chart2/tools/ch_tools_common.inc +++ b/testautomation/chart2/tools/ch_tools_common.inc @@ -162,9 +162,7 @@ end function ' function fOpenTestDocumentAndSelectDataRange(sInputFile as string) as BOOLEAN fOpenTestDocumentAndSelectDataRange = FALSE - call hFileOpen(sInputFile) - sleep(2) - Call sMakeReadOnlyDocumentEditable() + hFileOpenLocally(sInputFile) '/// Select chart using navigator printlog "Select chart using navigator" call fSelectFirstOLE @@ -191,9 +189,7 @@ end function ' function fOpenTestDocumentAndInsertChart(sInputFile as string) as BOOLEAN fOpenTestDocumentAndInsertChart = FALSE - call hFileOpen(sInputFile) - sleep(2) - Call sMakeReadOnlyDocumentEditable() + hFileOpenLocally(sInputFile) Kontext "DocumentCalc" printlog "Type <STRG+HOME>" DocumentCalc.TypeKeys "<MOD1 HOME>" diff --git a/testautomation/dbaccess/optional/includes/ctrl_General.inc b/testautomation/dbaccess/optional/includes/ctrl_General.inc index 9e137f4c7a70..b0ee0bea81dc 100755..100644 --- a/testautomation/dbaccess/optional/includes/ctrl_General.inc +++ b/testautomation/dbaccess/optional/includes/ctrl_General.inc @@ -38,13 +38,14 @@ sub ctrl_General call tPosAndSize_Protect_Position call tPosAndSize_Protect_Size call tPosAndSize_Keyboard - call tPosAndSize_Dialog + call tPosAndSize_Dialog call tPosAndSize_KeepRatio 'TODO Control the Setting on tabpage Rotation & Slant (should be inactive). call tTabStop call tActivationOrder call tAddFields + call tLabelFieldSelection end sub @@ -1033,7 +1034,96 @@ testcase tAddFields call hCloseDocument endcase +'------------------------------------------------------------------------- +testcase tLabelFieldSelection + ' check if the assignment of lables to text fields work + dim sLabelText as String + + printlog "Open a new document," + call hNewDocument + Kontext "DocumentWriter" + DocumentWriter.TypeKeys "tt_doc" , true + sleep(1) + + printlog "open the form control toolbar" + call hToolbarSelect("FormControls",true) + + Kontext "FormControls" + Label.Click + sleep(1) + + printlog "insert a label field" + call hDrawingWithSelection ( 20, 20, 30, 30 ) + sleep(2) + + Kontext "FormControls" + Edit.Click + sleep(1) + + printlog "insert a text field" + call hDrawingWithSelection ( 40, 40, 50, 50 ) + sleep(2) + + printlog "open the control property browser" + call fOpenControlPropertyBrowser + + Kontext "ControlPropertiesTabControl" + ControlPropertiesTabControl.setPage TabGeneralControl 'make shure that tabpage general in property is choosen + sleep(2) + + printlog "click on button behind the lable field to open the field selection dialog" + Kontext "TabGeneralControl" + LabelFieldButton.Click + sleep(1) + + printlog "select the lable fiiel in the tree list box" + Kontext "LabelFieldSelection" + LabelFieldSelection.TypeKeys "<DOWN>",TRUE + LabelFieldSelection.TypeKeys "<DOWN>",TRUE + sleep(1) + printlog "close the field selection dialog" + LabelFieldSelection.OK + sleep(1) + printlog "check if the lable field property contains some text" + 'TODO: check for the correct text this has a language dependencie + Kontext "TabGeneralControl" + sLabelText = LabelField.getText() + if(sLabelText = "") then + warnlog "the lable for a text field is not set" + else + printlog "the label for the text field is set" + endif + + printlog "click on button behind the lable field to open the field selection dialog" + Kontext "TabGeneralControl" + LabelFieldButton.Click + sleep(1) + + Kontext "LabelFieldSelection" + LabelFieldSelection.TypeKeys "<DOWN>",TRUE + LabelFieldSelection.TypeKeys "<DOWN>",TRUE + sleep(1) + printlog "select the lable field and check the checkbox 'no assignment'" + CBNoAssignment.check + printlog "close the field selection dialog" + LabelFieldSelection.OK + sleep(1) + + printlog "check if the lable field property contains no text" + Kontext "TabGeneralControl" + sLabelText = LabelField.getText() + if(sLabelText <> "") then + warnlog "the lable for a text field is not deleted" + else + printlog "the label for the text field is deleted" + endif + + printlog "close the document" + call hCloseDocument + +endcase +'------------------------------------------------------------------------- function fOpenPositionAndSizeDialog call hToolbarSelect("FormDesignTools",true) diff --git a/testautomation/dbaccess/optional/includes/ctrl_Several2.inc b/testautomation/dbaccess/optional/includes/ctrl_Several2.inc index 82fa9229b1f8..717cf149b902 100755..100644 --- a/testautomation/dbaccess/optional/includes/ctrl_Several2.inc +++ b/testautomation/dbaccess/optional/includes/ctrl_Several2.inc @@ -293,7 +293,7 @@ testcase tImageControl sleep(2) '/// set HelpURL printlog "set HelpURL" - fsetControlProperty("ImageControl","HelpURL","HID:1234567") + fsetControlProperty("ImageControl","HelpURL","customcontrol2") '/// save the document printlog "save the document" hFileSaveAsKill ( gOfficePath + ConvertPath("user/work/TT_ImageControl.odt")) @@ -315,7 +315,7 @@ testcase tImageControl Kontext "TabGeneralControl" dim bScrOK as boolean 'control variable if all properties are correct bScrOK = true - if fgetControlProperty("ImageControl","HelpURL") <> "HID:1234567" then + if fgetControlProperty("ImageControl","HelpURL") <> "customcontrol2" then warnlog "the imagecontrol is not saved with property: HelpURL" bScrOK = false endif diff --git a/testautomation/dbaccess/optional/includes/ctrl_Wizards.inc b/testautomation/dbaccess/optional/includes/ctrl_Wizards.inc index 49bcaceb6ac7..2f51183a40a1 100755..100644 --- a/testautomation/dbaccess/optional/includes/ctrl_Wizards.inc +++ b/testautomation/dbaccess/optional/includes/ctrl_Wizards.inc @@ -239,7 +239,7 @@ testcase tGroupBoxWithDatasource Kontext "TabGeneralControl" TabGeneralControl.TypeKeys "<TAB>" , true 'this tab is importent, I don't not why but it is. sleep(1) - HelpURL.setText "HID:123456" + HelpURL.setText "customcontrol1" HelpURL.TypeKeys "<RETURN>",true sleep(1) Kontext "ControlPropertiesDialog" @@ -276,7 +276,7 @@ testcase tGroupBoxWithDatasource Kontext "TabGeneralControl" TabGeneralControl.TypeKeys "<TAB>" , true 'this tab is importent, I don't not why but it is. sleep(1) - HelpURL.setText "HID:1234567" + HelpURL.setText "customcontrol2" HelpURL.TypeKeys "<RETURN>", true sleep(1) Kontext "ControlPropertiesDialog" @@ -314,7 +314,7 @@ testcase tGroupBoxWithDatasource Kontext "TabGeneralControl" TabGeneralControl.TypeKeys "<TAB>" , true ' this tab is importent, I don't not why but it is. - HelpURL.setText "HID:12345678" + HelpURL.setText "customcontrol3" HelpURL.TypeKeys "<RETURN>", true sleep(1) Kontext "ControlPropertiesDialog" @@ -660,7 +660,7 @@ testcase tListBox warnlog "The dropdown style is not active." endif sleep(1) - fSetControlProperty("ListBox","HelpURL","HID:123456") + fSetControlProperty("ListBox","HelpURL","customcontrol1") sleep(1) '/// save the document printlog "save the document" diff --git a/testautomation/dbaccess/tools/dbcreatetools.inc b/testautomation/dbaccess/tools/dbcreatetools.inc index 2658281f65be..cc99d8d203c5 100755..100644 --- a/testautomation/dbaccess/tools/dbcreatetools.inc +++ b/testautomation/dbaccess/tools/dbcreatetools.inc @@ -1375,8 +1375,17 @@ function fRegisterDatabaseFile( sFileName, sName) NewBtn.Click sleep(1) Kontext "CreateDatabaseLink" - DatabaseFile.setText(sFileName) + RegisteredName.setText(sName) + + ' this does not work due to issue 115468 + ' DatabaseFile.setText(sFileName) + ' workaround + CreatedatabaseLink.typeKeys("<shift tab>") + CreatedatabaseLink.typeKeys("<shift tab>") + CreatedatabaseLink.typeKeys(sFileName) + ' - + CreateDatabaseLink.OK sleep(1) diff --git a/testautomation/extensions/optional/input/dependencies/version34.oxt b/testautomation/extensions/optional/input/dependencies/version34.oxt Binary files differindex e14671c77e92..772645635446 100644 --- a/testautomation/extensions/optional/input/dependencies/version34.oxt +++ b/testautomation/extensions/optional/input/dependencies/version34.oxt diff --git a/testautomation/extensions/optional/input/extension_sources/TaskPaneComponent/src/toolpanels/TaskPaneComponentUI.xdl b/testautomation/extensions/optional/input/extension_sources/TaskPaneComponent/src/toolpanels/TaskPaneComponentUI.xdl index 7820e3d52c59..75e1ceb1e019 100755 --- a/testautomation/extensions/optional/input/extension_sources/TaskPaneComponent/src/toolpanels/TaskPaneComponentUI.xdl +++ b/testautomation/extensions/optional/input/extension_sources/TaskPaneComponent/src/toolpanels/TaskPaneComponentUI.xdl @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE dlg:window PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "dialog.dtd"> -<dlg:window xmlns:dlg="http://openoffice.org/2000/dialog" xmlns:script="http://openoffice.org/2000/script" dlg:id="Dialog1" dlg:left="192" dlg:top="127" dlg:width="174" dlg:height="147" dlg:closeable="true" dlg:moveable="true" dlg:help-url="HID:123456" dlg:withtitlebar="false"> +<dlg:window xmlns:dlg="http://openoffice.org/2000/dialog" xmlns:script="http://openoffice.org/2000/script" dlg:id="Dialog1" dlg:left="192" dlg:top="127" dlg:width="174" dlg:height="147" dlg:closeable="true" dlg:moveable="true" dlg:help-url="customcontrol1" dlg:withtitlebar="false"> <dlg:bulletinboard> <dlg:button dlg:id="CommandButton1" dlg:tab-index="0" dlg:left="6" dlg:top="8" dlg:width="64" dlg:height="20" dlg:value="a wonderful button"/> <dlg:textfield dlg:id="TextField1" dlg:textarea-vertical-align="top" dlg:tab-index="1" dlg:left="6" dlg:top="38" dlg:width="64" dlg:height="59" dlg:value="a wonderful text"/> diff --git a/testautomation/framework/optional/f_basic_gridcontrol.bas b/testautomation/framework/optional/f_basic_gridcontrol.bas index 963482253438..dc5f9a392988 100755..100644 --- a/testautomation/framework/optional/f_basic_gridcontrol.bas +++ b/testautomation/framework/optional/f_basic_gridcontrol.bas @@ -51,6 +51,7 @@ sub LoadIncludeFiles use "global\system\includes\gvariabl.inc" use "global\tools\includes\optional\t_treelist_tools.inc" + use "global\tools\includes\optional\t_macro_tools.inc" gApplication = "WRITER" call GetUseFiles() diff --git a/testautomation/framework/optional/includes/CJK_CollationDialogue_1.inc b/testautomation/framework/optional/includes/CJK_CollationDialogue_1.inc index aaefdcd5bafb..d450415dd970 100755..100644 --- a/testautomation/framework/optional/includes/CJK_CollationDialogue_1.inc +++ b/testautomation/framework/optional/includes/CJK_CollationDialogue_1.inc @@ -496,7 +496,8 @@ testcase tStrokeSort Dim i , j as Integer - testFile = "sortTest.sxw" + testFile = gTesttoolPath & "framework\optional\input\CJK\sortTest.sxw" + testFile = convertpath( testFile ) aCorrectSequence = Array( "1" , "2" , "3" , "4" ,"5" ) j = UBound(aCorrectSequence) @@ -527,9 +528,8 @@ testcase tStrokeSort Call hNewDocument '/// Open a test file and check <i>No Grid</i> checkbox - Call hFileOpen ( gTesttoolPath + "framework\optional\input\CJK\" + testFile ) - sMakeReadOnlyDocumentEditable - EditSelectAll + hFileOpenLocally( testfile ) + hUseAsyncSlot( "EditSelectAll" ) '/// Open <i>Tools/Sort</i> ToolsSort @@ -572,6 +572,7 @@ testcase tStrokeSort next i Call hCloseDocument + hFileDelete( gLastWorkFile ) endcase @@ -586,7 +587,9 @@ testcase tPinyinSort Dim i , j as Integer - testFile = "sortTest.sxw" + testFile = gTesttoolPath & "framework\optional\input\CJK\sortTest.sxw" + testFile = convertpath( testFile ) + aCorrectSequence = Array( "2" , "3" , "4" , "1" , "5" ) j = UBound(aCorrectSequence) @@ -617,9 +620,8 @@ testcase tPinyinSort Call hNewDocument '/// Open a test file and check <i>No Grid</i> checkbox - Call hFileOpen ( gTesttoolPath + "framework\optional\input\CJK\" + testFile ) - sMakeReadOnlyDocumentEditable - EditSelectAll + hFileOpenLocally( testfile ) + hUseAsyncSlot( "EditSelectAll" ) '/// Open <i>Tools/Sort</i> ToolsSort @@ -664,6 +666,7 @@ testcase tPinyinSort next i Call hCloseDocument + hFileDelete( gLastWorkFile ) endcase diff --git a/testautomation/framework/optional/includes/basic_formcontrols.inc b/testautomation/framework/optional/includes/basic_formcontrols.inc index cc8f999ff9ad..68d6ae7c80ef 100755..100644 --- a/testautomation/framework/optional/includes/basic_formcontrols.inc +++ b/testautomation/framework/optional/includes/basic_formcontrols.inc @@ -122,7 +122,7 @@ testcase tAllControlsOnDialog( cMajor as string ) if ( hFindFirstDialog() ) then printlog( "First dialog found. Good." ) else - warnlog( "Could not access dialog, aborting test" ) + warnlog( "#i115117 - Could not access dialog, accelerator not working? (Test interrupted)" ) hCloseBasicIde() hDestroyDocument() goto endsub diff --git a/testautomation/framework/optional/includes/basic_gridcontrol.inc b/testautomation/framework/optional/includes/basic_gridcontrol.inc index 181bd2aa9b1f..61d7837df3cb 100755..100644 --- a/testautomation/framework/optional/includes/basic_gridcontrol.inc +++ b/testautomation/framework/optional/includes/basic_gridcontrol.inc @@ -33,32 +33,24 @@ testcase tGridcontrolLoad - const MACRO_NAME = "VclTestTool" - const MACRO_NOT_FOUND = 0 + const MACRO_NAME = "Show" const FILE_NAME = "framework/optional/input/gridcontrol.odt" - dim iPos as integer - - printlog( "Open the test document: " & FILE_NAME ) - call hFileOpen( gTestToolPath & FILE_NAME ) + dim i as integer + dim a as integer - printlog( "Open the <Run Macro> dialog" ) - ToolsMacrosRunMacro - - printlog( "Find the document, its library and the test macro, run the macro" ) - Kontext "ScriptSelector" - if ( ScriptSelector.exists( 10 ) ) then + printlog( "Open the test document: " & FILE_NAME ) + call hFileOpenLocally( gTestToolPath & FILE_NAME ) printlog "Start the macro, that performs the test" - Kontext "GridControlDialogStarter" - ' FAILS IF DOCUMENT IS READONLY.... - ShowGridcontrol.typeKeys "<space>" + hExecMacro( MACRO_NAME ) + Kontext "GridControlDialog" if GridControlDialog.exists(5) then for i=1 to gridcontrolcontrol.getcolumncount - for a=1 to gridcontrolcontrol.getrowcount - printlog " " + i + ":"+a+": '" + gridcontrolcontrol.getitemtype (i,a) + "' '" + gridcontrolcontrol.getitemtext (i,a) + "'" - next a + for a=1 to gridcontrolcontrol.getrowcount + printlog " " + i + ":"+a+": '" + gridcontrolcontrol.getitemtype (i,a) + "' '" + gridcontrolcontrol.getitemtext (i,a) + "'" + next a next i gridcontrolcontrol.select 5 @@ -70,35 +62,36 @@ testcase tGridcontrolLoad warnlog "No selection Event by .select" endif - Kontext "GridControlDialog" + Kontext "GridControlDialog" gridcontrolcontrol.typeKeys("<down>") kontext if active.exists(5) then - printlog active.gettext - active.ok + printlog active.gettext + active.ok else - warnlog "No selection event by .typeKeys <down>" + warnlog "No selection event by .typeKeys <down>" endif - Kontext "GridControlDialog" + Kontext "GridControlDialog" gridcontrolcontrol.typeKeys("<up>") kontext if active.exists(5) then - printlog active.gettext - active.ok + printlog active.gettext + active.ok else - warnlog "No selection event by .typeKeys <up>" + warnlog "No selection event by .typeKeys <up>" endif - Kontext "GridControlDialog" + Kontext "GridControlDialog" GridControlDialog.close else warnlog "Gridcontrol Dialog did not come up after pressing button" endif - + printlog( "Test exit, cleanup" ) hFileCloseAll() - + hDeleteFile( gLastWorkFile ) + endcase diff --git a/testautomation/framework/optional/includes/basic_package_import.inc b/testautomation/framework/optional/includes/basic_package_import.inc index 31596ed21001..80fe04cc92d4 100755..100644 --- a/testautomation/framework/optional/includes/basic_package_import.inc +++ b/testautomation/framework/optional/includes/basic_package_import.inc @@ -102,9 +102,7 @@ testcase tBasicPackageImport next iCurrentLib cLibraryName = BibliotheksListe.getSelText() - if ( not hClickButton( Hinzufuegen ) ) then - warnlog( "#i64007 - Office crashes on clicking import button" ) - endif + hClickButton( Hinzufuegen ) kontext "OeffnenDlg" hCloseDialog( OeffnenDlg, "cancel" ) diff --git a/testautomation/framework/optional/includes/basic_shared_modules.inc b/testautomation/framework/optional/includes/basic_shared_modules.inc index 63241fec9d7d..497d69103bf6 100755..100644 --- a/testautomation/framework/optional/includes/basic_shared_modules.inc +++ b/testautomation/framework/optional/includes/basic_shared_modules.inc @@ -37,7 +37,7 @@ testcase tBasicSharedModules dim iObjectPosition as integer dim iLibraryCount as integer - const EXPECTED_LIBRARY_COUNT = 13 ' prebundled extensions add a library + const EXPECTED_LIBRARY_COUNT = 14 ' prebundled extensions add a library const EXPECTED_LIBRARY_COUNT_OOO = 12 hInitSingleDoc() diff --git a/testautomation/framework/optional/includes/basic_vba-compat_application-union.inc b/testautomation/framework/optional/includes/basic_vba-compat_application-union.inc index 9acd9d1b032e..e35fc8ae3494 100755..100644 --- a/testautomation/framework/optional/includes/basic_vba-compat_application-union.inc +++ b/testautomation/framework/optional/includes/basic_vba-compat_application-union.inc @@ -58,11 +58,11 @@ testcase tBasicVBACompatApplicationUnion() macro_identifier( 5 ) = "5: False" macro_identifier( 6 ) = "6: True" else - macro_identifier( 1 ) = "1: True" - macro_identifier( 2 ) = "2: True" + macro_identifier( 1 ) = "1: False" + macro_identifier( 2 ) = "2: False" macro_identifier( 3 ) = "3: True" - macro_identifier( 4 ) = "4: True" - macro_identifier( 5 ) = "5: True" + macro_identifier( 1 ) = "4: False" + macro_identifier( 2 ) = "5: False" macro_identifier( 6 ) = "6: True" endif diff --git a/testautomation/framework/optional/includes/extras_modify_objects.inc b/testautomation/framework/optional/includes/extras_modify_objects.inc index 964d28a95b77..9500e7609e24 100755..100644 --- a/testautomation/framework/optional/includes/extras_modify_objects.inc +++ b/testautomation/framework/optional/includes/extras_modify_objects.inc @@ -39,29 +39,43 @@ private const MAX_FILE_COUNT = 3000 ' the max number of templates or samples testcase tModifyObjects( iMode as integer, cCategory as string, sVer as string ) + ' This test loads/saves and reloads every template or sample shipped with + ' the product. One of the special challenges of the test is to find out + ' which document type a sample/template belongs to as well as to handle + ' any possible dialogs the samples/documents may trigger. + + ' iMode = 1 means to open the document (0 = just get its name) + ' cCategory may be "SAMPLES" or "TEMPLATES" + ' sVER is the fileformat for saving files, typically this is "current" + const CFN = "tModifyObjects::" - const RESTART = 15 - const TEMPLATE_COUNT = 236 ' For en-US/Oracle Open Office, numbers may differ for Languages/Brands - const SAMPLE_COUNT = 56 ' For en-US/Oracle Open Office, numbers may differ for Languages/Brands + const TEMPLATE_COUNT = 237 ' For en-US/Oracle Open Office, numbers may differ for Languages/Brands + const SAMPLE_COUNT = 56 ' For en-US/Oracle Open Office, numbers may differ for Languages/Brands + ' Varaibles needed to navigate on the Templates And Samples dialog dim iObjectFolder as integer dim iObjectFolders as integer - + + ' Iterators and number of documents, test values dim iObject as integer ' Iterator dim iObjectCount( 20 ) as integer dim iObjectSum as integer : iObjectSum = 0 dim iObjectCountExpected as integer - + + ' Where to store the files dim sFile as string - dim sPath as string - sPath = hGetWorkPath() + dim sPath as string : sPath = hGetWorkPath() + ' Reset counter, if the office becomes unstable you might want to use it. + ' See further below on how to enable this feature dim iReset as integer : iReset = 0 printlog( "" ) - - select case( lcase( cCategory )) + + ' Find out if we are testing samples or templates, fix the number of items + ' allowed for each category + select case( lcase( cCategory ) ) case "templates" : iObjectCountExpected = TEMPLATE_COUNT case "samples" : iObjectCountExpected = SAMPLE_COUNT end select @@ -69,7 +83,11 @@ testcase tModifyObjects( iMode as integer, cCategory as string, sVer as string ) printlog( "Open Templates and Samples dialog" ) FileNewFromTemplate WaitSlot( 2000 ) + + ' This is the icon on the left pane hSelectCategory( cCategory ) + + ' The number of folders for the category on the middle pane iObjectFolders = FileList.getItemCount() printlog( "Count the items in the templates and samples dialog" ) @@ -93,23 +111,35 @@ testcase tModifyObjects( iMode as integer, cCategory as string, sVer as string ) endif Kontext "TemplateAndDocuments" - printlog( "Switch from preview to document info" ) + printlog( "Switch from preview to document info, required to limit load-times" ) + ' Another good test case would be to enable the preview. docinfo.click() hCloseDialog( TemplateAndDocuments, "cancel" ) printlog( "" ) printlog( "Starting to load/save/close/reload/close all Objects" ) printlog( "" ) - + + ' Iterate over the folders in the middle pane of the templates and samples + ' dialog, open the folders and load the containing files + ' If you want to debug the office using this test, get the Object indices + ' from the logfiles and change the loops to only load the file in question + + ' These are the folders for iObjectFolder = 1 to iObjectFolders - - for iObject = 1 to iObjectCount( iObjectFolder ) - + ' for iObjectFolder = MyFailedFolder to MyFailedFolder + + ' These are the individual files + for iObject = 1 to iObjectCount( iObjectFolder ) + ' for iObject = MyFailedFile to MyFailedFile + + ' Preset gApplication to "Writer", this is the basis gApplication = "WRITER" printlog( "" ) printlog( "Folder index = " & iObjectFolder & ", Object index = " & iObject ) - + + printlog( "Close all files" ) hFileCloseAll() ' every now and then the office becomes a little unstable. @@ -120,14 +150,22 @@ testcase tModifyObjects( iMode as integer, cCategory as string, sVer as string ) ' iReset = 0 'endif - printlog( "Select the item we want to load" ) + printlog( "Open <FileNewFromTemplate>" ) FileNewFromTemplate WaitSlot( 2000 ) + + printlog( "Select category: " & cCategory ) hSelectCategory( cCategory ) + + printlog( "Select a folder, do not print debug info" ) hSelectFileFolder( iObjectFolder , false ) + + printlog( "Select a document by index, iMode = 1 -> Open it" ) hSelectDocumentObject( iObject , iMode ) - ' treat it like a folder. If it is, skip it. Otherwise perform the test + ' In few cases we accidentially work on a folder. So we test for the + ' Templates and Samples dialog again, if it is closed we have a + ' regular document, otherwise we have a folder which we then skip. kontext "TemplateAndDocuments" if ( TemplateAndDocuments.exists() ) then if ( not edit.isEnabled() ) then @@ -138,6 +176,9 @@ testcase tModifyObjects( iMode as integer, cCategory as string, sVer as string ) else printlog( "Loading file..." ) printlog( "Check for Filter Options dialog" ) + + ' Yes, hFileWait() knows which dialog is in the way so we can ask it + ' directly. The ASCII filter dialog has the number -6 if ( hFileWait( false ) = -6 ) then warnlog( "Load failure: ASCII filter dialog displayed, recovering" ) kontext "FilterAuswahl" @@ -146,27 +187,44 @@ testcase tModifyObjects( iMode as integer, cCategory as string, sVer as string ) else printlog( "Build filename; save, reload and delete" ) sFile = sPath & cCategory & iObjectFolder & "_" & iObject + printlog( "File is: " & sFile ) + kontext "Navigator" + printlog( "Close Navigator (if present)" ) hCloseDialog( Navigator, "close,optional" ) + + printlog( "Save file" ) hFileSaveAsKill( sFile ) + + printlog( "Close file" ) hDestroyDocument() + + printlog( "Open file" ) hFileOpen( sFile ) + + printlog( "Handle possible dialogs" ) hHandleActivesOnLoad( 1 , 2 ) + kontext "Navigator" + printlog( "Close Navigator (if present)" ) hCloseDialog( Navigator, "close,optional" ) + + printlog( "Close document" ) hDestroyDocument() + + printlog( "Delete work document" ) hDeleteFile( sFile ) - printlog( "Test cycle done, going for next object." ) endif endif - + iReset = iReset + 1 next iObject next iObjectFolder - - hDestroyDocument() + + printlog( "Close last remaining document(s) and exit test" ) + hFileCloseAll() endcase diff --git a/testautomation/framework/optional/includes/options_loadsave_general.inc b/testautomation/framework/optional/includes/options_loadsave_general.inc index 84c41e906df6..d320fb6a6d72 100755..100644 --- a/testautomation/framework/optional/includes/options_loadsave_general.inc +++ b/testautomation/framework/optional/includes/options_loadsave_general.inc @@ -63,6 +63,7 @@ testcase tLoadSaveGeneral printlog( " - " & DokumentTyp.getSelText) next i endif + for i=1 to AppCount Dokumenttyp.Select(i) lsSave(2+i) = Dokumenttyp.GetSelText @@ -70,18 +71,55 @@ testcase tLoadSaveGeneral next i printlog " - invert/change settings" - if lbSave(13) then BenutzerspezifischeEinstellungen.UnCheck else BenutzerspezifischeEinstellungen.Check - if lbSave(1) then DokumenteigenschaftenBearbeiten.Uncheck else DokumenteigenschaftenBearbeiten.Check - if lbSave(2) then Sicherungskopie.Uncheck else Sicherungskopie.Check - if lbSave(3) then AutomatischSpeichern.Uncheck else AutomatischSpeichern.Check + if lbSave(13) then + BenutzerspezifischeEinstellungen.UnCheck + else + BenutzerspezifischeEinstellungen.Check + endif + + if lbSave(1) then + DokumenteigenschaftenBearbeiten.Uncheck + else + DokumenteigenschaftenBearbeiten.Check + endif + + if lbSave(2) then + Sicherungskopie.Uncheck + else + Sicherungskopie.Check + endif + + if lbSave(3) then + AutomatischSpeichern.Uncheck + else + AutomatischSpeichern.Check + endif + if AutomatischSpeichern.IsChecked then lsSave(1) = Minuten.GetText Minuten.SetText "23" endif - if lbSave(10) then NoPrettyPrinting.Uncheck else NoPrettyPrinting.Check - if lbSave(11) then URLimDateisystem.Uncheck else URLimDateisystem.Check - if lbSave(12) then URLimInternet.Uncheck else URLimInternet.Check + + if lbSave(10) then + NoPrettyPrinting.Uncheck + else + NoPrettyPrinting.Check + endif + + if lbSave(11) then + URLimDateisystem.Uncheck + else + URLimDateisystem.Check + endif + + if lbSave(12) then + URLimInternet.Uncheck + else + URLimInternet.Check + endif + printlog( "Setting filters for documenttypes: Select third item from every list" ) + for i=1 to AppCount Dokumenttyp.Select(i) Filter.Select(3) @@ -90,8 +128,7 @@ testcase tLoadSaveGeneral printlog " - close options-dlg with OK" kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK - sleep(3) + hCloseDialog( ExtrasOptionenDlg, "ok" ) printlog " - exit/restart StarOffice" ExitRestartTheOffice @@ -103,15 +140,19 @@ testcase tLoadSaveGeneral if BenutzerspezifischeEinstellungen.IsChecked = lbSave ( 13 ) then Warnlog "'Load user setting with document' => changes not saved" endif + if DokumenteigenschaftenBearbeiten.IsChecked = lbSave ( 1 ) then Warnlog "'Edit document properties before saving' => changes not saved" endif + if Sicherungskopie.IsChecked = lbSave ( 2 ) then Warnlog "'Create backup copy' => changes not saved" endif + if AutomatischSpeichern.IsChecked = lbSave ( 3 ) then printlog "AutoSave => changes not saved" endif + if AutomatischSpeichern.IsChecked then if Minuten.GetText <> "23" then Warnlog "Minutes for AutoSave => changes not saved" @@ -120,18 +161,20 @@ testcase tLoadSaveGeneral if NoPrettyPrinting.IsChecked = lbSave ( 10 ) then Warnlog "no pretty printing => changes not saved" endif + if URLimDateisystem.IsChecked = lbSave ( 11 ) then Warnlog "URL: File system => changes not saved" endif + if URLimInternet.IsChecked = lbSave ( 12 ) then Warnlog "URL: Internet => changes not saved" endif - + printlog( "Verifying filters for documenttypes: Select third item from every list" ) for i=1 to AppCount Dokumenttyp.Select(i) - printlog( "Doctype: " & Dokumenttyp.getSelText() & " has filter: " & Filter.getSelText() ) - + printlog( "Doctype: " & Dokumenttyp.getSelText() & " has filter: " & Filter.getSelText() ) + if Filter.GetSelIndex <> 3 then warnlog( "#i79150# some options in Tools/Options->Load/Save->General are not saved" ) endif @@ -146,6 +189,7 @@ testcase tLoadSaveGeneral NoPrettyPrinting.Uncheck URLimDateisystem.Uncheck URLimInternet.Uncheck + for i=1 to AppCount Dokumenttyp.Select(i) Filter.Select(4) @@ -154,8 +198,7 @@ testcase tLoadSaveGeneral printlog " - close options-dlg with OK" kontext "extrasoptionendlg" - ExtrasOptionenDlg.OK - Sleep (1) + hCloseDialog( ExtrasOptionenDlg, "ok" ) printlog " - react on messageboxes for loosing settings after changing default-filters" kontext "FilterWarning" @@ -166,7 +209,7 @@ testcase tLoadSaveGeneral i = AppCount + 1 endif next i - Sleep (3) + WaitSlot() printlog " - check second changes" ToolsOptions @@ -175,27 +218,35 @@ testcase tLoadSaveGeneral if BenutzerspezifischeEinstellungen.IsChecked <> FALSE then Warnlog "'Load user setting with document' => changes not saved" endif + if DokumenteigenschaftenBearbeiten.IsChecked <> TRUE then Warnlog "'Edit document properties before saving' => changes not saved" endif + if Sicherungskopie.IsChecked <> FALSE then Warnlog "'Create backup copy' => changes not saved" endif + if AutomatischSpeichern.IsChecked <> TRUE then Warnlog "AutoSave => changes not saved" endif + if Minuten.GetText <> "1" then Warnlog "Minutes for AutoSave => changes not saved" endif + if NoPrettyPrinting.IsChecked <> FALSE then Warnlog "no pretty printing => changes not saved" endif + if URLimDateisystem.IsChecked <> FALSE then Warnlog "URL: File system => changes not saved" endif + if URLimInternet.IsChecked <> FALSE then Warnlog "URL: Internet => changes not saved" endif + for i=1 to AppCount Dokumenttyp.Select(i) if Filter.GetSelIndex <> 4 then @@ -207,26 +258,33 @@ testcase tLoadSaveGeneral if lbSave ( 13 ) = FALSE then BenutzerspezifischeEinstellungen.UnCheck else BenutzerspezifischeEinstellungen.Check endif + if lbSave ( 1 ) = FALSE then DokumenteigenschaftenBearbeiten.UnCheck else DokumenteigenschaftenBearbeiten.Check endif if lbSave ( 2 ) = FALSE then Sicherungskopie.Uncheck else Sicherungskopie.Check endif + AutomatischSpeichern.Check Minuten.SetText lsSave ( 1 ) + if lbSave ( 3 ) = FALSE then AutomatischSpeichern.Uncheck else AutomatischSpeichern.Check endif + if lbSave ( 10 ) = FALSE then NoPrettyPrinting.Uncheck else NoPrettyPrinting.Check endif + if lbSave ( 11 ) = FALSE then URLimDateisystem.UnCheck else URLimDateisystem.Check endif + if lbSave ( 12 ) = FALSE then URLimInternet.UnCheck else URLimInternet.Check endif + for i=1 to AppCount Dokumenttyp.Select(i) if Dokumenttyp.GetSelText <> lsSave ( 2 + i ) then @@ -236,8 +294,8 @@ testcase tLoadSaveGeneral next i kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK - Sleep (3) + hCloseDialog( ExtrasOptionenDlg, "ok" ) + printlog " - check settings" ToolsOptions @@ -246,29 +304,37 @@ testcase tLoadSaveGeneral if BenutzerspezifischeEinstellungen.IsChecked <> lbSave ( 13 ) then Warnlog "'Load user setting with document' => changes not saved" endif + if DokumenteigenschaftenBearbeiten.IsChecked <> lbSave ( 1 ) then Warnlog "'Edit document properties before saving' => changes not saved" endif + if Sicherungskopie.IsChecked <> lbSave ( 2 ) then Warnlog "'Create backup copy' => changes not saved" endif + if AutomatischSpeichern.IsChecked <> lbSave ( 3 ) then Warnlog "AutoSave => changes not saved" endif + if AutomatischSpeichern.IsChecked then if Minuten.GetText <> lsSave( 1 ) then Warnlog "Minutes for AutoSave => changes not saved" endif endif + if NoPrettyPrinting.IsChecked <> lbSave ( 10 ) then Warnlog "no pretty printing => changes not saved" endif + if URLimDateisystem.IsChecked <> lbSave ( 11 ) then Warnlog "URL: File system => changes not saved" endif + if URLimInternet.IsChecked <> lbSave ( 12 ) then Warnlog "URL: Internet => changes not saved" endif + for i=1 to AppCount Dokumenttyp.Select(i) if Dokumenttyp.GetSelText <> lsSave ( 2 + i ) then @@ -280,5 +346,6 @@ testcase tLoadSaveGeneral next i kontext "extrasoptionendlg" - ExtrasOptionenDlg.OK + hCloseDialog( ExtrasOptionenDlg, "ok" ) + endcase diff --git a/testautomation/framework/optional/includes/options_ooo_colors.inc b/testautomation/framework/optional/includes/options_ooo_colors.inc index 6d1db18179c2..f7c68095e198 100755..100644 --- a/testautomation/framework/optional/includes/options_ooo_colors.inc +++ b/testautomation/framework/optional/includes/options_ooo_colors.inc @@ -40,8 +40,8 @@ testcase tOOoColors dim currentColor(4) as String dim chColor(4) as String - const DEFAULT_COLOR_COUNT = 103 - const CHANGED_COLOR_COUNT = 104 + const DEFAULT_COLOR_COUNT = 99 + const CHANGED_COLOR_COUNT = 100 const USER_COLOR = "TT-Test-Color" myColor(1) = USER_COLOR @@ -106,8 +106,7 @@ testcase tOOoColors printlog( "Close the Tools/Options dialog with OK" ) Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK - WaitSlot( 2000 ) + hCloseDialog( ExtrasOptionenDlg, "ok" ) else warnlog( "Tools/Options dialog not open" ) endif @@ -163,9 +162,7 @@ testcase tOOoColors printlog( "Close options dialog with OK" ) Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK - WaitSlot( 2000 ) - + hCloseDialog( ExtrasOptionenDlg, "ok" ) else warnlog( "Tools/Options dialog not open" ) endif @@ -196,9 +193,7 @@ testcase tOOoColors printlog( "Close options dialog with OK" ) Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK - WaitSlot( 2000 ) - + hCloseDialog( ExtrasOptionenDlg, "ok" ) else warnlog( "Tools/Options dialog not open" ) endif diff --git a/testautomation/framework/optional/includes/options_ooo_general.inc b/testautomation/framework/optional/includes/options_ooo_general.inc index c973feade8ae..311f5bf8543d 100755..100644 --- a/testautomation/framework/optional/includes/options_ooo_general.inc +++ b/testautomation/framework/optional/includes/options_ooo_general.inc @@ -33,99 +33,165 @@ testcase tOOoGeneral - dim lsSave (4) as String - dim lbSave (3) as Boolean - - hNewDocument - - ToolsOptions - hToolsOptions ( "StarOffice", "General" ) - - printlog " - save old data" - lsSave ( 1 ) = Zweistellig.GetText - lbSave ( 1 ) = Aktivieren.IsChecked - Aktivieren.Check - if gPlatgroup = "w95" then - lbSave (2) = StarOfficeDialogeBenutzen.IsChecked - end if - lbSave ( 3 ) = DruckenStatus.IsChecked - lsSave ( 3 ) = StyleSheet.GetSelText - - printlog " - invert/change data" - Zweistellig.SetText "1950" - Zuruecksetzen.Click - if gPlatgroup = "w95" then - if lbSave (2) = TRUE then StarOfficeDialogeBenutzen.Uncheck else StarOfficeDialogeBenutzen.Check - end if - If lbSave ( 3 ) = TRUE then DruckenStatus.Uncheck else DruckenStatus.Check - StyleSheet.Select 3 - - Kontext "ExtrasOptionenDlg" - - hCloseDialog( ExtrasOptionenDlg, "ok" ) - hCloseDocument - - printlog " - exit/restart StarOffice" - ExitRestartTheOffice - - printlog " - check data" - ToolsOptions - hToolsOptions ( "StarOffice", "General" ) - - if Zweistellig.GetText <> "1950" then Warnlog "Year ( 2 digits ) => changes not saved: '" + Zweistellig.GetText +"' #i29810" - if Aktivieren.IsChecked <> TRUE then Warnlog "Enable HelpAgent => changes not saved" - Zuruecksetzen.Click - if gPlatgroup = "w95" then - if StarOfficeDialogeBenutzen.IsChecked = lbSave (2) then Warnlog "Use StarOffice dialogs => changes not saved!" - end if - If DruckenStatus.IsChecked = lbSave ( 3 ) then Warnlog "Printing sets 'Document modified' status => changes not saved!" - - printlog " - 2. change data" - Zweistellig.SetText "1800" - DruckenStatus.UnCheck - - Kontext "ExtrasOptionenDlg" - hCloseDialog( ExtrasOptionenDlg, "ok" ) - - printlog " - check data" - ToolsOptions - hToolsOptions ( "StarOffice", "General" ) - - if Zweistellig.GetText <> "1800" then Warnlog "Year ( 2 digits ) => changes not saved : '" + Zweistellig.GetText +"'" - If DruckenStatus.IsChecked <> FALSE then Warnlog "Printing sets 'Document modified' status => changes not saved!" - if StyleSheet.GetSelIndex <> 3 then Warnlog "Style sheet for StarOffice Help => changes not saved!" - - printlog " - reset to saved data" - Zweistellig.SetText lsSave ( 1 ) - Aktivieren.Check - Zuruecksetzen.Click - if lbSave (1) = TRUE then Aktivieren.Check else Aktivieren.Uncheck - if gPlatgroup = "w95" then - if lbSave (2) = TRUE then StarOfficeDialogeBenutzen.Check else StarOfficeDialogeBenutzen.UnCheck - end if - If lbSave(3)= TRUE then DruckenStatus.Check else DruckenStatus.UnCheck - StyleSheet.Select lsSave(3) - - Kontext "ExtrasOptionenDlg" - hCloseDialog( ExtrasOptionenDlg, "ok" ) - - ToolsOptions - hToolsOptions ( "StarOffice", "General" ) - - printlog " - check the reset data" - if Zweistellig.GetText <> lsSave ( 1 ) then Warnlog "Year ( 2 digits ) => changes not saved" - if Aktivieren.IsChecked <> lbSave (1) then Warnlog "Enable HelpAgent => changes not saved" - Aktivieren.Check - Zuruecksetzen.Click - if lbSave (1) = TRUE then Aktivieren.Check else Aktivieren.Uncheck - if gPlatgroup = "w95" then - if StarOfficeDialogeBenutzen.IsChecked <> lbSave (2) then Warnlog "Use StarOffice dialogs => changes not saved!" - end if - If DruckenStatus.IsChecked <> lbSave(3) then Warnlog "Printing sets 'Document modified' status => changes not saved!" - if StyleSheet.GetSelText <> lsSave (3) then Warnlog "Style sheet for StarOffice Help => changes not saved!" - - Kontext "ExtrasOptionenDlg" - hCloseDialog( ExtrasOptionenDlg, "ok" ) + dim lsSave (4) as String + dim lbSave (3) as Boolean + + hNewDocument + + ToolsOptions + hToolsOptions ( "StarOffice", "General" ) + + printlog " - save old data" + lsSave ( 1 ) = Zweistellig.GetText + lbSave ( 1 ) = Aktivieren.IsChecked + Aktivieren.Check + + if gPlatgroup = "w95" then + lbSave (2) = StarOfficeDialogeBenutzen.IsChecked + endif + + lbSave ( 3 ) = DruckenStatus.IsChecked + lsSave ( 3 ) = StyleSheet.GetSelText + + printlog " - invert/change data" + Zweistellig.SetText "1950" + Zuruecksetzen.Click + + if gPlatgroup = "w95" then + if lbSave (2) then + StarOfficeDialogeBenutzen.Uncheck + else + StarOfficeDialogeBenutzen.Check + endif + endif + + If lbSave ( 3 ) then + DruckenStatus.Uncheck + else + DruckenStatus.Check + endif + + StyleSheet.Select 3 + + Kontext "ExtrasOptionenDlg" + hCloseDialog( ExtrasOptionenDlg, "ok" ) + hCloseDocument + + printlog " - exit/restart StarOffice" + ExitRestartTheOffice + + printlog " - check data" + ToolsOptions + hToolsOptions ( "StarOffice", "General" ) + + if Zweistellig.GetText <> "1950" then + Warnlog "#i29810# - Year ( 2 digits ) => changes not saved: " + Zweistellig.GetText + endif + + if not Aktivieren.IsChecked then + Warnlog "Enable HelpAgent => changes not saved" + endif + + Zuruecksetzen.Click + + if gPlatgroup = "w95" then + if StarOfficeDialogeBenutzen.IsChecked = lbSave (2) then + Warnlog "Use StarOffice dialogs => changes not saved!" + endif + endif + + If DruckenStatus.IsChecked = lbSave ( 3 ) then + Warnlog "Printing sets 'Document modified' status => changes not saved!" + endif + + printlog " - 2. change data" + Zweistellig.SetText "1800" + DruckenStatus.UnCheck + + Kontext "ExtrasOptionenDlg" + hCloseDialog( ExtrasOptionenDlg, "ok" ) + + printlog " - check data" + ToolsOptions + hToolsOptions ( "StarOffice", "General" ) + + if ( Zweistellig.GetText <> "1800" ) then + Warnlog( "#i29810# - Year ( 2 digits ) => changes not saved : " & Zweistellig.GetText() ) + endif + + If DruckenStatus.IsChecked then + Warnlog "Printing sets 'Document modified' status => changes not saved!" + endif + + if StyleSheet.GetSelIndex <> 3 then + Warnlog "Style sheet for StarOffice Help => changes not saved!" + endif + + printlog " - reset to saved data" + Zweistellig.SetText lsSave ( 1 ) + Aktivieren.Check + Zuruecksetzen.Click + + if lbSave (1) then + Aktivieren.Check + else + Aktivieren.Uncheck + endif + + if gPlatgroup = "w95" then + if lbSave (2) then + StarOfficeDialogeBenutzen.Check + else + StarOfficeDialogeBenutzen.UnCheck + endif + endif + + If lbSave(3) then + DruckenStatus.Check + else + DruckenStatus.UnCheck + endif + + StyleSheet.Select lsSave(3) + + Kontext "ExtrasOptionenDlg" + hCloseDialog( ExtrasOptionenDlg, "ok" ) + + ToolsOptions + hToolsOptions ( "StarOffice", "General" ) + + printlog " - check the reset data" + if Zweistellig.GetText <> lsSave ( 1 ) then + Warnlog "Year ( 2 digits ) => changes not saved" + endif + + if Aktivieren.IsChecked <> lbSave (1) then + Warnlog "Enable HelpAgent => changes not saved" + endif + + Aktivieren.Check + Zuruecksetzen.Click + + if lbSave (1) then + Aktivieren.Check else Aktivieren.Uncheck + endif + + if gPlatgroup = "w95" then + if StarOfficeDialogeBenutzen.IsChecked <> lbSave (2) then + Warnlog "Use StarOffice dialogs => changes not saved!" + endif + endif + + If DruckenStatus.IsChecked <> lbSave(3) then + Warnlog "Printing sets 'Document modified' status => changes not saved!" + endif + + if StyleSheet.GetSelText <> lsSave (3) then + Warnlog "Style sheet for StarOffice Help => changes not saved!" + endif + + Kontext "ExtrasOptionenDlg" + hCloseDialog( ExtrasOptionenDlg, "ok" ) endcase diff --git a/testautomation/framework/optional/includes/security_incorrect_password.inc b/testautomation/framework/optional/includes/security_incorrect_password.inc index 8e6eb2deffee..9f8cfcb39d7d 100755..100644 --- a/testautomation/framework/optional/includes/security_incorrect_password.inc +++ b/testautomation/framework/optional/includes/security_incorrect_password.inc @@ -66,8 +66,8 @@ testcase tIncorrectPassword( filetypeID as string ) printlog( "Check the password checkbox" ) Passwort.check() - printlog( "Name the file as " & workpath & WORKFILE ) - Dateiname.settext( workpath & WORKFILE ) + printlog( "Name the file as " & filepath ) + Dateiname.settext( filepath ) if ( filetypeID <> "current" ) then for iCurrentFilter = 1 to DateiTyp.getItemCount() @@ -108,7 +108,7 @@ testcase tIncorrectPassword( filetypeID as string ) endif printlog( "Load the file again" ) - hFileOpen( workpath & WORKFILE & suffix ) + hFileOpen( filepath ) if ( not hSecurityEnterPasswordOnLoad( PASSWORD_FALSE , false ) ) then warnlog( "Something went wrong while using the password dialog" ) endif @@ -121,7 +121,7 @@ testcase tIncorrectPassword( filetypeID as string ) endif printlog( "Delete the workfile" ) - hDeleteFile( workpath & WORKFILE & suffix ) + hDeleteFile( filepath ) else warnlog( "Unable to open file save dialog" ) endif diff --git a/testautomation/framework/optional/includes/w_grid_layout1.inc b/testautomation/framework/optional/includes/w_grid_layout1.inc index 16ca31b09fa4..5fa0284a3495 100755 --- a/testautomation/framework/optional/includes/w_grid_layout1.inc +++ b/testautomation/framework/optional/includes/w_grid_layout1.inc @@ -104,8 +104,7 @@ testcase tTextGridDialog_2 Call hNewDocument '/// open a test file , and check No Grid checkbox - Call hFileOpen ( gTesttoolPath + SOURCE_PATH + testFile ) - sMakeReadOnlyDocumentEditable + Call hFileOpenLocally( gTesttoolPath + SOURCE_PATH + testFile ) hUseAsyncSlot( "FormatPageWriter" ) Kontext @@ -151,8 +150,7 @@ testcase tTextGridDialog_3 '/// open a test file and check Grid(lines onle) checkbox , '/// + set 10 line/page - Call hFileOpen ( gTesttoolPath + SOURCE_PATH + testFile ) - sMakeReadOnlyDocumentEditable + Call hFileOpenLocally( gTesttoolPath + SOURCE_PATH + testFile ) hUseAsyncSlot( "FormatPageWriter" ) Kontext if active.exists(5) then @@ -198,8 +196,7 @@ testcase tTextGridDialog_4 '/// open a test file and check Grid(lines and characters) checkbox '/// + set 10 line/page and 9 characters/line - Call hFileOpen ( gTesttoolPath + SOURCE_PATH + testFile ) - sMakeReadOnlyDocumentEditable + Call hFileOpenLocally( gTesttoolPath + SOURCE_PATH + testFile ) hUseAsyncSlot( "FormatPageWriter" ) Kontext if active.exists(5) then @@ -367,8 +364,7 @@ testcase tFontSizeChanges_1 sLinesPerPage = "2" sCharsPerLine = "9" - Call hFileOpen ( gTesttoolPath + SOURCE_PATH + testFile ) - sMakeReadOnlyDocumentEditable + Call hFileOpenLocally( gTesttoolPath + SOURCE_PATH + testFile ) Kontext "DocumentWriter" Call DocumentWriter.TypeKeys "<Shift Right>" @@ -433,10 +429,7 @@ testcase tRubyText_1 Call hNewDocument printlog( "Open test file" ) - Call hFileOpen ( gTesttoolPath + SOURCE_PATH + TEST_FILE ) - - printlog( "Remove write protection of document (if set)" ) - Call sMakeReadOnlyDocumentEditable() + hFileOpenLocally( gTesttoolPath + SOURCE_PATH + TEST_FILE ) Kontext "DocumentWriter" printlog( "Mark character to the right of current cursor position" ) @@ -486,9 +479,7 @@ testcase tIndentsTest_1 Call hNewDocument '/// open a test file , and press TAB in second line - Call hFileOpen ( gTesttoolPath + SOURCE_PATH + TEST_FILE ) - - sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + SOURCE_PATH + TEST_FILE ) Kontext "DocumentWriter" Call DocumentWriter.TypeKeys "<Down>" diff --git a/testautomation/framework/optional/input/filternames/OpenOffice.org_Filternames_en-US.txt b/testautomation/framework/optional/input/filternames/OpenOffice.org_Filternames_en-US.txt index 04ba1195f4d0..96b6293a5285 100755 --- a/testautomation/framework/optional/input/filternames/OpenOffice.org_Filternames_en-US.txt +++ b/testautomation/framework/optional/input/filternames/OpenOffice.org_Filternames_en-US.txt @@ -52,7 +52,7 @@ StarCalc 3.0 - 5.0 (*.sdc) StarCalc 3.0 - 5.0 Templates (*.vor) StarCalc 1.0 (*.sdc) SYLK (*.slk) -Text CSV (*.csv;*.txt;*.xls) +Text CSV (*.csv;*.txt) HTML Document (OpenOffice.org Calc) (*.html;*.htm) Microsoft Excel 2007 Binary (*.xlsb) Microsoft Excel 2007 XML (*.xlsm;*.xlsx) diff --git a/testautomation/framework/optional/input/filternames/Oracle_Open_Office_Filternames_add_en-US.txt b/testautomation/framework/optional/input/filternames/Oracle_Open_Office_Filternames_add_en-US.txt index bf0c1e00851e..b77b17a8fa2e 100644 --- a/testautomation/framework/optional/input/filternames/Oracle_Open_Office_Filternames_add_en-US.txt +++ b/testautomation/framework/optional/input/filternames/Oracle_Open_Office_Filternames_add_en-US.txt @@ -55,7 +55,7 @@ StarCalc 3.0 - 5.0 (*.sdc) StarCalc 3.0 - 5.0 Templates (*.vor) StarCalc 1.0 (*.sdc) SYLK (*.slk) -Text CSV (*.csv;*.txt;*.xls) +Text CSV (*.csv;*.txt) HTML Document (StarOffice Calc) (*.html;*.htm) Microsoft Excel 2007 Binary (*.xlsb) Microsoft Excel 2007 XML (*.xlsm;*.xlsx) diff --git a/testautomation/framework/optional/input/filternames/Oracle_Open_Office_Filternames_en-US.txt b/testautomation/framework/optional/input/filternames/Oracle_Open_Office_Filternames_en-US.txt index 85d580c71554..827468d13f80 100644 --- a/testautomation/framework/optional/input/filternames/Oracle_Open_Office_Filternames_en-US.txt +++ b/testautomation/framework/optional/input/filternames/Oracle_Open_Office_Filternames_en-US.txt @@ -53,7 +53,7 @@ StarCalc 3.0 - 5.0 (*.sdc) StarCalc 3.0 - 5.0 Templates (*.vor) StarCalc 1.0 (*.sdc) SYLK (*.slk) -Text CSV (*.csv;*.txt;*.xls) +Text CSV (*.csv;*.txt) HTML Document (StarOffice Calc) (*.html;*.htm) Microsoft Excel 2007 Binary (*.xlsb) Microsoft Excel 2007 XML (*.xlsm;*.xlsx) diff --git a/testautomation/framework/optional/input/help_browser/Oracle_Open_Office_help_topics_en-US.txt b/testautomation/framework/optional/input/help_browser/Oracle_Open_Office_help_topics_en-US.txt index 24c206de5308..0db04d4a09e3 100755..100644 --- a/testautomation/framework/optional/input/help_browser/Oracle_Open_Office_help_topics_en-US.txt +++ b/testautomation/framework/optional/input/help_browser/Oracle_Open_Office_help_topics_en-US.txt @@ -1,10708 +1,4 @@ -Oracle Open Office Math : 3D text creation -Oracle Open Office Math : abbreviation replacement -Oracle Open Office Math : absolute hyperlinks -Oracle Open Office Math : absolute saving of URLs -Oracle Open Office Math : absolute values -Oracle Open Office Math : accents -Oracle Open Office Math : accents -Oracle Open Office Math : accents;in Oracle Open Office Math -Oracle Open Office Math : Access databases (base) -Oracle Open Office Math : access rights for database tables (Base) -Oracle Open Office Math : accessibility -Oracle Open Office Math : accessibility;general shortcuts -Oracle Open Office Math : accessibility;options -Oracle Open Office Math : accessibility;Oracle Open Office assistive technology -Oracle Open Office Math : accessibility;Oracle Open Office features -Oracle Open Office Math : accessibility;Oracle Open Office Math shortcuts -Oracle Open Office Math : activating -Oracle Open Office Math : activating;context menus -Oracle Open Office Math : activating;Error Report Tool -Oracle Open Office Math : activating;extended help tips -Oracle Open Office Math : activating;plug-ins -Oracle Open Office Math : ActiveX control -Oracle Open Office Math : Adabas D databases (base) -Oracle Open Office Math : add-ons, see UNO components -Oracle Open Office Math : addition signs -Oracle Open Office Math : additional selection mode -Oracle Open Office Math : address books -Oracle Open Office Math : address books;LDAP server (Base) -Oracle Open Office Math : address books;registering -Oracle Open Office Math : address labels from databases -Oracle Open Office Math : ADO databases (Base) -Oracle Open Office Math : Agenda Wizard -Oracle Open Office Math : aging filter -Oracle Open Office Math : aligning -Oracle Open Office Math : aligning;cells -Oracle Open Office Math : aligning;characters in Oracle Open Office Math -Oracle Open Office Math : aligning;multi-line formulas -Oracle Open Office Math : aligning;objects -Oracle Open Office Math : aligning;paragraphs -Oracle Open Office Math : aligning;tables in text -Oracle Open Office Math : aligning;text objects -Oracle Open Office Math : aligning formulas -Oracle Open Office Math : alignment -Oracle Open Office Math : alignment;horizontally centered (Math) -Oracle Open Office Math : alignment;left (Math) -Oracle Open Office Math : alignment;right (Math) -Oracle Open Office Math : alternative fonts -Oracle Open Office Math : ampersand symbol, see also operators -Oracle Open Office Math : anchors -Oracle Open Office Math : anchors;changing -Oracle Open Office Math : anchors;displaying (Calc) -Oracle Open Office Math : anchors;types/positions for draw objects -Oracle Open Office Math : AND operator -Oracle Open Office Math : animations -Oracle Open Office Math : animations;accessibility options -Oracle Open Office Math : appearance options -Oracle Open Office Math : approximately equal to relation -Oracle Open Office Math : Arabic -Oracle Open Office Math : Arabic;entering text -Oracle Open Office Math : Arabic;language settings -Oracle Open Office Math : arc cosine function -Oracle Open Office Math : arc cotangent function -Oracle Open Office Math : arc sine function -Oracle Open Office Math : area hyperbolic cosine function -Oracle Open Office Math : area hyperbolic cotangent function -Oracle Open Office Math : area hyperbolic tangent function -Oracle Open Office Math : areas -Oracle Open Office Math : areas;bitmap patterns -Oracle Open Office Math : areas;hatched/dotted -Oracle Open Office Math : areas;shadows -Oracle Open Office Math : areas;slanting -Oracle Open Office Math : areas;styles -Oracle Open Office Math : areas;transparency -Oracle Open Office Math : arguments in command line -Oracle Open Office Math : arranging -Oracle Open Office Math : arranging;matrices -Oracle Open Office Math : arranging;objects -Oracle Open Office Math : arrows -Oracle Open Office Math : arrows;defining arrow heads -Oracle Open Office Math : arrows;defining arrow lines -Oracle Open Office Math : arrows;drawing in text -Oracle Open Office Math : arrows;symbols in Oracle Open Office Math -Oracle Open Office Math : ASCII -Oracle Open Office Math : ASCII;definition -Oracle Open Office Math : Asian languages -Oracle Open Office Math : Asian languages;enabling -Oracle Open Office Math : Asian Phonetic Guide -Oracle Open Office Math : Asian typography -Oracle Open Office Math : assigning scripts -Oracle Open Office Math : assistive technology in Oracle Open Office -Oracle Open Office Math : attaching toolbars -Oracle Open Office Math : attachments in e-mails -Oracle Open Office Math : attributes -Oracle Open Office Math : attributes;accents -Oracle Open Office Math : attributes;additional information -Oracle Open Office Math : attributes;changing defaults -Oracle Open Office Math : attributes;changing fonts -Oracle Open Office Math : attributes;changing in Oracle Open Office Math -Oracle Open Office Math : attributes;colored characters -Oracle Open Office Math : attributes;in Oracle Open Office Math -Oracle Open Office Math : attributes;list of -Oracle Open Office Math : audio -Oracle Open Office Math : auto reloading HTML documents -Oracle Open Office Math : AutoAbstract function for sending text to presentations -Oracle Open Office Math : AutoCaption function in Oracle Open Office Writer -Oracle Open Office Math : AutoComplete function in text and list boxes -Oracle Open Office Math : AutoCorrect function -Oracle Open Office Math : AutoCorrect function;context menu -Oracle Open Office Math : AutoCorrect function;options -Oracle Open Office Math : AutoCorrect function;pictures and frames -Oracle Open Office Math : AutoCorrect function;quotes -Oracle Open Office Math : AutoCorrect function;replacement table -Oracle Open Office Math : AutoCorrect function;switching on and off in Calc -Oracle Open Office Math : AutoCorrect function;URL recognition -Oracle Open Office Math : AutoFormat function -Oracle Open Office Math : AutoFormat function;switching on and off -Oracle Open Office Math : automatic captions (Writer) -Oracle Open Office Math : automatic control focus -Oracle Open Office Math : automatic hyperlink formatting -Oracle Open Office Math : automatic line breaks -Oracle Open Office Math : automatic lines/borders in text -Oracle Open Office Math : automatic saving -Oracle Open Office Math : AutoPilots, see wizards -Oracle Open Office Math : AutoValue (Base) -Oracle Open Office Math : axes in charts -Oracle Open Office Math : axis-ellipsis -Oracle Open Office Math : back epsilon symbol -Oracle Open Office Math : backgrounds -Oracle Open Office Math : backgrounds;defining colors/pictures -Oracle Open Office Math : backgrounds;frames/sections/indexes -Oracle Open Office Math : backgrounds;inserting from Gallery -Oracle Open Office Math : backgrounds;printing -Oracle Open Office Math : backing window -Oracle Open Office Math : backslash division sign -Oracle Open Office Math : backups -Oracle Open Office Math : backups;automatic -Oracle Open Office Math : backups;documents -Oracle Open Office Math : Basic -Oracle Open Office Math : Basic;fonts for source display -Oracle Open Office Math : Basic;programming -Oracle Open Office Math : Basic;recording macros -Oracle Open Office Math : basic fonts -Oracle Open Office Math : Bézier curves -Oracle Open Office Math : Bézier curves;control points in presentations -Oracle Open Office Math : bi-directional writing -Oracle Open Office Math : binary operators -Oracle Open Office Math : binary operators -Oracle Open Office Math : binary operators;list of -Oracle Open Office Math : binding space -Oracle Open Office Math : binomials -Oracle Open Office Math : bitmaps -Oracle Open Office Math : bitmaps;inserting and editing -Oracle Open Office Math : bitmaps;off for faster printing -Oracle Open Office Math : bitmaps;patterns -Oracle Open Office Math : black and white printing -Oracle Open Office Math : black printing in Calc -Oracle Open Office Math : block selection mode -Oracle Open Office Math : bold -Oracle Open Office Math : bold;AutoFormat function -Oracle Open Office Math : bold;text -Oracle Open Office Math : bold attribute -Oracle Open Office Math : bookmarks -Oracle Open Office Math : bookmarks;Help -Oracle Open Office Math : Boolean operators -Oracle Open Office Math : borders -Oracle Open Office Math : borders;arranging -Oracle Open Office Math : borders;cells on screen (Calc) -Oracle Open Office Math : borders;for paragraphs -Oracle Open Office Math : borders;for tables -Oracle Open Office Math : borders;shadows -Oracle Open Office Math : borders;table boundaries (Writer) -Oracle Open Office Math : borders, see also frames -Oracle Open Office Math : bound fields -Oracle Open Office Math : bound fields;controls -Oracle Open Office Math : boundaries of tables (Writer) -Oracle Open Office Math : braces in Oracle Open Office Math -Oracle Open Office Math : brackets -Oracle Open Office Math : brackets;angle (Math) -Oracle Open Office Math : brackets;angle with operator -Oracle Open Office Math : brackets;double square (Math) -Oracle Open Office Math : brackets;group -Oracle Open Office Math : brackets;in Oracle Open Office Math -Oracle Open Office Math : brackets;inserting in Oracle Open Office Math -Oracle Open Office Math : brackets;merging formula parts -Oracle Open Office Math : brackets;operator (Math) -Oracle Open Office Math : brackets;reference list -Oracle Open Office Math : brackets;round (Math) -Oracle Open Office Math : brackets;scalable -Oracle Open Office Math : brackets;single, without group function -Oracle Open Office Math : brackets;square (Math) -Oracle Open Office Math : brackets;widowed -Oracle Open Office Math : brackets and grouping in Oracle Open Office Math -Oracle Open Office Math : break display (Writer) -Oracle Open Office Math : brochures -Oracle Open Office Math : brochures;printing several -Oracle Open Office Math : build numbers of Oracle Open Office -Oracle Open Office Math : bullet lists -Oracle Open Office Math : bullet lists;formatting options -Oracle Open Office Math : bullets -Oracle Open Office Math : bullets;paragraphs -Oracle Open Office Math : bullets;replacing -Oracle Open Office Math : bullets;turning off -Oracle Open Office Math : business cards -Oracle Open Office Math : business cards;creating and synchronizing -Oracle Open Office Math : business cards;using templates -Oracle Open Office Math : button bars, see toolbars -Oracle Open Office Math : buttons -Oracle Open Office Math : buttons;adding push buttons -Oracle Open Office Math : buttons;big/small -Oracle Open Office Math : buttons;editing hyperlink buttons -Oracle Open Office Math : buttons;form functions -Oracle Open Office Math : buttons;toolbars -Oracle Open Office Math : cache for graphics -Oracle Open Office Math : calculating -Oracle Open Office Math : calculating;iterative references (Calc) -Oracle Open Office Math : callouts -Oracle Open Office Math : callouts;drawings -Oracle Open Office Math : capital letters -Oracle Open Office Math : capital letters;AutoCorrect function -Oracle Open Office Math : capital letters;font effects -Oracle Open Office Math : captions -Oracle Open Office Math : captions;automatic captions (Writer) -Oracle Open Office Math : captions;tables/pictures/frames/OLE objects (Writer) -Oracle Open Office Math : captions, see also labels/callouts -Oracle Open Office Math : cardinal numbers -Oracle Open Office Math : cascading update (Base) -Oracle Open Office Math : case sensitivity -Oracle Open Office Math : case sensitivity;comparing cell contents (Calc) -Oracle Open Office Math : case sensitivity;searching -Oracle Open Office Math : catalog for mathematical symbols -Oracle Open Office Math : ceiling brackets -Oracle Open Office Math : ceiling brackets;lines with -Oracle Open Office Math : ceiling brackets;scalable lines with -Oracle Open Office Math : cells -Oracle Open Office Math : cells;aligning -Oracle Open Office Math : cells;coloring (Calc) -Oracle Open Office Math : cells;cursor positions after input (Calc) -Oracle Open Office Math : cells;formatting without effect (Calc) -Oracle Open Office Math : cells;line breaks -Oracle Open Office Math : cells;linked to controls -Oracle Open Office Math : cells;number of -Oracle Open Office Math : cells;pasting -Oracle Open Office Math : cells;resetting formats -Oracle Open Office Math : cells;showing grid lines (Calc) -Oracle Open Office Math : center dots symbol -Oracle Open Office Math : centered horizontally -Oracle Open Office Math : centered horizontally;alignment (Math) -Oracle Open Office Math : centered text -Oracle Open Office Math : centimeters -Oracle Open Office Math : certificates -Oracle Open Office Math : changes -Oracle Open Office Math : changes;accepting automatically -Oracle Open Office Math : changes;accepting or rejecting -Oracle Open Office Math : changes;comparing to original -Oracle Open Office Math : changes;protecting -Oracle Open Office Math : changes;recording -Oracle Open Office Math : changes;review function -Oracle Open Office Math : changes;showing -Oracle Open Office Math : changing -Oracle Open Office Math : changing;default formatting -Oracle Open Office Math : changing;document titles -Oracle Open Office Math : changing;file associations in Setup program -Oracle Open Office Math : changing;fonts -Oracle Open Office Math : changing;icon sizes -Oracle Open Office Math : changing;links -Oracle Open Office Math : changing;work directory -Oracle Open Office Math : changing, see also editing and replacing -Oracle Open Office Math : character styles -Oracle Open Office Math : character styles;language selection -Oracle Open Office Math : characters -Oracle Open Office Math : characters;alternative fonts -Oracle Open Office Math : characters;Asian layout -Oracle Open Office Math : characters;bold -Oracle Open Office Math : characters;coloring -Oracle Open Office Math : characters;displaying only on screen (Writer) -Oracle Open Office Math : characters;enabling CTL and Asian characters -Oracle Open Office Math : characters;font effects -Oracle Open Office Math : characters;fonts and formats -Oracle Open Office Math : characters;hyperlinks -Oracle Open Office Math : characters;italics -Oracle Open Office Math : characters;language selection -Oracle Open Office Math : characters;shadowed -Oracle Open Office Math : characters;spacing -Oracle Open Office Math : characters;special -Oracle Open Office Math : characters;underlining -Oracle Open Office Math : charcoal sketches filter -Oracle Open Office Math : charts -Oracle Open Office Math : charts;arranging within stacks -Oracle Open Office Math : charts;bars with textures -Oracle Open Office Math : charts;colors -Oracle Open Office Math : charts;copying with link to source cell range -Oracle Open Office Math : charts;displaying (Calc) -Oracle Open Office Math : charts;editing axes -Oracle Open Office Math : charts;editing data -Oracle Open Office Math : charts;editing legends -Oracle Open Office Math : charts;editing titles -Oracle Open Office Math : charts;inserting -Oracle Open Office Math : charts;updating automatically (Writer) -Oracle Open Office Math : check box creation -Oracle Open Office Math : Chinese writing systems -Oracle Open Office Math : choosing printers -Oracle Open Office Math : circle attribute -Oracle Open Office Math : circle drawings -Oracle Open Office Math : circumflex attribute -Oracle Open Office Math : Client Side ImageMap -Oracle Open Office Math : clipboard -Oracle Open Office Math : clipboard;cutting -Oracle Open Office Math : clipboard;pasting -Oracle Open Office Math : clipboard;pasting formatted/unformatted text -Oracle Open Office Math : clipboard;selection clipboard -Oracle Open Office Math : clipboard;Unix -Oracle Open Office Math : closing -Oracle Open Office Math : closing;documents -Oracle Open Office Math : closing;toolbars -Oracle Open Office Math : collaboration -Oracle Open Office Math : color bar -Oracle Open Office Math : colored characters -Oracle Open Office Math : colors -Oracle Open Office Math : colors;adding -Oracle Open Office Math : colors;appearance -Oracle Open Office Math : colors;backgrounds -Oracle Open Office Math : colors;charts -Oracle Open Office Math : colors;fill format -Oracle Open Office Math : colors;fonts -Oracle Open Office Math : colors;grid lines and cells (Calc) -Oracle Open Office Math : colors;in formulas -Oracle Open Office Math : colors;models -Oracle Open Office Math : colors;not printing -Oracle Open Office Math : colors;printing in grayscale -Oracle Open Office Math : colors;restriction (Calc) -Oracle Open Office Math : colors;selection -Oracle Open Office Math : column headers -Oracle Open Office Math : column headers;displaying (Calc) -Oracle Open Office Math : column headers;highlighting (Calc) -Oracle Open Office Math : columns -Oracle Open Office Math : columns;setting with the mouse -Oracle Open Office Math : combo box creation -Oracle Open Office Math : command button creation -Oracle Open Office Math : command buttons, see push buttons -Oracle Open Office Math : command line parameters -Oracle Open Office Math : commands -Oracle Open Office Math : commands;repeating -Oracle Open Office Math : commands;SQL -Oracle Open Office Math : comments -Oracle Open Office Math : comments;displaying (Calc) -Oracle Open Office Math : comments;entering in Oracle Open Office Math -Oracle Open Office Math : comments;inserting/editing/deleting/printing -Oracle Open Office Math : comments;on changes -Oracle Open Office Math : comments;printing in text -Oracle Open Office Math : common terms -Oracle Open Office Math : common terms;Chinese dictionary -Oracle Open Office Math : common terms;glossaries -Oracle Open Office Math : common terms;Internet glossary -Oracle Open Office Math : comparisons -Oracle Open Office Math : comparisons;document versions -Oracle Open Office Math : comparisons;operators in default filter dialog -Oracle Open Office Math : compatibility settings for MS Word import -Oracle Open Office Math : complete screen view -Oracle Open Office Math : complex numbers -Oracle Open Office Math : complex numbers;set -Oracle Open Office Math : complex numbers;symbols -Oracle Open Office Math : complex text layout -Oracle Open Office Math : complex text layout;definition -Oracle Open Office Math : complex text layout;enabling -Oracle Open Office Math : complex text layout, see CTL -Oracle Open Office Math : compose key to insert special characters -Oracle Open Office Math : concatenating math symbols -Oracle Open Office Math : concatenation, see ampersand symbol -Oracle Open Office Math : conditional separators -Oracle Open Office Math : conditions -Oracle Open Office Math : conditions;in number formats -Oracle Open Office Math : conditions;items in Data Navigator -Oracle Open Office Math : Configuration Manager -Oracle Open Office Math : configuring -Oracle Open Office Math : configuring;fax icon -Oracle Open Office Math : configuring;Oracle Open Office -Oracle Open Office Math : configuring;toolbars -Oracle Open Office Math : congruent relation -Oracle Open Office Math : connections to data sources (Base) -Oracle Open Office Math : considerably greater than relation -Oracle Open Office Math : considerably less than relation -Oracle Open Office Math : contents protection -Oracle Open Office Math : context menus -Oracle Open Office Math : control point display in presentations -Oracle Open Office Math : controls -Oracle Open Office Math : controls;activating in forms -Oracle Open Office Math : controls;adding to documents -Oracle Open Office Math : controls;arranging in forms -Oracle Open Office Math : controls;arranging within stacks -Oracle Open Office Math : controls;assigning data sources -Oracle Open Office Math : controls;assigning macros (Basic) -Oracle Open Office Math : controls;bound fields/list contents/linked cells -Oracle Open Office Math : controls;events -Oracle Open Office Math : controls;focus -Oracle Open Office Math : controls;formatted fields -Oracle Open Office Math : controls;grouping -Oracle Open Office Math : controls;hidden -Oracle Open Office Math : controls;inserting -Oracle Open Office Math : controls;multi-line titles -Oracle Open Office Math : controls;positions and sizes -Oracle Open Office Math : controls;printing -Oracle Open Office Math : controls;properties of form controls -Oracle Open Office Math : controls;properties of table controls -Oracle Open Office Math : controls;reference by SQL -Oracle Open Office Math : controls;rich text control -Oracle Open Office Math : controls;select mode -Oracle Open Office Math : controls;showing (Writer) -Oracle Open Office Math : converters -Oracle Open Office Math : converters;Euro converter -Oracle Open Office Math : converters;PostScript, UNIX -Oracle Open Office Math : converters;XML -Oracle Open Office Math : converting -Oracle Open Office Math : converting;Hangul/Hanja -Oracle Open Office Math : converting;metrics -Oracle Open Office Math : converting;Microsoft documents -Oracle Open Office Math : converting;Oracle Open Office documents -Oracle Open Office Math : converting;Pocket PC formats -Oracle Open Office Math : copies -Oracle Open Office Math : copies;printing -Oracle Open Office Math : coproduct -Oracle Open Office Math : copying -Oracle Open Office Math : copying;by drag and drop -Oracle Open Office Math : copying;data from text documents -Oracle Open Office Math : copying;datasource records in spreadsheets -Oracle Open Office Math : copying;draw objects -Oracle Open Office Math : copying;draw objects between documents -Oracle Open Office Math : copying;formatting -Oracle Open Office Math : copying;from data source view -Oracle Open Office Math : copying;from Gallery -Oracle Open Office Math : copying;in Unix -Oracle Open Office Math : copying;pictures, between documents -Oracle Open Office Math : copying;sheet areas, to text documents -Oracle Open Office Math : copying;to Gallery -Oracle Open Office Math : copyright for Oracle Open Office -Oracle Open Office Math : corner roundings -Oracle Open Office Math : correspondence -Oracle Open Office Math : correspondence;original by -Oracle Open Office Math : correspondence;picture by -Oracle Open Office Math : cosine function -Oracle Open Office Math : cotangent function -Oracle Open Office Math : crash reports -Oracle Open Office Math : criteria of query design (Base) -Oracle Open Office Math : cropping pictures -Oracle Open Office Math : CTL -Oracle Open Office Math : CTL;(not) wrapping words -Oracle Open Office Math : CTL;complex text layout languages -Oracle Open Office Math : CTL;definition -Oracle Open Office Math : CTL;options -Oracle Open Office Math : currencies -Oracle Open Office Math : currencies;converters -Oracle Open Office Math : currencies;format codes -Oracle Open Office Math : currency field creation -Oracle Open Office Math : currency formats -Oracle Open Office Math : cursor -Oracle Open Office Math : cursor;allowing in protected areas (Writer) -Oracle Open Office Math : cursor;in Oracle Open Office Math -Oracle Open Office Math : cursor;in read-only text -Oracle Open Office Math : cursor;quickly moving to an object -Oracle Open Office Math : curve integrals -Oracle Open Office Math : curves -Oracle Open Office Math : curves;editing points -Oracle Open Office Math : custom dictionaries -Oracle Open Office Math : custom dictionaries;editing -Oracle Open Office Math : custom hyphens (Writer) -Oracle Open Office Math : custom quotes -Oracle Open Office Math : custom templates -Oracle Open Office Math : customizing -Oracle Open Office Math : customizing;events -Oracle Open Office Math : customizing;keyboard -Oracle Open Office Math : customizing;menus -Oracle Open Office Math : customizing;Oracle Open Office -Oracle Open Office Math : customizing;round corners -Oracle Open Office Math : customizing;toolbars -Oracle Open Office Math : cutting -Oracle Open Office Math : dashes -Oracle Open Office Math : data -Oracle Open Office Math : data;filtering in forms -Oracle Open Office Math : data;forms and subforms -Oracle Open Office Math : data;read-only -Oracle Open Office Math : data;sorting in forms -Oracle Open Office Math : data;user data -Oracle Open Office Math : data binding change in XForms -Oracle Open Office Math : Data Navigator -Oracle Open Office Math : Data Navigator;adding/editing items -Oracle Open Office Math : Data Navigator;display options -Oracle Open Office Math : data source browser -Oracle Open Office Math : data source explorer -Oracle Open Office Math : data source view -Oracle Open Office Math : data source view;drag and drop -Oracle Open Office Math : data source view;overview -Oracle Open Office Math : data source view;showing -Oracle Open Office Math : data sources -Oracle Open Office Math : data sources;as tables -Oracle Open Office Math : data sources;connection settings (Base) -Oracle Open Office Math : data sources;copying records to spreadsheets -Oracle Open Office Math : data sources;displaying current -Oracle Open Office Math : data sources;LDAP server (Base) -Oracle Open Office Math : data sources;Oracle Open Office Base -Oracle Open Office Math : data sources;registering address books -Oracle Open Office Math : data sources;reports -Oracle Open Office Math : data sources;viewing -Oracle Open Office Math : data structure of XForms -Oracle Open Office Math : data, see also values -Oracle Open Office Math : database contents -Oracle Open Office Math : database contents;inserting as tables -Oracle Open Office Math : database contents;inserting as text -Oracle Open Office Math : database reports -Oracle Open Office Math : Database Wizard (Base) -Oracle Open Office Math : databases -Oracle Open Office Math : databases;administration through SQL (Base) -Oracle Open Office Math : databases;ADO (Base) -Oracle Open Office Math : databases;connecting (Base) -Oracle Open Office Math : databases;creating -Oracle Open Office Math : databases;creating labels -Oracle Open Office Math : databases;creating queries -Oracle Open Office Math : databases;creating reports -Oracle Open Office Math : databases;creating tables -Oracle Open Office Math : databases;deleting (Base) -Oracle Open Office Math : databases;drag and drop (Base) -Oracle Open Office Math : databases;editing tables -Oracle Open Office Math : databases;form filters -Oracle Open Office Math : databases;formats (Base) -Oracle Open Office Math : databases;importing/exporting -Oracle Open Office Math : databases;JDBC (Base) -Oracle Open Office Math : databases;main page (Base) -Oracle Open Office Math : databases;ODBC (Base) -Oracle Open Office Math : databases;overview -Oracle Open Office Math : databases;registering (Base) -Oracle Open Office Math : databases;searching records -Oracle Open Office Math : databases;shortcut keys -Oracle Open Office Math : databases;sorting -Oracle Open Office Math : databases;standard filters -Oracle Open Office Math : databases;text formats -Oracle Open Office Math : databases;viewing -Oracle Open Office Math : date fields -Oracle Open Office Math : date fields;creating -Oracle Open Office Math : date fields;properties -Oracle Open Office Math : date formats -Oracle Open Office Math : dates -Oracle Open Office Math : dates;default (Calc) -Oracle Open Office Math : dates;printing in presentations -Oracle Open Office Math : dates;start 1900/01/01 (Calc) -Oracle Open Office Math : dates;start 1904/01/01 (Calc) -Oracle Open Office Math : dBASE -Oracle Open Office Math : dBASE;database settings (Base) -Oracle Open Office Math : DDE -Oracle Open Office Math : DDE;definition -Oracle Open Office Math : deactivating -Oracle Open Office Math : deactivating;plug-ins -Oracle Open Office Math : decimal places displayed (Calc) -Oracle Open Office Math : decimal separator key -Oracle Open Office Math : decimal tab stops -Oracle Open Office Math : default directories -Oracle Open Office Math : default filters -Oracle Open Office Math : default filters;comparison operators -Oracle Open Office Math : default filters;databases -Oracle Open Office Math : default printer -Oracle Open Office Math : default printer;setting up -Oracle Open Office Math : default printer;UNIX -Oracle Open Office Math : default templates -Oracle Open Office Math : default templates;changing -Oracle Open Office Math : default templates;organizing -Oracle Open Office Math : defaults -Oracle Open Office Math : defaults;changing default formatting -Oracle Open Office Math : defaults;documents -Oracle Open Office Math : defaults;file formats in file dialogs -Oracle Open Office Math : defaults;file formats in Oracle Open Office -Oracle Open Office Math : defaults;fonts -Oracle Open Office Math : defaults;grids (Writer/Calc) -Oracle Open Office Math : defaults;languages -Oracle Open Office Math : defaults;number formats -Oracle Open Office Math : defaults;of saving -Oracle Open Office Math : defaults;program configuration -Oracle Open Office Math : defaults;tab stops in text -Oracle Open Office Math : defaults;views -Oracle Open Office Math : defined as relation -Oracle Open Office Math : defining -Oracle Open Office Math : defining;arrowheads and other line ends -Oracle Open Office Math : defining;colors -Oracle Open Office Math : defining;formula fonts -Oracle Open Office Math : defining;line styles -Oracle Open Office Math : defining;paragraph borders -Oracle Open Office Math : defining;queries (Base) -Oracle Open Office Math : defining;table borders -Oracle Open Office Math : deleting -Oracle Open Office Math : deleting;all direct formatting -Oracle Open Office Math : deleting;comments -Oracle Open Office Math : deleting;databases (Base) -Oracle Open Office Math : deleting;hyperlinks -Oracle Open Office Math : deleting;lines in text -Oracle Open Office Math : deleting;models/instances -Oracle Open Office Math : deleting;namespaces in XForms -Oracle Open Office Math : deleting;tab stops -Oracle Open Office Math : deleting;templates -Oracle Open Office Math : deleting;XML filters -Oracle Open Office Math : depth stagger -Oracle Open Office Math : descriptions for objects -Oracle Open Office Math : design mode after saving -Oracle Open Office Math : design view -Oracle Open Office Math : design view;creating forms -Oracle Open Office Math : design view;queries/views (Base) -Oracle Open Office Math : designing -Oracle Open Office Math : designing;database tables -Oracle Open Office Math : designing;fonts -Oracle Open Office Math : designing;queries (Base) -Oracle Open Office Math : detaching toolbars -Oracle Open Office Math : diagonal downward dots -Oracle Open Office Math : diagonal downward dots;symbol -Oracle Open Office Math : diagonal upward dots -Oracle Open Office Math : diagonal upward dots;symbol -Oracle Open Office Math : dictionaries -Oracle Open Office Math : dictionaries;common terms in simplified and traditional chinese -Oracle Open Office Math : dictionaries;creating -Oracle Open Office Math : dictionaries;editing user-defined -Oracle Open Office Math : dictionaries;spellcheck -Oracle Open Office Math : dictionaries, see also languages -Oracle Open Office Math : difference set operator -Oracle Open Office Math : digital signatures -Oracle Open Office Math : digital signatures;getting/managing/applying -Oracle Open Office Math : digital signatures;overview -Oracle Open Office Math : digital signatures;WebDAV over HTTPS -Oracle Open Office Math : direct formatting -Oracle Open Office Math : direct formatting;undoing all -Oracle Open Office Math : direct text -Oracle Open Office Math : direct text;entering in Oracle Open Office Math -Oracle Open Office Math : directories -Oracle Open Office Math : directories;creating new -Oracle Open Office Math : directories;directory structure -Oracle Open Office Math : disabled persons -Oracle Open Office Math : displaying -Oracle Open Office Math : displaying;comments (Calc) -Oracle Open Office Math : displaying;comments in text documents -Oracle Open Office Math : displaying;non-printing characters (Writer) -Oracle Open Office Math : displaying;pictures and objects (Writer) -Oracle Open Office Math : displaying;tables (Writer) -Oracle Open Office Math : displaying;zero values (Calc) -Oracle Open Office Math : distances -Oracle Open Office Math : distances between brackets -Oracle Open Office Math : distinct values in SQL queries -Oracle Open Office Math : distorting in drawings -Oracle Open Office Math : distributing XML filters -Oracle Open Office Math : divides relation -Oracle Open Office Math : division signs -Oracle Open Office Math : docking -Oracle Open Office Math : docking;definition -Oracle Open Office Math : docking;toolbars -Oracle Open Office Math : docking;windows -Oracle Open Office Math : Document Converter Wizard -Oracle Open Office Math : Document Map, see Navigator -Oracle Open Office Math : document types in Oracle Open Office -Oracle Open Office Math : documents -Oracle Open Office Math : documents;changing titles -Oracle Open Office Math : documents;closing -Oracle Open Office Math : documents;comparing -Oracle Open Office Math : documents;contents as lists -Oracle Open Office Math : documents;editing time -Oracle Open Office Math : documents;exporting -Oracle Open Office Math : documents;importing -Oracle Open Office Math : documents;languages -Oracle Open Office Math : documents;measurement units in -Oracle Open Office Math : documents;merging -Oracle Open Office Math : documents;number of pages/tables/sheets -Oracle Open Office Math : documents;opening -Oracle Open Office Math : documents;opening in design mode -Oracle Open Office Math : documents;opening with templates -Oracle Open Office Math : documents;organizing -Oracle Open Office Math : documents;printing -Oracle Open Office Math : documents;read-only -Oracle Open Office Math : documents;reloading -Oracle Open Office Math : documents;saving -Oracle Open Office Math : documents;saving automatically -Oracle Open Office Math : documents;saving in other formats -Oracle Open Office Math : documents;sending as e-mail -Oracle Open Office Math : documents;styles changed -Oracle Open Office Math : documents;version management -Oracle Open Office Math : documents;version numbers -Oracle Open Office Math : does not divide relation -Oracle Open Office Math : dot attribute -Oracle Open Office Math : dotted areas -Oracle Open Office Math : double arrow symbols -Oracle Open Office Math : double dot attribute -Oracle Open Office Math : double square brackets -Oracle Open Office Math : double square brackets;scalable -Oracle Open Office Math : double-line spacing in paragraphs -Oracle Open Office Math : double-line writing in Asian layout -Oracle Open Office Math : down arrow symbol -Oracle Open Office Math : drag and drop -Oracle Open Office Math : drag and drop;copying and pasting text -Oracle Open Office Math : drag and drop;data source view -Oracle Open Office Math : drag and drop;from Gallery to draw objects -Oracle Open Office Math : drag and drop;overview -Oracle Open Office Math : drag and drop;pictures -Oracle Open Office Math : drag and drop;to Gallery -Oracle Open Office Math : draw objects -Oracle Open Office Math : draw objects;adding/editing/copying -Oracle Open Office Math : draw objects;anchoring -Oracle Open Office Math : draw objects;arranging within stacks -Oracle Open Office Math : draw objects;copying between documents -Oracle Open Office Math : draw objects;displaying (Calc) -Oracle Open Office Math : draw objects;dropping Gallery pictures -Oracle Open Office Math : draw objects;flipping -Oracle Open Office Math : draw objects;legends -Oracle Open Office Math : draw objects;positioning and resizing -Oracle Open Office Math : draw objects;protecting -Oracle Open Office Math : draw objects;slanting -Oracle Open Office Math : draw objects;text in -Oracle Open Office Math : Drawing bar -Oracle Open Office Math : drawing lines in text -Oracle Open Office Math : drawings -Oracle Open Office Math : drawings;creating/opening -Oracle Open Office Math : drawings;languages -Oracle Open Office Math : drawings;printing -Oracle Open Office Math : drawings;printing defaults -Oracle Open Office Math : drawings;printing in text documents -Oracle Open Office Math : drawings;saving -Oracle Open Office Math : drawings;saving automatically -Oracle Open Office Math : drawings;saving in other formats -Oracle Open Office Math : drawings;sending as e-mail -Oracle Open Office Math : drawings;showing (Writer) -Oracle Open Office Math : drawings, see also draw objects -Oracle Open Office Math : drop-down lists in form functions -Oracle Open Office Math : e-mail attachments -Oracle Open Office Math : Edit File icon -Oracle Open Office Math : edit mode -Oracle Open Office Math : edit mode;after opening -Oracle Open Office Math : edit mode;through Enter key (Calc) -Oracle Open Office Math : Edit Points bar -Oracle Open Office Math : editing -Oracle Open Office Math : editing;chart axes -Oracle Open Office Math : editing;chart data -Oracle Open Office Math : editing;chart legends -Oracle Open Office Math : editing;chart titles -Oracle Open Office Math : editing;comments -Oracle Open Office Math : editing;data binding of XForms -Oracle Open Office Math : editing;database tables and queries -Oracle Open Office Math : editing;draw objects -Oracle Open Office Math : editing;Fontwork objects -Oracle Open Office Math : editing;hyperlinks -Oracle Open Office Math : editing;menus -Oracle Open Office Math : editing;objects -Oracle Open Office Math : editing;Oracle Open Office documents in Internet Explorer -Oracle Open Office Math : editing;pictures -Oracle Open Office Math : editing;reports -Oracle Open Office Math : editing;shortcut keys -Oracle Open Office Math : editing;tab stops -Oracle Open Office Math : editing;templates -Oracle Open Office Math : editing;toolbars -Oracle Open Office Math : editing;undoing -Oracle Open Office Math : editing;XForms -Oracle Open Office Math : editing time of documents -Oracle Open Office Math : editors -Oracle Open Office Math : editors;formula editor -Oracle Open Office Math : editors;ImageMap editor -Oracle Open Office Math : effects -Oracle Open Office Math : effects;font positions -Oracle Open Office Math : effects;fonts -Oracle Open Office Math : effects;Fontwork icons -Oracle Open Office Math : ellipsis symbols -Oracle Open Office Math : empty documents -Oracle Open Office Math : empty paragraph removal -Oracle Open Office Math : empty set -Oracle Open Office Math : encryption of contents -Oracle Open Office Math : entering groups -Oracle Open Office Math : entering text from right to left -Oracle Open Office Math : epsilon -Oracle Open Office Math : epsilon;back -Oracle Open Office Math : equal sign -Oracle Open Office Math : equal sign, see also operators -Oracle Open Office Math : Equation Editor, see Oracle Open Office Math -Oracle Open Office Math : equations in formula editor -Oracle Open Office Math : Error Report Tool -Oracle Open Office Math : error search -Oracle Open Office Math : error search;next error -Oracle Open Office Math : error search;previous error -Oracle Open Office Math : Euro -Oracle Open Office Math : Euro;currency formats -Oracle Open Office Math : Euro;Euro Converter Wizard -Oracle Open Office Math : even/odd pages -Oracle Open Office Math : even/odd pages;printing -Oracle Open Office Math : events -Oracle Open Office Math : events;assigning scripts -Oracle Open Office Math : events;controls -Oracle Open Office Math : events;customizing -Oracle Open Office Math : events;in forms -Oracle Open Office Math : examples -Oracle Open Office Math : examples;integral -Oracle Open Office Math : examples;Oracle Open Office Math formulas -Oracle Open Office Math : Excel -Oracle Open Office Math : Excel;saving as -Oracle Open Office Math : Excel;search criteria -Oracle Open Office Math : exceptions -Oracle Open Office Math : exceptions;user-defined dictionaries -Oracle Open Office Math : exchanging, see also replacing -Oracle Open Office Math : executing SQL commands -Oracle Open Office Math : existence quantor symbol -Oracle Open Office Math : exiting -Oracle Open Office Math : exiting;groups -Oracle Open Office Math : exiting;Oracle Open Office -Oracle Open Office Math : expanding formatting (Calc) -Oracle Open Office Math : explorer of data sources -Oracle Open Office Math : exponential functions -Oracle Open Office Math : exponents -Oracle Open Office Math : exponents;variables with right -Oracle Open Office Math : exponents and indexes in Oracle Open Office Math -Oracle Open Office Math : export filters -Oracle Open Office Math : exporting -Oracle Open Office Math : exporting;bitmaps -Oracle Open Office Math : exporting;HTML and text documents -Oracle Open Office Math : exporting;Microsoft Office documents with VBA code -Oracle Open Office Math : exporting;spreadsheets to text format -Oracle Open Office Math : exporting;templates -Oracle Open Office Math : exporting;to foreign formats -Oracle Open Office Math : exporting;to HTML -Oracle Open Office Math : exporting;to Microsoft Office formats -Oracle Open Office Math : exporting;to PDF -Oracle Open Office Math : exporting;to PostScript format -Oracle Open Office Math : exporting;to XML -Oracle Open Office Math : exporting;XML files -Oracle Open Office Math : extended tips in Help -Oracle Open Office Math : extension mode in text -Oracle Open Office Math : extensions -Oracle Open Office Math : extensions;Extension Manager -Oracle Open Office Math : extensions;file formats -Oracle Open Office Math : external keys (Base) -Oracle Open Office Math : factorial -Oracle Open Office Math : faster printing -Oracle Open Office Math : faxes -Oracle Open Office Math : faxes;configuring Oracle Open Office -Oracle Open Office Math : faxes;fax programs/fax printers under UNIX -Oracle Open Office Math : faxes;selecting a fax machine -Oracle Open Office Math : faxes;sending -Oracle Open Office Math : faxes;wizards -Oracle Open Office Math : feedback -Oracle Open Office Math : feedback;automatically -Oracle Open Office Math : fields -Oracle Open Office Math : fields;database tables -Oracle Open Office Math : fields;displaying field codes (Writer) -Oracle Open Office Math : fields;formatted fields -Oracle Open Office Math : fields;updating automatically (Writer) -Oracle Open Office Math : file associations for Microsoft Office -Oracle Open Office Math : file filters -Oracle Open Office Math : file filters;mobile devices -Oracle Open Office Math : file filters;XML -Oracle Open Office Math : file formats -Oracle Open Office Math : file formats;changing Oracle Open Office defaults -Oracle Open Office Math : file formats;OpenDocument/XML -Oracle Open Office Math : file formats;saving always in other formats -Oracle Open Office Math : file selection button -Oracle Open Office Math : file sharing options for current document -Oracle Open Office Math : files -Oracle Open Office Math : files;filters and formats -Oracle Open Office Math : files;importing -Oracle Open Office Math : files;opening -Oracle Open Office Math : files;properties -Oracle Open Office Math : files;saving -Oracle Open Office Math : files;saving automatically -Oracle Open Office Math : files;saving in other formats -Oracle Open Office Math : files;sending as e-mail -Oracle Open Office Math : files;version numbers -Oracle Open Office Math : files and folders in Oracle Open Office -Oracle Open Office Math : fill characters with tabulators -Oracle Open Office Math : fill colors for areas -Oracle Open Office Math : fill patterns for areas -Oracle Open Office Math : filter conditions -Oracle Open Office Math : filter conditions;connecting -Oracle Open Office Math : filter conditions;in queries (Base) -Oracle Open Office Math : filtering -Oracle Open Office Math : filtering;data in databases -Oracle Open Office Math : filtering;data in forms -Oracle Open Office Math : filters -Oracle Open Office Math : filters;comparison operators -Oracle Open Office Math : filters;for import and export -Oracle Open Office Math : filters;Navigator -Oracle Open Office Math : filters;pictures -Oracle Open Office Math : filters;XML filter settings -Oracle Open Office Math : Find tab in Help -Oracle Open Office Math : finding -Oracle Open Office Math : finding;errors in Oracle Open Office Math -Oracle Open Office Math : finding;in all sheets -Oracle Open Office Math : finding;records in form documents -Oracle Open Office Math : finding;selections -Oracle Open Office Math : finding;similarity search -Oracle Open Office Math : fitting to pages -Oracle Open Office Math : fitting to pages;print settings in Math -Oracle Open Office Math : fitting to pages;print settings in presentations -Oracle Open Office Math : fixed text -Oracle Open Office Math : fixed text;form functions -Oracle Open Office Math : fixing toolbars -Oracle Open Office Math : flipping draw objects -Oracle Open Office Math : floating frames in HTML documents -Oracle Open Office Math : floating toolbars -Oracle Open Office Math : floor brackets -Oracle Open Office Math : focus of controls -Oracle Open Office Math : folder creation -Oracle Open Office Math : font attributes -Oracle Open Office Math : font attributes;changing defaults -Oracle Open Office Math : font lists -Oracle Open Office Math : font name box -Oracle Open Office Math : font sizes -Oracle Open Office Math : font sizes;bullets -Oracle Open Office Math : font sizes;example -Oracle Open Office Math : font sizes;in Oracle Open Office Math -Oracle Open Office Math : font sizes;relative changes -Oracle Open Office Math : font sizes;scaling on screen -Oracle Open Office Math : font sizes;text -Oracle Open Office Math : fonts -Oracle Open Office Math : fonts;adding under UNIX -Oracle Open Office Math : fonts;changing in templates -Oracle Open Office Math : fonts;colors -Oracle Open Office Math : fonts;default settings -Oracle Open Office Math : fonts;effects -Oracle Open Office Math : fonts;for HTML and Basic -Oracle Open Office Math : fonts;formats -Oracle Open Office Math : fonts;in Oracle Open Office Math -Oracle Open Office Math : fonts;outlines -Oracle Open Office Math : fonts;positions in text -Oracle Open Office Math : fonts;shadows -Oracle Open Office Math : fonts;specifying several -Oracle Open Office Math : fonts;strikethrough -Oracle Open Office Math : fonts;styles -Oracle Open Office Math : fonts;text objects -Oracle Open Office Math : Fontwork icons -Oracle Open Office Math : footers -Oracle Open Office Math : footers;backgrounds -Oracle Open Office Math : for all symbol -Oracle Open Office Math : form controls -Oracle Open Office Math : form controls;assigning macros -Oracle Open Office Math : form controls;protecting -Oracle Open Office Math : form controls;toolbars -Oracle Open Office Math : form fields -Oracle Open Office Math : form filters -Oracle Open Office Math : Form Navigator -Oracle Open Office Math : format codes -Oracle Open Office Math : format codes;numbers -Oracle Open Office Math : format filling printing in Oracle Open Office Math -Oracle Open Office Math : Format Paintbrush -Oracle Open Office Math : formats -Oracle Open Office Math : formats;Asian layout -Oracle Open Office Math : formats;fonts -Oracle Open Office Math : formats;maximizing page formats -Oracle Open Office Math : formats;number and currency formats -Oracle Open Office Math : formats;of currencies/date/time -Oracle Open Office Math : formats;on opening and saving -Oracle Open Office Math : formats;pasting in special formats -Oracle Open Office Math : formats;positions -Oracle Open Office Math : formats;tabulators -Oracle Open Office Math : formatted fields -Oracle Open Office Math : formatted fields;form functions -Oracle Open Office Math : formatted fields;properties -Oracle Open Office Math : formatting -Oracle Open Office Math : formatting;Asian typography -Oracle Open Office Math : formatting;axes in charts -Oracle Open Office Math : formatting;changing default attributes -Oracle Open Office Math : formatting;chart legends -Oracle Open Office Math : formatting;copying -Oracle Open Office Math : formatting;definition -Oracle Open Office Math : formatting;expanding (Calc) -Oracle Open Office Math : formatting;font effects -Oracle Open Office Math : formatting;hyperlinks -Oracle Open Office Math : formatting;in Oracle Open Office Math -Oracle Open Office Math : formatting;pages -Oracle Open Office Math : formatting;printer metrics (Writer) -Oracle Open Office Math : formatting;reference list (Math) -Oracle Open Office Math : formatting;undoing -Oracle Open Office Math : formatting;undoing when writing -Oracle Open Office Math : forms -Oracle Open Office Math : forms;browsing -Oracle Open Office Math : forms;Combo Box/List Box Wizard -Oracle Open Office Math : forms;creating -Oracle Open Office Math : forms;data -Oracle Open Office Math : forms;designing (Base) -Oracle Open Office Math : forms;events -Oracle Open Office Math : forms;filtering data -Oracle Open Office Math : forms;finding records -Oracle Open Office Math : forms;focus after opening -Oracle Open Office Math : forms;general information (Base) -Oracle Open Office Math : forms;grouping controls -Oracle Open Office Math : forms;HTML filters -Oracle Open Office Math : forms;Navigator -Oracle Open Office Math : forms;opening in design mode -Oracle Open Office Math : forms;properties -Oracle Open Office Math : forms;sorting data -Oracle Open Office Math : forms;subforms -Oracle Open Office Math : forms;wizards -Oracle Open Office Math : forms;XForms -Oracle Open Office Math : formula cursor in Oracle Open Office Math -Oracle Open Office Math : formula display sizes -Oracle Open Office Math : formula fonts -Oracle Open Office Math : formula fonts;defining -Oracle Open Office Math : formula parts -Oracle Open Office Math : formula parts;manually aligning -Oracle Open Office Math : formula parts;merging -Oracle Open Office Math : formula texts -Oracle Open Office Math : formula texts;printing in Oracle Open Office Math -Oracle Open Office Math : formula view -Oracle Open Office Math : formula view;refreshing -Oracle Open Office Math : formulas -Oracle Open Office Math : formulas;aligning -Oracle Open Office Math : formulas;attributes in -Oracle Open Office Math : formulas;element spacing -Oracle Open Office Math : formulas;entering symbols in -Oracle Open Office Math : formulas;examples -Oracle Open Office Math : formulas;fit to text -Oracle Open Office Math : formulas;in color -Oracle Open Office Math : formulas;increasing size of display -Oracle Open Office Math : formulas;line breaks -Oracle Open Office Math : formulas;maximum size -Oracle Open Office Math : formulas;new -Oracle Open Office Math : formulas;reference tables -Oracle Open Office Math : formulas;selections -Oracle Open Office Math : formulas;starting formula editor -Oracle Open Office Math : formulas;zooming out -Oracle Open Office Math : formulas in reports -Oracle Open Office Math : formulas in reports;editing -Oracle Open Office Math : forums and support -Oracle Open Office Math : fractions in formulas -Oracle Open Office Math : frames -Oracle Open Office Math : frames;around paragraphs -Oracle Open Office Math : frames;around tables -Oracle Open Office Math : frames;AutoCorrect function -Oracle Open Office Math : frames;backgrounds -Oracle Open Office Math : frames;captions (Writer) -Oracle Open Office Math : frames;printing in Oracle Open Office Math -Oracle Open Office Math : frames;protecting -Oracle Open Office Math : frames;selection frames -Oracle Open Office Math : frames;text fitting to frames -Oracle Open Office Math : freeform lines -Oracle Open Office Math : freeform lines;draw functions -Oracle Open Office Math : FTP -Oracle Open Office Math : FTP;opening documents -Oracle Open Office Math : FTP;saving documents -Oracle Open Office Math : full joins (Base) -Oracle Open Office Math : full screen view -Oracle Open Office Math : full-text search in Help -Oracle Open Office Math : functions -Oracle Open Office Math : functions;in Oracle Open Office Math -Oracle Open Office Math : functions in reports -Oracle Open Office Math : functions in reports;editing -Oracle Open Office Math : functions operators -Oracle Open Office Math : functions operators;list of -Oracle Open Office Math : Gallery -Oracle Open Office Math : Gallery;adding pictures -Oracle Open Office Math : Gallery;dragging pictures to draw objects -Oracle Open Office Math : Gallery;hiding/showing -Oracle Open Office Math : Gallery;inserting pictures from -Oracle Open Office Math : gaps in formulas -Oracle Open Office Math : get method for form transmissions -Oracle Open Office Math : getting support -Oracle Open Office Math : GIF format -Oracle Open Office Math : glossaries -Oracle Open Office Math : glossaries;common terms -Oracle Open Office Math : glossaries;Internet terms -Oracle Open Office Math : gradients off for faster printing -Oracle Open Office Math : graphic objects, see draw objects -Oracle Open Office Math : graphical text art -Oracle Open Office Math : graphics -Oracle Open Office Math : graphics;cache -Oracle Open Office Math : graphics;protecting -Oracle Open Office Math : graphics, see also pictures -Oracle Open Office Math : grayscale printing -Oracle Open Office Math : greater than or equal to signs -Oracle Open Office Math : greater than relations -Oracle Open Office Math : Greek symbols in formulas -Oracle Open Office Math : grid controls -Oracle Open Office Math : grid controls;form functions -Oracle Open Office Math : grids -Oracle Open Office Math : grids;defaults (Writer/Calc) -Oracle Open Office Math : grids;display options (Impress/Draw) -Oracle Open Office Math : grids;displaying lines (Calc) -Oracle Open Office Math : group box creation -Oracle Open Office Math : grouping and brackets in Oracle Open Office Math -Oracle Open Office Math : grouping brackets -Oracle Open Office Math : groups -Oracle Open Office Math : groups;entering/exiting/ungrouping -Oracle Open Office Math : groups;naming -Oracle Open Office Math : groups;of controls -Oracle Open Office Math : guides -Oracle Open Office Math : guides;display options (Impress/Draw) -Oracle Open Office Math : guides;displaying when moving objects (Impress) -Oracle Open Office Math : guides;showing (Calc) -Oracle Open Office Math : guides;showing when moving frames (Writer) -Oracle Open Office Math : gutter -Oracle Open Office Math : h-bar symbol -Oracle Open Office Math : handles -Oracle Open Office Math : handles;displaying (Writer) -Oracle Open Office Math : handles;scaling -Oracle Open Office Math : handles;showing simple/large handles (Calc) -Oracle Open Office Math : Hangul/Hanja -Oracle Open Office Math : hatching -Oracle Open Office Math : headers -Oracle Open Office Math : headers;backgrounds -Oracle Open Office Math : headings -Oracle Open Office Math : headings;entering as text box -Oracle Open Office Math : Hebrew -Oracle Open Office Math : Hebrew;entering text -Oracle Open Office Math : Hebrew;language settings -Oracle Open Office Math : Help -Oracle Open Office Math : Help;bookmarks -Oracle Open Office Math : Help;extended tips on/off -Oracle Open Office Math : Help;full-text search -Oracle Open Office Math : Help;Help tips -Oracle Open Office Math : Help;keywords -Oracle Open Office Math : Help;navigation pane showing/hiding -Oracle Open Office Math : Help;style sheets -Oracle Open Office Math : Help;topics -Oracle Open Office Math : Help Agent -Oracle Open Office Math : Help Agent;help -Oracle Open Office Math : Help Agent;options -Oracle Open Office Math : Help tips -Oracle Open Office Math : Help tips;hiding -Oracle Open Office Math : hidden controls in Form Navigator -Oracle Open Office Math : hidden fields display (Writer) -Oracle Open Office Math : hidden pages -Oracle Open Office Math : hidden pages;printing in presentations -Oracle Open Office Math : hidden text -Oracle Open Office Math : hidden text;showing (Writer) -Oracle Open Office Math : hiding -Oracle Open Office Math : hiding;changes -Oracle Open Office Math : hiding;docked windows -Oracle Open Office Math : hiding;navigation pane in Help window -Oracle Open Office Math : high contrast mode -Oracle Open Office Math : Hindi -Oracle Open Office Math : Hindi;entering text -Oracle Open Office Math : Hindi;language settings -Oracle Open Office Math : horizontal scrollbars (Writer) -Oracle Open Office Math : hotspots -Oracle Open Office Math : HTML -Oracle Open Office Math : HTML;definition -Oracle Open Office Math : HTML;export character set -Oracle Open Office Math : HTML;fonts for source display -Oracle Open Office Math : HTML;importing META tags -Oracle Open Office Math : HTML;live presentations -Oracle Open Office Math : HTML documents -Oracle Open Office Math : HTML documents;auto reloading -Oracle Open Office Math : HTML documents;importing/exporting -Oracle Open Office Math : HTML documents;META tags in -Oracle Open Office Math : HTML documents;new -Oracle Open Office Math : HTML documents;source text -Oracle Open Office Math : hyperbolic cosine function -Oracle Open Office Math : hyperbolic cotangent function -Oracle Open Office Math : hyperbolic sine function -Oracle Open Office Math : hyperbolic tangent function -Oracle Open Office Math : hyperlinks -Oracle Open Office Math : hyperlinks;assigning macros -Oracle Open Office Math : hyperlinks;character formats -Oracle Open Office Math : hyperlinks;definition -Oracle Open Office Math : hyperlinks;deleting -Oracle Open Office Math : hyperlinks;editing -Oracle Open Office Math : hyperlinks;inserting -Oracle Open Office Math : hyperlinks;relative and absolute -Oracle Open Office Math : hyperlinks;turning off automatic recognition -Oracle Open Office Math : hyperlinks, see also links -Oracle Open Office Math : hyphenation -Oracle Open Office Math : hyphenation;activating for a language -Oracle Open Office Math : hyphenation;minimal number of characters -Oracle Open Office Math : hyphens -Oracle Open Office Math : hyphens;displaying custom (Writer) -Oracle Open Office Math : hyphens;inserting custom -Oracle Open Office Math : icon bars, see toolbars -Oracle Open Office Math : icon sizes -Oracle Open Office Math : identical to relation -Oracle Open Office Math : ignore list for spellcheck -Oracle Open Office Math : illustrations, see pictures -Oracle Open Office Math : image button creation -Oracle Open Office Math : image control creation -Oracle Open Office Math : image of relation -Oracle Open Office Math : ImageMap -Oracle Open Office Math : ImageMap;definition -Oracle Open Office Math : ImageMap;editor -Oracle Open Office Math : images -Oracle Open Office Math : images;ImageMap -Oracle Open Office Math : images;inserting and editing bitmaps -Oracle Open Office Math : images, see also pictures -Oracle Open Office Math : imaginary part of a complex number -Oracle Open Office Math : IME -Oracle Open Office Math : IME;definition -Oracle Open Office Math : IME;showing/hiding -Oracle Open Office Math : import filters -Oracle Open Office Math : import restrictions for Microsoft Office -Oracle Open Office Math : importing -Oracle Open Office Math : importing;bitmaps -Oracle Open Office Math : importing;compatibility settings for text import -Oracle Open Office Math : importing;databases -Oracle Open Office Math : importing;documents in other formats -Oracle Open Office Math : importing;from XML -Oracle Open Office Math : importing;HTML and text documents -Oracle Open Office Math : importing;HTML with META tags -Oracle Open Office Math : importing;Microsoft Office documents with VBA code -Oracle Open Office Math : importing;Oracle Open Office Math formulas -Oracle Open Office Math : importing;tables in text format -Oracle Open Office Math : importing;templates -Oracle Open Office Math : improvement program -Oracle Open Office Math : inches -Oracle Open Office Math : included in set operator -Oracle Open Office Math : includes set operator -Oracle Open Office Math : Index tab in Help -Oracle Open Office Math : indexes -Oracle Open Office Math : indexes;adding to formulas -Oracle Open Office Math : indexes;backgrounds -Oracle Open Office Math : indexes;showing/hiding Help index tab -Oracle Open Office Math : indexes and exponents in Oracle Open Office Math -Oracle Open Office Math : indicator lines in text -Oracle Open Office Math : inequation -Oracle Open Office Math : infinity symbol -Oracle Open Office Math : inner joins (Base) -Oracle Open Office Math : input method window -Oracle Open Office Math : insert mode for entering text -Oracle Open Office Math : inserting -Oracle Open Office Math : inserting;brackets -Oracle Open Office Math : inserting;buttons in toolbars -Oracle Open Office Math : inserting;cell ranges from spreadsheets -Oracle Open Office Math : inserting;charts -Oracle Open Office Math : inserting;clipboard options -Oracle Open Office Math : inserting;comments -Oracle Open Office Math : inserting;comments in Oracle Open Office Math -Oracle Open Office Math : inserting;data from text documents -Oracle Open Office Math : inserting;datasource records in spreadsheets -Oracle Open Office Math : inserting;drawings -Oracle Open Office Math : inserting;floating frames -Oracle Open Office Math : inserting;Fontwork objects -Oracle Open Office Math : inserting;form fields -Oracle Open Office Math : inserting;gaps -Oracle Open Office Math : inserting;hyperlinks -Oracle Open Office Math : inserting;line breaks in cells -Oracle Open Office Math : inserting;movies/sounds -Oracle Open Office Math : inserting;new text tables defaults -Oracle Open Office Math : inserting;objects from Gallery -Oracle Open Office Math : inserting;OLE objects -Oracle Open Office Math : inserting;paragraph borders -Oracle Open Office Math : inserting;paragraph bullets -Oracle Open Office Math : inserting;pictures in Gallery -Oracle Open Office Math : inserting;plug-ins -Oracle Open Office Math : inserting;push buttons -Oracle Open Office Math : inserting;special characters -Oracle Open Office Math : inserting;tab stops -Oracle Open Office Math : inserting;text in Oracle Open Office Math -Oracle Open Office Math : inserting;textures on chart bars -Oracle Open Office Math : installing -Oracle Open Office Math : installing;ActiveX control -Oracle Open Office Math : installing;mobile device filters -Oracle Open Office Math : installing;UNO components -Oracle Open Office Math : installing;XML filters -Oracle Open Office Math : instructions -Oracle Open Office Math : instructions;general -Oracle Open Office Math : instructions;Oracle Open Office Math -Oracle Open Office Math : integral limits -Oracle Open Office Math : integrals -Oracle Open Office Math : integrals;example -Oracle Open Office Math : integrals;signs -Oracle Open Office Math : Internet -Oracle Open Office Math : Internet;checking for updates -Oracle Open Office Math : Internet;Internet Explorer for displaying Oracle Open Office documents -Oracle Open Office Math : Internet;presentations -Oracle Open Office Math : Internet;starting searches -Oracle Open Office Math : Internet glossary -Oracle Open Office Math : intersection of sets -Oracle Open Office Math : invert filter -Oracle Open Office Math : invisible areas -Oracle Open Office Math : italic attribute in Oracle Open Office Math -Oracle Open Office Math : italic text -Oracle Open Office Math : iterative references in spreadsheets -Oracle Open Office Math : Java -Oracle Open Office Math : Java;definition -Oracle Open Office Math : Java;setting options -Oracle Open Office Math : JDBC -Oracle Open Office Math : JDBC;databases (Base) -Oracle Open Office Math : JDBC;definition -Oracle Open Office Math : joining -Oracle Open Office Math : joining;paragraphs -Oracle Open Office Math : joining;tables (Base) -Oracle Open Office Math : joins in databases (Base) -Oracle Open Office Math : justifying text -Oracle Open Office Math : kerning -Oracle Open Office Math : kerning;Asian texts -Oracle Open Office Math : kerning;definition -Oracle Open Office Math : kerning;in characters -Oracle Open Office Math : key fields for relations (Base) -Oracle Open Office Math : keyboard -Oracle Open Office Math : keyboard;assigning/editing shortcut keys -Oracle Open Office Math : keyboard;general commands -Oracle Open Office Math : keyboard;removing numbering -Oracle Open Office Math : keys -Oracle Open Office Math : keys;adding push buttons -Oracle Open Office Math : keys;primary keys (Base) -Oracle Open Office Math : kiosk export -Oracle Open Office Math : labels -Oracle Open Office Math : labels;creating and synchronizing -Oracle Open Office Math : labels;for draw objects -Oracle Open Office Math : labels;form functions -Oracle Open Office Math : labels;from databases -Oracle Open Office Math : labels, see also names/callouts -Oracle Open Office Math : lambda-bar symbol -Oracle Open Office Math : languages -Oracle Open Office Math : languages;activating modules -Oracle Open Office Math : languages;Asian support -Oracle Open Office Math : languages;complex text layout -Oracle Open Office Math : languages;locale settings -Oracle Open Office Math : languages;selecting for text -Oracle Open Office Math : languages;setting options -Oracle Open Office Math : languages;spellcheck -Oracle Open Office Math : languages;spellchecking and formatting -Oracle Open Office Math : large handles (Writer) -Oracle Open Office Math : large icons -Oracle Open Office Math : layer arrangement -Oracle Open Office Math : layout -Oracle Open Office Math : layout;importing Word documents -Oracle Open Office Math : layout;pages -Oracle Open Office Math : LDAP server -Oracle Open Office Math : LDAP server;address books (Base) -Oracle Open Office Math : LDAP server;sign on options -Oracle Open Office Math : leading between paragraphs -Oracle Open Office Math : left alignment of paragraphs -Oracle Open Office Math : left arrow symbol -Oracle Open Office Math : left joins (Base) -Oracle Open Office Math : left-justified alignment (Math) -Oracle Open Office Math : legends -Oracle Open Office Math : legends;charts -Oracle Open Office Math : legends;draw objects -Oracle Open Office Math : legends;rounding corners -Oracle Open Office Math : less than or equal to signs -Oracle Open Office Math : less than relations -Oracle Open Office Math : Letter Wizard -Oracle Open Office Math : levels -Oracle Open Office Math : levels;depth stagger -Oracle Open Office Math : levels;macro security -Oracle Open Office Math : limits -Oracle Open Office Math : limits;in Oracle Open Office Math -Oracle Open Office Math : limits;in sums/integrals -Oracle Open Office Math : limits of tables (Writer) -Oracle Open Office Math : line above attribute -Oracle Open Office Math : line breaks -Oracle Open Office Math : line breaks;in cells -Oracle Open Office Math : line breaks;in formulas -Oracle Open Office Math : line spacing -Oracle Open Office Math : line spacing;context menu in paragraphs -Oracle Open Office Math : line spacing;paragraph -Oracle Open Office Math : line styles -Oracle Open Office Math : line styles;applying -Oracle Open Office Math : line styles;defining -Oracle Open Office Math : line through attribute -Oracle Open Office Math : lines -Oracle Open Office Math : lines;defining ends -Oracle Open Office Math : lines;draw functions -Oracle Open Office Math : lines;drawing in text -Oracle Open Office Math : lines;editing points -Oracle Open Office Math : lines;inserting in formulas -Oracle Open Office Math : lines;removing automatic lines -Oracle Open Office Math : lines;scalable -Oracle Open Office Math : lines;with edges -Oracle Open Office Math : lines of text -Oracle Open Office Math : lines of text;alignment -Oracle Open Office Math : links -Oracle Open Office Math : links;between cells and controls -Oracle Open Office Math : links;by drag and drop -Oracle Open Office Math : links;character formats -Oracle Open Office Math : links;definition -Oracle Open Office Math : links;editing hyperlinks -Oracle Open Office Math : links;inserting -Oracle Open Office Math : links;modifying -Oracle Open Office Math : links;opening files with -Oracle Open Office Math : links;relational databases (Base) -Oracle Open Office Math : links;turning off automatic recognition -Oracle Open Office Math : links;updating options (Writer) -Oracle Open Office Math : links;updating specific links -Oracle Open Office Math : list box creation -Oracle Open Office Math : lists -Oracle Open Office Math : lists;data assigned to controls -Oracle Open Office Math : lists;registered databases (Base) -Oracle Open Office Math : lists;regular expressions -Oracle Open Office Math : live presentations on the Internet -Oracle Open Office Math : loading -Oracle Open Office Math : loading;documents -Oracle Open Office Math : loading;documents from other formats -Oracle Open Office Math : loading;HTML documents, automatically -Oracle Open Office Math : loading;Microsoft Office documents with VBA code -Oracle Open Office Math : loading;reloading -Oracle Open Office Math : loading;XML files -Oracle Open Office Math : locale settings -Oracle Open Office Math : logarithms -Oracle Open Office Math : logic symbols -Oracle Open Office Math : logical operators -Oracle Open Office Math : lower limits -Oracle Open Office Math : lowercase letters -Oracle Open Office Math : lowercase letters;font effects -Oracle Open Office Math : Macro Wizard (Base) -Oracle Open Office Math : macros -Oracle Open Office Math : macros;assigning to events in forms -Oracle Open Office Math : macros;attaching new (Base) -Oracle Open Office Math : macros;in MS Office documents -Oracle Open Office Math : macros;interrupting -Oracle Open Office Math : macros;organizing -Oracle Open Office Math : macros;recording -Oracle Open Office Math : macros;security -Oracle Open Office Math : macros;security levels -Oracle Open Office Math : macros;security warning dialog -Oracle Open Office Math : macros;selecting security warnings -Oracle Open Office Math : magnifiers -Oracle Open Office Math : margins -Oracle Open Office Math : margins;pages -Oracle Open Office Math : margins;setting with the mouse -Oracle Open Office Math : margins;shadows -Oracle Open Office Math : markers -Oracle Open Office Math : markers;definition -Oracle Open Office Math : markers;next -Oracle Open Office Math : markers;previous -Oracle Open Office Math : marking changes -Oracle Open Office Math : marking, see selecting -Oracle Open Office Math : Math formula editor -Oracle Open Office Math : mathematical symbols -Oracle Open Office Math : mathematical symbols;catalog -Oracle Open Office Math : mathematical symbols;other -Oracle Open Office Math : matrices -Oracle Open Office Math : matrices;arranging -Oracle Open Office Math : maximum formula size -Oracle Open Office Math : measurement units -Oracle Open Office Math : measurement units;changing on rulers -Oracle Open Office Math : measurement units;converting -Oracle Open Office Math : measurement units;selecting -Oracle Open Office Math : Media Player window -Oracle Open Office Math : menus -Oracle Open Office Math : menus;activating context menus -Oracle Open Office Math : menus;assigning macros -Oracle Open Office Math : menus;customizing -Oracle Open Office Math : merging -Oracle Open Office Math : merging;documents -Oracle Open Office Math : merging;formula parts -Oracle Open Office Math : META tags -Oracle Open Office Math : metrics -Oracle Open Office Math : metrics;converting -Oracle Open Office Math : metrics;document formatting (Writer) -Oracle Open Office Math : metrics;in sheets -Oracle Open Office Math : Microsoft Office -Oracle Open Office Math : Microsoft Office;Access databases (base) -Oracle Open Office Math : Microsoft Office;as default file format -Oracle Open Office Math : Microsoft Office;document import restrictions -Oracle Open Office Math : Microsoft Office;feature comparisons -Oracle Open Office Math : Microsoft Office;importing password protected files -Oracle Open Office Math : Microsoft Office;importing Word documents -Oracle Open Office Math : Microsoft Office;importing/exporting VBA code -Oracle Open Office Math : Microsoft Office;new users information -Oracle Open Office Math : Microsoft Office;opening Microsoft documents -Oracle Open Office Math : Microsoft Office;reassigning document types -Oracle Open Office Math : migrating macros (Base) -Oracle Open Office Math : minus signs -Oracle Open Office Math : minus/plus signs -Oracle Open Office Math : mobile device filters -Oracle Open Office Math : models in XForms -Oracle Open Office Math : modifying, see changing -Oracle Open Office Math : more controls -Oracle Open Office Math : mosaic filter -Oracle Open Office Math : mouse -Oracle Open Office Math : mouse;pointers when using drag and drop -Oracle Open Office Math : mouse;positioning -Oracle Open Office Math : movies -Oracle Open Office Math : moving -Oracle Open Office Math : moving;tab stops on ruler -Oracle Open Office Math : moving;toolbars -Oracle Open Office Math : moving;using guide lines in presentations -Oracle Open Office Math : MS ADO interface (Base) -Oracle Open Office Math : much greater than relation -Oracle Open Office Math : much less than relation -Oracle Open Office Math : multi-line formulas -Oracle Open Office Math : multi-line formulas;aligning -Oracle Open Office Math : multi-line titles in forms -Oracle Open Office Math : multiple documents -Oracle Open Office Math : multiple documents;opening -Oracle Open Office Math : multiple selection -Oracle Open Office Math : multiplication signs -Oracle Open Office Math : music -Oracle Open Office Math : My Documents folder -Oracle Open Office Math : My Documents folder;changing work directory -Oracle Open Office Math : My Documents folder;opening -Oracle Open Office Math : MySQL databases (Base) -Oracle Open Office Math : Nabla operator -Oracle Open Office Math : names -Oracle Open Office Math : names;multi-line titles -Oracle Open Office Math : names;objects -Oracle Open Office Math : names, see also labels/callouts -Oracle Open Office Math : namespace organization in XForms -Oracle Open Office Math : native SQL (Base) -Oracle Open Office Math : natural exponential functions -Oracle Open Office Math : natural logarithms -Oracle Open Office Math : natural numbers -Oracle Open Office Math : navigating -Oracle Open Office Math : navigating;in documents -Oracle Open Office Math : Navigation bar -Oracle Open Office Math : Navigation bar;controls -Oracle Open Office Math : Navigation bar;forms -Oracle Open Office Math : Navigator -Oracle Open Office Math : Navigator;comments -Oracle Open Office Math : Navigator;contents as lists -Oracle Open Office Math : Navigator;docking -Oracle Open Office Math : Navigator;working with -Oracle Open Office Math : network identity options -Oracle Open Office Math : new databases -Oracle Open Office Math : new documents -Oracle Open Office Math : new lines in cells -Oracle Open Office Math : new symbols in Oracle Open Office Math -Oracle Open Office Math : new windows -Oracle Open Office Math : non-breaking dashes -Oracle Open Office Math : non-breaking spaces (Writer) -Oracle Open Office Math : non-printing characters (Writer) -Oracle Open Office Math : not included in set operator -Oracle Open Office Math : NOT operator -Oracle Open Office Math : not subset set operators -Oracle Open Office Math : not superset set operators -Oracle Open Office Math : number formats -Oracle Open Office Math : number formats;codes -Oracle Open Office Math : number formats;formats -Oracle Open Office Math : number formats;recognition in text tables -Oracle Open Office Math : number of pages -Oracle Open Office Math : number of sheets -Oracle Open Office Math : number of tables -Oracle Open Office Math : numbering -Oracle Open Office Math : numbering;options -Oracle Open Office Math : numbering;turning off -Oracle Open Office Math : numbering;using automatically -Oracle Open Office Math : numbers -Oracle Open Office Math : numbers;date, time and currency formats -Oracle Open Office Math : numerical fields in forms -Oracle Open Office Math : objects -Oracle Open Office Math : objects;always moveable (Impress/Draw) -Oracle Open Office Math : objects;arranging within stacks -Oracle Open Office Math : objects;copying when moving in presentations -Oracle Open Office Math : objects;definition -Oracle Open Office Math : objects;displaying in spreadsheets -Oracle Open Office Math : objects;displaying in text documents -Oracle Open Office Math : objects;editing -Oracle Open Office Math : objects;inserting from Gallery -Oracle Open Office Math : objects;inserting OLE objects -Oracle Open Office Math : objects;moving and resizing with mouse -Oracle Open Office Math : objects;naming -Oracle Open Office Math : objects;opening -Oracle Open Office Math : objects;quickly moving to -Oracle Open Office Math : objects;titles and descriptions -Oracle Open Office Math : ODBC -Oracle Open Office Math : ODBC;database (Base) -Oracle Open Office Math : ODBC;definition -Oracle Open Office Math : ODF file formats -Oracle Open Office Math : Office -Oracle Open Office Math : Office;Microsoft Office and Oracle Open Office -Oracle Open Office Math : OLE -Oracle Open Office Math : OLE;definition -Oracle Open Office Math : OLE objects -Oracle Open Office Math : OLE objects;arranging within stacks -Oracle Open Office Math : OLE objects;captions (Writer) -Oracle Open Office Math : OLE objects;inserting -Oracle Open Office Math : OLE objects;number of -Oracle Open Office Math : OLE objects;protecting -Oracle Open Office Math : one and a half line spacing in text -Oracle Open Office Math : online feedback options -Oracle Open Office Math : online registration -Oracle Open Office Math : online update options -Oracle Open Office Math : online updates -Oracle Open Office Math : online updates;checking automatically -Oracle Open Office Math : online updates;checking manually -Oracle Open Office Math : OpenDocument file formats -Oracle Open Office Math : OpenGL -Oracle Open Office Math : OpenGL;definition -Oracle Open Office Math : opening -Oracle Open Office Math : opening;context menus -Oracle Open Office Math : opening;database files -Oracle Open Office Math : opening;dialog settings -Oracle Open Office Math : opening;documents -Oracle Open Office Math : opening;documents from other formats -Oracle Open Office Math : opening;documents on WebDAV server -Oracle Open Office Math : opening;files with links -Oracle Open Office Math : opening;files, with placeholders -Oracle Open Office Math : opening;forms -Oracle Open Office Math : opening;Microsoft Office files -Oracle Open Office Math : opening;mobile device documents -Oracle Open Office Math : opening;objects -Oracle Open Office Math : opening;reports -Oracle Open Office Math : opening;several files -Oracle Open Office Math : opening;XForms -Oracle Open Office Math : operator brackets -Oracle Open Office Math : operators -Oracle Open Office Math : operators;default filters -Oracle Open Office Math : operators;general -Oracle Open Office Math : operators;in Math -Oracle Open Office Math : operators;list of -Oracle Open Office Math : operators;unary and binary -Oracle Open Office Math : optional hyphens (Writer) -Oracle Open Office Math : options -Oracle Open Office Math : options;accessibility -Oracle Open Office Math : options;appearance -Oracle Open Office Math : options;compatibility (Writer) -Oracle Open Office Math : options;improvement program -Oracle Open Office Math : options;network identity -Oracle Open Office Math : options;online update -Oracle Open Office Math : options;tools -Oracle Open Office Math : OR operator -Oracle Open Office Math : Oracle databases (base) -Oracle Open Office Math : Oracle Open Office Base data sources -Oracle Open Office Math : Oracle Open Office Basic scripts in HTML documents -Oracle Open Office Math : Oracle Open Office documents -Oracle Open Office Math : Oracle Open Office documents;mobile device filters -Oracle Open Office Math : Oracle Open Office documents;viewing and editing in Internet Explorer -Oracle Open Office Math : Oracle Open Office Math -Oracle Open Office Math : Oracle Open Office Math;entering symbols in -Oracle Open Office Math : Oracle Open Office Math;examples -Oracle Open Office Math : Oracle Open Office Math;formatting -Oracle Open Office Math : Oracle Open Office Math;general instructions -Oracle Open Office Math : Oracle Open Office Math;reference list -Oracle Open Office Math : Oracle Open Office Math;relations -Oracle Open Office Math : Oracle Open Office Math start -Oracle Open Office Math : ordering -Oracle Open Office Math : ordering;objects -Oracle Open Office Math : ordinal numbers -Oracle Open Office Math : ordinal numbers;replacing -Oracle Open Office Math : organizing -Oracle Open Office Math : organizing;macros and scripts -Oracle Open Office Math : organizing;namespaces in XForms -Oracle Open Office Math : organizing;styles -Oracle Open Office Math : organizing;templates -Oracle Open Office Math : original by correspondence -Oracle Open Office Math : original size -Oracle Open Office Math : original size;printing in Oracle Open Office Math -Oracle Open Office Math : original size;restoring after cropping -Oracle Open Office Math : orphaned brackets -Oracle Open Office Math : orthogonal relations -Oracle Open Office Math : other operators -Oracle Open Office Math : other operators;list of -Oracle Open Office Math : outlines -Oracle Open Office Math : outlines;font effects -Oracle Open Office Math : outlines;outline symbols -Oracle Open Office Math : outlines;sending to presentations -Oracle Open Office Math : overline attribute -Oracle Open Office Math : overwrite mode -Oracle Open Office Math : owns command -Oracle Open Office Math : packages, see extensions -Oracle Open Office Math : page breaks -Oracle Open Office Math : page breaks;displaying (Calc) -Oracle Open Office Math : page formats -Oracle Open Office Math : page formats;maximizing -Oracle Open Office Math : page formats;restriction -Oracle Open Office Math : page styles -Oracle Open Office Math : page styles;editing/applying with statusbar -Oracle Open Office Math : pages -Oracle Open Office Math : pages;backgrounds in all applications -Oracle Open Office Math : pages;formatting and numbering -Oracle Open Office Math : pages;printing page names in presentations -Oracle Open Office Math : pages;scaling -Oracle Open Office Math : pages;selecting one to print -Oracle Open Office Math : paint box -Oracle Open Office Math : paint can symbol -Oracle Open Office Math : pair kerning -Oracle Open Office Math : Palm file filters -Oracle Open Office Math : paper formats -Oracle Open Office Math : paper size warning -Oracle Open Office Math : paper trays -Oracle Open Office Math : paragraph marks -Oracle Open Office Math : paragraph marks;displaying (Writer) -Oracle Open Office Math : paragraph styles -Oracle Open Office Math : paragraph styles;languages -Oracle Open Office Math : paragraph styles;modifying basic fonts -Oracle Open Office Math : paragraphs -Oracle Open Office Math : paragraphs;alignment -Oracle Open Office Math : paragraphs;Asian typography -Oracle Open Office Math : paragraphs;defining borders -Oracle Open Office Math : paragraphs;hidden paragraphs (Writer) -Oracle Open Office Math : paragraphs;increasing indents of -Oracle Open Office Math : paragraphs;indents, margins and columns -Oracle Open Office Math : paragraphs;inserting bullets -Oracle Open Office Math : paragraphs;joining -Oracle Open Office Math : paragraphs;numbering automatically -Oracle Open Office Math : paragraphs;removing blank ones -Oracle Open Office Math : paragraphs;spacing -Oracle Open Office Math : paragraphs;tab stops -Oracle Open Office Math : parallel relation -Oracle Open Office Math : parameters -Oracle Open Office Math : parameters;command line -Oracle Open Office Math : parameters;queries (Base) -Oracle Open Office Math : parentheses (Math) -Oracle Open Office Math : partial differentiation symbol -Oracle Open Office Math : passwords for protecting contents -Oracle Open Office Math : pasting -Oracle Open Office Math : pasting;cell ranges -Oracle Open Office Math : pasting;cell ranges from spreadsheets -Oracle Open Office Math : pasting;data from text documents -Oracle Open Office Math : pasting;draw objects -Oracle Open Office Math : pasting;draw objects from other documents -Oracle Open Office Math : pasting;formatted/unformatted text -Oracle Open Office Math : pasting;from data source view -Oracle Open Office Math : pasting;from data sources to Oracle Open Office Calc -Oracle Open Office Math : pasting;pictures from other documents -Oracle Open Office Math : pasting;sheet areas in text documents -Oracle Open Office Math : pasting;to Gallery -Oracle Open Office Math : paths -Oracle Open Office Math : paths;changing work directory -Oracle Open Office Math : paths;defaults -Oracle Open Office Math : pattern editor -Oracle Open Office Math : pattern fields -Oracle Open Office Math : pattern fields;form functions -Oracle Open Office Math : patterns for objects -Oracle Open Office Math : PDF -Oracle Open Office Math : PDF;export -Oracle Open Office Math : PDF;PostScript to PDF converter, UNIX -Oracle Open Office Math : personal data input -Oracle Open Office Math : phonetic guide -Oracle Open Office Math : picklist creation -Oracle Open Office Math : picture by correspondence -Oracle Open Office Math : pictures -Oracle Open Office Math : pictures;adding to Gallery -Oracle Open Office Math : pictures;arranging within stacks -Oracle Open Office Math : pictures;assigning macros -Oracle Open Office Math : pictures;backgrounds -Oracle Open Office Math : pictures;captions (Writer) -Oracle Open Office Math : pictures;changing paths -Oracle Open Office Math : pictures;cropping and zooming -Oracle Open Office Math : pictures;displaying in Calc -Oracle Open Office Math : pictures;displaying in Writer (Writer) -Oracle Open Office Math : pictures;drag and drop between documents -Oracle Open Office Math : pictures;drawing -Oracle Open Office Math : pictures;editing -Oracle Open Office Math : pictures;filters -Oracle Open Office Math : pictures;ImageMap -Oracle Open Office Math : pictures;inserting automatically -Oracle Open Office Math : pictures;inserting from Gallery -Oracle Open Office Math : pictures;number of -Oracle Open Office Math : pictures;printing -Oracle Open Office Math : pictures;scaling/resizing -Oracle Open Office Math : pixel editor -Oracle Open Office Math : pixel graphics -Oracle Open Office Math : pixel graphics;inserting and editing -Oracle Open Office Math : pixel patterns -Oracle Open Office Math : placeholders -Oracle Open Office Math : placeholders;in SQL queries -Oracle Open Office Math : placeholders;inserting in formulas -Oracle Open Office Math : placeholders;on opening files -Oracle Open Office Math : placeholders;position of next -Oracle Open Office Math : placeholders;previous marker -Oracle Open Office Math : placing toolbars -Oracle Open Office Math : playing movies and sound files -Oracle Open Office Math : plotting data as charts -Oracle Open Office Math : plug-ins -Oracle Open Office Math : plug-ins;activating and deactivating -Oracle Open Office Math : plug-ins;definition -Oracle Open Office Math : plug-ins;inserting -Oracle Open Office Math : plus signs -Oracle Open Office Math : plus/minus signs -Oracle Open Office Math : pocket device appliances -Oracle Open Office Math : Pocket PC file filters -Oracle Open Office Math : points -Oracle Open Office Math : points;reducing editing points when snapping (Impress/Draw) -Oracle Open Office Math : polygon drawing -Oracle Open Office Math : pop-art filter -Oracle Open Office Math : portable document format -Oracle Open Office Math : positioning -Oracle Open Office Math : positioning;draw objects and controls -Oracle Open Office Math : positioning;fonts -Oracle Open Office Math : positioning;objects -Oracle Open Office Math : positioning;toolbars -Oracle Open Office Math : post method for form transmissions -Oracle Open Office Math : posterizing filter -Oracle Open Office Math : PostScript -Oracle Open Office Math : PostScript;creating files -Oracle Open Office Math : PostScript;PDF converter, UNIX -Oracle Open Office Math : PowerPoint export -Oracle Open Office Math : powers -Oracle Open Office Math : precision as shown (Calc) -Oracle Open Office Math : predefining fonts -Oracle Open Office Math : predictive text, see also AutoCorrect function/AutoFill function/AutoInput function/word completion/text completion -Oracle Open Office Math : presentations -Oracle Open Office Math : presentations;creating/opening -Oracle Open Office Math : presentations;inserting spreadsheet cells -Oracle Open Office Math : presentations;live on the Internet -Oracle Open Office Math : presentations;print menu -Oracle Open Office Math : presentations;saving -Oracle Open Office Math : presentations;saving automatically -Oracle Open Office Math : presentations;saving in other formats -Oracle Open Office Math : presentations;sending as e-mail -Oracle Open Office Math : presentations;starting with wizard -Oracle Open Office Math : presentations;wizards -Oracle Open Office Math : Presenter Console shortcuts -Oracle Open Office Math : press buttons, see push buttons -Oracle Open Office Math : previews -Oracle Open Office Math : previews;fonts lists -Oracle Open Office Math : primary keys -Oracle Open Office Math : primary keys;defining -Oracle Open Office Math : primary keys;design view -Oracle Open Office Math : primary keys;inserting (Base) -Oracle Open Office Math : print area selection -Oracle Open Office Math : printer metrics for document formatting (Writer) -Oracle Open Office Math : printers -Oracle Open Office Math : printers;adding, UNIX -Oracle Open Office Math : printers;choosing -Oracle Open Office Math : printers;default printer -Oracle Open Office Math : printers;faxes under UNIX -Oracle Open Office Math : printers;maximum page formats -Oracle Open Office Math : printers;paper trays -Oracle Open Office Math : printers;properties -Oracle Open Office Math : printing -Oracle Open Office Math : printing;black and white -Oracle Open Office Math : printing;brochures -Oracle Open Office Math : printing;colors in grayscale -Oracle Open Office Math : printing;comments -Oracle Open Office Math : printing;copies -Oracle Open Office Math : printing;creating individual jobs -Oracle Open Office Math : printing;dates in presentations -Oracle Open Office Math : printing;directly -Oracle Open Office Math : printing;documents -Oracle Open Office Math : printing;drawings defaults -Oracle Open Office Math : printing;elements in text documents -Oracle Open Office Math : printing;faster -Oracle Open Office Math : printing;fitting to pages in Oracle Open Office Math -Oracle Open Office Math : printing;fitting to pages in presentations -Oracle Open Office Math : printing;formulas in Oracle Open Office Math -Oracle Open Office Math : printing;hidden pages of presentations -Oracle Open Office Math : printing;in original size in Oracle Open Office Math -Oracle Open Office Math : printing;left/right pages -Oracle Open Office Math : printing;queries (Base) -Oracle Open Office Math : printing;scaling in Oracle Open Office Math -Oracle Open Office Math : printing;selections -Oracle Open Office Math : printing;text always in black -Oracle Open Office Math : printing;text in reverse order -Oracle Open Office Math : printing;tiling pages in presentations -Oracle Open Office Math : printing;transparencies -Oracle Open Office Math : printing;warnings -Oracle Open Office Math : printing;without scaling in presentations -Oracle Open Office Math : printing speed -Oracle Open Office Math : product -Oracle Open Office Math : programming -Oracle Open Office Math : programming;Oracle Open Office -Oracle Open Office Math : programming;scripting -Oracle Open Office Math : properties -Oracle Open Office Math : properties;fields in databases -Oracle Open Office Math : properties;files -Oracle Open Office Math : properties;form controls -Oracle Open Office Math : properties;forms -Oracle Open Office Math : properties;printers -Oracle Open Office Math : proportional to relation -Oracle Open Office Math : protected contents -Oracle Open Office Math : protected dashes -Oracle Open Office Math : protected database tables -Oracle Open Office Math : protected documents -Oracle Open Office Math : protected spaces -Oracle Open Office Math : protected spaces;inserting -Oracle Open Office Math : protected spaces;showing (Writer) -Oracle Open Office Math : protecting -Oracle Open Office Math : protecting;contents -Oracle Open Office Math : protecting;recorded changes -Oracle Open Office Math : proxy settings -Oracle Open Office Math : push buttons -Oracle Open Office Math : push buttons;adding to documents -Oracle Open Office Math : push buttons;creating -Oracle Open Office Math : queries -Oracle Open Office Math : queries;copying (Base) -Oracle Open Office Math : queries;creating in design view (Base) -Oracle Open Office Math : queries;creating in SQL view -Oracle Open Office Math : queries;defining (Base) -Oracle Open Office Math : queries;deleting table links (Base) -Oracle Open Office Math : queries;editing in data source view -Oracle Open Office Math : queries;formulating filter conditions (Base) -Oracle Open Office Math : queries;joining tables (Base) -Oracle Open Office Math : queries;missing elements (Base) -Oracle Open Office Math : queries;overview (Base) -Oracle Open Office Math : queries;parameter queries (Base) -Oracle Open Office Math : queries;printing (Base) -Oracle Open Office Math : Query Wizard (Base) -Oracle Open Office Math : Quickstarter -Oracle Open Office Math : quotes -Oracle Open Office Math : quotes;custom -Oracle Open Office Math : quotient set -Oracle Open Office Math : radio button creation -Oracle Open Office Math : range of integral example -Oracle Open Office Math : rational numbers -Oracle Open Office Math : read-only documents -Oracle Open Office Math : read-only documents;cursor -Oracle Open Office Math : read-only documents;database tables on/off -Oracle Open Office Math : read-only documents;editing -Oracle Open Office Math : read-only documents;opening documents as -Oracle Open Office Math : read-only items in Data Navigator -Oracle Open Office Math : real numbers -Oracle Open Office Math : real part of complex numbers -Oracle Open Office Math : recognizing URLs automatically -Oracle Open Office Math : recording -Oracle Open Office Math : recording;changes -Oracle Open Office Math : recording;macros -Oracle Open Office Math : records -Oracle Open Office Math : records;inserting comments -Oracle Open Office Math : records;protecting -Oracle Open Office Math : records;saving -Oracle Open Office Math : records;searching in databases -Oracle Open Office Math : rectangles with round corners -Oracle Open Office Math : recursions in spreadsheets -Oracle Open Office Math : redo command -Oracle Open Office Math : reduced printing -Oracle Open Office Math : reference lines -Oracle Open Office Math : reference tables -Oracle Open Office Math : reference tables;formulas -Oracle Open Office Math : references -Oracle Open Office Math : references;displaying in color (Calc) -Oracle Open Office Math : references;expanding (Calc) -Oracle Open Office Math : references;iterative (Calc) -Oracle Open Office Math : refreshing formula view -Oracle Open Office Math : register-true -Oracle Open Office Math : register-true;definition -Oracle Open Office Math : registering -Oracle Open Office Math : registering;address books -Oracle Open Office Math : registering;databases (Base) -Oracle Open Office Math : registering;Oracle Open Office -Oracle Open Office Math : regular expressions -Oracle Open Office Math : regular expressions;list of -Oracle Open Office Math : relational databases (Base) -Oracle Open Office Math : relations -Oracle Open Office Math : relations;creating and deleting (Base) -Oracle Open Office Math : relations;in Oracle Open Office Math -Oracle Open Office Math : relations;joining tables (Base) -Oracle Open Office Math : relations;properties (Base) -Oracle Open Office Math : relations operators -Oracle Open Office Math : relations operators;list of -Oracle Open Office Math : relative hyperlinks -Oracle Open Office Math : relative saving of URLs -Oracle Open Office Math : reloading -Oracle Open Office Math : reloading;documents -Oracle Open Office Math : reloading;HTML documents, automatically -Oracle Open Office Math : remarks, see also comments -Oracle Open Office Math : remote configurations -Oracle Open Office Math : remove noise filter -Oracle Open Office Math : removing -Oracle Open Office Math : removing;bullets and numbering -Oracle Open Office Math : removing;form filters -Oracle Open Office Math : removing, see also deleting -Oracle Open Office Math : repeating -Oracle Open Office Math : repeating;commands -Oracle Open Office Math : replacement options -Oracle Open Office Math : replacement table -Oracle Open Office Math : replacing -Oracle Open Office Math : replacing;AutoCorrect function -Oracle Open Office Math : replacing;dashes -Oracle Open Office Math : replacing;ordinal numbers -Oracle Open Office Math : replacing;tab stops (regular expressions) -Oracle Open Office Math : Report Builder -Oracle Open Office Math : reports -Oracle Open Office Math : reports;creating -Oracle Open Office Math : reports;error reports -Oracle Open Office Math : reports;opening and editing -Oracle Open Office Math : reports;templates -Oracle Open Office Math : resetting -Oracle Open Office Math : resetting;templates -Oracle Open Office Math : resizing -Oracle Open Office Math : resizing;fonts -Oracle Open Office Math : resizing;objects, by mouse -Oracle Open Office Math : resizing, see also scaling/zooming -Oracle Open Office Math : resolution when printing bitmaps -Oracle Open Office Math : restoring -Oracle Open Office Math : restoring;default formatting -Oracle Open Office Math : restoring;editing -Oracle Open Office Math : reversed circumflex attribute -Oracle Open Office Math : reversing printing order -Oracle Open Office Math : review function -Oracle Open Office Math : review function;accepting or rejecting changes -Oracle Open Office Math : review function;comparing documents -Oracle Open Office Math : review function;protecting records -Oracle Open Office Math : review function;recording changes example -Oracle Open Office Math : rich text control -Oracle Open Office Math : right alignment of paragraphs -Oracle Open Office Math : right angled relations -Oracle Open Office Math : right arrow symbol -Oracle Open Office Math : right joins (Base) -Oracle Open Office Math : right-justified alignment in Oracle Open Office Math -Oracle Open Office Math : right-to-left text -Oracle Open Office Math : roots -Oracle Open Office Math : rotating -Oracle Open Office Math : rotating;3D text -Oracle Open Office Math : round brackets -Oracle Open Office Math : round corners -Oracle Open Office Math : rounding precision (Calc) -Oracle Open Office Math : row headers -Oracle Open Office Math : row headers;displaying (Calc) -Oracle Open Office Math : row headers;highlighting (Calc) -Oracle Open Office Math : rulers -Oracle Open Office Math : rulers;default settings -Oracle Open Office Math : rulers;measurement units -Oracle Open Office Math : rulers;visible in presentations -Oracle Open Office Math : samples and templates -Oracle Open Office Math : saving -Oracle Open Office Math : saving;default file formats -Oracle Open Office Math : saving;dialog settings -Oracle Open Office Math : saving;documents -Oracle Open Office Math : saving;documents for mobile devices -Oracle Open Office Math : saving;documents in other formats -Oracle Open Office Math : saving;documents, automatically -Oracle Open Office Math : saving;in Microsoft Office file format -Oracle Open Office Math : saving;options -Oracle Open Office Math : saving;templates -Oracle Open Office Math : saving;to XML -Oracle Open Office Math : saving;VBA code in Microsoft Office documents -Oracle Open Office Math : saving;with password by default -Oracle Open Office Math : saving as command -Oracle Open Office Math : saving as command;precautions -Oracle Open Office Math : scalable braces -Oracle Open Office Math : scalable lines with ceiling -Oracle Open Office Math : scalable round brackets -Oracle Open Office Math : scaling -Oracle Open Office Math : scaling;font sizes in user interface -Oracle Open Office Math : scaling;fonts -Oracle Open Office Math : scaling;in Oracle Open Office Math -Oracle Open Office Math : scaling;objects -Oracle Open Office Math : scaling;pictures -Oracle Open Office Math : scaling;printing in Oracle Open Office Math -Oracle Open Office Math : scaling;when printing presentations -Oracle Open Office Math : scaling, see also zooming -Oracle Open Office Math : screen -Oracle Open Office Math : screen;full screen views -Oracle Open Office Math : screen;scaling -Oracle Open Office Math : screen magnifiers -Oracle Open Office Math : screen readers -Oracle Open Office Math : script organization -Oracle Open Office Math : scrollbars -Oracle Open Office Math : scrollbars;controls -Oracle Open Office Math : scrollbars;displaying (Calc) -Oracle Open Office Math : scrollbars;horizontal and vertical (Writer) -Oracle Open Office Math : search criteria for database functions in cells -Oracle Open Office Math : search engines -Oracle Open Office Math : search engines;definition -Oracle Open Office Math : search engines;selecting -Oracle Open Office Math : searching -Oracle Open Office Math : searching;all sheets -Oracle Open Office Math : searching;databases -Oracle Open Office Math : searching;form filters -Oracle Open Office Math : searching;Internet -Oracle Open Office Math : searching;tables and forms -Oracle Open Office Math : sections -Oracle Open Office Math : sections;backgrounds -Oracle Open Office Math : security -Oracle Open Office Math : security;digital signatures -Oracle Open Office Math : security;options for documents with macros -Oracle Open Office Math : security;protecting contents -Oracle Open Office Math : security;security levels for macros -Oracle Open Office Math : security;warning dialogs with macros -Oracle Open Office Math : selecting -Oracle Open Office Math : selecting;controls -Oracle Open Office Math : selecting;measurement units -Oracle Open Office Math : selecting;objects -Oracle Open Office Math : selecting;print areas -Oracle Open Office Math : selecting;several files -Oracle Open Office Math : selection clipboard -Oracle Open Office Math : selection frames -Oracle Open Office Math : selection modes in text -Oracle Open Office Math : selection options in formulas -Oracle Open Office Math : sending -Oracle Open Office Math : sending;AutoAbstract function in presentations -Oracle Open Office Math : sending;documents as e-mail -Oracle Open Office Math : sending;documents as faxes -Oracle Open Office Math : separator lines -Oracle Open Office Math : separator lines;defining -Oracle Open Office Math : separators -Oracle Open Office Math : separators;conditional -Oracle Open Office Math : Server Side ImageMap -Oracle Open Office Math : set operations in Oracle Open OfficeMath -Oracle Open Office Math : set operators -Oracle Open Office Math : set operators;list of -Oracle Open Office Math : sets of numbers -Oracle Open Office Math : settings -Oracle Open Office Math : settings;printers -Oracle Open Office Math : settings;program configuration -Oracle Open Office Math : settings;proxies -Oracle Open Office Math : settings;tracking changes -Oracle Open Office Math : settings;views -Oracle Open Office Math : SGML -Oracle Open Office Math : SGML;definition -Oracle Open Office Math : shadows -Oracle Open Office Math : shadows;areas -Oracle Open Office Math : shadows;borders -Oracle Open Office Math : shadows;characters -Oracle Open Office Math : shadows;characters, using context menu -Oracle Open Office Math : sharing documents -Oracle Open Office Math : sharpening filter -Oracle Open Office Math : sheet tabs -Oracle Open Office Math : sheet tabs;displaying -Oracle Open Office Math : sheets -Oracle Open Office Math : sheets;searching all -Oracle Open Office Math : shortcut keys -Oracle Open Office Math : shortcut keys;assigning macros -Oracle Open Office Math : shortcut keys;general -Oracle Open Office Math : shortcut keys;in databases -Oracle Open Office Math : shortcut keys;in formulas -Oracle Open Office Math : shortcut keys;Oracle Open Office accessibility -Oracle Open Office Math : showing -Oracle Open Office Math : showing;changes -Oracle Open Office Math : showing;docked windows -Oracle Open Office Math : showing;drawings and controls (Writer) -Oracle Open Office Math : showing;live presentations on the Internet -Oracle Open Office Math : showing;toolbars -Oracle Open Office Math : signing documents with digital signatures -Oracle Open Office Math : similar to relations -Oracle Open Office Math : similarity search -Oracle Open Office Math : simple handles (Writer) -Oracle Open Office Math : simplified Chinese -Oracle Open Office Math : simplified Chinese;translating to traditional Chinese -Oracle Open Office Math : sine function -Oracle Open Office Math : single brackets without group function -Oracle Open Office Math : single sign on options -Oracle Open Office Math : single-line spacing in text -Oracle Open Office Math : sizes -Oracle Open Office Math : sizes;draw objects -Oracle Open Office Math : sizes;of fonts in Oracle Open Office Math -Oracle Open Office Math : sizes;pictures -Oracle Open Office Math : slanting draw objects -Oracle Open Office Math : slash division sign -Oracle Open Office Math : small capitals -Oracle Open Office Math : small gaps -Oracle Open Office Math : small icons -Oracle Open Office Math : smart tag configuration -Oracle Open Office Math : smooth scrolling (Writer) -Oracle Open Office Math : smoothing filter -Oracle Open Office Math : snap grid defaults (Writer/Calc) -Oracle Open Office Math : snapping in presentations and drawings -Oracle Open Office Math : solarization filter -Oracle Open Office Math : sort lists -Oracle Open Office Math : sort lists;copying to in Calc -Oracle Open Office Math : sorting -Oracle Open Office Math : sorting;data in forms -Oracle Open Office Math : sorting;databases -Oracle Open Office Math : sound files -Oracle Open Office Math : spaces -Oracle Open Office Math : spaces;displaying (Writer) -Oracle Open Office Math : spaces;ignoring double -Oracle Open Office Math : spaces;inserting protected spaces -Oracle Open Office Math : spaces;showing protected spaces (Writer) -Oracle Open Office Math : spaces in formulas -Oracle Open Office Math : spacing -Oracle Open Office Math : spacing;between paragraphs in footnotes -Oracle Open Office Math : spacing;font effects -Oracle Open Office Math : spacing;formula elements -Oracle Open Office Math : spacing;lines and paragraphs -Oracle Open Office Math : spacing;tab stops in text documents -Oracle Open Office Math : spacing;tabs in presentations -Oracle Open Office Math : spadmin -Oracle Open Office Math : special characters -Oracle Open Office Math : speech bubbles -Oracle Open Office Math : speed of printing -Oracle Open Office Math : spellcheck -Oracle Open Office Math : spellcheck;activating for a language -Oracle Open Office Math : spellcheck;context menus -Oracle Open Office Math : spellcheck;default languages -Oracle Open Office Math : spellcheck;dialog -Oracle Open Office Math : spellcheck;dictionary of exceptions -Oracle Open Office Math : spellcheck;ignore list -Oracle Open Office Math : spin button creation -Oracle Open Office Math : spoolfiles with Xprinter -Oracle Open Office Math : spreadsheets -Oracle Open Office Math : spreadsheets;as databases (base) -Oracle Open Office Math : spreadsheets;copying areas to text documents -Oracle Open Office Math : spreadsheets;creating/opening -Oracle Open Office Math : spreadsheets;inserting charts -Oracle Open Office Math : spreadsheets;inserting database records -Oracle Open Office Math : spreadsheets;printing -Oracle Open Office Math : spreadsheets;saving -Oracle Open Office Math : spreadsheets;saving automatically -Oracle Open Office Math : spreadsheets;saving in other formats -Oracle Open Office Math : spreadsheets;sending as e-mail -Oracle Open Office Math : SQL -Oracle Open Office Math : SQL;definition -Oracle Open Office Math : SQL;DISTINCT parameter -Oracle Open Office Math : SQL;executing SQL commands -Oracle Open Office Math : SQL;executing SQL statements (Base) -Oracle Open Office Math : SQL;queries (Base) -Oracle Open Office Math : square brackets -Oracle Open Office Math : square drawings -Oracle Open Office Math : square roots -Oracle Open Office Math : stacks -Oracle Open Office Math : standard bar on/off -Oracle Open Office Math : standard filters in databases -Oracle Open Office Math : standard printer under UNIX -Oracle Open Office Math : start center -Oracle Open Office Math : start parameters -Oracle Open Office Math : status bar on/off -Oracle Open Office Math : stickers -Oracle Open Office Math : strikethrough -Oracle Open Office Math : strikethrough;characters -Oracle Open Office Math : strikethrough;font effects -Oracle Open Office Math : styles -Oracle Open Office Math : styles;'changed' message -Oracle Open Office Math : styles;copying between documents -Oracle Open Office Math : styles;keyboard shortcuts -Oracle Open Office Math : styles;organizing -Oracle Open Office Math : styles;printing styles used in a document -Oracle Open Office Math : styles;replacing automatically -Oracle Open Office Math : Styles and Formatting window -Oracle Open Office Math : Styles and Formatting window;docking -Oracle Open Office Math : subforms -Oracle Open Office Math : subforms;creating -Oracle Open Office Math : subforms;description -Oracle Open Office Math : submitting forms -Oracle Open Office Math : subscripts -Oracle Open Office Math : subset set operators -Oracle Open Office Math : subtraction signs -Oracle Open Office Math : suffixes in file formats -Oracle Open Office Math : sum range example -Oracle Open Office Math : summation -Oracle Open Office Math : superscripts -Oracle Open Office Math : superset set operators -Oracle Open Office Math : support on the Web -Oracle Open Office Math : symbols -Oracle Open Office Math : symbols;adding in Oracle Open Office Math -Oracle Open Office Math : symbols;entering in Oracle Open Office Math -Oracle Open Office Math : symbols;for complex numbers -Oracle Open Office Math : synchronizing -Oracle Open Office Math : synchronizing;labels and business cards -Oracle Open Office Math : synchronizing;Pocket PC and Oracle Open Office formats -Oracle Open Office Math : system address book registration -Oracle Open Office Math : tab stops -Oracle Open Office Math : tab stops;displaying (Writer) -Oracle Open Office Math : tab stops;inserting and editing -Oracle Open Office Math : tab stops;regular expressions -Oracle Open Office Math : tab stops;setting in sheets -Oracle Open Office Math : tab stops;settings -Oracle Open Office Math : tab stops;spacing in presentations -Oracle Open Office Math : tab stops;spacing in text documents -Oracle Open Office Math : table controls -Oracle Open Office Math : table controls;form functions -Oracle Open Office Math : table controls;keyboard-only edit mode -Oracle Open Office Math : table controls;properties -Oracle Open Office Math : table views of databases -Oracle Open Office Math : Table Wizard (Base) -Oracle Open Office Math : tables -Oracle Open Office Math : tables;inserting line breaks -Oracle Open Office Math : tables in databases -Oracle Open Office Math : tables in databases;access rights to (Base) -Oracle Open Office Math : tables in databases;adding to queries -Oracle Open Office Math : tables in databases;browsing and editing -Oracle Open Office Math : tables in databases;copying database tables (Base) -Oracle Open Office Math : tables in databases;creating -Oracle Open Office Math : tables in databases;creating in design view (manually) -Oracle Open Office Math : tables in databases;importing text formats (Base) -Oracle Open Office Math : tables in databases;joining for queries (Base) -Oracle Open Office Math : tables in databases;printing queries (Base) -Oracle Open Office Math : tables in databases;relations (Base) -Oracle Open Office Math : tables in databases;searching -Oracle Open Office Math : tables in spreadsheets -Oracle Open Office Math : tables in spreadsheets;copying data to other applications -Oracle Open Office Math : tables in spreadsheets;defining borders -Oracle Open Office Math : tables in spreadsheets;value highlighting -Oracle Open Office Math : tables in text -Oracle Open Office Math : tables in text;captions -Oracle Open Office Math : tables in text;creating automatically -Oracle Open Office Math : tables in text;default settings -Oracle Open Office Math : tables in text;defining borders -Oracle Open Office Math : tables in text;displaying -Oracle Open Office Math : tables in text;printing -Oracle Open Office Math : tabs -Oracle Open Office Math : tabs;displaying sheet tabs -Oracle Open Office Math : tags -Oracle Open Office Math : tags;definition -Oracle Open Office Math : tags;META tags -Oracle Open Office Math : tangent function -Oracle Open Office Math : templates -Oracle Open Office Math : templates;agendas -Oracle Open Office Math : templates;changing basic fonts -Oracle Open Office Math : templates;database reports -Oracle Open Office Math : templates;deleting -Oracle Open Office Math : templates;editing and saving -Oracle Open Office Math : templates;faxes -Oracle Open Office Math : templates;importing and exporting -Oracle Open Office Math : templates;letters -Oracle Open Office Math : templates;new documents from templates -Oracle Open Office Math : templates;opening documents with -Oracle Open Office Math : templates;organizing -Oracle Open Office Math : terminology -Oracle Open Office Math : terminology;general glossary -Oracle Open Office Math : terminology;Internet glossary -Oracle Open Office Math : testing XML filters -Oracle Open Office Math : text -Oracle Open Office Math : text;animating -Oracle Open Office Math : text;Asian layout -Oracle Open Office Math : text;bold -Oracle Open Office Math : text;coloring -Oracle Open Office Math : text;copying by drag and drop -Oracle Open Office Math : text;CTL languages -Oracle Open Office Math : text;drawing pictures -Oracle Open Office Math : text;font effects -Oracle Open Office Math : text;font sizes -Oracle Open Office Math : text;font styles -Oracle Open Office Math : text;fonts and formats -Oracle Open Office Math : text;Fontwork icons -Oracle Open Office Math : text;hyperlinks -Oracle Open Office Math : text;inserting special characters -Oracle Open Office Math : text;italics -Oracle Open Office Math : text;kerning -Oracle Open Office Math : text;language selection -Oracle Open Office Math : text;line spacing -Oracle Open Office Math : text;overwriting or inserting -Oracle Open Office Math : text;printing in black -Oracle Open Office Math : text;replacing with format -Oracle Open Office Math : text;selection modes -Oracle Open Office Math : text;shadowed -Oracle Open Office Math : text;text/draw objects -Oracle Open Office Math : text attributes -Oracle Open Office Math : text attributes;hyperlinks -Oracle Open Office Math : text attributes;undoing -Oracle Open Office Math : text boxes -Oracle Open Office Math : text boxes;form functions -Oracle Open Office Math : text boxes;positioning -Oracle Open Office Math : text breaks in cells -Oracle Open Office Math : text colors for better accessibility -Oracle Open Office Math : text databases (Base) -Oracle Open Office Math : text documents -Oracle Open Office Math : text documents;creating/opening -Oracle Open Office Math : text documents;importing/exporting -Oracle Open Office Math : text documents;inserting spreadsheet cells -Oracle Open Office Math : text documents;print settings -Oracle Open Office Math : text documents;printing -Oracle Open Office Math : text documents;saving -Oracle Open Office Math : text documents;saving automatically -Oracle Open Office Math : text documents;saving in other formats -Oracle Open Office Math : text documents;sending as e-mail -Oracle Open Office Math : text effects -Oracle Open Office Math : text flow -Oracle Open Office Math : text flow;in cells -Oracle Open Office Math : text formats -Oracle Open Office Math : text formats;databases -Oracle Open Office Math : text formats;pasting -Oracle Open Office Math : text input fields -Oracle Open Office Math : text layout for special languages -Oracle Open Office Math : text mode in Oracle Open Office Math -Oracle Open Office Math : text objects -Oracle Open Office Math : text objects;alignment -Oracle Open Office Math : text objects;draw functions -Oracle Open Office Math : text objects;fonts -Oracle Open Office Math : text objects;in presentations and drawings -Oracle Open Office Math : text overflow in spreadsheet cells -Oracle Open Office Math : text strings -Oracle Open Office Math : text strings;entering in Oracle Open Office Math -Oracle Open Office Math : text, see also text documents, paragraphs and characters -Oracle Open Office Math : TextArt, see Fontwork -Oracle Open Office Math : textures -Oracle Open Office Math : textures;inserting from Gallery -Oracle Open Office Math : textures;on chart bars -Oracle Open Office Math : Thai -Oracle Open Office Math : Thai;entering text -Oracle Open Office Math : Thai;language settings -Oracle Open Office Math : there exists symbol -Oracle Open Office Math : thesaurus -Oracle Open Office Math : thesaurus;activating for a language -Oracle Open Office Math : ticker text -Oracle Open Office Math : tilde as attribute -Oracle Open Office Math : time fields -Oracle Open Office Math : time fields;form functions -Oracle Open Office Math : times -Oracle Open Office Math : times;inserting when printing presentations -Oracle Open Office Math : times, formats -Oracle Open Office Math : tips -Oracle Open Office Math : tips;extended tips in Help -Oracle Open Office Math : title rows -Oracle Open Office Math : title rows;printing in Oracle Open Office Math -Oracle Open Office Math : titles -Oracle Open Office Math : titles;changing -Oracle Open Office Math : titles;editing in charts -Oracle Open Office Math : titles;font effects -Oracle Open Office Math : titles;formatting automatically -Oracle Open Office Math : titles;objects -Oracle Open Office Math : toolbars -Oracle Open Office Math : toolbars;adding buttons -Oracle Open Office Math : toolbars;docking/undocking -Oracle Open Office Math : toolbars;Form Navigation bar -Oracle Open Office Math : toolbars;viewing/closing -Oracle Open Office Math : tools bar -Oracle Open Office Math : tooltips -Oracle Open Office Math : tooltips;extended tips -Oracle Open Office Math : tooltips;help -Oracle Open Office Math : toward relation -Oracle Open Office Math : traditional Chinese -Oracle Open Office Math : traditional Chinese;translating to simplified chinese -Oracle Open Office Math : transparency -Oracle Open Office Math : transparency;areas -Oracle Open Office Math : transparency;off for faster printing -Oracle Open Office Math : transparency;saving -Oracle Open Office Math : transparent character as attribute -Oracle Open Office Math : tree view of Help -Oracle Open Office Math : trigonometrical functions -Oracle Open Office Math : triple dot attribute -Oracle Open Office Math : typefaces -Oracle Open Office Math : typefaces;adding under UNIX -Oracle Open Office Math : typefaces;formats -Oracle Open Office Math : typography -Oracle Open Office Math : typography;Asian -Oracle Open Office Math : unary operators -Oracle Open Office Math : unary operators;list of -Oracle Open Office Math : unary operators -Oracle Open Office Math : underline attribute -Oracle Open Office Math : underlining -Oracle Open Office Math : underlining;AutoFormat function -Oracle Open Office Math : underlining;characters -Oracle Open Office Math : underlining;text -Oracle Open Office Math : undocking windows -Oracle Open Office Math : undoing -Oracle Open Office Math : undoing;direct formatting -Oracle Open Office Math : undoing;editing -Oracle Open Office Math : undoing;number of steps -Oracle Open Office Math : unequal sign -Oracle Open Office Math : ungrouping groups -Oracle Open Office Math : union of sets -Oracle Open Office Math : units -Oracle Open Office Math : units;converting -Oracle Open Office Math : units;measurement units -Oracle Open Office Math : universal quantifier symbol -Oracle Open Office Math : UNO components -Oracle Open Office Math : UNO components;Extension Manager -Oracle Open Office Math : UNO components;integrating new -Oracle Open Office Math : up arrow symbol -Oracle Open Office Math : update options -Oracle Open Office Math : updates -Oracle Open Office Math : updates;checking automatically -Oracle Open Office Math : updates;checking manually -Oracle Open Office Math : updating -Oracle Open Office Math : updating;fields and charts, automatically (Writer) -Oracle Open Office Math : updating;links in text documents -Oracle Open Office Math : updating;links, on opening -Oracle Open Office Math : updating;templates -Oracle Open Office Math : upper limits -Oracle Open Office Math : URL -Oracle Open Office Math : URL;changing hyperlink URLs -Oracle Open Office Math : URL;definition -Oracle Open Office Math : URL;in pictures -Oracle Open Office Math : URL;saving absolute/relative paths -Oracle Open Office Math : URL;turning off URL recognition -Oracle Open Office Math : user data -Oracle Open Office Math : user data;input -Oracle Open Office Math : user data;removing when saving -Oracle Open Office Math : user feedback -Oracle Open Office Math : user feedback;automatically -Oracle Open Office Math : user-defined dictionaries -Oracle Open Office Math : user-defined dictionaries;creating -Oracle Open Office Math : user-defined dictionaries;dictionary of exceptions -Oracle Open Office Math : user-defined dictionaries;editing -Oracle Open Office Math : user-defined operators -Oracle Open Office Math : user-defined operators;general -Oracle Open Office Math : user-defined operators;unary and binary -Oracle Open Office Math : user-defined styles -Oracle Open Office Math : user-defined styles;automatically replacing -Oracle Open Office Math : UTF-8/UCS2 support -Oracle Open Office Math : values -Oracle Open Office Math : values;absolute -Oracle Open Office Math : values;rounded as shown (Calc) -Oracle Open Office Math : variables -Oracle Open Office Math : variables;for paths -Oracle Open Office Math : variables;with right exponents -Oracle Open Office Math : VBA code -Oracle Open Office Math : VBA code;loading/saving documents with VBA code -Oracle Open Office Math : vector arrows as attributes -Oracle Open Office Math : version management -Oracle Open Office Math : version numbers of documents -Oracle Open Office Math : versions -Oracle Open Office Math : versions;comparing documents -Oracle Open Office Math : versions;file saving as, restriction -Oracle Open Office Math : versions;merging document versions -Oracle Open Office Math : versions;of a document -Oracle Open Office Math : versions;Oracle Open Office -Oracle Open Office Math : vertical arrangement of elements -Oracle Open Office Math : vertical bars -Oracle Open Office Math : vertical callouts -Oracle Open Office Math : vertical dots symbol -Oracle Open Office Math : vertical elements -Oracle Open Office Math : vertical scrollbars (Writer) -Oracle Open Office Math : vertical text boxes -Oracle Open Office Math : videos -Oracle Open Office Math : viewing -Oracle Open Office Math : viewing;databases -Oracle Open Office Math : viewing;file properties -Oracle Open Office Math : viewing;Oracle Open Office documents in Internet Explorer -Oracle Open Office Math : viewing;toolbars -Oracle Open Office Math : views -Oracle Open Office Math : views;creating database views (Base) -Oracle Open Office Math : views;defaults -Oracle Open Office Math : views;full screen -Oracle Open Office Math : views;icons -Oracle Open Office Math : views;maximum size -Oracle Open Office Math : views;scaling -Oracle Open Office Math : views;zooming out Oracle Open Office Math -Oracle Open Office Math : Visual Basic for Applications -Oracle Open Office Math : Visual Basic for Applications;loading/saving documents with VBA code -Oracle Open Office Math : watermarks -Oracle Open Office Math : web documents -Oracle Open Office Math : web documents;XForms -Oracle Open Office Math : Web support -Oracle Open Office Math : WebCast export -Oracle Open Office Math : WebDAV over HTTPS -Oracle Open Office Math : weierstrass p symbol -Oracle Open Office Math : whole numbers -Oracle Open Office Math : wide circumflex attribute -Oracle Open Office Math : wide tilde attribute -Oracle Open Office Math : wide vector arrow attribute -Oracle Open Office Math : widowed brackets -Oracle Open Office Math : windows -Oracle Open Office Math : windows;docking -Oracle Open Office Math : windows;docking definition -Oracle Open Office Math : windows;hiding/showing/docking -Oracle Open Office Math : windows;new -Oracle Open Office Math : wizards -Oracle Open Office Math : wizards;agendas -Oracle Open Office Math : wizards;database queries -Oracle Open Office Math : wizards;database tables (Base) -Oracle Open Office Math : wizards;databases (Base) -Oracle Open Office Math : wizards;document converter -Oracle Open Office Math : wizards;Euro Converter -Oracle Open Office Math : wizards;faxes -Oracle Open Office Math : wizards;forms -Oracle Open Office Math : wizards;letters -Oracle Open Office Math : wizards;macros (Base) -Oracle Open Office Math : wizards;overview -Oracle Open Office Math : wizards;presentations -Oracle Open Office Math : wizards;reports -Oracle Open Office Math : Word documents -Oracle Open Office Math : Word documents;compatibility -Oracle Open Office Math : Word documents;saving as -Oracle Open Office Math : WordArt, see Fontwork -Oracle Open Office Math : words -Oracle Open Office Math : words;automatically replacing -Oracle Open Office Math : words;wrapping in cells -Oracle Open Office Math : words;wrapping in CTL -Oracle Open Office Math : working directory change -Oracle Open Office Math : wrapping text -Oracle Open Office Math : wrapping text;in cells -Oracle Open Office Math : wrapping text;in formulas -Oracle Open Office Math : write protection on/off -Oracle Open Office Math : writing aids options -Oracle Open Office Math : WYSIWYG in fonts lists -Oracle Open Office Math : XForms -Oracle Open Office Math : XForms;adding/editing/deleting/organizing namespaces -Oracle Open Office Math : XForms;conditions -Oracle Open Office Math : XForms;opening/editing -Oracle Open Office Math : XML converters -Oracle Open Office Math : XML file formats -Oracle Open Office Math : XML filters -Oracle Open Office Math : XML filters;creating/testing -Oracle Open Office Math : XML filters;saving as package/installing/deleting -Oracle Open Office Math : XML filters;settings -Oracle Open Office Math : XML Forms, see XForms -Oracle Open Office Math : XSLT filters, see also XML filters -Oracle Open Office Math : years -Oracle Open Office Math : years;2-digit options -Oracle Open Office Math : zero values -Oracle Open Office Math : zero values;displaying (Calc) -Oracle Open Office Math : zooming -Oracle Open Office Math : zooming;page views -Oracle Open Office Math : zooming;pictures -Oracle Open Office Math : zooming;status bar -Oracle Open Office Math : zooming in on formula display -Oracle Open Office Math : zooming out on formula display -Oracle Open Office Writer : 3D charts -Oracle Open Office Writer : 3D text creation -Oracle Open Office Writer : abbreviation replacement -Oracle Open Office Writer : abbreviations -Oracle Open Office Writer : absolute hyperlinks -Oracle Open Office Writer : absolute saving of URLs -Oracle Open Office Writer : accents -Oracle Open Office Writer : Access databases (base) -Oracle Open Office Writer : access rights for database tables (Base) -Oracle Open Office Writer : accessibility -Oracle Open Office Writer : accessibility;general shortcuts -Oracle Open Office Writer : accessibility;options -Oracle Open Office Writer : accessibility;Oracle Open Office assistive technology -Oracle Open Office Writer : accessibility;Oracle Open Office features -Oracle Open Office Writer : accessibility;Oracle Open Office Writer -Oracle Open Office Writer : activating -Oracle Open Office Writer : activating;context menus -Oracle Open Office Writer : activating;Error Report Tool -Oracle Open Office Writer : activating;extended help tips -Oracle Open Office Writer : activating;plug-ins -Oracle Open Office Writer : ActiveX control -Oracle Open Office Writer : Adabas D databases (base) -Oracle Open Office Writer : add-ons, see UNO components -Oracle Open Office Writer : additional selection mode -Oracle Open Office Writer : address books -Oracle Open Office Writer : address books;exchanging -Oracle Open Office Writer : address books;LDAP server (Base) -Oracle Open Office Writer : address books;registering -Oracle Open Office Writer : address labels from databases -Oracle Open Office Writer : adjusting page margins and cell widths -Oracle Open Office Writer : ADO databases (Base) -Oracle Open Office Writer : Agenda Wizard -Oracle Open Office Writer : aging filter -Oracle Open Office Writer : aligning -Oracle Open Office Writer : aligning;2D charts -Oracle Open Office Writer : aligning;cells -Oracle Open Office Writer : aligning;objects -Oracle Open Office Writer : aligning;paragraphs -Oracle Open Office Writer : aligning;tables in text -Oracle Open Office Writer : aligning;text objects -Oracle Open Office Writer : aligning;titles in charts -Oracle Open Office Writer : alphabetical indexes -Oracle Open Office Writer : alternative fonts -Oracle Open Office Writer : ampersand symbol, see also operators -Oracle Open Office Writer : anchors -Oracle Open Office Writer : anchors;changing -Oracle Open Office Writer : anchors;displaying (Calc) -Oracle Open Office Writer : anchors;options -Oracle Open Office Writer : anchors;types/positions for draw objects -Oracle Open Office Writer : animations -Oracle Open Office Writer : animations;accessibility options -Oracle Open Office Writer : animations;text -Oracle Open Office Writer : appearance options -Oracle Open Office Writer : Arabic -Oracle Open Office Writer : Arabic;entering text -Oracle Open Office Writer : Arabic;language settings -Oracle Open Office Writer : area charts -Oracle Open Office Writer : areas -Oracle Open Office Writer : areas;bitmap patterns -Oracle Open Office Writer : areas;hatched/dotted -Oracle Open Office Writer : areas;shadows -Oracle Open Office Writer : areas;slanting -Oracle Open Office Writer : areas;styles -Oracle Open Office Writer : areas;transparency -Oracle Open Office Writer : arguments in command line -Oracle Open Office Writer : arithmetical operators in formulas -Oracle Open Office Writer : arranging -Oracle Open Office Writer : arranging;headings -Oracle Open Office Writer : arranging;objects -Oracle Open Office Writer : arrows -Oracle Open Office Writer : arrows;defining arrow heads -Oracle Open Office Writer : arrows;defining arrow lines -Oracle Open Office Writer : arrows;drawing in text -Oracle Open Office Writer : ASCII -Oracle Open Office Writer : ASCII;definition -Oracle Open Office Writer : Asian languages -Oracle Open Office Writer : Asian languages;enabling -Oracle Open Office Writer : Asian languages;search options -Oracle Open Office Writer : Asian languages;sorting paragraphs/table rows -Oracle Open Office Writer : Asian Phonetic Guide -Oracle Open Office Writer : Asian typography -Oracle Open Office Writer : aspect ratio -Oracle Open Office Writer : aspect ratio;resizing objects -Oracle Open Office Writer : assigning scripts -Oracle Open Office Writer : assistive technology in Oracle Open Office -Oracle Open Office Writer : attaching toolbars -Oracle Open Office Writer : attachments in e-mails -Oracle Open Office Writer : audio -Oracle Open Office Writer : auto reloading HTML documents -Oracle Open Office Writer : AutoAbstract function for sending text to presentations -Oracle Open Office Writer : AutoCaption function in Oracle Open Office Writer -Oracle Open Office Writer : AutoComplete function in text and list boxes -Oracle Open Office Writer : AutoCorrect function -Oracle Open Office Writer : AutoCorrect function;adding exceptions -Oracle Open Office Writer : AutoCorrect function;context menu -Oracle Open Office Writer : AutoCorrect function;options -Oracle Open Office Writer : AutoCorrect function;pictures and frames -Oracle Open Office Writer : AutoCorrect function;quotes -Oracle Open Office Writer : AutoCorrect function;replacement table -Oracle Open Office Writer : AutoCorrect function;smart tags -Oracle Open Office Writer : AutoCorrect function;switching on and off in Calc -Oracle Open Office Writer : AutoCorrect function;turning off -Oracle Open Office Writer : AutoCorrect function;URL recognition -Oracle Open Office Writer : AutoCorrect function;word completion -Oracle Open Office Writer : AutoFormat function -Oracle Open Office Writer : AutoFormat function;applying to text tables -Oracle Open Office Writer : AutoFormat function;headings -Oracle Open Office Writer : AutoFormat function;switching on and off -Oracle Open Office Writer : AutoFormat function;text documents -Oracle Open Office Writer : automatic bullets/numbers -Oracle Open Office Writer : automatic bullets/numbers;AutoCorrect function -Oracle Open Office Writer : automatic captions (Writer) -Oracle Open Office Writer : automatic changes on/off -Oracle Open Office Writer : automatic control focus -Oracle Open Office Writer : automatic heading formatting -Oracle Open Office Writer : automatic hyperlink formatting -Oracle Open Office Writer : automatic hyphenation in text -Oracle Open Office Writer : automatic line breaks -Oracle Open Office Writer : automatic lines/borders in text -Oracle Open Office Writer : automatic numbering -Oracle Open Office Writer : automatic numbering;of objects -Oracle Open Office Writer : automatic saving -Oracle Open Office Writer : automatic spellcheck -Oracle Open Office Writer : automatic word completion -Oracle Open Office Writer : AutoPilots, see wizards -Oracle Open Office Writer : AutoText -Oracle Open Office Writer : AutoValue (Base) -Oracle Open Office Writer : averages in charts -Oracle Open Office Writer : axes -Oracle Open Office Writer : axes;better scaling -Oracle Open Office Writer : axes;formatting -Oracle Open Office Writer : axes;formatting grids -Oracle Open Office Writer : axes;inserting grids -Oracle Open Office Writer : axes;interval marks -Oracle Open Office Writer : axes;showing axes in charts -Oracle Open Office Writer : axes in charts -Oracle Open Office Writer : backgrounds -Oracle Open Office Writer : backgrounds;defining colors/pictures -Oracle Open Office Writer : backgrounds;different pages -Oracle Open Office Writer : backgrounds;frames/sections/indexes -Oracle Open Office Writer : backgrounds;inserting from Gallery -Oracle Open Office Writer : backgrounds;printing -Oracle Open Office Writer : backgrounds;text objects -Oracle Open Office Writer : backing window -Oracle Open Office Writer : backups -Oracle Open Office Writer : backups;automatic -Oracle Open Office Writer : backups;documents -Oracle Open Office Writer : bar charts -Oracle Open Office Writer : Basic -Oracle Open Office Writer : Basic;fonts for source display -Oracle Open Office Writer : Basic;programming -Oracle Open Office Writer : Basic;recording macros -Oracle Open Office Writer : basic fonts -Oracle Open Office Writer : behavior of rows/columns -Oracle Open Office Writer : Bézier curves -Oracle Open Office Writer : Bézier curves;control points in presentations -Oracle Open Office Writer : bi-directional writing -Oracle Open Office Writer : bibliographies -Oracle Open Office Writer : binding space -Oracle Open Office Writer : bitmaps -Oracle Open Office Writer : bitmaps;inserting and editing -Oracle Open Office Writer : bitmaps;off for faster printing -Oracle Open Office Writer : bitmaps;patterns -Oracle Open Office Writer : black and white printing -Oracle Open Office Writer : black printing in Calc -Oracle Open Office Writer : blank pages with alternating page styles -Oracle Open Office Writer : block protect, see also widows or orphans -Oracle Open Office Writer : block selection mode -Oracle Open Office Writer : blocks of text -Oracle Open Office Writer : bold -Oracle Open Office Writer : bold;AutoFormat function -Oracle Open Office Writer : bold;formatting while typing -Oracle Open Office Writer : bold;text -Oracle Open Office Writer : book previews -Oracle Open Office Writer : book view -Oracle Open Office Writer : booklet printing -Oracle Open Office Writer : bookmarks -Oracle Open Office Writer : bookmarks;Help -Oracle Open Office Writer : bookmarks;inserting -Oracle Open Office Writer : bookmarks;positioning cursor -Oracle Open Office Writer : borders -Oracle Open Office Writer : borders;arranging -Oracle Open Office Writer : borders;automatic drawing on/off -Oracle Open Office Writer : borders;cells on screen (Calc) -Oracle Open Office Writer : borders;for footnotes/endnotes -Oracle Open Office Writer : borders;for headers/footers -Oracle Open Office Writer : borders;for objects -Oracle Open Office Writer : borders;for pages -Oracle Open Office Writer : borders;for paragraphs -Oracle Open Office Writer : borders;for tables -Oracle Open Office Writer : borders;for text tables -Oracle Open Office Writer : borders;shadows -Oracle Open Office Writer : borders;table boundaries (Writer) -Oracle Open Office Writer : borders, see also frames -Oracle Open Office Writer : bound fields -Oracle Open Office Writer : bound fields;controls -Oracle Open Office Writer : boundaries of tables (Writer) -Oracle Open Office Writer : break display (Writer) -Oracle Open Office Writer : brochures -Oracle Open Office Writer : brochures;printing individual -Oracle Open Office Writer : brochures;printing several -Oracle Open Office Writer : brush for copying styles -Oracle Open Office Writer : bubble charts -Oracle Open Office Writer : build numbers of Oracle Open Office -Oracle Open Office Writer : bullet lists -Oracle Open Office Writer : bullet lists;changing levels -Oracle Open Office Writer : bullet lists;creating while typing -Oracle Open Office Writer : bullet lists;formatting options -Oracle Open Office Writer : bullet lists;interrupting -Oracle Open Office Writer : bullet lists;turning on and off -Oracle Open Office Writer : bullets -Oracle Open Office Writer : bullets;adding and editing -Oracle Open Office Writer : bullets;paragraphs -Oracle Open Office Writer : bullets;replacing -Oracle Open Office Writer : bullets;turning off -Oracle Open Office Writer : bullets;using automatically -Oracle Open Office Writer : business cards -Oracle Open Office Writer : business cards;creating and synchronizing -Oracle Open Office Writer : business cards;using templates -Oracle Open Office Writer : button bars, see toolbars -Oracle Open Office Writer : buttons -Oracle Open Office Writer : buttons;adding push buttons -Oracle Open Office Writer : buttons;big/small -Oracle Open Office Writer : buttons;editing hyperlink buttons -Oracle Open Office Writer : buttons;form functions -Oracle Open Office Writer : buttons;toolbars -Oracle Open Office Writer : cache for graphics -Oracle Open Office Writer : calculating -Oracle Open Office Writer : calculating;across multiple text tables -Oracle Open Office Writer : calculating;formulas/mean values -Oracle Open Office Writer : calculating;in text -Oracle Open Office Writer : calculating;in text tables -Oracle Open Office Writer : calculating;iterative references (Calc) -Oracle Open Office Writer : calculating;regression curves -Oracle Open Office Writer : calculating;sums in text tables -Oracle Open Office Writer : callouts -Oracle Open Office Writer : callouts;drawings -Oracle Open Office Writer : capital letters -Oracle Open Office Writer : capital letters;AutoCorrect function -Oracle Open Office Writer : capital letters;avoiding after specific abbreviations -Oracle Open Office Writer : capital letters;changing to small letters -Oracle Open Office Writer : capital letters;changing to small letters after periods -Oracle Open Office Writer : capital letters;font effects -Oracle Open Office Writer : capital letters;starting paragraphs -Oracle Open Office Writer : captions -Oracle Open Office Writer : captions;adding chapter numbers -Oracle Open Office Writer : captions;automatic captions (Writer) -Oracle Open Office Writer : captions;inserting and editing -Oracle Open Office Writer : captions;tables/pictures/frames/OLE objects (Writer) -Oracle Open Office Writer : captions, see also labels/callouts -Oracle Open Office Writer : cascading update (Base) -Oracle Open Office Writer : case sensitivity -Oracle Open Office Writer : case sensitivity;comparing cell contents (Calc) -Oracle Open Office Writer : case sensitivity;searching -Oracle Open Office Writer : cell merges -Oracle Open Office Writer : cells -Oracle Open Office Writer : cells;adapting the width by keyboard -Oracle Open Office Writer : cells;aligning -Oracle Open Office Writer : cells;backgrounds -Oracle Open Office Writer : cells;borders in text tables -Oracle Open Office Writer : cells;calculating sums -Oracle Open Office Writer : cells;coloring (Calc) -Oracle Open Office Writer : cells;cursor positions after input (Calc) -Oracle Open Office Writer : cells;enlarging and reducing in text tables -Oracle Open Office Writer : cells;formatting without effect (Calc) -Oracle Open Office Writer : cells;inserting from spreadsheets -Oracle Open Office Writer : cells;line breaks -Oracle Open Office Writer : cells;linked to controls -Oracle Open Office Writer : cells;merging/splitting -Oracle Open Office Writer : cells;number of -Oracle Open Office Writer : cells;pasting -Oracle Open Office Writer : cells;protecting/unprotecting -Oracle Open Office Writer : cells;resetting formats -Oracle Open Office Writer : cells;showing grid lines (Calc) -Oracle Open Office Writer : centered text -Oracle Open Office Writer : centering -Oracle Open Office Writer : centering;images on HTML pages -Oracle Open Office Writer : centering;text frames on pages -Oracle Open Office Writer : centimeters -Oracle Open Office Writer : central documents -Oracle Open Office Writer : certificates -Oracle Open Office Writer : changes -Oracle Open Office Writer : changes;accepting or rejecting -Oracle Open Office Writer : changes;automatic -Oracle Open Office Writer : changes;comparing to original -Oracle Open Office Writer : changes;protecting -Oracle Open Office Writer : changes;recording -Oracle Open Office Writer : changes;review function -Oracle Open Office Writer : changes;showing -Oracle Open Office Writer : changing -Oracle Open Office Writer : changing;bulleting symbols -Oracle Open Office Writer : changing;cases of text -Oracle Open Office Writer : changing;document titles -Oracle Open Office Writer : changing;field shadings -Oracle Open Office Writer : changing;fields, into text -Oracle Open Office Writer : changing;file associations in Setup program -Oracle Open Office Writer : changing;icon sizes -Oracle Open Office Writer : changing;indents -Oracle Open Office Writer : changing;links -Oracle Open Office Writer : changing;outline levels -Oracle Open Office Writer : changing;page backgrounds -Oracle Open Office Writer : changing;starting numbers in lists -Oracle Open Office Writer : changing;work directory -Oracle Open Office Writer : changing, see also editing and replacing -Oracle Open Office Writer : chapter names in headers -Oracle Open Office Writer : chapter numbering -Oracle Open Office Writer : chapter numbers in captions -Oracle Open Office Writer : character styles -Oracle Open Office Writer : character styles;language selection -Oracle Open Office Writer : character styles;style categories -Oracle Open Office Writer : characters -Oracle Open Office Writer : characters;alternative fonts -Oracle Open Office Writer : characters;Asian layout -Oracle Open Office Writer : characters;bold -Oracle Open Office Writer : characters;coloring -Oracle Open Office Writer : characters;counting -Oracle Open Office Writer : characters;displaying only on screen (Writer) -Oracle Open Office Writer : characters;enabling CTL and Asian characters -Oracle Open Office Writer : characters;finding all -Oracle Open Office Writer : characters;font effects -Oracle Open Office Writer : characters;fonts and formats -Oracle Open Office Writer : characters;hyperlinks -Oracle Open Office Writer : characters;italics -Oracle Open Office Writer : characters;language selection -Oracle Open Office Writer : characters;shadowed -Oracle Open Office Writer : characters;spacing -Oracle Open Office Writer : characters;special -Oracle Open Office Writer : characters;subscript and superscript -Oracle Open Office Writer : characters;underlining -Oracle Open Office Writer : characters;uppercase or lowercase -Oracle Open Office Writer : charcoal sketches filter -Oracle Open Office Writer : chart legends -Oracle Open Office Writer : chart legends;hiding -Oracle Open Office Writer : chart legends;showing icons with labels -Oracle Open Office Writer : chart types -Oracle Open Office Writer : chart types;area -Oracle Open Office Writer : chart types;bubble -Oracle Open Office Writer : chart types;column and bar -Oracle Open Office Writer : chart types;column and line -Oracle Open Office Writer : chart types;line -Oracle Open Office Writer : chart types;net -Oracle Open Office Writer : chart types;pie/donut -Oracle Open Office Writer : chart types;stock -Oracle Open Office Writer : chart types;XY (scatter) -Oracle Open Office Writer : charts -Oracle Open Office Writer : charts;3D views -Oracle Open Office Writer : charts;aligning -Oracle Open Office Writer : charts;arranging within stacks -Oracle Open Office Writer : charts;bars with textures -Oracle Open Office Writer : charts;borders -Oracle Open Office Writer : charts;choosing chart types -Oracle Open Office Writer : charts;colors -Oracle Open Office Writer : charts;copying from Calc into Writer -Oracle Open Office Writer : charts;copying with link to source cell range -Oracle Open Office Writer : charts;data labels -Oracle Open Office Writer : charts;displaying (Calc) -Oracle Open Office Writer : charts;editing axes -Oracle Open Office Writer : charts;editing data -Oracle Open Office Writer : charts;editing legends -Oracle Open Office Writer : charts;editing titles -Oracle Open Office Writer : charts;formatting areas -Oracle Open Office Writer : charts;formatting floors -Oracle Open Office Writer : charts;formatting walls -Oracle Open Office Writer : charts;inserting -Oracle Open Office Writer : charts;labeling -Oracle Open Office Writer : charts;overview -Oracle Open Office Writer : charts;positioning axes -Oracle Open Office Writer : charts;properties -Oracle Open Office Writer : charts;reorganizing -Oracle Open Office Writer : charts;scaling axes -Oracle Open Office Writer : charts;scaling text -Oracle Open Office Writer : charts;shortcuts -Oracle Open Office Writer : charts;showing axes -Oracle Open Office Writer : charts;updating automatically (Writer) -Oracle Open Office Writer : check box creation -Oracle Open Office Writer : checking spelling -Oracle Open Office Writer : checking spelling;all languages -Oracle Open Office Writer : checking spelling;manually -Oracle Open Office Writer : checking spelling;while typing -Oracle Open Office Writer : Chinese writing systems -Oracle Open Office Writer : choosing printers -Oracle Open Office Writer : circle drawings -Oracle Open Office Writer : Client Side ImageMap -Oracle Open Office Writer : clipboard -Oracle Open Office Writer : clipboard;calculating in text -Oracle Open Office Writer : clipboard;cutting -Oracle Open Office Writer : clipboard;pasting -Oracle Open Office Writer : clipboard;pasting formatted/unformatted text -Oracle Open Office Writer : clipboard;selection clipboard -Oracle Open Office Writer : clipboard;Unix -Oracle Open Office Writer : closing -Oracle Open Office Writer : closing;documents -Oracle Open Office Writer : closing;toolbars -Oracle Open Office Writer : collaboration -Oracle Open Office Writer : color bar -Oracle Open Office Writer : colors -Oracle Open Office Writer : colors;adding -Oracle Open Office Writer : colors;appearance -Oracle Open Office Writer : colors;backgrounds -Oracle Open Office Writer : colors;charts -Oracle Open Office Writer : colors;fill format -Oracle Open Office Writer : colors;fonts -Oracle Open Office Writer : colors;grid lines and cells (Calc) -Oracle Open Office Writer : colors;models -Oracle Open Office Writer : colors;not printing -Oracle Open Office Writer : colors;printing in grayscale -Oracle Open Office Writer : colors;restriction (Calc) -Oracle Open Office Writer : colors;selection -Oracle Open Office Writer : column and line charts -Oracle Open Office Writer : column charts -Oracle Open Office Writer : column headers -Oracle Open Office Writer : column headers;displaying (Calc) -Oracle Open Office Writer : column headers;highlighting (Calc) -Oracle Open Office Writer : columns -Oracle Open Office Writer : columns;breaks in text tables -Oracle Open Office Writer : columns;inserting in tables -Oracle Open Office Writer : columns;inserting/deleting in tables by keyboard -Oracle Open Office Writer : columns;on text pages -Oracle Open Office Writer : columns;selecting -Oracle Open Office Writer : columns;setting with the mouse -Oracle Open Office Writer : combination charts -Oracle Open Office Writer : combo box creation -Oracle Open Office Writer : command button creation -Oracle Open Office Writer : command buttons, see push buttons -Oracle Open Office Writer : command line parameters -Oracle Open Office Writer : commands -Oracle Open Office Writer : commands;repeating -Oracle Open Office Writer : commands;SQL -Oracle Open Office Writer : comments -Oracle Open Office Writer : comments;displaying (Calc) -Oracle Open Office Writer : comments;inserting/editing/deleting/printing -Oracle Open Office Writer : comments;on changes -Oracle Open Office Writer : comments;printing in text -Oracle Open Office Writer : common terms -Oracle Open Office Writer : common terms;Chinese dictionary -Oracle Open Office Writer : common terms;glossaries -Oracle Open Office Writer : common terms;Internet glossary -Oracle Open Office Writer : comparisons -Oracle Open Office Writer : comparisons;document versions -Oracle Open Office Writer : comparisons;operators in default filter dialog -Oracle Open Office Writer : compatibility settings for MS Word import -Oracle Open Office Writer : complete screen view -Oracle Open Office Writer : completion of words -Oracle Open Office Writer : complex text layout -Oracle Open Office Writer : complex text layout;definition -Oracle Open Office Writer : complex text layout;enabling -Oracle Open Office Writer : complex text layout, see CTL -Oracle Open Office Writer : compose key to insert special characters -Oracle Open Office Writer : concatenation, see ampersand symbol -Oracle Open Office Writer : concordance files -Oracle Open Office Writer : concordance files;definition -Oracle Open Office Writer : concordance files;indexes -Oracle Open Office Writer : conditional separators -Oracle Open Office Writer : conditional styles -Oracle Open Office Writer : conditional text -Oracle Open Office Writer : conditional text;page counts -Oracle Open Office Writer : conditional text;setting up -Oracle Open Office Writer : conditions -Oracle Open Office Writer : conditions;in fields and sections -Oracle Open Office Writer : conditions;in number formats -Oracle Open Office Writer : conditions;items in Data Navigator -Oracle Open Office Writer : conditions;user data fields -Oracle Open Office Writer : Configuration Manager -Oracle Open Office Writer : configuring -Oracle Open Office Writer : configuring;fax icon -Oracle Open Office Writer : configuring;Oracle Open Office -Oracle Open Office Writer : configuring;toolbars -Oracle Open Office Writer : connections to data sources (Base) -Oracle Open Office Writer : contents protection -Oracle Open Office Writer : context menus -Oracle Open Office Writer : continuation pages -Oracle Open Office Writer : contour editor -Oracle Open Office Writer : contour wrap -Oracle Open Office Writer : control point display in presentations -Oracle Open Office Writer : controls -Oracle Open Office Writer : controls;activating in forms -Oracle Open Office Writer : controls;adding to documents -Oracle Open Office Writer : controls;arranging in forms -Oracle Open Office Writer : controls;arranging within stacks -Oracle Open Office Writer : controls;assigning data sources -Oracle Open Office Writer : controls;assigning macros (Basic) -Oracle Open Office Writer : controls;bound fields/list contents/linked cells -Oracle Open Office Writer : controls;events -Oracle Open Office Writer : controls;focus -Oracle Open Office Writer : controls;formatted fields -Oracle Open Office Writer : controls;grouping -Oracle Open Office Writer : controls;hidden -Oracle Open Office Writer : controls;inserting -Oracle Open Office Writer : controls;multi-line titles -Oracle Open Office Writer : controls;positions and sizes -Oracle Open Office Writer : controls;printing -Oracle Open Office Writer : controls;properties of form controls -Oracle Open Office Writer : controls;properties of table controls -Oracle Open Office Writer : controls;reference by SQL -Oracle Open Office Writer : controls;rich text control -Oracle Open Office Writer : controls;select mode -Oracle Open Office Writer : controls;showing (Writer) -Oracle Open Office Writer : converters -Oracle Open Office Writer : converters;Euro converter -Oracle Open Office Writer : converters;PostScript, UNIX -Oracle Open Office Writer : converters;XML -Oracle Open Office Writer : converting -Oracle Open Office Writer : converting;fields, into text -Oracle Open Office Writer : converting;Hangul/Hanja -Oracle Open Office Writer : converting;metrics -Oracle Open Office Writer : converting;Microsoft documents -Oracle Open Office Writer : converting;Oracle Open Office documents -Oracle Open Office Writer : converting;Pocket PC formats -Oracle Open Office Writer : converting;sections, into normal text -Oracle Open Office Writer : converting;text, into tables -Oracle Open Office Writer : copies -Oracle Open Office Writer : copies;printing -Oracle Open Office Writer : copies;removing line breaks -Oracle Open Office Writer : copying -Oracle Open Office Writer : copying;by drag and drop -Oracle Open Office Writer : copying;charts from Oracle Open Office Calc -Oracle Open Office Writer : copying;data from text documents -Oracle Open Office Writer : copying;datasource records in spreadsheets -Oracle Open Office Writer : copying;draw objects -Oracle Open Office Writer : copying;draw objects between documents -Oracle Open Office Writer : copying;formatting -Oracle Open Office Writer : copying;from data source view -Oracle Open Office Writer : copying;from Gallery -Oracle Open Office Writer : copying;in Unix -Oracle Open Office Writer : copying;pictures, between documents -Oracle Open Office Writer : copying;sheet areas, to text documents -Oracle Open Office Writer : copying;styles, by fill format mode -Oracle Open Office Writer : copying;styles, from selections -Oracle Open Office Writer : copying;text sections -Oracle Open Office Writer : copying;to Gallery -Oracle Open Office Writer : copyright for Oracle Open Office -Oracle Open Office Writer : corner roundings -Oracle Open Office Writer : counting words -Oracle Open Office Writer : crash reports -Oracle Open Office Writer : criteria of query design (Base) -Oracle Open Office Writer : cropping pictures -Oracle Open Office Writer : cross-references -Oracle Open Office Writer : cross-references;inserting and updating -Oracle Open Office Writer : cross-references;inserting with Navigator -Oracle Open Office Writer : cross-references;modifying -Oracle Open Office Writer : CTL -Oracle Open Office Writer : CTL;(not) wrapping words -Oracle Open Office Writer : CTL;complex text layout languages -Oracle Open Office Writer : CTL;definition -Oracle Open Office Writer : CTL;options -Oracle Open Office Writer : currencies -Oracle Open Office Writer : currencies;converters -Oracle Open Office Writer : currencies;format codes -Oracle Open Office Writer : currency field creation -Oracle Open Office Writer : currency formats -Oracle Open Office Writer : cursor -Oracle Open Office Writer : cursor;allowing in protected areas (Writer) -Oracle Open Office Writer : cursor;direct cursor -Oracle Open Office Writer : cursor;in read-only text -Oracle Open Office Writer : cursor;quickly moving to an object -Oracle Open Office Writer : curves -Oracle Open Office Writer : curves;editing points -Oracle Open Office Writer : curves;properties in line charts/XY charts -Oracle Open Office Writer : custom dictionaries -Oracle Open Office Writer : custom dictionaries;editing -Oracle Open Office Writer : custom dictionaries;removing words from -Oracle Open Office Writer : custom hyphens (Writer) -Oracle Open Office Writer : custom quotes -Oracle Open Office Writer : custom templates -Oracle Open Office Writer : customizing -Oracle Open Office Writer : customizing;events -Oracle Open Office Writer : customizing;keyboard -Oracle Open Office Writer : customizing;menus -Oracle Open Office Writer : customizing;Oracle Open Office -Oracle Open Office Writer : customizing;round corners -Oracle Open Office Writer : customizing;toolbars -Oracle Open Office Writer : cutting -Oracle Open Office Writer : dashes -Oracle Open Office Writer : data -Oracle Open Office Writer : data;filtering in forms -Oracle Open Office Writer : data;forms and subforms -Oracle Open Office Writer : data;read-only -Oracle Open Office Writer : data;sorting in forms -Oracle Open Office Writer : data;user data -Oracle Open Office Writer : data binding change in XForms -Oracle Open Office Writer : data labels in charts -Oracle Open Office Writer : Data Navigator -Oracle Open Office Writer : Data Navigator;adding/editing items -Oracle Open Office Writer : Data Navigator;display options -Oracle Open Office Writer : data ranges in charts -Oracle Open Office Writer : data series -Oracle Open Office Writer : data source browser -Oracle Open Office Writer : data source explorer -Oracle Open Office Writer : data source view -Oracle Open Office Writer : data source view;drag and drop -Oracle Open Office Writer : data source view;overview -Oracle Open Office Writer : data source view;showing -Oracle Open Office Writer : data sources -Oracle Open Office Writer : data sources;as tables -Oracle Open Office Writer : data sources;connection settings (Base) -Oracle Open Office Writer : data sources;copying records to spreadsheets -Oracle Open Office Writer : data sources;displaying current -Oracle Open Office Writer : data sources;LDAP server (Base) -Oracle Open Office Writer : data sources;Oracle Open Office Base -Oracle Open Office Writer : data sources;registering address books -Oracle Open Office Writer : data sources;reports -Oracle Open Office Writer : data sources;setting for stock charts -Oracle Open Office Writer : data sources;viewing -Oracle Open Office Writer : data structure of XForms -Oracle Open Office Writer : data values in charts -Oracle Open Office Writer : data, see also values -Oracle Open Office Writer : database contents -Oracle Open Office Writer : database contents;inserting as tables -Oracle Open Office Writer : database contents;inserting as text -Oracle Open Office Writer : database reports -Oracle Open Office Writer : Database Wizard (Base) -Oracle Open Office Writer : databases -Oracle Open Office Writer : databases;administration through SQL (Base) -Oracle Open Office Writer : databases;ADO (Base) -Oracle Open Office Writer : databases;connecting (Base) -Oracle Open Office Writer : databases;creating -Oracle Open Office Writer : databases;creating bibliographies -Oracle Open Office Writer : databases;creating labels -Oracle Open Office Writer : databases;creating queries -Oracle Open Office Writer : databases;creating reports -Oracle Open Office Writer : databases;creating tables -Oracle Open Office Writer : databases;deleting (Base) -Oracle Open Office Writer : databases;drag and drop (Base) -Oracle Open Office Writer : databases;editing tables -Oracle Open Office Writer : databases;exchanging -Oracle Open Office Writer : databases;form filters -Oracle Open Office Writer : databases;formats (Base) -Oracle Open Office Writer : databases;importing/exporting -Oracle Open Office Writer : databases;in conditions -Oracle Open Office Writer : databases;JDBC (Base) -Oracle Open Office Writer : databases;main page (Base) -Oracle Open Office Writer : databases;ODBC (Base) -Oracle Open Office Writer : databases;overview -Oracle Open Office Writer : databases;registering (Base) -Oracle Open Office Writer : databases;searching records -Oracle Open Office Writer : databases;shortcut keys -Oracle Open Office Writer : databases;sorting -Oracle Open Office Writer : databases;standard filters -Oracle Open Office Writer : databases;text formats -Oracle Open Office Writer : databases;viewing -Oracle Open Office Writer : date fields -Oracle Open Office Writer : date fields;creating -Oracle Open Office Writer : date fields;fixed/variable -Oracle Open Office Writer : date fields;HTML -Oracle Open Office Writer : date fields;properties -Oracle Open Office Writer : date formats -Oracle Open Office Writer : dates -Oracle Open Office Writer : dates;default (Calc) -Oracle Open Office Writer : dates;formatting automatically in tables -Oracle Open Office Writer : dates;inserting -Oracle Open Office Writer : dates;printing in presentations -Oracle Open Office Writer : dates;start 1900/01/01 (Calc) -Oracle Open Office Writer : dates;start 1904/01/01 (Calc) -Oracle Open Office Writer : dBASE -Oracle Open Office Writer : dBASE;database settings (Base) -Oracle Open Office Writer : DDE -Oracle Open Office Writer : DDE;command for inserting sections -Oracle Open Office Writer : DDE;definition -Oracle Open Office Writer : DDE;inserting tables -Oracle Open Office Writer : deactivating -Oracle Open Office Writer : deactivating;plug-ins -Oracle Open Office Writer : deactivating;word completion -Oracle Open Office Writer : decimal places displayed (Calc) -Oracle Open Office Writer : decimal separator key -Oracle Open Office Writer : decimal tab stops -Oracle Open Office Writer : default directories -Oracle Open Office Writer : default filters -Oracle Open Office Writer : default filters;comparison operators -Oracle Open Office Writer : default filters;databases -Oracle Open Office Writer : default printer -Oracle Open Office Writer : default printer;setting up -Oracle Open Office Writer : default printer;UNIX -Oracle Open Office Writer : default templates -Oracle Open Office Writer : default templates;changing -Oracle Open Office Writer : default templates;defining/resetting -Oracle Open Office Writer : default templates;organizing -Oracle Open Office Writer : defaults -Oracle Open Office Writer : defaults;documents -Oracle Open Office Writer : defaults;file formats in file dialogs -Oracle Open Office Writer : defaults;file formats in Oracle Open Office -Oracle Open Office Writer : defaults;fonts -Oracle Open Office Writer : defaults;grids (Writer/Calc) -Oracle Open Office Writer : defaults;languages -Oracle Open Office Writer : defaults;number formats -Oracle Open Office Writer : defaults;of saving -Oracle Open Office Writer : defaults;program configuration -Oracle Open Office Writer : defaults;tab stops in text -Oracle Open Office Writer : defaults;templates -Oracle Open Office Writer : defaults;views -Oracle Open Office Writer : defining -Oracle Open Office Writer : defining;arrowheads and other line ends -Oracle Open Office Writer : defining;colors -Oracle Open Office Writer : defining;conditions -Oracle Open Office Writer : defining;headers/footers -Oracle Open Office Writer : defining;line styles -Oracle Open Office Writer : defining;object borders -Oracle Open Office Writer : defining;page borders -Oracle Open Office Writer : defining;page styles -Oracle Open Office Writer : defining;paragraph borders -Oracle Open Office Writer : defining;queries (Base) -Oracle Open Office Writer : defining;starting page numbers -Oracle Open Office Writer : defining;table borders -Oracle Open Office Writer : defining;table borders in Writer -Oracle Open Office Writer : deleting -Oracle Open Office Writer : deleting;all direct formatting -Oracle Open Office Writer : deleting;comments -Oracle Open Office Writer : deleting;databases (Base) -Oracle Open Office Writer : deleting;entries of indexes/tables of contents -Oracle Open Office Writer : deleting;footnotes -Oracle Open Office Writer : deleting;heading numbers -Oracle Open Office Writer : deleting;hyperlinks -Oracle Open Office Writer : deleting;indexes/tables of contents -Oracle Open Office Writer : deleting;line breaks -Oracle Open Office Writer : deleting;lines in text -Oracle Open Office Writer : deleting;models/instances -Oracle Open Office Writer : deleting;namespaces in XForms -Oracle Open Office Writer : deleting;numbers in lists -Oracle Open Office Writer : deleting;page breaks -Oracle Open Office Writer : deleting;rows/columns, by keyboard -Oracle Open Office Writer : deleting;tab stops -Oracle Open Office Writer : deleting;tables or table contents -Oracle Open Office Writer : deleting;templates -Oracle Open Office Writer : deleting;words in user-defined dictionaries -Oracle Open Office Writer : deleting;XML filters -Oracle Open Office Writer : demoting heading levels -Oracle Open Office Writer : depth stagger -Oracle Open Office Writer : descriptions for objects -Oracle Open Office Writer : design mode after saving -Oracle Open Office Writer : design view -Oracle Open Office Writer : design view;creating forms -Oracle Open Office Writer : design view;queries/views (Base) -Oracle Open Office Writer : designing -Oracle Open Office Writer : designing;database tables -Oracle Open Office Writer : designing;fonts -Oracle Open Office Writer : designing;queries (Base) -Oracle Open Office Writer : detaching toolbars -Oracle Open Office Writer : dictionaries -Oracle Open Office Writer : dictionaries;common terms in simplified and traditional chinese -Oracle Open Office Writer : dictionaries;creating -Oracle Open Office Writer : dictionaries;editing user-defined -Oracle Open Office Writer : dictionaries;spellcheck -Oracle Open Office Writer : dictionaries;thesaurus -Oracle Open Office Writer : dictionaries, see also languages -Oracle Open Office Writer : digital signatures -Oracle Open Office Writer : digital signatures;getting/managing/applying -Oracle Open Office Writer : digital signatures;overview -Oracle Open Office Writer : digital signatures;WebDAV over HTTPS -Oracle Open Office Writer : direct cursor -Oracle Open Office Writer : direct cursor;restriction -Oracle Open Office Writer : direct cursor;settings -Oracle Open Office Writer : direct formatting -Oracle Open Office Writer : direct formatting;exiting -Oracle Open Office Writer : direct formatting;undoing all -Oracle Open Office Writer : directories -Oracle Open Office Writer : directories;creating new -Oracle Open Office Writer : directories;directory structure -Oracle Open Office Writer : disabled persons -Oracle Open Office Writer : disabling -Oracle Open Office Writer : disabling;field highlighting -Oracle Open Office Writer : disabling;smart tags -Oracle Open Office Writer : disabling;word completion -Oracle Open Office Writer : displaying -Oracle Open Office Writer : displaying;comments (Calc) -Oracle Open Office Writer : displaying;comments in text documents -Oracle Open Office Writer : displaying;hidden text -Oracle Open Office Writer : displaying;non-printing characters (Writer) -Oracle Open Office Writer : displaying;pictures and objects (Writer) -Oracle Open Office Writer : displaying;tables (Writer) -Oracle Open Office Writer : displaying;zero values (Calc) -Oracle Open Office Writer : distances -Oracle Open Office Writer : distinct values in SQL queries -Oracle Open Office Writer : distorting in drawings -Oracle Open Office Writer : distributing XML filters -Oracle Open Office Writer : dividing tables -Oracle Open Office Writer : DocInformation fields -Oracle Open Office Writer : docking -Oracle Open Office Writer : docking;definition -Oracle Open Office Writer : docking;Navigator window -Oracle Open Office Writer : docking;toolbars -Oracle Open Office Writer : docking;windows -Oracle Open Office Writer : Document Converter Wizard -Oracle Open Office Writer : Document Map, see Navigator -Oracle Open Office Writer : document templates -Oracle Open Office Writer : document types in Oracle Open Office -Oracle Open Office Writer : documents -Oracle Open Office Writer : documents;changing titles -Oracle Open Office Writer : documents;closing -Oracle Open Office Writer : documents;comparing -Oracle Open Office Writer : documents;contents as lists -Oracle Open Office Writer : documents;editing time -Oracle Open Office Writer : documents;exporting -Oracle Open Office Writer : documents;importing -Oracle Open Office Writer : documents;languages -Oracle Open Office Writer : documents;master documents and subdocuments -Oracle Open Office Writer : documents;measurement units in -Oracle Open Office Writer : documents;merging -Oracle Open Office Writer : documents;number of pages/tables/sheets -Oracle Open Office Writer : documents;number of words/characters -Oracle Open Office Writer : documents;opening -Oracle Open Office Writer : documents;opening in design mode -Oracle Open Office Writer : documents;opening with templates -Oracle Open Office Writer : documents;organizing -Oracle Open Office Writer : documents;printing -Oracle Open Office Writer : documents;read-only -Oracle Open Office Writer : documents;reloading -Oracle Open Office Writer : documents;saving -Oracle Open Office Writer : documents;saving automatically -Oracle Open Office Writer : documents;saving in other formats -Oracle Open Office Writer : documents;sending as e-mail -Oracle Open Office Writer : documents;styles changed -Oracle Open Office Writer : documents;version management -Oracle Open Office Writer : documents;version numbers -Oracle Open Office Writer : donut charts -Oracle Open Office Writer : dotted areas -Oracle Open Office Writer : double-line spacing in paragraphs -Oracle Open Office Writer : double-line writing in Asian layout -Oracle Open Office Writer : drag and drop -Oracle Open Office Writer : drag and drop;copying and pasting text -Oracle Open Office Writer : drag and drop;creating new styles -Oracle Open Office Writer : drag and drop;data source view -Oracle Open Office Writer : drag and drop;from Gallery to draw objects -Oracle Open Office Writer : drag and drop;overview -Oracle Open Office Writer : drag and drop;pictures -Oracle Open Office Writer : drag and drop;to Gallery -Oracle Open Office Writer : draw objects -Oracle Open Office Writer : draw objects;adding/editing/copying -Oracle Open Office Writer : draw objects;anchoring -Oracle Open Office Writer : draw objects;arranging within stacks -Oracle Open Office Writer : draw objects;copying between documents -Oracle Open Office Writer : draw objects;cross-referencing -Oracle Open Office Writer : draw objects;displaying (Calc) -Oracle Open Office Writer : draw objects;dropping Gallery pictures -Oracle Open Office Writer : draw objects;flipping -Oracle Open Office Writer : draw objects;inserting captions -Oracle Open Office Writer : draw objects;legends -Oracle Open Office Writer : draw objects;positioning and resizing -Oracle Open Office Writer : draw objects;protecting -Oracle Open Office Writer : draw objects;slanting -Oracle Open Office Writer : draw objects;text in -Oracle Open Office Writer : Drawing bar -Oracle Open Office Writer : drawing lines in text -Oracle Open Office Writer : drawings -Oracle Open Office Writer : drawings;creating/opening -Oracle Open Office Writer : drawings;languages -Oracle Open Office Writer : drawings;printing -Oracle Open Office Writer : drawings;printing defaults -Oracle Open Office Writer : drawings;printing in text documents -Oracle Open Office Writer : drawings;saving -Oracle Open Office Writer : drawings;saving automatically -Oracle Open Office Writer : drawings;saving in other formats -Oracle Open Office Writer : drawings;sending as e-mail -Oracle Open Office Writer : drawings;showing (Writer) -Oracle Open Office Writer : drawings, see also draw objects -Oracle Open Office Writer : drop caps insertion -Oracle Open Office Writer : drop-down lists in form functions -Oracle Open Office Writer : e-mail attachments -Oracle Open Office Writer : Edit File icon -Oracle Open Office Writer : edit mode -Oracle Open Office Writer : edit mode;after opening -Oracle Open Office Writer : edit mode;through Enter key (Calc) -Oracle Open Office Writer : Edit Points bar -Oracle Open Office Writer : editing -Oracle Open Office Writer : editing;captions -Oracle Open Office Writer : editing;chart axes -Oracle Open Office Writer : editing;chart data -Oracle Open Office Writer : editing;chart legends -Oracle Open Office Writer : editing;chart titles -Oracle Open Office Writer : editing;comments -Oracle Open Office Writer : editing;concordance files -Oracle Open Office Writer : editing;cross-references -Oracle Open Office Writer : editing;data binding of XForms -Oracle Open Office Writer : editing;database tables and queries -Oracle Open Office Writer : editing;draw objects -Oracle Open Office Writer : editing;Fontwork objects -Oracle Open Office Writer : editing;footnotes/endnotes -Oracle Open Office Writer : editing;hyperlinks -Oracle Open Office Writer : editing;index format -Oracle Open Office Writer : editing;indexes/tables of contents -Oracle Open Office Writer : editing;menus -Oracle Open Office Writer : editing;objects -Oracle Open Office Writer : editing;Oracle Open Office documents in Internet Explorer -Oracle Open Office Writer : editing;pictures -Oracle Open Office Writer : editing;reports -Oracle Open Office Writer : editing;sections -Oracle Open Office Writer : editing;shortcut keys -Oracle Open Office Writer : editing;tab stops -Oracle Open Office Writer : editing;table/index entries -Oracle Open Office Writer : editing;templates -Oracle Open Office Writer : editing;text frames -Oracle Open Office Writer : editing;titles -Oracle Open Office Writer : editing;toolbars -Oracle Open Office Writer : editing;undoing -Oracle Open Office Writer : editing;XForms -Oracle Open Office Writer : editing time of documents -Oracle Open Office Writer : editors -Oracle Open Office Writer : editors;contour editor -Oracle Open Office Writer : editors;formula editor -Oracle Open Office Writer : editors;ImageMap editor -Oracle Open Office Writer : effects -Oracle Open Office Writer : effects;font positions -Oracle Open Office Writer : effects;fonts -Oracle Open Office Writer : effects;Fontwork icons -Oracle Open Office Writer : effects;text animation -Oracle Open Office Writer : emphasizing text -Oracle Open Office Writer : empty documents -Oracle Open Office Writer : empty page with alternating page styles -Oracle Open Office Writer : empty paragraph removal -Oracle Open Office Writer : encryption of contents -Oracle Open Office Writer : endnotes -Oracle Open Office Writer : endnotes;inserting and editing -Oracle Open Office Writer : endnotes;spacing -Oracle Open Office Writer : enlarging columns,cells and table rows -Oracle Open Office Writer : entering groups -Oracle Open Office Writer : entering text from right to left -Oracle Open Office Writer : entering text with direct cursor -Oracle Open Office Writer : entries -Oracle Open Office Writer : entries;bibliographies -Oracle Open Office Writer : entries;defining in indexes/tables of contents -Oracle Open Office Writer : entries;in tables of contents, as hyperlinks -Oracle Open Office Writer : envelopes -Oracle Open Office Writer : equal sign, see also operators -Oracle Open Office Writer : equations in formula editor -Oracle Open Office Writer : error bars in charts -Oracle Open Office Writer : error indicators in charts -Oracle Open Office Writer : Error Report Tool -Oracle Open Office Writer : Euro -Oracle Open Office Writer : Euro;currency formats -Oracle Open Office Writer : Euro;Euro Converter Wizard -Oracle Open Office Writer : even/odd pages -Oracle Open Office Writer : even/odd pages;formatting -Oracle Open Office Writer : even/odd pages;printing -Oracle Open Office Writer : events -Oracle Open Office Writer : events;assigning scripts -Oracle Open Office Writer : events;controls -Oracle Open Office Writer : events;customizing -Oracle Open Office Writer : events;in forms -Oracle Open Office Writer : examples for regular expressions -Oracle Open Office Writer : Excel -Oracle Open Office Writer : Excel;saving as -Oracle Open Office Writer : Excel;search criteria -Oracle Open Office Writer : exceptions -Oracle Open Office Writer : exceptions;AutoCorrect function -Oracle Open Office Writer : exceptions;user-defined dictionaries -Oracle Open Office Writer : exchanging databases -Oracle Open Office Writer : exchanging, see also replacing -Oracle Open Office Writer : executing SQL commands -Oracle Open Office Writer : exiting -Oracle Open Office Writer : exiting;direct formatting -Oracle Open Office Writer : exiting;groups -Oracle Open Office Writer : exiting;Oracle Open Office -Oracle Open Office Writer : expanding formatting (Calc) -Oracle Open Office Writer : explorer of data sources -Oracle Open Office Writer : export filters -Oracle Open Office Writer : exporting -Oracle Open Office Writer : exporting;bitmaps -Oracle Open Office Writer : exporting;HTML and text documents -Oracle Open Office Writer : exporting;Microsoft Office documents with VBA code -Oracle Open Office Writer : exporting;spreadsheets to text format -Oracle Open Office Writer : exporting;templates -Oracle Open Office Writer : exporting;to foreign formats -Oracle Open Office Writer : exporting;to HTML -Oracle Open Office Writer : exporting;to Microsoft Office formats -Oracle Open Office Writer : exporting;to PDF -Oracle Open Office Writer : exporting;to PostScript format -Oracle Open Office Writer : exporting;to XML -Oracle Open Office Writer : exporting;XML files -Oracle Open Office Writer : extended tips in Help -Oracle Open Office Writer : extension mode in text -Oracle Open Office Writer : extensions -Oracle Open Office Writer : extensions;Extension Manager -Oracle Open Office Writer : extensions;file formats -Oracle Open Office Writer : external keys (Base) -Oracle Open Office Writer : faster printing -Oracle Open Office Writer : faxes -Oracle Open Office Writer : faxes;configuring Oracle Open Office -Oracle Open Office Writer : faxes;fax programs/fax printers under UNIX -Oracle Open Office Writer : faxes;selecting a fax machine -Oracle Open Office Writer : faxes;sending -Oracle Open Office Writer : faxes;wizards -Oracle Open Office Writer : feedback -Oracle Open Office Writer : feedback;automatically -Oracle Open Office Writer : fields -Oracle Open Office Writer : fields;converting into text -Oracle Open Office Writer : fields;database tables -Oracle Open Office Writer : fields;defining conditions -Oracle Open Office Writer : fields;displaying field codes (Writer) -Oracle Open Office Writer : fields;formatted fields -Oracle Open Office Writer : fields;HTML import and export -Oracle Open Office Writer : fields;input fields in text -Oracle Open Office Writer : fields;inserting time -Oracle Open Office Writer : fields;subject -Oracle Open Office Writer : fields;updating automatically (Writer) -Oracle Open Office Writer : fields;updating/viewing -Oracle Open Office Writer : fields;user data -Oracle Open Office Writer : file associations for Microsoft Office -Oracle Open Office Writer : file filters -Oracle Open Office Writer : file filters;mobile devices -Oracle Open Office Writer : file filters;XML -Oracle Open Office Writer : file formats -Oracle Open Office Writer : file formats;changing Oracle Open Office defaults -Oracle Open Office Writer : file formats;OpenDocument/XML -Oracle Open Office Writer : file formats;saving always in other formats -Oracle Open Office Writer : file selection button -Oracle Open Office Writer : file sharing options for current document -Oracle Open Office Writer : files -Oracle Open Office Writer : files;filters and formats -Oracle Open Office Writer : files;importing -Oracle Open Office Writer : files;opening -Oracle Open Office Writer : files;properties -Oracle Open Office Writer : files;saving -Oracle Open Office Writer : files;saving automatically -Oracle Open Office Writer : files;saving in other formats -Oracle Open Office Writer : files;sending as e-mail -Oracle Open Office Writer : files;version numbers -Oracle Open Office Writer : files and folders in Oracle Open Office -Oracle Open Office Writer : fill characters with tabulators -Oracle Open Office Writer : fill colors for areas -Oracle Open Office Writer : fill format mode -Oracle Open Office Writer : fill patterns for areas -Oracle Open Office Writer : filter conditions -Oracle Open Office Writer : filter conditions;connecting -Oracle Open Office Writer : filter conditions;in queries (Base) -Oracle Open Office Writer : filtering -Oracle Open Office Writer : filtering;data in databases -Oracle Open Office Writer : filtering;data in forms -Oracle Open Office Writer : filters -Oracle Open Office Writer : filters;comparison operators -Oracle Open Office Writer : filters;for import and export -Oracle Open Office Writer : filters;Navigator -Oracle Open Office Writer : filters;pictures -Oracle Open Office Writer : filters;XML filter settings -Oracle Open Office Writer : Find tab in Help -Oracle Open Office Writer : finding -Oracle Open Office Writer : finding;in all sheets -Oracle Open Office Writer : finding;records in form documents -Oracle Open Office Writer : finding;selections -Oracle Open Office Writer : finding;similarity search -Oracle Open Office Writer : finding;text/text formats/styles/objects -Oracle Open Office Writer : first letters as large capital letters -Oracle Open Office Writer : First Page page style -Oracle Open Office Writer : fitting to pages -Oracle Open Office Writer : fitting to pages;print settings in Math -Oracle Open Office Writer : fitting to pages;print settings in presentations -Oracle Open Office Writer : fixed dates -Oracle Open Office Writer : fixed text -Oracle Open Office Writer : fixed text;form functions -Oracle Open Office Writer : fixing toolbars -Oracle Open Office Writer : flipping draw objects -Oracle Open Office Writer : floating frames in HTML documents -Oracle Open Office Writer : floating titles in headers -Oracle Open Office Writer : floating toolbars -Oracle Open Office Writer : focus of controls -Oracle Open Office Writer : folder creation -Oracle Open Office Writer : font attributes -Oracle Open Office Writer : font attributes;resetting -Oracle Open Office Writer : font lists -Oracle Open Office Writer : font name box -Oracle Open Office Writer : font sizes -Oracle Open Office Writer : font sizes;bullets -Oracle Open Office Writer : font sizes;relative changes -Oracle Open Office Writer : font sizes;scaling on screen -Oracle Open Office Writer : font sizes;text -Oracle Open Office Writer : fonts -Oracle Open Office Writer : fonts;adding under UNIX -Oracle Open Office Writer : fonts;changing in templates -Oracle Open Office Writer : fonts;colors -Oracle Open Office Writer : fonts;default settings -Oracle Open Office Writer : fonts;effects -Oracle Open Office Writer : fonts;for HTML and Basic -Oracle Open Office Writer : fonts;formats -Oracle Open Office Writer : fonts;outlines -Oracle Open Office Writer : fonts;positions in text -Oracle Open Office Writer : fonts;resetting -Oracle Open Office Writer : fonts;shadows -Oracle Open Office Writer : fonts;specifying several -Oracle Open Office Writer : fonts;strikethrough -Oracle Open Office Writer : fonts;styles -Oracle Open Office Writer : fonts;text objects -Oracle Open Office Writer : Fontwork icons -Oracle Open Office Writer : footers -Oracle Open Office Writer : footers;about -Oracle Open Office Writer : footers;backgrounds -Oracle Open Office Writer : footers;defining for left and right pages -Oracle Open Office Writer : footers;formatting -Oracle Open Office Writer : footers;inserting -Oracle Open Office Writer : footers;with page numbers -Oracle Open Office Writer : footnotes -Oracle Open Office Writer : footnotes;inserting and editing -Oracle Open Office Writer : footnotes;spacing -Oracle Open Office Writer : form controls -Oracle Open Office Writer : form controls;assigning macros -Oracle Open Office Writer : form controls;protecting -Oracle Open Office Writer : form controls;toolbars -Oracle Open Office Writer : form fields -Oracle Open Office Writer : form filters -Oracle Open Office Writer : form letters -Oracle Open Office Writer : Form Navigator -Oracle Open Office Writer : format codes -Oracle Open Office Writer : format codes;numbers -Oracle Open Office Writer : format filling printing in Oracle Open Office Math -Oracle Open Office Writer : Format Paintbrush -Oracle Open Office Writer : formats -Oracle Open Office Writer : formats;Asian layout -Oracle Open Office Writer : formats;copying and pasting -Oracle Open Office Writer : formats;finding and replacing -Oracle Open Office Writer : formats;fonts -Oracle Open Office Writer : formats;maximizing page formats -Oracle Open Office Writer : formats;number and currency formats -Oracle Open Office Writer : formats;of currencies/date/time -Oracle Open Office Writer : formats;on opening and saving -Oracle Open Office Writer : formats;pasting in special formats -Oracle Open Office Writer : formats;positions -Oracle Open Office Writer : formats;resetting -Oracle Open Office Writer : formats;tabulators -Oracle Open Office Writer : formatted fields -Oracle Open Office Writer : formatted fields;form functions -Oracle Open Office Writer : formatted fields;properties -Oracle Open Office Writer : formatting -Oracle Open Office Writer : formatting;Asian typography -Oracle Open Office Writer : formatting;axes in charts -Oracle Open Office Writer : formatting;bold, while typing -Oracle Open Office Writer : formatting;bullets -Oracle Open Office Writer : formatting;changing individual pages -Oracle Open Office Writer : formatting;chart areas -Oracle Open Office Writer : formatting;chart floors -Oracle Open Office Writer : formatting;chart legends -Oracle Open Office Writer : formatting;chart titles -Oracle Open Office Writer : formatting;chart walls -Oracle Open Office Writer : formatting;contour wrap -Oracle Open Office Writer : formatting;copying -Oracle Open Office Writer : formatting;definition -Oracle Open Office Writer : formatting;even/odd pages -Oracle Open Office Writer : formatting;exiting direct formatting -Oracle Open Office Writer : formatting;expanding (Calc) -Oracle Open Office Writer : formatting;font effects -Oracle Open Office Writer : formatting;hyperlinks -Oracle Open Office Writer : formatting;indenting paragraphs -Oracle Open Office Writer : formatting;indexes and tables of contents -Oracle Open Office Writer : formatting;numbered lists -Oracle Open Office Writer : formatting;page numbers -Oracle Open Office Writer : formatting;pages -Oracle Open Office Writer : formatting;printer metrics (Writer) -Oracle Open Office Writer : formatting;register-true text -Oracle Open Office Writer : formatting;undoing -Oracle Open Office Writer : formatting;undoing when writing -Oracle Open Office Writer : formatting styles -Oracle Open Office Writer : formatting styles;importing -Oracle Open Office Writer : formatting styles;styles and templates -Oracle Open Office Writer : forms -Oracle Open Office Writer : forms;browsing -Oracle Open Office Writer : forms;Combo Box/List Box Wizard -Oracle Open Office Writer : forms;creating -Oracle Open Office Writer : forms;data -Oracle Open Office Writer : forms;designing (Base) -Oracle Open Office Writer : forms;events -Oracle Open Office Writer : forms;filtering data -Oracle Open Office Writer : forms;finding records -Oracle Open Office Writer : forms;focus after opening -Oracle Open Office Writer : forms;general information (Base) -Oracle Open Office Writer : forms;grouping controls -Oracle Open Office Writer : forms;HTML filters -Oracle Open Office Writer : forms;Navigator -Oracle Open Office Writer : forms;opening in design mode -Oracle Open Office Writer : forms;properties -Oracle Open Office Writer : forms;sorting data -Oracle Open Office Writer : forms;subforms -Oracle Open Office Writer : forms;wizards -Oracle Open Office Writer : forms;XForms -Oracle Open Office Writer : formula texts -Oracle Open Office Writer : formula texts;printing in Oracle Open Office Math -Oracle Open Office Writer : formulas -Oracle Open Office Writer : formulas;calculating in text -Oracle Open Office Writer : formulas;complex formulas in text -Oracle Open Office Writer : formulas;new -Oracle Open Office Writer : formulas;pasting results in text documents -Oracle Open Office Writer : formulas;starting formula editor -Oracle Open Office Writer : formulas in reports -Oracle Open Office Writer : formulas in reports;editing -Oracle Open Office Writer : formulating conditions -Oracle Open Office Writer : forums and support -Oracle Open Office Writer : frames -Oracle Open Office Writer : frames;anchoring options -Oracle Open Office Writer : frames;around objects -Oracle Open Office Writer : frames;around pages -Oracle Open Office Writer : frames;around paragraphs -Oracle Open Office Writer : frames;around tables -Oracle Open Office Writer : frames;around text tables -Oracle Open Office Writer : frames;AutoCorrect function -Oracle Open Office Writer : frames;backgrounds -Oracle Open Office Writer : frames;captions (Writer) -Oracle Open Office Writer : frames;defining hyperlinks -Oracle Open Office Writer : frames;jumping to -Oracle Open Office Writer : frames;labeling -Oracle Open Office Writer : frames;linking -Oracle Open Office Writer : frames;printing in Oracle Open Office Math -Oracle Open Office Writer : frames;protecting -Oracle Open Office Writer : frames;selection frames -Oracle Open Office Writer : frames;styles -Oracle Open Office Writer : frames;text fitting to frames -Oracle Open Office Writer : frames;unlinking -Oracle Open Office Writer : freeform lines -Oracle Open Office Writer : freeform lines;draw functions -Oracle Open Office Writer : FTP -Oracle Open Office Writer : FTP;opening documents -Oracle Open Office Writer : FTP;saving documents -Oracle Open Office Writer : full joins (Base) -Oracle Open Office Writer : full screen view -Oracle Open Office Writer : full-text search in Help -Oracle Open Office Writer : functions in reports -Oracle Open Office Writer : functions in reports;editing -Oracle Open Office Writer : Gallery -Oracle Open Office Writer : Gallery;adding pictures -Oracle Open Office Writer : Gallery;docking and resizing -Oracle Open Office Writer : Gallery;dragging pictures to draw objects -Oracle Open Office Writer : Gallery;hiding/showing -Oracle Open Office Writer : Gallery;inserting pictures from -Oracle Open Office Writer : get method for form transmissions -Oracle Open Office Writer : getting support -Oracle Open Office Writer : GIF format -Oracle Open Office Writer : glossaries -Oracle Open Office Writer : glossaries;common terms -Oracle Open Office Writer : glossaries;Internet terms -Oracle Open Office Writer : gradients off for faster printing -Oracle Open Office Writer : grammar checker -Oracle Open Office Writer : graphic objects, see draw objects -Oracle Open Office Writer : graphical text art -Oracle Open Office Writer : graphics -Oracle Open Office Writer : graphics;cache -Oracle Open Office Writer : graphics;do not show -Oracle Open Office Writer : graphics;protecting -Oracle Open Office Writer : graphics, see also pictures -Oracle Open Office Writer : grayscale printing -Oracle Open Office Writer : grid controls -Oracle Open Office Writer : grid controls;form functions -Oracle Open Office Writer : grids -Oracle Open Office Writer : grids;defaults (Writer/Calc) -Oracle Open Office Writer : grids;display options (Impress/Draw) -Oracle Open Office Writer : grids;displaying lines (Calc) -Oracle Open Office Writer : grids;formatting axes -Oracle Open Office Writer : grids;inserting in charts -Oracle Open Office Writer : group box creation -Oracle Open Office Writer : groups -Oracle Open Office Writer : groups;entering/exiting/ungrouping -Oracle Open Office Writer : groups;naming -Oracle Open Office Writer : groups;of controls -Oracle Open Office Writer : guides -Oracle Open Office Writer : guides;display options (Impress/Draw) -Oracle Open Office Writer : guides;displaying when moving objects (Impress) -Oracle Open Office Writer : guides;showing (Calc) -Oracle Open Office Writer : guides;showing when moving frames (Writer) -Oracle Open Office Writer : gutter -Oracle Open Office Writer : handles -Oracle Open Office Writer : handles;displaying (Writer) -Oracle Open Office Writer : handles;scaling -Oracle Open Office Writer : handles;showing simple/large handles (Calc) -Oracle Open Office Writer : hanging indents in paragraphs -Oracle Open Office Writer : Hangul/Hanja -Oracle Open Office Writer : hard returns in pasted text -Oracle Open Office Writer : hatching -Oracle Open Office Writer : headers -Oracle Open Office Writer : headers;about -Oracle Open Office Writer : headers;backgrounds -Oracle Open Office Writer : headers;chapter information -Oracle Open Office Writer : headers;defining for left and right pages -Oracle Open Office Writer : headers;formatting -Oracle Open Office Writer : headers;inserting -Oracle Open Office Writer : headings -Oracle Open Office Writer : headings;automatic -Oracle Open Office Writer : headings;entering as text box -Oracle Open Office Writer : headings;jumping to -Oracle Open Office Writer : headings;numbering/paragraph styles -Oracle Open Office Writer : headings;rearranging -Oracle Open Office Writer : headings;repeating in tables -Oracle Open Office Writer : headings;starting with tab stops -Oracle Open Office Writer : headings;switching levels by keyboard -Oracle Open Office Writer : Hebrew -Oracle Open Office Writer : Hebrew;entering text -Oracle Open Office Writer : Hebrew;language settings -Oracle Open Office Writer : Help -Oracle Open Office Writer : Help;bookmarks -Oracle Open Office Writer : Help;extended tips on/off -Oracle Open Office Writer : Help;full-text search -Oracle Open Office Writer : Help;Help tips -Oracle Open Office Writer : Help;keywords -Oracle Open Office Writer : Help;navigation pane showing/hiding -Oracle Open Office Writer : Help;style sheets -Oracle Open Office Writer : Help;topics -Oracle Open Office Writer : Help Agent -Oracle Open Office Writer : Help Agent;help -Oracle Open Office Writer : Help Agent;options -Oracle Open Office Writer : Help tips -Oracle Open Office Writer : Help tips;fields -Oracle Open Office Writer : Help tips;hiding -Oracle Open Office Writer : hidden controls in Form Navigator -Oracle Open Office Writer : hidden fields display (Writer) -Oracle Open Office Writer : hidden pages -Oracle Open Office Writer : hidden pages;printing in presentations -Oracle Open Office Writer : hidden text -Oracle Open Office Writer : hidden text;displaying -Oracle Open Office Writer : hidden text;showing (Writer) -Oracle Open Office Writer : hiding -Oracle Open Office Writer : hiding;changes -Oracle Open Office Writer : hiding;chart legends -Oracle Open Office Writer : hiding;database fields -Oracle Open Office Writer : hiding;docked windows -Oracle Open Office Writer : hiding;navigation pane in Help window -Oracle Open Office Writer : hiding;rulers -Oracle Open Office Writer : hiding;sections -Oracle Open Office Writer : hiding;text, from specific users -Oracle Open Office Writer : hiding;text, with conditions -Oracle Open Office Writer : high contrast mode -Oracle Open Office Writer : Hindi -Oracle Open Office Writer : Hindi;entering text -Oracle Open Office Writer : Hindi;language settings -Oracle Open Office Writer : homepage creation -Oracle Open Office Writer : horizontal lines -Oracle Open Office Writer : horizontal rulers -Oracle Open Office Writer : horizontal scrollbars (Writer) -Oracle Open Office Writer : hotspots -Oracle Open Office Writer : HowTos for charts -Oracle Open Office Writer : HTML -Oracle Open Office Writer : HTML;definition -Oracle Open Office Writer : HTML;export character set -Oracle Open Office Writer : HTML;fonts for source display -Oracle Open Office Writer : HTML;importing META tags -Oracle Open Office Writer : HTML;live presentations -Oracle Open Office Writer : HTML;special tags for fields -Oracle Open Office Writer : HTML documents -Oracle Open Office Writer : HTML documents;auto reloading -Oracle Open Office Writer : HTML documents;creating from text documents -Oracle Open Office Writer : HTML documents;headers and footers -Oracle Open Office Writer : HTML documents;importing/exporting -Oracle Open Office Writer : HTML documents;inserting linked sections -Oracle Open Office Writer : HTML documents;META tags in -Oracle Open Office Writer : HTML documents;new -Oracle Open Office Writer : HTML documents;source text -Oracle Open Office Writer : hyperlinks -Oracle Open Office Writer : hyperlinks;assigning macros -Oracle Open Office Writer : hyperlinks;character formats -Oracle Open Office Writer : hyperlinks;definition -Oracle Open Office Writer : hyperlinks;deleting -Oracle Open Office Writer : hyperlinks;editing -Oracle Open Office Writer : hyperlinks;for objects -Oracle Open Office Writer : hyperlinks;in tables of contents and indexes -Oracle Open Office Writer : hyperlinks;inserting -Oracle Open Office Writer : hyperlinks;inserting from Navigator -Oracle Open Office Writer : hyperlinks;jumping to -Oracle Open Office Writer : hyperlinks;relative and absolute -Oracle Open Office Writer : hyperlinks;turning off automatic recognition -Oracle Open Office Writer : hyperlinks, see also links -Oracle Open Office Writer : hyphenation -Oracle Open Office Writer : hyphenation;activating for a language -Oracle Open Office Writer : hyphenation;manual/automatic -Oracle Open Office Writer : hyphenation;minimal number of characters -Oracle Open Office Writer : hyphenation;preventing for specific words -Oracle Open Office Writer : hyphens -Oracle Open Office Writer : hyphens;displaying custom (Writer) -Oracle Open Office Writer : hyphens;inserting custom -Oracle Open Office Writer : icon bars, see toolbars -Oracle Open Office Writer : icon sizes -Oracle Open Office Writer : if-then queries as fields -Oracle Open Office Writer : ignore list for spellcheck -Oracle Open Office Writer : illumination -Oracle Open Office Writer : illumination;3D charts -Oracle Open Office Writer : illustrations, see pictures -Oracle Open Office Writer : image button creation -Oracle Open Office Writer : image control creation -Oracle Open Office Writer : ImageMap -Oracle Open Office Writer : ImageMap;definition -Oracle Open Office Writer : ImageMap;editor -Oracle Open Office Writer : images -Oracle Open Office Writer : images;do not show -Oracle Open Office Writer : images;ImageMap -Oracle Open Office Writer : images;inserting and editing bitmaps -Oracle Open Office Writer : images;inserting in text -Oracle Open Office Writer : images, see also pictures -Oracle Open Office Writer : IME -Oracle Open Office Writer : IME;definition -Oracle Open Office Writer : IME;showing/hiding -Oracle Open Office Writer : import filters -Oracle Open Office Writer : import restrictions for Microsoft Office -Oracle Open Office Writer : importing -Oracle Open Office Writer : importing;bitmaps -Oracle Open Office Writer : importing;compatibility settings for text import -Oracle Open Office Writer : importing;databases -Oracle Open Office Writer : importing;documents in other formats -Oracle Open Office Writer : importing;from XML -Oracle Open Office Writer : importing;HTML and text documents -Oracle Open Office Writer : importing;HTML with META tags -Oracle Open Office Writer : importing;Microsoft Office documents with VBA code -Oracle Open Office Writer : importing;styles from other files -Oracle Open Office Writer : importing;tables in text format -Oracle Open Office Writer : importing;templates -Oracle Open Office Writer : improvement program -Oracle Open Office Writer : inches -Oracle Open Office Writer : indents -Oracle Open Office Writer : indents;in text -Oracle Open Office Writer : indents;setting on rulers -Oracle Open Office Writer : Index tab in Help -Oracle Open Office Writer : indexes -Oracle Open Office Writer : indexes;alphabetical indexes -Oracle Open Office Writer : indexes;backgrounds -Oracle Open Office Writer : indexes;creating bibliographies -Oracle Open Office Writer : indexes;creating user-defined indexes -Oracle Open Office Writer : indexes;defining entries in -Oracle Open Office Writer : indexes;editing or deleting entries -Oracle Open Office Writer : indexes;editing/updating/deleting -Oracle Open Office Writer : indexes;formatting -Oracle Open Office Writer : indexes;master documents -Oracle Open Office Writer : indexes;multiple documents -Oracle Open Office Writer : indexes;showing/hiding Help index tab -Oracle Open Office Writer : indexes;unprotecting -Oracle Open Office Writer : indicator lines in text -Oracle Open Office Writer : initial capitals in titles -Oracle Open Office Writer : inner joins (Base) -Oracle Open Office Writer : input fields in text -Oracle Open Office Writer : input method window -Oracle Open Office Writer : insert mode for entering text -Oracle Open Office Writer : inserting -Oracle Open Office Writer : inserting;buttons in toolbars -Oracle Open Office Writer : inserting;captions -Oracle Open Office Writer : inserting;cell ranges from spreadsheets -Oracle Open Office Writer : inserting;chapter numbers in captions -Oracle Open Office Writer : inserting;charts -Oracle Open Office Writer : inserting;clipboard options -Oracle Open Office Writer : inserting;comments -Oracle Open Office Writer : inserting;cross-references -Oracle Open Office Writer : inserting;data from text documents -Oracle Open Office Writer : inserting;datasource records in spreadsheets -Oracle Open Office Writer : inserting;date fields -Oracle Open Office Writer : inserting;drawings -Oracle Open Office Writer : inserting;envelopes -Oracle Open Office Writer : inserting;floating frames -Oracle Open Office Writer : inserting;Fontwork objects -Oracle Open Office Writer : inserting;footnotes/endnotes -Oracle Open Office Writer : inserting;form fields -Oracle Open Office Writer : inserting;from Gallery into text -Oracle Open Office Writer : inserting;horizontal lines -Oracle Open Office Writer : inserting;hyperlinks -Oracle Open Office Writer : inserting;hyperlinks from Navigator -Oracle Open Office Writer : inserting;input fields -Oracle Open Office Writer : inserting;line breaks in cells -Oracle Open Office Writer : inserting;lines under headers/above footers -Oracle Open Office Writer : inserting;movies/sounds -Oracle Open Office Writer : inserting;new text tables defaults -Oracle Open Office Writer : inserting;numbering -Oracle Open Office Writer : inserting;objects from Gallery -Oracle Open Office Writer : inserting;OLE objects -Oracle Open Office Writer : inserting;page breaks -Oracle Open Office Writer : inserting;page numbers -Oracle Open Office Writer : inserting;paragraph borders -Oracle Open Office Writer : inserting;paragraph bullets -Oracle Open Office Writer : inserting;paragraphs before/after tables -Oracle Open Office Writer : inserting;pictures -Oracle Open Office Writer : inserting;pictures in Gallery -Oracle Open Office Writer : inserting;pictures, by dialog -Oracle Open Office Writer : inserting;plug-ins -Oracle Open Office Writer : inserting;push buttons -Oracle Open Office Writer : inserting;rows/columns, by keyboard -Oracle Open Office Writer : inserting;scanned images -Oracle Open Office Writer : inserting;sections -Oracle Open Office Writer : inserting;special characters -Oracle Open Office Writer : inserting;tab stops -Oracle Open Office Writer : inserting;tables in text -Oracle Open Office Writer : inserting;text blocks -Oracle Open Office Writer : inserting;text documents -Oracle Open Office Writer : inserting;text frames -Oracle Open Office Writer : inserting;textures on chart bars -Oracle Open Office Writer : installing -Oracle Open Office Writer : installing;ActiveX control -Oracle Open Office Writer : installing;mobile device filters -Oracle Open Office Writer : installing;smart tags -Oracle Open Office Writer : installing;UNO components -Oracle Open Office Writer : installing;XML filters -Oracle Open Office Writer : instructions -Oracle Open Office Writer : instructions;general -Oracle Open Office Writer : instructions;Oracle Open Office Writer -Oracle Open Office Writer : Internet -Oracle Open Office Writer : Internet;checking for updates -Oracle Open Office Writer : Internet;Internet Explorer for displaying Oracle Open Office documents -Oracle Open Office Writer : Internet;presentations -Oracle Open Office Writer : Internet;starting searches -Oracle Open Office Writer : Internet glossary -Oracle Open Office Writer : interrupting numbered lists -Oracle Open Office Writer : invert filter -Oracle Open Office Writer : invisible areas -Oracle Open Office Writer : invisible characters -Oracle Open Office Writer : invisible characters;finding -Oracle Open Office Writer : italic text -Oracle Open Office Writer : iterative references in spreadsheets -Oracle Open Office Writer : Java -Oracle Open Office Writer : Java;definition -Oracle Open Office Writer : Java;setting options -Oracle Open Office Writer : JDBC -Oracle Open Office Writer : JDBC;databases (Base) -Oracle Open Office Writer : JDBC;definition -Oracle Open Office Writer : joining -Oracle Open Office Writer : joining;numbered lists -Oracle Open Office Writer : joining;paragraphs -Oracle Open Office Writer : joining;tables (Base) -Oracle Open Office Writer : joins in databases (Base) -Oracle Open Office Writer : jumping -Oracle Open Office Writer : jumping;to bookmarks -Oracle Open Office Writer : jumping;to text elements -Oracle Open Office Writer : justifying text -Oracle Open Office Writer : juxtaposing tables -Oracle Open Office Writer : kerning -Oracle Open Office Writer : kerning;Asian texts -Oracle Open Office Writer : kerning;definition -Oracle Open Office Writer : kerning;in characters -Oracle Open Office Writer : key fields for relations (Base) -Oracle Open Office Writer : keyboard -Oracle Open Office Writer : keyboard;accessibility Oracle Open Office Writer -Oracle Open Office Writer : keyboard;adding or deleting rows/columns -Oracle Open Office Writer : keyboard;assigning/editing shortcut keys -Oracle Open Office Writer : keyboard;bold formatting -Oracle Open Office Writer : keyboard;general commands -Oracle Open Office Writer : keyboard;modifying the behavior of rows/columns -Oracle Open Office Writer : keyboard;navigating and selecting in text -Oracle Open Office Writer : keyboard;removing numbering -Oracle Open Office Writer : keyboard;resizing rows/columns -Oracle Open Office Writer : keys -Oracle Open Office Writer : keys;adding push buttons -Oracle Open Office Writer : keys;primary keys (Base) -Oracle Open Office Writer : kiosk export -Oracle Open Office Writer : labels -Oracle Open Office Writer : labels;creating and synchronizing -Oracle Open Office Writer : labels;for charts -Oracle Open Office Writer : labels;for draw objects -Oracle Open Office Writer : labels;form functions -Oracle Open Office Writer : labels;from databases -Oracle Open Office Writer : labels, see also names/callouts -Oracle Open Office Writer : landscape and portrait -Oracle Open Office Writer : languages -Oracle Open Office Writer : languages;activating modules -Oracle Open Office Writer : languages;Asian support -Oracle Open Office Writer : languages;complex text layout -Oracle Open Office Writer : languages;locale settings -Oracle Open Office Writer : languages;recognition of -Oracle Open Office Writer : languages;selecting for text -Oracle Open Office Writer : languages;setting options -Oracle Open Office Writer : languages;spellcheck -Oracle Open Office Writer : languages;spellchecking and formatting -Oracle Open Office Writer : large handles (Writer) -Oracle Open Office Writer : large icons -Oracle Open Office Writer : layer arrangement -Oracle Open Office Writer : layout -Oracle Open Office Writer : layout;importing Word documents -Oracle Open Office Writer : layout;pages -Oracle Open Office Writer : LDAP server -Oracle Open Office Writer : LDAP server;address books (Base) -Oracle Open Office Writer : LDAP server;sign on options -Oracle Open Office Writer : leading between paragraphs -Oracle Open Office Writer : left alignment of paragraphs -Oracle Open Office Writer : left joins (Base) -Oracle Open Office Writer : Left Page page style -Oracle Open Office Writer : legends -Oracle Open Office Writer : legends;charts -Oracle Open Office Writer : legends;draw objects -Oracle Open Office Writer : legends;rounding corners -Oracle Open Office Writer : legends, see also captions -Oracle Open Office Writer : Letter Wizard -Oracle Open Office Writer : letters -Oracle Open Office Writer : letters;creating form letters -Oracle Open Office Writer : letters;inserting envelopes -Oracle Open Office Writer : levels -Oracle Open Office Writer : levels;changing outline levels -Oracle Open Office Writer : levels;depth stagger -Oracle Open Office Writer : levels;macro security -Oracle Open Office Writer : lexicon, see thesaurus -Oracle Open Office Writer : limits of tables (Writer) -Oracle Open Office Writer : line breaks -Oracle Open Office Writer : line breaks;in cells -Oracle Open Office Writer : line breaks;removing -Oracle Open Office Writer : line charts -Oracle Open Office Writer : line numbers -Oracle Open Office Writer : line spacing -Oracle Open Office Writer : line spacing;context menu in paragraphs -Oracle Open Office Writer : line spacing;paragraph -Oracle Open Office Writer : line styles -Oracle Open Office Writer : line styles;applying -Oracle Open Office Writer : line styles;defining -Oracle Open Office Writer : lines -Oracle Open Office Writer : lines;automatic drawing on/off -Oracle Open Office Writer : lines;defining ends -Oracle Open Office Writer : lines;draw functions -Oracle Open Office Writer : lines;drawing in text -Oracle Open Office Writer : lines;editing points -Oracle Open Office Writer : lines;footnotes/endnotes -Oracle Open Office Writer : lines;inserting horizontal lines -Oracle Open Office Writer : lines;removing automatic lines -Oracle Open Office Writer : lines;under headers/above footers -Oracle Open Office Writer : lines of text -Oracle Open Office Writer : lines of text;alignment -Oracle Open Office Writer : lines of text;indents -Oracle Open Office Writer : lines of text;numbering -Oracle Open Office Writer : lines of text;register-true -Oracle Open Office Writer : lines of text;sorting paragraphs -Oracle Open Office Writer : links -Oracle Open Office Writer : links;between cells and controls -Oracle Open Office Writer : links;by drag and drop -Oracle Open Office Writer : links;character formats -Oracle Open Office Writer : links;definition -Oracle Open Office Writer : links;editing hyperlinks -Oracle Open Office Writer : links;inserting -Oracle Open Office Writer : links;inserting sections -Oracle Open Office Writer : links;inserting text documents as -Oracle Open Office Writer : links;modifying -Oracle Open Office Writer : links;opening files with -Oracle Open Office Writer : links;relational databases (Base) -Oracle Open Office Writer : links;text frames -Oracle Open Office Writer : links;turning off automatic recognition -Oracle Open Office Writer : links;updating options (Writer) -Oracle Open Office Writer : links;updating specific links -Oracle Open Office Writer : list box creation -Oracle Open Office Writer : lists -Oracle Open Office Writer : lists;automatic numbering -Oracle Open Office Writer : lists;AutoText shortcuts -Oracle Open Office Writer : lists;changing levels -Oracle Open Office Writer : lists;combining numbered lists -Oracle Open Office Writer : lists;data assigned to controls -Oracle Open Office Writer : lists;registered databases (Base) -Oracle Open Office Writer : lists;regular expressions -Oracle Open Office Writer : lists;removing/interrupting numbering -Oracle Open Office Writer : live presentations on the Internet -Oracle Open Office Writer : loading -Oracle Open Office Writer : loading;documents -Oracle Open Office Writer : loading;documents from other formats -Oracle Open Office Writer : loading;HTML documents, automatically -Oracle Open Office Writer : loading;Microsoft Office documents with VBA code -Oracle Open Office Writer : loading;reloading -Oracle Open Office Writer : loading;styles from other files -Oracle Open Office Writer : loading;XML files -Oracle Open Office Writer : locale settings -Oracle Open Office Writer : logarithmic scaling along axes -Oracle Open Office Writer : logical expressions -Oracle Open Office Writer : lowercase letters -Oracle Open Office Writer : lowercase letters;font effects -Oracle Open Office Writer : lowercase letters;text -Oracle Open Office Writer : lowering outline levels -Oracle Open Office Writer : Macro Wizard (Base) -Oracle Open Office Writer : macros -Oracle Open Office Writer : macros;assigning to events in forms -Oracle Open Office Writer : macros;attaching new (Base) -Oracle Open Office Writer : macros;in MS Office documents -Oracle Open Office Writer : macros;interrupting -Oracle Open Office Writer : macros;organizing -Oracle Open Office Writer : macros;recording -Oracle Open Office Writer : macros;security -Oracle Open Office Writer : macros;security levels -Oracle Open Office Writer : macros;security warning dialog -Oracle Open Office Writer : macros;selecting security warnings -Oracle Open Office Writer : magnifiers -Oracle Open Office Writer : mail merge -Oracle Open Office Writer : manual hyphenation in text -Oracle Open Office Writer : manual numbering in text -Oracle Open Office Writer : manual page breaks -Oracle Open Office Writer : marginal numbers on text pages -Oracle Open Office Writer : margins -Oracle Open Office Writer : margins;pages -Oracle Open Office Writer : margins;setting with the mouse -Oracle Open Office Writer : margins;shadows -Oracle Open Office Writer : marking changes -Oracle Open Office Writer : marking, see selecting -Oracle Open Office Writer : master documents -Oracle Open Office Writer : master documents;creating/editing/exporting -Oracle Open Office Writer : master documents;indexes -Oracle Open Office Writer : master documents;properties -Oracle Open Office Writer : matching conditional text in fields -Oracle Open Office Writer : Math formula editor -Oracle Open Office Writer : mean value lines in charts -Oracle Open Office Writer : measurement units -Oracle Open Office Writer : measurement units;changing on rulers -Oracle Open Office Writer : measurement units;converting -Oracle Open Office Writer : measurement units;selecting -Oracle Open Office Writer : Media Player window -Oracle Open Office Writer : menus -Oracle Open Office Writer : menus;activating context menus -Oracle Open Office Writer : menus;assigning macros -Oracle Open Office Writer : menus;customizing -Oracle Open Office Writer : merging -Oracle Open Office Writer : merging;cells -Oracle Open Office Writer : merging;cells, by keyboard -Oracle Open Office Writer : merging;documents -Oracle Open Office Writer : merging;indexes -Oracle Open Office Writer : merging;numbered lists -Oracle Open Office Writer : merging;tables -Oracle Open Office Writer : META tags -Oracle Open Office Writer : metrics -Oracle Open Office Writer : metrics;converting -Oracle Open Office Writer : metrics;document formatting (Writer) -Oracle Open Office Writer : metrics;in sheets -Oracle Open Office Writer : Microsoft Office -Oracle Open Office Writer : Microsoft Office;Access databases (base) -Oracle Open Office Writer : Microsoft Office;as default file format -Oracle Open Office Writer : Microsoft Office;document import restrictions -Oracle Open Office Writer : Microsoft Office;feature comparisons -Oracle Open Office Writer : Microsoft Office;importing password protected files -Oracle Open Office Writer : Microsoft Office;importing Word documents -Oracle Open Office Writer : Microsoft Office;importing/exporting VBA code -Oracle Open Office Writer : Microsoft Office;new users information -Oracle Open Office Writer : Microsoft Office;opening Microsoft documents -Oracle Open Office Writer : Microsoft Office;reassigning document types -Oracle Open Office Writer : migrating macros (Base) -Oracle Open Office Writer : mirrored page layout -Oracle Open Office Writer : mobile device filters -Oracle Open Office Writer : models in XForms -Oracle Open Office Writer : modifying, see changing -Oracle Open Office Writer : months -Oracle Open Office Writer : months;automatically completing -Oracle Open Office Writer : more controls -Oracle Open Office Writer : mosaic filter -Oracle Open Office Writer : mouse -Oracle Open Office Writer : mouse;moving and copying text -Oracle Open Office Writer : mouse;pointers when using drag and drop -Oracle Open Office Writer : mouse;positioning -Oracle Open Office Writer : movies -Oracle Open Office Writer : moving -Oracle Open Office Writer : moving;headings -Oracle Open Office Writer : moving;objects and frames -Oracle Open Office Writer : moving;tab stops on ruler -Oracle Open Office Writer : moving;text sections -Oracle Open Office Writer : moving;toolbars -Oracle Open Office Writer : moving;using guide lines in presentations -Oracle Open Office Writer : MS ADO interface (Base) -Oracle Open Office Writer : multi-column text -Oracle Open Office Writer : multi-line titles in forms -Oracle Open Office Writer : multi-page tables -Oracle Open Office Writer : multi-page view of documents -Oracle Open Office Writer : multiple documents -Oracle Open Office Writer : multiple documents;indexes -Oracle Open Office Writer : multiple documents;opening -Oracle Open Office Writer : multiple selection -Oracle Open Office Writer : music -Oracle Open Office Writer : My Documents folder -Oracle Open Office Writer : My Documents folder;changing work directory -Oracle Open Office Writer : My Documents folder;opening -Oracle Open Office Writer : MySQL databases (Base) -Oracle Open Office Writer : names -Oracle Open Office Writer : names;chapter names in headers -Oracle Open Office Writer : names;multi-line titles -Oracle Open Office Writer : names;objects -Oracle Open Office Writer : names, see also labels/callouts -Oracle Open Office Writer : namespace organization in XForms -Oracle Open Office Writer : native SQL (Base) -Oracle Open Office Writer : navigating -Oracle Open Office Writer : navigating;in documents -Oracle Open Office Writer : navigating;in text, with keyboard -Oracle Open Office Writer : Navigation bar -Oracle Open Office Writer : Navigation bar;controls -Oracle Open Office Writer : Navigation bar;forms -Oracle Open Office Writer : Navigator -Oracle Open Office Writer : Navigator;comments -Oracle Open Office Writer : Navigator;contents as lists -Oracle Open Office Writer : Navigator;docking -Oracle Open Office Writer : Navigator;docking and resizing -Oracle Open Office Writer : Navigator;heading levels and chapters -Oracle Open Office Writer : Navigator;inserting hyperlinks -Oracle Open Office Writer : Navigator;master documents -Oracle Open Office Writer : Navigator;overview in texts -Oracle Open Office Writer : Navigator;working with -Oracle Open Office Writer : net charts -Oracle Open Office Writer : network identity options -Oracle Open Office Writer : networks and AutoText directories -Oracle Open Office Writer : new databases -Oracle Open Office Writer : new documents -Oracle Open Office Writer : new lines in cells -Oracle Open Office Writer : new page styles from selection -Oracle Open Office Writer : new windows -Oracle Open Office Writer : next page number in footers -Oracle Open Office Writer : non-breaking dashes -Oracle Open Office Writer : non-breaking spaces (Writer) -Oracle Open Office Writer : non-printing characters (Writer) -Oracle Open Office Writer : non-printing text -Oracle Open Office Writer : number formats -Oracle Open Office Writer : number formats;codes -Oracle Open Office Writer : number formats;formats -Oracle Open Office Writer : number formats;recognition in text tables -Oracle Open Office Writer : number of characters -Oracle Open Office Writer : number of pages -Oracle Open Office Writer : number of sheets -Oracle Open Office Writer : number of tables -Oracle Open Office Writer : number of words -Oracle Open Office Writer : numbering -Oracle Open Office Writer : numbering;captions -Oracle Open Office Writer : numbering;changing the level of -Oracle Open Office Writer : numbering;combining -Oracle Open Office Writer : numbering;headings -Oracle Open Office Writer : numbering;lines -Oracle Open Office Writer : numbering;lists, while typing -Oracle Open Office Writer : numbering;manually/by styles -Oracle Open Office Writer : numbering;options -Oracle Open Office Writer : numbering;pages -Oracle Open Office Writer : numbering;paragraphs, on and off -Oracle Open Office Writer : numbering;quotations/similar items -Oracle Open Office Writer : numbering;removing/interrupting -Oracle Open Office Writer : numbering;style categories -Oracle Open Office Writer : numbering;turning off -Oracle Open Office Writer : numbering;using automatically -Oracle Open Office Writer : numbers -Oracle Open Office Writer : numbers;automatic recognition in text tables -Oracle Open Office Writer : numbers;date, time and currency formats -Oracle Open Office Writer : numbers;line numbering -Oracle Open Office Writer : numbers;lists -Oracle Open Office Writer : numerical fields in forms -Oracle Open Office Writer : objects -Oracle Open Office Writer : objects;always moveable (Impress/Draw) -Oracle Open Office Writer : objects;anchoring options -Oracle Open Office Writer : objects;arranging within stacks -Oracle Open Office Writer : objects;captioning -Oracle Open Office Writer : objects;captioning automatically -Oracle Open Office Writer : objects;contour wrap -Oracle Open Office Writer : objects;copying when moving in presentations -Oracle Open Office Writer : objects;cross-referencing -Oracle Open Office Writer : objects;defining borders -Oracle Open Office Writer : objects;defining hyperlinks -Oracle Open Office Writer : objects;definition -Oracle Open Office Writer : objects;displaying in spreadsheets -Oracle Open Office Writer : objects;displaying in text documents -Oracle Open Office Writer : objects;editing -Oracle Open Office Writer : objects;finding by Navigator -Oracle Open Office Writer : objects;inserting from Gallery -Oracle Open Office Writer : objects;inserting OLE objects -Oracle Open Office Writer : objects;moving and resizing with keyboard -Oracle Open Office Writer : objects;moving and resizing with mouse -Oracle Open Office Writer : objects;naming -Oracle Open Office Writer : objects;opening -Oracle Open Office Writer : objects;properties of charts -Oracle Open Office Writer : objects;quickly moving to -Oracle Open Office Writer : objects;quickly moving to, within text -Oracle Open Office Writer : objects;titles and descriptions -Oracle Open Office Writer : ODBC -Oracle Open Office Writer : ODBC;database (Base) -Oracle Open Office Writer : ODBC;definition -Oracle Open Office Writer : ODF file formats -Oracle Open Office Writer : Office -Oracle Open Office Writer : Office;Microsoft Office and Oracle Open Office -Oracle Open Office Writer : OLE -Oracle Open Office Writer : OLE;definition -Oracle Open Office Writer : OLE objects -Oracle Open Office Writer : OLE objects;arranging within stacks -Oracle Open Office Writer : OLE objects;borders -Oracle Open Office Writer : OLE objects;captions (Writer) -Oracle Open Office Writer : OLE objects;cross-referencing -Oracle Open Office Writer : OLE objects;inserting -Oracle Open Office Writer : OLE objects;inserting tables in -Oracle Open Office Writer : OLE objects;number of -Oracle Open Office Writer : OLE objects;protecting -Oracle Open Office Writer : one and a half line spacing in text -Oracle Open Office Writer : online feedback options -Oracle Open Office Writer : online registration -Oracle Open Office Writer : online update options -Oracle Open Office Writer : online updates -Oracle Open Office Writer : online updates;checking automatically -Oracle Open Office Writer : online updates;checking manually -Oracle Open Office Writer : OpenDocument file formats -Oracle Open Office Writer : OpenGL -Oracle Open Office Writer : OpenGL;definition -Oracle Open Office Writer : opening -Oracle Open Office Writer : opening;context menus -Oracle Open Office Writer : opening;database files -Oracle Open Office Writer : opening;dialog settings -Oracle Open Office Writer : opening;documents -Oracle Open Office Writer : opening;documents from other formats -Oracle Open Office Writer : opening;documents on WebDAV server -Oracle Open Office Writer : opening;files with links -Oracle Open Office Writer : opening;files, with placeholders -Oracle Open Office Writer : opening;forms -Oracle Open Office Writer : opening;Microsoft Office files -Oracle Open Office Writer : opening;mobile device documents -Oracle Open Office Writer : opening;objects -Oracle Open Office Writer : opening;reports -Oracle Open Office Writer : opening;several files -Oracle Open Office Writer : opening;XForms -Oracle Open Office Writer : operators -Oracle Open Office Writer : operators;default filters -Oracle Open Office Writer : operators;in formulas -Oracle Open Office Writer : optional hyphens (Writer) -Oracle Open Office Writer : options -Oracle Open Office Writer : options;accessibility -Oracle Open Office Writer : options;appearance -Oracle Open Office Writer : options;compatibility (Writer) -Oracle Open Office Writer : options;improvement program -Oracle Open Office Writer : options;network identity -Oracle Open Office Writer : options;online update -Oracle Open Office Writer : options;smart tags -Oracle Open Office Writer : options;tools -Oracle Open Office Writer : Oracle databases (base) -Oracle Open Office Writer : Oracle Open Office Base data sources -Oracle Open Office Writer : Oracle Open Office Basic scripts in HTML documents -Oracle Open Office Writer : Oracle Open Office documents -Oracle Open Office Writer : Oracle Open Office documents;mobile device filters -Oracle Open Office Writer : Oracle Open Office documents;viewing and editing in Internet Explorer -Oracle Open Office Writer : Oracle Open Office Math start -Oracle Open Office Writer : Oracle Open Office Writer -Oracle Open Office Writer : Oracle Open Office Writer;instructions -Oracle Open Office Writer : Oracle Open Office Writer;special HTML tags -Oracle Open Office Writer : order of chart data -Oracle Open Office Writer : ordering -Oracle Open Office Writer : ordering;objects -Oracle Open Office Writer : ordering;printing in reverse order -Oracle Open Office Writer : ordinal numbers -Oracle Open Office Writer : ordinal numbers;replacing -Oracle Open Office Writer : organizing -Oracle Open Office Writer : organizing;footnotes -Oracle Open Office Writer : organizing;macros and scripts -Oracle Open Office Writer : organizing;namespaces in XForms -Oracle Open Office Writer : organizing;styles -Oracle Open Office Writer : organizing;templates -Oracle Open Office Writer : organizing;templates (guide) -Oracle Open Office Writer : orientation of pages -Oracle Open Office Writer : original size -Oracle Open Office Writer : original size;printing in Oracle Open Office Math -Oracle Open Office Writer : original size;restoring after cropping -Oracle Open Office Writer : orphans -Oracle Open Office Writer : outlines -Oracle Open Office Writer : outlines;arranging chapters -Oracle Open Office Writer : outlines;font effects -Oracle Open Office Writer : outlines;numbering -Oracle Open Office Writer : outlines;outline symbols -Oracle Open Office Writer : outlines;sending to presentations -Oracle Open Office Writer : overviews -Oracle Open Office Writer : overviews;Navigator in text documents -Oracle Open Office Writer : overviews;printing multi-page view -Oracle Open Office Writer : overwrite mode -Oracle Open Office Writer : packages, see extensions -Oracle Open Office Writer : page breaks -Oracle Open Office Writer : page breaks;displaying (Calc) -Oracle Open Office Writer : page breaks;inserting and deleting -Oracle Open Office Writer : page breaks;tables -Oracle Open Office Writer : page counts -Oracle Open Office Writer : page formats -Oracle Open Office Writer : page formats;changing individual pages -Oracle Open Office Writer : page formats;maximizing -Oracle Open Office Writer : page formats;restriction -Oracle Open Office Writer : page margins on rulers -Oracle Open Office Writer : page numbers -Oracle Open Office Writer : page numbers;continuation pages -Oracle Open Office Writer : page numbers;footers -Oracle Open Office Writer : page numbers;inserting/defining/formatting -Oracle Open Office Writer : page styles -Oracle Open Office Writer : page styles;backgrounds -Oracle Open Office Writer : page styles;changing -Oracle Open Office Writer : page styles;changing from selection -Oracle Open Office Writer : page styles;creating and applying -Oracle Open Office Writer : page styles;editing/applying with statusbar -Oracle Open Office Writer : page styles;left and right pages -Oracle Open Office Writer : page styles;orientation/scope -Oracle Open Office Writer : page styles;page numbering -Oracle Open Office Writer : page styles;style categories -Oracle Open Office Writer : pages -Oracle Open Office Writer : pages;backgrounds -Oracle Open Office Writer : pages;backgrounds in all applications -Oracle Open Office Writer : pages;continuation pages -Oracle Open Office Writer : pages;defining borders -Oracle Open Office Writer : pages;formatting and numbering -Oracle Open Office Writer : pages;inserting/deleting page breaks -Oracle Open Office Writer : pages;jumping to -Oracle Open Office Writer : pages;left and right pages -Oracle Open Office Writer : pages;number of -Oracle Open Office Writer : pages;numbers and count of -Oracle Open Office Writer : pages;orientation -Oracle Open Office Writer : pages;previews -Oracle Open Office Writer : pages;printing multiple on one sheet -Oracle Open Office Writer : pages;printing page names in presentations -Oracle Open Office Writer : pages;register-true -Oracle Open Office Writer : pages;scaling -Oracle Open Office Writer : pages;selecting one to print -Oracle Open Office Writer : paint box -Oracle Open Office Writer : paint can symbol -Oracle Open Office Writer : pair kerning -Oracle Open Office Writer : Palm file filters -Oracle Open Office Writer : paper formats -Oracle Open Office Writer : paper orientation -Oracle Open Office Writer : paper size warning -Oracle Open Office Writer : paper tray selection -Oracle Open Office Writer : paper trays -Oracle Open Office Writer : paragraph marks -Oracle Open Office Writer : paragraph marks;displaying (Writer) -Oracle Open Office Writer : paragraph marks;finding & replacing -Oracle Open Office Writer : paragraph styles -Oracle Open Office Writer : paragraph styles;languages -Oracle Open Office Writer : paragraph styles;modifying basic fonts -Oracle Open Office Writer : paragraph styles;numbering -Oracle Open Office Writer : paragraph styles;style categories -Oracle Open Office Writer : paragraphs -Oracle Open Office Writer : paragraphs;alignment -Oracle Open Office Writer : paragraphs;Asian typography -Oracle Open Office Writer : paragraphs;automatic numbering -Oracle Open Office Writer : paragraphs;backgrounds -Oracle Open Office Writer : paragraphs;bulleted -Oracle Open Office Writer : paragraphs;defining borders -Oracle Open Office Writer : paragraphs;hidden paragraphs (Writer) -Oracle Open Office Writer : paragraphs;hiding -Oracle Open Office Writer : paragraphs;increasing indents of -Oracle Open Office Writer : paragraphs;indents -Oracle Open Office Writer : paragraphs;indents, margins and columns -Oracle Open Office Writer : paragraphs;inserting before/after tables -Oracle Open Office Writer : paragraphs;inserting bullets -Oracle Open Office Writer : paragraphs;joining -Oracle Open Office Writer : paragraphs;keeping together at breaks -Oracle Open Office Writer : paragraphs;line numbers -Oracle Open Office Writer : paragraphs;moving by keyboard -Oracle Open Office Writer : paragraphs;numbering automatically -Oracle Open Office Writer : paragraphs;numbering non-consecutive -Oracle Open Office Writer : paragraphs;numbering on/off -Oracle Open Office Writer : paragraphs;register-true -Oracle Open Office Writer : paragraphs;removing blank ones -Oracle Open Office Writer : paragraphs;spacing -Oracle Open Office Writer : paragraphs;tab stops -Oracle Open Office Writer : parameters -Oracle Open Office Writer : parameters;command line -Oracle Open Office Writer : parameters;queries (Base) -Oracle Open Office Writer : passwords for protecting contents -Oracle Open Office Writer : pasting -Oracle Open Office Writer : pasting;cell ranges -Oracle Open Office Writer : pasting;cell ranges from spreadsheets -Oracle Open Office Writer : pasting;cut/copied text sections -Oracle Open Office Writer : pasting;data from text documents -Oracle Open Office Writer : pasting;draw objects -Oracle Open Office Writer : pasting;draw objects from other documents -Oracle Open Office Writer : pasting;formatted/unformatted text -Oracle Open Office Writer : pasting;from data source view -Oracle Open Office Writer : pasting;from data sources to Oracle Open Office Calc -Oracle Open Office Writer : pasting;pictures from other documents -Oracle Open Office Writer : pasting;results of formulas -Oracle Open Office Writer : pasting;sheet areas in text documents -Oracle Open Office Writer : pasting;to Gallery -Oracle Open Office Writer : paths -Oracle Open Office Writer : paths;changing work directory -Oracle Open Office Writer : paths;defaults -Oracle Open Office Writer : pattern editor -Oracle Open Office Writer : pattern fields -Oracle Open Office Writer : pattern fields;form functions -Oracle Open Office Writer : patterns for objects -Oracle Open Office Writer : PDF -Oracle Open Office Writer : PDF;export -Oracle Open Office Writer : PDF;PostScript to PDF converter, UNIX -Oracle Open Office Writer : personal data input -Oracle Open Office Writer : phonetic guide -Oracle Open Office Writer : picklist creation -Oracle Open Office Writer : pictures -Oracle Open Office Writer : pictures;adding to Gallery -Oracle Open Office Writer : pictures;anchoring options -Oracle Open Office Writer : pictures;arranging within stacks -Oracle Open Office Writer : pictures;assigning macros -Oracle Open Office Writer : pictures;backgrounds -Oracle Open Office Writer : pictures;borders -Oracle Open Office Writer : pictures;captions (Writer) -Oracle Open Office Writer : pictures;changing paths -Oracle Open Office Writer : pictures;cropping and zooming -Oracle Open Office Writer : pictures;cross-referencing -Oracle Open Office Writer : pictures;defining hyperlinks -Oracle Open Office Writer : pictures;displaying in Calc -Oracle Open Office Writer : pictures;displaying in Writer (Writer) -Oracle Open Office Writer : pictures;do not show -Oracle Open Office Writer : pictures;drag and drop between documents -Oracle Open Office Writer : pictures;drawing -Oracle Open Office Writer : pictures;editing -Oracle Open Office Writer : pictures;filters -Oracle Open Office Writer : pictures;ImageMap -Oracle Open Office Writer : pictures;inserting automatically -Oracle Open Office Writer : pictures;inserting by dialog -Oracle Open Office Writer : pictures;inserting from Draw -Oracle Open Office Writer : pictures;inserting from Gallery -Oracle Open Office Writer : pictures;inserting from Gallery into text -Oracle Open Office Writer : pictures;inserting options -Oracle Open Office Writer : pictures;number of -Oracle Open Office Writer : pictures;printing -Oracle Open Office Writer : pictures;scaling/resizing -Oracle Open Office Writer : pictures;scanning -Oracle Open Office Writer : pie charts -Oracle Open Office Writer : pie charts;options -Oracle Open Office Writer : pie charts;types -Oracle Open Office Writer : pixel editor -Oracle Open Office Writer : pixel graphics -Oracle Open Office Writer : pixel graphics;inserting and editing -Oracle Open Office Writer : pixel patterns -Oracle Open Office Writer : placeholders -Oracle Open Office Writer : placeholders;in SQL queries -Oracle Open Office Writer : placeholders;on opening files -Oracle Open Office Writer : placing toolbars -Oracle Open Office Writer : playing movies and sound files -Oracle Open Office Writer : plotting data as charts -Oracle Open Office Writer : plug-ins -Oracle Open Office Writer : plug-ins;activating and deactivating -Oracle Open Office Writer : plug-ins;definition -Oracle Open Office Writer : plug-ins;inserting -Oracle Open Office Writer : pocket device appliances -Oracle Open Office Writer : Pocket PC file filters -Oracle Open Office Writer : points -Oracle Open Office Writer : points;reducing editing points when snapping (Impress/Draw) -Oracle Open Office Writer : polygon drawing -Oracle Open Office Writer : pop-art filter -Oracle Open Office Writer : portable document format -Oracle Open Office Writer : portrait and landscape -Oracle Open Office Writer : positioning -Oracle Open Office Writer : positioning;axes -Oracle Open Office Writer : positioning;draw objects and controls -Oracle Open Office Writer : positioning;fonts -Oracle Open Office Writer : positioning;objects -Oracle Open Office Writer : positioning;objects (guide) -Oracle Open Office Writer : positioning;toolbars -Oracle Open Office Writer : post method for form transmissions -Oracle Open Office Writer : posterizing filter -Oracle Open Office Writer : PostScript -Oracle Open Office Writer : PostScript;creating files -Oracle Open Office Writer : PostScript;PDF converter, UNIX -Oracle Open Office Writer : PowerPoint export -Oracle Open Office Writer : precision as shown (Calc) -Oracle Open Office Writer : predefining fonts -Oracle Open Office Writer : predictive text, see also AutoCorrect function/AutoFill function/AutoInput function/word completion/text completion -Oracle Open Office Writer : presentations -Oracle Open Office Writer : presentations;creating/opening -Oracle Open Office Writer : presentations;inserting spreadsheet cells -Oracle Open Office Writer : presentations;live on the Internet -Oracle Open Office Writer : presentations;print menu -Oracle Open Office Writer : presentations;saving -Oracle Open Office Writer : presentations;saving automatically -Oracle Open Office Writer : presentations;saving in other formats -Oracle Open Office Writer : presentations;sending as e-mail -Oracle Open Office Writer : presentations;starting with wizard -Oracle Open Office Writer : presentations;wizards -Oracle Open Office Writer : Presenter Console shortcuts -Oracle Open Office Writer : press buttons, see push buttons -Oracle Open Office Writer : previews -Oracle Open Office Writer : previews;book preview -Oracle Open Office Writer : previews;fonts lists -Oracle Open Office Writer : previews;print layouts -Oracle Open Office Writer : primary keys -Oracle Open Office Writer : primary keys;defining -Oracle Open Office Writer : primary keys;design view -Oracle Open Office Writer : primary keys;inserting (Base) -Oracle Open Office Writer : print area selection -Oracle Open Office Writer : print layout checks -Oracle Open Office Writer : printer metrics for document formatting (Writer) -Oracle Open Office Writer : printers -Oracle Open Office Writer : printers;adding, UNIX -Oracle Open Office Writer : printers;choosing -Oracle Open Office Writer : printers;default printer -Oracle Open Office Writer : printers;faxes under UNIX -Oracle Open Office Writer : printers;maximum page formats -Oracle Open Office Writer : printers;paper trays -Oracle Open Office Writer : printers;properties -Oracle Open Office Writer : printing -Oracle Open Office Writer : printing;AutoText shortcuts -Oracle Open Office Writer : printing;black and white -Oracle Open Office Writer : printing;brochures -Oracle Open Office Writer : printing;colors in grayscale -Oracle Open Office Writer : printing;comments -Oracle Open Office Writer : printing;copies -Oracle Open Office Writer : printing;creating individual jobs -Oracle Open Office Writer : printing;dates in presentations -Oracle Open Office Writer : printing;directly -Oracle Open Office Writer : printing;documents -Oracle Open Office Writer : printing;drawings defaults -Oracle Open Office Writer : printing;elements in text documents -Oracle Open Office Writer : printing;faster -Oracle Open Office Writer : printing;fitting to pages in Oracle Open Office Math -Oracle Open Office Writer : printing;fitting to pages in presentations -Oracle Open Office Writer : printing;formulas in Oracle Open Office Math -Oracle Open Office Writer : printing;hidden pages of presentations -Oracle Open Office Writer : printing;hiding text frames from printing -Oracle Open Office Writer : printing;in original size in Oracle Open Office Math -Oracle Open Office Writer : printing;individual brochures -Oracle Open Office Writer : printing;left/right pages -Oracle Open Office Writer : printing;multiple pages per sheet -Oracle Open Office Writer : printing;portrait/landscape format -Oracle Open Office Writer : printing;previews -Oracle Open Office Writer : printing;queries (Base) -Oracle Open Office Writer : printing;reverse order -Oracle Open Office Writer : printing;scaling in Oracle Open Office Math -Oracle Open Office Writer : printing;selections -Oracle Open Office Writer : printing;text always in black -Oracle Open Office Writer : printing;text in reverse order -Oracle Open Office Writer : printing;tiling pages in presentations -Oracle Open Office Writer : printing;transparencies -Oracle Open Office Writer : printing;warnings -Oracle Open Office Writer : printing;without scaling in presentations -Oracle Open Office Writer : printing speed -Oracle Open Office Writer : programming -Oracle Open Office Writer : programming;Oracle Open Office -Oracle Open Office Writer : programming;scripting -Oracle Open Office Writer : promoting heading levels -Oracle Open Office Writer : properties -Oracle Open Office Writer : properties;charts -Oracle Open Office Writer : properties;fields -Oracle Open Office Writer : properties;fields in databases -Oracle Open Office Writer : properties;files -Oracle Open Office Writer : properties;form controls -Oracle Open Office Writer : properties;forms -Oracle Open Office Writer : properties;printers -Oracle Open Office Writer : properties;smooth lines in line charts/XY charts -Oracle Open Office Writer : proportional distribution of tables -Oracle Open Office Writer : protected contents -Oracle Open Office Writer : protected dashes -Oracle Open Office Writer : protected database tables -Oracle Open Office Writer : protected documents -Oracle Open Office Writer : protected spaces -Oracle Open Office Writer : protected spaces;inserting -Oracle Open Office Writer : protected spaces;showing (Writer) -Oracle Open Office Writer : protecting -Oracle Open Office Writer : protecting;contents -Oracle Open Office Writer : protecting;recorded changes -Oracle Open Office Writer : protecting;sections -Oracle Open Office Writer : protecting;tables and sections -Oracle Open Office Writer : protecting;text flow -Oracle Open Office Writer : proxy settings -Oracle Open Office Writer : push buttons -Oracle Open Office Writer : push buttons;adding to documents -Oracle Open Office Writer : push buttons;creating -Oracle Open Office Writer : queries -Oracle Open Office Writer : queries;copying (Base) -Oracle Open Office Writer : queries;creating in design view (Base) -Oracle Open Office Writer : queries;creating in SQL view -Oracle Open Office Writer : queries;defining (Base) -Oracle Open Office Writer : queries;deleting table links (Base) -Oracle Open Office Writer : queries;editing in data source view -Oracle Open Office Writer : queries;formulating filter conditions (Base) -Oracle Open Office Writer : queries;joining tables (Base) -Oracle Open Office Writer : queries;missing elements (Base) -Oracle Open Office Writer : queries;overview (Base) -Oracle Open Office Writer : queries;parameter queries (Base) -Oracle Open Office Writer : queries;printing (Base) -Oracle Open Office Writer : Query Wizard (Base) -Oracle Open Office Writer : Quickstarter -Oracle Open Office Writer : quotation marks -Oracle Open Office Writer : quotation marks;changing automatically -Oracle Open Office Writer : quotes -Oracle Open Office Writer : quotes;custom -Oracle Open Office Writer : radar charts, see net charts -Oracle Open Office Writer : radio button creation -Oracle Open Office Writer : read-only documents -Oracle Open Office Writer : read-only documents;cursor -Oracle Open Office Writer : read-only documents;database tables on/off -Oracle Open Office Writer : read-only documents;editing -Oracle Open Office Writer : read-only documents;opening documents as -Oracle Open Office Writer : read-only items in Data Navigator -Oracle Open Office Writer : read-only sections -Oracle Open Office Writer : rearranging headings -Oracle Open Office Writer : recognition -Oracle Open Office Writer : recognition;languages -Oracle Open Office Writer : recognition;numbers -Oracle Open Office Writer : recognizing URLs automatically -Oracle Open Office Writer : recording -Oracle Open Office Writer : recording;changes -Oracle Open Office Writer : recording;macros -Oracle Open Office Writer : records -Oracle Open Office Writer : records;inserting comments -Oracle Open Office Writer : records;protecting -Oracle Open Office Writer : records;saving -Oracle Open Office Writer : records;searching in databases -Oracle Open Office Writer : rectangles with round corners -Oracle Open Office Writer : recursions in spreadsheets -Oracle Open Office Writer : redo command -Oracle Open Office Writer : reduced printing -Oracle Open Office Writer : reduced printing of multiple pages -Oracle Open Office Writer : reducing rows and columns in text tables -Oracle Open Office Writer : reference lines -Oracle Open Office Writer : references -Oracle Open Office Writer : references;displaying in color (Calc) -Oracle Open Office Writer : references;expanding (Calc) -Oracle Open Office Writer : references;in Writer tables -Oracle Open Office Writer : references;inserting cross-references -Oracle Open Office Writer : references;iterative (Calc) -Oracle Open Office Writer : references;modifying cross-references -Oracle Open Office Writer : refusing word completions -Oracle Open Office Writer : register-true -Oracle Open Office Writer : register-true;definition -Oracle Open Office Writer : register-true;pages and paragraphs -Oracle Open Office Writer : registering -Oracle Open Office Writer : registering;address books -Oracle Open Office Writer : registering;databases (Base) -Oracle Open Office Writer : registering;Oracle Open Office -Oracle Open Office Writer : regression curves in charts -Oracle Open Office Writer : regular expressions -Oracle Open Office Writer : regular expressions;list of -Oracle Open Office Writer : regular expressions;searching -Oracle Open Office Writer : rejecting word completions -Oracle Open Office Writer : related words in thesaurus -Oracle Open Office Writer : relational databases (Base) -Oracle Open Office Writer : relations -Oracle Open Office Writer : relations;creating and deleting (Base) -Oracle Open Office Writer : relations;joining tables (Base) -Oracle Open Office Writer : relations;properties (Base) -Oracle Open Office Writer : relative distribution of table cells -Oracle Open Office Writer : relative hyperlinks -Oracle Open Office Writer : relative saving of URLs -Oracle Open Office Writer : reloading -Oracle Open Office Writer : reloading;documents -Oracle Open Office Writer : reloading;HTML documents, automatically -Oracle Open Office Writer : remarks, see also comments -Oracle Open Office Writer : remote configurations -Oracle Open Office Writer : remove noise filter -Oracle Open Office Writer : removing -Oracle Open Office Writer : removing;bullets and numbering -Oracle Open Office Writer : removing;bullets in text documents -Oracle Open Office Writer : removing;cell protection in text documents -Oracle Open Office Writer : removing;form filters -Oracle Open Office Writer : removing;subdocuments -Oracle Open Office Writer : removing, see also deleting -Oracle Open Office Writer : reorganizing charts -Oracle Open Office Writer : repeating -Oracle Open Office Writer : repeating;commands -Oracle Open Office Writer : repeating;table headings after page breaks -Oracle Open Office Writer : replacement options -Oracle Open Office Writer : replacement table -Oracle Open Office Writer : replacing -Oracle Open Office Writer : replacing;AutoCorrect function -Oracle Open Office Writer : replacing;dashes -Oracle Open Office Writer : replacing;databases -Oracle Open Office Writer : replacing;fields, by text -Oracle Open Office Writer : replacing;objects from Gallery -Oracle Open Office Writer : replacing;ordinal numbers -Oracle Open Office Writer : replacing;tab stops (regular expressions) -Oracle Open Office Writer : replacing;text and text formats -Oracle Open Office Writer : Report Builder -Oracle Open Office Writer : reports -Oracle Open Office Writer : reports;creating -Oracle Open Office Writer : reports;error reports -Oracle Open Office Writer : reports;opening and editing -Oracle Open Office Writer : reports;templates -Oracle Open Office Writer : resetting -Oracle Open Office Writer : resetting;fonts -Oracle Open Office Writer : resetting;templates -Oracle Open Office Writer : resizing -Oracle Open Office Writer : resizing;aspect ratio -Oracle Open Office Writer : resizing;objects and frames, by keyboard -Oracle Open Office Writer : resizing;objects, by mouse -Oracle Open Office Writer : resizing;rows and columns in text tables -Oracle Open Office Writer : resizing;text frames, by mouse -Oracle Open Office Writer : resizing;windows -Oracle Open Office Writer : resizing, see also scaling/zooming -Oracle Open Office Writer : resolution when printing bitmaps -Oracle Open Office Writer : restoring -Oracle Open Office Writer : restoring;default formatting -Oracle Open Office Writer : restoring;editing -Oracle Open Office Writer : reversing printing order -Oracle Open Office Writer : review function -Oracle Open Office Writer : review function;accepting or rejecting changes -Oracle Open Office Writer : review function;comparing documents -Oracle Open Office Writer : review function;protecting records -Oracle Open Office Writer : review function;recording changes example -Oracle Open Office Writer : rich text control -Oracle Open Office Writer : right alignment of paragraphs -Oracle Open Office Writer : right indents in paragraphs -Oracle Open Office Writer : right joins (Base) -Oracle Open Office Writer : right pages -Oracle Open Office Writer : right-to-left text -Oracle Open Office Writer : rising outline levels -Oracle Open Office Writer : rotating -Oracle Open Office Writer : rotating;3D text -Oracle Open Office Writer : rotating;text -Oracle Open Office Writer : round corners -Oracle Open Office Writer : rounding precision (Calc) -Oracle Open Office Writer : row breaks in text tables -Oracle Open Office Writer : row headers -Oracle Open Office Writer : row headers;displaying (Calc) -Oracle Open Office Writer : row headers;highlighting (Calc) -Oracle Open Office Writer : rows -Oracle Open Office Writer : rows;inserting in tables, using icon -Oracle Open Office Writer : rows;inserting/deleting in tables by keyboard -Oracle Open Office Writer : rows;register-true text -Oracle Open Office Writer : rows;selecting -Oracle Open Office Writer : rulers -Oracle Open Office Writer : rulers;default settings -Oracle Open Office Writer : rulers;measurement units -Oracle Open Office Writer : rulers;using rulers -Oracle Open Office Writer : rulers;visible in presentations -Oracle Open Office Writer : rules -Oracle Open Office Writer : running titles in headers -Oracle Open Office Writer : samples and templates -Oracle Open Office Writer : saving -Oracle Open Office Writer : saving;default file formats -Oracle Open Office Writer : saving;dialog settings -Oracle Open Office Writer : saving;documents -Oracle Open Office Writer : saving;documents for mobile devices -Oracle Open Office Writer : saving;documents in other formats -Oracle Open Office Writer : saving;documents, automatically -Oracle Open Office Writer : saving;in HTML format -Oracle Open Office Writer : saving;in Microsoft Office file format -Oracle Open Office Writer : saving;options -Oracle Open Office Writer : saving;templates -Oracle Open Office Writer : saving;to XML -Oracle Open Office Writer : saving;VBA code in Microsoft Office documents -Oracle Open Office Writer : saving;with password by default -Oracle Open Office Writer : saving as command -Oracle Open Office Writer : saving as command;precautions -Oracle Open Office Writer : scaling -Oracle Open Office Writer : scaling;axes -Oracle Open Office Writer : scaling;font sizes in user interface -Oracle Open Office Writer : scaling;objects -Oracle Open Office Writer : scaling;pictures -Oracle Open Office Writer : scaling;printing in Oracle Open Office Math -Oracle Open Office Writer : scaling;text frames, by mouse -Oracle Open Office Writer : scaling;text in charts -Oracle Open Office Writer : scaling;when printing presentations -Oracle Open Office Writer : scaling, see also zooming -Oracle Open Office Writer : scanning pictures -Oracle Open Office Writer : scatter charts -Oracle Open Office Writer : scope of page styles -Oracle Open Office Writer : screen -Oracle Open Office Writer : screen;full screen views -Oracle Open Office Writer : screen;scaling -Oracle Open Office Writer : screen magnifiers -Oracle Open Office Writer : screen readers -Oracle Open Office Writer : script organization -Oracle Open Office Writer : scrollbars -Oracle Open Office Writer : scrollbars;controls -Oracle Open Office Writer : scrollbars;displaying (Calc) -Oracle Open Office Writer : scrollbars;horizontal and vertical (Writer) -Oracle Open Office Writer : search criteria for database functions in cells -Oracle Open Office Writer : search engines -Oracle Open Office Writer : search engines;definition -Oracle Open Office Writer : search engines;selecting -Oracle Open Office Writer : searching -Oracle Open Office Writer : searching;all sheets -Oracle Open Office Writer : searching;cross-references -Oracle Open Office Writer : searching;databases -Oracle Open Office Writer : searching;form filters -Oracle Open Office Writer : searching;formats -Oracle Open Office Writer : searching;Internet -Oracle Open Office Writer : searching;repeating a search -Oracle Open Office Writer : searching;synonyms -Oracle Open Office Writer : searching;tables and forms -Oracle Open Office Writer : searching;with wildcards -Oracle Open Office Writer : searching, see also finding -Oracle Open Office Writer : secondary axes in charts -Oracle Open Office Writer : sections -Oracle Open Office Writer : sections;backgrounds -Oracle Open Office Writer : sections;columns in/use of -Oracle Open Office Writer : sections;defining conditions -Oracle Open Office Writer : sections;editing -Oracle Open Office Writer : sections;hiding -Oracle Open Office Writer : sections;inserting -Oracle Open Office Writer : sections;inserting external content -Oracle Open Office Writer : sections;inserting sections by DDE -Oracle Open Office Writer : sections;moving and copying -Oracle Open Office Writer : sections;protecting/unprotecting -Oracle Open Office Writer : security -Oracle Open Office Writer : security;digital signatures -Oracle Open Office Writer : security;options for documents with macros -Oracle Open Office Writer : security;protecting contents -Oracle Open Office Writer : security;security levels for macros -Oracle Open Office Writer : security;warning dialogs with macros -Oracle Open Office Writer : selecting -Oracle Open Office Writer : selecting;controls -Oracle Open Office Writer : selecting;measurement units -Oracle Open Office Writer : selecting;objects -Oracle Open Office Writer : selecting;paper trays -Oracle Open Office Writer : selecting;print areas -Oracle Open Office Writer : selecting;several files -Oracle Open Office Writer : selecting;tables -Oracle Open Office Writer : selecting;text, with keyboard -Oracle Open Office Writer : selection clipboard -Oracle Open Office Writer : selection frames -Oracle Open Office Writer : selection modes in text -Oracle Open Office Writer : sending -Oracle Open Office Writer : sending;AutoAbstract function in presentations -Oracle Open Office Writer : sending;documents as e-mail -Oracle Open Office Writer : sending;documents as faxes -Oracle Open Office Writer : separation, see hyphenation -Oracle Open Office Writer : separator lines -Oracle Open Office Writer : separator lines;AutoFormat function -Oracle Open Office Writer : separator lines;defining -Oracle Open Office Writer : separators -Oracle Open Office Writer : separators;conditional -Oracle Open Office Writer : serial letters -Oracle Open Office Writer : Server Side ImageMap -Oracle Open Office Writer : settings -Oracle Open Office Writer : settings;direct cursor -Oracle Open Office Writer : settings;printers -Oracle Open Office Writer : settings;program configuration -Oracle Open Office Writer : settings;proxies -Oracle Open Office Writer : settings;tracking changes -Oracle Open Office Writer : settings;views -Oracle Open Office Writer : settings;word completion -Oracle Open Office Writer : SGML -Oracle Open Office Writer : SGML;definition -Oracle Open Office Writer : shadows -Oracle Open Office Writer : shadows;areas -Oracle Open Office Writer : shadows;borders -Oracle Open Office Writer : shadows;characters -Oracle Open Office Writer : shadows;characters, using context menu -Oracle Open Office Writer : shadows;headers/footers -Oracle Open Office Writer : sharing documents -Oracle Open Office Writer : sharpening filter -Oracle Open Office Writer : sheet tabs -Oracle Open Office Writer : sheet tabs;displaying -Oracle Open Office Writer : sheets -Oracle Open Office Writer : sheets;searching all -Oracle Open Office Writer : shortcut keys -Oracle Open Office Writer : shortcut keys;assigning macros -Oracle Open Office Writer : shortcut keys;bold formatting -Oracle Open Office Writer : shortcut keys;charts -Oracle Open Office Writer : shortcut keys;general -Oracle Open Office Writer : shortcut keys;in databases -Oracle Open Office Writer : shortcut keys;in text documents -Oracle Open Office Writer : shortcut keys;Oracle Open Office accessibility -Oracle Open Office Writer : showing -Oracle Open Office Writer : showing;changes -Oracle Open Office Writer : showing;docked windows -Oracle Open Office Writer : showing;drawings and controls (Writer) -Oracle Open Office Writer : showing;live presentations on the Internet -Oracle Open Office Writer : showing;rulers -Oracle Open Office Writer : showing;toolbars -Oracle Open Office Writer : sideways orientation of pages -Oracle Open Office Writer : signing documents with digital signatures -Oracle Open Office Writer : similarity search -Oracle Open Office Writer : simple handles (Writer) -Oracle Open Office Writer : simplified Chinese -Oracle Open Office Writer : simplified Chinese;translating to traditional Chinese -Oracle Open Office Writer : single sign on options -Oracle Open Office Writer : single-line spacing in text -Oracle Open Office Writer : sizes -Oracle Open Office Writer : sizes;draw objects -Oracle Open Office Writer : sizes;pictures -Oracle Open Office Writer : slanting draw objects -Oracle Open Office Writer : small capitals -Oracle Open Office Writer : small capitals (guide) -Oracle Open Office Writer : small icons -Oracle Open Office Writer : smart tag configuration -Oracle Open Office Writer : smart tags -Oracle Open Office Writer : smooth scrolling (Writer) -Oracle Open Office Writer : smoothing filter -Oracle Open Office Writer : snap grid defaults (Writer/Calc) -Oracle Open Office Writer : snapping in presentations and drawings -Oracle Open Office Writer : solarization filter -Oracle Open Office Writer : sort lists -Oracle Open Office Writer : sort lists;copying to in Calc -Oracle Open Office Writer : sorting -Oracle Open Office Writer : sorting;data in forms -Oracle Open Office Writer : sorting;databases -Oracle Open Office Writer : sorting;paragraphs in special languages -Oracle Open Office Writer : sorting;paragraphs/table rows -Oracle Open Office Writer : sound files -Oracle Open Office Writer : spaces -Oracle Open Office Writer : spaces;displaying (Writer) -Oracle Open Office Writer : spaces;ignoring double -Oracle Open Office Writer : spaces;inserting protected spaces -Oracle Open Office Writer : spaces;showing protected spaces (Writer) -Oracle Open Office Writer : spacing -Oracle Open Office Writer : spacing;between paragraphs in footnotes -Oracle Open Office Writer : spacing;endnotes/footnotes -Oracle Open Office Writer : spacing;font effects -Oracle Open Office Writer : spacing;lines and paragraphs -Oracle Open Office Writer : spacing;register-true text -Oracle Open Office Writer : spacing;tab stops in text documents -Oracle Open Office Writer : spacing;tabs in presentations -Oracle Open Office Writer : spadmin -Oracle Open Office Writer : special characters -Oracle Open Office Writer : speech bubbles -Oracle Open Office Writer : speed of printing -Oracle Open Office Writer : spellcheck -Oracle Open Office Writer : spellcheck;activating for a language -Oracle Open Office Writer : spellcheck;activating for all languages -Oracle Open Office Writer : spellcheck;AutoSpellcheck on/off -Oracle Open Office Writer : spellcheck;checking text documents manually -Oracle Open Office Writer : spellcheck;context menus -Oracle Open Office Writer : spellcheck;default languages -Oracle Open Office Writer : spellcheck;dialog -Oracle Open Office Writer : spellcheck;dictionary of exceptions -Oracle Open Office Writer : spellcheck;ignore list -Oracle Open Office Writer : spelling in thesaurus -Oracle Open Office Writer : spin button creation -Oracle Open Office Writer : splitting cells -Oracle Open Office Writer : splitting cells;by keyboard -Oracle Open Office Writer : splitting cells;by menu command -Oracle Open Office Writer : splitting tables -Oracle Open Office Writer : splitting tables;at cursor position -Oracle Open Office Writer : splitting tables;row breaks -Oracle Open Office Writer : spoolfiles with Xprinter -Oracle Open Office Writer : spreadsheets -Oracle Open Office Writer : spreadsheets;as databases (base) -Oracle Open Office Writer : spreadsheets;copying areas to text documents -Oracle Open Office Writer : spreadsheets;creating/opening -Oracle Open Office Writer : spreadsheets;inserting charts -Oracle Open Office Writer : spreadsheets;inserting database records -Oracle Open Office Writer : spreadsheets;inserting tables from -Oracle Open Office Writer : spreadsheets;printing -Oracle Open Office Writer : spreadsheets;saving -Oracle Open Office Writer : spreadsheets;saving automatically -Oracle Open Office Writer : spreadsheets;saving in other formats -Oracle Open Office Writer : spreadsheets;sending as e-mail -Oracle Open Office Writer : SQL -Oracle Open Office Writer : SQL;definition -Oracle Open Office Writer : SQL;DISTINCT parameter -Oracle Open Office Writer : SQL;executing SQL commands -Oracle Open Office Writer : SQL;executing SQL statements (Base) -Oracle Open Office Writer : SQL;queries (Base) -Oracle Open Office Writer : square drawings -Oracle Open Office Writer : standard bar on/off -Oracle Open Office Writer : standard deviation in charts -Oracle Open Office Writer : standard filters in databases -Oracle Open Office Writer : standard printer under UNIX -Oracle Open Office Writer : start center -Oracle Open Office Writer : start parameters -Oracle Open Office Writer : starting page numbers -Oracle Open Office Writer : statistical functions -Oracle Open Office Writer : statistics in charts -Oracle Open Office Writer : status bar on/off -Oracle Open Office Writer : stickers -Oracle Open Office Writer : stock charts -Oracle Open Office Writer : storing bibliographic information -Oracle Open Office Writer : strikethrough -Oracle Open Office Writer : strikethrough;characters -Oracle Open Office Writer : strikethrough;font effects -Oracle Open Office Writer : styles -Oracle Open Office Writer : styles;'changed' message -Oracle Open Office Writer : styles;categories -Oracle Open Office Writer : styles;conditional -Oracle Open Office Writer : styles;copying between documents -Oracle Open Office Writer : styles;creating from selections -Oracle Open Office Writer : styles;finding -Oracle Open Office Writer : styles;for pages -Oracle Open Office Writer : styles;importing from other files -Oracle Open Office Writer : styles;keyboard shortcuts -Oracle Open Office Writer : styles;master documents -Oracle Open Office Writer : styles;organizing -Oracle Open Office Writer : styles;page numbers -Oracle Open Office Writer : styles;printing styles used in a document -Oracle Open Office Writer : styles;replacing automatically -Oracle Open Office Writer : styles;styles and templates -Oracle Open Office Writer : styles;table styles -Oracle Open Office Writer : styles;transferring -Oracle Open Office Writer : styles;updating from selections -Oracle Open Office Writer : Styles and Formatting window -Oracle Open Office Writer : Styles and Formatting window;applying styles -Oracle Open Office Writer : Styles and Formatting window;docking -Oracle Open Office Writer : Styles and Formatting window;docking and resizing -Oracle Open Office Writer : Styles and Formatting window;updating from selections -Oracle Open Office Writer : Stylist, see Styles and Formatting window -Oracle Open Office Writer : subdocuments -Oracle Open Office Writer : subdocuments;creating/editing/removing -Oracle Open Office Writer : subdocuments;properties -Oracle Open Office Writer : subforms -Oracle Open Office Writer : subforms;creating -Oracle Open Office Writer : subforms;description -Oracle Open Office Writer : subject fields -Oracle Open Office Writer : submitting forms -Oracle Open Office Writer : subscript text -Oracle Open Office Writer : subsidiary documents -Oracle Open Office Writer : suffixes in file formats -Oracle Open Office Writer : sums of table cell series -Oracle Open Office Writer : superscript text -Oracle Open Office Writer : support on the Web -Oracle Open Office Writer : switching off -Oracle Open Office Writer : switching off;hyphenation for specific words -Oracle Open Office Writer : switching off;word completion -Oracle Open Office Writer : synchronizing -Oracle Open Office Writer : synchronizing;labels and business cards -Oracle Open Office Writer : synchronizing;Pocket PC and Oracle Open Office formats -Oracle Open Office Writer : synonyms in thesaurus -Oracle Open Office Writer : system address book registration -Oracle Open Office Writer : tab stops -Oracle Open Office Writer : tab stops;before headings -Oracle Open Office Writer : tab stops;displaying (Writer) -Oracle Open Office Writer : tab stops;inserting and editing -Oracle Open Office Writer : tab stops;inserting in lists -Oracle Open Office Writer : tab stops;regular expressions -Oracle Open Office Writer : tab stops;setting in sheets -Oracle Open Office Writer : tab stops;settings -Oracle Open Office Writer : tab stops;spacing in presentations -Oracle Open Office Writer : tab stops;spacing in text documents -Oracle Open Office Writer : table cells -Oracle Open Office Writer : table cells;adjusting the width on rulers -Oracle Open Office Writer : table cells;calculating sums -Oracle Open Office Writer : table cells;enlarging/reducing in text -Oracle Open Office Writer : table controls -Oracle Open Office Writer : table controls;form functions -Oracle Open Office Writer : table controls;keyboard-only edit mode -Oracle Open Office Writer : table controls;properties -Oracle Open Office Writer : table mode selection -Oracle Open Office Writer : table views of databases -Oracle Open Office Writer : Table Wizard (Base) -Oracle Open Office Writer : tables -Oracle Open Office Writer : tables;adapting the width by keyboard -Oracle Open Office Writer : tables;allowing page breaks -Oracle Open Office Writer : tables;AutoFormat function -Oracle Open Office Writer : tables;backgrounds -Oracle Open Office Writer : tables;calculating across -Oracle Open Office Writer : tables;calculating sums -Oracle Open Office Writer : tables;converting to text -Oracle Open Office Writer : tables;cross-referencing -Oracle Open Office Writer : tables;defining borders -Oracle Open Office Writer : tables;deleting -Oracle Open Office Writer : tables;deleting page breaks before -Oracle Open Office Writer : tables;editing by keyboard -Oracle Open Office Writer : tables;editing with the keyboard -Oracle Open Office Writer : tables;heading repetition after page breaks -Oracle Open Office Writer : tables;inserting columns in -Oracle Open Office Writer : tables;inserting line breaks -Oracle Open Office Writer : tables;inserting rows -Oracle Open Office Writer : tables;inserting text before -Oracle Open Office Writer : tables;inserting text tables -Oracle Open Office Writer : tables;jumping to -Oracle Open Office Writer : tables;labeling -Oracle Open Office Writer : tables;merging -Oracle Open Office Writer : tables;merging cells -Oracle Open Office Writer : tables;number recognition -Oracle Open Office Writer : tables;performing calculations in -Oracle Open Office Writer : tables;positioning -Oracle Open Office Writer : tables;protecting/unprotecting cells -Oracle Open Office Writer : tables;resizing/juxtaposing -Oracle Open Office Writer : tables;selecting -Oracle Open Office Writer : tables;sorting rows -Oracle Open Office Writer : tables;splitting -Oracle Open Office Writer : tables;start/end of document -Oracle Open Office Writer : tables;text flow around text tables -Oracle Open Office Writer : tables in databases -Oracle Open Office Writer : tables in databases;access rights to (Base) -Oracle Open Office Writer : tables in databases;adding to queries -Oracle Open Office Writer : tables in databases;browsing and editing -Oracle Open Office Writer : tables in databases;copying database tables (Base) -Oracle Open Office Writer : tables in databases;creating -Oracle Open Office Writer : tables in databases;creating in design view (manually) -Oracle Open Office Writer : tables in databases;importing text formats (Base) -Oracle Open Office Writer : tables in databases;joining for queries (Base) -Oracle Open Office Writer : tables in databases;printing queries (Base) -Oracle Open Office Writer : tables in databases;relations (Base) -Oracle Open Office Writer : tables in databases;searching -Oracle Open Office Writer : tables in spreadsheets -Oracle Open Office Writer : tables in spreadsheets;copying data to other applications -Oracle Open Office Writer : tables in spreadsheets;defining borders -Oracle Open Office Writer : tables in spreadsheets;inserting in text -Oracle Open Office Writer : tables in spreadsheets;value highlighting -Oracle Open Office Writer : tables in text -Oracle Open Office Writer : tables in text;captions -Oracle Open Office Writer : tables in text;creating automatically -Oracle Open Office Writer : tables in text;default settings -Oracle Open Office Writer : tables in text;defining borders -Oracle Open Office Writer : tables in text;displaying -Oracle Open Office Writer : tables in text;printing -Oracle Open Office Writer : tables of contents -Oracle Open Office Writer : tables of contents;creating and updating -Oracle Open Office Writer : tables of contents;defining entries in -Oracle Open Office Writer : tables of contents;editing and deleting -Oracle Open Office Writer : tables of contents;editing or deleting entries -Oracle Open Office Writer : tables of contents;formatting -Oracle Open Office Writer : tables of contents;hyperlinks as entries -Oracle Open Office Writer : tables of contents;unprotecting -Oracle Open Office Writer : tabs -Oracle Open Office Writer : tabs;displaying sheet tabs -Oracle Open Office Writer : tags -Oracle Open Office Writer : tags;definition -Oracle Open Office Writer : tags;in Oracle Open Office Writer -Oracle Open Office Writer : tags;META tags -Oracle Open Office Writer : templates -Oracle Open Office Writer : templates;agendas -Oracle Open Office Writer : templates;changing basic fonts -Oracle Open Office Writer : templates;creating document templates -Oracle Open Office Writer : templates;database reports -Oracle Open Office Writer : templates;default templates -Oracle Open Office Writer : templates;deleting -Oracle Open Office Writer : templates;editing and saving -Oracle Open Office Writer : templates;faxes -Oracle Open Office Writer : templates;importing and exporting -Oracle Open Office Writer : templates;letters -Oracle Open Office Writer : templates;new documents from templates -Oracle Open Office Writer : templates;opening documents with -Oracle Open Office Writer : templates;organizing -Oracle Open Office Writer : templates;organizing (guide) -Oracle Open Office Writer : templates;updating from selections -Oracle Open Office Writer : terminology -Oracle Open Office Writer : terminology;general glossary -Oracle Open Office Writer : terminology;Internet glossary -Oracle Open Office Writer : testing XML filters -Oracle Open Office Writer : text -Oracle Open Office Writer : text;animating -Oracle Open Office Writer : text;Asian layout -Oracle Open Office Writer : text;backgrounds -Oracle Open Office Writer : text;bold -Oracle Open Office Writer : text;coloring -Oracle Open Office Writer : text;conditional text -Oracle Open Office Writer : text;converting to tables -Oracle Open Office Writer : text;copying by drag and drop -Oracle Open Office Writer : text;CTL languages -Oracle Open Office Writer : text;cursor -Oracle Open Office Writer : text;drawing pictures -Oracle Open Office Writer : text;emphasizing -Oracle Open Office Writer : text;font effects -Oracle Open Office Writer : text;font sizes -Oracle Open Office Writer : text;font styles -Oracle Open Office Writer : text;fonts and formats -Oracle Open Office Writer : text;Fontwork icons -Oracle Open Office Writer : text;formatting around objects -Oracle Open Office Writer : text;formatting bold while typing -Oracle Open Office Writer : text;hiding -Oracle Open Office Writer : text;hiding from specific users, with conditions -Oracle Open Office Writer : text;hyperlinks -Oracle Open Office Writer : text;input fields -Oracle Open Office Writer : text;inserting pictures from Draw -Oracle Open Office Writer : text;inserting pictures in -Oracle Open Office Writer : text;inserting special characters -Oracle Open Office Writer : text;italics -Oracle Open Office Writer : text;kerning -Oracle Open Office Writer : text;language selection -Oracle Open Office Writer : text;line numbers -Oracle Open Office Writer : text;line spacing -Oracle Open Office Writer : text;multi-column -Oracle Open Office Writer : text;navigating and selecting with keyboard -Oracle Open Office Writer : text;non-printable -Oracle Open Office Writer : text;number of words/characters -Oracle Open Office Writer : text;overwriting or inserting -Oracle Open Office Writer : text;printing in black -Oracle Open Office Writer : text;replacing with format -Oracle Open Office Writer : text;rotating -Oracle Open Office Writer : text;selection modes -Oracle Open Office Writer : text;shadowed -Oracle Open Office Writer : text;sorting paragraphs -Oracle Open Office Writer : text;subscript and superscript -Oracle Open Office Writer : text;text/draw objects -Oracle Open Office Writer : text;turning off automatic correction -Oracle Open Office Writer : text;uppercase or lowercase -Oracle Open Office Writer : text animation -Oracle Open Office Writer : text attributes -Oracle Open Office Writer : text attributes;hyperlinks -Oracle Open Office Writer : text attributes;undoing -Oracle Open Office Writer : text blocks -Oracle Open Office Writer : text boxes -Oracle Open Office Writer : text boxes;form functions -Oracle Open Office Writer : text boxes;positioning -Oracle Open Office Writer : text breaks in cells -Oracle Open Office Writer : text colors for better accessibility -Oracle Open Office Writer : text columns -Oracle Open Office Writer : text databases (Base) -Oracle Open Office Writer : text documents -Oracle Open Office Writer : text documents;creating/opening -Oracle Open Office Writer : text documents;default templates -Oracle Open Office Writer : text documents;importing/exporting -Oracle Open Office Writer : text documents;inserting Calc charts -Oracle Open Office Writer : text documents;inserting spreadsheet cells -Oracle Open Office Writer : text documents;merging -Oracle Open Office Writer : text documents;print settings -Oracle Open Office Writer : text documents;printing -Oracle Open Office Writer : text documents;publishing in HTML -Oracle Open Office Writer : text documents;saving -Oracle Open Office Writer : text documents;saving automatically -Oracle Open Office Writer : text documents;saving in other formats -Oracle Open Office Writer : text documents;sending as e-mail -Oracle Open Office Writer : text documents;shortcut keys in -Oracle Open Office Writer : text documents;word completion settings -Oracle Open Office Writer : text effects -Oracle Open Office Writer : text flow -Oracle Open Office Writer : text flow;around text tables -Oracle Open Office Writer : text flow;at breaks -Oracle Open Office Writer : text flow;from frame to frame -Oracle Open Office Writer : text flow;in cells -Oracle Open Office Writer : text formats -Oracle Open Office Writer : text formats;copying and pasting -Oracle Open Office Writer : text formats;databases -Oracle Open Office Writer : text formats;finding -Oracle Open Office Writer : text formats;pasting -Oracle Open Office Writer : text frames -Oracle Open Office Writer : text frames;centering on pages -Oracle Open Office Writer : text frames;inserting/editing/linking -Oracle Open Office Writer : text frames;labeling -Oracle Open Office Writer : text grid for Asian layout -Oracle Open Office Writer : text input fields -Oracle Open Office Writer : text layout for special languages -Oracle Open Office Writer : text objects -Oracle Open Office Writer : text objects;alignment -Oracle Open Office Writer : text objects;draw functions -Oracle Open Office Writer : text objects;fonts -Oracle Open Office Writer : text objects;in presentations and drawings -Oracle Open Office Writer : text overflow in spreadsheet cells -Oracle Open Office Writer : text scaling in charts -Oracle Open Office Writer : text wrap around objects -Oracle Open Office Writer : text, see also text documents, paragraphs and characters -Oracle Open Office Writer : TextArt, see Fontwork -Oracle Open Office Writer : textures -Oracle Open Office Writer : textures;inserting from Gallery -Oracle Open Office Writer : textures;on chart bars -Oracle Open Office Writer : Thai -Oracle Open Office Writer : Thai;entering text -Oracle Open Office Writer : Thai;language settings -Oracle Open Office Writer : thesaurus -Oracle Open Office Writer : thesaurus;activating for a language -Oracle Open Office Writer : thesaurus;related words -Oracle Open Office Writer : ticker text -Oracle Open Office Writer : time fields -Oracle Open Office Writer : time fields;form functions -Oracle Open Office Writer : time fields;HTML -Oracle Open Office Writer : time fields;inserting -Oracle Open Office Writer : times -Oracle Open Office Writer : times;inserting when printing presentations -Oracle Open Office Writer : times, formats -Oracle Open Office Writer : tips -Oracle Open Office Writer : tips;extended tips in Help -Oracle Open Office Writer : title pages -Oracle Open Office Writer : title pages;centering text on -Oracle Open Office Writer : title pages;page styles -Oracle Open Office Writer : title rows -Oracle Open Office Writer : title rows;printing in Oracle Open Office Math -Oracle Open Office Writer : titles -Oracle Open Office Writer : titles;alignment (charts) -Oracle Open Office Writer : titles;changing -Oracle Open Office Writer : titles;editing in charts -Oracle Open Office Writer : titles;font effects -Oracle Open Office Writer : titles;formatting automatically -Oracle Open Office Writer : titles;formatting charts -Oracle Open Office Writer : titles;objects -Oracle Open Office Writer : toolbars -Oracle Open Office Writer : toolbars;adding buttons -Oracle Open Office Writer : toolbars;docking/undocking -Oracle Open Office Writer : toolbars;Form Navigation bar -Oracle Open Office Writer : toolbars;viewing/closing -Oracle Open Office Writer : tools bar -Oracle Open Office Writer : tooltips -Oracle Open Office Writer : tooltips;extended tips -Oracle Open Office Writer : tooltips;help -Oracle Open Office Writer : totals in text tables -Oracle Open Office Writer : traditional Chinese -Oracle Open Office Writer : traditional Chinese;translating to simplified chinese -Oracle Open Office Writer : transparency -Oracle Open Office Writer : transparency;areas -Oracle Open Office Writer : transparency;off for faster printing -Oracle Open Office Writer : transparency;saving -Oracle Open Office Writer : tree view of Help -Oracle Open Office Writer : trend lines in charts -Oracle Open Office Writer : trigonometric functions -Oracle Open Office Writer : turning off automatic correction -Oracle Open Office Writer : typefaces -Oracle Open Office Writer : typefaces;adding under UNIX -Oracle Open Office Writer : typefaces;formats -Oracle Open Office Writer : typography -Oracle Open Office Writer : typography;Asian -Oracle Open Office Writer : underlining -Oracle Open Office Writer : underlining;AutoFormat function -Oracle Open Office Writer : underlining;characters -Oracle Open Office Writer : underlining;quick -Oracle Open Office Writer : underlining;text -Oracle Open Office Writer : undocking windows -Oracle Open Office Writer : undoing -Oracle Open Office Writer : undoing;direct formatting -Oracle Open Office Writer : undoing;editing -Oracle Open Office Writer : undoing;number of steps -Oracle Open Office Writer : ungrouping groups -Oracle Open Office Writer : units -Oracle Open Office Writer : units;converting -Oracle Open Office Writer : units;measurement units -Oracle Open Office Writer : unlinking frames -Oracle Open Office Writer : UNO components -Oracle Open Office Writer : UNO components;Extension Manager -Oracle Open Office Writer : UNO components;integrating new -Oracle Open Office Writer : unprotecting tables of contents and indexes -Oracle Open Office Writer : update options -Oracle Open Office Writer : updates -Oracle Open Office Writer : updates;checking automatically -Oracle Open Office Writer : updates;checking manually -Oracle Open Office Writer : updating -Oracle Open Office Writer : updating;cross-references -Oracle Open Office Writer : updating;fields -Oracle Open Office Writer : updating;fields and charts, automatically (Writer) -Oracle Open Office Writer : updating;indexes/tables of contents -Oracle Open Office Writer : updating;linked sections, manually -Oracle Open Office Writer : updating;links in text documents -Oracle Open Office Writer : updating;links, on opening -Oracle Open Office Writer : updating;styles, from selections -Oracle Open Office Writer : updating;tables of contents -Oracle Open Office Writer : updating;templates -Oracle Open Office Writer : updating;text documents -Oracle Open Office Writer : uppercase -Oracle Open Office Writer : uppercase;changing to lowercase -Oracle Open Office Writer : uppercase;formatting text -Oracle Open Office Writer : URL -Oracle Open Office Writer : URL;changing hyperlink URLs -Oracle Open Office Writer : URL;definition -Oracle Open Office Writer : URL;in pictures -Oracle Open Office Writer : URL;saving absolute/relative paths -Oracle Open Office Writer : URL;turning off URL recognition -Oracle Open Office Writer : user data -Oracle Open Office Writer : user data;in conditions -Oracle Open Office Writer : user data;input -Oracle Open Office Writer : user data;querying -Oracle Open Office Writer : user data;removing when saving -Oracle Open Office Writer : user feedback -Oracle Open Office Writer : user feedback;automatically -Oracle Open Office Writer : user variables in conditions/fields -Oracle Open Office Writer : user-defined dictionaries -Oracle Open Office Writer : user-defined dictionaries;creating -Oracle Open Office Writer : user-defined dictionaries;dictionary of exceptions -Oracle Open Office Writer : user-defined dictionaries;editing -Oracle Open Office Writer : user-defined dictionaries;removing words from -Oracle Open Office Writer : user-defined fields, restriction -Oracle Open Office Writer : user-defined indexes -Oracle Open Office Writer : user-defined styles -Oracle Open Office Writer : user-defined styles;automatically replacing -Oracle Open Office Writer : UTF-8/UCS2 support -Oracle Open Office Writer : values -Oracle Open Office Writer : values;rounded as shown (Calc) -Oracle Open Office Writer : variable dates -Oracle Open Office Writer : variables -Oracle Open Office Writer : variables;document properties -Oracle Open Office Writer : variables;for hiding text -Oracle Open Office Writer : variables;for paths -Oracle Open Office Writer : variables;in conditions -Oracle Open Office Writer : variances in charts -Oracle Open Office Writer : VBA code -Oracle Open Office Writer : VBA code;loading/saving documents with VBA code -Oracle Open Office Writer : version management -Oracle Open Office Writer : version numbers of documents -Oracle Open Office Writer : versions -Oracle Open Office Writer : versions;comparing documents -Oracle Open Office Writer : versions;file saving as, restriction -Oracle Open Office Writer : versions;merging document versions -Oracle Open Office Writer : versions;of a document -Oracle Open Office Writer : versions;Oracle Open Office -Oracle Open Office Writer : vertical callouts -Oracle Open Office Writer : vertical rulers -Oracle Open Office Writer : vertical scrollbars (Writer) -Oracle Open Office Writer : vertical text boxes -Oracle Open Office Writer : videos -Oracle Open Office Writer : viewing -Oracle Open Office Writer : viewing;databases -Oracle Open Office Writer : viewing;fields -Oracle Open Office Writer : viewing;file properties -Oracle Open Office Writer : viewing;Oracle Open Office documents in Internet Explorer -Oracle Open Office Writer : viewing;toolbars -Oracle Open Office Writer : views -Oracle Open Office Writer : views;creating database views (Base) -Oracle Open Office Writer : views;defaults -Oracle Open Office Writer : views;full screen -Oracle Open Office Writer : views;icons -Oracle Open Office Writer : views;scaling -Oracle Open Office Writer : Visual Basic for Applications -Oracle Open Office Writer : Visual Basic for Applications;loading/saving documents with VBA code -Oracle Open Office Writer : watermarks -Oracle Open Office Writer : web documents -Oracle Open Office Writer : web documents;XForms -Oracle Open Office Writer : Web support -Oracle Open Office Writer : WebCast export -Oracle Open Office Writer : WebDAV over HTTPS -Oracle Open Office Writer : weekdays -Oracle Open Office Writer : weekdays;automatically completing -Oracle Open Office Writer : widows -Oracle Open Office Writer : wildcards, see regular expressions -Oracle Open Office Writer : windows -Oracle Open Office Writer : windows;docking -Oracle Open Office Writer : windows;docking definition -Oracle Open Office Writer : windows;hiding/showing/docking -Oracle Open Office Writer : windows;new -Oracle Open Office Writer : wizards -Oracle Open Office Writer : wizards;agendas -Oracle Open Office Writer : wizards;database queries -Oracle Open Office Writer : wizards;database tables (Base) -Oracle Open Office Writer : wizards;databases (Base) -Oracle Open Office Writer : wizards;document converter -Oracle Open Office Writer : wizards;Euro Converter -Oracle Open Office Writer : wizards;faxes -Oracle Open Office Writer : wizards;form letters -Oracle Open Office Writer : wizards;forms -Oracle Open Office Writer : wizards;letters -Oracle Open Office Writer : wizards;macros (Base) -Oracle Open Office Writer : wizards;overview -Oracle Open Office Writer : wizards;presentations -Oracle Open Office Writer : wizards;reports -Oracle Open Office Writer : word completion -Oracle Open Office Writer : word completion;settings -Oracle Open Office Writer : word completion;using/disabling -Oracle Open Office Writer : word counts -Oracle Open Office Writer : Word documents -Oracle Open Office Writer : Word documents;compatibility -Oracle Open Office Writer : Word documents;saving as -Oracle Open Office Writer : WordArt, see Fontwork -Oracle Open Office Writer : words -Oracle Open Office Writer : words;automatic replacement on/off -Oracle Open Office Writer : words;automatically replacing -Oracle Open Office Writer : words;backgrounds -Oracle Open Office Writer : words;counting in text -Oracle Open Office Writer : words;disabling spellcheck -Oracle Open Office Writer : words;wrapping in cells -Oracle Open Office Writer : words;wrapping in CTL -Oracle Open Office Writer : words;wrapping/not wrapping in text -Oracle Open Office Writer : working directory change -Oracle Open Office Writer : wrapping text -Oracle Open Office Writer : wrapping text;editing contours -Oracle Open Office Writer : wrapping text;in cells -Oracle Open Office Writer : write protection on/off -Oracle Open Office Writer : writing aids options -Oracle Open Office Writer : writing with direct cursor -Oracle Open Office Writer : WYSIWYG in fonts lists -Oracle Open Office Writer : X axes -Oracle Open Office Writer : X axes;grid formatting -Oracle Open Office Writer : X axes;positioning -Oracle Open Office Writer : X axes;scaling -Oracle Open Office Writer : X axes;showing -Oracle Open Office Writer : XForms -Oracle Open Office Writer : XForms;adding/editing/deleting/organizing namespaces -Oracle Open Office Writer : XForms;conditions -Oracle Open Office Writer : XForms;opening/editing -Oracle Open Office Writer : XML converters -Oracle Open Office Writer : XML file formats -Oracle Open Office Writer : XML filters -Oracle Open Office Writer : XML filters;creating/testing -Oracle Open Office Writer : XML filters;saving as package/installing/deleting -Oracle Open Office Writer : XML filters;settings -Oracle Open Office Writer : XML Forms, see XForms -Oracle Open Office Writer : XSLT filters, see also XML filters -Oracle Open Office Writer : XY charts -Oracle Open Office Writer : Y axes -Oracle Open Office Writer : Y axes;formatting -Oracle Open Office Writer : Y axes;grid formatting -Oracle Open Office Writer : Y axes;positioning -Oracle Open Office Writer : Y axes;scaling -Oracle Open Office Writer : Y axes;showing -Oracle Open Office Writer : years -Oracle Open Office Writer : years;2-digit options -Oracle Open Office Writer : Z axes -Oracle Open Office Writer : Z axes;grid formatting -Oracle Open Office Writer : Z axes;showing -Oracle Open Office Writer : zero values -Oracle Open Office Writer : zero values;displaying (Calc) -Oracle Open Office Writer : zooming -Oracle Open Office Writer : zooming;page views -Oracle Open Office Writer : zooming;pictures -Oracle Open Office Writer : zooming;status bar -Oracle Open Office Chart : 3D charts -Oracle Open Office Chart : 3D text creation -Oracle Open Office Chart : abbreviation replacement -Oracle Open Office Chart : absolute hyperlinks -Oracle Open Office Chart : absolute saving of URLs -Oracle Open Office Chart : accents -Oracle Open Office Chart : Access databases (base) -Oracle Open Office Chart : access rights for database tables (Base) -Oracle Open Office Chart : accessibility -Oracle Open Office Chart : accessibility;general shortcuts -Oracle Open Office Chart : accessibility;options -Oracle Open Office Chart : accessibility;Oracle Open Office assistive technology -Oracle Open Office Chart : accessibility;Oracle Open Office features -Oracle Open Office Chart : activating -Oracle Open Office Chart : activating;context menus -Oracle Open Office Chart : activating;Error Report Tool -Oracle Open Office Chart : activating;extended help tips -Oracle Open Office Chart : activating;plug-ins -Oracle Open Office Chart : ActiveX control -Oracle Open Office Chart : Adabas D databases (base) -Oracle Open Office Chart : add-ons, see UNO components -Oracle Open Office Chart : additional selection mode -Oracle Open Office Chart : address books -Oracle Open Office Chart : address books;LDAP server (Base) -Oracle Open Office Chart : address books;registering -Oracle Open Office Chart : address labels from databases -Oracle Open Office Chart : ADO databases (Base) -Oracle Open Office Chart : Agenda Wizard -Oracle Open Office Chart : aging filter -Oracle Open Office Chart : aligning -Oracle Open Office Chart : aligning;2D charts -Oracle Open Office Chart : aligning;cells -Oracle Open Office Chart : aligning;objects -Oracle Open Office Chart : aligning;paragraphs -Oracle Open Office Chart : aligning;tables in text -Oracle Open Office Chart : aligning;text objects -Oracle Open Office Chart : aligning;titles in charts -Oracle Open Office Chart : alternative fonts -Oracle Open Office Chart : ampersand symbol, see also operators -Oracle Open Office Chart : anchors -Oracle Open Office Chart : anchors;changing -Oracle Open Office Chart : anchors;displaying (Calc) -Oracle Open Office Chart : anchors;types/positions for draw objects -Oracle Open Office Chart : animations -Oracle Open Office Chart : animations;accessibility options -Oracle Open Office Chart : appearance options -Oracle Open Office Chart : Arabic -Oracle Open Office Chart : Arabic;entering text -Oracle Open Office Chart : Arabic;language settings -Oracle Open Office Chart : area charts -Oracle Open Office Chart : areas -Oracle Open Office Chart : areas;bitmap patterns -Oracle Open Office Chart : areas;hatched/dotted -Oracle Open Office Chart : areas;shadows -Oracle Open Office Chart : areas;slanting -Oracle Open Office Chart : areas;styles -Oracle Open Office Chart : areas;transparency -Oracle Open Office Chart : arguments in command line -Oracle Open Office Chart : arranging -Oracle Open Office Chart : arranging;objects -Oracle Open Office Chart : arrows -Oracle Open Office Chart : arrows;defining arrow heads -Oracle Open Office Chart : arrows;defining arrow lines -Oracle Open Office Chart : arrows;drawing in text -Oracle Open Office Chart : ASCII -Oracle Open Office Chart : ASCII;definition -Oracle Open Office Chart : Asian languages -Oracle Open Office Chart : Asian languages;enabling -Oracle Open Office Chart : Asian Phonetic Guide -Oracle Open Office Chart : Asian typography -Oracle Open Office Chart : assigning scripts -Oracle Open Office Chart : assistive technology in Oracle Open Office -Oracle Open Office Chart : attaching toolbars -Oracle Open Office Chart : attachments in e-mails -Oracle Open Office Chart : audio -Oracle Open Office Chart : auto reloading HTML documents -Oracle Open Office Chart : AutoAbstract function for sending text to presentations -Oracle Open Office Chart : AutoCaption function in Oracle Open Office Writer -Oracle Open Office Chart : AutoComplete function in text and list boxes -Oracle Open Office Chart : AutoCorrect function -Oracle Open Office Chart : AutoCorrect function;context menu -Oracle Open Office Chart : AutoCorrect function;options -Oracle Open Office Chart : AutoCorrect function;pictures and frames -Oracle Open Office Chart : AutoCorrect function;quotes -Oracle Open Office Chart : AutoCorrect function;replacement table -Oracle Open Office Chart : AutoCorrect function;switching on and off in Calc -Oracle Open Office Chart : AutoCorrect function;URL recognition -Oracle Open Office Chart : AutoFormat function -Oracle Open Office Chart : AutoFormat function;switching on and off -Oracle Open Office Chart : automatic captions (Writer) -Oracle Open Office Chart : automatic control focus -Oracle Open Office Chart : automatic hyperlink formatting -Oracle Open Office Chart : automatic line breaks -Oracle Open Office Chart : automatic lines/borders in text -Oracle Open Office Chart : automatic saving -Oracle Open Office Chart : AutoPilots, see wizards -Oracle Open Office Chart : AutoValue (Base) -Oracle Open Office Chart : averages in charts -Oracle Open Office Chart : axes -Oracle Open Office Chart : axes;better scaling -Oracle Open Office Chart : axes;formatting -Oracle Open Office Chart : axes;formatting grids -Oracle Open Office Chart : axes;inserting grids -Oracle Open Office Chart : axes;interval marks -Oracle Open Office Chart : axes;showing axes in charts -Oracle Open Office Chart : axes in charts -Oracle Open Office Chart : backgrounds -Oracle Open Office Chart : backgrounds;defining colors/pictures -Oracle Open Office Chart : backgrounds;frames/sections/indexes -Oracle Open Office Chart : backgrounds;inserting from Gallery -Oracle Open Office Chart : backgrounds;printing -Oracle Open Office Chart : backing window -Oracle Open Office Chart : backups -Oracle Open Office Chart : backups;automatic -Oracle Open Office Chart : backups;documents -Oracle Open Office Chart : bar charts -Oracle Open Office Chart : Basic -Oracle Open Office Chart : Basic;fonts for source display -Oracle Open Office Chart : Basic;programming -Oracle Open Office Chart : Basic;recording macros -Oracle Open Office Chart : basic fonts -Oracle Open Office Chart : Bézier curves -Oracle Open Office Chart : Bézier curves;control points in presentations -Oracle Open Office Chart : bi-directional writing -Oracle Open Office Chart : binding space -Oracle Open Office Chart : bitmaps -Oracle Open Office Chart : bitmaps;inserting and editing -Oracle Open Office Chart : bitmaps;off for faster printing -Oracle Open Office Chart : bitmaps;patterns -Oracle Open Office Chart : black and white printing -Oracle Open Office Chart : black printing in Calc -Oracle Open Office Chart : block selection mode -Oracle Open Office Chart : bold -Oracle Open Office Chart : bold;AutoFormat function -Oracle Open Office Chart : bold;text -Oracle Open Office Chart : bookmarks -Oracle Open Office Chart : bookmarks;Help -Oracle Open Office Chart : borders -Oracle Open Office Chart : borders;arranging -Oracle Open Office Chart : borders;cells on screen (Calc) -Oracle Open Office Chart : borders;for paragraphs -Oracle Open Office Chart : borders;for tables -Oracle Open Office Chart : borders;shadows -Oracle Open Office Chart : borders;table boundaries (Writer) -Oracle Open Office Chart : borders, see also frames -Oracle Open Office Chart : bound fields -Oracle Open Office Chart : bound fields;controls -Oracle Open Office Chart : boundaries of tables (Writer) -Oracle Open Office Chart : break display (Writer) -Oracle Open Office Chart : brochures -Oracle Open Office Chart : brochures;printing several -Oracle Open Office Chart : bubble charts -Oracle Open Office Chart : build numbers of Oracle Open Office -Oracle Open Office Chart : bullet lists -Oracle Open Office Chart : bullet lists;formatting options -Oracle Open Office Chart : bullets -Oracle Open Office Chart : bullets;paragraphs -Oracle Open Office Chart : bullets;replacing -Oracle Open Office Chart : bullets;turning off -Oracle Open Office Chart : business cards -Oracle Open Office Chart : business cards;creating and synchronizing -Oracle Open Office Chart : business cards;using templates -Oracle Open Office Chart : button bars, see toolbars -Oracle Open Office Chart : buttons -Oracle Open Office Chart : buttons;adding push buttons -Oracle Open Office Chart : buttons;big/small -Oracle Open Office Chart : buttons;editing hyperlink buttons -Oracle Open Office Chart : buttons;form functions -Oracle Open Office Chart : buttons;toolbars -Oracle Open Office Chart : cache for graphics -Oracle Open Office Chart : calculating -Oracle Open Office Chart : calculating;iterative references (Calc) -Oracle Open Office Chart : calculating;regression curves -Oracle Open Office Chart : callouts -Oracle Open Office Chart : callouts;drawings -Oracle Open Office Chart : capital letters -Oracle Open Office Chart : capital letters;AutoCorrect function -Oracle Open Office Chart : capital letters;font effects -Oracle Open Office Chart : captions -Oracle Open Office Chart : captions;automatic captions (Writer) -Oracle Open Office Chart : captions;tables/pictures/frames/OLE objects (Writer) -Oracle Open Office Chart : captions, see also labels/callouts -Oracle Open Office Chart : cascading update (Base) -Oracle Open Office Chart : case sensitivity -Oracle Open Office Chart : case sensitivity;comparing cell contents (Calc) -Oracle Open Office Chart : case sensitivity;searching -Oracle Open Office Chart : cells -Oracle Open Office Chart : cells;aligning -Oracle Open Office Chart : cells;coloring (Calc) -Oracle Open Office Chart : cells;cursor positions after input (Calc) -Oracle Open Office Chart : cells;formatting without effect (Calc) -Oracle Open Office Chart : cells;line breaks -Oracle Open Office Chart : cells;linked to controls -Oracle Open Office Chart : cells;number of -Oracle Open Office Chart : cells;pasting -Oracle Open Office Chart : cells;resetting formats -Oracle Open Office Chart : cells;showing grid lines (Calc) -Oracle Open Office Chart : centered text -Oracle Open Office Chart : centimeters -Oracle Open Office Chart : certificates -Oracle Open Office Chart : changes -Oracle Open Office Chart : changes;accepting or rejecting -Oracle Open Office Chart : changes;comparing to original -Oracle Open Office Chart : changes;protecting -Oracle Open Office Chart : changes;recording -Oracle Open Office Chart : changes;review function -Oracle Open Office Chart : changes;showing -Oracle Open Office Chart : changing -Oracle Open Office Chart : changing;document titles -Oracle Open Office Chart : changing;file associations in Setup program -Oracle Open Office Chart : changing;icon sizes -Oracle Open Office Chart : changing;links -Oracle Open Office Chart : changing;work directory -Oracle Open Office Chart : changing, see also editing and replacing -Oracle Open Office Chart : character styles -Oracle Open Office Chart : character styles;language selection -Oracle Open Office Chart : characters -Oracle Open Office Chart : characters;alternative fonts -Oracle Open Office Chart : characters;Asian layout -Oracle Open Office Chart : characters;bold -Oracle Open Office Chart : characters;coloring -Oracle Open Office Chart : characters;displaying only on screen (Writer) -Oracle Open Office Chart : characters;enabling CTL and Asian characters -Oracle Open Office Chart : characters;font effects -Oracle Open Office Chart : characters;fonts and formats -Oracle Open Office Chart : characters;hyperlinks -Oracle Open Office Chart : characters;italics -Oracle Open Office Chart : characters;language selection -Oracle Open Office Chart : characters;shadowed -Oracle Open Office Chart : characters;spacing -Oracle Open Office Chart : characters;special -Oracle Open Office Chart : characters;underlining -Oracle Open Office Chart : charcoal sketches filter -Oracle Open Office Chart : chart legends -Oracle Open Office Chart : chart legends;hiding -Oracle Open Office Chart : chart legends;showing icons with labels -Oracle Open Office Chart : chart types -Oracle Open Office Chart : chart types;area -Oracle Open Office Chart : chart types;bubble -Oracle Open Office Chart : chart types;column and bar -Oracle Open Office Chart : chart types;column and line -Oracle Open Office Chart : chart types;line -Oracle Open Office Chart : chart types;net -Oracle Open Office Chart : chart types;pie/donut -Oracle Open Office Chart : chart types;stock -Oracle Open Office Chart : chart types;XY (scatter) -Oracle Open Office Chart : charts -Oracle Open Office Chart : charts;3D views -Oracle Open Office Chart : charts;aligning -Oracle Open Office Chart : charts;arranging within stacks -Oracle Open Office Chart : charts;bars with textures -Oracle Open Office Chart : charts;choosing chart types -Oracle Open Office Chart : charts;colors -Oracle Open Office Chart : charts;copying with link to source cell range -Oracle Open Office Chart : charts;data labels -Oracle Open Office Chart : charts;displaying (Calc) -Oracle Open Office Chart : charts;editing axes -Oracle Open Office Chart : charts;editing data -Oracle Open Office Chart : charts;editing legends -Oracle Open Office Chart : charts;editing titles -Oracle Open Office Chart : charts;formatting areas -Oracle Open Office Chart : charts;formatting floors -Oracle Open Office Chart : charts;formatting walls -Oracle Open Office Chart : charts;inserting -Oracle Open Office Chart : charts;overview -Oracle Open Office Chart : charts;positioning axes -Oracle Open Office Chart : charts;properties -Oracle Open Office Chart : charts;reorganizing -Oracle Open Office Chart : charts;scaling axes -Oracle Open Office Chart : charts;scaling text -Oracle Open Office Chart : charts;shortcuts -Oracle Open Office Chart : charts;showing axes -Oracle Open Office Chart : charts;updating automatically (Writer) -Oracle Open Office Chart : check box creation -Oracle Open Office Chart : Chinese writing systems -Oracle Open Office Chart : choosing printers -Oracle Open Office Chart : circle drawings -Oracle Open Office Chart : Client Side ImageMap -Oracle Open Office Chart : clipboard -Oracle Open Office Chart : clipboard;cutting -Oracle Open Office Chart : clipboard;pasting -Oracle Open Office Chart : clipboard;pasting formatted/unformatted text -Oracle Open Office Chart : clipboard;selection clipboard -Oracle Open Office Chart : clipboard;Unix -Oracle Open Office Chart : closing -Oracle Open Office Chart : closing;documents -Oracle Open Office Chart : closing;toolbars -Oracle Open Office Chart : collaboration -Oracle Open Office Chart : color bar -Oracle Open Office Chart : colors -Oracle Open Office Chart : colors;adding -Oracle Open Office Chart : colors;appearance -Oracle Open Office Chart : colors;backgrounds -Oracle Open Office Chart : colors;charts -Oracle Open Office Chart : colors;fill format -Oracle Open Office Chart : colors;fonts -Oracle Open Office Chart : colors;grid lines and cells (Calc) -Oracle Open Office Chart : colors;models -Oracle Open Office Chart : colors;not printing -Oracle Open Office Chart : colors;printing in grayscale -Oracle Open Office Chart : colors;restriction (Calc) -Oracle Open Office Chart : colors;selection -Oracle Open Office Chart : column and line charts -Oracle Open Office Chart : column charts -Oracle Open Office Chart : column headers -Oracle Open Office Chart : column headers;displaying (Calc) -Oracle Open Office Chart : column headers;highlighting (Calc) -Oracle Open Office Chart : columns -Oracle Open Office Chart : columns;setting with the mouse -Oracle Open Office Chart : combination charts -Oracle Open Office Chart : combo box creation -Oracle Open Office Chart : command button creation -Oracle Open Office Chart : command buttons, see push buttons -Oracle Open Office Chart : command line parameters -Oracle Open Office Chart : commands -Oracle Open Office Chart : commands;repeating -Oracle Open Office Chart : commands;SQL -Oracle Open Office Chart : comments -Oracle Open Office Chart : comments;displaying (Calc) -Oracle Open Office Chart : comments;inserting/editing/deleting/printing -Oracle Open Office Chart : comments;on changes -Oracle Open Office Chart : comments;printing in text -Oracle Open Office Chart : common terms -Oracle Open Office Chart : common terms;Chinese dictionary -Oracle Open Office Chart : common terms;glossaries -Oracle Open Office Chart : common terms;Internet glossary -Oracle Open Office Chart : comparisons -Oracle Open Office Chart : comparisons;document versions -Oracle Open Office Chart : comparisons;operators in default filter dialog -Oracle Open Office Chart : compatibility settings for MS Word import -Oracle Open Office Chart : complete screen view -Oracle Open Office Chart : complex text layout -Oracle Open Office Chart : complex text layout;definition -Oracle Open Office Chart : complex text layout;enabling -Oracle Open Office Chart : complex text layout, see CTL -Oracle Open Office Chart : compose key to insert special characters -Oracle Open Office Chart : concatenation, see ampersand symbol -Oracle Open Office Chart : conditional separators -Oracle Open Office Chart : conditions -Oracle Open Office Chart : conditions;in number formats -Oracle Open Office Chart : conditions;items in Data Navigator -Oracle Open Office Chart : Configuration Manager -Oracle Open Office Chart : configuring -Oracle Open Office Chart : configuring;fax icon -Oracle Open Office Chart : configuring;Oracle Open Office -Oracle Open Office Chart : configuring;toolbars -Oracle Open Office Chart : connections to data sources (Base) -Oracle Open Office Chart : contents protection -Oracle Open Office Chart : context menus -Oracle Open Office Chart : control point display in presentations -Oracle Open Office Chart : controls -Oracle Open Office Chart : controls;activating in forms -Oracle Open Office Chart : controls;adding to documents -Oracle Open Office Chart : controls;arranging in forms -Oracle Open Office Chart : controls;arranging within stacks -Oracle Open Office Chart : controls;assigning data sources -Oracle Open Office Chart : controls;assigning macros (Basic) -Oracle Open Office Chart : controls;bound fields/list contents/linked cells -Oracle Open Office Chart : controls;events -Oracle Open Office Chart : controls;focus -Oracle Open Office Chart : controls;formatted fields -Oracle Open Office Chart : controls;grouping -Oracle Open Office Chart : controls;hidden -Oracle Open Office Chart : controls;inserting -Oracle Open Office Chart : controls;multi-line titles -Oracle Open Office Chart : controls;positions and sizes -Oracle Open Office Chart : controls;printing -Oracle Open Office Chart : controls;properties of form controls -Oracle Open Office Chart : controls;properties of table controls -Oracle Open Office Chart : controls;reference by SQL -Oracle Open Office Chart : controls;rich text control -Oracle Open Office Chart : controls;select mode -Oracle Open Office Chart : controls;showing (Writer) -Oracle Open Office Chart : converters -Oracle Open Office Chart : converters;Euro converter -Oracle Open Office Chart : converters;PostScript, UNIX -Oracle Open Office Chart : converters;XML -Oracle Open Office Chart : converting -Oracle Open Office Chart : converting;Hangul/Hanja -Oracle Open Office Chart : converting;metrics -Oracle Open Office Chart : converting;Microsoft documents -Oracle Open Office Chart : converting;Oracle Open Office documents -Oracle Open Office Chart : converting;Pocket PC formats -Oracle Open Office Chart : copies -Oracle Open Office Chart : copies;printing -Oracle Open Office Chart : copying -Oracle Open Office Chart : copying;by drag and drop -Oracle Open Office Chart : copying;data from text documents -Oracle Open Office Chart : copying;datasource records in spreadsheets -Oracle Open Office Chart : copying;draw objects -Oracle Open Office Chart : copying;draw objects between documents -Oracle Open Office Chart : copying;formatting -Oracle Open Office Chart : copying;from data source view -Oracle Open Office Chart : copying;from Gallery -Oracle Open Office Chart : copying;in Unix -Oracle Open Office Chart : copying;pictures, between documents -Oracle Open Office Chart : copying;sheet areas, to text documents -Oracle Open Office Chart : copying;to Gallery -Oracle Open Office Chart : copyright for Oracle Open Office -Oracle Open Office Chart : corner roundings -Oracle Open Office Chart : crash reports -Oracle Open Office Chart : criteria of query design (Base) -Oracle Open Office Chart : cropping pictures -Oracle Open Office Chart : CTL -Oracle Open Office Chart : CTL;(not) wrapping words -Oracle Open Office Chart : CTL;complex text layout languages -Oracle Open Office Chart : CTL;definition -Oracle Open Office Chart : CTL;options -Oracle Open Office Chart : currencies -Oracle Open Office Chart : currencies;converters -Oracle Open Office Chart : currencies;format codes -Oracle Open Office Chart : currency field creation -Oracle Open Office Chart : currency formats -Oracle Open Office Chart : cursor -Oracle Open Office Chart : cursor;allowing in protected areas (Writer) -Oracle Open Office Chart : cursor;in read-only text -Oracle Open Office Chart : cursor;quickly moving to an object -Oracle Open Office Chart : curves -Oracle Open Office Chart : curves;editing points -Oracle Open Office Chart : curves;properties in line charts/XY charts -Oracle Open Office Chart : custom dictionaries -Oracle Open Office Chart : custom dictionaries;editing -Oracle Open Office Chart : custom hyphens (Writer) -Oracle Open Office Chart : custom quotes -Oracle Open Office Chart : custom templates -Oracle Open Office Chart : customizing -Oracle Open Office Chart : customizing;events -Oracle Open Office Chart : customizing;keyboard -Oracle Open Office Chart : customizing;menus -Oracle Open Office Chart : customizing;Oracle Open Office -Oracle Open Office Chart : customizing;round corners -Oracle Open Office Chart : customizing;toolbars -Oracle Open Office Chart : cutting -Oracle Open Office Chart : dashes -Oracle Open Office Chart : data -Oracle Open Office Chart : data;filtering in forms -Oracle Open Office Chart : data;forms and subforms -Oracle Open Office Chart : data;read-only -Oracle Open Office Chart : data;sorting in forms -Oracle Open Office Chart : data;user data -Oracle Open Office Chart : data binding change in XForms -Oracle Open Office Chart : data labels in charts -Oracle Open Office Chart : Data Navigator -Oracle Open Office Chart : Data Navigator;adding/editing items -Oracle Open Office Chart : Data Navigator;display options -Oracle Open Office Chart : data ranges in charts -Oracle Open Office Chart : data series -Oracle Open Office Chart : data source browser -Oracle Open Office Chart : data source explorer -Oracle Open Office Chart : data source view -Oracle Open Office Chart : data source view;drag and drop -Oracle Open Office Chart : data source view;overview -Oracle Open Office Chart : data source view;showing -Oracle Open Office Chart : data sources -Oracle Open Office Chart : data sources;as tables -Oracle Open Office Chart : data sources;connection settings (Base) -Oracle Open Office Chart : data sources;copying records to spreadsheets -Oracle Open Office Chart : data sources;displaying current -Oracle Open Office Chart : data sources;LDAP server (Base) -Oracle Open Office Chart : data sources;Oracle Open Office Base -Oracle Open Office Chart : data sources;registering address books -Oracle Open Office Chart : data sources;reports -Oracle Open Office Chart : data sources;setting for stock charts -Oracle Open Office Chart : data sources;viewing -Oracle Open Office Chart : data structure of XForms -Oracle Open Office Chart : data values in charts -Oracle Open Office Chart : data, see also values -Oracle Open Office Chart : database contents -Oracle Open Office Chart : database contents;inserting as tables -Oracle Open Office Chart : database contents;inserting as text -Oracle Open Office Chart : database reports -Oracle Open Office Chart : Database Wizard (Base) -Oracle Open Office Chart : databases -Oracle Open Office Chart : databases;administration through SQL (Base) -Oracle Open Office Chart : databases;ADO (Base) -Oracle Open Office Chart : databases;connecting (Base) -Oracle Open Office Chart : databases;creating -Oracle Open Office Chart : databases;creating labels -Oracle Open Office Chart : databases;creating queries -Oracle Open Office Chart : databases;creating reports -Oracle Open Office Chart : databases;creating tables -Oracle Open Office Chart : databases;deleting (Base) -Oracle Open Office Chart : databases;drag and drop (Base) -Oracle Open Office Chart : databases;editing tables -Oracle Open Office Chart : databases;form filters -Oracle Open Office Chart : databases;formats (Base) -Oracle Open Office Chart : databases;importing/exporting -Oracle Open Office Chart : databases;JDBC (Base) -Oracle Open Office Chart : databases;main page (Base) -Oracle Open Office Chart : databases;ODBC (Base) -Oracle Open Office Chart : databases;overview -Oracle Open Office Chart : databases;registering (Base) -Oracle Open Office Chart : databases;searching records -Oracle Open Office Chart : databases;shortcut keys -Oracle Open Office Chart : databases;sorting -Oracle Open Office Chart : databases;standard filters -Oracle Open Office Chart : databases;text formats -Oracle Open Office Chart : databases;viewing -Oracle Open Office Chart : date fields -Oracle Open Office Chart : date fields;creating -Oracle Open Office Chart : date fields;properties -Oracle Open Office Chart : date formats -Oracle Open Office Chart : dates -Oracle Open Office Chart : dates;default (Calc) -Oracle Open Office Chart : dates;printing in presentations -Oracle Open Office Chart : dates;start 1900/01/01 (Calc) -Oracle Open Office Chart : dates;start 1904/01/01 (Calc) -Oracle Open Office Chart : dBASE -Oracle Open Office Chart : dBASE;database settings (Base) -Oracle Open Office Chart : DDE -Oracle Open Office Chart : DDE;definition -Oracle Open Office Chart : deactivating -Oracle Open Office Chart : deactivating;plug-ins -Oracle Open Office Chart : decimal places displayed (Calc) -Oracle Open Office Chart : decimal separator key -Oracle Open Office Chart : decimal tab stops -Oracle Open Office Chart : default directories -Oracle Open Office Chart : default filters -Oracle Open Office Chart : default filters;comparison operators -Oracle Open Office Chart : default filters;databases -Oracle Open Office Chart : default printer -Oracle Open Office Chart : default printer;setting up -Oracle Open Office Chart : default printer;UNIX -Oracle Open Office Chart : default templates -Oracle Open Office Chart : default templates;changing -Oracle Open Office Chart : default templates;organizing -Oracle Open Office Chart : defaults -Oracle Open Office Chart : defaults;documents -Oracle Open Office Chart : defaults;file formats in file dialogs -Oracle Open Office Chart : defaults;file formats in Oracle Open Office -Oracle Open Office Chart : defaults;fonts -Oracle Open Office Chart : defaults;grids (Writer/Calc) -Oracle Open Office Chart : defaults;languages -Oracle Open Office Chart : defaults;number formats -Oracle Open Office Chart : defaults;of saving -Oracle Open Office Chart : defaults;program configuration -Oracle Open Office Chart : defaults;tab stops in text -Oracle Open Office Chart : defaults;views -Oracle Open Office Chart : defining -Oracle Open Office Chart : defining;arrowheads and other line ends -Oracle Open Office Chart : defining;colors -Oracle Open Office Chart : defining;line styles -Oracle Open Office Chart : defining;paragraph borders -Oracle Open Office Chart : defining;queries (Base) -Oracle Open Office Chart : defining;table borders -Oracle Open Office Chart : deleting -Oracle Open Office Chart : deleting;all direct formatting -Oracle Open Office Chart : deleting;comments -Oracle Open Office Chart : deleting;databases (Base) -Oracle Open Office Chart : deleting;hyperlinks -Oracle Open Office Chart : deleting;lines in text -Oracle Open Office Chart : deleting;models/instances -Oracle Open Office Chart : deleting;namespaces in XForms -Oracle Open Office Chart : deleting;tab stops -Oracle Open Office Chart : deleting;templates -Oracle Open Office Chart : deleting;XML filters -Oracle Open Office Chart : depth stagger -Oracle Open Office Chart : descriptions for objects -Oracle Open Office Chart : design mode after saving -Oracle Open Office Chart : design view -Oracle Open Office Chart : design view;creating forms -Oracle Open Office Chart : design view;queries/views (Base) -Oracle Open Office Chart : designing -Oracle Open Office Chart : designing;database tables -Oracle Open Office Chart : designing;fonts -Oracle Open Office Chart : designing;queries (Base) -Oracle Open Office Chart : detaching toolbars -Oracle Open Office Chart : dictionaries -Oracle Open Office Chart : dictionaries;common terms in simplified and traditional chinese -Oracle Open Office Chart : dictionaries;creating -Oracle Open Office Chart : dictionaries;editing user-defined -Oracle Open Office Chart : dictionaries;spellcheck -Oracle Open Office Chart : dictionaries, see also languages -Oracle Open Office Chart : digital signatures -Oracle Open Office Chart : digital signatures;getting/managing/applying -Oracle Open Office Chart : digital signatures;overview -Oracle Open Office Chart : digital signatures;WebDAV over HTTPS -Oracle Open Office Chart : direct formatting -Oracle Open Office Chart : direct formatting;undoing all -Oracle Open Office Chart : directories -Oracle Open Office Chart : directories;creating new -Oracle Open Office Chart : directories;directory structure -Oracle Open Office Chart : disabled persons -Oracle Open Office Chart : displaying -Oracle Open Office Chart : displaying;comments (Calc) -Oracle Open Office Chart : displaying;comments in text documents -Oracle Open Office Chart : displaying;non-printing characters (Writer) -Oracle Open Office Chart : displaying;pictures and objects (Writer) -Oracle Open Office Chart : displaying;tables (Writer) -Oracle Open Office Chart : displaying;zero values (Calc) -Oracle Open Office Chart : distances -Oracle Open Office Chart : distinct values in SQL queries -Oracle Open Office Chart : distorting in drawings -Oracle Open Office Chart : distributing XML filters -Oracle Open Office Chart : docking -Oracle Open Office Chart : docking;definition -Oracle Open Office Chart : docking;toolbars -Oracle Open Office Chart : docking;windows -Oracle Open Office Chart : Document Converter Wizard -Oracle Open Office Chart : Document Map, see Navigator -Oracle Open Office Chart : document types in Oracle Open Office -Oracle Open Office Chart : documents -Oracle Open Office Chart : documents;changing titles -Oracle Open Office Chart : documents;closing -Oracle Open Office Chart : documents;comparing -Oracle Open Office Chart : documents;contents as lists -Oracle Open Office Chart : documents;editing time -Oracle Open Office Chart : documents;exporting -Oracle Open Office Chart : documents;importing -Oracle Open Office Chart : documents;languages -Oracle Open Office Chart : documents;measurement units in -Oracle Open Office Chart : documents;merging -Oracle Open Office Chart : documents;number of pages/tables/sheets -Oracle Open Office Chart : documents;opening -Oracle Open Office Chart : documents;opening in design mode -Oracle Open Office Chart : documents;opening with templates -Oracle Open Office Chart : documents;organizing -Oracle Open Office Chart : documents;printing -Oracle Open Office Chart : documents;read-only -Oracle Open Office Chart : documents;reloading -Oracle Open Office Chart : documents;saving -Oracle Open Office Chart : documents;saving automatically -Oracle Open Office Chart : documents;saving in other formats -Oracle Open Office Chart : documents;sending as e-mail -Oracle Open Office Chart : documents;styles changed -Oracle Open Office Chart : documents;version management -Oracle Open Office Chart : documents;version numbers -Oracle Open Office Chart : donut charts -Oracle Open Office Chart : dotted areas -Oracle Open Office Chart : double-line spacing in paragraphs -Oracle Open Office Chart : double-line writing in Asian layout -Oracle Open Office Chart : drag and drop -Oracle Open Office Chart : drag and drop;copying and pasting text -Oracle Open Office Chart : drag and drop;data source view -Oracle Open Office Chart : drag and drop;from Gallery to draw objects -Oracle Open Office Chart : drag and drop;overview -Oracle Open Office Chart : drag and drop;pictures -Oracle Open Office Chart : drag and drop;to Gallery -Oracle Open Office Chart : draw objects -Oracle Open Office Chart : draw objects;adding/editing/copying -Oracle Open Office Chart : draw objects;anchoring -Oracle Open Office Chart : draw objects;arranging within stacks -Oracle Open Office Chart : draw objects;copying between documents -Oracle Open Office Chart : draw objects;displaying (Calc) -Oracle Open Office Chart : draw objects;dropping Gallery pictures -Oracle Open Office Chart : draw objects;flipping -Oracle Open Office Chart : draw objects;legends -Oracle Open Office Chart : draw objects;positioning and resizing -Oracle Open Office Chart : draw objects;protecting -Oracle Open Office Chart : draw objects;slanting -Oracle Open Office Chart : draw objects;text in -Oracle Open Office Chart : Drawing bar -Oracle Open Office Chart : drawing lines in text -Oracle Open Office Chart : drawings -Oracle Open Office Chart : drawings;creating/opening -Oracle Open Office Chart : drawings;languages -Oracle Open Office Chart : drawings;printing -Oracle Open Office Chart : drawings;printing defaults -Oracle Open Office Chart : drawings;printing in text documents -Oracle Open Office Chart : drawings;saving -Oracle Open Office Chart : drawings;saving automatically -Oracle Open Office Chart : drawings;saving in other formats -Oracle Open Office Chart : drawings;sending as e-mail -Oracle Open Office Chart : drawings;showing (Writer) -Oracle Open Office Chart : drawings, see also draw objects -Oracle Open Office Chart : drop-down lists in form functions -Oracle Open Office Chart : e-mail attachments -Oracle Open Office Chart : Edit File icon -Oracle Open Office Chart : edit mode -Oracle Open Office Chart : edit mode;after opening -Oracle Open Office Chart : edit mode;through Enter key (Calc) -Oracle Open Office Chart : Edit Points bar -Oracle Open Office Chart : editing -Oracle Open Office Chart : editing;chart axes -Oracle Open Office Chart : editing;chart data -Oracle Open Office Chart : editing;chart legends -Oracle Open Office Chart : editing;chart titles -Oracle Open Office Chart : editing;comments -Oracle Open Office Chart : editing;data binding of XForms -Oracle Open Office Chart : editing;database tables and queries -Oracle Open Office Chart : editing;draw objects -Oracle Open Office Chart : editing;Fontwork objects -Oracle Open Office Chart : editing;hyperlinks -Oracle Open Office Chart : editing;menus -Oracle Open Office Chart : editing;objects -Oracle Open Office Chart : editing;Oracle Open Office documents in Internet Explorer -Oracle Open Office Chart : editing;pictures -Oracle Open Office Chart : editing;reports -Oracle Open Office Chart : editing;shortcut keys -Oracle Open Office Chart : editing;tab stops -Oracle Open Office Chart : editing;templates -Oracle Open Office Chart : editing;titles -Oracle Open Office Chart : editing;toolbars -Oracle Open Office Chart : editing;undoing -Oracle Open Office Chart : editing;XForms -Oracle Open Office Chart : editing time of documents -Oracle Open Office Chart : editors -Oracle Open Office Chart : editors;formula editor -Oracle Open Office Chart : editors;ImageMap editor -Oracle Open Office Chart : effects -Oracle Open Office Chart : effects;font positions -Oracle Open Office Chart : effects;fonts -Oracle Open Office Chart : effects;Fontwork icons -Oracle Open Office Chart : empty documents -Oracle Open Office Chart : empty paragraph removal -Oracle Open Office Chart : encryption of contents -Oracle Open Office Chart : entering groups -Oracle Open Office Chart : entering text from right to left -Oracle Open Office Chart : equal sign, see also operators -Oracle Open Office Chart : equations in formula editor -Oracle Open Office Chart : error bars in charts -Oracle Open Office Chart : error indicators in charts -Oracle Open Office Chart : Error Report Tool -Oracle Open Office Chart : Euro -Oracle Open Office Chart : Euro;currency formats -Oracle Open Office Chart : Euro;Euro Converter Wizard -Oracle Open Office Chart : even/odd pages -Oracle Open Office Chart : even/odd pages;printing -Oracle Open Office Chart : events -Oracle Open Office Chart : events;assigning scripts -Oracle Open Office Chart : events;controls -Oracle Open Office Chart : events;customizing -Oracle Open Office Chart : events;in forms -Oracle Open Office Chart : Excel -Oracle Open Office Chart : Excel;saving as -Oracle Open Office Chart : Excel;search criteria -Oracle Open Office Chart : exceptions -Oracle Open Office Chart : exceptions;user-defined dictionaries -Oracle Open Office Chart : exchanging, see also replacing -Oracle Open Office Chart : executing SQL commands -Oracle Open Office Chart : exiting -Oracle Open Office Chart : exiting;groups -Oracle Open Office Chart : exiting;Oracle Open Office -Oracle Open Office Chart : expanding formatting (Calc) -Oracle Open Office Chart : explorer of data sources -Oracle Open Office Chart : export filters -Oracle Open Office Chart : exporting -Oracle Open Office Chart : exporting;bitmaps -Oracle Open Office Chart : exporting;HTML and text documents -Oracle Open Office Chart : exporting;Microsoft Office documents with VBA code -Oracle Open Office Chart : exporting;spreadsheets to text format -Oracle Open Office Chart : exporting;templates -Oracle Open Office Chart : exporting;to foreign formats -Oracle Open Office Chart : exporting;to HTML -Oracle Open Office Chart : exporting;to Microsoft Office formats -Oracle Open Office Chart : exporting;to PDF -Oracle Open Office Chart : exporting;to PostScript format -Oracle Open Office Chart : exporting;to XML -Oracle Open Office Chart : exporting;XML files -Oracle Open Office Chart : extended tips in Help -Oracle Open Office Chart : extension mode in text -Oracle Open Office Chart : extensions -Oracle Open Office Chart : extensions;Extension Manager -Oracle Open Office Chart : extensions;file formats -Oracle Open Office Chart : external keys (Base) -Oracle Open Office Chart : faster printing -Oracle Open Office Chart : faxes -Oracle Open Office Chart : faxes;configuring Oracle Open Office -Oracle Open Office Chart : faxes;fax programs/fax printers under UNIX -Oracle Open Office Chart : faxes;selecting a fax machine -Oracle Open Office Chart : faxes;sending -Oracle Open Office Chart : faxes;wizards -Oracle Open Office Chart : feedback -Oracle Open Office Chart : feedback;automatically -Oracle Open Office Chart : fields -Oracle Open Office Chart : fields;database tables -Oracle Open Office Chart : fields;displaying field codes (Writer) -Oracle Open Office Chart : fields;formatted fields -Oracle Open Office Chart : fields;updating automatically (Writer) -Oracle Open Office Chart : file associations for Microsoft Office -Oracle Open Office Chart : file filters -Oracle Open Office Chart : file filters;mobile devices -Oracle Open Office Chart : file filters;XML -Oracle Open Office Chart : file formats -Oracle Open Office Chart : file formats;changing Oracle Open Office defaults -Oracle Open Office Chart : file formats;OpenDocument/XML -Oracle Open Office Chart : file formats;saving always in other formats -Oracle Open Office Chart : file selection button -Oracle Open Office Chart : file sharing options for current document -Oracle Open Office Chart : files -Oracle Open Office Chart : files;filters and formats -Oracle Open Office Chart : files;importing -Oracle Open Office Chart : files;opening -Oracle Open Office Chart : files;properties -Oracle Open Office Chart : files;saving -Oracle Open Office Chart : files;saving automatically -Oracle Open Office Chart : files;saving in other formats -Oracle Open Office Chart : files;sending as e-mail -Oracle Open Office Chart : files;version numbers -Oracle Open Office Chart : files and folders in Oracle Open Office -Oracle Open Office Chart : fill characters with tabulators -Oracle Open Office Chart : fill colors for areas -Oracle Open Office Chart : fill patterns for areas -Oracle Open Office Chart : filter conditions -Oracle Open Office Chart : filter conditions;connecting -Oracle Open Office Chart : filter conditions;in queries (Base) -Oracle Open Office Chart : filtering -Oracle Open Office Chart : filtering;data in databases -Oracle Open Office Chart : filtering;data in forms -Oracle Open Office Chart : filters -Oracle Open Office Chart : filters;comparison operators -Oracle Open Office Chart : filters;for import and export -Oracle Open Office Chart : filters;Navigator -Oracle Open Office Chart : filters;pictures -Oracle Open Office Chart : filters;XML filter settings -Oracle Open Office Chart : Find tab in Help -Oracle Open Office Chart : finding -Oracle Open Office Chart : finding;in all sheets -Oracle Open Office Chart : finding;records in form documents -Oracle Open Office Chart : finding;selections -Oracle Open Office Chart : finding;similarity search -Oracle Open Office Chart : fitting to pages -Oracle Open Office Chart : fitting to pages;print settings in Math -Oracle Open Office Chart : fitting to pages;print settings in presentations -Oracle Open Office Chart : fixed text -Oracle Open Office Chart : fixed text;form functions -Oracle Open Office Chart : fixing toolbars -Oracle Open Office Chart : flipping draw objects -Oracle Open Office Chart : floating frames in HTML documents -Oracle Open Office Chart : floating toolbars -Oracle Open Office Chart : focus of controls -Oracle Open Office Chart : folder creation -Oracle Open Office Chart : font lists -Oracle Open Office Chart : font name box -Oracle Open Office Chart : font sizes -Oracle Open Office Chart : font sizes;bullets -Oracle Open Office Chart : font sizes;relative changes -Oracle Open Office Chart : font sizes;scaling on screen -Oracle Open Office Chart : font sizes;text -Oracle Open Office Chart : fonts -Oracle Open Office Chart : fonts;adding under UNIX -Oracle Open Office Chart : fonts;changing in templates -Oracle Open Office Chart : fonts;colors -Oracle Open Office Chart : fonts;default settings -Oracle Open Office Chart : fonts;effects -Oracle Open Office Chart : fonts;for HTML and Basic -Oracle Open Office Chart : fonts;formats -Oracle Open Office Chart : fonts;outlines -Oracle Open Office Chart : fonts;positions in text -Oracle Open Office Chart : fonts;shadows -Oracle Open Office Chart : fonts;specifying several -Oracle Open Office Chart : fonts;strikethrough -Oracle Open Office Chart : fonts;styles -Oracle Open Office Chart : fonts;text objects -Oracle Open Office Chart : Fontwork icons -Oracle Open Office Chart : footers -Oracle Open Office Chart : footers;backgrounds -Oracle Open Office Chart : form controls -Oracle Open Office Chart : form controls;assigning macros -Oracle Open Office Chart : form controls;protecting -Oracle Open Office Chart : form controls;toolbars -Oracle Open Office Chart : form fields -Oracle Open Office Chart : form filters -Oracle Open Office Chart : Form Navigator -Oracle Open Office Chart : format codes -Oracle Open Office Chart : format codes;numbers -Oracle Open Office Chart : format filling printing in Oracle Open Office Math -Oracle Open Office Chart : Format Paintbrush -Oracle Open Office Chart : formats -Oracle Open Office Chart : formats;Asian layout -Oracle Open Office Chart : formats;fonts -Oracle Open Office Chart : formats;maximizing page formats -Oracle Open Office Chart : formats;number and currency formats -Oracle Open Office Chart : formats;of currencies/date/time -Oracle Open Office Chart : formats;on opening and saving -Oracle Open Office Chart : formats;pasting in special formats -Oracle Open Office Chart : formats;positions -Oracle Open Office Chart : formats;tabulators -Oracle Open Office Chart : formatted fields -Oracle Open Office Chart : formatted fields;form functions -Oracle Open Office Chart : formatted fields;properties -Oracle Open Office Chart : formatting -Oracle Open Office Chart : formatting;Asian typography -Oracle Open Office Chart : formatting;axes in charts -Oracle Open Office Chart : formatting;chart areas -Oracle Open Office Chart : formatting;chart floors -Oracle Open Office Chart : formatting;chart legends -Oracle Open Office Chart : formatting;chart titles -Oracle Open Office Chart : formatting;chart walls -Oracle Open Office Chart : formatting;copying -Oracle Open Office Chart : formatting;definition -Oracle Open Office Chart : formatting;expanding (Calc) -Oracle Open Office Chart : formatting;font effects -Oracle Open Office Chart : formatting;hyperlinks -Oracle Open Office Chart : formatting;pages -Oracle Open Office Chart : formatting;printer metrics (Writer) -Oracle Open Office Chart : formatting;undoing -Oracle Open Office Chart : formatting;undoing when writing -Oracle Open Office Chart : forms -Oracle Open Office Chart : forms;browsing -Oracle Open Office Chart : forms;Combo Box/List Box Wizard -Oracle Open Office Chart : forms;creating -Oracle Open Office Chart : forms;data -Oracle Open Office Chart : forms;designing (Base) -Oracle Open Office Chart : forms;events -Oracle Open Office Chart : forms;filtering data -Oracle Open Office Chart : forms;finding records -Oracle Open Office Chart : forms;focus after opening -Oracle Open Office Chart : forms;general information (Base) -Oracle Open Office Chart : forms;grouping controls -Oracle Open Office Chart : forms;HTML filters -Oracle Open Office Chart : forms;Navigator -Oracle Open Office Chart : forms;opening in design mode -Oracle Open Office Chart : forms;properties -Oracle Open Office Chart : forms;sorting data -Oracle Open Office Chart : forms;subforms -Oracle Open Office Chart : forms;wizards -Oracle Open Office Chart : forms;XForms -Oracle Open Office Chart : formula texts -Oracle Open Office Chart : formula texts;printing in Oracle Open Office Math -Oracle Open Office Chart : formulas -Oracle Open Office Chart : formulas;new -Oracle Open Office Chart : formulas;starting formula editor -Oracle Open Office Chart : formulas in reports -Oracle Open Office Chart : formulas in reports;editing -Oracle Open Office Chart : forums and support -Oracle Open Office Chart : frames -Oracle Open Office Chart : frames;around paragraphs -Oracle Open Office Chart : frames;around tables -Oracle Open Office Chart : frames;AutoCorrect function -Oracle Open Office Chart : frames;backgrounds -Oracle Open Office Chart : frames;captions (Writer) -Oracle Open Office Chart : frames;printing in Oracle Open Office Math -Oracle Open Office Chart : frames;protecting -Oracle Open Office Chart : frames;selection frames -Oracle Open Office Chart : frames;text fitting to frames -Oracle Open Office Chart : freeform lines -Oracle Open Office Chart : freeform lines;draw functions -Oracle Open Office Chart : FTP -Oracle Open Office Chart : FTP;opening documents -Oracle Open Office Chart : FTP;saving documents -Oracle Open Office Chart : full joins (Base) -Oracle Open Office Chart : full screen view -Oracle Open Office Chart : full-text search in Help -Oracle Open Office Chart : functions in reports -Oracle Open Office Chart : functions in reports;editing -Oracle Open Office Chart : Gallery -Oracle Open Office Chart : Gallery;adding pictures -Oracle Open Office Chart : Gallery;dragging pictures to draw objects -Oracle Open Office Chart : Gallery;hiding/showing -Oracle Open Office Chart : Gallery;inserting pictures from -Oracle Open Office Chart : get method for form transmissions -Oracle Open Office Chart : getting support -Oracle Open Office Chart : GIF format -Oracle Open Office Chart : glossaries -Oracle Open Office Chart : glossaries;common terms -Oracle Open Office Chart : glossaries;Internet terms -Oracle Open Office Chart : gradients off for faster printing -Oracle Open Office Chart : graphic objects, see draw objects -Oracle Open Office Chart : graphical text art -Oracle Open Office Chart : graphics -Oracle Open Office Chart : graphics;cache -Oracle Open Office Chart : graphics;protecting -Oracle Open Office Chart : graphics, see also pictures -Oracle Open Office Chart : grayscale printing -Oracle Open Office Chart : grid controls -Oracle Open Office Chart : grid controls;form functions -Oracle Open Office Chart : grids -Oracle Open Office Chart : grids;defaults (Writer/Calc) -Oracle Open Office Chart : grids;display options (Impress/Draw) -Oracle Open Office Chart : grids;displaying lines (Calc) -Oracle Open Office Chart : grids;formatting axes -Oracle Open Office Chart : grids;inserting in charts -Oracle Open Office Chart : group box creation -Oracle Open Office Chart : groups -Oracle Open Office Chart : groups;entering/exiting/ungrouping -Oracle Open Office Chart : groups;naming -Oracle Open Office Chart : groups;of controls -Oracle Open Office Chart : guides -Oracle Open Office Chart : guides;display options (Impress/Draw) -Oracle Open Office Chart : guides;displaying when moving objects (Impress) -Oracle Open Office Chart : guides;showing (Calc) -Oracle Open Office Chart : guides;showing when moving frames (Writer) -Oracle Open Office Chart : gutter -Oracle Open Office Chart : handles -Oracle Open Office Chart : handles;displaying (Writer) -Oracle Open Office Chart : handles;scaling -Oracle Open Office Chart : handles;showing simple/large handles (Calc) -Oracle Open Office Chart : Hangul/Hanja -Oracle Open Office Chart : hatching -Oracle Open Office Chart : headers -Oracle Open Office Chart : headers;backgrounds -Oracle Open Office Chart : headings -Oracle Open Office Chart : headings;entering as text box -Oracle Open Office Chart : Hebrew -Oracle Open Office Chart : Hebrew;entering text -Oracle Open Office Chart : Hebrew;language settings -Oracle Open Office Chart : Help -Oracle Open Office Chart : Help;bookmarks -Oracle Open Office Chart : Help;extended tips on/off -Oracle Open Office Chart : Help;full-text search -Oracle Open Office Chart : Help;Help tips -Oracle Open Office Chart : Help;keywords -Oracle Open Office Chart : Help;navigation pane showing/hiding -Oracle Open Office Chart : Help;style sheets -Oracle Open Office Chart : Help;topics -Oracle Open Office Chart : Help Agent -Oracle Open Office Chart : Help Agent;help -Oracle Open Office Chart : Help Agent;options -Oracle Open Office Chart : Help tips -Oracle Open Office Chart : Help tips;hiding -Oracle Open Office Chart : hidden controls in Form Navigator -Oracle Open Office Chart : hidden fields display (Writer) -Oracle Open Office Chart : hidden pages -Oracle Open Office Chart : hidden pages;printing in presentations -Oracle Open Office Chart : hidden text -Oracle Open Office Chart : hidden text;showing (Writer) -Oracle Open Office Chart : hiding -Oracle Open Office Chart : hiding;changes -Oracle Open Office Chart : hiding;chart legends -Oracle Open Office Chart : hiding;docked windows -Oracle Open Office Chart : hiding;navigation pane in Help window -Oracle Open Office Chart : high contrast mode -Oracle Open Office Chart : Hindi -Oracle Open Office Chart : Hindi;entering text -Oracle Open Office Chart : Hindi;language settings -Oracle Open Office Chart : horizontal scrollbars (Writer) -Oracle Open Office Chart : hotspots -Oracle Open Office Chart : HowTos for charts -Oracle Open Office Chart : HTML -Oracle Open Office Chart : HTML;definition -Oracle Open Office Chart : HTML;export character set -Oracle Open Office Chart : HTML;fonts for source display -Oracle Open Office Chart : HTML;importing META tags -Oracle Open Office Chart : HTML;live presentations -Oracle Open Office Chart : HTML documents -Oracle Open Office Chart : HTML documents;auto reloading -Oracle Open Office Chart : HTML documents;importing/exporting -Oracle Open Office Chart : HTML documents;META tags in -Oracle Open Office Chart : HTML documents;new -Oracle Open Office Chart : HTML documents;source text -Oracle Open Office Chart : hyperlinks -Oracle Open Office Chart : hyperlinks;assigning macros -Oracle Open Office Chart : hyperlinks;character formats -Oracle Open Office Chart : hyperlinks;definition -Oracle Open Office Chart : hyperlinks;deleting -Oracle Open Office Chart : hyperlinks;editing -Oracle Open Office Chart : hyperlinks;inserting -Oracle Open Office Chart : hyperlinks;relative and absolute -Oracle Open Office Chart : hyperlinks;turning off automatic recognition -Oracle Open Office Chart : hyperlinks, see also links -Oracle Open Office Chart : hyphenation -Oracle Open Office Chart : hyphenation;activating for a language -Oracle Open Office Chart : hyphenation;minimal number of characters -Oracle Open Office Chart : hyphens -Oracle Open Office Chart : hyphens;displaying custom (Writer) -Oracle Open Office Chart : hyphens;inserting custom -Oracle Open Office Chart : icon bars, see toolbars -Oracle Open Office Chart : icon sizes -Oracle Open Office Chart : ignore list for spellcheck -Oracle Open Office Chart : illumination -Oracle Open Office Chart : illumination;3D charts -Oracle Open Office Chart : illustrations, see pictures -Oracle Open Office Chart : image button creation -Oracle Open Office Chart : image control creation -Oracle Open Office Chart : ImageMap -Oracle Open Office Chart : ImageMap;definition -Oracle Open Office Chart : ImageMap;editor -Oracle Open Office Chart : images -Oracle Open Office Chart : images;ImageMap -Oracle Open Office Chart : images;inserting and editing bitmaps -Oracle Open Office Chart : images, see also pictures -Oracle Open Office Chart : IME -Oracle Open Office Chart : IME;definition -Oracle Open Office Chart : IME;showing/hiding -Oracle Open Office Chart : import filters -Oracle Open Office Chart : import restrictions for Microsoft Office -Oracle Open Office Chart : importing -Oracle Open Office Chart : importing;bitmaps -Oracle Open Office Chart : importing;compatibility settings for text import -Oracle Open Office Chart : importing;databases -Oracle Open Office Chart : importing;documents in other formats -Oracle Open Office Chart : importing;from XML -Oracle Open Office Chart : importing;HTML and text documents -Oracle Open Office Chart : importing;HTML with META tags -Oracle Open Office Chart : importing;Microsoft Office documents with VBA code -Oracle Open Office Chart : importing;tables in text format -Oracle Open Office Chart : importing;templates -Oracle Open Office Chart : improvement program -Oracle Open Office Chart : inches -Oracle Open Office Chart : Index tab in Help -Oracle Open Office Chart : indexes -Oracle Open Office Chart : indexes;backgrounds -Oracle Open Office Chart : indexes;showing/hiding Help index tab -Oracle Open Office Chart : indicator lines in text -Oracle Open Office Chart : inner joins (Base) -Oracle Open Office Chart : input method window -Oracle Open Office Chart : insert mode for entering text -Oracle Open Office Chart : inserting -Oracle Open Office Chart : inserting;buttons in toolbars -Oracle Open Office Chart : inserting;cell ranges from spreadsheets -Oracle Open Office Chart : inserting;charts -Oracle Open Office Chart : inserting;clipboard options -Oracle Open Office Chart : inserting;comments -Oracle Open Office Chart : inserting;data from text documents -Oracle Open Office Chart : inserting;datasource records in spreadsheets -Oracle Open Office Chart : inserting;drawings -Oracle Open Office Chart : inserting;floating frames -Oracle Open Office Chart : inserting;Fontwork objects -Oracle Open Office Chart : inserting;form fields -Oracle Open Office Chart : inserting;hyperlinks -Oracle Open Office Chart : inserting;line breaks in cells -Oracle Open Office Chart : inserting;movies/sounds -Oracle Open Office Chart : inserting;new text tables defaults -Oracle Open Office Chart : inserting;objects from Gallery -Oracle Open Office Chart : inserting;OLE objects -Oracle Open Office Chart : inserting;paragraph borders -Oracle Open Office Chart : inserting;paragraph bullets -Oracle Open Office Chart : inserting;pictures in Gallery -Oracle Open Office Chart : inserting;plug-ins -Oracle Open Office Chart : inserting;push buttons -Oracle Open Office Chart : inserting;special characters -Oracle Open Office Chart : inserting;tab stops -Oracle Open Office Chart : inserting;textures on chart bars -Oracle Open Office Chart : installing -Oracle Open Office Chart : installing;ActiveX control -Oracle Open Office Chart : installing;mobile device filters -Oracle Open Office Chart : installing;UNO components -Oracle Open Office Chart : installing;XML filters -Oracle Open Office Chart : instructions -Oracle Open Office Chart : instructions;general -Oracle Open Office Chart : Internet -Oracle Open Office Chart : Internet;checking for updates -Oracle Open Office Chart : Internet;Internet Explorer for displaying Oracle Open Office documents -Oracle Open Office Chart : Internet;presentations -Oracle Open Office Chart : Internet;starting searches -Oracle Open Office Chart : Internet glossary -Oracle Open Office Chart : invert filter -Oracle Open Office Chart : invisible areas -Oracle Open Office Chart : italic text -Oracle Open Office Chart : iterative references in spreadsheets -Oracle Open Office Chart : Java -Oracle Open Office Chart : Java;definition -Oracle Open Office Chart : Java;setting options -Oracle Open Office Chart : JDBC -Oracle Open Office Chart : JDBC;databases (Base) -Oracle Open Office Chart : JDBC;definition -Oracle Open Office Chart : joining -Oracle Open Office Chart : joining;paragraphs -Oracle Open Office Chart : joining;tables (Base) -Oracle Open Office Chart : joins in databases (Base) -Oracle Open Office Chart : justifying text -Oracle Open Office Chart : kerning -Oracle Open Office Chart : kerning;Asian texts -Oracle Open Office Chart : kerning;definition -Oracle Open Office Chart : kerning;in characters -Oracle Open Office Chart : key fields for relations (Base) -Oracle Open Office Chart : keyboard -Oracle Open Office Chart : keyboard;assigning/editing shortcut keys -Oracle Open Office Chart : keyboard;general commands -Oracle Open Office Chart : keyboard;removing numbering -Oracle Open Office Chart : keys -Oracle Open Office Chart : keys;adding push buttons -Oracle Open Office Chart : keys;primary keys (Base) -Oracle Open Office Chart : kiosk export -Oracle Open Office Chart : labels -Oracle Open Office Chart : labels;creating and synchronizing -Oracle Open Office Chart : labels;for charts -Oracle Open Office Chart : labels;for draw objects -Oracle Open Office Chart : labels;form functions -Oracle Open Office Chart : labels;from databases -Oracle Open Office Chart : labels, see also names/callouts -Oracle Open Office Chart : languages -Oracle Open Office Chart : languages;activating modules -Oracle Open Office Chart : languages;Asian support -Oracle Open Office Chart : languages;complex text layout -Oracle Open Office Chart : languages;locale settings -Oracle Open Office Chart : languages;selecting for text -Oracle Open Office Chart : languages;setting options -Oracle Open Office Chart : languages;spellcheck -Oracle Open Office Chart : languages;spellchecking and formatting -Oracle Open Office Chart : large handles (Writer) -Oracle Open Office Chart : large icons -Oracle Open Office Chart : layer arrangement -Oracle Open Office Chart : layout -Oracle Open Office Chart : layout;importing Word documents -Oracle Open Office Chart : layout;pages -Oracle Open Office Chart : LDAP server -Oracle Open Office Chart : LDAP server;address books (Base) -Oracle Open Office Chart : LDAP server;sign on options -Oracle Open Office Chart : leading between paragraphs -Oracle Open Office Chart : left alignment of paragraphs -Oracle Open Office Chart : left joins (Base) -Oracle Open Office Chart : legends -Oracle Open Office Chart : legends;charts -Oracle Open Office Chart : legends;draw objects -Oracle Open Office Chart : legends;rounding corners -Oracle Open Office Chart : Letter Wizard -Oracle Open Office Chart : levels -Oracle Open Office Chart : levels;depth stagger -Oracle Open Office Chart : levels;macro security -Oracle Open Office Chart : limits of tables (Writer) -Oracle Open Office Chart : line breaks -Oracle Open Office Chart : line breaks;in cells -Oracle Open Office Chart : line charts -Oracle Open Office Chart : line spacing -Oracle Open Office Chart : line spacing;context menu in paragraphs -Oracle Open Office Chart : line spacing;paragraph -Oracle Open Office Chart : line styles -Oracle Open Office Chart : line styles;applying -Oracle Open Office Chart : line styles;defining -Oracle Open Office Chart : lines -Oracle Open Office Chart : lines;defining ends -Oracle Open Office Chart : lines;draw functions -Oracle Open Office Chart : lines;drawing in text -Oracle Open Office Chart : lines;editing points -Oracle Open Office Chart : lines;removing automatic lines -Oracle Open Office Chart : lines of text -Oracle Open Office Chart : lines of text;alignment -Oracle Open Office Chart : links -Oracle Open Office Chart : links;between cells and controls -Oracle Open Office Chart : links;by drag and drop -Oracle Open Office Chart : links;character formats -Oracle Open Office Chart : links;definition -Oracle Open Office Chart : links;editing hyperlinks -Oracle Open Office Chart : links;inserting -Oracle Open Office Chart : links;modifying -Oracle Open Office Chart : links;opening files with -Oracle Open Office Chart : links;relational databases (Base) -Oracle Open Office Chart : links;turning off automatic recognition -Oracle Open Office Chart : links;updating options (Writer) -Oracle Open Office Chart : links;updating specific links -Oracle Open Office Chart : list box creation -Oracle Open Office Chart : lists -Oracle Open Office Chart : lists;data assigned to controls -Oracle Open Office Chart : lists;registered databases (Base) -Oracle Open Office Chart : lists;regular expressions -Oracle Open Office Chart : live presentations on the Internet -Oracle Open Office Chart : loading -Oracle Open Office Chart : loading;documents -Oracle Open Office Chart : loading;documents from other formats -Oracle Open Office Chart : loading;HTML documents, automatically -Oracle Open Office Chart : loading;Microsoft Office documents with VBA code -Oracle Open Office Chart : loading;reloading -Oracle Open Office Chart : loading;XML files -Oracle Open Office Chart : locale settings -Oracle Open Office Chart : logarithmic scaling along axes -Oracle Open Office Chart : lowercase letters -Oracle Open Office Chart : lowercase letters;font effects -Oracle Open Office Chart : Macro Wizard (Base) -Oracle Open Office Chart : macros -Oracle Open Office Chart : macros;assigning to events in forms -Oracle Open Office Chart : macros;attaching new (Base) -Oracle Open Office Chart : macros;in MS Office documents -Oracle Open Office Chart : macros;interrupting -Oracle Open Office Chart : macros;organizing -Oracle Open Office Chart : macros;recording -Oracle Open Office Chart : macros;security -Oracle Open Office Chart : macros;security levels -Oracle Open Office Chart : macros;security warning dialog -Oracle Open Office Chart : macros;selecting security warnings -Oracle Open Office Chart : magnifiers -Oracle Open Office Chart : margins -Oracle Open Office Chart : margins;pages -Oracle Open Office Chart : margins;setting with the mouse -Oracle Open Office Chart : margins;shadows -Oracle Open Office Chart : marking changes -Oracle Open Office Chart : marking, see selecting -Oracle Open Office Chart : Math formula editor -Oracle Open Office Chart : mean value lines in charts -Oracle Open Office Chart : measurement units -Oracle Open Office Chart : measurement units;changing on rulers -Oracle Open Office Chart : measurement units;converting -Oracle Open Office Chart : measurement units;selecting -Oracle Open Office Chart : Media Player window -Oracle Open Office Chart : menus -Oracle Open Office Chart : menus;activating context menus -Oracle Open Office Chart : menus;assigning macros -Oracle Open Office Chart : menus;customizing -Oracle Open Office Chart : merging -Oracle Open Office Chart : merging;documents -Oracle Open Office Chart : META tags -Oracle Open Office Chart : metrics -Oracle Open Office Chart : metrics;converting -Oracle Open Office Chart : metrics;document formatting (Writer) -Oracle Open Office Chart : metrics;in sheets -Oracle Open Office Chart : Microsoft Office -Oracle Open Office Chart : Microsoft Office;Access databases (base) -Oracle Open Office Chart : Microsoft Office;as default file format -Oracle Open Office Chart : Microsoft Office;document import restrictions -Oracle Open Office Chart : Microsoft Office;feature comparisons -Oracle Open Office Chart : Microsoft Office;importing password protected files -Oracle Open Office Chart : Microsoft Office;importing Word documents -Oracle Open Office Chart : Microsoft Office;importing/exporting VBA code -Oracle Open Office Chart : Microsoft Office;new users information -Oracle Open Office Chart : Microsoft Office;opening Microsoft documents -Oracle Open Office Chart : Microsoft Office;reassigning document types -Oracle Open Office Chart : migrating macros (Base) -Oracle Open Office Chart : mobile device filters -Oracle Open Office Chart : models in XForms -Oracle Open Office Chart : modifying, see changing -Oracle Open Office Chart : more controls -Oracle Open Office Chart : mosaic filter -Oracle Open Office Chart : mouse -Oracle Open Office Chart : mouse;pointers when using drag and drop -Oracle Open Office Chart : mouse;positioning -Oracle Open Office Chart : movies -Oracle Open Office Chart : moving -Oracle Open Office Chart : moving;tab stops on ruler -Oracle Open Office Chart : moving;toolbars -Oracle Open Office Chart : moving;using guide lines in presentations -Oracle Open Office Chart : MS ADO interface (Base) -Oracle Open Office Chart : multi-line titles in forms -Oracle Open Office Chart : multiple documents -Oracle Open Office Chart : multiple documents;opening -Oracle Open Office Chart : multiple selection -Oracle Open Office Chart : music -Oracle Open Office Chart : My Documents folder -Oracle Open Office Chart : My Documents folder;changing work directory -Oracle Open Office Chart : My Documents folder;opening -Oracle Open Office Chart : MySQL databases (Base) -Oracle Open Office Chart : names -Oracle Open Office Chart : names;multi-line titles -Oracle Open Office Chart : names;objects -Oracle Open Office Chart : names, see also labels/callouts -Oracle Open Office Chart : namespace organization in XForms -Oracle Open Office Chart : native SQL (Base) -Oracle Open Office Chart : navigating -Oracle Open Office Chart : navigating;in documents -Oracle Open Office Chart : Navigation bar -Oracle Open Office Chart : Navigation bar;controls -Oracle Open Office Chart : Navigation bar;forms -Oracle Open Office Chart : Navigator -Oracle Open Office Chart : Navigator;comments -Oracle Open Office Chart : Navigator;contents as lists -Oracle Open Office Chart : Navigator;docking -Oracle Open Office Chart : Navigator;working with -Oracle Open Office Chart : net charts -Oracle Open Office Chart : network identity options -Oracle Open Office Chart : new databases -Oracle Open Office Chart : new documents -Oracle Open Office Chart : new lines in cells -Oracle Open Office Chart : new windows -Oracle Open Office Chart : non-breaking dashes -Oracle Open Office Chart : non-breaking spaces (Writer) -Oracle Open Office Chart : non-printing characters (Writer) -Oracle Open Office Chart : number formats -Oracle Open Office Chart : number formats;codes -Oracle Open Office Chart : number formats;formats -Oracle Open Office Chart : number formats;recognition in text tables -Oracle Open Office Chart : number of pages -Oracle Open Office Chart : number of sheets -Oracle Open Office Chart : number of tables -Oracle Open Office Chart : numbering -Oracle Open Office Chart : numbering;options -Oracle Open Office Chart : numbering;turning off -Oracle Open Office Chart : numbering;using automatically -Oracle Open Office Chart : numbers -Oracle Open Office Chart : numbers;date, time and currency formats -Oracle Open Office Chart : numerical fields in forms -Oracle Open Office Chart : objects -Oracle Open Office Chart : objects;always moveable (Impress/Draw) -Oracle Open Office Chart : objects;arranging within stacks -Oracle Open Office Chart : objects;copying when moving in presentations -Oracle Open Office Chart : objects;definition -Oracle Open Office Chart : objects;displaying in spreadsheets -Oracle Open Office Chart : objects;displaying in text documents -Oracle Open Office Chart : objects;editing -Oracle Open Office Chart : objects;inserting from Gallery -Oracle Open Office Chart : objects;inserting OLE objects -Oracle Open Office Chart : objects;moving and resizing with mouse -Oracle Open Office Chart : objects;naming -Oracle Open Office Chart : objects;opening -Oracle Open Office Chart : objects;properties of charts -Oracle Open Office Chart : objects;quickly moving to -Oracle Open Office Chart : objects;titles and descriptions -Oracle Open Office Chart : ODBC -Oracle Open Office Chart : ODBC;database (Base) -Oracle Open Office Chart : ODBC;definition -Oracle Open Office Chart : ODF file formats -Oracle Open Office Chart : Office -Oracle Open Office Chart : Office;Microsoft Office and Oracle Open Office -Oracle Open Office Chart : OLE -Oracle Open Office Chart : OLE;definition -Oracle Open Office Chart : OLE objects -Oracle Open Office Chart : OLE objects;arranging within stacks -Oracle Open Office Chart : OLE objects;captions (Writer) -Oracle Open Office Chart : OLE objects;inserting -Oracle Open Office Chart : OLE objects;number of -Oracle Open Office Chart : OLE objects;protecting -Oracle Open Office Chart : one and a half line spacing in text -Oracle Open Office Chart : online feedback options -Oracle Open Office Chart : online registration -Oracle Open Office Chart : online update options -Oracle Open Office Chart : online updates -Oracle Open Office Chart : online updates;checking automatically -Oracle Open Office Chart : online updates;checking manually -Oracle Open Office Chart : OpenDocument file formats -Oracle Open Office Chart : OpenGL -Oracle Open Office Chart : OpenGL;definition -Oracle Open Office Chart : opening -Oracle Open Office Chart : opening;context menus -Oracle Open Office Chart : opening;database files -Oracle Open Office Chart : opening;dialog settings -Oracle Open Office Chart : opening;documents -Oracle Open Office Chart : opening;documents from other formats -Oracle Open Office Chart : opening;documents on WebDAV server -Oracle Open Office Chart : opening;files with links -Oracle Open Office Chart : opening;files, with placeholders -Oracle Open Office Chart : opening;forms -Oracle Open Office Chart : opening;Microsoft Office files -Oracle Open Office Chart : opening;mobile device documents -Oracle Open Office Chart : opening;objects -Oracle Open Office Chart : opening;reports -Oracle Open Office Chart : opening;several files -Oracle Open Office Chart : opening;XForms -Oracle Open Office Chart : operators -Oracle Open Office Chart : operators;default filters -Oracle Open Office Chart : optional hyphens (Writer) -Oracle Open Office Chart : options -Oracle Open Office Chart : options;accessibility -Oracle Open Office Chart : options;appearance -Oracle Open Office Chart : options;compatibility (Writer) -Oracle Open Office Chart : options;improvement program -Oracle Open Office Chart : options;network identity -Oracle Open Office Chart : options;online update -Oracle Open Office Chart : options;tools -Oracle Open Office Chart : Oracle databases (base) -Oracle Open Office Chart : Oracle Open Office Base data sources -Oracle Open Office Chart : Oracle Open Office Basic scripts in HTML documents -Oracle Open Office Chart : Oracle Open Office documents -Oracle Open Office Chart : Oracle Open Office documents;mobile device filters -Oracle Open Office Chart : Oracle Open Office documents;viewing and editing in Internet Explorer -Oracle Open Office Chart : Oracle Open Office Math start -Oracle Open Office Chart : order of chart data -Oracle Open Office Chart : ordering -Oracle Open Office Chart : ordering;objects -Oracle Open Office Chart : ordinal numbers -Oracle Open Office Chart : ordinal numbers;replacing -Oracle Open Office Chart : organizing -Oracle Open Office Chart : organizing;macros and scripts -Oracle Open Office Chart : organizing;namespaces in XForms -Oracle Open Office Chart : organizing;styles -Oracle Open Office Chart : organizing;templates -Oracle Open Office Chart : original size -Oracle Open Office Chart : original size;printing in Oracle Open Office Math -Oracle Open Office Chart : original size;restoring after cropping -Oracle Open Office Chart : outlines -Oracle Open Office Chart : outlines;font effects -Oracle Open Office Chart : outlines;outline symbols -Oracle Open Office Chart : outlines;sending to presentations -Oracle Open Office Chart : overwrite mode -Oracle Open Office Chart : packages, see extensions -Oracle Open Office Chart : page breaks -Oracle Open Office Chart : page breaks;displaying (Calc) -Oracle Open Office Chart : page formats -Oracle Open Office Chart : page formats;maximizing -Oracle Open Office Chart : page formats;restriction -Oracle Open Office Chart : page styles -Oracle Open Office Chart : page styles;editing/applying with statusbar -Oracle Open Office Chart : pages -Oracle Open Office Chart : pages;backgrounds in all applications -Oracle Open Office Chart : pages;formatting and numbering -Oracle Open Office Chart : pages;printing page names in presentations -Oracle Open Office Chart : pages;scaling -Oracle Open Office Chart : pages;selecting one to print -Oracle Open Office Chart : paint box -Oracle Open Office Chart : paint can symbol -Oracle Open Office Chart : pair kerning -Oracle Open Office Chart : Palm file filters -Oracle Open Office Chart : paper formats -Oracle Open Office Chart : paper size warning -Oracle Open Office Chart : paper trays -Oracle Open Office Chart : paragraph marks -Oracle Open Office Chart : paragraph marks;displaying (Writer) -Oracle Open Office Chart : paragraph styles -Oracle Open Office Chart : paragraph styles;languages -Oracle Open Office Chart : paragraph styles;modifying basic fonts -Oracle Open Office Chart : paragraphs -Oracle Open Office Chart : paragraphs;alignment -Oracle Open Office Chart : paragraphs;Asian typography -Oracle Open Office Chart : paragraphs;defining borders -Oracle Open Office Chart : paragraphs;hidden paragraphs (Writer) -Oracle Open Office Chart : paragraphs;increasing indents of -Oracle Open Office Chart : paragraphs;indents, margins and columns -Oracle Open Office Chart : paragraphs;inserting bullets -Oracle Open Office Chart : paragraphs;joining -Oracle Open Office Chart : paragraphs;numbering automatically -Oracle Open Office Chart : paragraphs;removing blank ones -Oracle Open Office Chart : paragraphs;spacing -Oracle Open Office Chart : paragraphs;tab stops -Oracle Open Office Chart : parameters -Oracle Open Office Chart : parameters;command line -Oracle Open Office Chart : parameters;queries (Base) -Oracle Open Office Chart : passwords for protecting contents -Oracle Open Office Chart : pasting -Oracle Open Office Chart : pasting;cell ranges -Oracle Open Office Chart : pasting;cell ranges from spreadsheets -Oracle Open Office Chart : pasting;data from text documents -Oracle Open Office Chart : pasting;draw objects -Oracle Open Office Chart : pasting;draw objects from other documents -Oracle Open Office Chart : pasting;formatted/unformatted text -Oracle Open Office Chart : pasting;from data source view -Oracle Open Office Chart : pasting;from data sources to Oracle Open Office Calc -Oracle Open Office Chart : pasting;pictures from other documents -Oracle Open Office Chart : pasting;sheet areas in text documents -Oracle Open Office Chart : pasting;to Gallery -Oracle Open Office Chart : paths -Oracle Open Office Chart : paths;changing work directory -Oracle Open Office Chart : paths;defaults -Oracle Open Office Chart : pattern editor -Oracle Open Office Chart : pattern fields -Oracle Open Office Chart : pattern fields;form functions -Oracle Open Office Chart : patterns for objects -Oracle Open Office Chart : PDF -Oracle Open Office Chart : PDF;export -Oracle Open Office Chart : PDF;PostScript to PDF converter, UNIX -Oracle Open Office Chart : personal data input -Oracle Open Office Chart : phonetic guide -Oracle Open Office Chart : picklist creation -Oracle Open Office Chart : pictures -Oracle Open Office Chart : pictures;adding to Gallery -Oracle Open Office Chart : pictures;arranging within stacks -Oracle Open Office Chart : pictures;assigning macros -Oracle Open Office Chart : pictures;backgrounds -Oracle Open Office Chart : pictures;captions (Writer) -Oracle Open Office Chart : pictures;changing paths -Oracle Open Office Chart : pictures;cropping and zooming -Oracle Open Office Chart : pictures;displaying in Calc -Oracle Open Office Chart : pictures;displaying in Writer (Writer) -Oracle Open Office Chart : pictures;drag and drop between documents -Oracle Open Office Chart : pictures;drawing -Oracle Open Office Chart : pictures;editing -Oracle Open Office Chart : pictures;filters -Oracle Open Office Chart : pictures;ImageMap -Oracle Open Office Chart : pictures;inserting automatically -Oracle Open Office Chart : pictures;inserting from Gallery -Oracle Open Office Chart : pictures;number of -Oracle Open Office Chart : pictures;printing -Oracle Open Office Chart : pictures;scaling/resizing -Oracle Open Office Chart : pie charts -Oracle Open Office Chart : pie charts;options -Oracle Open Office Chart : pie charts;types -Oracle Open Office Chart : pixel editor -Oracle Open Office Chart : pixel graphics -Oracle Open Office Chart : pixel graphics;inserting and editing -Oracle Open Office Chart : pixel patterns -Oracle Open Office Chart : placeholders -Oracle Open Office Chart : placeholders;in SQL queries -Oracle Open Office Chart : placeholders;on opening files -Oracle Open Office Chart : placing toolbars -Oracle Open Office Chart : playing movies and sound files -Oracle Open Office Chart : plotting data as charts -Oracle Open Office Chart : plug-ins -Oracle Open Office Chart : plug-ins;activating and deactivating -Oracle Open Office Chart : plug-ins;definition -Oracle Open Office Chart : plug-ins;inserting -Oracle Open Office Chart : pocket device appliances -Oracle Open Office Chart : Pocket PC file filters -Oracle Open Office Chart : points -Oracle Open Office Chart : points;reducing editing points when snapping (Impress/Draw) -Oracle Open Office Chart : polygon drawing -Oracle Open Office Chart : pop-art filter -Oracle Open Office Chart : portable document format -Oracle Open Office Chart : positioning -Oracle Open Office Chart : positioning;axes -Oracle Open Office Chart : positioning;draw objects and controls -Oracle Open Office Chart : positioning;fonts -Oracle Open Office Chart : positioning;objects -Oracle Open Office Chart : positioning;toolbars -Oracle Open Office Chart : post method for form transmissions -Oracle Open Office Chart : posterizing filter -Oracle Open Office Chart : PostScript -Oracle Open Office Chart : PostScript;creating files -Oracle Open Office Chart : PostScript;PDF converter, UNIX -Oracle Open Office Chart : PowerPoint export -Oracle Open Office Chart : precision as shown (Calc) -Oracle Open Office Chart : predefining fonts -Oracle Open Office Chart : predictive text, see also AutoCorrect function/AutoFill function/AutoInput function/word completion/text completion -Oracle Open Office Chart : presentations -Oracle Open Office Chart : presentations;creating/opening -Oracle Open Office Chart : presentations;inserting spreadsheet cells -Oracle Open Office Chart : presentations;live on the Internet -Oracle Open Office Chart : presentations;print menu -Oracle Open Office Chart : presentations;saving -Oracle Open Office Chart : presentations;saving automatically -Oracle Open Office Chart : presentations;saving in other formats -Oracle Open Office Chart : presentations;sending as e-mail -Oracle Open Office Chart : presentations;starting with wizard -Oracle Open Office Chart : presentations;wizards -Oracle Open Office Chart : Presenter Console shortcuts -Oracle Open Office Chart : press buttons, see push buttons -Oracle Open Office Chart : previews -Oracle Open Office Chart : previews;fonts lists -Oracle Open Office Chart : primary keys -Oracle Open Office Chart : primary keys;defining -Oracle Open Office Chart : primary keys;design view -Oracle Open Office Chart : primary keys;inserting (Base) -Oracle Open Office Chart : print area selection -Oracle Open Office Chart : printer metrics for document formatting (Writer) -Oracle Open Office Chart : printers -Oracle Open Office Chart : printers;adding, UNIX -Oracle Open Office Chart : printers;choosing -Oracle Open Office Chart : printers;default printer -Oracle Open Office Chart : printers;faxes under UNIX -Oracle Open Office Chart : printers;maximum page formats -Oracle Open Office Chart : printers;paper trays -Oracle Open Office Chart : printers;properties -Oracle Open Office Chart : printing -Oracle Open Office Chart : printing;black and white -Oracle Open Office Chart : printing;brochures -Oracle Open Office Chart : printing;colors in grayscale -Oracle Open Office Chart : printing;comments -Oracle Open Office Chart : printing;copies -Oracle Open Office Chart : printing;creating individual jobs -Oracle Open Office Chart : printing;dates in presentations -Oracle Open Office Chart : printing;directly -Oracle Open Office Chart : printing;documents -Oracle Open Office Chart : printing;drawings defaults -Oracle Open Office Chart : printing;elements in text documents -Oracle Open Office Chart : printing;faster -Oracle Open Office Chart : printing;fitting to pages in Oracle Open Office Math -Oracle Open Office Chart : printing;fitting to pages in presentations -Oracle Open Office Chart : printing;formulas in Oracle Open Office Math -Oracle Open Office Chart : printing;hidden pages of presentations -Oracle Open Office Chart : printing;in original size in Oracle Open Office Math -Oracle Open Office Chart : printing;left/right pages -Oracle Open Office Chart : printing;queries (Base) -Oracle Open Office Chart : printing;scaling in Oracle Open Office Math -Oracle Open Office Chart : printing;selections -Oracle Open Office Chart : printing;text always in black -Oracle Open Office Chart : printing;text in reverse order -Oracle Open Office Chart : printing;tiling pages in presentations -Oracle Open Office Chart : printing;transparencies -Oracle Open Office Chart : printing;warnings -Oracle Open Office Chart : printing;without scaling in presentations -Oracle Open Office Chart : printing speed -Oracle Open Office Chart : programming -Oracle Open Office Chart : programming;Oracle Open Office -Oracle Open Office Chart : programming;scripting -Oracle Open Office Chart : properties -Oracle Open Office Chart : properties;charts -Oracle Open Office Chart : properties;fields in databases -Oracle Open Office Chart : properties;files -Oracle Open Office Chart : properties;form controls -Oracle Open Office Chart : properties;forms -Oracle Open Office Chart : properties;printers -Oracle Open Office Chart : properties;smooth lines in line charts/XY charts -Oracle Open Office Chart : protected contents -Oracle Open Office Chart : protected dashes -Oracle Open Office Chart : protected database tables -Oracle Open Office Chart : protected documents -Oracle Open Office Chart : protected spaces -Oracle Open Office Chart : protected spaces;inserting -Oracle Open Office Chart : protected spaces;showing (Writer) -Oracle Open Office Chart : protecting -Oracle Open Office Chart : protecting;contents -Oracle Open Office Chart : protecting;recorded changes -Oracle Open Office Chart : proxy settings -Oracle Open Office Chart : push buttons -Oracle Open Office Chart : push buttons;adding to documents -Oracle Open Office Chart : push buttons;creating -Oracle Open Office Chart : queries -Oracle Open Office Chart : queries;copying (Base) -Oracle Open Office Chart : queries;creating in design view (Base) -Oracle Open Office Chart : queries;creating in SQL view -Oracle Open Office Chart : queries;defining (Base) -Oracle Open Office Chart : queries;deleting table links (Base) -Oracle Open Office Chart : queries;editing in data source view -Oracle Open Office Chart : queries;formulating filter conditions (Base) -Oracle Open Office Chart : queries;joining tables (Base) -Oracle Open Office Chart : queries;missing elements (Base) -Oracle Open Office Chart : queries;overview (Base) -Oracle Open Office Chart : queries;parameter queries (Base) -Oracle Open Office Chart : queries;printing (Base) -Oracle Open Office Chart : Query Wizard (Base) -Oracle Open Office Chart : Quickstarter -Oracle Open Office Chart : quotes -Oracle Open Office Chart : quotes;custom -Oracle Open Office Chart : radar charts, see net charts -Oracle Open Office Chart : radio button creation -Oracle Open Office Chart : read-only documents -Oracle Open Office Chart : read-only documents;cursor -Oracle Open Office Chart : read-only documents;database tables on/off -Oracle Open Office Chart : read-only documents;editing -Oracle Open Office Chart : read-only documents;opening documents as -Oracle Open Office Chart : read-only items in Data Navigator -Oracle Open Office Chart : recognizing URLs automatically -Oracle Open Office Chart : recording -Oracle Open Office Chart : recording;changes -Oracle Open Office Chart : recording;macros -Oracle Open Office Chart : records -Oracle Open Office Chart : records;inserting comments -Oracle Open Office Chart : records;protecting -Oracle Open Office Chart : records;saving -Oracle Open Office Chart : records;searching in databases -Oracle Open Office Chart : rectangles with round corners -Oracle Open Office Chart : recursions in spreadsheets -Oracle Open Office Chart : redo command -Oracle Open Office Chart : reduced printing -Oracle Open Office Chart : reference lines -Oracle Open Office Chart : references -Oracle Open Office Chart : references;displaying in color (Calc) -Oracle Open Office Chart : references;expanding (Calc) -Oracle Open Office Chart : references;iterative (Calc) -Oracle Open Office Chart : register-true -Oracle Open Office Chart : register-true;definition -Oracle Open Office Chart : registering -Oracle Open Office Chart : registering;address books -Oracle Open Office Chart : registering;databases (Base) -Oracle Open Office Chart : registering;Oracle Open Office -Oracle Open Office Chart : regression curves in charts -Oracle Open Office Chart : regular expressions -Oracle Open Office Chart : regular expressions;list of -Oracle Open Office Chart : relational databases (Base) -Oracle Open Office Chart : relations -Oracle Open Office Chart : relations;creating and deleting (Base) -Oracle Open Office Chart : relations;joining tables (Base) -Oracle Open Office Chart : relations;properties (Base) -Oracle Open Office Chart : relative hyperlinks -Oracle Open Office Chart : relative saving of URLs -Oracle Open Office Chart : reloading -Oracle Open Office Chart : reloading;documents -Oracle Open Office Chart : reloading;HTML documents, automatically -Oracle Open Office Chart : remarks, see also comments -Oracle Open Office Chart : remote configurations -Oracle Open Office Chart : remove noise filter -Oracle Open Office Chart : removing -Oracle Open Office Chart : removing;bullets and numbering -Oracle Open Office Chart : removing;form filters -Oracle Open Office Chart : removing, see also deleting -Oracle Open Office Chart : reorganizing charts -Oracle Open Office Chart : repeating -Oracle Open Office Chart : repeating;commands -Oracle Open Office Chart : replacement options -Oracle Open Office Chart : replacement table -Oracle Open Office Chart : replacing -Oracle Open Office Chart : replacing;AutoCorrect function -Oracle Open Office Chart : replacing;dashes -Oracle Open Office Chart : replacing;ordinal numbers -Oracle Open Office Chart : replacing;tab stops (regular expressions) -Oracle Open Office Chart : Report Builder -Oracle Open Office Chart : reports -Oracle Open Office Chart : reports;creating -Oracle Open Office Chart : reports;error reports -Oracle Open Office Chart : reports;opening and editing -Oracle Open Office Chart : reports;templates -Oracle Open Office Chart : resetting -Oracle Open Office Chart : resetting;templates -Oracle Open Office Chart : resizing -Oracle Open Office Chart : resizing;objects, by mouse -Oracle Open Office Chart : resizing, see also scaling/zooming -Oracle Open Office Chart : resolution when printing bitmaps -Oracle Open Office Chart : restoring -Oracle Open Office Chart : restoring;default formatting -Oracle Open Office Chart : restoring;editing -Oracle Open Office Chart : reversing printing order -Oracle Open Office Chart : review function -Oracle Open Office Chart : review function;accepting or rejecting changes -Oracle Open Office Chart : review function;comparing documents -Oracle Open Office Chart : review function;protecting records -Oracle Open Office Chart : review function;recording changes example -Oracle Open Office Chart : rich text control -Oracle Open Office Chart : right alignment of paragraphs -Oracle Open Office Chart : right joins (Base) -Oracle Open Office Chart : right-to-left text -Oracle Open Office Chart : rotating -Oracle Open Office Chart : rotating;3D text -Oracle Open Office Chart : round corners -Oracle Open Office Chart : rounding precision (Calc) -Oracle Open Office Chart : row headers -Oracle Open Office Chart : row headers;displaying (Calc) -Oracle Open Office Chart : row headers;highlighting (Calc) -Oracle Open Office Chart : rulers -Oracle Open Office Chart : rulers;default settings -Oracle Open Office Chart : rulers;measurement units -Oracle Open Office Chart : rulers;visible in presentations -Oracle Open Office Chart : samples and templates -Oracle Open Office Chart : saving -Oracle Open Office Chart : saving;default file formats -Oracle Open Office Chart : saving;dialog settings -Oracle Open Office Chart : saving;documents -Oracle Open Office Chart : saving;documents for mobile devices -Oracle Open Office Chart : saving;documents in other formats -Oracle Open Office Chart : saving;documents, automatically -Oracle Open Office Chart : saving;in Microsoft Office file format -Oracle Open Office Chart : saving;options -Oracle Open Office Chart : saving;templates -Oracle Open Office Chart : saving;to XML -Oracle Open Office Chart : saving;VBA code in Microsoft Office documents -Oracle Open Office Chart : saving;with password by default -Oracle Open Office Chart : saving as command -Oracle Open Office Chart : saving as command;precautions -Oracle Open Office Chart : scaling -Oracle Open Office Chart : scaling;axes -Oracle Open Office Chart : scaling;font sizes in user interface -Oracle Open Office Chart : scaling;objects -Oracle Open Office Chart : scaling;pictures -Oracle Open Office Chart : scaling;printing in Oracle Open Office Math -Oracle Open Office Chart : scaling;text in charts -Oracle Open Office Chart : scaling;when printing presentations -Oracle Open Office Chart : scaling, see also zooming -Oracle Open Office Chart : scatter charts -Oracle Open Office Chart : screen -Oracle Open Office Chart : screen;full screen views -Oracle Open Office Chart : screen;scaling -Oracle Open Office Chart : screen magnifiers -Oracle Open Office Chart : screen readers -Oracle Open Office Chart : script organization -Oracle Open Office Chart : scrollbars -Oracle Open Office Chart : scrollbars;controls -Oracle Open Office Chart : scrollbars;displaying (Calc) -Oracle Open Office Chart : scrollbars;horizontal and vertical (Writer) -Oracle Open Office Chart : search criteria for database functions in cells -Oracle Open Office Chart : search engines -Oracle Open Office Chart : search engines;definition -Oracle Open Office Chart : search engines;selecting -Oracle Open Office Chart : searching -Oracle Open Office Chart : searching;all sheets -Oracle Open Office Chart : searching;databases -Oracle Open Office Chart : searching;form filters -Oracle Open Office Chart : searching;Internet -Oracle Open Office Chart : searching;tables and forms -Oracle Open Office Chart : secondary axes in charts -Oracle Open Office Chart : sections -Oracle Open Office Chart : sections;backgrounds -Oracle Open Office Chart : security -Oracle Open Office Chart : security;digital signatures -Oracle Open Office Chart : security;options for documents with macros -Oracle Open Office Chart : security;protecting contents -Oracle Open Office Chart : security;security levels for macros -Oracle Open Office Chart : security;warning dialogs with macros -Oracle Open Office Chart : selecting -Oracle Open Office Chart : selecting;controls -Oracle Open Office Chart : selecting;measurement units -Oracle Open Office Chart : selecting;objects -Oracle Open Office Chart : selecting;print areas -Oracle Open Office Chart : selecting;several files -Oracle Open Office Chart : selection clipboard -Oracle Open Office Chart : selection frames -Oracle Open Office Chart : selection modes in text -Oracle Open Office Chart : sending -Oracle Open Office Chart : sending;AutoAbstract function in presentations -Oracle Open Office Chart : sending;documents as e-mail -Oracle Open Office Chart : sending;documents as faxes -Oracle Open Office Chart : separator lines -Oracle Open Office Chart : separator lines;defining -Oracle Open Office Chart : separators -Oracle Open Office Chart : separators;conditional -Oracle Open Office Chart : Server Side ImageMap -Oracle Open Office Chart : settings -Oracle Open Office Chart : settings;printers -Oracle Open Office Chart : settings;program configuration -Oracle Open Office Chart : settings;proxies -Oracle Open Office Chart : settings;tracking changes -Oracle Open Office Chart : settings;views -Oracle Open Office Chart : SGML -Oracle Open Office Chart : SGML;definition -Oracle Open Office Chart : shadows -Oracle Open Office Chart : shadows;areas -Oracle Open Office Chart : shadows;borders -Oracle Open Office Chart : shadows;characters -Oracle Open Office Chart : shadows;characters, using context menu -Oracle Open Office Chart : sharing documents -Oracle Open Office Chart : sharpening filter -Oracle Open Office Chart : sheet tabs -Oracle Open Office Chart : sheet tabs;displaying -Oracle Open Office Chart : sheets -Oracle Open Office Chart : sheets;searching all -Oracle Open Office Chart : shortcut keys -Oracle Open Office Chart : shortcut keys;assigning macros -Oracle Open Office Chart : shortcut keys;charts -Oracle Open Office Chart : shortcut keys;general -Oracle Open Office Chart : shortcut keys;in databases -Oracle Open Office Chart : shortcut keys;Oracle Open Office accessibility -Oracle Open Office Chart : showing -Oracle Open Office Chart : showing;changes -Oracle Open Office Chart : showing;docked windows -Oracle Open Office Chart : showing;drawings and controls (Writer) -Oracle Open Office Chart : showing;live presentations on the Internet -Oracle Open Office Chart : showing;toolbars -Oracle Open Office Chart : signing documents with digital signatures -Oracle Open Office Chart : similarity search -Oracle Open Office Chart : simple handles (Writer) -Oracle Open Office Chart : simplified Chinese -Oracle Open Office Chart : simplified Chinese;translating to traditional Chinese -Oracle Open Office Chart : single sign on options -Oracle Open Office Chart : single-line spacing in text -Oracle Open Office Chart : sizes -Oracle Open Office Chart : sizes;draw objects -Oracle Open Office Chart : sizes;pictures -Oracle Open Office Chart : slanting draw objects -Oracle Open Office Chart : small capitals -Oracle Open Office Chart : small icons -Oracle Open Office Chart : smart tag configuration -Oracle Open Office Chart : smooth scrolling (Writer) -Oracle Open Office Chart : smoothing filter -Oracle Open Office Chart : snap grid defaults (Writer/Calc) -Oracle Open Office Chart : snapping in presentations and drawings -Oracle Open Office Chart : solarization filter -Oracle Open Office Chart : sort lists -Oracle Open Office Chart : sort lists;copying to in Calc -Oracle Open Office Chart : sorting -Oracle Open Office Chart : sorting;data in forms -Oracle Open Office Chart : sorting;databases -Oracle Open Office Chart : sound files -Oracle Open Office Chart : spaces -Oracle Open Office Chart : spaces;displaying (Writer) -Oracle Open Office Chart : spaces;ignoring double -Oracle Open Office Chart : spaces;inserting protected spaces -Oracle Open Office Chart : spaces;showing protected spaces (Writer) -Oracle Open Office Chart : spacing -Oracle Open Office Chart : spacing;between paragraphs in footnotes -Oracle Open Office Chart : spacing;font effects -Oracle Open Office Chart : spacing;lines and paragraphs -Oracle Open Office Chart : spacing;tab stops in text documents -Oracle Open Office Chart : spacing;tabs in presentations -Oracle Open Office Chart : spadmin -Oracle Open Office Chart : special characters -Oracle Open Office Chart : speech bubbles -Oracle Open Office Chart : speed of printing -Oracle Open Office Chart : spellcheck -Oracle Open Office Chart : spellcheck;activating for a language -Oracle Open Office Chart : spellcheck;context menus -Oracle Open Office Chart : spellcheck;default languages -Oracle Open Office Chart : spellcheck;dialog -Oracle Open Office Chart : spellcheck;dictionary of exceptions -Oracle Open Office Chart : spellcheck;ignore list -Oracle Open Office Chart : spin button creation -Oracle Open Office Chart : spoolfiles with Xprinter -Oracle Open Office Chart : spreadsheets -Oracle Open Office Chart : spreadsheets;as databases (base) -Oracle Open Office Chart : spreadsheets;copying areas to text documents -Oracle Open Office Chart : spreadsheets;creating/opening -Oracle Open Office Chart : spreadsheets;inserting charts -Oracle Open Office Chart : spreadsheets;inserting database records -Oracle Open Office Chart : spreadsheets;printing -Oracle Open Office Chart : spreadsheets;saving -Oracle Open Office Chart : spreadsheets;saving automatically -Oracle Open Office Chart : spreadsheets;saving in other formats -Oracle Open Office Chart : spreadsheets;sending as e-mail -Oracle Open Office Chart : SQL -Oracle Open Office Chart : SQL;definition -Oracle Open Office Chart : SQL;DISTINCT parameter -Oracle Open Office Chart : SQL;executing SQL commands -Oracle Open Office Chart : SQL;executing SQL statements (Base) -Oracle Open Office Chart : SQL;queries (Base) -Oracle Open Office Chart : square drawings -Oracle Open Office Chart : standard bar on/off -Oracle Open Office Chart : standard deviation in charts -Oracle Open Office Chart : standard filters in databases -Oracle Open Office Chart : standard printer under UNIX -Oracle Open Office Chart : start center -Oracle Open Office Chart : start parameters -Oracle Open Office Chart : statistics in charts -Oracle Open Office Chart : status bar on/off -Oracle Open Office Chart : stickers -Oracle Open Office Chart : stock charts -Oracle Open Office Chart : strikethrough -Oracle Open Office Chart : strikethrough;characters -Oracle Open Office Chart : strikethrough;font effects -Oracle Open Office Chart : styles -Oracle Open Office Chart : styles;'changed' message -Oracle Open Office Chart : styles;copying between documents -Oracle Open Office Chart : styles;keyboard shortcuts -Oracle Open Office Chart : styles;organizing -Oracle Open Office Chart : styles;printing styles used in a document -Oracle Open Office Chart : styles;replacing automatically -Oracle Open Office Chart : Styles and Formatting window -Oracle Open Office Chart : Styles and Formatting window;docking -Oracle Open Office Chart : subforms -Oracle Open Office Chart : subforms;creating -Oracle Open Office Chart : subforms;description -Oracle Open Office Chart : submitting forms -Oracle Open Office Chart : suffixes in file formats -Oracle Open Office Chart : support on the Web -Oracle Open Office Chart : synchronizing -Oracle Open Office Chart : synchronizing;labels and business cards -Oracle Open Office Chart : synchronizing;Pocket PC and Oracle Open Office formats -Oracle Open Office Chart : system address book registration -Oracle Open Office Chart : tab stops -Oracle Open Office Chart : tab stops;displaying (Writer) -Oracle Open Office Chart : tab stops;inserting and editing -Oracle Open Office Chart : tab stops;regular expressions -Oracle Open Office Chart : tab stops;setting in sheets -Oracle Open Office Chart : tab stops;settings -Oracle Open Office Chart : tab stops;spacing in presentations -Oracle Open Office Chart : tab stops;spacing in text documents -Oracle Open Office Chart : table controls -Oracle Open Office Chart : table controls;form functions -Oracle Open Office Chart : table controls;keyboard-only edit mode -Oracle Open Office Chart : table controls;properties -Oracle Open Office Chart : table views of databases -Oracle Open Office Chart : Table Wizard (Base) -Oracle Open Office Chart : tables -Oracle Open Office Chart : tables;inserting line breaks -Oracle Open Office Chart : tables in databases -Oracle Open Office Chart : tables in databases;access rights to (Base) -Oracle Open Office Chart : tables in databases;adding to queries -Oracle Open Office Chart : tables in databases;browsing and editing -Oracle Open Office Chart : tables in databases;copying database tables (Base) -Oracle Open Office Chart : tables in databases;creating -Oracle Open Office Chart : tables in databases;creating in design view (manually) -Oracle Open Office Chart : tables in databases;importing text formats (Base) -Oracle Open Office Chart : tables in databases;joining for queries (Base) -Oracle Open Office Chart : tables in databases;printing queries (Base) -Oracle Open Office Chart : tables in databases;relations (Base) -Oracle Open Office Chart : tables in databases;searching -Oracle Open Office Chart : tables in spreadsheets -Oracle Open Office Chart : tables in spreadsheets;copying data to other applications -Oracle Open Office Chart : tables in spreadsheets;defining borders -Oracle Open Office Chart : tables in spreadsheets;value highlighting -Oracle Open Office Chart : tables in text -Oracle Open Office Chart : tables in text;captions -Oracle Open Office Chart : tables in text;creating automatically -Oracle Open Office Chart : tables in text;default settings -Oracle Open Office Chart : tables in text;defining borders -Oracle Open Office Chart : tables in text;displaying -Oracle Open Office Chart : tables in text;printing -Oracle Open Office Chart : tabs -Oracle Open Office Chart : tabs;displaying sheet tabs -Oracle Open Office Chart : tags -Oracle Open Office Chart : tags;definition -Oracle Open Office Chart : tags;META tags -Oracle Open Office Chart : templates -Oracle Open Office Chart : templates;agendas -Oracle Open Office Chart : templates;changing basic fonts -Oracle Open Office Chart : templates;database reports -Oracle Open Office Chart : templates;deleting -Oracle Open Office Chart : templates;editing and saving -Oracle Open Office Chart : templates;faxes -Oracle Open Office Chart : templates;importing and exporting -Oracle Open Office Chart : templates;letters -Oracle Open Office Chart : templates;new documents from templates -Oracle Open Office Chart : templates;opening documents with -Oracle Open Office Chart : templates;organizing -Oracle Open Office Chart : terminology -Oracle Open Office Chart : terminology;general glossary -Oracle Open Office Chart : terminology;Internet glossary -Oracle Open Office Chart : testing XML filters -Oracle Open Office Chart : text -Oracle Open Office Chart : text;animating -Oracle Open Office Chart : text;Asian layout -Oracle Open Office Chart : text;bold -Oracle Open Office Chart : text;coloring -Oracle Open Office Chart : text;copying by drag and drop -Oracle Open Office Chart : text;CTL languages -Oracle Open Office Chart : text;drawing pictures -Oracle Open Office Chart : text;font effects -Oracle Open Office Chart : text;font sizes -Oracle Open Office Chart : text;font styles -Oracle Open Office Chart : text;fonts and formats -Oracle Open Office Chart : text;Fontwork icons -Oracle Open Office Chart : text;hyperlinks -Oracle Open Office Chart : text;inserting special characters -Oracle Open Office Chart : text;italics -Oracle Open Office Chart : text;kerning -Oracle Open Office Chart : text;language selection -Oracle Open Office Chart : text;line spacing -Oracle Open Office Chart : text;overwriting or inserting -Oracle Open Office Chart : text;printing in black -Oracle Open Office Chart : text;replacing with format -Oracle Open Office Chart : text;selection modes -Oracle Open Office Chart : text;shadowed -Oracle Open Office Chart : text;text/draw objects -Oracle Open Office Chart : text attributes -Oracle Open Office Chart : text attributes;hyperlinks -Oracle Open Office Chart : text attributes;undoing -Oracle Open Office Chart : text boxes -Oracle Open Office Chart : text boxes;form functions -Oracle Open Office Chart : text boxes;positioning -Oracle Open Office Chart : text breaks in cells -Oracle Open Office Chart : text colors for better accessibility -Oracle Open Office Chart : text databases (Base) -Oracle Open Office Chart : text documents -Oracle Open Office Chart : text documents;creating/opening -Oracle Open Office Chart : text documents;importing/exporting -Oracle Open Office Chart : text documents;inserting spreadsheet cells -Oracle Open Office Chart : text documents;print settings -Oracle Open Office Chart : text documents;printing -Oracle Open Office Chart : text documents;saving -Oracle Open Office Chart : text documents;saving automatically -Oracle Open Office Chart : text documents;saving in other formats -Oracle Open Office Chart : text documents;sending as e-mail -Oracle Open Office Chart : text effects -Oracle Open Office Chart : text flow -Oracle Open Office Chart : text flow;in cells -Oracle Open Office Chart : text formats -Oracle Open Office Chart : text formats;databases -Oracle Open Office Chart : text formats;pasting -Oracle Open Office Chart : text input fields -Oracle Open Office Chart : text layout for special languages -Oracle Open Office Chart : text objects -Oracle Open Office Chart : text objects;alignment -Oracle Open Office Chart : text objects;draw functions -Oracle Open Office Chart : text objects;fonts -Oracle Open Office Chart : text objects;in presentations and drawings -Oracle Open Office Chart : text overflow in spreadsheet cells -Oracle Open Office Chart : text scaling in charts -Oracle Open Office Chart : text, see also text documents, paragraphs and characters -Oracle Open Office Chart : TextArt, see Fontwork -Oracle Open Office Chart : textures -Oracle Open Office Chart : textures;inserting from Gallery -Oracle Open Office Chart : textures;on chart bars -Oracle Open Office Chart : Thai -Oracle Open Office Chart : Thai;entering text -Oracle Open Office Chart : Thai;language settings -Oracle Open Office Chart : thesaurus -Oracle Open Office Chart : thesaurus;activating for a language -Oracle Open Office Chart : ticker text -Oracle Open Office Chart : time fields -Oracle Open Office Chart : time fields;form functions -Oracle Open Office Chart : times -Oracle Open Office Chart : times;inserting when printing presentations -Oracle Open Office Chart : times, formats -Oracle Open Office Chart : tips -Oracle Open Office Chart : tips;extended tips in Help -Oracle Open Office Chart : title rows -Oracle Open Office Chart : title rows;printing in Oracle Open Office Math -Oracle Open Office Chart : titles -Oracle Open Office Chart : titles;alignment (charts) -Oracle Open Office Chart : titles;changing -Oracle Open Office Chart : titles;editing in charts -Oracle Open Office Chart : titles;font effects -Oracle Open Office Chart : titles;formatting automatically -Oracle Open Office Chart : titles;formatting charts -Oracle Open Office Chart : titles;objects -Oracle Open Office Chart : toolbars -Oracle Open Office Chart : toolbars;adding buttons -Oracle Open Office Chart : toolbars;docking/undocking -Oracle Open Office Chart : toolbars;Form Navigation bar -Oracle Open Office Chart : toolbars;viewing/closing -Oracle Open Office Chart : tools bar -Oracle Open Office Chart : tooltips -Oracle Open Office Chart : tooltips;extended tips -Oracle Open Office Chart : tooltips;help -Oracle Open Office Chart : traditional Chinese -Oracle Open Office Chart : traditional Chinese;translating to simplified chinese -Oracle Open Office Chart : transparency -Oracle Open Office Chart : transparency;areas -Oracle Open Office Chart : transparency;off for faster printing -Oracle Open Office Chart : transparency;saving -Oracle Open Office Chart : tree view of Help -Oracle Open Office Chart : trend lines in charts -Oracle Open Office Chart : typefaces -Oracle Open Office Chart : typefaces;adding under UNIX -Oracle Open Office Chart : typefaces;formats -Oracle Open Office Chart : typography -Oracle Open Office Chart : typography;Asian -Oracle Open Office Chart : underlining -Oracle Open Office Chart : underlining;AutoFormat function -Oracle Open Office Chart : underlining;characters -Oracle Open Office Chart : underlining;text -Oracle Open Office Chart : undocking windows -Oracle Open Office Chart : undoing -Oracle Open Office Chart : undoing;direct formatting -Oracle Open Office Chart : undoing;editing -Oracle Open Office Chart : undoing;number of steps -Oracle Open Office Chart : ungrouping groups -Oracle Open Office Chart : units -Oracle Open Office Chart : units;converting -Oracle Open Office Chart : units;measurement units -Oracle Open Office Chart : UNO components -Oracle Open Office Chart : UNO components;Extension Manager -Oracle Open Office Chart : UNO components;integrating new -Oracle Open Office Chart : update options -Oracle Open Office Chart : updates -Oracle Open Office Chart : updates;checking automatically -Oracle Open Office Chart : updates;checking manually -Oracle Open Office Chart : updating -Oracle Open Office Chart : updating;fields and charts, automatically (Writer) -Oracle Open Office Chart : updating;links in text documents -Oracle Open Office Chart : updating;links, on opening -Oracle Open Office Chart : updating;templates -Oracle Open Office Chart : URL -Oracle Open Office Chart : URL;changing hyperlink URLs -Oracle Open Office Chart : URL;definition -Oracle Open Office Chart : URL;in pictures -Oracle Open Office Chart : URL;saving absolute/relative paths -Oracle Open Office Chart : URL;turning off URL recognition -Oracle Open Office Chart : user data -Oracle Open Office Chart : user data;input -Oracle Open Office Chart : user data;removing when saving -Oracle Open Office Chart : user feedback -Oracle Open Office Chart : user feedback;automatically -Oracle Open Office Chart : user-defined dictionaries -Oracle Open Office Chart : user-defined dictionaries;creating -Oracle Open Office Chart : user-defined dictionaries;dictionary of exceptions -Oracle Open Office Chart : user-defined dictionaries;editing -Oracle Open Office Chart : user-defined styles -Oracle Open Office Chart : user-defined styles;automatically replacing -Oracle Open Office Chart : UTF-8/UCS2 support -Oracle Open Office Chart : values -Oracle Open Office Chart : values;rounded as shown (Calc) -Oracle Open Office Chart : variables -Oracle Open Office Chart : variables;for paths -Oracle Open Office Chart : variances in charts -Oracle Open Office Chart : VBA code -Oracle Open Office Chart : VBA code;loading/saving documents with VBA code -Oracle Open Office Chart : version management -Oracle Open Office Chart : version numbers of documents -Oracle Open Office Chart : versions -Oracle Open Office Chart : versions;comparing documents -Oracle Open Office Chart : versions;file saving as, restriction -Oracle Open Office Chart : versions;merging document versions -Oracle Open Office Chart : versions;of a document -Oracle Open Office Chart : versions;Oracle Open Office -Oracle Open Office Chart : vertical callouts -Oracle Open Office Chart : vertical scrollbars (Writer) -Oracle Open Office Chart : vertical text boxes -Oracle Open Office Chart : videos -Oracle Open Office Chart : viewing -Oracle Open Office Chart : viewing;databases -Oracle Open Office Chart : viewing;file properties -Oracle Open Office Chart : viewing;Oracle Open Office documents in Internet Explorer -Oracle Open Office Chart : viewing;toolbars -Oracle Open Office Chart : views -Oracle Open Office Chart : views;creating database views (Base) -Oracle Open Office Chart : views;defaults -Oracle Open Office Chart : views;full screen -Oracle Open Office Chart : views;icons -Oracle Open Office Chart : views;scaling -Oracle Open Office Chart : Visual Basic for Applications -Oracle Open Office Chart : Visual Basic for Applications;loading/saving documents with VBA code -Oracle Open Office Chart : watermarks -Oracle Open Office Chart : web documents -Oracle Open Office Chart : web documents;XForms -Oracle Open Office Chart : Web support -Oracle Open Office Chart : WebCast export -Oracle Open Office Chart : WebDAV over HTTPS -Oracle Open Office Chart : windows -Oracle Open Office Chart : windows;docking -Oracle Open Office Chart : windows;docking definition -Oracle Open Office Chart : windows;hiding/showing/docking -Oracle Open Office Chart : windows;new -Oracle Open Office Chart : wizards -Oracle Open Office Chart : wizards;agendas -Oracle Open Office Chart : wizards;database queries -Oracle Open Office Chart : wizards;database tables (Base) -Oracle Open Office Chart : wizards;databases (Base) -Oracle Open Office Chart : wizards;document converter -Oracle Open Office Chart : wizards;Euro Converter -Oracle Open Office Chart : wizards;faxes -Oracle Open Office Chart : wizards;forms -Oracle Open Office Chart : wizards;letters -Oracle Open Office Chart : wizards;macros (Base) -Oracle Open Office Chart : wizards;overview -Oracle Open Office Chart : wizards;presentations -Oracle Open Office Chart : wizards;reports -Oracle Open Office Chart : Word documents -Oracle Open Office Chart : Word documents;compatibility -Oracle Open Office Chart : Word documents;saving as -Oracle Open Office Chart : WordArt, see Fontwork -Oracle Open Office Chart : words -Oracle Open Office Chart : words;automatically replacing -Oracle Open Office Chart : words;wrapping in cells -Oracle Open Office Chart : words;wrapping in CTL -Oracle Open Office Chart : working directory change -Oracle Open Office Chart : wrapping text -Oracle Open Office Chart : wrapping text;in cells -Oracle Open Office Chart : write protection on/off -Oracle Open Office Chart : writing aids options -Oracle Open Office Chart : WYSIWYG in fonts lists -Oracle Open Office Chart : X axes -Oracle Open Office Chart : X axes;grid formatting -Oracle Open Office Chart : X axes;positioning -Oracle Open Office Chart : X axes;scaling -Oracle Open Office Chart : X axes;showing -Oracle Open Office Chart : XForms -Oracle Open Office Chart : XForms;adding/editing/deleting/organizing namespaces -Oracle Open Office Chart : XForms;conditions -Oracle Open Office Chart : XForms;opening/editing -Oracle Open Office Chart : XML converters -Oracle Open Office Chart : XML file formats -Oracle Open Office Chart : XML filters -Oracle Open Office Chart : XML filters;creating/testing -Oracle Open Office Chart : XML filters;saving as package/installing/deleting -Oracle Open Office Chart : XML filters;settings -Oracle Open Office Chart : XML Forms, see XForms -Oracle Open Office Chart : XSLT filters, see also XML filters -Oracle Open Office Chart : XY charts -Oracle Open Office Chart : Y axes -Oracle Open Office Chart : Y axes;formatting -Oracle Open Office Chart : Y axes;grid formatting -Oracle Open Office Chart : Y axes;positioning -Oracle Open Office Chart : Y axes;scaling -Oracle Open Office Chart : Y axes;showing -Oracle Open Office Chart : years -Oracle Open Office Chart : years;2-digit options -Oracle Open Office Chart : Z axes -Oracle Open Office Chart : Z axes;grid formatting -Oracle Open Office Chart : Z axes;showing -Oracle Open Office Chart : zero values -Oracle Open Office Chart : zero values;displaying (Calc) -Oracle Open Office Chart : zooming -Oracle Open Office Chart : zooming;page views -Oracle Open Office Chart : zooming;pictures -Oracle Open Office Chart : zooming;status bar -Oracle Open Office Impress : 3D charts -Oracle Open Office Impress : 3D objects -Oracle Open Office Impress : 3D objects;assembling -Oracle Open Office Impress : 3D objects;generating -Oracle Open Office Impress : 3D objects;inserting -Oracle Open Office Impress : 3D rotation objects -Oracle Open Office Impress : 3D rotation objects;converting to -Oracle Open Office Impress : 3D rotation objects;generating -Oracle Open Office Impress : 3D text creation -Oracle Open Office Impress : abbreviation replacement -Oracle Open Office Impress : absolute hyperlinks -Oracle Open Office Impress : absolute saving of URLs -Oracle Open Office Impress : accents -Oracle Open Office Impress : Access databases (base) -Oracle Open Office Impress : access rights for database tables (Base) -Oracle Open Office Impress : accessibility -Oracle Open Office Impress : accessibility;general shortcuts -Oracle Open Office Impress : accessibility;options -Oracle Open Office Impress : accessibility;Oracle Open Office assistive technology -Oracle Open Office Impress : accessibility;Oracle Open Office Draw -Oracle Open Office Impress : accessibility;Oracle Open Office features -Oracle Open Office Impress : accessibility;Oracle Open Office Impress -Oracle Open Office Impress : activating -Oracle Open Office Impress : activating;context menus -Oracle Open Office Impress : activating;Error Report Tool -Oracle Open Office Impress : activating;extended help tips -Oracle Open Office Impress : activating;plug-ins -Oracle Open Office Impress : ActiveX control -Oracle Open Office Impress : Adabas D databases (base) -Oracle Open Office Impress : add-ons, see UNO components -Oracle Open Office Impress : additional selection mode -Oracle Open Office Impress : address books -Oracle Open Office Impress : address books;LDAP server (Base) -Oracle Open Office Impress : address books;registering -Oracle Open Office Impress : address labels from databases -Oracle Open Office Impress : ADO databases (Base) -Oracle Open Office Impress : Agenda Wizard -Oracle Open Office Impress : aging filter -Oracle Open Office Impress : aligning -Oracle Open Office Impress : aligning;2D charts -Oracle Open Office Impress : aligning;cells -Oracle Open Office Impress : aligning;draw objects -Oracle Open Office Impress : aligning;objects -Oracle Open Office Impress : aligning;paragraphs -Oracle Open Office Impress : aligning;tables in text -Oracle Open Office Impress : aligning;text objects -Oracle Open Office Impress : aligning;titles in charts -Oracle Open Office Impress : allowing -Oracle Open Office Impress : allowing;effects -Oracle Open Office Impress : allowing;interaction -Oracle Open Office Impress : alternative fonts -Oracle Open Office Impress : ampersand symbol, see also operators -Oracle Open Office Impress : anchors -Oracle Open Office Impress : anchors;changing -Oracle Open Office Impress : anchors;displaying (Calc) -Oracle Open Office Impress : anchors;types/positions for draw objects -Oracle Open Office Impress : animated GIFs -Oracle Open Office Impress : animated slide transitions -Oracle Open Office Impress : animation effects -Oracle Open Office Impress : animations -Oracle Open Office Impress : animations;accessibility options -Oracle Open Office Impress : animations;editing -Oracle Open Office Impress : animations;list of -Oracle Open Office Impress : animations;saving as GIFs -Oracle Open Office Impress : appearance options -Oracle Open Office Impress : Arabic -Oracle Open Office Impress : Arabic;entering text -Oracle Open Office Impress : Arabic;language settings -Oracle Open Office Impress : area charts -Oracle Open Office Impress : areas -Oracle Open Office Impress : areas;bitmap patterns -Oracle Open Office Impress : areas;from connected lines -Oracle Open Office Impress : areas;hatched/dotted -Oracle Open Office Impress : areas;shadows -Oracle Open Office Impress : areas;slanting -Oracle Open Office Impress : areas;styles -Oracle Open Office Impress : areas;transparency -Oracle Open Office Impress : arguments in command line -Oracle Open Office Impress : arranging -Oracle Open Office Impress : arranging;objects -Oracle Open Office Impress : arranging;objects (guide) -Oracle Open Office Impress : arranging;slides -Oracle Open Office Impress : arrows -Oracle Open Office Impress : arrows;defining arrow heads -Oracle Open Office Impress : arrows;defining arrow lines -Oracle Open Office Impress : arrows;drawing in text -Oracle Open Office Impress : arrows;inserting -Oracle Open Office Impress : arrows;loading arrow styles -Oracle Open Office Impress : ASCII -Oracle Open Office Impress : ASCII;definition -Oracle Open Office Impress : Asian languages -Oracle Open Office Impress : Asian languages;enabling -Oracle Open Office Impress : Asian Phonetic Guide -Oracle Open Office Impress : Asian typography -Oracle Open Office Impress : assembled objects in 3D -Oracle Open Office Impress : assigning scripts -Oracle Open Office Impress : assistive technology in Oracle Open Office -Oracle Open Office Impress : attaching toolbars -Oracle Open Office Impress : attachments in e-mails -Oracle Open Office Impress : attributes -Oracle Open Office Impress : attributes;objects with -Oracle Open Office Impress : audio -Oracle Open Office Impress : authors -Oracle Open Office Impress : auto reloading HTML documents -Oracle Open Office Impress : AutoAbstract function for sending text to presentations -Oracle Open Office Impress : AutoCaption function in Oracle Open Office Writer -Oracle Open Office Impress : AutoComplete function in text and list boxes -Oracle Open Office Impress : AutoCorrect function -Oracle Open Office Impress : AutoCorrect function;context menu -Oracle Open Office Impress : AutoCorrect function;options -Oracle Open Office Impress : AutoCorrect function;pictures and frames -Oracle Open Office Impress : AutoCorrect function;quotes -Oracle Open Office Impress : AutoCorrect function;replacement table -Oracle Open Office Impress : AutoCorrect function;switching on and off in Calc -Oracle Open Office Impress : AutoCorrect function;URL recognition -Oracle Open Office Impress : AutoFormat function -Oracle Open Office Impress : AutoFormat function;switching on and off -Oracle Open Office Impress : automatic captions (Writer) -Oracle Open Office Impress : automatic control focus -Oracle Open Office Impress : automatic hyperlink formatting -Oracle Open Office Impress : automatic line breaks -Oracle Open Office Impress : automatic lines/borders in text -Oracle Open Office Impress : automatic saving -Oracle Open Office Impress : automatic slide changes -Oracle Open Office Impress : automatic slide changes;rehearse timings -Oracle Open Office Impress : automatic slide shows -Oracle Open Office Impress : automatic slide transition -Oracle Open Office Impress : AutoPilots, see wizards -Oracle Open Office Impress : AutoValue (Base) -Oracle Open Office Impress : averages in charts -Oracle Open Office Impress : axes -Oracle Open Office Impress : axes;better scaling -Oracle Open Office Impress : axes;formatting -Oracle Open Office Impress : axes;formatting grids -Oracle Open Office Impress : axes;inserting grids -Oracle Open Office Impress : axes;interval marks -Oracle Open Office Impress : axes;showing axes in charts -Oracle Open Office Impress : axes in charts -Oracle Open Office Impress : backgrounds -Oracle Open Office Impress : backgrounds;changing -Oracle Open Office Impress : backgrounds;defining colors/pictures -Oracle Open Office Impress : backgrounds;deleting unused -Oracle Open Office Impress : backgrounds;frames/sections/indexes -Oracle Open Office Impress : backgrounds;inserting from Gallery -Oracle Open Office Impress : backgrounds;normal view -Oracle Open Office Impress : backgrounds;notes -Oracle Open Office Impress : backgrounds;printing -Oracle Open Office Impress : backgrounds;slides -Oracle Open Office Impress : backing window -Oracle Open Office Impress : backups -Oracle Open Office Impress : backups;automatic -Oracle Open Office Impress : backups;documents -Oracle Open Office Impress : bar charts -Oracle Open Office Impress : Basic -Oracle Open Office Impress : Basic;fonts for source display -Oracle Open Office Impress : Basic;programming -Oracle Open Office Impress : Basic;recording macros -Oracle Open Office Impress : basic fonts -Oracle Open Office Impress : behind object command -Oracle Open Office Impress : Bézier curves -Oracle Open Office Impress : Bézier curves;control points in presentations -Oracle Open Office Impress : bi-directional writing -Oracle Open Office Impress : binding space -Oracle Open Office Impress : bitmaps -Oracle Open Office Impress : bitmaps;converting to -Oracle Open Office Impress : bitmaps;converting to vector graphics -Oracle Open Office Impress : bitmaps;inserting and editing -Oracle Open Office Impress : bitmaps;off for faster printing -Oracle Open Office Impress : bitmaps;patterns -Oracle Open Office Impress : bitmaps;replacing colors -Oracle Open Office Impress : black and white display -Oracle Open Office Impress : black and white printing -Oracle Open Office Impress : black and white view -Oracle Open Office Impress : black printing in Calc -Oracle Open Office Impress : block selection mode -Oracle Open Office Impress : bold -Oracle Open Office Impress : bold;AutoFormat function -Oracle Open Office Impress : bold;text -Oracle Open Office Impress : bookmarks -Oracle Open Office Impress : bookmarks;Help -Oracle Open Office Impress : borders -Oracle Open Office Impress : borders;arranging -Oracle Open Office Impress : borders;cells on screen (Calc) -Oracle Open Office Impress : borders;for paragraphs -Oracle Open Office Impress : borders;for tables -Oracle Open Office Impress : borders;shadows -Oracle Open Office Impress : borders;table boundaries (Writer) -Oracle Open Office Impress : borders, see also frames -Oracle Open Office Impress : bound fields -Oracle Open Office Impress : bound fields;controls -Oracle Open Office Impress : boundaries of tables (Writer) -Oracle Open Office Impress : break display (Writer) -Oracle Open Office Impress : breaking object connections -Oracle Open Office Impress : brochures -Oracle Open Office Impress : brochures;printing several -Oracle Open Office Impress : bubble charts -Oracle Open Office Impress : build numbers of Oracle Open Office -Oracle Open Office Impress : bullet lists -Oracle Open Office Impress : bullet lists;formatting options -Oracle Open Office Impress : bullets -Oracle Open Office Impress : bullets;paragraphs -Oracle Open Office Impress : bullets;replacing -Oracle Open Office Impress : bullets;turning off -Oracle Open Office Impress : business cards -Oracle Open Office Impress : business cards;creating and synchronizing -Oracle Open Office Impress : business cards;using templates -Oracle Open Office Impress : button bars, see toolbars -Oracle Open Office Impress : buttons -Oracle Open Office Impress : buttons;adding push buttons -Oracle Open Office Impress : buttons;big/small -Oracle Open Office Impress : buttons;editing hyperlink buttons -Oracle Open Office Impress : buttons;form functions -Oracle Open Office Impress : buttons;toolbars -Oracle Open Office Impress : cache for graphics -Oracle Open Office Impress : calculating -Oracle Open Office Impress : calculating;iterative references (Calc) -Oracle Open Office Impress : calculating;regression curves -Oracle Open Office Impress : callouts -Oracle Open Office Impress : callouts;drawings -Oracle Open Office Impress : callouts;inserting in presentations -Oracle Open Office Impress : capital letters -Oracle Open Office Impress : capital letters;AutoCorrect function -Oracle Open Office Impress : capital letters;font effects -Oracle Open Office Impress : captions -Oracle Open Office Impress : captions;automatic captions (Writer) -Oracle Open Office Impress : captions;tables/pictures/frames/OLE objects (Writer) -Oracle Open Office Impress : captions, see also labels/callouts -Oracle Open Office Impress : cascading update (Base) -Oracle Open Office Impress : case sensitivity -Oracle Open Office Impress : case sensitivity;comparing cell contents (Calc) -Oracle Open Office Impress : case sensitivity;searching -Oracle Open Office Impress : cells -Oracle Open Office Impress : cells;aligning -Oracle Open Office Impress : cells;coloring (Calc) -Oracle Open Office Impress : cells;cursor positions after input (Calc) -Oracle Open Office Impress : cells;formatting without effect (Calc) -Oracle Open Office Impress : cells;line breaks -Oracle Open Office Impress : cells;linked to controls -Oracle Open Office Impress : cells;number of -Oracle Open Office Impress : cells;pasting -Oracle Open Office Impress : cells;resetting formats -Oracle Open Office Impress : cells;showing grid lines (Calc) -Oracle Open Office Impress : centered text -Oracle Open Office Impress : centimeters -Oracle Open Office Impress : certificates -Oracle Open Office Impress : changes -Oracle Open Office Impress : changes;accepting or rejecting -Oracle Open Office Impress : changes;comparing to original -Oracle Open Office Impress : changes;protecting -Oracle Open Office Impress : changes;recording -Oracle Open Office Impress : changes;review function -Oracle Open Office Impress : changes;showing -Oracle Open Office Impress : changing -Oracle Open Office Impress : changing;document titles -Oracle Open Office Impress : changing;file associations in Setup program -Oracle Open Office Impress : changing;icon sizes -Oracle Open Office Impress : changing;layer properties -Oracle Open Office Impress : changing;layout for handouts -Oracle Open Office Impress : changing;links -Oracle Open Office Impress : changing;order of slides -Oracle Open Office Impress : changing;slide layouts -Oracle Open Office Impress : changing;work directory -Oracle Open Office Impress : changing, see also editing and replacing -Oracle Open Office Impress : character styles -Oracle Open Office Impress : character styles;language selection -Oracle Open Office Impress : characters -Oracle Open Office Impress : characters;alternative fonts -Oracle Open Office Impress : characters;Asian layout -Oracle Open Office Impress : characters;bold -Oracle Open Office Impress : characters;coloring -Oracle Open Office Impress : characters;converting to curves -Oracle Open Office Impress : characters;displaying only on screen (Writer) -Oracle Open Office Impress : characters;enabling CTL and Asian characters -Oracle Open Office Impress : characters;font effects -Oracle Open Office Impress : characters;fonts and formats -Oracle Open Office Impress : characters;hyperlinks -Oracle Open Office Impress : characters;italics -Oracle Open Office Impress : characters;language selection -Oracle Open Office Impress : characters;shadowed -Oracle Open Office Impress : characters;spacing -Oracle Open Office Impress : characters;special -Oracle Open Office Impress : characters;underlining -Oracle Open Office Impress : charcoal sketches filter -Oracle Open Office Impress : chart legends -Oracle Open Office Impress : chart legends;hiding -Oracle Open Office Impress : chart legends;showing icons with labels -Oracle Open Office Impress : chart types -Oracle Open Office Impress : chart types;area -Oracle Open Office Impress : chart types;bubble -Oracle Open Office Impress : chart types;column and bar -Oracle Open Office Impress : chart types;column and line -Oracle Open Office Impress : chart types;line -Oracle Open Office Impress : chart types;net -Oracle Open Office Impress : chart types;pie/donut -Oracle Open Office Impress : chart types;stock -Oracle Open Office Impress : chart types;XY (scatter) -Oracle Open Office Impress : charts -Oracle Open Office Impress : charts;3D views -Oracle Open Office Impress : charts;aligning -Oracle Open Office Impress : charts;arranging within stacks -Oracle Open Office Impress : charts;bars with textures -Oracle Open Office Impress : charts;choosing chart types -Oracle Open Office Impress : charts;colors -Oracle Open Office Impress : charts;copying with link to source cell range -Oracle Open Office Impress : charts;data labels -Oracle Open Office Impress : charts;displaying (Calc) -Oracle Open Office Impress : charts;editing axes -Oracle Open Office Impress : charts;editing data -Oracle Open Office Impress : charts;editing legends -Oracle Open Office Impress : charts;editing titles -Oracle Open Office Impress : charts;formatting areas -Oracle Open Office Impress : charts;formatting floors -Oracle Open Office Impress : charts;formatting walls -Oracle Open Office Impress : charts;inserting -Oracle Open Office Impress : charts;overview -Oracle Open Office Impress : charts;positioning axes -Oracle Open Office Impress : charts;properties -Oracle Open Office Impress : charts;reorganizing -Oracle Open Office Impress : charts;scaling axes -Oracle Open Office Impress : charts;scaling text -Oracle Open Office Impress : charts;shortcuts -Oracle Open Office Impress : charts;showing axes -Oracle Open Office Impress : charts;updating automatically (Writer) -Oracle Open Office Impress : check box creation -Oracle Open Office Impress : Chinese writing systems -Oracle Open Office Impress : choosing printers -Oracle Open Office Impress : circle drawings -Oracle Open Office Impress : circle segments -Oracle Open Office Impress : circles -Oracle Open Office Impress : circles;of objects -Oracle Open Office Impress : Client Side ImageMap -Oracle Open Office Impress : clipboard -Oracle Open Office Impress : clipboard;cutting -Oracle Open Office Impress : clipboard;pasting -Oracle Open Office Impress : clipboard;pasting formatted/unformatted text -Oracle Open Office Impress : clipboard;selection clipboard -Oracle Open Office Impress : clipboard;Unix -Oracle Open Office Impress : closing -Oracle Open Office Impress : closing;documents -Oracle Open Office Impress : closing;shapes -Oracle Open Office Impress : closing;toolbars -Oracle Open Office Impress : collaboration -Oracle Open Office Impress : color bar -Oracle Open Office Impress : colors -Oracle Open Office Impress : colors;adding -Oracle Open Office Impress : colors;appearance -Oracle Open Office Impress : colors;backgrounds -Oracle Open Office Impress : colors;charts -Oracle Open Office Impress : colors;default colors -Oracle Open Office Impress : colors;defining and saving -Oracle Open Office Impress : colors;defining gradients interactively -Oracle Open Office Impress : colors;displaying presentations -Oracle Open Office Impress : colors;fill format -Oracle Open Office Impress : colors;fonts -Oracle Open Office Impress : colors;grid lines and cells (Calc) -Oracle Open Office Impress : colors;loading lists -Oracle Open Office Impress : colors;models -Oracle Open Office Impress : colors;not printing -Oracle Open Office Impress : colors;printing in grayscale -Oracle Open Office Impress : colors;replacing -Oracle Open Office Impress : colors;restriction (Calc) -Oracle Open Office Impress : colors;selection -Oracle Open Office Impress : column and line charts -Oracle Open Office Impress : column charts -Oracle Open Office Impress : column headers -Oracle Open Office Impress : column headers;displaying (Calc) -Oracle Open Office Impress : column headers;highlighting (Calc) -Oracle Open Office Impress : columns -Oracle Open Office Impress : columns;inserting -Oracle Open Office Impress : columns;setting with the mouse -Oracle Open Office Impress : combination charts -Oracle Open Office Impress : combining -Oracle Open Office Impress : combining;3D objects -Oracle Open Office Impress : combining;draw objects -Oracle Open Office Impress : combining;undoing -Oracle Open Office Impress : combo box creation -Oracle Open Office Impress : command button creation -Oracle Open Office Impress : command buttons, see push buttons -Oracle Open Office Impress : command line parameters -Oracle Open Office Impress : commands -Oracle Open Office Impress : commands;repeating -Oracle Open Office Impress : commands;SQL -Oracle Open Office Impress : comments -Oracle Open Office Impress : comments;displaying (Calc) -Oracle Open Office Impress : comments;inserting/editing/deleting/printing -Oracle Open Office Impress : comments;on changes -Oracle Open Office Impress : comments;printing in text -Oracle Open Office Impress : common terms -Oracle Open Office Impress : common terms;Chinese dictionary -Oracle Open Office Impress : common terms;glossaries -Oracle Open Office Impress : common terms;Internet glossary -Oracle Open Office Impress : comparisons -Oracle Open Office Impress : comparisons;document versions -Oracle Open Office Impress : comparisons;operators in default filter dialog -Oracle Open Office Impress : compatibility settings for MS Word import -Oracle Open Office Impress : complete screen view -Oracle Open Office Impress : complex text layout -Oracle Open Office Impress : complex text layout;definition -Oracle Open Office Impress : complex text layout;enabling -Oracle Open Office Impress : complex text layout, see CTL -Oracle Open Office Impress : compose key to insert special characters -Oracle Open Office Impress : concatenation, see ampersand symbol -Oracle Open Office Impress : conditional separators -Oracle Open Office Impress : conditions -Oracle Open Office Impress : conditions;in number formats -Oracle Open Office Impress : conditions;items in Data Navigator -Oracle Open Office Impress : cones -Oracle Open Office Impress : Configuration Manager -Oracle Open Office Impress : configuring -Oracle Open Office Impress : configuring;fax icon -Oracle Open Office Impress : configuring;Oracle Open Office -Oracle Open Office Impress : configuring;toolbars -Oracle Open Office Impress : connecting -Oracle Open Office Impress : connecting;draw objects -Oracle Open Office Impress : connecting;lines -Oracle Open Office Impress : connecting;paths and objects -Oracle Open Office Impress : connections to data sources (Base) -Oracle Open Office Impress : connectors -Oracle Open Office Impress : connectors;properties of -Oracle Open Office Impress : connectors;using -Oracle Open Office Impress : constructing shapes -Oracle Open Office Impress : contents protection -Oracle Open Office Impress : context menus -Oracle Open Office Impress : contours -Oracle Open Office Impress : contours;converting to -Oracle Open Office Impress : control point display in presentations -Oracle Open Office Impress : control points definition -Oracle Open Office Impress : controls -Oracle Open Office Impress : controls;activating in forms -Oracle Open Office Impress : controls;adding to documents -Oracle Open Office Impress : controls;arranging in forms -Oracle Open Office Impress : controls;arranging within stacks -Oracle Open Office Impress : controls;assigning data sources -Oracle Open Office Impress : controls;assigning macros (Basic) -Oracle Open Office Impress : controls;bound fields/list contents/linked cells -Oracle Open Office Impress : controls;events -Oracle Open Office Impress : controls;focus -Oracle Open Office Impress : controls;formatted fields -Oracle Open Office Impress : controls;grouping -Oracle Open Office Impress : controls;hidden -Oracle Open Office Impress : controls;inserting -Oracle Open Office Impress : controls;multi-line titles -Oracle Open Office Impress : controls;positions and sizes -Oracle Open Office Impress : controls;printing -Oracle Open Office Impress : controls;properties of form controls -Oracle Open Office Impress : controls;properties of table controls -Oracle Open Office Impress : controls;reference by SQL -Oracle Open Office Impress : controls;rich text control -Oracle Open Office Impress : controls;select mode -Oracle Open Office Impress : controls;showing (Writer) -Oracle Open Office Impress : converters -Oracle Open Office Impress : converters;Euro converter -Oracle Open Office Impress : converters;PostScript, UNIX -Oracle Open Office Impress : converters;XML -Oracle Open Office Impress : converting -Oracle Open Office Impress : converting;bitmaps to polygons -Oracle Open Office Impress : converting;Hangul/Hanja -Oracle Open Office Impress : converting;metrics -Oracle Open Office Impress : converting;Microsoft documents -Oracle Open Office Impress : converting;Oracle Open Office documents -Oracle Open Office Impress : converting;Pocket PC formats -Oracle Open Office Impress : converting;points -Oracle Open Office Impress : converting;text to curves -Oracle Open Office Impress : converting;to bitmaps -Oracle Open Office Impress : converting;to contours -Oracle Open Office Impress : converting;to curves, polygons, 3D -Oracle Open Office Impress : converting;to metafile format (WMF) -Oracle Open Office Impress : copies -Oracle Open Office Impress : copies;printing -Oracle Open Office Impress : copying -Oracle Open Office Impress : copying;by drag and drop -Oracle Open Office Impress : copying;data from text documents -Oracle Open Office Impress : copying;datasource records in spreadsheets -Oracle Open Office Impress : copying;draw objects -Oracle Open Office Impress : copying;draw objects between documents -Oracle Open Office Impress : copying;formatting -Oracle Open Office Impress : copying;from data source view -Oracle Open Office Impress : copying;from Gallery -Oracle Open Office Impress : copying;in Unix -Oracle Open Office Impress : copying;pictures, between documents -Oracle Open Office Impress : copying;sheet areas, to text documents -Oracle Open Office Impress : copying;slides -Oracle Open Office Impress : copying;text from other documents -Oracle Open Office Impress : copying;to Gallery -Oracle Open Office Impress : copyright for Oracle Open Office -Oracle Open Office Impress : corner points -Oracle Open Office Impress : corner roundings -Oracle Open Office Impress : covered objects -Oracle Open Office Impress : crash reports -Oracle Open Office Impress : criteria of query design (Base) -Oracle Open Office Impress : cropping pictures -Oracle Open Office Impress : cross-fading -Oracle Open Office Impress : cross-fading;creating cross-fades -Oracle Open Office Impress : cross-fading;slides -Oracle Open Office Impress : cross-fading;two draw objects -Oracle Open Office Impress : CTL -Oracle Open Office Impress : CTL;(not) wrapping words -Oracle Open Office Impress : CTL;complex text layout languages -Oracle Open Office Impress : CTL;definition -Oracle Open Office Impress : CTL;options -Oracle Open Office Impress : cubes -Oracle Open Office Impress : currencies -Oracle Open Office Impress : currencies;converters -Oracle Open Office Impress : currencies;format codes -Oracle Open Office Impress : currency field creation -Oracle Open Office Impress : currency formats -Oracle Open Office Impress : cursor -Oracle Open Office Impress : cursor;allowing in protected areas (Writer) -Oracle Open Office Impress : cursor;in read-only text -Oracle Open Office Impress : cursor;quickly moving to an object -Oracle Open Office Impress : curves -Oracle Open Office Impress : curves;converting text to -Oracle Open Office Impress : curves;drawing -Oracle Open Office Impress : curves;editing -Oracle Open Office Impress : curves;editing points -Oracle Open Office Impress : curves;properties in line charts/XY charts -Oracle Open Office Impress : curves;toolbar -Oracle Open Office Impress : custom animation -Oracle Open Office Impress : custom colors -Oracle Open Office Impress : custom dictionaries -Oracle Open Office Impress : custom dictionaries;editing -Oracle Open Office Impress : custom gradients -Oracle Open Office Impress : custom hyphens (Writer) -Oracle Open Office Impress : custom quotes -Oracle Open Office Impress : custom slide shows -Oracle Open Office Impress : custom templates -Oracle Open Office Impress : customizing -Oracle Open Office Impress : customizing;events -Oracle Open Office Impress : customizing;keyboard -Oracle Open Office Impress : customizing;menus -Oracle Open Office Impress : customizing;Oracle Open Office -Oracle Open Office Impress : customizing;round corners -Oracle Open Office Impress : customizing;toolbars -Oracle Open Office Impress : cutting -Oracle Open Office Impress : cylinders -Oracle Open Office Impress : dashes -Oracle Open Office Impress : data -Oracle Open Office Impress : data;filtering in forms -Oracle Open Office Impress : data;forms and subforms -Oracle Open Office Impress : data;read-only -Oracle Open Office Impress : data;sorting in forms -Oracle Open Office Impress : data;user data -Oracle Open Office Impress : data binding change in XForms -Oracle Open Office Impress : data labels in charts -Oracle Open Office Impress : Data Navigator -Oracle Open Office Impress : Data Navigator;adding/editing items -Oracle Open Office Impress : Data Navigator;display options -Oracle Open Office Impress : data ranges in charts -Oracle Open Office Impress : data series -Oracle Open Office Impress : data source browser -Oracle Open Office Impress : data source explorer -Oracle Open Office Impress : data source view -Oracle Open Office Impress : data source view;drag and drop -Oracle Open Office Impress : data source view;overview -Oracle Open Office Impress : data source view;showing -Oracle Open Office Impress : data sources -Oracle Open Office Impress : data sources;as tables -Oracle Open Office Impress : data sources;connection settings (Base) -Oracle Open Office Impress : data sources;copying records to spreadsheets -Oracle Open Office Impress : data sources;displaying current -Oracle Open Office Impress : data sources;LDAP server (Base) -Oracle Open Office Impress : data sources;Oracle Open Office Base -Oracle Open Office Impress : data sources;registering address books -Oracle Open Office Impress : data sources;reports -Oracle Open Office Impress : data sources;setting for stock charts -Oracle Open Office Impress : data sources;viewing -Oracle Open Office Impress : data structure of XForms -Oracle Open Office Impress : data values in charts -Oracle Open Office Impress : data, see also values -Oracle Open Office Impress : database contents -Oracle Open Office Impress : database contents;inserting as tables -Oracle Open Office Impress : database contents;inserting as text -Oracle Open Office Impress : database reports -Oracle Open Office Impress : Database Wizard (Base) -Oracle Open Office Impress : databases -Oracle Open Office Impress : databases;administration through SQL (Base) -Oracle Open Office Impress : databases;ADO (Base) -Oracle Open Office Impress : databases;connecting (Base) -Oracle Open Office Impress : databases;creating -Oracle Open Office Impress : databases;creating labels -Oracle Open Office Impress : databases;creating queries -Oracle Open Office Impress : databases;creating reports -Oracle Open Office Impress : databases;creating tables -Oracle Open Office Impress : databases;deleting (Base) -Oracle Open Office Impress : databases;drag and drop (Base) -Oracle Open Office Impress : databases;editing tables -Oracle Open Office Impress : databases;form filters -Oracle Open Office Impress : databases;formats (Base) -Oracle Open Office Impress : databases;importing/exporting -Oracle Open Office Impress : databases;JDBC (Base) -Oracle Open Office Impress : databases;main page (Base) -Oracle Open Office Impress : databases;ODBC (Base) -Oracle Open Office Impress : databases;overview -Oracle Open Office Impress : databases;registering (Base) -Oracle Open Office Impress : databases;searching records -Oracle Open Office Impress : databases;shortcut keys -Oracle Open Office Impress : databases;sorting -Oracle Open Office Impress : databases;standard filters -Oracle Open Office Impress : databases;text formats -Oracle Open Office Impress : databases;viewing -Oracle Open Office Impress : date fields -Oracle Open Office Impress : date fields;creating -Oracle Open Office Impress : date fields;properties -Oracle Open Office Impress : date formats -Oracle Open Office Impress : date on all slides -Oracle Open Office Impress : dates -Oracle Open Office Impress : dates;default (Calc) -Oracle Open Office Impress : dates;fixed -Oracle Open Office Impress : dates;printing in presentations -Oracle Open Office Impress : dates;start 1900/01/01 (Calc) -Oracle Open Office Impress : dates;start 1904/01/01 (Calc) -Oracle Open Office Impress : dates;variable -Oracle Open Office Impress : dBASE -Oracle Open Office Impress : dBASE;database settings (Base) -Oracle Open Office Impress : DDE -Oracle Open Office Impress : DDE;definition -Oracle Open Office Impress : deactivating -Oracle Open Office Impress : deactivating;plug-ins -Oracle Open Office Impress : decimal places displayed (Calc) -Oracle Open Office Impress : decimal separator key -Oracle Open Office Impress : decimal tab stops -Oracle Open Office Impress : decreasing sizes of views -Oracle Open Office Impress : default directories -Oracle Open Office Impress : default filters -Oracle Open Office Impress : default filters;comparison operators -Oracle Open Office Impress : default filters;databases -Oracle Open Office Impress : default printer -Oracle Open Office Impress : default printer;setting up -Oracle Open Office Impress : default printer;UNIX -Oracle Open Office Impress : default templates -Oracle Open Office Impress : default templates;changing -Oracle Open Office Impress : default templates;organizing -Oracle Open Office Impress : defaults -Oracle Open Office Impress : defaults;documents -Oracle Open Office Impress : defaults;file formats in file dialogs -Oracle Open Office Impress : defaults;file formats in Oracle Open Office -Oracle Open Office Impress : defaults;fonts -Oracle Open Office Impress : defaults;grids (Writer/Calc) -Oracle Open Office Impress : defaults;languages -Oracle Open Office Impress : defaults;number formats -Oracle Open Office Impress : defaults;of saving -Oracle Open Office Impress : defaults;program configuration -Oracle Open Office Impress : defaults;tab stops in text -Oracle Open Office Impress : defaults;views -Oracle Open Office Impress : defining -Oracle Open Office Impress : defining;arrowheads and other line ends -Oracle Open Office Impress : defining;colors -Oracle Open Office Impress : defining;gradients -Oracle Open Office Impress : defining;line styles -Oracle Open Office Impress : defining;paragraph borders -Oracle Open Office Impress : defining;queries (Base) -Oracle Open Office Impress : defining;table borders -Oracle Open Office Impress : deleting -Oracle Open Office Impress : deleting;all direct formatting -Oracle Open Office Impress : deleting;animation effects -Oracle Open Office Impress : deleting;comments -Oracle Open Office Impress : deleting;databases (Base) -Oracle Open Office Impress : deleting;hyperlinks -Oracle Open Office Impress : deleting;layers -Oracle Open Office Impress : deleting;lines in text -Oracle Open Office Impress : deleting;models/instances -Oracle Open Office Impress : deleting;namespaces in XForms -Oracle Open Office Impress : deleting;points -Oracle Open Office Impress : deleting;slide transition effects -Oracle Open Office Impress : deleting;slides -Oracle Open Office Impress : deleting;tab stops -Oracle Open Office Impress : deleting;templates -Oracle Open Office Impress : deleting;XML filters -Oracle Open Office Impress : depth stagger -Oracle Open Office Impress : descriptions for objects -Oracle Open Office Impress : design mode after saving -Oracle Open Office Impress : design view -Oracle Open Office Impress : design view;creating forms -Oracle Open Office Impress : design view;queries/views (Base) -Oracle Open Office Impress : designing -Oracle Open Office Impress : designing;database tables -Oracle Open Office Impress : designing;fonts -Oracle Open Office Impress : designing;queries (Base) -Oracle Open Office Impress : detaching toolbars -Oracle Open Office Impress : dictionaries -Oracle Open Office Impress : dictionaries;common terms in simplified and traditional chinese -Oracle Open Office Impress : dictionaries;creating -Oracle Open Office Impress : dictionaries;editing user-defined -Oracle Open Office Impress : dictionaries;spellcheck -Oracle Open Office Impress : dictionaries, see also languages -Oracle Open Office Impress : digital signatures -Oracle Open Office Impress : digital signatures;getting/managing/applying -Oracle Open Office Impress : digital signatures;overview -Oracle Open Office Impress : digital signatures;WebDAV over HTTPS -Oracle Open Office Impress : dimension lines -Oracle Open Office Impress : dimension lines;drawing -Oracle Open Office Impress : dimension lines;properties of -Oracle Open Office Impress : direct formatting -Oracle Open Office Impress : direct formatting;undoing all -Oracle Open Office Impress : directories -Oracle Open Office Impress : directories;creating new -Oracle Open Office Impress : directories;directory structure -Oracle Open Office Impress : disabled persons -Oracle Open Office Impress : display qualities of presentations -Oracle Open Office Impress : displaying -Oracle Open Office Impress : displaying;comments (Calc) -Oracle Open Office Impress : displaying;comments in text documents -Oracle Open Office Impress : displaying;non-printing characters (Writer) -Oracle Open Office Impress : displaying;pictures and objects (Writer) -Oracle Open Office Impress : displaying;tables (Writer) -Oracle Open Office Impress : displaying;zero values (Calc) -Oracle Open Office Impress : distances -Oracle Open Office Impress : distinct values in SQL queries -Oracle Open Office Impress : distorting in drawings -Oracle Open Office Impress : distorting objects -Oracle Open Office Impress : distributing draw objects -Oracle Open Office Impress : distributing XML filters -Oracle Open Office Impress : docking -Oracle Open Office Impress : docking;definition -Oracle Open Office Impress : docking;toolbars -Oracle Open Office Impress : docking;windows -Oracle Open Office Impress : Document Converter Wizard -Oracle Open Office Impress : Document Map, see Navigator -Oracle Open Office Impress : document types in Oracle Open Office -Oracle Open Office Impress : documents -Oracle Open Office Impress : documents;changing titles -Oracle Open Office Impress : documents;closing -Oracle Open Office Impress : documents;comparing -Oracle Open Office Impress : documents;contents as lists -Oracle Open Office Impress : documents;editing time -Oracle Open Office Impress : documents;exporting -Oracle Open Office Impress : documents;importing -Oracle Open Office Impress : documents;languages -Oracle Open Office Impress : documents;measurement units in -Oracle Open Office Impress : documents;merging -Oracle Open Office Impress : documents;number of pages/tables/sheets -Oracle Open Office Impress : documents;opening -Oracle Open Office Impress : documents;opening in design mode -Oracle Open Office Impress : documents;opening with templates -Oracle Open Office Impress : documents;organizing -Oracle Open Office Impress : documents;printing -Oracle Open Office Impress : documents;read-only -Oracle Open Office Impress : documents;reloading -Oracle Open Office Impress : documents;saving -Oracle Open Office Impress : documents;saving automatically -Oracle Open Office Impress : documents;saving in other formats -Oracle Open Office Impress : documents;sending as e-mail -Oracle Open Office Impress : documents;styles changed -Oracle Open Office Impress : documents;version management -Oracle Open Office Impress : documents;version numbers -Oracle Open Office Impress : donut charts -Oracle Open Office Impress : dotted areas -Oracle Open Office Impress : double-line spacing in paragraphs -Oracle Open Office Impress : double-line writing in Asian layout -Oracle Open Office Impress : doubling draw objects -Oracle Open Office Impress : drag and drop -Oracle Open Office Impress : drag and drop;copying and pasting text -Oracle Open Office Impress : drag and drop;data source view -Oracle Open Office Impress : drag and drop;from Gallery to draw objects -Oracle Open Office Impress : drag and drop;overview -Oracle Open Office Impress : drag and drop;pictures -Oracle Open Office Impress : drag and drop;to Gallery -Oracle Open Office Impress : Draw instructions -Oracle Open Office Impress : draw objects -Oracle Open Office Impress : draw objects;adding/editing/copying -Oracle Open Office Impress : draw objects;anchoring -Oracle Open Office Impress : draw objects;arranging within stacks -Oracle Open Office Impress : draw objects;combining -Oracle Open Office Impress : draw objects;connecting lines to -Oracle Open Office Impress : draw objects;converting text to -Oracle Open Office Impress : draw objects;copying between documents -Oracle Open Office Impress : draw objects;cross-fading two objects -Oracle Open Office Impress : draw objects;displaying (Calc) -Oracle Open Office Impress : draw objects;dropping Gallery pictures -Oracle Open Office Impress : draw objects;duplicating -Oracle Open Office Impress : draw objects;flipping -Oracle Open Office Impress : draw objects;grouping -Oracle Open Office Impress : draw objects;legends -Oracle Open Office Impress : draw objects;positioning and resizing -Oracle Open Office Impress : draw objects;protecting -Oracle Open Office Impress : draw objects;rotating -Oracle Open Office Impress : draw objects;slanting -Oracle Open Office Impress : draw objects;text entry mode -Oracle Open Office Impress : draw objects;text in -Oracle Open Office Impress : drawing -Oracle Open Office Impress : drawing;3D objects -Oracle Open Office Impress : drawing;freeform lines -Oracle Open Office Impress : drawing;lines -Oracle Open Office Impress : drawing;sectors and segments -Oracle Open Office Impress : Drawing bar -Oracle Open Office Impress : drawing lines in text -Oracle Open Office Impress : drawings -Oracle Open Office Impress : drawings;creating/opening -Oracle Open Office Impress : drawings;languages -Oracle Open Office Impress : drawings;printing -Oracle Open Office Impress : drawings;printing defaults -Oracle Open Office Impress : drawings;printing in text documents -Oracle Open Office Impress : drawings;saving -Oracle Open Office Impress : drawings;saving automatically -Oracle Open Office Impress : drawings;saving in other formats -Oracle Open Office Impress : drawings;sending as e-mail -Oracle Open Office Impress : drawings;shortcut keys -Oracle Open Office Impress : drawings;showing (Writer) -Oracle Open Office Impress : drawings;zoom function in -Oracle Open Office Impress : drawings, see also draw objects -Oracle Open Office Impress : drop-down lists in form functions -Oracle Open Office Impress : duplicating draw objects -Oracle Open Office Impress : e-mail attachments -Oracle Open Office Impress : Edit File icon -Oracle Open Office Impress : edit mode -Oracle Open Office Impress : edit mode;after opening -Oracle Open Office Impress : edit mode;through Enter key (Calc) -Oracle Open Office Impress : Edit Points bar -Oracle Open Office Impress : editing -Oracle Open Office Impress : editing;chart axes -Oracle Open Office Impress : editing;chart data -Oracle Open Office Impress : editing;chart legends -Oracle Open Office Impress : editing;chart titles -Oracle Open Office Impress : editing;comments -Oracle Open Office Impress : editing;curves -Oracle Open Office Impress : editing;data binding of XForms -Oracle Open Office Impress : editing;database tables and queries -Oracle Open Office Impress : editing;draw objects -Oracle Open Office Impress : editing;fields -Oracle Open Office Impress : editing;Fontwork objects -Oracle Open Office Impress : editing;gradients -Oracle Open Office Impress : editing;guides and snap points -Oracle Open Office Impress : editing;hyperlinks -Oracle Open Office Impress : editing;menus -Oracle Open Office Impress : editing;objects -Oracle Open Office Impress : editing;Oracle Open Office documents in Internet Explorer -Oracle Open Office Impress : editing;pictures -Oracle Open Office Impress : editing;reports -Oracle Open Office Impress : editing;shortcut keys -Oracle Open Office Impress : editing;slide titles -Oracle Open Office Impress : editing;tab stops -Oracle Open Office Impress : editing;templates -Oracle Open Office Impress : editing;titles -Oracle Open Office Impress : editing;toolbars -Oracle Open Office Impress : editing;undoing -Oracle Open Office Impress : editing;XForms -Oracle Open Office Impress : editing time of documents -Oracle Open Office Impress : editors -Oracle Open Office Impress : editors;formula editor -Oracle Open Office Impress : editors;ImageMap editor -Oracle Open Office Impress : effects -Oracle Open Office Impress : effects;animated slide transitions -Oracle Open Office Impress : effects;applying to/removing from objects -Oracle Open Office Impress : effects;font positions -Oracle Open Office Impress : effects;fonts -Oracle Open Office Impress : effects;Fontwork icons -Oracle Open Office Impress : effects;preview -Oracle Open Office Impress : effects;sounds -Oracle Open Office Impress : ellipses -Oracle Open Office Impress : ellipses;segments -Oracle Open Office Impress : ellipses;toolbars -Oracle Open Office Impress : empty documents -Oracle Open Office Impress : empty paragraph removal -Oracle Open Office Impress : encryption of contents -Oracle Open Office Impress : entering groups -Oracle Open Office Impress : entering text from right to left -Oracle Open Office Impress : equal sign, see also operators -Oracle Open Office Impress : equations in formula editor -Oracle Open Office Impress : error bars in charts -Oracle Open Office Impress : error indicators in charts -Oracle Open Office Impress : Error Report Tool -Oracle Open Office Impress : Euro -Oracle Open Office Impress : Euro;currency formats -Oracle Open Office Impress : Euro;Euro Converter Wizard -Oracle Open Office Impress : even/odd pages -Oracle Open Office Impress : even/odd pages;printing -Oracle Open Office Impress : events -Oracle Open Office Impress : events;assigning scripts -Oracle Open Office Impress : events;controls -Oracle Open Office Impress : events;customizing -Oracle Open Office Impress : events;in forms -Oracle Open Office Impress : Excel -Oracle Open Office Impress : Excel;saving as -Oracle Open Office Impress : Excel;search criteria -Oracle Open Office Impress : exceptions -Oracle Open Office Impress : exceptions;user-defined dictionaries -Oracle Open Office Impress : exchanging, see also replacing -Oracle Open Office Impress : executing SQL commands -Oracle Open Office Impress : exiting -Oracle Open Office Impress : exiting;by clicking objects -Oracle Open Office Impress : exiting;groups -Oracle Open Office Impress : exiting;Oracle Open Office -Oracle Open Office Impress : expanding -Oracle Open Office Impress : expanding;slides -Oracle Open Office Impress : expanding formatting (Calc) -Oracle Open Office Impress : explorer of data sources -Oracle Open Office Impress : export filters -Oracle Open Office Impress : exporting -Oracle Open Office Impress : exporting;animations to GIF format -Oracle Open Office Impress : exporting;bitmaps -Oracle Open Office Impress : exporting;HTML and text documents -Oracle Open Office Impress : exporting;Microsoft Office documents with VBA code -Oracle Open Office Impress : exporting;presentations to HTML -Oracle Open Office Impress : exporting;spreadsheets to text format -Oracle Open Office Impress : exporting;templates -Oracle Open Office Impress : exporting;to foreign formats -Oracle Open Office Impress : exporting;to HTML -Oracle Open Office Impress : exporting;to Macromedia Flash format -Oracle Open Office Impress : exporting;to Microsoft Office formats -Oracle Open Office Impress : exporting;to PDF -Oracle Open Office Impress : exporting;to PostScript format -Oracle Open Office Impress : exporting;to XML -Oracle Open Office Impress : exporting;XML files -Oracle Open Office Impress : extended tips in Help -Oracle Open Office Impress : extension mode in text -Oracle Open Office Impress : extensions -Oracle Open Office Impress : extensions;Extension Manager -Oracle Open Office Impress : extensions;file formats -Oracle Open Office Impress : external keys (Base) -Oracle Open Office Impress : extrusion objects -Oracle Open Office Impress : eyedropper tool -Oracle Open Office Impress : faster printing -Oracle Open Office Impress : faxes -Oracle Open Office Impress : faxes;configuring Oracle Open Office -Oracle Open Office Impress : faxes;fax programs/fax printers under UNIX -Oracle Open Office Impress : faxes;selecting a fax machine -Oracle Open Office Impress : faxes;sending -Oracle Open Office Impress : faxes;wizards -Oracle Open Office Impress : feedback -Oracle Open Office Impress : feedback;automatically -Oracle Open Office Impress : fields -Oracle Open Office Impress : fields;authors -Oracle Open Office Impress : fields;database tables -Oracle Open Office Impress : fields;dates (fixed) -Oracle Open Office Impress : fields;dates (variable) -Oracle Open Office Impress : fields;displaying field codes (Writer) -Oracle Open Office Impress : fields;editing -Oracle Open Office Impress : fields;file names -Oracle Open Office Impress : fields;formatted fields -Oracle Open Office Impress : fields;formatting -Oracle Open Office Impress : fields;in slides -Oracle Open Office Impress : fields;page numbers -Oracle Open Office Impress : fields;times (fixed) -Oracle Open Office Impress : fields;times (variable) -Oracle Open Office Impress : fields;updating automatically (Writer) -Oracle Open Office Impress : file associations for Microsoft Office -Oracle Open Office Impress : file filters -Oracle Open Office Impress : file filters;mobile devices -Oracle Open Office Impress : file filters;XML -Oracle Open Office Impress : file formats -Oracle Open Office Impress : file formats;changing Oracle Open Office defaults -Oracle Open Office Impress : file formats;OpenDocument/XML -Oracle Open Office Impress : file formats;saving always in other formats -Oracle Open Office Impress : file selection button -Oracle Open Office Impress : file sharing options for current document -Oracle Open Office Impress : files -Oracle Open Office Impress : files;filters and formats -Oracle Open Office Impress : files;importing -Oracle Open Office Impress : files;inserting -Oracle Open Office Impress : files;inserting pictures -Oracle Open Office Impress : files;opening -Oracle Open Office Impress : files;properties -Oracle Open Office Impress : files;saving -Oracle Open Office Impress : files;saving automatically -Oracle Open Office Impress : files;saving in other formats -Oracle Open Office Impress : files;sending as e-mail -Oracle Open Office Impress : files;version numbers -Oracle Open Office Impress : files and folders in Oracle Open Office -Oracle Open Office Impress : fill characters with tabulators -Oracle Open Office Impress : fill colors for areas -Oracle Open Office Impress : fill format mode -Oracle Open Office Impress : fill format mode;styles -Oracle Open Office Impress : fill patterns for areas -Oracle Open Office Impress : filter conditions -Oracle Open Office Impress : filter conditions;connecting -Oracle Open Office Impress : filter conditions;in queries (Base) -Oracle Open Office Impress : filtering -Oracle Open Office Impress : filtering;data in databases -Oracle Open Office Impress : filtering;data in forms -Oracle Open Office Impress : filters -Oracle Open Office Impress : filters;comparison operators -Oracle Open Office Impress : filters;for import and export -Oracle Open Office Impress : filters;Navigator -Oracle Open Office Impress : filters;pictures -Oracle Open Office Impress : filters;XML filter settings -Oracle Open Office Impress : Find tab in Help -Oracle Open Office Impress : finding -Oracle Open Office Impress : finding;in all sheets -Oracle Open Office Impress : finding;records in form documents -Oracle Open Office Impress : finding;selections -Oracle Open Office Impress : finding;similarity search -Oracle Open Office Impress : fitting to pages -Oracle Open Office Impress : fitting to pages;individual slides -Oracle Open Office Impress : fitting to pages;print settings in Math -Oracle Open Office Impress : fitting to pages;print settings in presentations -Oracle Open Office Impress : fixed text -Oracle Open Office Impress : fixed text;form functions -Oracle Open Office Impress : fixing toolbars -Oracle Open Office Impress : flipping around a flip line -Oracle Open Office Impress : flipping draw objects -Oracle Open Office Impress : floating frames in HTML documents -Oracle Open Office Impress : floating text -Oracle Open Office Impress : floating toolbars -Oracle Open Office Impress : flowcharts -Oracle Open Office Impress : focus of controls -Oracle Open Office Impress : folder creation -Oracle Open Office Impress : font lists -Oracle Open Office Impress : font name box -Oracle Open Office Impress : font sizes -Oracle Open Office Impress : font sizes;bullets -Oracle Open Office Impress : font sizes;relative changes -Oracle Open Office Impress : font sizes;scaling on screen -Oracle Open Office Impress : font sizes;text -Oracle Open Office Impress : fonts -Oracle Open Office Impress : fonts;adding under UNIX -Oracle Open Office Impress : fonts;changing in templates -Oracle Open Office Impress : fonts;colors -Oracle Open Office Impress : fonts;default settings -Oracle Open Office Impress : fonts;effects -Oracle Open Office Impress : fonts;for HTML and Basic -Oracle Open Office Impress : fonts;formats -Oracle Open Office Impress : fonts;outlines -Oracle Open Office Impress : fonts;positions in text -Oracle Open Office Impress : fonts;shadows -Oracle Open Office Impress : fonts;specifying several -Oracle Open Office Impress : fonts;strikethrough -Oracle Open Office Impress : fonts;styles -Oracle Open Office Impress : fonts;text objects -Oracle Open Office Impress : Fontwork icons -Oracle Open Office Impress : footers -Oracle Open Office Impress : footers;backgrounds -Oracle Open Office Impress : footers;slide masters -Oracle Open Office Impress : footers;slides -Oracle Open Office Impress : form controls -Oracle Open Office Impress : form controls;assigning macros -Oracle Open Office Impress : form controls;protecting -Oracle Open Office Impress : form controls;toolbars -Oracle Open Office Impress : form fields -Oracle Open Office Impress : form filters -Oracle Open Office Impress : Form Navigator -Oracle Open Office Impress : format codes -Oracle Open Office Impress : format codes;numbers -Oracle Open Office Impress : format filling printing in Oracle Open Office Math -Oracle Open Office Impress : Format Paintbrush -Oracle Open Office Impress : formats -Oracle Open Office Impress : formats;Asian layout -Oracle Open Office Impress : formats;fonts -Oracle Open Office Impress : formats;maximizing page formats -Oracle Open Office Impress : formats;number and currency formats -Oracle Open Office Impress : formats;of currencies/date/time -Oracle Open Office Impress : formats;on opening and saving -Oracle Open Office Impress : formats;pasting in special formats -Oracle Open Office Impress : formats;positions -Oracle Open Office Impress : formats;tabulators -Oracle Open Office Impress : formatted fields -Oracle Open Office Impress : formatted fields;form functions -Oracle Open Office Impress : formatted fields;properties -Oracle Open Office Impress : formatting -Oracle Open Office Impress : formatting;Asian typography -Oracle Open Office Impress : formatting;axes in charts -Oracle Open Office Impress : formatting;chart areas -Oracle Open Office Impress : formatting;chart floors -Oracle Open Office Impress : formatting;chart legends -Oracle Open Office Impress : formatting;chart titles -Oracle Open Office Impress : formatting;chart walls -Oracle Open Office Impress : formatting;copying -Oracle Open Office Impress : formatting;definition -Oracle Open Office Impress : formatting;expanding (Calc) -Oracle Open Office Impress : formatting;fields -Oracle Open Office Impress : formatting;font effects -Oracle Open Office Impress : formatting;hyperlinks -Oracle Open Office Impress : formatting;pages -Oracle Open Office Impress : formatting;printer metrics (Writer) -Oracle Open Office Impress : formatting;slides -Oracle Open Office Impress : formatting;slides headings -Oracle Open Office Impress : formatting;undoing -Oracle Open Office Impress : formatting;undoing when writing -Oracle Open Office Impress : forms -Oracle Open Office Impress : forms;browsing -Oracle Open Office Impress : forms;Combo Box/List Box Wizard -Oracle Open Office Impress : forms;creating -Oracle Open Office Impress : forms;data -Oracle Open Office Impress : forms;designing (Base) -Oracle Open Office Impress : forms;events -Oracle Open Office Impress : forms;filtering data -Oracle Open Office Impress : forms;finding records -Oracle Open Office Impress : forms;focus after opening -Oracle Open Office Impress : forms;general information (Base) -Oracle Open Office Impress : forms;grouping controls -Oracle Open Office Impress : forms;HTML filters -Oracle Open Office Impress : forms;inserting -Oracle Open Office Impress : forms;Navigator -Oracle Open Office Impress : forms;opening in design mode -Oracle Open Office Impress : forms;properties -Oracle Open Office Impress : forms;sorting data -Oracle Open Office Impress : forms;subforms -Oracle Open Office Impress : forms;wizards -Oracle Open Office Impress : forms;XForms -Oracle Open Office Impress : formula texts -Oracle Open Office Impress : formula texts;printing in Oracle Open Office Math -Oracle Open Office Impress : formulas -Oracle Open Office Impress : formulas;new -Oracle Open Office Impress : formulas;starting formula editor -Oracle Open Office Impress : formulas in reports -Oracle Open Office Impress : formulas in reports;editing -Oracle Open Office Impress : forums and support -Oracle Open Office Impress : frames -Oracle Open Office Impress : frames;around paragraphs -Oracle Open Office Impress : frames;around tables -Oracle Open Office Impress : frames;AutoCorrect function -Oracle Open Office Impress : frames;backgrounds -Oracle Open Office Impress : frames;captions (Writer) -Oracle Open Office Impress : frames;printing in Oracle Open Office Math -Oracle Open Office Impress : frames;protecting -Oracle Open Office Impress : frames;selection frames -Oracle Open Office Impress : frames;text fitting to frames -Oracle Open Office Impress : freeform lines -Oracle Open Office Impress : freeform lines;draw functions -Oracle Open Office Impress : freeform lines;drawing -Oracle Open Office Impress : FTP -Oracle Open Office Impress : FTP;opening documents -Oracle Open Office Impress : FTP;saving documents -Oracle Open Office Impress : full joins (Base) -Oracle Open Office Impress : full screen view -Oracle Open Office Impress : full-text search in Help -Oracle Open Office Impress : functions in reports -Oracle Open Office Impress : functions in reports;editing -Oracle Open Office Impress : Gallery -Oracle Open Office Impress : Gallery;adding pictures -Oracle Open Office Impress : Gallery;dragging pictures to draw objects -Oracle Open Office Impress : Gallery;hiding/showing -Oracle Open Office Impress : Gallery;inserting pictures from -Oracle Open Office Impress : geometric forms -Oracle Open Office Impress : get method for form transmissions -Oracle Open Office Impress : getting support -Oracle Open Office Impress : GIF format -Oracle Open Office Impress : GIF images -Oracle Open Office Impress : GIF images;animating -Oracle Open Office Impress : GIF images;replacing colors -Oracle Open Office Impress : glossaries -Oracle Open Office Impress : glossaries;common terms -Oracle Open Office Impress : glossaries;Internet terms -Oracle Open Office Impress : glue points -Oracle Open Office Impress : glue points;using -Oracle Open Office Impress : gradients -Oracle Open Office Impress : gradients;applying and defining -Oracle Open Office Impress : gradients;defining colors -Oracle Open Office Impress : gradients;loading lists -Oracle Open Office Impress : gradients;transparent -Oracle Open Office Impress : gradients off for faster printing -Oracle Open Office Impress : graphic objects, see draw objects -Oracle Open Office Impress : graphical text art -Oracle Open Office Impress : graphics -Oracle Open Office Impress : graphics;cache -Oracle Open Office Impress : graphics;protecting -Oracle Open Office Impress : graphics, see also pictures -Oracle Open Office Impress : grayscale display -Oracle Open Office Impress : grayscale printing -Oracle Open Office Impress : grid controls -Oracle Open Office Impress : grid controls;form functions -Oracle Open Office Impress : grids -Oracle Open Office Impress : grids;defaults (Writer/Calc) -Oracle Open Office Impress : grids;display options (Impress/Draw) -Oracle Open Office Impress : grids;displaying lines (Calc) -Oracle Open Office Impress : grids;formatting axes -Oracle Open Office Impress : grids;inserting in charts -Oracle Open Office Impress : group box creation -Oracle Open Office Impress : grouping -Oracle Open Office Impress : grouping;draw objects -Oracle Open Office Impress : groups -Oracle Open Office Impress : groups;entering/exiting/ungrouping -Oracle Open Office Impress : groups;naming -Oracle Open Office Impress : groups;of controls -Oracle Open Office Impress : guides -Oracle Open Office Impress : guides;display options (Impress/Draw) -Oracle Open Office Impress : guides;displaying when moving objects (Impress) -Oracle Open Office Impress : guides;editing -Oracle Open Office Impress : guides;inserting -Oracle Open Office Impress : guides;show snap lines icon -Oracle Open Office Impress : guides;showing (Calc) -Oracle Open Office Impress : guides;showing when moving frames (Writer) -Oracle Open Office Impress : gutter -Oracle Open Office Impress : half-spheres -Oracle Open Office Impress : hand icon for moving slides -Oracle Open Office Impress : handles -Oracle Open Office Impress : handles;displaying (Writer) -Oracle Open Office Impress : handles;large -Oracle Open Office Impress : handles;scaling -Oracle Open Office Impress : handles;showing simple/large handles (Calc) -Oracle Open Office Impress : handles;simple -Oracle Open Office Impress : handout printing -Oracle Open Office Impress : Hangul/Hanja -Oracle Open Office Impress : hatching -Oracle Open Office Impress : hatching -Oracle Open Office Impress : hatching;loading lists -Oracle Open Office Impress : headers -Oracle Open Office Impress : headers;backgrounds -Oracle Open Office Impress : headers and footers -Oracle Open Office Impress : headers and footers;master layouts -Oracle Open Office Impress : headers and footers;slide masters -Oracle Open Office Impress : headers and footers;slides -Oracle Open Office Impress : headings -Oracle Open Office Impress : headings;entering as text box -Oracle Open Office Impress : Hebrew -Oracle Open Office Impress : Hebrew;entering text -Oracle Open Office Impress : Hebrew;language settings -Oracle Open Office Impress : Help -Oracle Open Office Impress : Help;bookmarks -Oracle Open Office Impress : Help;extended tips on/off -Oracle Open Office Impress : Help;full-text search -Oracle Open Office Impress : Help;Help tips -Oracle Open Office Impress : Help;keywords -Oracle Open Office Impress : Help;navigation pane showing/hiding -Oracle Open Office Impress : Help;style sheets -Oracle Open Office Impress : Help;topics -Oracle Open Office Impress : Help Agent -Oracle Open Office Impress : Help Agent;help -Oracle Open Office Impress : Help Agent;options -Oracle Open Office Impress : Help tips -Oracle Open Office Impress : Help tips;hiding -Oracle Open Office Impress : hidden controls in Form Navigator -Oracle Open Office Impress : hidden fields display (Writer) -Oracle Open Office Impress : hidden pages -Oracle Open Office Impress : hidden pages;printing in presentations -Oracle Open Office Impress : hidden pages;showing -Oracle Open Office Impress : hidden text -Oracle Open Office Impress : hidden text;showing (Writer) -Oracle Open Office Impress : hiding -Oracle Open Office Impress : hiding;changes -Oracle Open Office Impress : hiding;chart legends -Oracle Open Office Impress : hiding;docked windows -Oracle Open Office Impress : hiding;layers -Oracle Open Office Impress : hiding;levels -Oracle Open Office Impress : hiding;navigation pane in Help window -Oracle Open Office Impress : hiding;slides -Oracle Open Office Impress : hiding;subpoints -Oracle Open Office Impress : high contrast mode -Oracle Open Office Impress : Hindi -Oracle Open Office Impress : Hindi;entering text -Oracle Open Office Impress : Hindi;language settings -Oracle Open Office Impress : horizontal scrollbars (Writer) -Oracle Open Office Impress : hot spots in flowcharts -Oracle Open Office Impress : hotspots -Oracle Open Office Impress : HowTos for charts -Oracle Open Office Impress : Howtos for Draw -Oracle Open Office Impress : HTML -Oracle Open Office Impress : HTML;definition -Oracle Open Office Impress : HTML;export character set -Oracle Open Office Impress : HTML;exporting from presentations -Oracle Open Office Impress : HTML;fonts for source display -Oracle Open Office Impress : HTML;importing into presentations -Oracle Open Office Impress : HTML;importing META tags -Oracle Open Office Impress : HTML;inserting files -Oracle Open Office Impress : HTML;live presentations -Oracle Open Office Impress : HTML documents -Oracle Open Office Impress : HTML documents;auto reloading -Oracle Open Office Impress : HTML documents;importing/exporting -Oracle Open Office Impress : HTML documents;META tags in -Oracle Open Office Impress : HTML documents;new -Oracle Open Office Impress : HTML documents;source text -Oracle Open Office Impress : hyperlinks -Oracle Open Office Impress : hyperlinks;assigning macros -Oracle Open Office Impress : hyperlinks;character formats -Oracle Open Office Impress : hyperlinks;definition -Oracle Open Office Impress : hyperlinks;deleting -Oracle Open Office Impress : hyperlinks;editing -Oracle Open Office Impress : hyperlinks;inserting -Oracle Open Office Impress : hyperlinks;relative and absolute -Oracle Open Office Impress : hyperlinks;turning off automatic recognition -Oracle Open Office Impress : hyperlinks, see also links -Oracle Open Office Impress : hyphenation -Oracle Open Office Impress : hyphenation;activating for a language -Oracle Open Office Impress : hyphenation;minimal number of characters -Oracle Open Office Impress : hyphens -Oracle Open Office Impress : hyphens;displaying custom (Writer) -Oracle Open Office Impress : hyphens;inserting custom -Oracle Open Office Impress : icon bars, see toolbars -Oracle Open Office Impress : icon sizes -Oracle Open Office Impress : ignore list for spellcheck -Oracle Open Office Impress : illumination -Oracle Open Office Impress : illumination;3D charts -Oracle Open Office Impress : illustrations, see pictures -Oracle Open Office Impress : image button creation -Oracle Open Office Impress : image control creation -Oracle Open Office Impress : ImageMap -Oracle Open Office Impress : ImageMap;definition -Oracle Open Office Impress : ImageMap;editor -Oracle Open Office Impress : images -Oracle Open Office Impress : images;ImageMap -Oracle Open Office Impress : images;inserting -Oracle Open Office Impress : images;inserting and editing bitmaps -Oracle Open Office Impress : images, see also pictures -Oracle Open Office Impress : IME -Oracle Open Office Impress : IME;definition -Oracle Open Office Impress : IME;showing/hiding -Oracle Open Office Impress : import filters -Oracle Open Office Impress : import restrictions for Microsoft Office -Oracle Open Office Impress : importing -Oracle Open Office Impress : importing;bitmaps -Oracle Open Office Impress : importing;compatibility settings for text import -Oracle Open Office Impress : importing;databases -Oracle Open Office Impress : importing;documents in other formats -Oracle Open Office Impress : importing;from XML -Oracle Open Office Impress : importing;HTML and text documents -Oracle Open Office Impress : importing;HTML with META tags -Oracle Open Office Impress : importing;Microsoft Office documents with VBA code -Oracle Open Office Impress : importing;presentations with HTML -Oracle Open Office Impress : importing;tables in text format -Oracle Open Office Impress : importing;templates -Oracle Open Office Impress : improvement program -Oracle Open Office Impress : in front of object command -Oracle Open Office Impress : inches -Oracle Open Office Impress : including spreadsheets -Oracle Open Office Impress : increasing sizes of views -Oracle Open Office Impress : Index tab in Help -Oracle Open Office Impress : indexes -Oracle Open Office Impress : indexes;backgrounds -Oracle Open Office Impress : indexes;showing/hiding Help index tab -Oracle Open Office Impress : indicator lines in text -Oracle Open Office Impress : inner joins (Base) -Oracle Open Office Impress : input method window -Oracle Open Office Impress : insert mode for entering text -Oracle Open Office Impress : inserting -Oracle Open Office Impress : inserting;3D objects -Oracle Open Office Impress : inserting;arrows -Oracle Open Office Impress : inserting;buttons in toolbars -Oracle Open Office Impress : inserting;callouts in presentations -Oracle Open Office Impress : inserting;cell ranges from spreadsheets -Oracle Open Office Impress : inserting;charts -Oracle Open Office Impress : inserting;clipboard options -Oracle Open Office Impress : inserting;columns -Oracle Open Office Impress : inserting;comments -Oracle Open Office Impress : inserting;data from text documents -Oracle Open Office Impress : inserting;datasource records in spreadsheets -Oracle Open Office Impress : inserting;drawings -Oracle Open Office Impress : inserting;ellipses -Oracle Open Office Impress : inserting;files -Oracle Open Office Impress : inserting;floating frames -Oracle Open Office Impress : inserting;Fontwork objects -Oracle Open Office Impress : inserting;form fields -Oracle Open Office Impress : inserting;headers/footers in all slides -Oracle Open Office Impress : inserting;hyperlinks -Oracle Open Office Impress : inserting;layers -Oracle Open Office Impress : inserting;line breaks in cells -Oracle Open Office Impress : inserting;lines -Oracle Open Office Impress : inserting;movies/sounds -Oracle Open Office Impress : inserting;new text tables defaults -Oracle Open Office Impress : inserting;objects from files -Oracle Open Office Impress : inserting;objects from Gallery -Oracle Open Office Impress : inserting;OLE objects -Oracle Open Office Impress : inserting;paragraph borders -Oracle Open Office Impress : inserting;paragraph bullets -Oracle Open Office Impress : inserting;pictures -Oracle Open Office Impress : inserting;pictures in Gallery -Oracle Open Office Impress : inserting;plug-ins -Oracle Open Office Impress : inserting;polygons -Oracle Open Office Impress : inserting;push buttons -Oracle Open Office Impress : inserting;rectangles -Oracle Open Office Impress : inserting;rows -Oracle Open Office Impress : inserting;slides -Oracle Open Office Impress : inserting;slides as links -Oracle Open Office Impress : inserting;slides from files -Oracle Open Office Impress : inserting;special characters -Oracle Open Office Impress : inserting;tab stops -Oracle Open Office Impress : inserting;text frames -Oracle Open Office Impress : inserting;text in presentations -Oracle Open Office Impress : inserting;textures on chart bars -Oracle Open Office Impress : installing -Oracle Open Office Impress : installing;ActiveX control -Oracle Open Office Impress : installing;mobile device filters -Oracle Open Office Impress : installing;UNO components -Oracle Open Office Impress : installing;XML filters -Oracle Open Office Impress : instructions -Oracle Open Office Impress : instructions;general -Oracle Open Office Impress : instructions;Oracle Open Office Draw -Oracle Open Office Impress : instructions;Oracle Open Office Impress -Oracle Open Office Impress : interactions -Oracle Open Office Impress : interactions;hot spots -Oracle Open Office Impress : interactions;objects in interactive presentations -Oracle Open Office Impress : interactions;preview -Oracle Open Office Impress : Internet -Oracle Open Office Impress : Internet;checking for updates -Oracle Open Office Impress : Internet;Internet Explorer for displaying Oracle Open Office documents -Oracle Open Office Impress : Internet;presentations -Oracle Open Office Impress : Internet;starting searches -Oracle Open Office Impress : Internet glossary -Oracle Open Office Impress : intersecting draw objects -Oracle Open Office Impress : invert filter -Oracle Open Office Impress : invisible areas -Oracle Open Office Impress : italic text -Oracle Open Office Impress : iterative references in spreadsheets -Oracle Open Office Impress : Java -Oracle Open Office Impress : Java;definition -Oracle Open Office Impress : Java;setting options -Oracle Open Office Impress : JDBC -Oracle Open Office Impress : JDBC;databases (Base) -Oracle Open Office Impress : JDBC;definition -Oracle Open Office Impress : joining -Oracle Open Office Impress : joining;3D objects -Oracle Open Office Impress : joining;paragraphs -Oracle Open Office Impress : joining;tables (Base) -Oracle Open Office Impress : joins in databases (Base) -Oracle Open Office Impress : justifying text -Oracle Open Office Impress : kerning -Oracle Open Office Impress : kerning;Asian texts -Oracle Open Office Impress : kerning;definition -Oracle Open Office Impress : kerning;in characters -Oracle Open Office Impress : key fields for relations (Base) -Oracle Open Office Impress : keyboard -Oracle Open Office Impress : keyboard;assigning/editing shortcut keys -Oracle Open Office Impress : keyboard;general commands -Oracle Open Office Impress : keyboard;removing numbering -Oracle Open Office Impress : keyboard;zooming -Oracle Open Office Impress : keys -Oracle Open Office Impress : keys;adding push buttons -Oracle Open Office Impress : keys;primary keys (Base) -Oracle Open Office Impress : kiosk export -Oracle Open Office Impress : labels -Oracle Open Office Impress : labels;creating and synchronizing -Oracle Open Office Impress : labels;for charts -Oracle Open Office Impress : labels;for draw objects -Oracle Open Office Impress : labels;form functions -Oracle Open Office Impress : labels;from databases -Oracle Open Office Impress : labels, see also names/callouts -Oracle Open Office Impress : languages -Oracle Open Office Impress : languages;activating modules -Oracle Open Office Impress : languages;Asian support -Oracle Open Office Impress : languages;complex text layout -Oracle Open Office Impress : languages;locale settings -Oracle Open Office Impress : languages;selecting for text -Oracle Open Office Impress : languages;setting options -Oracle Open Office Impress : languages;spellcheck -Oracle Open Office Impress : languages;spellchecking and formatting -Oracle Open Office Impress : large handles (Writer) -Oracle Open Office Impress : large icons -Oracle Open Office Impress : layer arrangement -Oracle Open Office Impress : layers -Oracle Open Office Impress : layers;definition -Oracle Open Office Impress : layers;deleting -Oracle Open Office Impress : layers;inserting and editing -Oracle Open Office Impress : layers;moving objects -Oracle Open Office Impress : layers;renaming -Oracle Open Office Impress : layers;working with -Oracle Open Office Impress : layout -Oracle Open Office Impress : layout;importing Word documents -Oracle Open Office Impress : layout;pages -Oracle Open Office Impress : layout;printing handouts -Oracle Open Office Impress : LDAP server -Oracle Open Office Impress : LDAP server;address books (Base) -Oracle Open Office Impress : LDAP server;sign on options -Oracle Open Office Impress : leading between paragraphs -Oracle Open Office Impress : left alignment of paragraphs -Oracle Open Office Impress : left joins (Base) -Oracle Open Office Impress : legends -Oracle Open Office Impress : legends;charts -Oracle Open Office Impress : legends;draw objects -Oracle Open Office Impress : legends;drawings -Oracle Open Office Impress : legends;rounding corners -Oracle Open Office Impress : Letter Wizard -Oracle Open Office Impress : levels -Oracle Open Office Impress : levels;depth stagger -Oracle Open Office Impress : levels;hiding -Oracle Open Office Impress : levels;macro security -Oracle Open Office Impress : levels;showing -Oracle Open Office Impress : limits of tables (Writer) -Oracle Open Office Impress : line breaks -Oracle Open Office Impress : line breaks;in cells -Oracle Open Office Impress : line charts -Oracle Open Office Impress : line spacing -Oracle Open Office Impress : line spacing;context menu in paragraphs -Oracle Open Office Impress : line spacing;paragraph -Oracle Open Office Impress : line styles -Oracle Open Office Impress : line styles;applying -Oracle Open Office Impress : line styles;defining -Oracle Open Office Impress : line styles;loading -Oracle Open Office Impress : lines -Oracle Open Office Impress : lines;about line ends -Oracle Open Office Impress : lines;connecting objects -Oracle Open Office Impress : lines;defining ends -Oracle Open Office Impress : lines;draw functions -Oracle Open Office Impress : lines;drawing -Oracle Open Office Impress : lines;drawing in text -Oracle Open Office Impress : lines;editing points -Oracle Open Office Impress : lines;inserting -Oracle Open Office Impress : lines;removing automatic lines -Oracle Open Office Impress : lines of text -Oracle Open Office Impress : lines of text;alignment -Oracle Open Office Impress : links -Oracle Open Office Impress : links;between cells and controls -Oracle Open Office Impress : links;by drag and drop -Oracle Open Office Impress : links;character formats -Oracle Open Office Impress : links;definition -Oracle Open Office Impress : links;editing hyperlinks -Oracle Open Office Impress : links;inserting -Oracle Open Office Impress : links;modifying -Oracle Open Office Impress : links;opening files with -Oracle Open Office Impress : links;relational databases (Base) -Oracle Open Office Impress : links;turning off automatic recognition -Oracle Open Office Impress : links;updating options (Writer) -Oracle Open Office Impress : links;updating specific links -Oracle Open Office Impress : list box creation -Oracle Open Office Impress : lists -Oracle Open Office Impress : lists;animations -Oracle Open Office Impress : lists;data assigned to controls -Oracle Open Office Impress : lists;registered databases (Base) -Oracle Open Office Impress : lists;regular expressions -Oracle Open Office Impress : live presentations on the Internet -Oracle Open Office Impress : loading -Oracle Open Office Impress : loading;arrow and line styles -Oracle Open Office Impress : loading;colors/gradients/hatchings -Oracle Open Office Impress : loading;documents -Oracle Open Office Impress : loading;documents from other formats -Oracle Open Office Impress : loading;HTML documents, automatically -Oracle Open Office Impress : loading;Microsoft Office documents with VBA code -Oracle Open Office Impress : loading;reloading -Oracle Open Office Impress : loading;XML files -Oracle Open Office Impress : locale settings -Oracle Open Office Impress : locking layers -Oracle Open Office Impress : logarithmic scaling along axes -Oracle Open Office Impress : lowercase letters -Oracle Open Office Impress : lowercase letters;font effects -Oracle Open Office Impress : Macro Wizard (Base) -Oracle Open Office Impress : Macromedia Flash export -Oracle Open Office Impress : macros -Oracle Open Office Impress : macros;assigning to events in forms -Oracle Open Office Impress : macros;attaching new (Base) -Oracle Open Office Impress : macros;in MS Office documents -Oracle Open Office Impress : macros;interrupting -Oracle Open Office Impress : macros;organizing -Oracle Open Office Impress : macros;recording -Oracle Open Office Impress : macros;running in presentations -Oracle Open Office Impress : macros;security -Oracle Open Office Impress : macros;security levels -Oracle Open Office Impress : macros;security warning dialog -Oracle Open Office Impress : macros;selecting security warnings -Oracle Open Office Impress : magnetic lines in presentations -Oracle Open Office Impress : magnifiers -Oracle Open Office Impress : margins -Oracle Open Office Impress : margins;pages -Oracle Open Office Impress : margins;setting with the mouse -Oracle Open Office Impress : margins;shadows -Oracle Open Office Impress : marking changes -Oracle Open Office Impress : marking, see selecting -Oracle Open Office Impress : master layouts with headers and footers -Oracle Open Office Impress : master pages, see slide masters -Oracle Open Office Impress : master views -Oracle Open Office Impress : Math formula editor -Oracle Open Office Impress : mean value lines in charts -Oracle Open Office Impress : measurement units -Oracle Open Office Impress : measurement units;changing on rulers -Oracle Open Office Impress : measurement units;converting -Oracle Open Office Impress : measurement units;selecting -Oracle Open Office Impress : Media Player window -Oracle Open Office Impress : menus -Oracle Open Office Impress : menus;activating context menus -Oracle Open Office Impress : menus;assigning macros -Oracle Open Office Impress : menus;customizing -Oracle Open Office Impress : merging -Oracle Open Office Impress : merging;documents -Oracle Open Office Impress : merging;draw objects -Oracle Open Office Impress : META tags -Oracle Open Office Impress : metafiles -Oracle Open Office Impress : metafiles;converting to -Oracle Open Office Impress : metafiles;replacing colors -Oracle Open Office Impress : metrics -Oracle Open Office Impress : metrics;converting -Oracle Open Office Impress : metrics;document formatting (Writer) -Oracle Open Office Impress : metrics;in sheets -Oracle Open Office Impress : Microsoft Office -Oracle Open Office Impress : Microsoft Office;Access databases (base) -Oracle Open Office Impress : Microsoft Office;as default file format -Oracle Open Office Impress : Microsoft Office;document import restrictions -Oracle Open Office Impress : Microsoft Office;feature comparisons -Oracle Open Office Impress : Microsoft Office;importing password protected files -Oracle Open Office Impress : Microsoft Office;importing Word documents -Oracle Open Office Impress : Microsoft Office;importing/exporting VBA code -Oracle Open Office Impress : Microsoft Office;new users information -Oracle Open Office Impress : Microsoft Office;opening Microsoft documents -Oracle Open Office Impress : Microsoft Office;reassigning document types -Oracle Open Office Impress : migrating macros (Base) -Oracle Open Office Impress : mirroring objects -Oracle Open Office Impress : mobile device filters -Oracle Open Office Impress : models in XForms -Oracle Open Office Impress : modifying, see changing -Oracle Open Office Impress : more controls -Oracle Open Office Impress : mosaic filter -Oracle Open Office Impress : motion paths -Oracle Open Office Impress : mouse -Oracle Open Office Impress : mouse;pointers when using drag and drop -Oracle Open Office Impress : mouse;positioning -Oracle Open Office Impress : movies -Oracle Open Office Impress : moving -Oracle Open Office Impress : moving;between layers -Oracle Open Office Impress : moving;objects in slides -Oracle Open Office Impress : moving;tab stops on ruler -Oracle Open Office Impress : moving;toolbars -Oracle Open Office Impress : moving;using guide lines in presentations -Oracle Open Office Impress : MS ADO interface (Base) -Oracle Open Office Impress : multi-line titles in forms -Oracle Open Office Impress : multiple documents -Oracle Open Office Impress : multiple documents;opening -Oracle Open Office Impress : multiple monitors -Oracle Open Office Impress : multiple selection -Oracle Open Office Impress : multiplying draw objects -Oracle Open Office Impress : music -Oracle Open Office Impress : My Documents folder -Oracle Open Office Impress : My Documents folder;changing work directory -Oracle Open Office Impress : My Documents folder;opening -Oracle Open Office Impress : MySQL databases (Base) -Oracle Open Office Impress : names -Oracle Open Office Impress : names;multi-line titles -Oracle Open Office Impress : names;objects -Oracle Open Office Impress : names, see also labels/callouts -Oracle Open Office Impress : namespace organization in XForms -Oracle Open Office Impress : native SQL (Base) -Oracle Open Office Impress : navigating -Oracle Open Office Impress : navigating;in documents -Oracle Open Office Impress : Navigation bar -Oracle Open Office Impress : Navigation bar;controls -Oracle Open Office Impress : Navigation bar;forms -Oracle Open Office Impress : Navigator -Oracle Open Office Impress : Navigator;comments -Oracle Open Office Impress : Navigator;contents as lists -Oracle Open Office Impress : Navigator;docking -Oracle Open Office Impress : Navigator;presentations -Oracle Open Office Impress : Navigator;working with -Oracle Open Office Impress : net charts -Oracle Open Office Impress : network identity options -Oracle Open Office Impress : new databases -Oracle Open Office Impress : new documents -Oracle Open Office Impress : new lines in cells -Oracle Open Office Impress : new windows -Oracle Open Office Impress : non-breaking dashes -Oracle Open Office Impress : non-breaking spaces (Writer) -Oracle Open Office Impress : non-printing characters (Writer) -Oracle Open Office Impress : normal view -Oracle Open Office Impress : normal view;backgrounds -Oracle Open Office Impress : normal view;presentations -Oracle Open Office Impress : notes -Oracle Open Office Impress : notes;adding to slides -Oracle Open Office Impress : notes;default formatting -Oracle Open Office Impress : notes;printing in presentations -Oracle Open Office Impress : number formats -Oracle Open Office Impress : number formats;codes -Oracle Open Office Impress : number formats;formats -Oracle Open Office Impress : number formats;recognition in text tables -Oracle Open Office Impress : number of pages -Oracle Open Office Impress : number of sheets -Oracle Open Office Impress : number of tables -Oracle Open Office Impress : numbering -Oracle Open Office Impress : numbering;options -Oracle Open Office Impress : numbering;turning off -Oracle Open Office Impress : numbering;using automatically -Oracle Open Office Impress : numbers -Oracle Open Office Impress : numbers;date, time and currency formats -Oracle Open Office Impress : numerical fields in forms -Oracle Open Office Impress : object bars -Oracle Open Office Impress : object bars;editing glue points -Oracle Open Office Impress : objects -Oracle Open Office Impress : objects;aligning -Oracle Open Office Impress : objects;always moveable (Impress/Draw) -Oracle Open Office Impress : objects;arranging within stacks -Oracle Open Office Impress : objects;behind object command -Oracle Open Office Impress : objects;breaking connections -Oracle Open Office Impress : objects;copying when moving in presentations -Oracle Open Office Impress : objects;definition -Oracle Open Office Impress : objects;displaying in spreadsheets -Oracle Open Office Impress : objects;displaying in text documents -Oracle Open Office Impress : objects;editing -Oracle Open Office Impress : objects;effects -Oracle Open Office Impress : objects;in front of object command -Oracle Open Office Impress : objects;inserting from files -Oracle Open Office Impress : objects;inserting from Gallery -Oracle Open Office Impress : objects;inserting OLE objects -Oracle Open Office Impress : objects;moving along paths -Oracle Open Office Impress : objects;moving and resizing with mouse -Oracle Open Office Impress : objects;moving in layers -Oracle Open Office Impress : objects;moving in slides -Oracle Open Office Impress : objects;naming -Oracle Open Office Impress : objects;opening -Oracle Open Office Impress : objects;properties of charts -Oracle Open Office Impress : objects;quickly moving to -Oracle Open Office Impress : objects;reversing -Oracle Open Office Impress : objects;selecting -Oracle Open Office Impress : objects;titles and descriptions -Oracle Open Office Impress : objects;with attributes -Oracle Open Office Impress : ODBC -Oracle Open Office Impress : ODBC;database (Base) -Oracle Open Office Impress : ODBC;definition -Oracle Open Office Impress : ODF file formats -Oracle Open Office Impress : Office -Oracle Open Office Impress : Office;Microsoft Office and Oracle Open Office -Oracle Open Office Impress : OLE -Oracle Open Office Impress : OLE;definition -Oracle Open Office Impress : OLE objects -Oracle Open Office Impress : OLE objects;arranging within stacks -Oracle Open Office Impress : OLE objects;captions (Writer) -Oracle Open Office Impress : OLE objects;inserting -Oracle Open Office Impress : OLE objects;number of -Oracle Open Office Impress : OLE objects;protecting -Oracle Open Office Impress : one and a half line spacing in text -Oracle Open Office Impress : online feedback options -Oracle Open Office Impress : online registration -Oracle Open Office Impress : online update options -Oracle Open Office Impress : online updates -Oracle Open Office Impress : online updates;checking automatically -Oracle Open Office Impress : online updates;checking manually -Oracle Open Office Impress : OpenDocument file formats -Oracle Open Office Impress : OpenGL -Oracle Open Office Impress : OpenGL;definition -Oracle Open Office Impress : opening -Oracle Open Office Impress : opening;context menus -Oracle Open Office Impress : opening;database files -Oracle Open Office Impress : opening;dialog settings -Oracle Open Office Impress : opening;documents -Oracle Open Office Impress : opening;documents from other formats -Oracle Open Office Impress : opening;documents on WebDAV server -Oracle Open Office Impress : opening;files with links -Oracle Open Office Impress : opening;files, with placeholders -Oracle Open Office Impress : opening;forms -Oracle Open Office Impress : opening;Microsoft Office files -Oracle Open Office Impress : opening;mobile device documents -Oracle Open Office Impress : opening;objects -Oracle Open Office Impress : opening;reports -Oracle Open Office Impress : opening;several files -Oracle Open Office Impress : opening;XForms -Oracle Open Office Impress : operators -Oracle Open Office Impress : operators;default filters -Oracle Open Office Impress : optional hyphens (Writer) -Oracle Open Office Impress : options -Oracle Open Office Impress : options;accessibility -Oracle Open Office Impress : options;appearance -Oracle Open Office Impress : options;compatibility (Writer) -Oracle Open Office Impress : options;improvement program -Oracle Open Office Impress : options;network identity -Oracle Open Office Impress : options;online update -Oracle Open Office Impress : options;tools -Oracle Open Office Impress : Oracle databases (base) -Oracle Open Office Impress : Oracle Open Office Base data sources -Oracle Open Office Impress : Oracle Open Office Basic scripts in HTML documents -Oracle Open Office Impress : Oracle Open Office documents -Oracle Open Office Impress : Oracle Open Office documents;mobile device filters -Oracle Open Office Impress : Oracle Open Office documents;viewing and editing in Internet Explorer -Oracle Open Office Impress : Oracle Open Office Impress instructions -Oracle Open Office Impress : Oracle Open Office Math start -Oracle Open Office Impress : order of chart data -Oracle Open Office Impress : ordering -Oracle Open Office Impress : ordering;objects -Oracle Open Office Impress : ordering;slides -Oracle Open Office Impress : ordinal numbers -Oracle Open Office Impress : ordinal numbers;replacing -Oracle Open Office Impress : organization charts -Oracle Open Office Impress : organizing -Oracle Open Office Impress : organizing;macros and scripts -Oracle Open Office Impress : organizing;namespaces in XForms -Oracle Open Office Impress : organizing;styles -Oracle Open Office Impress : organizing;templates -Oracle Open Office Impress : origin of rulers -Oracle Open Office Impress : original size -Oracle Open Office Impress : original size;printing in Oracle Open Office Math -Oracle Open Office Impress : original size;restoring after cropping -Oracle Open Office Impress : outline view -Oracle Open Office Impress : outlines -Oracle Open Office Impress : outlines;font effects -Oracle Open Office Impress : outlines;outline symbols -Oracle Open Office Impress : outlines;printing -Oracle Open Office Impress : outlines;sending to presentations -Oracle Open Office Impress : overwrite mode -Oracle Open Office Impress : packages, see extensions -Oracle Open Office Impress : page breaks -Oracle Open Office Impress : page breaks;displaying (Calc) -Oracle Open Office Impress : page formats -Oracle Open Office Impress : page formats;maximizing -Oracle Open Office Impress : page formats;restriction -Oracle Open Office Impress : page number field -Oracle Open Office Impress : page numbers on all slides -Oracle Open Office Impress : page styles -Oracle Open Office Impress : page styles;editing/applying with statusbar -Oracle Open Office Impress : pages -Oracle Open Office Impress : pages;backgrounds in all applications -Oracle Open Office Impress : pages;copying -Oracle Open Office Impress : pages;fitting to printed pages -Oracle Open Office Impress : pages;formatting and numbering -Oracle Open Office Impress : pages;printing page names in presentations -Oracle Open Office Impress : pages;scaling -Oracle Open Office Impress : pages;selecting one to print -Oracle Open Office Impress : paint box -Oracle Open Office Impress : paint can symbol -Oracle Open Office Impress : pair kerning -Oracle Open Office Impress : Palm file filters -Oracle Open Office Impress : paper formats -Oracle Open Office Impress : paper size warning -Oracle Open Office Impress : paper trays -Oracle Open Office Impress : paragraph marks -Oracle Open Office Impress : paragraph marks;displaying (Writer) -Oracle Open Office Impress : paragraph styles -Oracle Open Office Impress : paragraph styles;languages -Oracle Open Office Impress : paragraph styles;modifying basic fonts -Oracle Open Office Impress : paragraphs -Oracle Open Office Impress : paragraphs;alignment -Oracle Open Office Impress : paragraphs;Asian typography -Oracle Open Office Impress : paragraphs;defining borders -Oracle Open Office Impress : paragraphs;hidden paragraphs (Writer) -Oracle Open Office Impress : paragraphs;increasing indents of -Oracle Open Office Impress : paragraphs;indents, margins and columns -Oracle Open Office Impress : paragraphs;inserting bullets -Oracle Open Office Impress : paragraphs;joining -Oracle Open Office Impress : paragraphs;numbering automatically -Oracle Open Office Impress : paragraphs;removing blank ones -Oracle Open Office Impress : paragraphs;spacing -Oracle Open Office Impress : paragraphs;tab stops -Oracle Open Office Impress : parameters -Oracle Open Office Impress : parameters;command line -Oracle Open Office Impress : parameters;queries (Base) -Oracle Open Office Impress : passwords for protecting contents -Oracle Open Office Impress : pasting -Oracle Open Office Impress : pasting;cell ranges -Oracle Open Office Impress : pasting;cell ranges from spreadsheets -Oracle Open Office Impress : pasting;data from text documents -Oracle Open Office Impress : pasting;draw objects -Oracle Open Office Impress : pasting;draw objects from other documents -Oracle Open Office Impress : pasting;formatted/unformatted text -Oracle Open Office Impress : pasting;from data source view -Oracle Open Office Impress : pasting;from data sources to Oracle Open Office Calc -Oracle Open Office Impress : pasting;pictures from other documents -Oracle Open Office Impress : pasting;sheet areas in text documents -Oracle Open Office Impress : pasting;slides from other presentations -Oracle Open Office Impress : pasting;text from other documents -Oracle Open Office Impress : pasting;to Gallery -Oracle Open Office Impress : paths -Oracle Open Office Impress : paths;changing work directory -Oracle Open Office Impress : paths;defaults -Oracle Open Office Impress : paths;moving objects along -Oracle Open Office Impress : pattern editor -Oracle Open Office Impress : pattern fields -Oracle Open Office Impress : pattern fields;form functions -Oracle Open Office Impress : patterns for objects -Oracle Open Office Impress : PDF -Oracle Open Office Impress : PDF;export -Oracle Open Office Impress : PDF;PostScript to PDF converter, UNIX -Oracle Open Office Impress : personal data input -Oracle Open Office Impress : phonetic guide -Oracle Open Office Impress : picklist creation -Oracle Open Office Impress : pictures -Oracle Open Office Impress : pictures;adding to Gallery -Oracle Open Office Impress : pictures;arranging within stacks -Oracle Open Office Impress : pictures;assigning macros -Oracle Open Office Impress : pictures;backgrounds -Oracle Open Office Impress : pictures;captions (Writer) -Oracle Open Office Impress : pictures;changing paths -Oracle Open Office Impress : pictures;cropping and zooming -Oracle Open Office Impress : pictures;displaying in Calc -Oracle Open Office Impress : pictures;displaying in Writer (Writer) -Oracle Open Office Impress : pictures;drag and drop between documents -Oracle Open Office Impress : pictures;drawing -Oracle Open Office Impress : pictures;editing -Oracle Open Office Impress : pictures;filters -Oracle Open Office Impress : pictures;ImageMap -Oracle Open Office Impress : pictures;inserting -Oracle Open Office Impress : pictures;inserting automatically -Oracle Open Office Impress : pictures;inserting from Gallery -Oracle Open Office Impress : pictures;number of -Oracle Open Office Impress : pictures;printing -Oracle Open Office Impress : pictures;scaling/resizing -Oracle Open Office Impress : pie charts -Oracle Open Office Impress : pie charts;options -Oracle Open Office Impress : pie charts;types -Oracle Open Office Impress : pivot points of draw objects -Oracle Open Office Impress : pixel editor -Oracle Open Office Impress : pixel graphics -Oracle Open Office Impress : pixel graphics;inserting and editing -Oracle Open Office Impress : pixel patterns -Oracle Open Office Impress : placeholders -Oracle Open Office Impress : placeholders;in SQL queries -Oracle Open Office Impress : placeholders;on opening files -Oracle Open Office Impress : placing toolbars -Oracle Open Office Impress : playing movies and sound files -Oracle Open Office Impress : plotting data as charts -Oracle Open Office Impress : plug-ins -Oracle Open Office Impress : plug-ins;activating and deactivating -Oracle Open Office Impress : plug-ins;definition -Oracle Open Office Impress : plug-ins;inserting -Oracle Open Office Impress : pocket device appliances -Oracle Open Office Impress : Pocket PC file filters -Oracle Open Office Impress : points -Oracle Open Office Impress : points;adding/converting/deleting -Oracle Open Office Impress : points;reducing editing points when snapping (Impress/Draw) -Oracle Open Office Impress : polygon drawing -Oracle Open Office Impress : polygons -Oracle Open Office Impress : polygons;inserting -Oracle Open Office Impress : polygons;intersecting/subtracting/merging -Oracle Open Office Impress : pop-art filter -Oracle Open Office Impress : portable document format -Oracle Open Office Impress : positioning -Oracle Open Office Impress : positioning;axes -Oracle Open Office Impress : positioning;draw objects and controls -Oracle Open Office Impress : positioning;fonts -Oracle Open Office Impress : positioning;objects -Oracle Open Office Impress : positioning;toolbars -Oracle Open Office Impress : post method for form transmissions -Oracle Open Office Impress : posterizing filter -Oracle Open Office Impress : PostScript -Oracle Open Office Impress : PostScript;creating files -Oracle Open Office Impress : PostScript;PDF converter, UNIX -Oracle Open Office Impress : PowerPoint export -Oracle Open Office Impress : precision as shown (Calc) -Oracle Open Office Impress : predefining fonts -Oracle Open Office Impress : predictive text, see also AutoCorrect function/AutoFill function/AutoInput function/word completion/text completion -Oracle Open Office Impress : presentations -Oracle Open Office Impress : presentations;arranging slides -Oracle Open Office Impress : presentations;creating/opening -Oracle Open Office Impress : presentations;exiting by interaction -Oracle Open Office Impress : presentations;exporting to HTML -Oracle Open Office Impress : presentations;importing HTML -Oracle Open Office Impress : presentations;inserting spreadsheet cells -Oracle Open Office Impress : presentations;inserting spreadsheets -Oracle Open Office Impress : presentations;live on the Internet -Oracle Open Office Impress : presentations;navigating -Oracle Open Office Impress : presentations;numbering slides in -Oracle Open Office Impress : presentations;ordering of effects -Oracle Open Office Impress : presentations;print menu -Oracle Open Office Impress : presentations;printing -Oracle Open Office Impress : presentations;rehearse timings -Oracle Open Office Impress : presentations;saving -Oracle Open Office Impress : presentations;saving automatically -Oracle Open Office Impress : presentations;saving in other formats -Oracle Open Office Impress : presentations;sending as e-mail -Oracle Open Office Impress : presentations;settings for -Oracle Open Office Impress : presentations;shortcut keys -Oracle Open Office Impress : presentations;starting -Oracle Open Office Impress : presentations;starting with wizard -Oracle Open Office Impress : presentations;window / full screen -Oracle Open Office Impress : presentations;wizards -Oracle Open Office Impress : Presenter Console shortcuts -Oracle Open Office Impress : press buttons, see push buttons -Oracle Open Office Impress : previews -Oracle Open Office Impress : previews;fonts lists -Oracle Open Office Impress : primary keys -Oracle Open Office Impress : primary keys;defining -Oracle Open Office Impress : primary keys;design view -Oracle Open Office Impress : primary keys;inserting (Base) -Oracle Open Office Impress : print area selection -Oracle Open Office Impress : printer metrics for document formatting (Writer) -Oracle Open Office Impress : printers -Oracle Open Office Impress : printers;adding, UNIX -Oracle Open Office Impress : printers;choosing -Oracle Open Office Impress : printers;default printer -Oracle Open Office Impress : printers;faxes under UNIX -Oracle Open Office Impress : printers;maximum page formats -Oracle Open Office Impress : printers;paper trays -Oracle Open Office Impress : printers;properties -Oracle Open Office Impress : printing -Oracle Open Office Impress : printing;black and white -Oracle Open Office Impress : printing;brochures -Oracle Open Office Impress : printing;colors in grayscale -Oracle Open Office Impress : printing;comments -Oracle Open Office Impress : printing;copies -Oracle Open Office Impress : printing;creating individual jobs -Oracle Open Office Impress : printing;dates in presentations -Oracle Open Office Impress : printing;directly -Oracle Open Office Impress : printing;documents -Oracle Open Office Impress : printing;drawings defaults -Oracle Open Office Impress : printing;elements in text documents -Oracle Open Office Impress : printing;faster -Oracle Open Office Impress : printing;fitting to pages in Oracle Open Office Math -Oracle Open Office Impress : printing;fitting to pages in presentations -Oracle Open Office Impress : printing;fitting to paper -Oracle Open Office Impress : printing;formulas in Oracle Open Office Math -Oracle Open Office Impress : printing;hidden pages of presentations -Oracle Open Office Impress : printing;in original size in Oracle Open Office Math -Oracle Open Office Impress : printing;left/right pages -Oracle Open Office Impress : printing;presentations -Oracle Open Office Impress : printing;queries (Base) -Oracle Open Office Impress : printing;scaling in Oracle Open Office Math -Oracle Open Office Impress : printing;selections -Oracle Open Office Impress : printing;text always in black -Oracle Open Office Impress : printing;text in reverse order -Oracle Open Office Impress : printing;tiling pages in presentations -Oracle Open Office Impress : printing;transparencies -Oracle Open Office Impress : printing;warnings -Oracle Open Office Impress : printing;without scaling in presentations -Oracle Open Office Impress : printing speed -Oracle Open Office Impress : programming -Oracle Open Office Impress : programming;Oracle Open Office -Oracle Open Office Impress : programming;scripting -Oracle Open Office Impress : programs run by mouse click in presentations -Oracle Open Office Impress : properties -Oracle Open Office Impress : properties;charts -Oracle Open Office Impress : properties;fields in databases -Oracle Open Office Impress : properties;files -Oracle Open Office Impress : properties;form controls -Oracle Open Office Impress : properties;forms -Oracle Open Office Impress : properties;printers -Oracle Open Office Impress : properties;smooth lines in line charts/XY charts -Oracle Open Office Impress : protected contents -Oracle Open Office Impress : protected dashes -Oracle Open Office Impress : protected database tables -Oracle Open Office Impress : protected documents -Oracle Open Office Impress : protected spaces -Oracle Open Office Impress : protected spaces;inserting -Oracle Open Office Impress : protected spaces;showing (Writer) -Oracle Open Office Impress : protecting -Oracle Open Office Impress : protecting;contents -Oracle Open Office Impress : protecting;recorded changes -Oracle Open Office Impress : proxy settings -Oracle Open Office Impress : push buttons -Oracle Open Office Impress : push buttons;adding to documents -Oracle Open Office Impress : push buttons;creating -Oracle Open Office Impress : pyramids -Oracle Open Office Impress : queries -Oracle Open Office Impress : queries;copying (Base) -Oracle Open Office Impress : queries;creating in design view (Base) -Oracle Open Office Impress : queries;creating in SQL view -Oracle Open Office Impress : queries;defining (Base) -Oracle Open Office Impress : queries;deleting table links (Base) -Oracle Open Office Impress : queries;editing in data source view -Oracle Open Office Impress : queries;formulating filter conditions (Base) -Oracle Open Office Impress : queries;joining tables (Base) -Oracle Open Office Impress : queries;missing elements (Base) -Oracle Open Office Impress : queries;overview (Base) -Oracle Open Office Impress : queries;parameter queries (Base) -Oracle Open Office Impress : queries;printing (Base) -Oracle Open Office Impress : Query Wizard (Base) -Oracle Open Office Impress : Quickstarter -Oracle Open Office Impress : quotes -Oracle Open Office Impress : quotes;custom -Oracle Open Office Impress : radar charts, see net charts -Oracle Open Office Impress : radio button creation -Oracle Open Office Impress : read-only documents -Oracle Open Office Impress : read-only documents;cursor -Oracle Open Office Impress : read-only documents;database tables on/off -Oracle Open Office Impress : read-only documents;editing -Oracle Open Office Impress : read-only documents;opening documents as -Oracle Open Office Impress : read-only items in Data Navigator -Oracle Open Office Impress : recognizing URLs automatically -Oracle Open Office Impress : recording -Oracle Open Office Impress : recording;changes -Oracle Open Office Impress : recording;display times for slides -Oracle Open Office Impress : recording;macros -Oracle Open Office Impress : records -Oracle Open Office Impress : records;inserting comments -Oracle Open Office Impress : records;protecting -Oracle Open Office Impress : records;saving -Oracle Open Office Impress : records;searching in databases -Oracle Open Office Impress : rectangles -Oracle Open Office Impress : rectangles with round corners -Oracle Open Office Impress : recursions in spreadsheets -Oracle Open Office Impress : redo command -Oracle Open Office Impress : reduced printing -Oracle Open Office Impress : reference lines -Oracle Open Office Impress : references -Oracle Open Office Impress : references;displaying in color (Calc) -Oracle Open Office Impress : references;expanding (Calc) -Oracle Open Office Impress : references;iterative (Calc) -Oracle Open Office Impress : register-true -Oracle Open Office Impress : register-true;definition -Oracle Open Office Impress : registering -Oracle Open Office Impress : registering;address books -Oracle Open Office Impress : registering;databases (Base) -Oracle Open Office Impress : registering;Oracle Open Office -Oracle Open Office Impress : regression curves in charts -Oracle Open Office Impress : regular expressions -Oracle Open Office Impress : regular expressions;list of -Oracle Open Office Impress : rehearse timings -Oracle Open Office Impress : relational databases (Base) -Oracle Open Office Impress : relations -Oracle Open Office Impress : relations;creating and deleting (Base) -Oracle Open Office Impress : relations;joining tables (Base) -Oracle Open Office Impress : relations;properties (Base) -Oracle Open Office Impress : relative hyperlinks -Oracle Open Office Impress : relative saving of URLs -Oracle Open Office Impress : reloading -Oracle Open Office Impress : reloading;documents -Oracle Open Office Impress : reloading;HTML documents, automatically -Oracle Open Office Impress : remarks, see also comments -Oracle Open Office Impress : remote configurations -Oracle Open Office Impress : remove noise filter -Oracle Open Office Impress : removing -Oracle Open Office Impress : removing;bullets and numbering -Oracle Open Office Impress : removing;form filters -Oracle Open Office Impress : removing, see also deleting -Oracle Open Office Impress : renaming layers -Oracle Open Office Impress : reorganizing charts -Oracle Open Office Impress : repeating -Oracle Open Office Impress : repeating;commands -Oracle Open Office Impress : replacement options -Oracle Open Office Impress : replacement table -Oracle Open Office Impress : replacing -Oracle Open Office Impress : replacing;AutoCorrect function -Oracle Open Office Impress : replacing;colors in bitmaps -Oracle Open Office Impress : replacing;dashes -Oracle Open Office Impress : replacing;ordinal numbers -Oracle Open Office Impress : replacing;tab stops (regular expressions) -Oracle Open Office Impress : Report Builder -Oracle Open Office Impress : reports -Oracle Open Office Impress : reports;creating -Oracle Open Office Impress : reports;error reports -Oracle Open Office Impress : reports;opening and editing -Oracle Open Office Impress : reports;templates -Oracle Open Office Impress : resetting -Oracle Open Office Impress : resetting;templates -Oracle Open Office Impress : resizing -Oracle Open Office Impress : resizing;objects, by mouse -Oracle Open Office Impress : resizing, see also scaling/zooming -Oracle Open Office Impress : resolution when printing bitmaps -Oracle Open Office Impress : restoring -Oracle Open Office Impress : restoring;default formatting -Oracle Open Office Impress : restoring;editing -Oracle Open Office Impress : reversing objects -Oracle Open Office Impress : reversing printing order -Oracle Open Office Impress : review function -Oracle Open Office Impress : review function;accepting or rejecting changes -Oracle Open Office Impress : review function;comparing documents -Oracle Open Office Impress : review function;protecting records -Oracle Open Office Impress : review function;recording changes example -Oracle Open Office Impress : rich text control -Oracle Open Office Impress : right alignment of paragraphs -Oracle Open Office Impress : right joins (Base) -Oracle Open Office Impress : right-to-left text -Oracle Open Office Impress : rotating -Oracle Open Office Impress : rotating;3D text -Oracle Open Office Impress : rotating;draw objects -Oracle Open Office Impress : rotation mode -Oracle Open Office Impress : round corners -Oracle Open Office Impress : rounding precision (Calc) -Oracle Open Office Impress : row headers -Oracle Open Office Impress : row headers;displaying (Calc) -Oracle Open Office Impress : row headers;highlighting (Calc) -Oracle Open Office Impress : rows -Oracle Open Office Impress : rows;inserting -Oracle Open Office Impress : rulers -Oracle Open Office Impress : rulers;default settings -Oracle Open Office Impress : rulers;in presentations -Oracle Open Office Impress : rulers;measurement units -Oracle Open Office Impress : rulers;visible in presentations -Oracle Open Office Impress : running macros/programs in presentations -Oracle Open Office Impress : running slide shows -Oracle Open Office Impress : samples and templates -Oracle Open Office Impress : saving -Oracle Open Office Impress : saving;as HTML -Oracle Open Office Impress : saving;default file formats -Oracle Open Office Impress : saving;dialog settings -Oracle Open Office Impress : saving;documents -Oracle Open Office Impress : saving;documents for mobile devices -Oracle Open Office Impress : saving;documents in other formats -Oracle Open Office Impress : saving;documents, automatically -Oracle Open Office Impress : saving;in Microsoft Office file format -Oracle Open Office Impress : saving;options -Oracle Open Office Impress : saving;templates -Oracle Open Office Impress : saving;to XML -Oracle Open Office Impress : saving;VBA code in Microsoft Office documents -Oracle Open Office Impress : saving;with password by default -Oracle Open Office Impress : saving as command -Oracle Open Office Impress : saving as command;precautions -Oracle Open Office Impress : scaling -Oracle Open Office Impress : scaling;axes -Oracle Open Office Impress : scaling;font sizes in user interface -Oracle Open Office Impress : scaling;objects -Oracle Open Office Impress : scaling;pictures -Oracle Open Office Impress : scaling;printing in Oracle Open Office Math -Oracle Open Office Impress : scaling;text in charts -Oracle Open Office Impress : scaling;when printing presentations -Oracle Open Office Impress : scaling, see also zooming -Oracle Open Office Impress : scatter charts -Oracle Open Office Impress : screen -Oracle Open Office Impress : screen;full screen views -Oracle Open Office Impress : screen;scaling -Oracle Open Office Impress : screen magnifiers -Oracle Open Office Impress : screen readers -Oracle Open Office Impress : script organization -Oracle Open Office Impress : scrollbars -Oracle Open Office Impress : scrollbars;controls -Oracle Open Office Impress : scrollbars;displaying (Calc) -Oracle Open Office Impress : scrollbars;horizontal and vertical (Writer) -Oracle Open Office Impress : search criteria for database functions in cells -Oracle Open Office Impress : search engines -Oracle Open Office Impress : search engines;definition -Oracle Open Office Impress : search engines;selecting -Oracle Open Office Impress : searching -Oracle Open Office Impress : searching;all sheets -Oracle Open Office Impress : searching;databases -Oracle Open Office Impress : searching;form filters -Oracle Open Office Impress : searching;Internet -Oracle Open Office Impress : searching;tables and forms -Oracle Open Office Impress : secondary axes in charts -Oracle Open Office Impress : sections -Oracle Open Office Impress : sections;backgrounds -Oracle Open Office Impress : sectors of circles/ellipses -Oracle Open Office Impress : security -Oracle Open Office Impress : security;digital signatures -Oracle Open Office Impress : security;options for documents with macros -Oracle Open Office Impress : security;protecting contents -Oracle Open Office Impress : security;security levels for macros -Oracle Open Office Impress : security;warning dialogs with macros -Oracle Open Office Impress : segments of circles/ellipses -Oracle Open Office Impress : selecting -Oracle Open Office Impress : selecting;controls -Oracle Open Office Impress : selecting;hidden objects -Oracle Open Office Impress : selecting;layers -Oracle Open Office Impress : selecting;measurement units -Oracle Open Office Impress : selecting;objects -Oracle Open Office Impress : selecting;print areas -Oracle Open Office Impress : selecting;several files -Oracle Open Office Impress : selection clipboard -Oracle Open Office Impress : selection frames -Oracle Open Office Impress : selection modes in text -Oracle Open Office Impress : sending -Oracle Open Office Impress : sending;AutoAbstract function in presentations -Oracle Open Office Impress : sending;documents as e-mail -Oracle Open Office Impress : sending;documents as faxes -Oracle Open Office Impress : separator lines -Oracle Open Office Impress : separator lines;defining -Oracle Open Office Impress : separators -Oracle Open Office Impress : separators;conditional -Oracle Open Office Impress : Server Side ImageMap -Oracle Open Office Impress : settings -Oracle Open Office Impress : settings;printers -Oracle Open Office Impress : settings;program configuration -Oracle Open Office Impress : settings;proxies -Oracle Open Office Impress : settings;tracking changes -Oracle Open Office Impress : settings;views -Oracle Open Office Impress : SGML -Oracle Open Office Impress : SGML;definition -Oracle Open Office Impress : shadows -Oracle Open Office Impress : shadows;areas -Oracle Open Office Impress : shadows;borders -Oracle Open Office Impress : shadows;characters -Oracle Open Office Impress : shadows;characters, using context menu -Oracle Open Office Impress : sharing documents -Oracle Open Office Impress : sharpening filter -Oracle Open Office Impress : shearing objects -Oracle Open Office Impress : sheet tabs -Oracle Open Office Impress : sheet tabs;displaying -Oracle Open Office Impress : sheets -Oracle Open Office Impress : sheets;searching all -Oracle Open Office Impress : shells -Oracle Open Office Impress : shortcut keys -Oracle Open Office Impress : shortcut keys;assigning macros -Oracle Open Office Impress : shortcut keys;charts -Oracle Open Office Impress : shortcut keys;general -Oracle Open Office Impress : shortcut keys;in databases -Oracle Open Office Impress : shortcut keys;in drawings -Oracle Open Office Impress : shortcut keys;in presentations -Oracle Open Office Impress : shortcut keys;Oracle Open Office accessibility -Oracle Open Office Impress : showing -Oracle Open Office Impress : showing;changes -Oracle Open Office Impress : showing;docked windows -Oracle Open Office Impress : showing;drawings and controls (Writer) -Oracle Open Office Impress : showing;guides -Oracle Open Office Impress : showing;hidden layers -Oracle Open Office Impress : showing;hidden slides -Oracle Open Office Impress : showing;levels -Oracle Open Office Impress : showing;live presentations on the Internet -Oracle Open Office Impress : showing;slide shows -Oracle Open Office Impress : showing;subpoints -Oracle Open Office Impress : showing;toolbars -Oracle Open Office Impress : sign conversion to curves -Oracle Open Office Impress : signing documents with digital signatures -Oracle Open Office Impress : similarity search -Oracle Open Office Impress : simple handles (Writer) -Oracle Open Office Impress : simplified Chinese -Oracle Open Office Impress : simplified Chinese;translating to traditional Chinese -Oracle Open Office Impress : single sign on options -Oracle Open Office Impress : single-line spacing in text -Oracle Open Office Impress : sizes -Oracle Open Office Impress : sizes;draw objects -Oracle Open Office Impress : sizes;pictures -Oracle Open Office Impress : skewing draw objects -Oracle Open Office Impress : slanting draw objects -Oracle Open Office Impress : slanting objects -Oracle Open Office Impress : slide designs -Oracle Open Office Impress : slide layouts -Oracle Open Office Impress : slide master view -Oracle Open Office Impress : slide masters -Oracle Open Office Impress : slide masters;changing backgrounds -Oracle Open Office Impress : slide masters;designing -Oracle Open Office Impress : slide masters;headers and footers -Oracle Open Office Impress : slide numbers -Oracle Open Office Impress : slide numbers on all slides -Oracle Open Office Impress : slide shows -Oracle Open Office Impress : slide shows;custom -Oracle Open Office Impress : slide shows;settings for -Oracle Open Office Impress : slide shows;starting -Oracle Open Office Impress : slide transitions -Oracle Open Office Impress : slide transitions;applying effects -Oracle Open Office Impress : slide transitions;automatic -Oracle Open Office Impress : slide transitions;manual -Oracle Open Office Impress : slide transitions;sounds -Oracle Open Office Impress : slides -Oracle Open Office Impress : slides;arranging -Oracle Open Office Impress : slides;backgrounds -Oracle Open Office Impress : slides;changing backgrounds -Oracle Open Office Impress : slides;copying between documents -Oracle Open Office Impress : slides;deleting -Oracle Open Office Impress : slides;expanding -Oracle Open Office Impress : slides;formatting -Oracle Open Office Impress : slides;headers and footers -Oracle Open Office Impress : slides;inserting -Oracle Open Office Impress : slides;inserting as links -Oracle Open Office Impress : slides;inserting speaker notes -Oracle Open Office Impress : slides;page numbers -Oracle Open Office Impress : slides;printing -Oracle Open Office Impress : small capitals -Oracle Open Office Impress : small icons -Oracle Open Office Impress : smart tag configuration -Oracle Open Office Impress : smooth scrolling (Writer) -Oracle Open Office Impress : smoothing filter -Oracle Open Office Impress : snap grid defaults (Writer/Calc) -Oracle Open Office Impress : snap lines, see also guides -Oracle Open Office Impress : snap points -Oracle Open Office Impress : snap points;editing -Oracle Open Office Impress : snap points;inserting -Oracle Open Office Impress : snapping in presentations and drawings -Oracle Open Office Impress : solarization filter -Oracle Open Office Impress : sort lists -Oracle Open Office Impress : sort lists;copying to in Calc -Oracle Open Office Impress : sorting -Oracle Open Office Impress : sorting;data in forms -Oracle Open Office Impress : sorting;databases -Oracle Open Office Impress : sound files -Oracle Open Office Impress : sounds -Oracle Open Office Impress : sounds;for effects -Oracle Open Office Impress : sounds;formats -Oracle Open Office Impress : sounds;on slide transitions -Oracle Open Office Impress : spaces -Oracle Open Office Impress : spaces;displaying (Writer) -Oracle Open Office Impress : spaces;ignoring double -Oracle Open Office Impress : spaces;inserting protected spaces -Oracle Open Office Impress : spaces;showing protected spaces (Writer) -Oracle Open Office Impress : spacing -Oracle Open Office Impress : spacing;between paragraphs in footnotes -Oracle Open Office Impress : spacing;font effects -Oracle Open Office Impress : spacing;lines and paragraphs -Oracle Open Office Impress : spacing;tab stops in text documents -Oracle Open Office Impress : spacing;tabs in presentations -Oracle Open Office Impress : spadmin -Oracle Open Office Impress : speaker notes -Oracle Open Office Impress : speaker notes;defaults -Oracle Open Office Impress : speaker notes;inserting -Oracle Open Office Impress : special characters -Oracle Open Office Impress : speech bubbles -Oracle Open Office Impress : speed of printing -Oracle Open Office Impress : spellcheck -Oracle Open Office Impress : spellcheck;activating for a language -Oracle Open Office Impress : spellcheck;context menus -Oracle Open Office Impress : spellcheck;default languages -Oracle Open Office Impress : spellcheck;dialog -Oracle Open Office Impress : spellcheck;dictionary of exceptions -Oracle Open Office Impress : spellcheck;ignore list -Oracle Open Office Impress : spheres -Oracle Open Office Impress : spin button creation -Oracle Open Office Impress : splitting -Oracle Open Office Impress : splitting;combinations -Oracle Open Office Impress : splitting;curves -Oracle Open Office Impress : spoolfiles with Xprinter -Oracle Open Office Impress : spreadsheets -Oracle Open Office Impress : spreadsheets;as databases (base) -Oracle Open Office Impress : spreadsheets;copying areas to text documents -Oracle Open Office Impress : spreadsheets;creating/opening -Oracle Open Office Impress : spreadsheets;in presentations -Oracle Open Office Impress : spreadsheets;inserting charts -Oracle Open Office Impress : spreadsheets;inserting database records -Oracle Open Office Impress : spreadsheets;printing -Oracle Open Office Impress : spreadsheets;saving -Oracle Open Office Impress : spreadsheets;saving automatically -Oracle Open Office Impress : spreadsheets;saving in other formats -Oracle Open Office Impress : spreadsheets;sending as e-mail -Oracle Open Office Impress : SQL -Oracle Open Office Impress : SQL;definition -Oracle Open Office Impress : SQL;DISTINCT parameter -Oracle Open Office Impress : SQL;executing SQL commands -Oracle Open Office Impress : SQL;executing SQL statements (Base) -Oracle Open Office Impress : SQL;queries (Base) -Oracle Open Office Impress : square drawings -Oracle Open Office Impress : standard bar on/off -Oracle Open Office Impress : standard deviation in charts -Oracle Open Office Impress : standard filters in databases -Oracle Open Office Impress : standard printer under UNIX -Oracle Open Office Impress : start center -Oracle Open Office Impress : start parameters -Oracle Open Office Impress : starting -Oracle Open Office Impress : starting;always with the current slide -Oracle Open Office Impress : starting;custom slide shows -Oracle Open Office Impress : starting;slide shows -Oracle Open Office Impress : statistics in charts -Oracle Open Office Impress : status bar on/off -Oracle Open Office Impress : stickers -Oracle Open Office Impress : stock charts -Oracle Open Office Impress : strikethrough -Oracle Open Office Impress : strikethrough;characters -Oracle Open Office Impress : strikethrough;font effects -Oracle Open Office Impress : styles -Oracle Open Office Impress : styles;'changed' message -Oracle Open Office Impress : styles;arrow and line styles -Oracle Open Office Impress : styles;copying between documents -Oracle Open Office Impress : styles;keyboard shortcuts -Oracle Open Office Impress : styles;organizing -Oracle Open Office Impress : styles;printing styles used in a document -Oracle Open Office Impress : styles;replacing automatically -Oracle Open Office Impress : Styles and Formatting window -Oracle Open Office Impress : Styles and Formatting window;docking -Oracle Open Office Impress : Styles and Formatting window;graphics documents -Oracle Open Office Impress : subforms -Oracle Open Office Impress : subforms;creating -Oracle Open Office Impress : subforms;description -Oracle Open Office Impress : submitting forms -Oracle Open Office Impress : subpoints -Oracle Open Office Impress : subpoints;hiding -Oracle Open Office Impress : subpoints;showing -Oracle Open Office Impress : subtracting polygons -Oracle Open Office Impress : suffixes in file formats -Oracle Open Office Impress : summary slide -Oracle Open Office Impress : support on the Web -Oracle Open Office Impress : synchronizing -Oracle Open Office Impress : synchronizing;labels and business cards -Oracle Open Office Impress : synchronizing;Pocket PC and Oracle Open Office formats -Oracle Open Office Impress : system address book registration -Oracle Open Office Impress : tab stops -Oracle Open Office Impress : tab stops;displaying (Writer) -Oracle Open Office Impress : tab stops;inserting and editing -Oracle Open Office Impress : tab stops;regular expressions -Oracle Open Office Impress : tab stops;setting in sheets -Oracle Open Office Impress : tab stops;settings -Oracle Open Office Impress : tab stops;spacing in presentations -Oracle Open Office Impress : tab stops;spacing in text documents -Oracle Open Office Impress : table controls -Oracle Open Office Impress : table controls;form functions -Oracle Open Office Impress : table controls;keyboard-only edit mode -Oracle Open Office Impress : table controls;properties -Oracle Open Office Impress : table views of databases -Oracle Open Office Impress : Table Wizard (Base) -Oracle Open Office Impress : tables -Oracle Open Office Impress : tables;inserting line breaks -Oracle Open Office Impress : tables in databases -Oracle Open Office Impress : tables in databases;access rights to (Base) -Oracle Open Office Impress : tables in databases;adding to queries -Oracle Open Office Impress : tables in databases;browsing and editing -Oracle Open Office Impress : tables in databases;copying database tables (Base) -Oracle Open Office Impress : tables in databases;creating -Oracle Open Office Impress : tables in databases;creating in design view (manually) -Oracle Open Office Impress : tables in databases;importing text formats (Base) -Oracle Open Office Impress : tables in databases;joining for queries (Base) -Oracle Open Office Impress : tables in databases;printing queries (Base) -Oracle Open Office Impress : tables in databases;relations (Base) -Oracle Open Office Impress : tables in databases;searching -Oracle Open Office Impress : tables in spreadsheets -Oracle Open Office Impress : tables in spreadsheets;copying data to other applications -Oracle Open Office Impress : tables in spreadsheets;defining borders -Oracle Open Office Impress : tables in spreadsheets;value highlighting -Oracle Open Office Impress : tables in text -Oracle Open Office Impress : tables in text;captions -Oracle Open Office Impress : tables in text;creating automatically -Oracle Open Office Impress : tables in text;default settings -Oracle Open Office Impress : tables in text;defining borders -Oracle Open Office Impress : tables in text;displaying -Oracle Open Office Impress : tables in text;printing -Oracle Open Office Impress : tabs -Oracle Open Office Impress : tabs;displaying sheet tabs -Oracle Open Office Impress : tags -Oracle Open Office Impress : tags;definition -Oracle Open Office Impress : tags;META tags -Oracle Open Office Impress : task pane -Oracle Open Office Impress : templates -Oracle Open Office Impress : templates;agendas -Oracle Open Office Impress : templates;changing basic fonts -Oracle Open Office Impress : templates;database reports -Oracle Open Office Impress : templates;deleting -Oracle Open Office Impress : templates;editing and saving -Oracle Open Office Impress : templates;faxes -Oracle Open Office Impress : templates;importing and exporting -Oracle Open Office Impress : templates;letters -Oracle Open Office Impress : templates;new documents from templates -Oracle Open Office Impress : templates;opening documents with -Oracle Open Office Impress : templates;organizing -Oracle Open Office Impress : terminology -Oracle Open Office Impress : terminology;general glossary -Oracle Open Office Impress : terminology;Internet glossary -Oracle Open Office Impress : testing XML filters -Oracle Open Office Impress : text -Oracle Open Office Impress : text;animating -Oracle Open Office Impress : text;Asian layout -Oracle Open Office Impress : text;bold -Oracle Open Office Impress : text;coloring -Oracle Open Office Impress : text;converting to curves -Oracle Open Office Impress : text;copying by drag and drop -Oracle Open Office Impress : text;CTL languages -Oracle Open Office Impress : text;double-clicking to edit -Oracle Open Office Impress : text;drawing pictures -Oracle Open Office Impress : text;font effects -Oracle Open Office Impress : text;font sizes -Oracle Open Office Impress : text;font styles -Oracle Open Office Impress : text;fonts and formats -Oracle Open Office Impress : text;Fontwork icons -Oracle Open Office Impress : text;hyperlinks -Oracle Open Office Impress : text;inserting special characters -Oracle Open Office Impress : text;italics -Oracle Open Office Impress : text;kerning -Oracle Open Office Impress : text;language selection -Oracle Open Office Impress : text;line spacing -Oracle Open Office Impress : text;overwriting or inserting -Oracle Open Office Impress : text;printing in black -Oracle Open Office Impress : text;replacing with format -Oracle Open Office Impress : text;selection modes -Oracle Open Office Impress : text;shadowed -Oracle Open Office Impress : text;text/draw objects -Oracle Open Office Impress : text;toolbar -Oracle Open Office Impress : text attributes -Oracle Open Office Impress : text attributes;hyperlinks -Oracle Open Office Impress : text attributes;undoing -Oracle Open Office Impress : text boxes -Oracle Open Office Impress : text boxes;form functions -Oracle Open Office Impress : text boxes;positioning -Oracle Open Office Impress : text breaks in cells -Oracle Open Office Impress : text colors for better accessibility -Oracle Open Office Impress : text databases (Base) -Oracle Open Office Impress : text documents -Oracle Open Office Impress : text documents;creating/opening -Oracle Open Office Impress : text documents;importing/exporting -Oracle Open Office Impress : text documents;inserting in slides -Oracle Open Office Impress : text documents;inserting spreadsheet cells -Oracle Open Office Impress : text documents;print settings -Oracle Open Office Impress : text documents;printing -Oracle Open Office Impress : text documents;saving -Oracle Open Office Impress : text documents;saving automatically -Oracle Open Office Impress : text documents;saving in other formats -Oracle Open Office Impress : text documents;sending as e-mail -Oracle Open Office Impress : text effects -Oracle Open Office Impress : text entry mode for draw objects -Oracle Open Office Impress : text flow -Oracle Open Office Impress : text flow;in cells -Oracle Open Office Impress : text formats -Oracle Open Office Impress : text formats;databases -Oracle Open Office Impress : text formats;pasting -Oracle Open Office Impress : text frames -Oracle Open Office Impress : text input fields -Oracle Open Office Impress : text layout for special languages -Oracle Open Office Impress : text objects -Oracle Open Office Impress : text objects;alignment -Oracle Open Office Impress : text objects;draw functions -Oracle Open Office Impress : text objects;fonts -Oracle Open Office Impress : text objects;in presentations and drawings -Oracle Open Office Impress : text overflow in spreadsheet cells -Oracle Open Office Impress : text scaling in charts -Oracle Open Office Impress : text, see also text documents, paragraphs and characters -Oracle Open Office Impress : TextArt, see Fontwork -Oracle Open Office Impress : textures -Oracle Open Office Impress : textures;inserting from Gallery -Oracle Open Office Impress : textures;on chart bars -Oracle Open Office Impress : Thai -Oracle Open Office Impress : Thai;entering text -Oracle Open Office Impress : Thai;language settings -Oracle Open Office Impress : thesaurus -Oracle Open Office Impress : thesaurus;activating for a language -Oracle Open Office Impress : ticker text -Oracle Open Office Impress : tiled printing of slides -Oracle Open Office Impress : time and date on all slides -Oracle Open Office Impress : time fields -Oracle Open Office Impress : time fields;form functions -Oracle Open Office Impress : times -Oracle Open Office Impress : times;fixed -Oracle Open Office Impress : times;inserting when printing presentations -Oracle Open Office Impress : times;variable -Oracle Open Office Impress : times, formats -Oracle Open Office Impress : timings -Oracle Open Office Impress : timings;rehearse timings -Oracle Open Office Impress : tips -Oracle Open Office Impress : tips;extended tips in Help -Oracle Open Office Impress : title rows -Oracle Open Office Impress : title rows;printing in Oracle Open Office Math -Oracle Open Office Impress : titles -Oracle Open Office Impress : titles;alignment (charts) -Oracle Open Office Impress : titles;changing -Oracle Open Office Impress : titles;editing in charts -Oracle Open Office Impress : titles;font effects -Oracle Open Office Impress : titles;formatting automatically -Oracle Open Office Impress : titles;formatting charts -Oracle Open Office Impress : titles;objects -Oracle Open Office Impress : toolbars -Oracle Open Office Impress : toolbars;3D objects -Oracle Open Office Impress : toolbars;adding buttons -Oracle Open Office Impress : toolbars;curves -Oracle Open Office Impress : toolbars;docking/undocking -Oracle Open Office Impress : toolbars;ellipses -Oracle Open Office Impress : toolbars;Form Navigation bar -Oracle Open Office Impress : toolbars;viewing/closing -Oracle Open Office Impress : tools bar -Oracle Open Office Impress : tooltips -Oracle Open Office Impress : tooltips;extended tips -Oracle Open Office Impress : tooltips;help -Oracle Open Office Impress : torus -Oracle Open Office Impress : traditional Chinese -Oracle Open Office Impress : traditional Chinese;translating to simplified chinese -Oracle Open Office Impress : transition effects -Oracle Open Office Impress : transparency -Oracle Open Office Impress : transparency;adjusting -Oracle Open Office Impress : transparency;areas -Oracle Open Office Impress : transparency;of objects -Oracle Open Office Impress : transparency;off for faster printing -Oracle Open Office Impress : transparency;saving -Oracle Open Office Impress : tree view of Help -Oracle Open Office Impress : trend lines in charts -Oracle Open Office Impress : typefaces -Oracle Open Office Impress : typefaces;adding under UNIX -Oracle Open Office Impress : typefaces;formats -Oracle Open Office Impress : typography -Oracle Open Office Impress : typography;Asian -Oracle Open Office Impress : underlining -Oracle Open Office Impress : underlining;AutoFormat function -Oracle Open Office Impress : underlining;characters -Oracle Open Office Impress : underlining;text -Oracle Open Office Impress : underlying objects -Oracle Open Office Impress : undocking windows -Oracle Open Office Impress : undoing -Oracle Open Office Impress : undoing;direct formatting -Oracle Open Office Impress : undoing;editing -Oracle Open Office Impress : undoing;number of steps -Oracle Open Office Impress : ungrouping groups -Oracle Open Office Impress : units -Oracle Open Office Impress : units;converting -Oracle Open Office Impress : units;measurement units -Oracle Open Office Impress : unlocking layers -Oracle Open Office Impress : UNO components -Oracle Open Office Impress : UNO components;Extension Manager -Oracle Open Office Impress : UNO components;integrating new -Oracle Open Office Impress : update options -Oracle Open Office Impress : updates -Oracle Open Office Impress : updates;checking automatically -Oracle Open Office Impress : updates;checking manually -Oracle Open Office Impress : updating -Oracle Open Office Impress : updating;fields and charts, automatically (Writer) -Oracle Open Office Impress : updating;links in text documents -Oracle Open Office Impress : updating;links, on opening -Oracle Open Office Impress : updating;templates -Oracle Open Office Impress : URL -Oracle Open Office Impress : URL;changing hyperlink URLs -Oracle Open Office Impress : URL;definition -Oracle Open Office Impress : URL;in pictures -Oracle Open Office Impress : URL;saving absolute/relative paths -Oracle Open Office Impress : URL;turning off URL recognition -Oracle Open Office Impress : user data -Oracle Open Office Impress : user data;input -Oracle Open Office Impress : user data;removing when saving -Oracle Open Office Impress : user feedback -Oracle Open Office Impress : user feedback;automatically -Oracle Open Office Impress : user-defined colors -Oracle Open Office Impress : user-defined dictionaries -Oracle Open Office Impress : user-defined dictionaries;creating -Oracle Open Office Impress : user-defined dictionaries;dictionary of exceptions -Oracle Open Office Impress : user-defined dictionaries;editing -Oracle Open Office Impress : user-defined styles -Oracle Open Office Impress : user-defined styles;automatically replacing -Oracle Open Office Impress : UTF-8/UCS2 support -Oracle Open Office Impress : values -Oracle Open Office Impress : values;rounded as shown (Calc) -Oracle Open Office Impress : variables -Oracle Open Office Impress : variables;for paths -Oracle Open Office Impress : variances in charts -Oracle Open Office Impress : VBA code -Oracle Open Office Impress : VBA code;loading/saving documents with VBA code -Oracle Open Office Impress : vector graphics -Oracle Open Office Impress : vector graphics;converting bitmaps -Oracle Open Office Impress : vectorizing bitmaps -Oracle Open Office Impress : version management -Oracle Open Office Impress : version numbers of documents -Oracle Open Office Impress : versions -Oracle Open Office Impress : versions;comparing documents -Oracle Open Office Impress : versions;file saving as, restriction -Oracle Open Office Impress : versions;merging document versions -Oracle Open Office Impress : versions;of a document -Oracle Open Office Impress : versions;Oracle Open Office -Oracle Open Office Impress : vertical callouts -Oracle Open Office Impress : vertical scrollbars (Writer) -Oracle Open Office Impress : vertical text boxes -Oracle Open Office Impress : videos -Oracle Open Office Impress : viewing -Oracle Open Office Impress : viewing;databases -Oracle Open Office Impress : viewing;file properties -Oracle Open Office Impress : viewing;Oracle Open Office documents in Internet Explorer -Oracle Open Office Impress : viewing;toolbars -Oracle Open Office Impress : views -Oracle Open Office Impress : views;black and white -Oracle Open Office Impress : views;creating database views (Base) -Oracle Open Office Impress : views;defaults -Oracle Open Office Impress : views;display sizes -Oracle Open Office Impress : views;full screen -Oracle Open Office Impress : views;icons -Oracle Open Office Impress : views;scaling -Oracle Open Office Impress : views;shift function -Oracle Open Office Impress : views;slide master view -Oracle Open Office Impress : Visual Basic for Applications -Oracle Open Office Impress : Visual Basic for Applications;loading/saving documents with VBA code -Oracle Open Office Impress : watermarks -Oracle Open Office Impress : web documents -Oracle Open Office Impress : web documents;XForms -Oracle Open Office Impress : Web support -Oracle Open Office Impress : WebCast export -Oracle Open Office Impress : WebDAV over HTTPS -Oracle Open Office Impress : windows -Oracle Open Office Impress : windows;docking -Oracle Open Office Impress : windows;docking definition -Oracle Open Office Impress : windows;hiding/showing/docking -Oracle Open Office Impress : windows;new -Oracle Open Office Impress : wizards -Oracle Open Office Impress : wizards;agendas -Oracle Open Office Impress : wizards;database queries -Oracle Open Office Impress : wizards;database tables (Base) -Oracle Open Office Impress : wizards;databases (Base) -Oracle Open Office Impress : wizards;document converter -Oracle Open Office Impress : wizards;Euro Converter -Oracle Open Office Impress : wizards;faxes -Oracle Open Office Impress : wizards;forms -Oracle Open Office Impress : wizards;letters -Oracle Open Office Impress : wizards;macros (Base) -Oracle Open Office Impress : wizards;overview -Oracle Open Office Impress : wizards;presentations -Oracle Open Office Impress : wizards;reports -Oracle Open Office Impress : Word documents -Oracle Open Office Impress : Word documents;compatibility -Oracle Open Office Impress : Word documents;saving as -Oracle Open Office Impress : WordArt, see Fontwork -Oracle Open Office Impress : words -Oracle Open Office Impress : words;automatically replacing -Oracle Open Office Impress : words;wrapping in cells -Oracle Open Office Impress : words;wrapping in CTL -Oracle Open Office Impress : working directory change -Oracle Open Office Impress : wrapping text -Oracle Open Office Impress : wrapping text;in cells -Oracle Open Office Impress : write protection on/off -Oracle Open Office Impress : writing aids options -Oracle Open Office Impress : WYSIWYG in fonts lists -Oracle Open Office Impress : X axes -Oracle Open Office Impress : X axes;grid formatting -Oracle Open Office Impress : X axes;positioning -Oracle Open Office Impress : X axes;scaling -Oracle Open Office Impress : X axes;showing -Oracle Open Office Impress : XForms -Oracle Open Office Impress : XForms;adding/editing/deleting/organizing namespaces -Oracle Open Office Impress : XForms;conditions -Oracle Open Office Impress : XForms;opening/editing -Oracle Open Office Impress : XML converters -Oracle Open Office Impress : XML file formats -Oracle Open Office Impress : XML filters -Oracle Open Office Impress : XML filters;creating/testing -Oracle Open Office Impress : XML filters;saving as package/installing/deleting -Oracle Open Office Impress : XML filters;settings -Oracle Open Office Impress : XML Forms, see XForms -Oracle Open Office Impress : XSLT filters, see also XML filters -Oracle Open Office Impress : XY charts -Oracle Open Office Impress : Y axes -Oracle Open Office Impress : Y axes;formatting -Oracle Open Office Impress : Y axes;grid formatting -Oracle Open Office Impress : Y axes;positioning -Oracle Open Office Impress : Y axes;scaling -Oracle Open Office Impress : Y axes;showing -Oracle Open Office Impress : years -Oracle Open Office Impress : years;2-digit options -Oracle Open Office Impress : Z axes -Oracle Open Office Impress : Z axes;grid formatting -Oracle Open Office Impress : Z axes;showing -Oracle Open Office Impress : zero values -Oracle Open Office Impress : zero values;displaying (Calc) -Oracle Open Office Impress : zooming -Oracle Open Office Impress : zooming;in presentations -Oracle Open Office Impress : zooming;keyboard -Oracle Open Office Impress : zooming;page views -Oracle Open Office Impress : zooming;pictures -Oracle Open Office Impress : zooming;shortcut keys -Oracle Open Office Impress : zooming;status bar +Oracle Open Office Calc : ### error message Oracle Open Office Calc : #N/A error Oracle Open Office Calc : #N/A error;assigning to a cell Oracle Open Office Calc : #N/A error;recognizing @@ -10856,15 +152,13 @@ Oracle Open Office Calc : AutoCorrect function;options Oracle Open Office Calc : AutoCorrect function;pictures and frames Oracle Open Office Calc : AutoCorrect function;quotes Oracle Open Office Calc : AutoCorrect function;replacement table -Oracle Open Office Calc : AutoCorrect function;switching on and off in Calc +Oracle Open Office Calc : AutoCorrect function;switching on and off Oracle Open Office Calc : AutoCorrect function;URL recognition Oracle Open Office Calc : AutoFill function Oracle Open Office Calc : AutoFilter function Oracle Open Office Calc : AutoFilter function;applying Oracle Open Office Calc : AutoFilter function;subtotals Oracle Open Office Calc : AutoFormat function -Oracle Open Office Calc : AutoFormat function;defining and applying formats -Oracle Open Office Calc : AutoFormat function;switching on and off Oracle Open Office Calc : AutoInput function on/off Oracle Open Office Calc : automatic addressing in tables Oracle Open Office Calc : automatic captions (Writer) @@ -10878,6 +172,7 @@ Oracle Open Office Calc : automatic line breaks Oracle Open Office Calc : automatic lines/borders in text Oracle Open Office Calc : automatic saving Oracle Open Office Calc : AutoPilots, see wizards +Oracle Open Office Calc : AutoSum button, see sum icon Oracle Open Office Calc : AutoValue (Base) Oracle Open Office Calc : AVEDEV function Oracle Open Office Calc : AVERAGE function @@ -11234,6 +529,7 @@ Oracle Open Office Calc : clipboard;pasting Oracle Open Office Calc : clipboard;pasting formatted/unformatted text Oracle Open Office Calc : clipboard;selection clipboard Oracle Open Office Calc : clipboard;Unix +Oracle Open Office Calc : Clippy, see Help Agent Oracle Open Office Calc : closing Oracle Open Office Calc : closing;documents Oracle Open Office Calc : closing;toolbars @@ -11246,9 +542,9 @@ Oracle Open Office Calc : colors;adding Oracle Open Office Calc : colors;appearance Oracle Open Office Calc : colors;backgrounds Oracle Open Office Calc : colors;charts -Oracle Open Office Calc : colors;fill format Oracle Open Office Calc : colors;fonts Oracle Open Office Calc : colors;grid lines and cells (Calc) +Oracle Open Office Calc : colors;ignored text color Oracle Open Office Calc : colors;models Oracle Open Office Calc : colors;negative numbers Oracle Open Office Calc : colors;not printing @@ -11296,11 +592,9 @@ Oracle Open Office Calc : commands Oracle Open Office Calc : commands;repeating Oracle Open Office Calc : commands;SQL Oracle Open Office Calc : comments -Oracle Open Office Calc : comments;displaying (Calc) Oracle Open Office Calc : comments;help text for cells Oracle Open Office Calc : comments;inserting/editing/deleting/printing Oracle Open Office Calc : comments;on cells -Oracle Open Office Calc : comments;on cells - Inserting and Editing Comments Oracle Open Office Calc : comments;on changes Oracle Open Office Calc : comments;printing Oracle Open Office Calc : comments;printing in text @@ -11311,7 +605,7 @@ Oracle Open Office Calc : common terms;Internet glossary Oracle Open Office Calc : comparisons Oracle Open Office Calc : comparisons;document versions Oracle Open Office Calc : comparisons;operators in Calc -Oracle Open Office Calc : comparisons;operators in default filter dialog +Oracle Open Office Calc : comparisons;operators in standard filter dialog Oracle Open Office Calc : compatibility settings for MS Word import Oracle Open Office Calc : complete screen view Oracle Open Office Calc : COMPLEX function @@ -11370,6 +664,7 @@ Oracle Open Office Calc : controls;showing (Writer) Oracle Open Office Calc : CONVERT function Oracle Open Office Calc : CONVERT_ADD function Oracle Open Office Calc : converters +Oracle Open Office Calc : converters;document converter Oracle Open Office Calc : converters;Euro converter Oracle Open Office Calc : converters;PostScript, UNIX Oracle Open Office Calc : converters;XML @@ -11458,6 +753,7 @@ Oracle Open Office Calc : CTL;complex text layout languages Oracle Open Office Calc : CTL;definition Oracle Open Office Calc : CTL;options Oracle Open Office Calc : CTL;right-to-left sheets +Oracle Open Office Calc : cube drawing Oracle Open Office Calc : CUMIPMT function Oracle Open Office Calc : CUMIPMT_ADD function Oracle Open Office Calc : CUMPRINC function @@ -11650,9 +946,7 @@ Oracle Open Office Calc : decimal system Oracle Open Office Calc : decimal system;converting to Oracle Open Office Calc : decimal tab stops Oracle Open Office Calc : default directories -Oracle Open Office Calc : default filters -Oracle Open Office Calc : default filters;comparison operators -Oracle Open Office Calc : default filters;databases +Oracle Open Office Calc : default filters, see standard filters Oracle Open Office Calc : default printer Oracle Open Office Calc : default printer;setting up Oracle Open Office Calc : default printer;UNIX @@ -11661,8 +955,8 @@ Oracle Open Office Calc : default templates;changing Oracle Open Office Calc : default templates;organizing Oracle Open Office Calc : defaults Oracle Open Office Calc : defaults;currency formats +Oracle Open Office Calc : defaults;document formats in file dialogs Oracle Open Office Calc : defaults;documents -Oracle Open Office Calc : defaults;file formats in file dialogs Oracle Open Office Calc : defaults;file formats in Oracle Open Office Oracle Open Office Calc : defaults;fonts Oracle Open Office Calc : defaults;grids (Writer/Calc) @@ -11729,6 +1023,7 @@ Oracle Open Office Calc : designing;database tables Oracle Open Office Calc : designing;fonts Oracle Open Office Calc : designing;queries (Base) Oracle Open Office Calc : detaching toolbars +Oracle Open Office Calc : Detective Oracle Open Office Calc : determinants Oracle Open Office Calc : determination coefficients Oracle Open Office Calc : DEVSQ function @@ -11753,7 +1048,7 @@ Oracle Open Office Calc : DISC function Oracle Open Office Calc : discounts Oracle Open Office Calc : display options in Data Pilot Oracle Open Office Calc : displaying -Oracle Open Office Calc : displaying;comments (Calc) +Oracle Open Office Calc : displaying;comments Oracle Open Office Calc : displaying;comments in text documents Oracle Open Office Calc : displaying;formulas at any position Oracle Open Office Calc : displaying;formulas instead of results @@ -11911,6 +1206,7 @@ Oracle Open Office Calc : effects Oracle Open Office Calc : effects;font positions Oracle Open Office Calc : effects;fonts Oracle Open Office Calc : effects;Fontwork icons +Oracle Open Office Calc : ellipse drawing Oracle Open Office Calc : empty cells Oracle Open Office Calc : empty cells;counting Oracle Open Office Calc : empty cells;handling of @@ -12046,6 +1342,7 @@ Oracle Open Office Calc : files;saving in other formats Oracle Open Office Calc : files;sending as e-mail Oracle Open Office Calc : files;version numbers Oracle Open Office Calc : files and folders in Oracle Open Office +Oracle Open Office Calc : files, see also documents Oracle Open Office Calc : fill characters with tabulators Oracle Open Office Calc : fill colors for areas Oracle Open Office Calc : fill patterns for areas @@ -12106,8 +1403,8 @@ Oracle Open Office Calc : font sizes;relative changes Oracle Open Office Calc : font sizes;scaling on screen Oracle Open Office Calc : font sizes;text Oracle Open Office Calc : fonts -Oracle Open Office Calc : fonts;adding under UNIX Oracle Open Office Calc : fonts;changing in templates +Oracle Open Office Calc : fonts;color ignored Oracle Open Office Calc : fonts;colors Oracle Open Office Calc : fonts;default settings Oracle Open Office Calc : fonts;effects @@ -12120,7 +1417,7 @@ Oracle Open Office Calc : fonts;specifying several Oracle Open Office Calc : fonts;strikethrough Oracle Open Office Calc : fonts;styles Oracle Open Office Calc : fonts;text objects -Oracle Open Office Calc : Fontwork icons +Oracle Open Office Calc : Fontwork Oracle Open Office Calc : footers Oracle Open Office Calc : footers;backgrounds Oracle Open Office Calc : footers;defining @@ -12210,6 +1507,7 @@ Oracle Open Office Calc : forms;sorting data Oracle Open Office Calc : forms;subforms Oracle Open Office Calc : forms;wizards Oracle Open Office Calc : forms;XForms +Oracle Open Office Calc : Formula Auditing,see Detective Oracle Open Office Calc : formula bar Oracle Open Office Calc : formula bar;accepting inputs Oracle Open Office Calc : formula bar;canceling inputs @@ -12438,16 +1736,20 @@ Oracle Open Office Calc : high contrast mode Oracle Open Office Calc : highlighting Oracle Open Office Calc : highlighting;negative numbers Oracle Open Office Calc : highlighting;values in sheets +Oracle Open Office Calc : highlighting changes Oracle Open Office Calc : Hindi Oracle Open Office Calc : Hindi;entering text Oracle Open Office Calc : Hindi;language settings Oracle Open Office Calc : HLOOKUP function Oracle Open Office Calc : horizontal scrollbars (Writer) Oracle Open Office Calc : hotspots +Oracle Open Office Calc : hotspots;adding to images +Oracle Open Office Calc : hotspots;properties Oracle Open Office Calc : HOUR function Oracle Open Office Calc : HowTos for Calc Oracle Open Office Calc : HowTos for charts Oracle Open Office Calc : HTML +Oracle Open Office Calc : HTML;compatibility settings Oracle Open Office Calc : HTML;definition Oracle Open Office Calc : HTML;export character set Oracle Open Office Calc : HTML;fonts for source display @@ -12487,6 +1789,7 @@ Oracle Open Office Calc : IDE Oracle Open Office Calc : IDE;Basic IDE Oracle Open Office Calc : IF function Oracle Open Office Calc : ignore list for spellcheck +Oracle Open Office Calc : ignored font colors Oracle Open Office Calc : illumination Oracle Open Office Calc : illumination;3D charts Oracle Open Office Calc : illustrations, see pictures @@ -12496,6 +1799,7 @@ Oracle Open Office Calc : image control creation Oracle Open Office Calc : ImageMap Oracle Open Office Calc : ImageMap;definition Oracle Open Office Calc : ImageMap;editor +Oracle Open Office Calc : ImageMap;hotspot properties Oracle Open Office Calc : images Oracle Open Office Calc : images;ImageMap Oracle Open Office Calc : images;inserting and editing bitmaps @@ -12533,6 +1837,7 @@ Oracle Open Office Calc : importing;templates Oracle Open Office Calc : IMPOWER function Oracle Open Office Calc : IMPRODUCT function Oracle Open Office Calc : improvement program +Oracle Open Office Calc : improvement program - Improvement Program Oracle Open Office Calc : IMREAL function Oracle Open Office Calc : IMSIN function Oracle Open Office Calc : IMSQRT function @@ -13102,7 +2407,7 @@ Oracle Open Office Calc : opening;dialog settings Oracle Open Office Calc : opening;documents Oracle Open Office Calc : opening;documents from other formats Oracle Open Office Calc : opening;documents on WebDAV server -Oracle Open Office Calc : opening;files with links +Oracle Open Office Calc : opening;documents with links Oracle Open Office Calc : opening;files, with placeholders Oracle Open Office Calc : opening;forms Oracle Open Office Calc : opening;Microsoft Office files @@ -13115,8 +2420,8 @@ Oracle Open Office Calc : opening;sheets in HTML Oracle Open Office Calc : opening;text csv files Oracle Open Office Calc : opening;XForms Oracle Open Office Calc : operators -Oracle Open Office Calc : operators;default filters Oracle Open Office Calc : operators;formula functions +Oracle Open Office Calc : operators;standard filters Oracle Open Office Calc : optimal column widths Oracle Open Office Calc : optimal row heights Oracle Open Office Calc : optional hyphens (Writer) @@ -13181,6 +2486,7 @@ Oracle Open Office Calc : pages;selecting one to print Oracle Open Office Calc : paint box Oracle Open Office Calc : paint can for applying styles Oracle Open Office Calc : paint can symbol +Oracle Open Office Calc : Paintbrush Oracle Open Office Calc : pair kerning Oracle Open Office Calc : Palm file filters Oracle Open Office Calc : paper formats @@ -13207,6 +2513,7 @@ Oracle Open Office Calc : paragraphs;tab stops Oracle Open Office Calc : parameters Oracle Open Office Calc : parameters;command line Oracle Open Office Calc : parameters;queries (Base) +Oracle Open Office Calc : password as document property Oracle Open Office Calc : passwords for protecting contents Oracle Open Office Calc : pasting Oracle Open Office Calc : pasting;cell ranges @@ -13330,7 +2637,6 @@ Oracle Open Office Calc : presentations;saving in other formats Oracle Open Office Calc : presentations;sending as e-mail Oracle Open Office Calc : presentations;starting with wizard Oracle Open Office Calc : presentations;wizards -Oracle Open Office Calc : Presenter Console shortcuts Oracle Open Office Calc : press buttons, see push buttons Oracle Open Office Calc : previews Oracle Open Office Calc : previews;fonts lists @@ -13411,6 +2717,7 @@ Oracle Open Office Calc : properties;fields in databases Oracle Open Office Calc : properties;files Oracle Open Office Calc : properties;form controls Oracle Open Office Calc : properties;forms +Oracle Open Office Calc : properties;hotspots Oracle Open Office Calc : properties;printers Oracle Open Office Calc : properties;smooth lines in line charts/XY charts Oracle Open Office Calc : protected contents @@ -13496,6 +2803,7 @@ Oracle Open Office Calc : records;inserting comments Oracle Open Office Calc : records;protecting Oracle Open Office Calc : records;saving Oracle Open Office Calc : records;searching in databases +Oracle Open Office Calc : rectangle drawing Oracle Open Office Calc : rectangles with round corners Oracle Open Office Calc : recursions in spreadsheets Oracle Open Office Calc : redo command @@ -13589,6 +2897,7 @@ Oracle Open Office Calc : review function;accepting or rejecting changes Oracle Open Office Calc : review function;comparing documents Oracle Open Office Calc : review function;protecting records Oracle Open Office Calc : review function;recording changes example +Oracle Open Office Calc : review function;tracking changes Oracle Open Office Calc : rich text control Oracle Open Office Calc : right alignment of paragraphs Oracle Open Office Calc : RIGHT function @@ -13754,7 +3063,6 @@ Oracle Open Office Calc : settings Oracle Open Office Calc : settings;printers Oracle Open Office Calc : settings;program configuration Oracle Open Office Calc : settings;proxies -Oracle Open Office Calc : settings;tracking changes Oracle Open Office Calc : settings;views Oracle Open Office Calc : SGML Oracle Open Office Calc : SGML;definition @@ -13763,6 +3071,7 @@ Oracle Open Office Calc : shadows;areas Oracle Open Office Calc : shadows;borders Oracle Open Office Calc : shadows;characters Oracle Open Office Calc : shadows;characters, using context menu +Oracle Open Office Calc : shapes Oracle Open Office Calc : shared libraries Oracle Open Office Calc : shared libraries;programming Oracle Open Office Calc : sharing documents @@ -13830,7 +3139,7 @@ Oracle Open Office Calc : signing documents with digital signatures Oracle Open Office Calc : similarity search Oracle Open Office Calc : simple handles (Writer) Oracle Open Office Calc : simplified Chinese -Oracle Open Office Calc : simplified Chinese;translating to traditional Chinese +Oracle Open Office Calc : simplified Chinese;conversion to traditional Chinese Oracle Open Office Calc : SIN function Oracle Open Office Calc : single sign on options Oracle Open Office Calc : single-line spacing in text @@ -13949,7 +3258,9 @@ Oracle Open Office Calc : standard deviations in statistics;based on a sample Oracle Open Office Calc : standard errors Oracle Open Office Calc : standard errors;array functions Oracle Open Office Calc : standard errors;statistical functions -Oracle Open Office Calc : standard filters in databases +Oracle Open Office Calc : standard filters +Oracle Open Office Calc : standard filters;comparison operators +Oracle Open Office Calc : standard filters;databases Oracle Open Office Calc : standard printer under UNIX Oracle Open Office Calc : STANDARDIZE function Oracle Open Office Calc : start center @@ -14232,8 +3543,9 @@ Oracle Open Office Calc : traces;precedents and dependents Oracle Open Office Calc : traces;precedents for multiple cells Oracle Open Office Calc : traces;refreshing Oracle Open Office Calc : tracing errors +Oracle Open Office Calc : Track Changes, see review function Oracle Open Office Calc : traditional Chinese -Oracle Open Office Calc : traditional Chinese;translating to simplified chinese +Oracle Open Office Calc : traditional Chinese;conversion to simplified Chinese Oracle Open Office Calc : transparency Oracle Open Office Calc : transparency;areas Oracle Open Office Calc : transparency;off for faster printing @@ -14247,6 +3559,7 @@ Oracle Open Office Calc : treasury bills;rates of return Oracle Open Office Calc : tree view of Help Oracle Open Office Calc : TREND function Oracle Open Office Calc : trend lines in charts +Oracle Open Office Calc : triangle drawing Oracle Open Office Calc : trigonometric functions Oracle Open Office Calc : TRIM function Oracle Open Office Calc : TRIMMEAN function @@ -14255,7 +3568,6 @@ Oracle Open Office Calc : TRUNC function Oracle Open Office Calc : TTEST function Oracle Open Office Calc : TYPE function Oracle Open Office Calc : typefaces -Oracle Open Office Calc : typefaces;adding under UNIX Oracle Open Office Calc : typefaces;formats Oracle Open Office Calc : typography Oracle Open Office Calc : typography;Asian @@ -14477,6 +3789,5080 @@ Oracle Open Office Calc : zooming;pictures Oracle Open Office Calc : zooming;reducing page views Oracle Open Office Calc : zooming;status bar Oracle Open Office Calc : ZTEST function +Oracle Open Office Impress : 3D charts +Oracle Open Office Impress : 3D objects +Oracle Open Office Impress : 3D objects;assembling +Oracle Open Office Impress : 3D objects;generating +Oracle Open Office Impress : 3D objects;inserting +Oracle Open Office Impress : 3D rotation objects +Oracle Open Office Impress : 3D rotation objects;converting to +Oracle Open Office Impress : 3D rotation objects;generating +Oracle Open Office Impress : 3D scenes +Oracle Open Office Impress : 3D scenes;creating +Oracle Open Office Impress : 3D text creation +Oracle Open Office Impress : abbreviation replacement +Oracle Open Office Impress : absolute hyperlinks +Oracle Open Office Impress : absolute saving of URLs +Oracle Open Office Impress : accents +Oracle Open Office Impress : Access databases (base) +Oracle Open Office Impress : access rights for database tables (Base) +Oracle Open Office Impress : accessibility +Oracle Open Office Impress : accessibility;general shortcuts +Oracle Open Office Impress : accessibility;options +Oracle Open Office Impress : accessibility;Oracle Open Office assistive technology +Oracle Open Office Impress : accessibility;Oracle Open Office Draw +Oracle Open Office Impress : accessibility;Oracle Open Office features +Oracle Open Office Impress : accessibility;Oracle Open Office Impress +Oracle Open Office Impress : activating +Oracle Open Office Impress : activating;context menus +Oracle Open Office Impress : activating;Error Report Tool +Oracle Open Office Impress : activating;extended help tips +Oracle Open Office Impress : activating;plug-ins +Oracle Open Office Impress : ActiveX control +Oracle Open Office Impress : Adabas D databases (base) +Oracle Open Office Impress : add-ons, see UNO components +Oracle Open Office Impress : additional selection mode +Oracle Open Office Impress : address books +Oracle Open Office Impress : address books;LDAP server (Base) +Oracle Open Office Impress : address books;registering +Oracle Open Office Impress : address labels from databases +Oracle Open Office Impress : ADO databases (Base) +Oracle Open Office Impress : Agenda Wizard +Oracle Open Office Impress : aging filter +Oracle Open Office Impress : aligning +Oracle Open Office Impress : aligning;2D charts +Oracle Open Office Impress : aligning;cells +Oracle Open Office Impress : aligning;draw objects +Oracle Open Office Impress : aligning;objects +Oracle Open Office Impress : aligning;paragraphs +Oracle Open Office Impress : aligning;tables in text +Oracle Open Office Impress : aligning;text objects +Oracle Open Office Impress : aligning;titles in charts +Oracle Open Office Impress : allowing +Oracle Open Office Impress : allowing;effects +Oracle Open Office Impress : allowing;interaction +Oracle Open Office Impress : alternative fonts +Oracle Open Office Impress : ampersand symbol, see also operators +Oracle Open Office Impress : anchors +Oracle Open Office Impress : anchors;changing +Oracle Open Office Impress : anchors;displaying (Calc) +Oracle Open Office Impress : anchors;types/positions for draw objects +Oracle Open Office Impress : animated GIFs +Oracle Open Office Impress : animated slide transitions +Oracle Open Office Impress : animation effects +Oracle Open Office Impress : animations +Oracle Open Office Impress : animations;accessibility options +Oracle Open Office Impress : animations;editing +Oracle Open Office Impress : animations;list of +Oracle Open Office Impress : animations;saving as GIFs +Oracle Open Office Impress : appearance options +Oracle Open Office Impress : Arabic +Oracle Open Office Impress : Arabic;entering text +Oracle Open Office Impress : Arabic;language settings +Oracle Open Office Impress : area charts +Oracle Open Office Impress : areas +Oracle Open Office Impress : areas;bitmap patterns +Oracle Open Office Impress : areas;from connected lines +Oracle Open Office Impress : areas;hatched/dotted +Oracle Open Office Impress : areas;shadows +Oracle Open Office Impress : areas;slanting +Oracle Open Office Impress : areas;styles +Oracle Open Office Impress : areas;transparency +Oracle Open Office Impress : arguments in command line +Oracle Open Office Impress : arranging +Oracle Open Office Impress : arranging;objects +Oracle Open Office Impress : arranging;objects (guide) +Oracle Open Office Impress : arranging;slides +Oracle Open Office Impress : arrows +Oracle Open Office Impress : arrows;defining arrow heads +Oracle Open Office Impress : arrows;defining arrow lines +Oracle Open Office Impress : arrows;drawing in text +Oracle Open Office Impress : arrows;inserting +Oracle Open Office Impress : arrows;loading arrow styles +Oracle Open Office Impress : ASCII +Oracle Open Office Impress : ASCII;definition +Oracle Open Office Impress : Asian languages +Oracle Open Office Impress : Asian languages;enabling +Oracle Open Office Impress : Asian Phonetic Guide +Oracle Open Office Impress : Asian typography +Oracle Open Office Impress : assembled objects in 3D +Oracle Open Office Impress : assigning scripts +Oracle Open Office Impress : assistive technology in Oracle Open Office +Oracle Open Office Impress : attaching toolbars +Oracle Open Office Impress : attachments in e-mails +Oracle Open Office Impress : attributes +Oracle Open Office Impress : attributes;objects with +Oracle Open Office Impress : audio +Oracle Open Office Impress : authors +Oracle Open Office Impress : auto reloading HTML documents +Oracle Open Office Impress : AutoAbstract function for sending text to presentations +Oracle Open Office Impress : AutoCaption function in Oracle Open Office Writer +Oracle Open Office Impress : AutoComplete function in text and list boxes +Oracle Open Office Impress : AutoCorrect function +Oracle Open Office Impress : AutoCorrect function;context menu +Oracle Open Office Impress : AutoCorrect function;options +Oracle Open Office Impress : AutoCorrect function;pictures and frames +Oracle Open Office Impress : AutoCorrect function;quotes +Oracle Open Office Impress : AutoCorrect function;replacement table +Oracle Open Office Impress : AutoCorrect function;switching on and off +Oracle Open Office Impress : AutoCorrect function;URL recognition +Oracle Open Office Impress : automatic captions (Writer) +Oracle Open Office Impress : automatic control focus +Oracle Open Office Impress : automatic hyperlink formatting +Oracle Open Office Impress : automatic line breaks +Oracle Open Office Impress : automatic lines/borders in text +Oracle Open Office Impress : automatic saving +Oracle Open Office Impress : automatic slide changes +Oracle Open Office Impress : automatic slide changes;rehearse timings +Oracle Open Office Impress : automatic slide shows +Oracle Open Office Impress : automatic slide transition +Oracle Open Office Impress : AutoPilots, see wizards +Oracle Open Office Impress : AutoValue (Base) +Oracle Open Office Impress : averages in charts +Oracle Open Office Impress : axes +Oracle Open Office Impress : axes;better scaling +Oracle Open Office Impress : axes;formatting +Oracle Open Office Impress : axes;formatting grids +Oracle Open Office Impress : axes;inserting grids +Oracle Open Office Impress : axes;interval marks +Oracle Open Office Impress : axes;showing axes in charts +Oracle Open Office Impress : axes in charts +Oracle Open Office Impress : backgrounds +Oracle Open Office Impress : backgrounds;changing +Oracle Open Office Impress : backgrounds;defining colors/pictures +Oracle Open Office Impress : backgrounds;deleting unused +Oracle Open Office Impress : backgrounds;frames/sections/indexes +Oracle Open Office Impress : backgrounds;inserting from Gallery +Oracle Open Office Impress : backgrounds;normal view +Oracle Open Office Impress : backgrounds;notes +Oracle Open Office Impress : backgrounds;printing +Oracle Open Office Impress : backgrounds;slides +Oracle Open Office Impress : backing window +Oracle Open Office Impress : backups +Oracle Open Office Impress : backups;automatic +Oracle Open Office Impress : backups;documents +Oracle Open Office Impress : bar charts +Oracle Open Office Impress : Basic +Oracle Open Office Impress : Basic;fonts for source display +Oracle Open Office Impress : Basic;programming +Oracle Open Office Impress : Basic;recording macros +Oracle Open Office Impress : basic fonts +Oracle Open Office Impress : behind object command +Oracle Open Office Impress : Bézier curves +Oracle Open Office Impress : Bézier curves;control points in presentations +Oracle Open Office Impress : bi-directional writing +Oracle Open Office Impress : binding space +Oracle Open Office Impress : bitmaps +Oracle Open Office Impress : bitmaps;converting to +Oracle Open Office Impress : bitmaps;converting to vector graphics +Oracle Open Office Impress : bitmaps;inserting and editing +Oracle Open Office Impress : bitmaps;off for faster printing +Oracle Open Office Impress : bitmaps;patterns +Oracle Open Office Impress : bitmaps;replacing colors +Oracle Open Office Impress : black and white display +Oracle Open Office Impress : black and white printing +Oracle Open Office Impress : black and white view +Oracle Open Office Impress : black printing in Calc +Oracle Open Office Impress : block selection mode +Oracle Open Office Impress : bold +Oracle Open Office Impress : bold;AutoFormat function +Oracle Open Office Impress : bold;text +Oracle Open Office Impress : bookmarks +Oracle Open Office Impress : bookmarks;Help +Oracle Open Office Impress : borders +Oracle Open Office Impress : borders;arranging +Oracle Open Office Impress : borders;cells on screen (Calc) +Oracle Open Office Impress : borders;for paragraphs +Oracle Open Office Impress : borders;for tables +Oracle Open Office Impress : borders;shadows +Oracle Open Office Impress : borders;table boundaries (Writer) +Oracle Open Office Impress : borders, see also frames +Oracle Open Office Impress : bound fields +Oracle Open Office Impress : bound fields;controls +Oracle Open Office Impress : boundaries of tables (Writer) +Oracle Open Office Impress : break display (Writer) +Oracle Open Office Impress : breaking object connections +Oracle Open Office Impress : brochures +Oracle Open Office Impress : brochures;printing several +Oracle Open Office Impress : bubble charts +Oracle Open Office Impress : build numbers of Oracle Open Office +Oracle Open Office Impress : bullet lists +Oracle Open Office Impress : bullet lists;formatting options +Oracle Open Office Impress : bullets +Oracle Open Office Impress : bullets;paragraphs +Oracle Open Office Impress : bullets;replacing +Oracle Open Office Impress : bullets;turning off +Oracle Open Office Impress : business cards +Oracle Open Office Impress : business cards;creating and synchronizing +Oracle Open Office Impress : business cards;using templates +Oracle Open Office Impress : button bars, see toolbars +Oracle Open Office Impress : buttons +Oracle Open Office Impress : buttons;adding push buttons +Oracle Open Office Impress : buttons;big/small +Oracle Open Office Impress : buttons;editing hyperlink buttons +Oracle Open Office Impress : buttons;form functions +Oracle Open Office Impress : buttons;toolbars +Oracle Open Office Impress : cache for graphics +Oracle Open Office Impress : calculating +Oracle Open Office Impress : calculating;iterative references (Calc) +Oracle Open Office Impress : calculating;regression curves +Oracle Open Office Impress : callouts +Oracle Open Office Impress : callouts;drawings +Oracle Open Office Impress : callouts;inserting in presentations +Oracle Open Office Impress : capital letters +Oracle Open Office Impress : capital letters;AutoCorrect function +Oracle Open Office Impress : capital letters;font effects +Oracle Open Office Impress : captions +Oracle Open Office Impress : captions;automatic captions (Writer) +Oracle Open Office Impress : captions;tables/pictures/frames/OLE objects (Writer) +Oracle Open Office Impress : captions, see also labels/callouts +Oracle Open Office Impress : cascading update (Base) +Oracle Open Office Impress : case sensitivity +Oracle Open Office Impress : case sensitivity;comparing cell contents (Calc) +Oracle Open Office Impress : case sensitivity;searching +Oracle Open Office Impress : cells +Oracle Open Office Impress : cells;aligning +Oracle Open Office Impress : cells;coloring (Calc) +Oracle Open Office Impress : cells;cursor positions after input (Calc) +Oracle Open Office Impress : cells;formatting without effect (Calc) +Oracle Open Office Impress : cells;line breaks +Oracle Open Office Impress : cells;linked to controls +Oracle Open Office Impress : cells;number of +Oracle Open Office Impress : cells;pasting +Oracle Open Office Impress : cells;resetting formats +Oracle Open Office Impress : cells;showing grid lines (Calc) +Oracle Open Office Impress : centered text +Oracle Open Office Impress : centimeters +Oracle Open Office Impress : certificates +Oracle Open Office Impress : changes +Oracle Open Office Impress : changes;accepting or rejecting +Oracle Open Office Impress : changes;comparing to original +Oracle Open Office Impress : changes;protecting +Oracle Open Office Impress : changes;recording +Oracle Open Office Impress : changes;review function +Oracle Open Office Impress : changes;showing +Oracle Open Office Impress : changing +Oracle Open Office Impress : changing;document titles +Oracle Open Office Impress : changing;file associations in Setup program +Oracle Open Office Impress : changing;icon sizes +Oracle Open Office Impress : changing;layer properties +Oracle Open Office Impress : changing;layout for handouts +Oracle Open Office Impress : changing;links +Oracle Open Office Impress : changing;order of slides +Oracle Open Office Impress : changing;slide layouts +Oracle Open Office Impress : changing;work directory +Oracle Open Office Impress : changing, see also editing and replacing +Oracle Open Office Impress : character styles +Oracle Open Office Impress : character styles;language selection +Oracle Open Office Impress : characters +Oracle Open Office Impress : characters;alternative fonts +Oracle Open Office Impress : characters;Asian layout +Oracle Open Office Impress : characters;bold +Oracle Open Office Impress : characters;coloring +Oracle Open Office Impress : characters;converting to curves +Oracle Open Office Impress : characters;displaying only on screen (Writer) +Oracle Open Office Impress : characters;enabling CTL and Asian characters +Oracle Open Office Impress : characters;font effects +Oracle Open Office Impress : characters;fonts and formats +Oracle Open Office Impress : characters;hyperlinks +Oracle Open Office Impress : characters;italics +Oracle Open Office Impress : characters;language selection +Oracle Open Office Impress : characters;shadowed +Oracle Open Office Impress : characters;spacing +Oracle Open Office Impress : characters;special +Oracle Open Office Impress : characters;underlining +Oracle Open Office Impress : charcoal sketches filter +Oracle Open Office Impress : chart legends +Oracle Open Office Impress : chart legends;hiding +Oracle Open Office Impress : chart legends;showing icons with labels +Oracle Open Office Impress : chart types +Oracle Open Office Impress : chart types;area +Oracle Open Office Impress : chart types;bubble +Oracle Open Office Impress : chart types;column and bar +Oracle Open Office Impress : chart types;column and line +Oracle Open Office Impress : chart types;line +Oracle Open Office Impress : chart types;net +Oracle Open Office Impress : chart types;pie/donut +Oracle Open Office Impress : chart types;stock +Oracle Open Office Impress : chart types;XY (scatter) +Oracle Open Office Impress : charts +Oracle Open Office Impress : charts;3D views +Oracle Open Office Impress : charts;aligning +Oracle Open Office Impress : charts;arranging within stacks +Oracle Open Office Impress : charts;bars with textures +Oracle Open Office Impress : charts;choosing chart types +Oracle Open Office Impress : charts;colors +Oracle Open Office Impress : charts;copying with link to source cell range +Oracle Open Office Impress : charts;data labels +Oracle Open Office Impress : charts;displaying (Calc) +Oracle Open Office Impress : charts;editing axes +Oracle Open Office Impress : charts;editing data +Oracle Open Office Impress : charts;editing legends +Oracle Open Office Impress : charts;editing titles +Oracle Open Office Impress : charts;formatting areas +Oracle Open Office Impress : charts;formatting floors +Oracle Open Office Impress : charts;formatting walls +Oracle Open Office Impress : charts;inserting +Oracle Open Office Impress : charts;overview +Oracle Open Office Impress : charts;positioning axes +Oracle Open Office Impress : charts;properties +Oracle Open Office Impress : charts;reorganizing +Oracle Open Office Impress : charts;scaling axes +Oracle Open Office Impress : charts;scaling text +Oracle Open Office Impress : charts;shortcuts +Oracle Open Office Impress : charts;showing axes +Oracle Open Office Impress : charts;updating automatically (Writer) +Oracle Open Office Impress : check box creation +Oracle Open Office Impress : Chinese writing systems +Oracle Open Office Impress : choosing printers +Oracle Open Office Impress : circle drawings +Oracle Open Office Impress : circle segments +Oracle Open Office Impress : circles +Oracle Open Office Impress : circles;of objects +Oracle Open Office Impress : Client Side ImageMap +Oracle Open Office Impress : clipboard +Oracle Open Office Impress : clipboard;cutting +Oracle Open Office Impress : clipboard;pasting +Oracle Open Office Impress : clipboard;pasting formatted/unformatted text +Oracle Open Office Impress : clipboard;selection clipboard +Oracle Open Office Impress : clipboard;Unix +Oracle Open Office Impress : Clippy, see Help Agent +Oracle Open Office Impress : closing +Oracle Open Office Impress : closing;documents +Oracle Open Office Impress : closing;shapes +Oracle Open Office Impress : closing;toolbars +Oracle Open Office Impress : collaboration +Oracle Open Office Impress : color bar +Oracle Open Office Impress : colors +Oracle Open Office Impress : colors;adding +Oracle Open Office Impress : colors;appearance +Oracle Open Office Impress : colors;backgrounds +Oracle Open Office Impress : colors;charts +Oracle Open Office Impress : colors;default colors +Oracle Open Office Impress : colors;defining and saving +Oracle Open Office Impress : colors;defining gradients interactively +Oracle Open Office Impress : colors;displaying presentations +Oracle Open Office Impress : colors;fonts +Oracle Open Office Impress : colors;grid lines and cells (Calc) +Oracle Open Office Impress : colors;ignored text color +Oracle Open Office Impress : colors;loading lists +Oracle Open Office Impress : colors;models +Oracle Open Office Impress : colors;not printing +Oracle Open Office Impress : colors;printing in grayscale +Oracle Open Office Impress : colors;replacing +Oracle Open Office Impress : colors;restriction (Calc) +Oracle Open Office Impress : colors;selection +Oracle Open Office Impress : column and line charts +Oracle Open Office Impress : column charts +Oracle Open Office Impress : column headers +Oracle Open Office Impress : column headers;displaying (Calc) +Oracle Open Office Impress : column headers;highlighting (Calc) +Oracle Open Office Impress : columns +Oracle Open Office Impress : columns;inserting +Oracle Open Office Impress : columns;setting with the mouse +Oracle Open Office Impress : combination charts +Oracle Open Office Impress : combining +Oracle Open Office Impress : combining;3D objects +Oracle Open Office Impress : combining;draw objects +Oracle Open Office Impress : combining;undoing +Oracle Open Office Impress : combo box creation +Oracle Open Office Impress : command button creation +Oracle Open Office Impress : command buttons, see push buttons +Oracle Open Office Impress : command line parameters +Oracle Open Office Impress : commands +Oracle Open Office Impress : commands;repeating +Oracle Open Office Impress : commands;SQL +Oracle Open Office Impress : comments +Oracle Open Office Impress : comments;inserting/editing/deleting/printing +Oracle Open Office Impress : comments;on changes +Oracle Open Office Impress : comments;printing in text +Oracle Open Office Impress : common terms +Oracle Open Office Impress : common terms;Chinese dictionary +Oracle Open Office Impress : common terms;glossaries +Oracle Open Office Impress : common terms;Internet glossary +Oracle Open Office Impress : comparisons +Oracle Open Office Impress : comparisons;document versions +Oracle Open Office Impress : comparisons;operators in standard filter dialog +Oracle Open Office Impress : compatibility settings for MS Word import +Oracle Open Office Impress : complete screen view +Oracle Open Office Impress : complex text layout +Oracle Open Office Impress : complex text layout;definition +Oracle Open Office Impress : complex text layout;enabling +Oracle Open Office Impress : complex text layout, see CTL +Oracle Open Office Impress : compose key to insert special characters +Oracle Open Office Impress : concatenation, see ampersand symbol +Oracle Open Office Impress : conditional separators +Oracle Open Office Impress : conditions +Oracle Open Office Impress : conditions;in number formats +Oracle Open Office Impress : conditions;items in Data Navigator +Oracle Open Office Impress : cones +Oracle Open Office Impress : Configuration Manager +Oracle Open Office Impress : configuring +Oracle Open Office Impress : configuring;fax icon +Oracle Open Office Impress : configuring;Oracle Open Office +Oracle Open Office Impress : configuring;toolbars +Oracle Open Office Impress : connecting +Oracle Open Office Impress : connecting;draw objects +Oracle Open Office Impress : connecting;lines +Oracle Open Office Impress : connecting;paths and objects +Oracle Open Office Impress : connections to data sources (Base) +Oracle Open Office Impress : connectors +Oracle Open Office Impress : connectors;properties of +Oracle Open Office Impress : connectors;using +Oracle Open Office Impress : constructing shapes +Oracle Open Office Impress : contents protection +Oracle Open Office Impress : context menus +Oracle Open Office Impress : contours +Oracle Open Office Impress : contours;converting to +Oracle Open Office Impress : control point display in presentations +Oracle Open Office Impress : control points definition +Oracle Open Office Impress : controls +Oracle Open Office Impress : controls;activating in forms +Oracle Open Office Impress : controls;adding to documents +Oracle Open Office Impress : controls;arranging in forms +Oracle Open Office Impress : controls;arranging within stacks +Oracle Open Office Impress : controls;assigning data sources +Oracle Open Office Impress : controls;assigning macros (Basic) +Oracle Open Office Impress : controls;bound fields/list contents/linked cells +Oracle Open Office Impress : controls;events +Oracle Open Office Impress : controls;focus +Oracle Open Office Impress : controls;formatted fields +Oracle Open Office Impress : controls;grouping +Oracle Open Office Impress : controls;hidden +Oracle Open Office Impress : controls;inserting +Oracle Open Office Impress : controls;multi-line titles +Oracle Open Office Impress : controls;positions and sizes +Oracle Open Office Impress : controls;printing +Oracle Open Office Impress : controls;properties of form controls +Oracle Open Office Impress : controls;properties of table controls +Oracle Open Office Impress : controls;reference by SQL +Oracle Open Office Impress : controls;rich text control +Oracle Open Office Impress : controls;select mode +Oracle Open Office Impress : controls;showing (Writer) +Oracle Open Office Impress : converters +Oracle Open Office Impress : converters;document converter +Oracle Open Office Impress : converters;Euro converter +Oracle Open Office Impress : converters;PostScript, UNIX +Oracle Open Office Impress : converters;XML +Oracle Open Office Impress : converting +Oracle Open Office Impress : converting;bitmaps to polygons +Oracle Open Office Impress : converting;Hangul/Hanja +Oracle Open Office Impress : converting;metrics +Oracle Open Office Impress : converting;Microsoft documents +Oracle Open Office Impress : converting;Oracle Open Office documents +Oracle Open Office Impress : converting;Pocket PC formats +Oracle Open Office Impress : converting;points +Oracle Open Office Impress : converting;text to curves +Oracle Open Office Impress : converting;to bitmaps +Oracle Open Office Impress : converting;to contours +Oracle Open Office Impress : converting;to curves, polygons, 3D +Oracle Open Office Impress : converting;to metafile format (WMF) +Oracle Open Office Impress : copies +Oracle Open Office Impress : copies;printing +Oracle Open Office Impress : copying +Oracle Open Office Impress : copying;by drag and drop +Oracle Open Office Impress : copying;data from text documents +Oracle Open Office Impress : copying;datasource records in spreadsheets +Oracle Open Office Impress : copying;draw objects +Oracle Open Office Impress : copying;draw objects between documents +Oracle Open Office Impress : copying;formatting +Oracle Open Office Impress : copying;from data source view +Oracle Open Office Impress : copying;from Gallery +Oracle Open Office Impress : copying;in Unix +Oracle Open Office Impress : copying;pictures, between documents +Oracle Open Office Impress : copying;sheet areas, to text documents +Oracle Open Office Impress : copying;slides +Oracle Open Office Impress : copying;text from other documents +Oracle Open Office Impress : copying;to Gallery +Oracle Open Office Impress : copyright for Oracle Open Office +Oracle Open Office Impress : corner points +Oracle Open Office Impress : corner roundings +Oracle Open Office Impress : covered objects +Oracle Open Office Impress : crash reports +Oracle Open Office Impress : criteria of query design (Base) +Oracle Open Office Impress : cropping pictures +Oracle Open Office Impress : cross-fading +Oracle Open Office Impress : cross-fading;creating cross-fades +Oracle Open Office Impress : cross-fading;slides +Oracle Open Office Impress : cross-fading;two draw objects +Oracle Open Office Impress : CTL +Oracle Open Office Impress : CTL;(not) wrapping words +Oracle Open Office Impress : CTL;complex text layout languages +Oracle Open Office Impress : CTL;definition +Oracle Open Office Impress : CTL;options +Oracle Open Office Impress : cube drawing +Oracle Open Office Impress : cubes +Oracle Open Office Impress : currencies +Oracle Open Office Impress : currencies;converters +Oracle Open Office Impress : currencies;format codes +Oracle Open Office Impress : currency field creation +Oracle Open Office Impress : currency formats +Oracle Open Office Impress : cursor +Oracle Open Office Impress : cursor;allowing in protected areas (Writer) +Oracle Open Office Impress : cursor;in read-only text +Oracle Open Office Impress : cursor;quickly moving to an object +Oracle Open Office Impress : curves +Oracle Open Office Impress : curves;converting text to +Oracle Open Office Impress : curves;drawing +Oracle Open Office Impress : curves;editing +Oracle Open Office Impress : curves;editing points +Oracle Open Office Impress : curves;properties in line charts/XY charts +Oracle Open Office Impress : curves;toolbar +Oracle Open Office Impress : custom animation +Oracle Open Office Impress : custom colors +Oracle Open Office Impress : custom dictionaries +Oracle Open Office Impress : custom dictionaries;editing +Oracle Open Office Impress : custom gradients +Oracle Open Office Impress : custom hyphens (Writer) +Oracle Open Office Impress : custom quotes +Oracle Open Office Impress : custom slide shows +Oracle Open Office Impress : custom templates +Oracle Open Office Impress : customizing +Oracle Open Office Impress : customizing;events +Oracle Open Office Impress : customizing;keyboard +Oracle Open Office Impress : customizing;menus +Oracle Open Office Impress : customizing;Oracle Open Office +Oracle Open Office Impress : customizing;round corners +Oracle Open Office Impress : customizing;toolbars +Oracle Open Office Impress : cutting +Oracle Open Office Impress : cylinders +Oracle Open Office Impress : dashes +Oracle Open Office Impress : data +Oracle Open Office Impress : data;filtering in forms +Oracle Open Office Impress : data;forms and subforms +Oracle Open Office Impress : data;read-only +Oracle Open Office Impress : data;sorting in forms +Oracle Open Office Impress : data;user data +Oracle Open Office Impress : data binding change in XForms +Oracle Open Office Impress : data labels in charts +Oracle Open Office Impress : Data Navigator +Oracle Open Office Impress : Data Navigator;adding/editing items +Oracle Open Office Impress : Data Navigator;display options +Oracle Open Office Impress : data ranges in charts +Oracle Open Office Impress : data series +Oracle Open Office Impress : data source browser +Oracle Open Office Impress : data source explorer +Oracle Open Office Impress : data source view +Oracle Open Office Impress : data source view;drag and drop +Oracle Open Office Impress : data source view;overview +Oracle Open Office Impress : data source view;showing +Oracle Open Office Impress : data sources +Oracle Open Office Impress : data sources;as tables +Oracle Open Office Impress : data sources;connection settings (Base) +Oracle Open Office Impress : data sources;copying records to spreadsheets +Oracle Open Office Impress : data sources;displaying current +Oracle Open Office Impress : data sources;LDAP server (Base) +Oracle Open Office Impress : data sources;Oracle Open Office Base +Oracle Open Office Impress : data sources;registering address books +Oracle Open Office Impress : data sources;reports +Oracle Open Office Impress : data sources;setting for stock charts +Oracle Open Office Impress : data sources;viewing +Oracle Open Office Impress : data structure of XForms +Oracle Open Office Impress : data values in charts +Oracle Open Office Impress : data, see also values +Oracle Open Office Impress : database contents +Oracle Open Office Impress : database contents;inserting as tables +Oracle Open Office Impress : database contents;inserting as text +Oracle Open Office Impress : database reports +Oracle Open Office Impress : Database Wizard (Base) +Oracle Open Office Impress : databases +Oracle Open Office Impress : databases;administration through SQL (Base) +Oracle Open Office Impress : databases;ADO (Base) +Oracle Open Office Impress : databases;connecting (Base) +Oracle Open Office Impress : databases;creating +Oracle Open Office Impress : databases;creating labels +Oracle Open Office Impress : databases;creating queries +Oracle Open Office Impress : databases;creating reports +Oracle Open Office Impress : databases;creating tables +Oracle Open Office Impress : databases;deleting (Base) +Oracle Open Office Impress : databases;drag and drop (Base) +Oracle Open Office Impress : databases;editing tables +Oracle Open Office Impress : databases;form filters +Oracle Open Office Impress : databases;formats (Base) +Oracle Open Office Impress : databases;importing/exporting +Oracle Open Office Impress : databases;JDBC (Base) +Oracle Open Office Impress : databases;main page (Base) +Oracle Open Office Impress : databases;ODBC (Base) +Oracle Open Office Impress : databases;overview +Oracle Open Office Impress : databases;registering (Base) +Oracle Open Office Impress : databases;searching records +Oracle Open Office Impress : databases;shortcut keys +Oracle Open Office Impress : databases;sorting +Oracle Open Office Impress : databases;standard filters +Oracle Open Office Impress : databases;text formats +Oracle Open Office Impress : databases;viewing +Oracle Open Office Impress : date fields +Oracle Open Office Impress : date fields;creating +Oracle Open Office Impress : date fields;properties +Oracle Open Office Impress : date formats +Oracle Open Office Impress : date on all slides +Oracle Open Office Impress : dates +Oracle Open Office Impress : dates;default (Calc) +Oracle Open Office Impress : dates;fixed +Oracle Open Office Impress : dates;printing in presentations +Oracle Open Office Impress : dates;start 1900/01/01 (Calc) +Oracle Open Office Impress : dates;start 1904/01/01 (Calc) +Oracle Open Office Impress : dates;variable +Oracle Open Office Impress : dBASE +Oracle Open Office Impress : dBASE;database settings (Base) +Oracle Open Office Impress : DDE +Oracle Open Office Impress : DDE;definition +Oracle Open Office Impress : deactivating +Oracle Open Office Impress : deactivating;plug-ins +Oracle Open Office Impress : decimal places displayed (Calc) +Oracle Open Office Impress : decimal separator key +Oracle Open Office Impress : decimal tab stops +Oracle Open Office Impress : decreasing sizes of views +Oracle Open Office Impress : default directories +Oracle Open Office Impress : default filters, see standard filters +Oracle Open Office Impress : default printer +Oracle Open Office Impress : default printer;setting up +Oracle Open Office Impress : default printer;UNIX +Oracle Open Office Impress : default templates +Oracle Open Office Impress : default templates;changing +Oracle Open Office Impress : default templates;organizing +Oracle Open Office Impress : defaults +Oracle Open Office Impress : defaults;document formats in file dialogs +Oracle Open Office Impress : defaults;documents +Oracle Open Office Impress : defaults;file formats in Oracle Open Office +Oracle Open Office Impress : defaults;fonts +Oracle Open Office Impress : defaults;grids (Writer/Calc) +Oracle Open Office Impress : defaults;languages +Oracle Open Office Impress : defaults;number formats +Oracle Open Office Impress : defaults;of saving +Oracle Open Office Impress : defaults;program configuration +Oracle Open Office Impress : defaults;tab stops in text +Oracle Open Office Impress : defaults;views +Oracle Open Office Impress : defining +Oracle Open Office Impress : defining;arrowheads and other line ends +Oracle Open Office Impress : defining;colors +Oracle Open Office Impress : defining;gradients +Oracle Open Office Impress : defining;line styles +Oracle Open Office Impress : defining;paragraph borders +Oracle Open Office Impress : defining;queries (Base) +Oracle Open Office Impress : defining;table borders +Oracle Open Office Impress : deleting +Oracle Open Office Impress : deleting;all direct formatting +Oracle Open Office Impress : deleting;animation effects +Oracle Open Office Impress : deleting;comments +Oracle Open Office Impress : deleting;databases (Base) +Oracle Open Office Impress : deleting;hyperlinks +Oracle Open Office Impress : deleting;layers +Oracle Open Office Impress : deleting;lines in text +Oracle Open Office Impress : deleting;models/instances +Oracle Open Office Impress : deleting;namespaces in XForms +Oracle Open Office Impress : deleting;points +Oracle Open Office Impress : deleting;slide transition effects +Oracle Open Office Impress : deleting;slides +Oracle Open Office Impress : deleting;tab stops +Oracle Open Office Impress : deleting;templates +Oracle Open Office Impress : deleting;XML filters +Oracle Open Office Impress : depth stagger +Oracle Open Office Impress : descriptions for objects +Oracle Open Office Impress : design mode after saving +Oracle Open Office Impress : design view +Oracle Open Office Impress : design view;creating forms +Oracle Open Office Impress : design view;queries/views (Base) +Oracle Open Office Impress : designing +Oracle Open Office Impress : designing;database tables +Oracle Open Office Impress : designing;fonts +Oracle Open Office Impress : designing;queries (Base) +Oracle Open Office Impress : detaching toolbars +Oracle Open Office Impress : dictionaries +Oracle Open Office Impress : dictionaries;common terms in simplified and traditional chinese +Oracle Open Office Impress : dictionaries;creating +Oracle Open Office Impress : dictionaries;editing user-defined +Oracle Open Office Impress : dictionaries;spellcheck +Oracle Open Office Impress : dictionaries, see also languages +Oracle Open Office Impress : digital signatures +Oracle Open Office Impress : digital signatures;getting/managing/applying +Oracle Open Office Impress : digital signatures;overview +Oracle Open Office Impress : digital signatures;WebDAV over HTTPS +Oracle Open Office Impress : dimension lines +Oracle Open Office Impress : dimension lines;drawing +Oracle Open Office Impress : dimension lines;properties of +Oracle Open Office Impress : direct formatting +Oracle Open Office Impress : direct formatting;undoing all +Oracle Open Office Impress : directories +Oracle Open Office Impress : directories;creating new +Oracle Open Office Impress : directories;directory structure +Oracle Open Office Impress : disabled persons +Oracle Open Office Impress : display qualities of presentations +Oracle Open Office Impress : displaying +Oracle Open Office Impress : displaying;comments in text documents +Oracle Open Office Impress : displaying;non-printing characters (Writer) +Oracle Open Office Impress : displaying;pictures and objects (Writer) +Oracle Open Office Impress : displaying;tables (Writer) +Oracle Open Office Impress : displaying;zero values (Calc) +Oracle Open Office Impress : distances +Oracle Open Office Impress : distinct values in SQL queries +Oracle Open Office Impress : distorting in drawings +Oracle Open Office Impress : distorting objects +Oracle Open Office Impress : distributing draw objects +Oracle Open Office Impress : distributing XML filters +Oracle Open Office Impress : docking +Oracle Open Office Impress : docking;definition +Oracle Open Office Impress : docking;toolbars +Oracle Open Office Impress : docking;windows +Oracle Open Office Impress : Document Converter Wizard +Oracle Open Office Impress : Document Map, see Navigator +Oracle Open Office Impress : document types in Oracle Open Office +Oracle Open Office Impress : documents +Oracle Open Office Impress : documents;changing titles +Oracle Open Office Impress : documents;closing +Oracle Open Office Impress : documents;comparing +Oracle Open Office Impress : documents;contents as lists +Oracle Open Office Impress : documents;editing time +Oracle Open Office Impress : documents;exporting +Oracle Open Office Impress : documents;importing +Oracle Open Office Impress : documents;languages +Oracle Open Office Impress : documents;measurement units in +Oracle Open Office Impress : documents;merging +Oracle Open Office Impress : documents;number of pages/tables/sheets +Oracle Open Office Impress : documents;opening +Oracle Open Office Impress : documents;opening in design mode +Oracle Open Office Impress : documents;opening with templates +Oracle Open Office Impress : documents;organizing +Oracle Open Office Impress : documents;printing +Oracle Open Office Impress : documents;read-only +Oracle Open Office Impress : documents;reloading +Oracle Open Office Impress : documents;saving +Oracle Open Office Impress : documents;saving automatically +Oracle Open Office Impress : documents;saving in other formats +Oracle Open Office Impress : documents;sending as e-mail +Oracle Open Office Impress : documents;styles changed +Oracle Open Office Impress : documents;version management +Oracle Open Office Impress : documents;version numbers +Oracle Open Office Impress : donut charts +Oracle Open Office Impress : dotted areas +Oracle Open Office Impress : double-line spacing in paragraphs +Oracle Open Office Impress : double-line writing in Asian layout +Oracle Open Office Impress : doubling draw objects +Oracle Open Office Impress : drag and drop +Oracle Open Office Impress : drag and drop;copying and pasting text +Oracle Open Office Impress : drag and drop;data source view +Oracle Open Office Impress : drag and drop;from Gallery to draw objects +Oracle Open Office Impress : drag and drop;overview +Oracle Open Office Impress : drag and drop;pictures +Oracle Open Office Impress : drag and drop;to Gallery +Oracle Open Office Impress : Draw instructions +Oracle Open Office Impress : draw objects +Oracle Open Office Impress : draw objects;adding/editing/copying +Oracle Open Office Impress : draw objects;anchoring +Oracle Open Office Impress : draw objects;arranging within stacks +Oracle Open Office Impress : draw objects;combining +Oracle Open Office Impress : draw objects;connecting lines to +Oracle Open Office Impress : draw objects;converting text to +Oracle Open Office Impress : draw objects;copying between documents +Oracle Open Office Impress : draw objects;cross-fading two objects +Oracle Open Office Impress : draw objects;displaying (Calc) +Oracle Open Office Impress : draw objects;dropping Gallery pictures +Oracle Open Office Impress : draw objects;duplicating +Oracle Open Office Impress : draw objects;flipping +Oracle Open Office Impress : draw objects;grouping +Oracle Open Office Impress : draw objects;legends +Oracle Open Office Impress : draw objects;positioning and resizing +Oracle Open Office Impress : draw objects;protecting +Oracle Open Office Impress : draw objects;rotating +Oracle Open Office Impress : draw objects;slanting +Oracle Open Office Impress : draw objects;text entry mode +Oracle Open Office Impress : draw objects;text in +Oracle Open Office Impress : drawing +Oracle Open Office Impress : drawing;3D objects +Oracle Open Office Impress : drawing;freeform lines +Oracle Open Office Impress : drawing;lines +Oracle Open Office Impress : drawing;sectors and segments +Oracle Open Office Impress : Drawing bar +Oracle Open Office Impress : drawing lines in text +Oracle Open Office Impress : drawings +Oracle Open Office Impress : drawings;creating/opening +Oracle Open Office Impress : drawings;languages +Oracle Open Office Impress : drawings;printing +Oracle Open Office Impress : drawings;printing defaults +Oracle Open Office Impress : drawings;printing in text documents +Oracle Open Office Impress : drawings;saving +Oracle Open Office Impress : drawings;saving automatically +Oracle Open Office Impress : drawings;saving in other formats +Oracle Open Office Impress : drawings;sending as e-mail +Oracle Open Office Impress : drawings;shortcut keys +Oracle Open Office Impress : drawings;showing (Writer) +Oracle Open Office Impress : drawings;zoom function in +Oracle Open Office Impress : drawings, see also draw objects +Oracle Open Office Impress : drop-down lists in form functions +Oracle Open Office Impress : duplicating draw objects +Oracle Open Office Impress : e-mail attachments +Oracle Open Office Impress : Edit File icon +Oracle Open Office Impress : edit mode +Oracle Open Office Impress : edit mode;after opening +Oracle Open Office Impress : edit mode;through Enter key (Calc) +Oracle Open Office Impress : Edit Points bar +Oracle Open Office Impress : editing +Oracle Open Office Impress : editing;chart axes +Oracle Open Office Impress : editing;chart data +Oracle Open Office Impress : editing;chart legends +Oracle Open Office Impress : editing;chart titles +Oracle Open Office Impress : editing;comments +Oracle Open Office Impress : editing;curves +Oracle Open Office Impress : editing;data binding of XForms +Oracle Open Office Impress : editing;database tables and queries +Oracle Open Office Impress : editing;draw objects +Oracle Open Office Impress : editing;fields +Oracle Open Office Impress : editing;Fontwork objects +Oracle Open Office Impress : editing;gradients +Oracle Open Office Impress : editing;guides and snap points +Oracle Open Office Impress : editing;hyperlinks +Oracle Open Office Impress : editing;menus +Oracle Open Office Impress : editing;objects +Oracle Open Office Impress : editing;Oracle Open Office documents in Internet Explorer +Oracle Open Office Impress : editing;pictures +Oracle Open Office Impress : editing;reports +Oracle Open Office Impress : editing;shortcut keys +Oracle Open Office Impress : editing;slide titles +Oracle Open Office Impress : editing;tab stops +Oracle Open Office Impress : editing;templates +Oracle Open Office Impress : editing;titles +Oracle Open Office Impress : editing;toolbars +Oracle Open Office Impress : editing;undoing +Oracle Open Office Impress : editing;XForms +Oracle Open Office Impress : editing time of documents +Oracle Open Office Impress : editors +Oracle Open Office Impress : editors;formula editor +Oracle Open Office Impress : editors;ImageMap editor +Oracle Open Office Impress : effects +Oracle Open Office Impress : effects;animated slide transitions +Oracle Open Office Impress : effects;applying to/removing from objects +Oracle Open Office Impress : effects;font positions +Oracle Open Office Impress : effects;fonts +Oracle Open Office Impress : effects;Fontwork icons +Oracle Open Office Impress : effects;preview +Oracle Open Office Impress : effects;sounds +Oracle Open Office Impress : ellipse drawing +Oracle Open Office Impress : ellipses +Oracle Open Office Impress : ellipses;segments +Oracle Open Office Impress : ellipses;toolbars +Oracle Open Office Impress : empty documents +Oracle Open Office Impress : empty paragraph removal +Oracle Open Office Impress : encryption of contents +Oracle Open Office Impress : entering groups +Oracle Open Office Impress : entering text from right to left +Oracle Open Office Impress : equal sign, see also operators +Oracle Open Office Impress : equations in formula editor +Oracle Open Office Impress : error bars in charts +Oracle Open Office Impress : error indicators in charts +Oracle Open Office Impress : Error Report Tool +Oracle Open Office Impress : Euro +Oracle Open Office Impress : Euro;currency formats +Oracle Open Office Impress : Euro;Euro Converter Wizard +Oracle Open Office Impress : even/odd pages +Oracle Open Office Impress : even/odd pages;printing +Oracle Open Office Impress : events +Oracle Open Office Impress : events;assigning scripts +Oracle Open Office Impress : events;controls +Oracle Open Office Impress : events;customizing +Oracle Open Office Impress : events;in forms +Oracle Open Office Impress : Excel +Oracle Open Office Impress : Excel;saving as +Oracle Open Office Impress : Excel;search criteria +Oracle Open Office Impress : exceptions +Oracle Open Office Impress : exceptions;user-defined dictionaries +Oracle Open Office Impress : exchanging, see also replacing +Oracle Open Office Impress : executing SQL commands +Oracle Open Office Impress : exiting +Oracle Open Office Impress : exiting;by clicking objects +Oracle Open Office Impress : exiting;groups +Oracle Open Office Impress : exiting;Oracle Open Office +Oracle Open Office Impress : expanding +Oracle Open Office Impress : expanding;slides +Oracle Open Office Impress : expanding formatting (Calc) +Oracle Open Office Impress : explorer of data sources +Oracle Open Office Impress : export filters +Oracle Open Office Impress : exporting +Oracle Open Office Impress : exporting;animations to GIF format +Oracle Open Office Impress : exporting;bitmaps +Oracle Open Office Impress : exporting;HTML and text documents +Oracle Open Office Impress : exporting;Microsoft Office documents with VBA code +Oracle Open Office Impress : exporting;presentations to HTML +Oracle Open Office Impress : exporting;spreadsheets to text format +Oracle Open Office Impress : exporting;templates +Oracle Open Office Impress : exporting;to foreign formats +Oracle Open Office Impress : exporting;to HTML +Oracle Open Office Impress : exporting;to Macromedia Flash format +Oracle Open Office Impress : exporting;to Microsoft Office formats +Oracle Open Office Impress : exporting;to PDF +Oracle Open Office Impress : exporting;to PostScript format +Oracle Open Office Impress : exporting;to XML +Oracle Open Office Impress : exporting;XML files +Oracle Open Office Impress : extended tips in Help +Oracle Open Office Impress : extension mode in text +Oracle Open Office Impress : extensions +Oracle Open Office Impress : extensions;Extension Manager +Oracle Open Office Impress : extensions;file formats +Oracle Open Office Impress : external keys (Base) +Oracle Open Office Impress : extrusion objects +Oracle Open Office Impress : eyedropper tool +Oracle Open Office Impress : faster printing +Oracle Open Office Impress : faxes +Oracle Open Office Impress : faxes;configuring Oracle Open Office +Oracle Open Office Impress : faxes;fax programs/fax printers under UNIX +Oracle Open Office Impress : faxes;selecting a fax machine +Oracle Open Office Impress : faxes;sending +Oracle Open Office Impress : faxes;wizards +Oracle Open Office Impress : feedback +Oracle Open Office Impress : feedback;automatically +Oracle Open Office Impress : fields +Oracle Open Office Impress : fields;authors +Oracle Open Office Impress : fields;database tables +Oracle Open Office Impress : fields;dates (fixed) +Oracle Open Office Impress : fields;dates (variable) +Oracle Open Office Impress : fields;displaying field codes (Writer) +Oracle Open Office Impress : fields;editing +Oracle Open Office Impress : fields;file names +Oracle Open Office Impress : fields;formatted fields +Oracle Open Office Impress : fields;formatting +Oracle Open Office Impress : fields;in slides +Oracle Open Office Impress : fields;page numbers +Oracle Open Office Impress : fields;times (fixed) +Oracle Open Office Impress : fields;times (variable) +Oracle Open Office Impress : fields;updating automatically (Writer) +Oracle Open Office Impress : file associations for Microsoft Office +Oracle Open Office Impress : file filters +Oracle Open Office Impress : file filters;mobile devices +Oracle Open Office Impress : file filters;XML +Oracle Open Office Impress : file formats +Oracle Open Office Impress : file formats;changing Oracle Open Office defaults +Oracle Open Office Impress : file formats;OpenDocument/XML +Oracle Open Office Impress : file formats;saving always in other formats +Oracle Open Office Impress : file selection button +Oracle Open Office Impress : file sharing options for current document +Oracle Open Office Impress : files +Oracle Open Office Impress : files;filters and formats +Oracle Open Office Impress : files;importing +Oracle Open Office Impress : files;inserting +Oracle Open Office Impress : files;inserting pictures +Oracle Open Office Impress : files;opening +Oracle Open Office Impress : files;properties +Oracle Open Office Impress : files;saving +Oracle Open Office Impress : files;saving automatically +Oracle Open Office Impress : files;saving in other formats +Oracle Open Office Impress : files;sending as e-mail +Oracle Open Office Impress : files;version numbers +Oracle Open Office Impress : files and folders in Oracle Open Office +Oracle Open Office Impress : files, see also documents +Oracle Open Office Impress : fill characters with tabulators +Oracle Open Office Impress : fill colors for areas +Oracle Open Office Impress : fill format mode +Oracle Open Office Impress : fill format mode;styles +Oracle Open Office Impress : fill patterns for areas +Oracle Open Office Impress : filter conditions +Oracle Open Office Impress : filter conditions;connecting +Oracle Open Office Impress : filter conditions;in queries (Base) +Oracle Open Office Impress : filtering +Oracle Open Office Impress : filtering;data in databases +Oracle Open Office Impress : filtering;data in forms +Oracle Open Office Impress : filters +Oracle Open Office Impress : filters;comparison operators +Oracle Open Office Impress : filters;for import and export +Oracle Open Office Impress : filters;Navigator +Oracle Open Office Impress : filters;pictures +Oracle Open Office Impress : filters;XML filter settings +Oracle Open Office Impress : Find tab in Help +Oracle Open Office Impress : finding +Oracle Open Office Impress : finding;in all sheets +Oracle Open Office Impress : finding;records in form documents +Oracle Open Office Impress : finding;selections +Oracle Open Office Impress : finding;similarity search +Oracle Open Office Impress : fitting to pages +Oracle Open Office Impress : fitting to pages;individual slides +Oracle Open Office Impress : fitting to pages;print settings in Math +Oracle Open Office Impress : fitting to pages;print settings in presentations +Oracle Open Office Impress : fixed text +Oracle Open Office Impress : fixed text;form functions +Oracle Open Office Impress : fixing toolbars +Oracle Open Office Impress : flipping around a flip line +Oracle Open Office Impress : flipping draw objects +Oracle Open Office Impress : floating frames in HTML documents +Oracle Open Office Impress : floating text +Oracle Open Office Impress : floating toolbars +Oracle Open Office Impress : flowcharts +Oracle Open Office Impress : focus of controls +Oracle Open Office Impress : folder creation +Oracle Open Office Impress : font lists +Oracle Open Office Impress : font name box +Oracle Open Office Impress : font sizes +Oracle Open Office Impress : font sizes;bullets +Oracle Open Office Impress : font sizes;relative changes +Oracle Open Office Impress : font sizes;scaling on screen +Oracle Open Office Impress : font sizes;text +Oracle Open Office Impress : fonts +Oracle Open Office Impress : fonts;changing in templates +Oracle Open Office Impress : fonts;color ignored +Oracle Open Office Impress : fonts;colors +Oracle Open Office Impress : fonts;default settings +Oracle Open Office Impress : fonts;effects +Oracle Open Office Impress : fonts;for HTML and Basic +Oracle Open Office Impress : fonts;formats +Oracle Open Office Impress : fonts;outlines +Oracle Open Office Impress : fonts;positions in text +Oracle Open Office Impress : fonts;shadows +Oracle Open Office Impress : fonts;specifying several +Oracle Open Office Impress : fonts;strikethrough +Oracle Open Office Impress : fonts;styles +Oracle Open Office Impress : fonts;text objects +Oracle Open Office Impress : Fontwork +Oracle Open Office Impress : footers +Oracle Open Office Impress : footers;backgrounds +Oracle Open Office Impress : footers;slide masters +Oracle Open Office Impress : footers;slides +Oracle Open Office Impress : form controls +Oracle Open Office Impress : form controls;assigning macros +Oracle Open Office Impress : form controls;protecting +Oracle Open Office Impress : form controls;toolbars +Oracle Open Office Impress : form fields +Oracle Open Office Impress : form filters +Oracle Open Office Impress : Form Navigator +Oracle Open Office Impress : format codes +Oracle Open Office Impress : format codes;numbers +Oracle Open Office Impress : format filling printing in Oracle Open Office Math +Oracle Open Office Impress : Format Paintbrush +Oracle Open Office Impress : formats +Oracle Open Office Impress : formats;Asian layout +Oracle Open Office Impress : formats;fonts +Oracle Open Office Impress : formats;maximizing page formats +Oracle Open Office Impress : formats;number and currency formats +Oracle Open Office Impress : formats;of currencies/date/time +Oracle Open Office Impress : formats;on opening and saving +Oracle Open Office Impress : formats;pasting in special formats +Oracle Open Office Impress : formats;positions +Oracle Open Office Impress : formats;tabulators +Oracle Open Office Impress : formatted fields +Oracle Open Office Impress : formatted fields;form functions +Oracle Open Office Impress : formatted fields;properties +Oracle Open Office Impress : formatting +Oracle Open Office Impress : formatting;Asian typography +Oracle Open Office Impress : formatting;axes in charts +Oracle Open Office Impress : formatting;chart areas +Oracle Open Office Impress : formatting;chart floors +Oracle Open Office Impress : formatting;chart legends +Oracle Open Office Impress : formatting;chart titles +Oracle Open Office Impress : formatting;chart walls +Oracle Open Office Impress : formatting;copying +Oracle Open Office Impress : formatting;definition +Oracle Open Office Impress : formatting;expanding (Calc) +Oracle Open Office Impress : formatting;fields +Oracle Open Office Impress : formatting;font effects +Oracle Open Office Impress : formatting;hyperlinks +Oracle Open Office Impress : formatting;pages +Oracle Open Office Impress : formatting;printer metrics (Writer) +Oracle Open Office Impress : formatting;slides +Oracle Open Office Impress : formatting;slides headings +Oracle Open Office Impress : formatting;undoing +Oracle Open Office Impress : formatting;undoing when writing +Oracle Open Office Impress : forms +Oracle Open Office Impress : forms;browsing +Oracle Open Office Impress : forms;Combo Box/List Box Wizard +Oracle Open Office Impress : forms;creating +Oracle Open Office Impress : forms;data +Oracle Open Office Impress : forms;designing (Base) +Oracle Open Office Impress : forms;events +Oracle Open Office Impress : forms;filtering data +Oracle Open Office Impress : forms;finding records +Oracle Open Office Impress : forms;focus after opening +Oracle Open Office Impress : forms;general information (Base) +Oracle Open Office Impress : forms;grouping controls +Oracle Open Office Impress : forms;HTML filters +Oracle Open Office Impress : forms;inserting +Oracle Open Office Impress : forms;Navigator +Oracle Open Office Impress : forms;opening in design mode +Oracle Open Office Impress : forms;properties +Oracle Open Office Impress : forms;sorting data +Oracle Open Office Impress : forms;subforms +Oracle Open Office Impress : forms;wizards +Oracle Open Office Impress : forms;XForms +Oracle Open Office Impress : formula texts +Oracle Open Office Impress : formula texts;printing in Oracle Open Office Math +Oracle Open Office Impress : formulas +Oracle Open Office Impress : formulas;new +Oracle Open Office Impress : formulas;starting formula editor +Oracle Open Office Impress : formulas in reports +Oracle Open Office Impress : formulas in reports;editing +Oracle Open Office Impress : forums and support +Oracle Open Office Impress : frames +Oracle Open Office Impress : frames;around paragraphs +Oracle Open Office Impress : frames;around tables +Oracle Open Office Impress : frames;AutoCorrect function +Oracle Open Office Impress : frames;backgrounds +Oracle Open Office Impress : frames;captions (Writer) +Oracle Open Office Impress : frames;printing in Oracle Open Office Math +Oracle Open Office Impress : frames;protecting +Oracle Open Office Impress : frames;selection frames +Oracle Open Office Impress : frames;text fitting to frames +Oracle Open Office Impress : freeform lines +Oracle Open Office Impress : freeform lines;draw functions +Oracle Open Office Impress : freeform lines;drawing +Oracle Open Office Impress : FTP +Oracle Open Office Impress : FTP;opening documents +Oracle Open Office Impress : FTP;saving documents +Oracle Open Office Impress : full joins (Base) +Oracle Open Office Impress : full screen view +Oracle Open Office Impress : full-text search in Help +Oracle Open Office Impress : functions in reports +Oracle Open Office Impress : functions in reports;editing +Oracle Open Office Impress : Gallery +Oracle Open Office Impress : Gallery;adding pictures +Oracle Open Office Impress : Gallery;dragging pictures to draw objects +Oracle Open Office Impress : Gallery;hiding/showing +Oracle Open Office Impress : Gallery;inserting pictures from +Oracle Open Office Impress : geometric forms +Oracle Open Office Impress : get method for form transmissions +Oracle Open Office Impress : getting support +Oracle Open Office Impress : GIF format +Oracle Open Office Impress : GIF images +Oracle Open Office Impress : GIF images;animating +Oracle Open Office Impress : GIF images;replacing colors +Oracle Open Office Impress : glossaries +Oracle Open Office Impress : glossaries;common terms +Oracle Open Office Impress : glossaries;Internet terms +Oracle Open Office Impress : glue points +Oracle Open Office Impress : glue points;using +Oracle Open Office Impress : gradients +Oracle Open Office Impress : gradients;applying and defining +Oracle Open Office Impress : gradients;defining colors +Oracle Open Office Impress : gradients;loading lists +Oracle Open Office Impress : gradients;transparent +Oracle Open Office Impress : gradients off for faster printing +Oracle Open Office Impress : graphic objects, see draw objects +Oracle Open Office Impress : graphical text art +Oracle Open Office Impress : graphics +Oracle Open Office Impress : graphics;cache +Oracle Open Office Impress : graphics;protecting +Oracle Open Office Impress : graphics, see also pictures +Oracle Open Office Impress : grayscale display +Oracle Open Office Impress : grayscale printing +Oracle Open Office Impress : grid controls +Oracle Open Office Impress : grid controls;form functions +Oracle Open Office Impress : grids +Oracle Open Office Impress : grids;defaults (Writer/Calc) +Oracle Open Office Impress : grids;display options (Impress/Draw) +Oracle Open Office Impress : grids;displaying lines (Calc) +Oracle Open Office Impress : grids;formatting axes +Oracle Open Office Impress : grids;inserting in charts +Oracle Open Office Impress : group box creation +Oracle Open Office Impress : grouping +Oracle Open Office Impress : grouping;draw objects +Oracle Open Office Impress : groups +Oracle Open Office Impress : groups;entering/exiting/ungrouping +Oracle Open Office Impress : groups;naming +Oracle Open Office Impress : groups;of controls +Oracle Open Office Impress : guides +Oracle Open Office Impress : guides;display options (Impress/Draw) +Oracle Open Office Impress : guides;displaying when moving objects (Impress) +Oracle Open Office Impress : guides;editing +Oracle Open Office Impress : guides;inserting +Oracle Open Office Impress : guides;show snap lines icon +Oracle Open Office Impress : guides;showing (Calc) +Oracle Open Office Impress : guides;showing when moving frames (Writer) +Oracle Open Office Impress : gutter +Oracle Open Office Impress : half-spheres +Oracle Open Office Impress : hand icon for moving slides +Oracle Open Office Impress : handles +Oracle Open Office Impress : handles;displaying (Writer) +Oracle Open Office Impress : handles;large +Oracle Open Office Impress : handles;scaling +Oracle Open Office Impress : handles;showing simple/large handles (Calc) +Oracle Open Office Impress : handles;simple +Oracle Open Office Impress : handout printing +Oracle Open Office Impress : Hangul/Hanja +Oracle Open Office Impress : hatching +Oracle Open Office Impress : hatching +Oracle Open Office Impress : hatching;loading lists +Oracle Open Office Impress : headers +Oracle Open Office Impress : headers;backgrounds +Oracle Open Office Impress : headers and footers +Oracle Open Office Impress : headers and footers;master layouts +Oracle Open Office Impress : headers and footers;slide masters +Oracle Open Office Impress : headers and footers;slides +Oracle Open Office Impress : headings +Oracle Open Office Impress : headings;entering as text box +Oracle Open Office Impress : Hebrew +Oracle Open Office Impress : Hebrew;entering text +Oracle Open Office Impress : Hebrew;language settings +Oracle Open Office Impress : Help +Oracle Open Office Impress : Help;bookmarks +Oracle Open Office Impress : Help;extended tips on/off +Oracle Open Office Impress : Help;full-text search +Oracle Open Office Impress : Help;Help tips +Oracle Open Office Impress : Help;keywords +Oracle Open Office Impress : Help;navigation pane showing/hiding +Oracle Open Office Impress : Help;style sheets +Oracle Open Office Impress : Help;topics +Oracle Open Office Impress : Help Agent +Oracle Open Office Impress : Help Agent;help +Oracle Open Office Impress : Help Agent;options +Oracle Open Office Impress : Help tips +Oracle Open Office Impress : Help tips;hiding +Oracle Open Office Impress : hidden controls in Form Navigator +Oracle Open Office Impress : hidden fields display (Writer) +Oracle Open Office Impress : hidden pages +Oracle Open Office Impress : hidden pages;printing in presentations +Oracle Open Office Impress : hidden pages;showing +Oracle Open Office Impress : hidden text +Oracle Open Office Impress : hidden text;showing (Writer) +Oracle Open Office Impress : hiding +Oracle Open Office Impress : hiding;changes +Oracle Open Office Impress : hiding;chart legends +Oracle Open Office Impress : hiding;docked windows +Oracle Open Office Impress : hiding;layers +Oracle Open Office Impress : hiding;levels +Oracle Open Office Impress : hiding;navigation pane in Help window +Oracle Open Office Impress : hiding;slides +Oracle Open Office Impress : hiding;subpoints +Oracle Open Office Impress : high contrast mode +Oracle Open Office Impress : highlighting changes +Oracle Open Office Impress : Hindi +Oracle Open Office Impress : Hindi;entering text +Oracle Open Office Impress : Hindi;language settings +Oracle Open Office Impress : horizontal scrollbars (Writer) +Oracle Open Office Impress : hot spots in flowcharts +Oracle Open Office Impress : hotspots +Oracle Open Office Impress : hotspots;adding to images +Oracle Open Office Impress : hotspots;properties +Oracle Open Office Impress : HowTos for charts +Oracle Open Office Impress : Howtos for Draw +Oracle Open Office Impress : HTML +Oracle Open Office Impress : HTML;compatibility settings +Oracle Open Office Impress : HTML;definition +Oracle Open Office Impress : HTML;export character set +Oracle Open Office Impress : HTML;exporting from presentations +Oracle Open Office Impress : HTML;fonts for source display +Oracle Open Office Impress : HTML;importing into presentations +Oracle Open Office Impress : HTML;importing META tags +Oracle Open Office Impress : HTML;inserting files +Oracle Open Office Impress : HTML;live presentations +Oracle Open Office Impress : HTML documents +Oracle Open Office Impress : HTML documents;auto reloading +Oracle Open Office Impress : HTML documents;importing/exporting +Oracle Open Office Impress : HTML documents;META tags in +Oracle Open Office Impress : HTML documents;new +Oracle Open Office Impress : HTML documents;source text +Oracle Open Office Impress : hyperlinks +Oracle Open Office Impress : hyperlinks;assigning macros +Oracle Open Office Impress : hyperlinks;character formats +Oracle Open Office Impress : hyperlinks;definition +Oracle Open Office Impress : hyperlinks;deleting +Oracle Open Office Impress : hyperlinks;editing +Oracle Open Office Impress : hyperlinks;inserting +Oracle Open Office Impress : hyperlinks;relative and absolute +Oracle Open Office Impress : hyperlinks;turning off automatic recognition +Oracle Open Office Impress : hyperlinks, see also links +Oracle Open Office Impress : hyphenation +Oracle Open Office Impress : hyphenation;activating for a language +Oracle Open Office Impress : hyphenation;minimal number of characters +Oracle Open Office Impress : hyphens +Oracle Open Office Impress : hyphens;displaying custom (Writer) +Oracle Open Office Impress : hyphens;inserting custom +Oracle Open Office Impress : icon bars, see toolbars +Oracle Open Office Impress : icon sizes +Oracle Open Office Impress : ignore list for spellcheck +Oracle Open Office Impress : ignored font colors +Oracle Open Office Impress : illumination +Oracle Open Office Impress : illumination;3D charts +Oracle Open Office Impress : illustrations, see pictures +Oracle Open Office Impress : image button creation +Oracle Open Office Impress : image control creation +Oracle Open Office Impress : ImageMap +Oracle Open Office Impress : ImageMap;definition +Oracle Open Office Impress : ImageMap;editor +Oracle Open Office Impress : ImageMap;hotspot properties +Oracle Open Office Impress : images +Oracle Open Office Impress : images;ImageMap +Oracle Open Office Impress : images;inserting +Oracle Open Office Impress : images;inserting and editing bitmaps +Oracle Open Office Impress : images, see also pictures +Oracle Open Office Impress : IME +Oracle Open Office Impress : IME;definition +Oracle Open Office Impress : IME;showing/hiding +Oracle Open Office Impress : import filters +Oracle Open Office Impress : import restrictions for Microsoft Office +Oracle Open Office Impress : importing +Oracle Open Office Impress : importing;bitmaps +Oracle Open Office Impress : importing;compatibility settings for text import +Oracle Open Office Impress : importing;databases +Oracle Open Office Impress : importing;documents in other formats +Oracle Open Office Impress : importing;from XML +Oracle Open Office Impress : importing;HTML and text documents +Oracle Open Office Impress : importing;HTML with META tags +Oracle Open Office Impress : importing;Microsoft Office documents with VBA code +Oracle Open Office Impress : importing;presentations with HTML +Oracle Open Office Impress : importing;tables in text format +Oracle Open Office Impress : importing;templates +Oracle Open Office Impress : improvement program +Oracle Open Office Impress : improvement program - Improvement Program +Oracle Open Office Impress : in front of object command +Oracle Open Office Impress : inches +Oracle Open Office Impress : including spreadsheets +Oracle Open Office Impress : increasing sizes of views +Oracle Open Office Impress : Index tab in Help +Oracle Open Office Impress : indexes +Oracle Open Office Impress : indexes;backgrounds +Oracle Open Office Impress : indexes;showing/hiding Help index tab +Oracle Open Office Impress : indicator lines in text +Oracle Open Office Impress : inner joins (Base) +Oracle Open Office Impress : input method window +Oracle Open Office Impress : insert mode for entering text +Oracle Open Office Impress : inserting +Oracle Open Office Impress : inserting;3D objects +Oracle Open Office Impress : inserting;arrows +Oracle Open Office Impress : inserting;buttons in toolbars +Oracle Open Office Impress : inserting;callouts in presentations +Oracle Open Office Impress : inserting;cell ranges from spreadsheets +Oracle Open Office Impress : inserting;charts +Oracle Open Office Impress : inserting;clipboard options +Oracle Open Office Impress : inserting;columns +Oracle Open Office Impress : inserting;comments +Oracle Open Office Impress : inserting;data from text documents +Oracle Open Office Impress : inserting;datasource records in spreadsheets +Oracle Open Office Impress : inserting;drawings +Oracle Open Office Impress : inserting;ellipses +Oracle Open Office Impress : inserting;files +Oracle Open Office Impress : inserting;floating frames +Oracle Open Office Impress : inserting;Fontwork objects +Oracle Open Office Impress : inserting;form fields +Oracle Open Office Impress : inserting;headers/footers in all slides +Oracle Open Office Impress : inserting;hyperlinks +Oracle Open Office Impress : inserting;layers +Oracle Open Office Impress : inserting;line breaks in cells +Oracle Open Office Impress : inserting;lines +Oracle Open Office Impress : inserting;movies/sounds +Oracle Open Office Impress : inserting;new text tables defaults +Oracle Open Office Impress : inserting;objects from files +Oracle Open Office Impress : inserting;objects from Gallery +Oracle Open Office Impress : inserting;OLE objects +Oracle Open Office Impress : inserting;paragraph borders +Oracle Open Office Impress : inserting;paragraph bullets +Oracle Open Office Impress : inserting;pictures +Oracle Open Office Impress : inserting;pictures in Gallery +Oracle Open Office Impress : inserting;plug-ins +Oracle Open Office Impress : inserting;polygons +Oracle Open Office Impress : inserting;push buttons +Oracle Open Office Impress : inserting;rectangles +Oracle Open Office Impress : inserting;rows +Oracle Open Office Impress : inserting;slides +Oracle Open Office Impress : inserting;slides as links +Oracle Open Office Impress : inserting;slides from files +Oracle Open Office Impress : inserting;special characters +Oracle Open Office Impress : inserting;tab stops +Oracle Open Office Impress : inserting;text frames +Oracle Open Office Impress : inserting;text in presentations +Oracle Open Office Impress : inserting;textures on chart bars +Oracle Open Office Impress : installing +Oracle Open Office Impress : installing;ActiveX control +Oracle Open Office Impress : installing;mobile device filters +Oracle Open Office Impress : installing;UNO components +Oracle Open Office Impress : installing;XML filters +Oracle Open Office Impress : instructions +Oracle Open Office Impress : instructions;general +Oracle Open Office Impress : instructions;Oracle Open Office Draw +Oracle Open Office Impress : instructions;Oracle Open Office Impress +Oracle Open Office Impress : interactions +Oracle Open Office Impress : interactions;hot spots +Oracle Open Office Impress : interactions;objects in interactive presentations +Oracle Open Office Impress : interactions;preview +Oracle Open Office Impress : Internet +Oracle Open Office Impress : Internet;checking for updates +Oracle Open Office Impress : Internet;Internet Explorer for displaying Oracle Open Office documents +Oracle Open Office Impress : Internet;presentations +Oracle Open Office Impress : Internet;starting searches +Oracle Open Office Impress : Internet glossary +Oracle Open Office Impress : intersecting draw objects +Oracle Open Office Impress : invert filter +Oracle Open Office Impress : invisible areas +Oracle Open Office Impress : italic text +Oracle Open Office Impress : iterative references in spreadsheets +Oracle Open Office Impress : Java +Oracle Open Office Impress : Java;definition +Oracle Open Office Impress : Java;setting options +Oracle Open Office Impress : JDBC +Oracle Open Office Impress : JDBC;databases (Base) +Oracle Open Office Impress : JDBC;definition +Oracle Open Office Impress : joining +Oracle Open Office Impress : joining;3D objects +Oracle Open Office Impress : joining;paragraphs +Oracle Open Office Impress : joining;tables (Base) +Oracle Open Office Impress : joins in databases (Base) +Oracle Open Office Impress : justifying text +Oracle Open Office Impress : kerning +Oracle Open Office Impress : kerning;Asian texts +Oracle Open Office Impress : kerning;definition +Oracle Open Office Impress : kerning;in characters +Oracle Open Office Impress : key fields for relations (Base) +Oracle Open Office Impress : keyboard +Oracle Open Office Impress : keyboard;assigning/editing shortcut keys +Oracle Open Office Impress : keyboard;general commands +Oracle Open Office Impress : keyboard;removing numbering +Oracle Open Office Impress : keyboard;zooming +Oracle Open Office Impress : keys +Oracle Open Office Impress : keys;adding push buttons +Oracle Open Office Impress : keys;primary keys (Base) +Oracle Open Office Impress : kiosk export +Oracle Open Office Impress : labels +Oracle Open Office Impress : labels;creating and synchronizing +Oracle Open Office Impress : labels;for charts +Oracle Open Office Impress : labels;for draw objects +Oracle Open Office Impress : labels;form functions +Oracle Open Office Impress : labels;from databases +Oracle Open Office Impress : labels, see also names/callouts +Oracle Open Office Impress : languages +Oracle Open Office Impress : languages;activating modules +Oracle Open Office Impress : languages;Asian support +Oracle Open Office Impress : languages;complex text layout +Oracle Open Office Impress : languages;locale settings +Oracle Open Office Impress : languages;selecting for text +Oracle Open Office Impress : languages;setting options +Oracle Open Office Impress : languages;spellcheck +Oracle Open Office Impress : languages;spellchecking and formatting +Oracle Open Office Impress : large handles (Writer) +Oracle Open Office Impress : large icons +Oracle Open Office Impress : layer arrangement +Oracle Open Office Impress : layers +Oracle Open Office Impress : layers;definition +Oracle Open Office Impress : layers;deleting +Oracle Open Office Impress : layers;inserting and editing +Oracle Open Office Impress : layers;moving objects +Oracle Open Office Impress : layers;renaming +Oracle Open Office Impress : layers;working with +Oracle Open Office Impress : layout +Oracle Open Office Impress : layout;importing Word documents +Oracle Open Office Impress : layout;pages +Oracle Open Office Impress : layout;printing handouts +Oracle Open Office Impress : LDAP server +Oracle Open Office Impress : LDAP server;address books (Base) +Oracle Open Office Impress : LDAP server;sign on options +Oracle Open Office Impress : leading between paragraphs +Oracle Open Office Impress : left alignment of paragraphs +Oracle Open Office Impress : left joins (Base) +Oracle Open Office Impress : legends +Oracle Open Office Impress : legends;charts +Oracle Open Office Impress : legends;draw objects +Oracle Open Office Impress : legends;drawings +Oracle Open Office Impress : legends;rounding corners +Oracle Open Office Impress : Letter Wizard +Oracle Open Office Impress : levels +Oracle Open Office Impress : levels;depth stagger +Oracle Open Office Impress : levels;hiding +Oracle Open Office Impress : levels;macro security +Oracle Open Office Impress : levels;showing +Oracle Open Office Impress : limits of tables (Writer) +Oracle Open Office Impress : line breaks +Oracle Open Office Impress : line breaks;in cells +Oracle Open Office Impress : line charts +Oracle Open Office Impress : line spacing +Oracle Open Office Impress : line spacing;context menu in paragraphs +Oracle Open Office Impress : line spacing;paragraph +Oracle Open Office Impress : line styles +Oracle Open Office Impress : line styles;applying +Oracle Open Office Impress : line styles;defining +Oracle Open Office Impress : line styles;loading +Oracle Open Office Impress : lines +Oracle Open Office Impress : lines;about line ends +Oracle Open Office Impress : lines;connecting objects +Oracle Open Office Impress : lines;defining ends +Oracle Open Office Impress : lines;draw functions +Oracle Open Office Impress : lines;drawing +Oracle Open Office Impress : lines;drawing in text +Oracle Open Office Impress : lines;editing points +Oracle Open Office Impress : lines;inserting +Oracle Open Office Impress : lines;removing automatic lines +Oracle Open Office Impress : lines of text +Oracle Open Office Impress : lines of text;alignment +Oracle Open Office Impress : links +Oracle Open Office Impress : links;between cells and controls +Oracle Open Office Impress : links;by drag and drop +Oracle Open Office Impress : links;character formats +Oracle Open Office Impress : links;definition +Oracle Open Office Impress : links;editing hyperlinks +Oracle Open Office Impress : links;inserting +Oracle Open Office Impress : links;modifying +Oracle Open Office Impress : links;opening files with +Oracle Open Office Impress : links;relational databases (Base) +Oracle Open Office Impress : links;turning off automatic recognition +Oracle Open Office Impress : links;updating options (Writer) +Oracle Open Office Impress : links;updating specific links +Oracle Open Office Impress : list box creation +Oracle Open Office Impress : lists +Oracle Open Office Impress : lists;animations +Oracle Open Office Impress : lists;data assigned to controls +Oracle Open Office Impress : lists;registered databases (Base) +Oracle Open Office Impress : lists;regular expressions +Oracle Open Office Impress : live presentations on the Internet +Oracle Open Office Impress : loading +Oracle Open Office Impress : loading;arrow and line styles +Oracle Open Office Impress : loading;colors/gradients/hatchings +Oracle Open Office Impress : loading;documents +Oracle Open Office Impress : loading;documents from other formats +Oracle Open Office Impress : loading;HTML documents, automatically +Oracle Open Office Impress : loading;Microsoft Office documents with VBA code +Oracle Open Office Impress : loading;reloading +Oracle Open Office Impress : loading;XML files +Oracle Open Office Impress : locale settings +Oracle Open Office Impress : locking layers +Oracle Open Office Impress : logarithmic scaling along axes +Oracle Open Office Impress : lowercase letters +Oracle Open Office Impress : lowercase letters;font effects +Oracle Open Office Impress : Macro Wizard (Base) +Oracle Open Office Impress : Macromedia Flash export +Oracle Open Office Impress : macros +Oracle Open Office Impress : macros;assigning to events in forms +Oracle Open Office Impress : macros;attaching new (Base) +Oracle Open Office Impress : macros;in MS Office documents +Oracle Open Office Impress : macros;interrupting +Oracle Open Office Impress : macros;organizing +Oracle Open Office Impress : macros;recording +Oracle Open Office Impress : macros;running in presentations +Oracle Open Office Impress : macros;security +Oracle Open Office Impress : macros;security levels +Oracle Open Office Impress : macros;security warning dialog +Oracle Open Office Impress : macros;selecting security warnings +Oracle Open Office Impress : magnetic lines in presentations +Oracle Open Office Impress : magnifiers +Oracle Open Office Impress : margins +Oracle Open Office Impress : margins;pages +Oracle Open Office Impress : margins;setting with the mouse +Oracle Open Office Impress : margins;shadows +Oracle Open Office Impress : marking changes +Oracle Open Office Impress : marking, see selecting +Oracle Open Office Impress : master layouts with headers and footers +Oracle Open Office Impress : master pages, see slide masters +Oracle Open Office Impress : master views +Oracle Open Office Impress : Math formula editor +Oracle Open Office Impress : mean value lines in charts +Oracle Open Office Impress : measurement units +Oracle Open Office Impress : measurement units;changing on rulers +Oracle Open Office Impress : measurement units;converting +Oracle Open Office Impress : measurement units;selecting +Oracle Open Office Impress : Media Player window +Oracle Open Office Impress : menus +Oracle Open Office Impress : menus;activating context menus +Oracle Open Office Impress : menus;assigning macros +Oracle Open Office Impress : menus;customizing +Oracle Open Office Impress : merging +Oracle Open Office Impress : merging;documents +Oracle Open Office Impress : merging;draw objects +Oracle Open Office Impress : META tags +Oracle Open Office Impress : metafiles +Oracle Open Office Impress : metafiles;converting to +Oracle Open Office Impress : metafiles;replacing colors +Oracle Open Office Impress : metrics +Oracle Open Office Impress : metrics;converting +Oracle Open Office Impress : metrics;document formatting (Writer) +Oracle Open Office Impress : metrics;in sheets +Oracle Open Office Impress : Microsoft Office +Oracle Open Office Impress : Microsoft Office;Access databases (base) +Oracle Open Office Impress : Microsoft Office;as default file format +Oracle Open Office Impress : Microsoft Office;document import restrictions +Oracle Open Office Impress : Microsoft Office;feature comparisons +Oracle Open Office Impress : Microsoft Office;importing password protected files +Oracle Open Office Impress : Microsoft Office;importing Word documents +Oracle Open Office Impress : Microsoft Office;importing/exporting VBA code +Oracle Open Office Impress : Microsoft Office;new users information +Oracle Open Office Impress : Microsoft Office;opening Microsoft documents +Oracle Open Office Impress : Microsoft Office;reassigning document types +Oracle Open Office Impress : migrating macros (Base) +Oracle Open Office Impress : mirroring objects +Oracle Open Office Impress : mobile device filters +Oracle Open Office Impress : models in XForms +Oracle Open Office Impress : modifying, see changing +Oracle Open Office Impress : more controls +Oracle Open Office Impress : mosaic filter +Oracle Open Office Impress : motion paths +Oracle Open Office Impress : mouse +Oracle Open Office Impress : mouse;pointers when using drag and drop +Oracle Open Office Impress : mouse;positioning +Oracle Open Office Impress : movies +Oracle Open Office Impress : moving +Oracle Open Office Impress : moving;between layers +Oracle Open Office Impress : moving;objects in slides +Oracle Open Office Impress : moving;tab stops on ruler +Oracle Open Office Impress : moving;toolbars +Oracle Open Office Impress : moving;using guide lines in presentations +Oracle Open Office Impress : MS ADO interface (Base) +Oracle Open Office Impress : multi-line titles in forms +Oracle Open Office Impress : multiple documents +Oracle Open Office Impress : multiple documents;opening +Oracle Open Office Impress : multiple monitors +Oracle Open Office Impress : multiple selection +Oracle Open Office Impress : multiplying draw objects +Oracle Open Office Impress : music +Oracle Open Office Impress : My Documents folder +Oracle Open Office Impress : My Documents folder;changing work directory +Oracle Open Office Impress : My Documents folder;opening +Oracle Open Office Impress : MySQL databases (Base) +Oracle Open Office Impress : names +Oracle Open Office Impress : names;multi-line titles +Oracle Open Office Impress : names;objects +Oracle Open Office Impress : names, see also labels/callouts +Oracle Open Office Impress : namespace organization in XForms +Oracle Open Office Impress : native SQL (Base) +Oracle Open Office Impress : navigating +Oracle Open Office Impress : navigating;in documents +Oracle Open Office Impress : Navigation bar +Oracle Open Office Impress : Navigation bar;controls +Oracle Open Office Impress : Navigation bar;forms +Oracle Open Office Impress : Navigator +Oracle Open Office Impress : Navigator;comments +Oracle Open Office Impress : Navigator;contents as lists +Oracle Open Office Impress : Navigator;docking +Oracle Open Office Impress : Navigator;presentations +Oracle Open Office Impress : Navigator;working with +Oracle Open Office Impress : net charts +Oracle Open Office Impress : network identity options +Oracle Open Office Impress : new databases +Oracle Open Office Impress : new documents +Oracle Open Office Impress : new lines in cells +Oracle Open Office Impress : new windows +Oracle Open Office Impress : non-breaking dashes +Oracle Open Office Impress : non-breaking spaces (Writer) +Oracle Open Office Impress : non-printing characters (Writer) +Oracle Open Office Impress : normal view +Oracle Open Office Impress : normal view;backgrounds +Oracle Open Office Impress : normal view;presentations +Oracle Open Office Impress : notes +Oracle Open Office Impress : notes;adding to slides +Oracle Open Office Impress : notes;default formatting +Oracle Open Office Impress : notes;printing in presentations +Oracle Open Office Impress : number formats +Oracle Open Office Impress : number formats;codes +Oracle Open Office Impress : number formats;formats +Oracle Open Office Impress : number formats;recognition in text tables +Oracle Open Office Impress : number of pages +Oracle Open Office Impress : number of sheets +Oracle Open Office Impress : number of tables +Oracle Open Office Impress : numbering +Oracle Open Office Impress : numbering;options +Oracle Open Office Impress : numbering;turning off +Oracle Open Office Impress : numbering;using automatically +Oracle Open Office Impress : numbers +Oracle Open Office Impress : numbers;date, time and currency formats +Oracle Open Office Impress : numerical fields in forms +Oracle Open Office Impress : object bars +Oracle Open Office Impress : object bars;editing glue points +Oracle Open Office Impress : objects +Oracle Open Office Impress : objects;aligning +Oracle Open Office Impress : objects;always moveable (Impress/Draw) +Oracle Open Office Impress : objects;arranging within stacks +Oracle Open Office Impress : objects;behind object command +Oracle Open Office Impress : objects;breaking connections +Oracle Open Office Impress : objects;copying when moving in presentations +Oracle Open Office Impress : objects;definition +Oracle Open Office Impress : objects;displaying in spreadsheets +Oracle Open Office Impress : objects;displaying in text documents +Oracle Open Office Impress : objects;editing +Oracle Open Office Impress : objects;effects +Oracle Open Office Impress : objects;in front of object command +Oracle Open Office Impress : objects;inserting from files +Oracle Open Office Impress : objects;inserting from Gallery +Oracle Open Office Impress : objects;inserting OLE objects +Oracle Open Office Impress : objects;moving along paths +Oracle Open Office Impress : objects;moving and resizing with mouse +Oracle Open Office Impress : objects;moving in layers +Oracle Open Office Impress : objects;moving in slides +Oracle Open Office Impress : objects;naming +Oracle Open Office Impress : objects;opening +Oracle Open Office Impress : objects;properties of charts +Oracle Open Office Impress : objects;quickly moving to +Oracle Open Office Impress : objects;reversing +Oracle Open Office Impress : objects;selecting +Oracle Open Office Impress : objects;titles and descriptions +Oracle Open Office Impress : objects;with attributes +Oracle Open Office Impress : ODBC +Oracle Open Office Impress : ODBC;database (Base) +Oracle Open Office Impress : ODBC;definition +Oracle Open Office Impress : ODF file formats +Oracle Open Office Impress : Office +Oracle Open Office Impress : Office;Microsoft Office and Oracle Open Office +Oracle Open Office Impress : OLE +Oracle Open Office Impress : OLE;definition +Oracle Open Office Impress : OLE objects +Oracle Open Office Impress : OLE objects;arranging within stacks +Oracle Open Office Impress : OLE objects;captions (Writer) +Oracle Open Office Impress : OLE objects;inserting +Oracle Open Office Impress : OLE objects;number of +Oracle Open Office Impress : OLE objects;protecting +Oracle Open Office Impress : one and a half line spacing in text +Oracle Open Office Impress : online feedback options +Oracle Open Office Impress : online registration +Oracle Open Office Impress : online update options +Oracle Open Office Impress : online updates +Oracle Open Office Impress : online updates;checking automatically +Oracle Open Office Impress : online updates;checking manually +Oracle Open Office Impress : OpenDocument file formats +Oracle Open Office Impress : OpenGL +Oracle Open Office Impress : OpenGL;definition +Oracle Open Office Impress : opening +Oracle Open Office Impress : opening;context menus +Oracle Open Office Impress : opening;database files +Oracle Open Office Impress : opening;dialog settings +Oracle Open Office Impress : opening;documents +Oracle Open Office Impress : opening;documents from other formats +Oracle Open Office Impress : opening;documents on WebDAV server +Oracle Open Office Impress : opening;documents with links +Oracle Open Office Impress : opening;files, with placeholders +Oracle Open Office Impress : opening;forms +Oracle Open Office Impress : opening;Microsoft Office files +Oracle Open Office Impress : opening;mobile device documents +Oracle Open Office Impress : opening;objects +Oracle Open Office Impress : opening;reports +Oracle Open Office Impress : opening;several files +Oracle Open Office Impress : opening;XForms +Oracle Open Office Impress : operators +Oracle Open Office Impress : operators;standard filters +Oracle Open Office Impress : optional hyphens (Writer) +Oracle Open Office Impress : options +Oracle Open Office Impress : options;accessibility +Oracle Open Office Impress : options;appearance +Oracle Open Office Impress : options;compatibility (Writer) +Oracle Open Office Impress : options;improvement program +Oracle Open Office Impress : options;network identity +Oracle Open Office Impress : options;online update +Oracle Open Office Impress : options;tools +Oracle Open Office Impress : Oracle databases (base) +Oracle Open Office Impress : Oracle Open Office Base data sources +Oracle Open Office Impress : Oracle Open Office Basic scripts in HTML documents +Oracle Open Office Impress : Oracle Open Office documents +Oracle Open Office Impress : Oracle Open Office documents;mobile device filters +Oracle Open Office Impress : Oracle Open Office documents;viewing and editing in Internet Explorer +Oracle Open Office Impress : Oracle Open Office Impress instructions +Oracle Open Office Impress : Oracle Open Office Math start +Oracle Open Office Impress : order of chart data +Oracle Open Office Impress : ordering +Oracle Open Office Impress : ordering;objects +Oracle Open Office Impress : ordering;slides +Oracle Open Office Impress : ordinal numbers +Oracle Open Office Impress : ordinal numbers;replacing +Oracle Open Office Impress : organization charts +Oracle Open Office Impress : organizing +Oracle Open Office Impress : organizing;macros and scripts +Oracle Open Office Impress : organizing;namespaces in XForms +Oracle Open Office Impress : organizing;styles +Oracle Open Office Impress : organizing;templates +Oracle Open Office Impress : origin of rulers +Oracle Open Office Impress : original size +Oracle Open Office Impress : original size;printing in Oracle Open Office Math +Oracle Open Office Impress : original size;restoring after cropping +Oracle Open Office Impress : outline view +Oracle Open Office Impress : outlines +Oracle Open Office Impress : outlines;font effects +Oracle Open Office Impress : outlines;outline symbols +Oracle Open Office Impress : outlines;printing +Oracle Open Office Impress : outlines;sending to presentations +Oracle Open Office Impress : overwrite mode +Oracle Open Office Impress : packages, see extensions +Oracle Open Office Impress : page breaks +Oracle Open Office Impress : page breaks;displaying (Calc) +Oracle Open Office Impress : page formats +Oracle Open Office Impress : page formats;maximizing +Oracle Open Office Impress : page formats;restriction +Oracle Open Office Impress : page number field +Oracle Open Office Impress : page numbers on all slides +Oracle Open Office Impress : page styles +Oracle Open Office Impress : page styles;editing/applying with statusbar +Oracle Open Office Impress : pages +Oracle Open Office Impress : pages;backgrounds in all applications +Oracle Open Office Impress : pages;copying +Oracle Open Office Impress : pages;fitting to printed pages +Oracle Open Office Impress : pages;formatting and numbering +Oracle Open Office Impress : pages;printing page names in presentations +Oracle Open Office Impress : pages;scaling +Oracle Open Office Impress : pages;selecting one to print +Oracle Open Office Impress : paint box +Oracle Open Office Impress : paint can symbol +Oracle Open Office Impress : Paintbrush +Oracle Open Office Impress : pair kerning +Oracle Open Office Impress : Palm file filters +Oracle Open Office Impress : paper formats +Oracle Open Office Impress : paper size warning +Oracle Open Office Impress : paper trays +Oracle Open Office Impress : paragraph marks +Oracle Open Office Impress : paragraph marks;displaying (Writer) +Oracle Open Office Impress : paragraph styles +Oracle Open Office Impress : paragraph styles;languages +Oracle Open Office Impress : paragraph styles;modifying basic fonts +Oracle Open Office Impress : paragraphs +Oracle Open Office Impress : paragraphs;alignment +Oracle Open Office Impress : paragraphs;Asian typography +Oracle Open Office Impress : paragraphs;defining borders +Oracle Open Office Impress : paragraphs;hidden paragraphs (Writer) +Oracle Open Office Impress : paragraphs;increasing indents of +Oracle Open Office Impress : paragraphs;indents, margins and columns +Oracle Open Office Impress : paragraphs;inserting bullets +Oracle Open Office Impress : paragraphs;joining +Oracle Open Office Impress : paragraphs;numbering automatically +Oracle Open Office Impress : paragraphs;removing blank ones +Oracle Open Office Impress : paragraphs;spacing +Oracle Open Office Impress : paragraphs;tab stops +Oracle Open Office Impress : parameters +Oracle Open Office Impress : parameters;command line +Oracle Open Office Impress : parameters;queries (Base) +Oracle Open Office Impress : password as document property +Oracle Open Office Impress : passwords for protecting contents +Oracle Open Office Impress : pasting +Oracle Open Office Impress : pasting;cell ranges +Oracle Open Office Impress : pasting;cell ranges from spreadsheets +Oracle Open Office Impress : pasting;data from text documents +Oracle Open Office Impress : pasting;draw objects +Oracle Open Office Impress : pasting;draw objects from other documents +Oracle Open Office Impress : pasting;formatted/unformatted text +Oracle Open Office Impress : pasting;from data source view +Oracle Open Office Impress : pasting;from data sources to Oracle Open Office Calc +Oracle Open Office Impress : pasting;pictures from other documents +Oracle Open Office Impress : pasting;sheet areas in text documents +Oracle Open Office Impress : pasting;slides from other presentations +Oracle Open Office Impress : pasting;text from other documents +Oracle Open Office Impress : pasting;to Gallery +Oracle Open Office Impress : paths +Oracle Open Office Impress : paths;changing work directory +Oracle Open Office Impress : paths;defaults +Oracle Open Office Impress : paths;moving objects along +Oracle Open Office Impress : pattern editor +Oracle Open Office Impress : pattern fields +Oracle Open Office Impress : pattern fields;form functions +Oracle Open Office Impress : patterns for objects +Oracle Open Office Impress : PDF +Oracle Open Office Impress : PDF;export +Oracle Open Office Impress : PDF;PostScript to PDF converter, UNIX +Oracle Open Office Impress : personal data input +Oracle Open Office Impress : phonetic guide +Oracle Open Office Impress : picklist creation +Oracle Open Office Impress : pictures +Oracle Open Office Impress : pictures;adding to Gallery +Oracle Open Office Impress : pictures;arranging within stacks +Oracle Open Office Impress : pictures;assigning macros +Oracle Open Office Impress : pictures;backgrounds +Oracle Open Office Impress : pictures;captions (Writer) +Oracle Open Office Impress : pictures;changing paths +Oracle Open Office Impress : pictures;cropping and zooming +Oracle Open Office Impress : pictures;displaying in Calc +Oracle Open Office Impress : pictures;displaying in Writer (Writer) +Oracle Open Office Impress : pictures;drag and drop between documents +Oracle Open Office Impress : pictures;drawing +Oracle Open Office Impress : pictures;editing +Oracle Open Office Impress : pictures;filters +Oracle Open Office Impress : pictures;ImageMap +Oracle Open Office Impress : pictures;inserting +Oracle Open Office Impress : pictures;inserting automatically +Oracle Open Office Impress : pictures;inserting from Gallery +Oracle Open Office Impress : pictures;number of +Oracle Open Office Impress : pictures;printing +Oracle Open Office Impress : pictures;scaling/resizing +Oracle Open Office Impress : pie charts +Oracle Open Office Impress : pie charts;options +Oracle Open Office Impress : pie charts;types +Oracle Open Office Impress : pivot points of draw objects +Oracle Open Office Impress : pixel editor +Oracle Open Office Impress : pixel graphics +Oracle Open Office Impress : pixel graphics;inserting and editing +Oracle Open Office Impress : pixel patterns +Oracle Open Office Impress : placeholders +Oracle Open Office Impress : placeholders;in SQL queries +Oracle Open Office Impress : placeholders;on opening files +Oracle Open Office Impress : placing toolbars +Oracle Open Office Impress : playing movies and sound files +Oracle Open Office Impress : plotting data as charts +Oracle Open Office Impress : plug-ins +Oracle Open Office Impress : plug-ins;activating and deactivating +Oracle Open Office Impress : plug-ins;definition +Oracle Open Office Impress : plug-ins;inserting +Oracle Open Office Impress : pocket device appliances +Oracle Open Office Impress : Pocket PC file filters +Oracle Open Office Impress : points +Oracle Open Office Impress : points;adding/converting/deleting +Oracle Open Office Impress : points;reducing editing points when snapping (Impress/Draw) +Oracle Open Office Impress : polygon drawing +Oracle Open Office Impress : polygons +Oracle Open Office Impress : polygons;inserting +Oracle Open Office Impress : polygons;intersecting/subtracting/merging +Oracle Open Office Impress : pop-art filter +Oracle Open Office Impress : portable document format +Oracle Open Office Impress : positioning +Oracle Open Office Impress : positioning;axes +Oracle Open Office Impress : positioning;draw objects and controls +Oracle Open Office Impress : positioning;fonts +Oracle Open Office Impress : positioning;objects +Oracle Open Office Impress : positioning;toolbars +Oracle Open Office Impress : post method for form transmissions +Oracle Open Office Impress : posterizing filter +Oracle Open Office Impress : PostScript +Oracle Open Office Impress : PostScript;creating files +Oracle Open Office Impress : PostScript;PDF converter, UNIX +Oracle Open Office Impress : PowerPoint export +Oracle Open Office Impress : precision as shown (Calc) +Oracle Open Office Impress : predefining fonts +Oracle Open Office Impress : predictive text, see also AutoCorrect function/AutoFill function/AutoInput function/word completion/text completion +Oracle Open Office Impress : presentations +Oracle Open Office Impress : presentations;arranging slides +Oracle Open Office Impress : presentations;creating/opening +Oracle Open Office Impress : presentations;exiting by interaction +Oracle Open Office Impress : presentations;exporting to HTML +Oracle Open Office Impress : presentations;importing HTML +Oracle Open Office Impress : presentations;inserting spreadsheet cells +Oracle Open Office Impress : presentations;inserting spreadsheets +Oracle Open Office Impress : presentations;live on the Internet +Oracle Open Office Impress : presentations;navigating +Oracle Open Office Impress : presentations;numbering slides in +Oracle Open Office Impress : presentations;ordering of effects +Oracle Open Office Impress : presentations;print menu +Oracle Open Office Impress : presentations;printing +Oracle Open Office Impress : presentations;rehearse timings +Oracle Open Office Impress : presentations;saving +Oracle Open Office Impress : presentations;saving automatically +Oracle Open Office Impress : presentations;saving in other formats +Oracle Open Office Impress : presentations;sending as e-mail +Oracle Open Office Impress : presentations;settings for +Oracle Open Office Impress : presentations;shortcut keys +Oracle Open Office Impress : presentations;starting +Oracle Open Office Impress : presentations;starting with wizard +Oracle Open Office Impress : presentations;window / full screen +Oracle Open Office Impress : presentations;wizards +Oracle Open Office Impress : press buttons, see push buttons +Oracle Open Office Impress : previews +Oracle Open Office Impress : previews;fonts lists +Oracle Open Office Impress : primary keys +Oracle Open Office Impress : primary keys;defining +Oracle Open Office Impress : primary keys;design view +Oracle Open Office Impress : primary keys;inserting (Base) +Oracle Open Office Impress : print area selection +Oracle Open Office Impress : printer metrics for document formatting (Writer) +Oracle Open Office Impress : printers +Oracle Open Office Impress : printers;adding, UNIX +Oracle Open Office Impress : printers;choosing +Oracle Open Office Impress : printers;default printer +Oracle Open Office Impress : printers;faxes under UNIX +Oracle Open Office Impress : printers;maximum page formats +Oracle Open Office Impress : printers;paper trays +Oracle Open Office Impress : printers;properties +Oracle Open Office Impress : printing +Oracle Open Office Impress : printing;black and white +Oracle Open Office Impress : printing;brochures +Oracle Open Office Impress : printing;colors in grayscale +Oracle Open Office Impress : printing;comments +Oracle Open Office Impress : printing;copies +Oracle Open Office Impress : printing;creating individual jobs +Oracle Open Office Impress : printing;dates in presentations +Oracle Open Office Impress : printing;directly +Oracle Open Office Impress : printing;documents +Oracle Open Office Impress : printing;drawings defaults +Oracle Open Office Impress : printing;elements in text documents +Oracle Open Office Impress : printing;faster +Oracle Open Office Impress : printing;fitting to pages in Oracle Open Office Math +Oracle Open Office Impress : printing;fitting to pages in presentations +Oracle Open Office Impress : printing;fitting to paper +Oracle Open Office Impress : printing;formulas in Oracle Open Office Math +Oracle Open Office Impress : printing;hidden pages of presentations +Oracle Open Office Impress : printing;in original size in Oracle Open Office Math +Oracle Open Office Impress : printing;left/right pages +Oracle Open Office Impress : printing;presentations +Oracle Open Office Impress : printing;queries (Base) +Oracle Open Office Impress : printing;scaling in Oracle Open Office Math +Oracle Open Office Impress : printing;selections +Oracle Open Office Impress : printing;text always in black +Oracle Open Office Impress : printing;text in reverse order +Oracle Open Office Impress : printing;tiling pages in presentations +Oracle Open Office Impress : printing;transparencies +Oracle Open Office Impress : printing;warnings +Oracle Open Office Impress : printing;without scaling in presentations +Oracle Open Office Impress : printing speed +Oracle Open Office Impress : programming +Oracle Open Office Impress : programming;Oracle Open Office +Oracle Open Office Impress : programming;scripting +Oracle Open Office Impress : programs run by mouse click in presentations +Oracle Open Office Impress : properties +Oracle Open Office Impress : properties;charts +Oracle Open Office Impress : properties;fields in databases +Oracle Open Office Impress : properties;files +Oracle Open Office Impress : properties;form controls +Oracle Open Office Impress : properties;forms +Oracle Open Office Impress : properties;hotspots +Oracle Open Office Impress : properties;printers +Oracle Open Office Impress : properties;smooth lines in line charts/XY charts +Oracle Open Office Impress : protected contents +Oracle Open Office Impress : protected dashes +Oracle Open Office Impress : protected database tables +Oracle Open Office Impress : protected documents +Oracle Open Office Impress : protected spaces +Oracle Open Office Impress : protected spaces;inserting +Oracle Open Office Impress : protected spaces;showing (Writer) +Oracle Open Office Impress : protecting +Oracle Open Office Impress : protecting;contents +Oracle Open Office Impress : protecting;recorded changes +Oracle Open Office Impress : proxy settings +Oracle Open Office Impress : push buttons +Oracle Open Office Impress : push buttons;adding to documents +Oracle Open Office Impress : push buttons;creating +Oracle Open Office Impress : pyramids +Oracle Open Office Impress : queries +Oracle Open Office Impress : queries;copying (Base) +Oracle Open Office Impress : queries;creating in design view (Base) +Oracle Open Office Impress : queries;creating in SQL view +Oracle Open Office Impress : queries;defining (Base) +Oracle Open Office Impress : queries;deleting table links (Base) +Oracle Open Office Impress : queries;editing in data source view +Oracle Open Office Impress : queries;formulating filter conditions (Base) +Oracle Open Office Impress : queries;joining tables (Base) +Oracle Open Office Impress : queries;missing elements (Base) +Oracle Open Office Impress : queries;overview (Base) +Oracle Open Office Impress : queries;parameter queries (Base) +Oracle Open Office Impress : queries;printing (Base) +Oracle Open Office Impress : Query Wizard (Base) +Oracle Open Office Impress : Quickstarter +Oracle Open Office Impress : quotes +Oracle Open Office Impress : quotes;custom +Oracle Open Office Impress : radar charts, see net charts +Oracle Open Office Impress : radio button creation +Oracle Open Office Impress : read-only documents +Oracle Open Office Impress : read-only documents;cursor +Oracle Open Office Impress : read-only documents;database tables on/off +Oracle Open Office Impress : read-only documents;editing +Oracle Open Office Impress : read-only documents;opening documents as +Oracle Open Office Impress : read-only items in Data Navigator +Oracle Open Office Impress : recognizing URLs automatically +Oracle Open Office Impress : recording +Oracle Open Office Impress : recording;changes +Oracle Open Office Impress : recording;display times for slides +Oracle Open Office Impress : recording;macros +Oracle Open Office Impress : records +Oracle Open Office Impress : records;inserting comments +Oracle Open Office Impress : records;protecting +Oracle Open Office Impress : records;saving +Oracle Open Office Impress : records;searching in databases +Oracle Open Office Impress : rectangle drawing +Oracle Open Office Impress : rectangles +Oracle Open Office Impress : rectangles with round corners +Oracle Open Office Impress : recursions in spreadsheets +Oracle Open Office Impress : redo command +Oracle Open Office Impress : reduced printing +Oracle Open Office Impress : reference lines +Oracle Open Office Impress : references +Oracle Open Office Impress : references;displaying in color (Calc) +Oracle Open Office Impress : references;expanding (Calc) +Oracle Open Office Impress : references;iterative (Calc) +Oracle Open Office Impress : register-true +Oracle Open Office Impress : register-true;definition +Oracle Open Office Impress : registering +Oracle Open Office Impress : registering;address books +Oracle Open Office Impress : registering;databases (Base) +Oracle Open Office Impress : registering;Oracle Open Office +Oracle Open Office Impress : regression curves in charts +Oracle Open Office Impress : regular expressions +Oracle Open Office Impress : regular expressions;list of +Oracle Open Office Impress : rehearse timings +Oracle Open Office Impress : relational databases (Base) +Oracle Open Office Impress : relations +Oracle Open Office Impress : relations;creating and deleting (Base) +Oracle Open Office Impress : relations;joining tables (Base) +Oracle Open Office Impress : relations;properties (Base) +Oracle Open Office Impress : relative hyperlinks +Oracle Open Office Impress : relative saving of URLs +Oracle Open Office Impress : reloading +Oracle Open Office Impress : reloading;documents +Oracle Open Office Impress : reloading;HTML documents, automatically +Oracle Open Office Impress : remarks, see also comments +Oracle Open Office Impress : remote configurations +Oracle Open Office Impress : remove noise filter +Oracle Open Office Impress : removing +Oracle Open Office Impress : removing;bullets and numbering +Oracle Open Office Impress : removing;form filters +Oracle Open Office Impress : removing, see also deleting +Oracle Open Office Impress : renaming layers +Oracle Open Office Impress : reorganizing charts +Oracle Open Office Impress : repeating +Oracle Open Office Impress : repeating;commands +Oracle Open Office Impress : replacement options +Oracle Open Office Impress : replacement table +Oracle Open Office Impress : replacing +Oracle Open Office Impress : replacing;AutoCorrect function +Oracle Open Office Impress : replacing;colors in bitmaps +Oracle Open Office Impress : replacing;dashes +Oracle Open Office Impress : replacing;ordinal numbers +Oracle Open Office Impress : replacing;tab stops (regular expressions) +Oracle Open Office Impress : Report Builder +Oracle Open Office Impress : reports +Oracle Open Office Impress : reports;creating +Oracle Open Office Impress : reports;error reports +Oracle Open Office Impress : reports;opening and editing +Oracle Open Office Impress : reports;templates +Oracle Open Office Impress : resetting +Oracle Open Office Impress : resetting;templates +Oracle Open Office Impress : resizing +Oracle Open Office Impress : resizing;objects, by mouse +Oracle Open Office Impress : resizing, see also scaling/zooming +Oracle Open Office Impress : resolution when printing bitmaps +Oracle Open Office Impress : restoring +Oracle Open Office Impress : restoring;default formatting +Oracle Open Office Impress : restoring;editing +Oracle Open Office Impress : reversing objects +Oracle Open Office Impress : reversing printing order +Oracle Open Office Impress : review function +Oracle Open Office Impress : review function;accepting or rejecting changes +Oracle Open Office Impress : review function;comparing documents +Oracle Open Office Impress : review function;protecting records +Oracle Open Office Impress : review function;recording changes example +Oracle Open Office Impress : review function;tracking changes +Oracle Open Office Impress : rich text control +Oracle Open Office Impress : right alignment of paragraphs +Oracle Open Office Impress : right joins (Base) +Oracle Open Office Impress : right-to-left text +Oracle Open Office Impress : rotating +Oracle Open Office Impress : rotating;3D text +Oracle Open Office Impress : rotating;draw objects +Oracle Open Office Impress : rotation mode +Oracle Open Office Impress : round corners +Oracle Open Office Impress : rounding precision (Calc) +Oracle Open Office Impress : row headers +Oracle Open Office Impress : row headers;displaying (Calc) +Oracle Open Office Impress : row headers;highlighting (Calc) +Oracle Open Office Impress : rows +Oracle Open Office Impress : rows;inserting +Oracle Open Office Impress : rulers +Oracle Open Office Impress : rulers;default settings +Oracle Open Office Impress : rulers;in presentations +Oracle Open Office Impress : rulers;measurement units +Oracle Open Office Impress : rulers;visible in presentations +Oracle Open Office Impress : running macros/programs in presentations +Oracle Open Office Impress : running slide shows +Oracle Open Office Impress : samples and templates +Oracle Open Office Impress : saving +Oracle Open Office Impress : saving;as HTML +Oracle Open Office Impress : saving;default file formats +Oracle Open Office Impress : saving;dialog settings +Oracle Open Office Impress : saving;documents +Oracle Open Office Impress : saving;documents for mobile devices +Oracle Open Office Impress : saving;documents in other formats +Oracle Open Office Impress : saving;documents, automatically +Oracle Open Office Impress : saving;in Microsoft Office file format +Oracle Open Office Impress : saving;options +Oracle Open Office Impress : saving;templates +Oracle Open Office Impress : saving;to XML +Oracle Open Office Impress : saving;VBA code in Microsoft Office documents +Oracle Open Office Impress : saving;with password by default +Oracle Open Office Impress : saving as command +Oracle Open Office Impress : saving as command;precautions +Oracle Open Office Impress : scaling +Oracle Open Office Impress : scaling;axes +Oracle Open Office Impress : scaling;font sizes in user interface +Oracle Open Office Impress : scaling;objects +Oracle Open Office Impress : scaling;pictures +Oracle Open Office Impress : scaling;printing in Oracle Open Office Math +Oracle Open Office Impress : scaling;text in charts +Oracle Open Office Impress : scaling;when printing presentations +Oracle Open Office Impress : scaling, see also zooming +Oracle Open Office Impress : scatter charts +Oracle Open Office Impress : screen +Oracle Open Office Impress : screen;full screen views +Oracle Open Office Impress : screen;scaling +Oracle Open Office Impress : screen magnifiers +Oracle Open Office Impress : screen readers +Oracle Open Office Impress : script organization +Oracle Open Office Impress : scrollbars +Oracle Open Office Impress : scrollbars;controls +Oracle Open Office Impress : scrollbars;displaying (Calc) +Oracle Open Office Impress : scrollbars;horizontal and vertical (Writer) +Oracle Open Office Impress : search criteria for database functions in cells +Oracle Open Office Impress : search engines +Oracle Open Office Impress : search engines;definition +Oracle Open Office Impress : search engines;selecting +Oracle Open Office Impress : searching +Oracle Open Office Impress : searching;all sheets +Oracle Open Office Impress : searching;databases +Oracle Open Office Impress : searching;form filters +Oracle Open Office Impress : searching;Internet +Oracle Open Office Impress : searching;tables and forms +Oracle Open Office Impress : secondary axes in charts +Oracle Open Office Impress : sections +Oracle Open Office Impress : sections;backgrounds +Oracle Open Office Impress : sectors of circles/ellipses +Oracle Open Office Impress : security +Oracle Open Office Impress : security;digital signatures +Oracle Open Office Impress : security;options for documents with macros +Oracle Open Office Impress : security;protecting contents +Oracle Open Office Impress : security;security levels for macros +Oracle Open Office Impress : security;warning dialogs with macros +Oracle Open Office Impress : segments of circles/ellipses +Oracle Open Office Impress : selecting +Oracle Open Office Impress : selecting;controls +Oracle Open Office Impress : selecting;hidden objects +Oracle Open Office Impress : selecting;layers +Oracle Open Office Impress : selecting;measurement units +Oracle Open Office Impress : selecting;objects +Oracle Open Office Impress : selecting;print areas +Oracle Open Office Impress : selecting;several files +Oracle Open Office Impress : selection clipboard +Oracle Open Office Impress : selection frames +Oracle Open Office Impress : selection modes in text +Oracle Open Office Impress : sending +Oracle Open Office Impress : sending;AutoAbstract function in presentations +Oracle Open Office Impress : sending;documents as e-mail +Oracle Open Office Impress : sending;documents as faxes +Oracle Open Office Impress : separator lines +Oracle Open Office Impress : separator lines;defining +Oracle Open Office Impress : separators +Oracle Open Office Impress : separators;conditional +Oracle Open Office Impress : Server Side ImageMap +Oracle Open Office Impress : settings +Oracle Open Office Impress : settings;printers +Oracle Open Office Impress : settings;program configuration +Oracle Open Office Impress : settings;proxies +Oracle Open Office Impress : settings;views +Oracle Open Office Impress : SGML +Oracle Open Office Impress : SGML;definition +Oracle Open Office Impress : shadows +Oracle Open Office Impress : shadows;areas +Oracle Open Office Impress : shadows;borders +Oracle Open Office Impress : shadows;characters +Oracle Open Office Impress : shadows;characters, using context menu +Oracle Open Office Impress : shapes +Oracle Open Office Impress : sharing documents +Oracle Open Office Impress : sharpening filter +Oracle Open Office Impress : shearing objects +Oracle Open Office Impress : sheet tabs +Oracle Open Office Impress : sheet tabs;displaying +Oracle Open Office Impress : sheets +Oracle Open Office Impress : sheets;searching all +Oracle Open Office Impress : shells +Oracle Open Office Impress : shortcut keys +Oracle Open Office Impress : shortcut keys;assigning macros +Oracle Open Office Impress : shortcut keys;charts +Oracle Open Office Impress : shortcut keys;general +Oracle Open Office Impress : shortcut keys;in databases +Oracle Open Office Impress : shortcut keys;in drawings +Oracle Open Office Impress : shortcut keys;in presentations +Oracle Open Office Impress : shortcut keys;Oracle Open Office accessibility +Oracle Open Office Impress : showing +Oracle Open Office Impress : showing;changes +Oracle Open Office Impress : showing;docked windows +Oracle Open Office Impress : showing;drawings and controls (Writer) +Oracle Open Office Impress : showing;guides +Oracle Open Office Impress : showing;hidden layers +Oracle Open Office Impress : showing;hidden slides +Oracle Open Office Impress : showing;levels +Oracle Open Office Impress : showing;live presentations on the Internet +Oracle Open Office Impress : showing;slide shows +Oracle Open Office Impress : showing;subpoints +Oracle Open Office Impress : showing;toolbars +Oracle Open Office Impress : sign conversion to curves +Oracle Open Office Impress : signing documents with digital signatures +Oracle Open Office Impress : similarity search +Oracle Open Office Impress : simple handles (Writer) +Oracle Open Office Impress : simplified Chinese +Oracle Open Office Impress : simplified Chinese;conversion to traditional Chinese +Oracle Open Office Impress : single sign on options +Oracle Open Office Impress : single-line spacing in text +Oracle Open Office Impress : sizes +Oracle Open Office Impress : sizes;draw objects +Oracle Open Office Impress : sizes;pictures +Oracle Open Office Impress : skewing draw objects +Oracle Open Office Impress : slanting draw objects +Oracle Open Office Impress : slanting objects +Oracle Open Office Impress : slide designs +Oracle Open Office Impress : slide layouts +Oracle Open Office Impress : slide master view +Oracle Open Office Impress : slide masters +Oracle Open Office Impress : slide masters;changing backgrounds +Oracle Open Office Impress : slide masters;designing +Oracle Open Office Impress : slide masters;headers and footers +Oracle Open Office Impress : slide numbers +Oracle Open Office Impress : slide numbers on all slides +Oracle Open Office Impress : slide shows +Oracle Open Office Impress : slide shows;custom +Oracle Open Office Impress : slide shows;settings for +Oracle Open Office Impress : slide shows;starting +Oracle Open Office Impress : slide transitions +Oracle Open Office Impress : slide transitions;applying effects +Oracle Open Office Impress : slide transitions;automatic +Oracle Open Office Impress : slide transitions;manual +Oracle Open Office Impress : slide transitions;sounds +Oracle Open Office Impress : slides +Oracle Open Office Impress : slides;arranging +Oracle Open Office Impress : slides;backgrounds +Oracle Open Office Impress : slides;changing backgrounds +Oracle Open Office Impress : slides;copying between documents +Oracle Open Office Impress : slides;deleting +Oracle Open Office Impress : slides;expanding +Oracle Open Office Impress : slides;formatting +Oracle Open Office Impress : slides;headers and footers +Oracle Open Office Impress : slides;inserting +Oracle Open Office Impress : slides;inserting as links +Oracle Open Office Impress : slides;inserting speaker notes +Oracle Open Office Impress : slides;page numbers +Oracle Open Office Impress : slides;printing +Oracle Open Office Impress : small capitals +Oracle Open Office Impress : small icons +Oracle Open Office Impress : smart tag configuration +Oracle Open Office Impress : smooth scrolling (Writer) +Oracle Open Office Impress : smoothing filter +Oracle Open Office Impress : snap grid defaults (Writer/Calc) +Oracle Open Office Impress : snap lines, see also guides +Oracle Open Office Impress : snap points +Oracle Open Office Impress : snap points;editing +Oracle Open Office Impress : snap points;inserting +Oracle Open Office Impress : snapping in presentations and drawings +Oracle Open Office Impress : solarization filter +Oracle Open Office Impress : sort lists +Oracle Open Office Impress : sort lists;copying to in Calc +Oracle Open Office Impress : sorting +Oracle Open Office Impress : sorting;data in forms +Oracle Open Office Impress : sorting;databases +Oracle Open Office Impress : sound files +Oracle Open Office Impress : sounds +Oracle Open Office Impress : sounds;for effects +Oracle Open Office Impress : sounds;formats +Oracle Open Office Impress : sounds;on slide transitions +Oracle Open Office Impress : spaces +Oracle Open Office Impress : spaces;displaying (Writer) +Oracle Open Office Impress : spaces;ignoring double +Oracle Open Office Impress : spaces;inserting protected spaces +Oracle Open Office Impress : spaces;showing protected spaces (Writer) +Oracle Open Office Impress : spacing +Oracle Open Office Impress : spacing;between paragraphs in footnotes +Oracle Open Office Impress : spacing;font effects +Oracle Open Office Impress : spacing;lines and paragraphs +Oracle Open Office Impress : spacing;tab stops in text documents +Oracle Open Office Impress : spacing;tabs in presentations +Oracle Open Office Impress : spadmin +Oracle Open Office Impress : speaker notes +Oracle Open Office Impress : speaker notes;defaults +Oracle Open Office Impress : speaker notes;inserting +Oracle Open Office Impress : special characters +Oracle Open Office Impress : speech bubbles +Oracle Open Office Impress : speed of printing +Oracle Open Office Impress : spellcheck +Oracle Open Office Impress : spellcheck;activating for a language +Oracle Open Office Impress : spellcheck;context menus +Oracle Open Office Impress : spellcheck;default languages +Oracle Open Office Impress : spellcheck;dialog +Oracle Open Office Impress : spellcheck;dictionary of exceptions +Oracle Open Office Impress : spellcheck;ignore list +Oracle Open Office Impress : spheres +Oracle Open Office Impress : spin button creation +Oracle Open Office Impress : splitting +Oracle Open Office Impress : splitting;combinations +Oracle Open Office Impress : splitting;curves +Oracle Open Office Impress : spoolfiles with Xprinter +Oracle Open Office Impress : spreadsheets +Oracle Open Office Impress : spreadsheets;as databases (base) +Oracle Open Office Impress : spreadsheets;copying areas to text documents +Oracle Open Office Impress : spreadsheets;creating/opening +Oracle Open Office Impress : spreadsheets;in presentations +Oracle Open Office Impress : spreadsheets;inserting charts +Oracle Open Office Impress : spreadsheets;inserting database records +Oracle Open Office Impress : spreadsheets;printing +Oracle Open Office Impress : spreadsheets;saving +Oracle Open Office Impress : spreadsheets;saving automatically +Oracle Open Office Impress : spreadsheets;saving in other formats +Oracle Open Office Impress : spreadsheets;sending as e-mail +Oracle Open Office Impress : SQL +Oracle Open Office Impress : SQL;definition +Oracle Open Office Impress : SQL;DISTINCT parameter +Oracle Open Office Impress : SQL;executing SQL commands +Oracle Open Office Impress : SQL;executing SQL statements (Base) +Oracle Open Office Impress : SQL;queries (Base) +Oracle Open Office Impress : square drawings +Oracle Open Office Impress : standard bar on/off +Oracle Open Office Impress : standard deviation in charts +Oracle Open Office Impress : standard filters +Oracle Open Office Impress : standard filters;comparison operators +Oracle Open Office Impress : standard filters;databases +Oracle Open Office Impress : standard printer under UNIX +Oracle Open Office Impress : start center +Oracle Open Office Impress : start parameters +Oracle Open Office Impress : starting +Oracle Open Office Impress : starting;always with the current slide +Oracle Open Office Impress : starting;custom slide shows +Oracle Open Office Impress : starting;slide shows +Oracle Open Office Impress : statistics in charts +Oracle Open Office Impress : status bar on/off +Oracle Open Office Impress : stickers +Oracle Open Office Impress : stock charts +Oracle Open Office Impress : strikethrough +Oracle Open Office Impress : strikethrough;characters +Oracle Open Office Impress : strikethrough;font effects +Oracle Open Office Impress : styles +Oracle Open Office Impress : styles;'changed' message +Oracle Open Office Impress : styles;arrow and line styles +Oracle Open Office Impress : styles;copying between documents +Oracle Open Office Impress : styles;keyboard shortcuts +Oracle Open Office Impress : styles;organizing +Oracle Open Office Impress : styles;printing styles used in a document +Oracle Open Office Impress : styles;replacing automatically +Oracle Open Office Impress : Styles and Formatting window +Oracle Open Office Impress : Styles and Formatting window;docking +Oracle Open Office Impress : Styles and Formatting window;graphics documents +Oracle Open Office Impress : subforms +Oracle Open Office Impress : subforms;creating +Oracle Open Office Impress : subforms;description +Oracle Open Office Impress : submitting forms +Oracle Open Office Impress : subpoints +Oracle Open Office Impress : subpoints;hiding +Oracle Open Office Impress : subpoints;showing +Oracle Open Office Impress : subtracting polygons +Oracle Open Office Impress : suffixes in file formats +Oracle Open Office Impress : summary slide +Oracle Open Office Impress : support on the Web +Oracle Open Office Impress : synchronizing +Oracle Open Office Impress : synchronizing;labels and business cards +Oracle Open Office Impress : synchronizing;Pocket PC and Oracle Open Office formats +Oracle Open Office Impress : system address book registration +Oracle Open Office Impress : tab stops +Oracle Open Office Impress : tab stops;displaying (Writer) +Oracle Open Office Impress : tab stops;inserting and editing +Oracle Open Office Impress : tab stops;regular expressions +Oracle Open Office Impress : tab stops;setting in sheets +Oracle Open Office Impress : tab stops;settings +Oracle Open Office Impress : tab stops;spacing in presentations +Oracle Open Office Impress : tab stops;spacing in text documents +Oracle Open Office Impress : table controls +Oracle Open Office Impress : table controls;form functions +Oracle Open Office Impress : table controls;keyboard-only edit mode +Oracle Open Office Impress : table controls;properties +Oracle Open Office Impress : table views of databases +Oracle Open Office Impress : Table Wizard (Base) +Oracle Open Office Impress : tables +Oracle Open Office Impress : tables;inserting line breaks +Oracle Open Office Impress : tables in databases +Oracle Open Office Impress : tables in databases;access rights to (Base) +Oracle Open Office Impress : tables in databases;adding to queries +Oracle Open Office Impress : tables in databases;browsing and editing +Oracle Open Office Impress : tables in databases;copying database tables (Base) +Oracle Open Office Impress : tables in databases;creating +Oracle Open Office Impress : tables in databases;creating in design view (manually) +Oracle Open Office Impress : tables in databases;importing text formats (Base) +Oracle Open Office Impress : tables in databases;joining for queries (Base) +Oracle Open Office Impress : tables in databases;printing queries (Base) +Oracle Open Office Impress : tables in databases;relations (Base) +Oracle Open Office Impress : tables in databases;searching +Oracle Open Office Impress : tables in spreadsheets +Oracle Open Office Impress : tables in spreadsheets;copying data to other applications +Oracle Open Office Impress : tables in spreadsheets;defining borders +Oracle Open Office Impress : tables in spreadsheets;value highlighting +Oracle Open Office Impress : tables in text +Oracle Open Office Impress : tables in text;captions +Oracle Open Office Impress : tables in text;creating automatically +Oracle Open Office Impress : tables in text;default settings +Oracle Open Office Impress : tables in text;defining borders +Oracle Open Office Impress : tables in text;displaying +Oracle Open Office Impress : tables in text;printing +Oracle Open Office Impress : tabs +Oracle Open Office Impress : tabs;displaying sheet tabs +Oracle Open Office Impress : tags +Oracle Open Office Impress : tags;definition +Oracle Open Office Impress : tags;META tags +Oracle Open Office Impress : task pane +Oracle Open Office Impress : templates +Oracle Open Office Impress : templates;agendas +Oracle Open Office Impress : templates;changing basic fonts +Oracle Open Office Impress : templates;database reports +Oracle Open Office Impress : templates;deleting +Oracle Open Office Impress : templates;editing and saving +Oracle Open Office Impress : templates;faxes +Oracle Open Office Impress : templates;importing and exporting +Oracle Open Office Impress : templates;letters +Oracle Open Office Impress : templates;new documents from templates +Oracle Open Office Impress : templates;opening documents with +Oracle Open Office Impress : templates;organizing +Oracle Open Office Impress : terminology +Oracle Open Office Impress : terminology;general glossary +Oracle Open Office Impress : terminology;Internet glossary +Oracle Open Office Impress : testing XML filters +Oracle Open Office Impress : text +Oracle Open Office Impress : text;animating +Oracle Open Office Impress : text;Asian layout +Oracle Open Office Impress : text;bold +Oracle Open Office Impress : text;coloring +Oracle Open Office Impress : text;converting to curves +Oracle Open Office Impress : text;copying by drag and drop +Oracle Open Office Impress : text;CTL languages +Oracle Open Office Impress : text;double-clicking to edit +Oracle Open Office Impress : text;drawing pictures +Oracle Open Office Impress : text;font effects +Oracle Open Office Impress : text;font sizes +Oracle Open Office Impress : text;font styles +Oracle Open Office Impress : text;fonts and formats +Oracle Open Office Impress : text;Fontwork icons +Oracle Open Office Impress : text;hyperlinks +Oracle Open Office Impress : text;inserting special characters +Oracle Open Office Impress : text;italics +Oracle Open Office Impress : text;kerning +Oracle Open Office Impress : text;language selection +Oracle Open Office Impress : text;line spacing +Oracle Open Office Impress : text;overwriting or inserting +Oracle Open Office Impress : text;printing in black +Oracle Open Office Impress : text;replacing with format +Oracle Open Office Impress : text;selection modes +Oracle Open Office Impress : text;shadowed +Oracle Open Office Impress : text;text/draw objects +Oracle Open Office Impress : text;toolbar +Oracle Open Office Impress : text attributes +Oracle Open Office Impress : text attributes;hyperlinks +Oracle Open Office Impress : text attributes;undoing +Oracle Open Office Impress : text boxes +Oracle Open Office Impress : text boxes;form functions +Oracle Open Office Impress : text boxes;positioning +Oracle Open Office Impress : text breaks in cells +Oracle Open Office Impress : text colors for better accessibility +Oracle Open Office Impress : text databases (Base) +Oracle Open Office Impress : text documents +Oracle Open Office Impress : text documents;creating/opening +Oracle Open Office Impress : text documents;importing/exporting +Oracle Open Office Impress : text documents;inserting in slides +Oracle Open Office Impress : text documents;inserting spreadsheet cells +Oracle Open Office Impress : text documents;print settings +Oracle Open Office Impress : text documents;printing +Oracle Open Office Impress : text documents;saving +Oracle Open Office Impress : text documents;saving automatically +Oracle Open Office Impress : text documents;saving in other formats +Oracle Open Office Impress : text documents;sending as e-mail +Oracle Open Office Impress : text effects +Oracle Open Office Impress : text entry mode for draw objects +Oracle Open Office Impress : text flow +Oracle Open Office Impress : text flow;in cells +Oracle Open Office Impress : text formats +Oracle Open Office Impress : text formats;databases +Oracle Open Office Impress : text formats;pasting +Oracle Open Office Impress : text frames +Oracle Open Office Impress : text input fields +Oracle Open Office Impress : text layout for special languages +Oracle Open Office Impress : text objects +Oracle Open Office Impress : text objects;alignment +Oracle Open Office Impress : text objects;draw functions +Oracle Open Office Impress : text objects;fonts +Oracle Open Office Impress : text objects;in presentations and drawings +Oracle Open Office Impress : text overflow in spreadsheet cells +Oracle Open Office Impress : text scaling in charts +Oracle Open Office Impress : text, see also text documents, paragraphs and characters +Oracle Open Office Impress : TextArt, see Fontwork +Oracle Open Office Impress : textures +Oracle Open Office Impress : textures;inserting from Gallery +Oracle Open Office Impress : textures;on chart bars +Oracle Open Office Impress : Thai +Oracle Open Office Impress : Thai;entering text +Oracle Open Office Impress : Thai;language settings +Oracle Open Office Impress : thesaurus +Oracle Open Office Impress : thesaurus;activating for a language +Oracle Open Office Impress : ticker text +Oracle Open Office Impress : tiled printing of slides +Oracle Open Office Impress : time and date on all slides +Oracle Open Office Impress : time fields +Oracle Open Office Impress : time fields;form functions +Oracle Open Office Impress : times +Oracle Open Office Impress : times;fixed +Oracle Open Office Impress : times;inserting when printing presentations +Oracle Open Office Impress : times;variable +Oracle Open Office Impress : times, formats +Oracle Open Office Impress : timings +Oracle Open Office Impress : timings;rehearse timings +Oracle Open Office Impress : tips +Oracle Open Office Impress : tips;extended tips in Help +Oracle Open Office Impress : title rows +Oracle Open Office Impress : title rows;printing in Oracle Open Office Math +Oracle Open Office Impress : titles +Oracle Open Office Impress : titles;alignment (charts) +Oracle Open Office Impress : titles;changing +Oracle Open Office Impress : titles;editing in charts +Oracle Open Office Impress : titles;font effects +Oracle Open Office Impress : titles;formatting automatically +Oracle Open Office Impress : titles;formatting charts +Oracle Open Office Impress : titles;objects +Oracle Open Office Impress : toolbars +Oracle Open Office Impress : toolbars;3D objects +Oracle Open Office Impress : toolbars;adding buttons +Oracle Open Office Impress : toolbars;curves +Oracle Open Office Impress : toolbars;docking/undocking +Oracle Open Office Impress : toolbars;ellipses +Oracle Open Office Impress : toolbars;Form Navigation bar +Oracle Open Office Impress : toolbars;viewing/closing +Oracle Open Office Impress : tools bar +Oracle Open Office Impress : tooltips +Oracle Open Office Impress : tooltips;extended tips +Oracle Open Office Impress : tooltips;help +Oracle Open Office Impress : torus +Oracle Open Office Impress : Track Changes, see review function +Oracle Open Office Impress : traditional Chinese +Oracle Open Office Impress : traditional Chinese;conversion to simplified Chinese +Oracle Open Office Impress : transition effects +Oracle Open Office Impress : transparency +Oracle Open Office Impress : transparency;adjusting +Oracle Open Office Impress : transparency;areas +Oracle Open Office Impress : transparency;of objects +Oracle Open Office Impress : transparency;off for faster printing +Oracle Open Office Impress : transparency;saving +Oracle Open Office Impress : tree view of Help +Oracle Open Office Impress : trend lines in charts +Oracle Open Office Impress : triangle drawing +Oracle Open Office Impress : typefaces +Oracle Open Office Impress : typefaces;formats +Oracle Open Office Impress : typography +Oracle Open Office Impress : typography;Asian +Oracle Open Office Impress : underlining +Oracle Open Office Impress : underlining;AutoFormat function +Oracle Open Office Impress : underlining;characters +Oracle Open Office Impress : underlining;text +Oracle Open Office Impress : underlying objects +Oracle Open Office Impress : undocking windows +Oracle Open Office Impress : undoing +Oracle Open Office Impress : undoing;direct formatting +Oracle Open Office Impress : undoing;editing +Oracle Open Office Impress : undoing;number of steps +Oracle Open Office Impress : ungrouping groups +Oracle Open Office Impress : units +Oracle Open Office Impress : units;converting +Oracle Open Office Impress : units;measurement units +Oracle Open Office Impress : unlocking layers +Oracle Open Office Impress : UNO components +Oracle Open Office Impress : UNO components;Extension Manager +Oracle Open Office Impress : UNO components;integrating new +Oracle Open Office Impress : update options +Oracle Open Office Impress : updates +Oracle Open Office Impress : updates;checking automatically +Oracle Open Office Impress : updates;checking manually +Oracle Open Office Impress : updating +Oracle Open Office Impress : updating;fields and charts, automatically (Writer) +Oracle Open Office Impress : updating;links in text documents +Oracle Open Office Impress : updating;links, on opening +Oracle Open Office Impress : updating;templates +Oracle Open Office Impress : URL +Oracle Open Office Impress : URL;changing hyperlink URLs +Oracle Open Office Impress : URL;definition +Oracle Open Office Impress : URL;in pictures +Oracle Open Office Impress : URL;saving absolute/relative paths +Oracle Open Office Impress : URL;turning off URL recognition +Oracle Open Office Impress : user data +Oracle Open Office Impress : user data;input +Oracle Open Office Impress : user data;removing when saving +Oracle Open Office Impress : user feedback +Oracle Open Office Impress : user feedback;automatically +Oracle Open Office Impress : user-defined colors +Oracle Open Office Impress : user-defined dictionaries +Oracle Open Office Impress : user-defined dictionaries;creating +Oracle Open Office Impress : user-defined dictionaries;dictionary of exceptions +Oracle Open Office Impress : user-defined dictionaries;editing +Oracle Open Office Impress : user-defined styles +Oracle Open Office Impress : user-defined styles;automatically replacing +Oracle Open Office Impress : UTF-8/UCS2 support +Oracle Open Office Impress : values +Oracle Open Office Impress : values;rounded as shown (Calc) +Oracle Open Office Impress : variables +Oracle Open Office Impress : variables;for paths +Oracle Open Office Impress : variances in charts +Oracle Open Office Impress : VBA code +Oracle Open Office Impress : VBA code;loading/saving documents with VBA code +Oracle Open Office Impress : vector graphics +Oracle Open Office Impress : vector graphics;converting bitmaps +Oracle Open Office Impress : vectorizing bitmaps +Oracle Open Office Impress : version management +Oracle Open Office Impress : version numbers of documents +Oracle Open Office Impress : versions +Oracle Open Office Impress : versions;comparing documents +Oracle Open Office Impress : versions;file saving as, restriction +Oracle Open Office Impress : versions;merging document versions +Oracle Open Office Impress : versions;of a document +Oracle Open Office Impress : versions;Oracle Open Office +Oracle Open Office Impress : vertical callouts +Oracle Open Office Impress : vertical scrollbars (Writer) +Oracle Open Office Impress : vertical text boxes +Oracle Open Office Impress : videos +Oracle Open Office Impress : viewing +Oracle Open Office Impress : viewing;databases +Oracle Open Office Impress : viewing;file properties +Oracle Open Office Impress : viewing;Oracle Open Office documents in Internet Explorer +Oracle Open Office Impress : viewing;toolbars +Oracle Open Office Impress : views +Oracle Open Office Impress : views;black and white +Oracle Open Office Impress : views;creating database views (Base) +Oracle Open Office Impress : views;defaults +Oracle Open Office Impress : views;display sizes +Oracle Open Office Impress : views;full screen +Oracle Open Office Impress : views;icons +Oracle Open Office Impress : views;scaling +Oracle Open Office Impress : views;shift function +Oracle Open Office Impress : views;slide master view +Oracle Open Office Impress : Visual Basic for Applications +Oracle Open Office Impress : Visual Basic for Applications;loading/saving documents with VBA code +Oracle Open Office Impress : watermarks +Oracle Open Office Impress : web documents +Oracle Open Office Impress : web documents;XForms +Oracle Open Office Impress : Web support +Oracle Open Office Impress : WebCast export +Oracle Open Office Impress : WebDAV over HTTPS +Oracle Open Office Impress : windows +Oracle Open Office Impress : windows;docking +Oracle Open Office Impress : windows;docking definition +Oracle Open Office Impress : windows;hiding/showing/docking +Oracle Open Office Impress : windows;new +Oracle Open Office Impress : wizards +Oracle Open Office Impress : wizards;agendas +Oracle Open Office Impress : wizards;database queries +Oracle Open Office Impress : wizards;database tables (Base) +Oracle Open Office Impress : wizards;databases (Base) +Oracle Open Office Impress : wizards;document converter +Oracle Open Office Impress : wizards;Euro Converter +Oracle Open Office Impress : wizards;faxes +Oracle Open Office Impress : wizards;forms +Oracle Open Office Impress : wizards;letters +Oracle Open Office Impress : wizards;macros (Base) +Oracle Open Office Impress : wizards;overview +Oracle Open Office Impress : wizards;presentations +Oracle Open Office Impress : wizards;reports +Oracle Open Office Impress : Word documents +Oracle Open Office Impress : Word documents;compatibility +Oracle Open Office Impress : Word documents;saving as +Oracle Open Office Impress : WordArt, see Fontwork +Oracle Open Office Impress : words +Oracle Open Office Impress : words;automatically replacing +Oracle Open Office Impress : words;wrapping in cells +Oracle Open Office Impress : words;wrapping in CTL +Oracle Open Office Impress : working directory change +Oracle Open Office Impress : wrapping text +Oracle Open Office Impress : wrapping text;in cells +Oracle Open Office Impress : write protection on/off +Oracle Open Office Impress : writing aids options +Oracle Open Office Impress : WYSIWYG in fonts lists +Oracle Open Office Impress : X axes +Oracle Open Office Impress : X axes;grid formatting +Oracle Open Office Impress : X axes;positioning +Oracle Open Office Impress : X axes;scaling +Oracle Open Office Impress : X axes;showing +Oracle Open Office Impress : XForms +Oracle Open Office Impress : XForms;adding/editing/deleting/organizing namespaces +Oracle Open Office Impress : XForms;conditions +Oracle Open Office Impress : XForms;opening/editing +Oracle Open Office Impress : XML converters +Oracle Open Office Impress : XML file formats +Oracle Open Office Impress : XML filters +Oracle Open Office Impress : XML filters;creating/testing +Oracle Open Office Impress : XML filters;saving as package/installing/deleting +Oracle Open Office Impress : XML filters;settings +Oracle Open Office Impress : XML Forms, see XForms +Oracle Open Office Impress : XSLT filters, see also XML filters +Oracle Open Office Impress : XY charts +Oracle Open Office Impress : Y axes +Oracle Open Office Impress : Y axes;formatting +Oracle Open Office Impress : Y axes;grid formatting +Oracle Open Office Impress : Y axes;positioning +Oracle Open Office Impress : Y axes;scaling +Oracle Open Office Impress : Y axes;showing +Oracle Open Office Impress : years +Oracle Open Office Impress : years;2-digit options +Oracle Open Office Impress : Z axes +Oracle Open Office Impress : Z axes;grid formatting +Oracle Open Office Impress : Z axes;showing +Oracle Open Office Impress : zero values +Oracle Open Office Impress : zero values;displaying (Calc) +Oracle Open Office Impress : zooming +Oracle Open Office Impress : zooming;in presentations +Oracle Open Office Impress : zooming;keyboard +Oracle Open Office Impress : zooming;page views +Oracle Open Office Impress : zooming;pictures +Oracle Open Office Impress : zooming;shortcut keys +Oracle Open Office Impress : zooming;status bar +Oracle Open Office Chart : 3D charts +Oracle Open Office Chart : 3D text creation +Oracle Open Office Chart : abbreviation replacement +Oracle Open Office Chart : absolute hyperlinks +Oracle Open Office Chart : absolute saving of URLs +Oracle Open Office Chart : accents +Oracle Open Office Chart : Access databases (base) +Oracle Open Office Chart : access rights for database tables (Base) +Oracle Open Office Chart : accessibility +Oracle Open Office Chart : accessibility;general shortcuts +Oracle Open Office Chart : accessibility;options +Oracle Open Office Chart : accessibility;Oracle Open Office assistive technology +Oracle Open Office Chart : accessibility;Oracle Open Office features +Oracle Open Office Chart : activating +Oracle Open Office Chart : activating;context menus +Oracle Open Office Chart : activating;Error Report Tool +Oracle Open Office Chart : activating;extended help tips +Oracle Open Office Chart : activating;plug-ins +Oracle Open Office Chart : ActiveX control +Oracle Open Office Chart : Adabas D databases (base) +Oracle Open Office Chart : add-ons, see UNO components +Oracle Open Office Chart : additional selection mode +Oracle Open Office Chart : address books +Oracle Open Office Chart : address books;LDAP server (Base) +Oracle Open Office Chart : address books;registering +Oracle Open Office Chart : address labels from databases +Oracle Open Office Chart : ADO databases (Base) +Oracle Open Office Chart : Agenda Wizard +Oracle Open Office Chart : aging filter +Oracle Open Office Chart : aligning +Oracle Open Office Chart : aligning;2D charts +Oracle Open Office Chart : aligning;cells +Oracle Open Office Chart : aligning;objects +Oracle Open Office Chart : aligning;paragraphs +Oracle Open Office Chart : aligning;tables in text +Oracle Open Office Chart : aligning;text objects +Oracle Open Office Chart : aligning;titles in charts +Oracle Open Office Chart : alternative fonts +Oracle Open Office Chart : ampersand symbol, see also operators +Oracle Open Office Chart : anchors +Oracle Open Office Chart : anchors;changing +Oracle Open Office Chart : anchors;displaying (Calc) +Oracle Open Office Chart : anchors;types/positions for draw objects +Oracle Open Office Chart : animations +Oracle Open Office Chart : animations;accessibility options +Oracle Open Office Chart : appearance options +Oracle Open Office Chart : Arabic +Oracle Open Office Chart : Arabic;entering text +Oracle Open Office Chart : Arabic;language settings +Oracle Open Office Chart : area charts +Oracle Open Office Chart : areas +Oracle Open Office Chart : areas;bitmap patterns +Oracle Open Office Chart : areas;hatched/dotted +Oracle Open Office Chart : areas;shadows +Oracle Open Office Chart : areas;slanting +Oracle Open Office Chart : areas;styles +Oracle Open Office Chart : areas;transparency +Oracle Open Office Chart : arguments in command line +Oracle Open Office Chart : arranging +Oracle Open Office Chart : arranging;objects +Oracle Open Office Chart : arrows +Oracle Open Office Chart : arrows;defining arrow heads +Oracle Open Office Chart : arrows;defining arrow lines +Oracle Open Office Chart : arrows;drawing in text +Oracle Open Office Chart : ASCII +Oracle Open Office Chart : ASCII;definition +Oracle Open Office Chart : Asian languages +Oracle Open Office Chart : Asian languages;enabling +Oracle Open Office Chart : Asian Phonetic Guide +Oracle Open Office Chart : Asian typography +Oracle Open Office Chart : assigning scripts +Oracle Open Office Chart : assistive technology in Oracle Open Office +Oracle Open Office Chart : attaching toolbars +Oracle Open Office Chart : attachments in e-mails +Oracle Open Office Chart : audio +Oracle Open Office Chart : auto reloading HTML documents +Oracle Open Office Chart : AutoAbstract function for sending text to presentations +Oracle Open Office Chart : AutoCaption function in Oracle Open Office Writer +Oracle Open Office Chart : AutoComplete function in text and list boxes +Oracle Open Office Chart : AutoCorrect function +Oracle Open Office Chart : AutoCorrect function;context menu +Oracle Open Office Chart : AutoCorrect function;options +Oracle Open Office Chart : AutoCorrect function;pictures and frames +Oracle Open Office Chart : AutoCorrect function;quotes +Oracle Open Office Chart : AutoCorrect function;replacement table +Oracle Open Office Chart : AutoCorrect function;switching on and off +Oracle Open Office Chart : AutoCorrect function;URL recognition +Oracle Open Office Chart : automatic captions (Writer) +Oracle Open Office Chart : automatic control focus +Oracle Open Office Chart : automatic hyperlink formatting +Oracle Open Office Chart : automatic line breaks +Oracle Open Office Chart : automatic lines/borders in text +Oracle Open Office Chart : automatic saving +Oracle Open Office Chart : AutoPilots, see wizards +Oracle Open Office Chart : AutoValue (Base) +Oracle Open Office Chart : averages in charts +Oracle Open Office Chart : axes +Oracle Open Office Chart : axes;better scaling +Oracle Open Office Chart : axes;formatting +Oracle Open Office Chart : axes;formatting grids +Oracle Open Office Chart : axes;inserting grids +Oracle Open Office Chart : axes;interval marks +Oracle Open Office Chart : axes;showing axes in charts +Oracle Open Office Chart : axes in charts +Oracle Open Office Chart : backgrounds +Oracle Open Office Chart : backgrounds;defining colors/pictures +Oracle Open Office Chart : backgrounds;frames/sections/indexes +Oracle Open Office Chart : backgrounds;inserting from Gallery +Oracle Open Office Chart : backgrounds;printing +Oracle Open Office Chart : backing window +Oracle Open Office Chart : backups +Oracle Open Office Chart : backups;automatic +Oracle Open Office Chart : backups;documents +Oracle Open Office Chart : bar charts +Oracle Open Office Chart : Basic +Oracle Open Office Chart : Basic;fonts for source display +Oracle Open Office Chart : Basic;programming +Oracle Open Office Chart : Basic;recording macros +Oracle Open Office Chart : basic fonts +Oracle Open Office Chart : Bézier curves +Oracle Open Office Chart : Bézier curves;control points in presentations +Oracle Open Office Chart : bi-directional writing +Oracle Open Office Chart : binding space +Oracle Open Office Chart : bitmaps +Oracle Open Office Chart : bitmaps;inserting and editing +Oracle Open Office Chart : bitmaps;off for faster printing +Oracle Open Office Chart : bitmaps;patterns +Oracle Open Office Chart : black and white printing +Oracle Open Office Chart : black printing in Calc +Oracle Open Office Chart : block selection mode +Oracle Open Office Chart : bold +Oracle Open Office Chart : bold;AutoFormat function +Oracle Open Office Chart : bold;text +Oracle Open Office Chart : bookmarks +Oracle Open Office Chart : bookmarks;Help +Oracle Open Office Chart : borders +Oracle Open Office Chart : borders;arranging +Oracle Open Office Chart : borders;cells on screen (Calc) +Oracle Open Office Chart : borders;for paragraphs +Oracle Open Office Chart : borders;for tables +Oracle Open Office Chart : borders;shadows +Oracle Open Office Chart : borders;table boundaries (Writer) +Oracle Open Office Chart : borders, see also frames +Oracle Open Office Chart : bound fields +Oracle Open Office Chart : bound fields;controls +Oracle Open Office Chart : boundaries of tables (Writer) +Oracle Open Office Chart : break display (Writer) +Oracle Open Office Chart : brochures +Oracle Open Office Chart : brochures;printing several +Oracle Open Office Chart : bubble charts +Oracle Open Office Chart : build numbers of Oracle Open Office +Oracle Open Office Chart : bullet lists +Oracle Open Office Chart : bullet lists;formatting options +Oracle Open Office Chart : bullets +Oracle Open Office Chart : bullets;paragraphs +Oracle Open Office Chart : bullets;replacing +Oracle Open Office Chart : bullets;turning off +Oracle Open Office Chart : business cards +Oracle Open Office Chart : business cards;creating and synchronizing +Oracle Open Office Chart : business cards;using templates +Oracle Open Office Chart : button bars, see toolbars +Oracle Open Office Chart : buttons +Oracle Open Office Chart : buttons;adding push buttons +Oracle Open Office Chart : buttons;big/small +Oracle Open Office Chart : buttons;editing hyperlink buttons +Oracle Open Office Chart : buttons;form functions +Oracle Open Office Chart : buttons;toolbars +Oracle Open Office Chart : cache for graphics +Oracle Open Office Chart : calculating +Oracle Open Office Chart : calculating;iterative references (Calc) +Oracle Open Office Chart : calculating;regression curves +Oracle Open Office Chart : callouts +Oracle Open Office Chart : callouts;drawings +Oracle Open Office Chart : capital letters +Oracle Open Office Chart : capital letters;AutoCorrect function +Oracle Open Office Chart : capital letters;font effects +Oracle Open Office Chart : captions +Oracle Open Office Chart : captions;automatic captions (Writer) +Oracle Open Office Chart : captions;tables/pictures/frames/OLE objects (Writer) +Oracle Open Office Chart : captions, see also labels/callouts +Oracle Open Office Chart : cascading update (Base) +Oracle Open Office Chart : case sensitivity +Oracle Open Office Chart : case sensitivity;comparing cell contents (Calc) +Oracle Open Office Chart : case sensitivity;searching +Oracle Open Office Chart : cells +Oracle Open Office Chart : cells;aligning +Oracle Open Office Chart : cells;coloring (Calc) +Oracle Open Office Chart : cells;cursor positions after input (Calc) +Oracle Open Office Chart : cells;formatting without effect (Calc) +Oracle Open Office Chart : cells;line breaks +Oracle Open Office Chart : cells;linked to controls +Oracle Open Office Chart : cells;number of +Oracle Open Office Chart : cells;pasting +Oracle Open Office Chart : cells;resetting formats +Oracle Open Office Chart : cells;showing grid lines (Calc) +Oracle Open Office Chart : centered text +Oracle Open Office Chart : centimeters +Oracle Open Office Chart : certificates +Oracle Open Office Chart : changes +Oracle Open Office Chart : changes;accepting or rejecting +Oracle Open Office Chart : changes;comparing to original +Oracle Open Office Chart : changes;protecting +Oracle Open Office Chart : changes;recording +Oracle Open Office Chart : changes;review function +Oracle Open Office Chart : changes;showing +Oracle Open Office Chart : changing +Oracle Open Office Chart : changing;document titles +Oracle Open Office Chart : changing;file associations in Setup program +Oracle Open Office Chart : changing;icon sizes +Oracle Open Office Chart : changing;links +Oracle Open Office Chart : changing;work directory +Oracle Open Office Chart : changing, see also editing and replacing +Oracle Open Office Chart : character styles +Oracle Open Office Chart : character styles;language selection +Oracle Open Office Chart : characters +Oracle Open Office Chart : characters;alternative fonts +Oracle Open Office Chart : characters;Asian layout +Oracle Open Office Chart : characters;bold +Oracle Open Office Chart : characters;coloring +Oracle Open Office Chart : characters;displaying only on screen (Writer) +Oracle Open Office Chart : characters;enabling CTL and Asian characters +Oracle Open Office Chart : characters;font effects +Oracle Open Office Chart : characters;fonts and formats +Oracle Open Office Chart : characters;hyperlinks +Oracle Open Office Chart : characters;italics +Oracle Open Office Chart : characters;language selection +Oracle Open Office Chart : characters;shadowed +Oracle Open Office Chart : characters;spacing +Oracle Open Office Chart : characters;special +Oracle Open Office Chart : characters;underlining +Oracle Open Office Chart : charcoal sketches filter +Oracle Open Office Chart : chart legends +Oracle Open Office Chart : chart legends;hiding +Oracle Open Office Chart : chart legends;showing icons with labels +Oracle Open Office Chart : chart types +Oracle Open Office Chart : chart types;area +Oracle Open Office Chart : chart types;bubble +Oracle Open Office Chart : chart types;column and bar +Oracle Open Office Chart : chart types;column and line +Oracle Open Office Chart : chart types;line +Oracle Open Office Chart : chart types;net +Oracle Open Office Chart : chart types;pie/donut +Oracle Open Office Chart : chart types;stock +Oracle Open Office Chart : chart types;XY (scatter) +Oracle Open Office Chart : charts +Oracle Open Office Chart : charts;3D views +Oracle Open Office Chart : charts;aligning +Oracle Open Office Chart : charts;arranging within stacks +Oracle Open Office Chart : charts;bars with textures +Oracle Open Office Chart : charts;choosing chart types +Oracle Open Office Chart : charts;colors +Oracle Open Office Chart : charts;copying with link to source cell range +Oracle Open Office Chart : charts;data labels +Oracle Open Office Chart : charts;displaying (Calc) +Oracle Open Office Chart : charts;editing axes +Oracle Open Office Chart : charts;editing data +Oracle Open Office Chart : charts;editing legends +Oracle Open Office Chart : charts;editing titles +Oracle Open Office Chart : charts;formatting areas +Oracle Open Office Chart : charts;formatting floors +Oracle Open Office Chart : charts;formatting walls +Oracle Open Office Chart : charts;inserting +Oracle Open Office Chart : charts;overview +Oracle Open Office Chart : charts;positioning axes +Oracle Open Office Chart : charts;properties +Oracle Open Office Chart : charts;reorganizing +Oracle Open Office Chart : charts;scaling axes +Oracle Open Office Chart : charts;scaling text +Oracle Open Office Chart : charts;shortcuts +Oracle Open Office Chart : charts;showing axes +Oracle Open Office Chart : charts;updating automatically (Writer) +Oracle Open Office Chart : check box creation +Oracle Open Office Chart : Chinese writing systems +Oracle Open Office Chart : choosing printers +Oracle Open Office Chart : circle drawings +Oracle Open Office Chart : Client Side ImageMap +Oracle Open Office Chart : clipboard +Oracle Open Office Chart : clipboard;cutting +Oracle Open Office Chart : clipboard;pasting +Oracle Open Office Chart : clipboard;pasting formatted/unformatted text +Oracle Open Office Chart : clipboard;selection clipboard +Oracle Open Office Chart : clipboard;Unix +Oracle Open Office Chart : Clippy, see Help Agent +Oracle Open Office Chart : closing +Oracle Open Office Chart : closing;documents +Oracle Open Office Chart : closing;toolbars +Oracle Open Office Chart : collaboration +Oracle Open Office Chart : color bar +Oracle Open Office Chart : colors +Oracle Open Office Chart : colors;adding +Oracle Open Office Chart : colors;appearance +Oracle Open Office Chart : colors;backgrounds +Oracle Open Office Chart : colors;charts +Oracle Open Office Chart : colors;fonts +Oracle Open Office Chart : colors;grid lines and cells (Calc) +Oracle Open Office Chart : colors;ignored text color +Oracle Open Office Chart : colors;models +Oracle Open Office Chart : colors;not printing +Oracle Open Office Chart : colors;printing in grayscale +Oracle Open Office Chart : colors;restriction (Calc) +Oracle Open Office Chart : colors;selection +Oracle Open Office Chart : column and line charts +Oracle Open Office Chart : column charts +Oracle Open Office Chart : column headers +Oracle Open Office Chart : column headers;displaying (Calc) +Oracle Open Office Chart : column headers;highlighting (Calc) +Oracle Open Office Chart : columns +Oracle Open Office Chart : columns;setting with the mouse +Oracle Open Office Chart : combination charts +Oracle Open Office Chart : combo box creation +Oracle Open Office Chart : command button creation +Oracle Open Office Chart : command buttons, see push buttons +Oracle Open Office Chart : command line parameters +Oracle Open Office Chart : commands +Oracle Open Office Chart : commands;repeating +Oracle Open Office Chart : commands;SQL +Oracle Open Office Chart : comments +Oracle Open Office Chart : comments;inserting/editing/deleting/printing +Oracle Open Office Chart : comments;on changes +Oracle Open Office Chart : comments;printing in text +Oracle Open Office Chart : common terms +Oracle Open Office Chart : common terms;Chinese dictionary +Oracle Open Office Chart : common terms;glossaries +Oracle Open Office Chart : common terms;Internet glossary +Oracle Open Office Chart : comparisons +Oracle Open Office Chart : comparisons;document versions +Oracle Open Office Chart : comparisons;operators in standard filter dialog +Oracle Open Office Chart : compatibility settings for MS Word import +Oracle Open Office Chart : complete screen view +Oracle Open Office Chart : complex text layout +Oracle Open Office Chart : complex text layout;definition +Oracle Open Office Chart : complex text layout;enabling +Oracle Open Office Chart : complex text layout, see CTL +Oracle Open Office Chart : compose key to insert special characters +Oracle Open Office Chart : concatenation, see ampersand symbol +Oracle Open Office Chart : conditional separators +Oracle Open Office Chart : conditions +Oracle Open Office Chart : conditions;in number formats +Oracle Open Office Chart : conditions;items in Data Navigator +Oracle Open Office Chart : Configuration Manager +Oracle Open Office Chart : configuring +Oracle Open Office Chart : configuring;fax icon +Oracle Open Office Chart : configuring;Oracle Open Office +Oracle Open Office Chart : configuring;toolbars +Oracle Open Office Chart : connections to data sources (Base) +Oracle Open Office Chart : contents protection +Oracle Open Office Chart : context menus +Oracle Open Office Chart : control point display in presentations +Oracle Open Office Chart : controls +Oracle Open Office Chart : controls;activating in forms +Oracle Open Office Chart : controls;adding to documents +Oracle Open Office Chart : controls;arranging in forms +Oracle Open Office Chart : controls;arranging within stacks +Oracle Open Office Chart : controls;assigning data sources +Oracle Open Office Chart : controls;assigning macros (Basic) +Oracle Open Office Chart : controls;bound fields/list contents/linked cells +Oracle Open Office Chart : controls;events +Oracle Open Office Chart : controls;focus +Oracle Open Office Chart : controls;formatted fields +Oracle Open Office Chart : controls;grouping +Oracle Open Office Chart : controls;hidden +Oracle Open Office Chart : controls;inserting +Oracle Open Office Chart : controls;multi-line titles +Oracle Open Office Chart : controls;positions and sizes +Oracle Open Office Chart : controls;printing +Oracle Open Office Chart : controls;properties of form controls +Oracle Open Office Chart : controls;properties of table controls +Oracle Open Office Chart : controls;reference by SQL +Oracle Open Office Chart : controls;rich text control +Oracle Open Office Chart : controls;select mode +Oracle Open Office Chart : controls;showing (Writer) +Oracle Open Office Chart : converters +Oracle Open Office Chart : converters;document converter +Oracle Open Office Chart : converters;Euro converter +Oracle Open Office Chart : converters;PostScript, UNIX +Oracle Open Office Chart : converters;XML +Oracle Open Office Chart : converting +Oracle Open Office Chart : converting;Hangul/Hanja +Oracle Open Office Chart : converting;metrics +Oracle Open Office Chart : converting;Microsoft documents +Oracle Open Office Chart : converting;Oracle Open Office documents +Oracle Open Office Chart : converting;Pocket PC formats +Oracle Open Office Chart : copies +Oracle Open Office Chart : copies;printing +Oracle Open Office Chart : copying +Oracle Open Office Chart : copying;by drag and drop +Oracle Open Office Chart : copying;data from text documents +Oracle Open Office Chart : copying;datasource records in spreadsheets +Oracle Open Office Chart : copying;draw objects +Oracle Open Office Chart : copying;draw objects between documents +Oracle Open Office Chart : copying;formatting +Oracle Open Office Chart : copying;from data source view +Oracle Open Office Chart : copying;from Gallery +Oracle Open Office Chart : copying;in Unix +Oracle Open Office Chart : copying;pictures, between documents +Oracle Open Office Chart : copying;sheet areas, to text documents +Oracle Open Office Chart : copying;to Gallery +Oracle Open Office Chart : copyright for Oracle Open Office +Oracle Open Office Chart : corner roundings +Oracle Open Office Chart : crash reports +Oracle Open Office Chart : criteria of query design (Base) +Oracle Open Office Chart : cropping pictures +Oracle Open Office Chart : CTL +Oracle Open Office Chart : CTL;(not) wrapping words +Oracle Open Office Chart : CTL;complex text layout languages +Oracle Open Office Chart : CTL;definition +Oracle Open Office Chart : CTL;options +Oracle Open Office Chart : cube drawing +Oracle Open Office Chart : currencies +Oracle Open Office Chart : currencies;converters +Oracle Open Office Chart : currencies;format codes +Oracle Open Office Chart : currency field creation +Oracle Open Office Chart : currency formats +Oracle Open Office Chart : cursor +Oracle Open Office Chart : cursor;allowing in protected areas (Writer) +Oracle Open Office Chart : cursor;in read-only text +Oracle Open Office Chart : cursor;quickly moving to an object +Oracle Open Office Chart : curves +Oracle Open Office Chart : curves;editing points +Oracle Open Office Chart : curves;properties in line charts/XY charts +Oracle Open Office Chart : custom dictionaries +Oracle Open Office Chart : custom dictionaries;editing +Oracle Open Office Chart : custom hyphens (Writer) +Oracle Open Office Chart : custom quotes +Oracle Open Office Chart : custom templates +Oracle Open Office Chart : customizing +Oracle Open Office Chart : customizing;events +Oracle Open Office Chart : customizing;keyboard +Oracle Open Office Chart : customizing;menus +Oracle Open Office Chart : customizing;Oracle Open Office +Oracle Open Office Chart : customizing;round corners +Oracle Open Office Chart : customizing;toolbars +Oracle Open Office Chart : cutting +Oracle Open Office Chart : dashes +Oracle Open Office Chart : data +Oracle Open Office Chart : data;filtering in forms +Oracle Open Office Chart : data;forms and subforms +Oracle Open Office Chart : data;read-only +Oracle Open Office Chart : data;sorting in forms +Oracle Open Office Chart : data;user data +Oracle Open Office Chart : data binding change in XForms +Oracle Open Office Chart : data labels in charts +Oracle Open Office Chart : Data Navigator +Oracle Open Office Chart : Data Navigator;adding/editing items +Oracle Open Office Chart : Data Navigator;display options +Oracle Open Office Chart : data ranges in charts +Oracle Open Office Chart : data series +Oracle Open Office Chart : data source browser +Oracle Open Office Chart : data source explorer +Oracle Open Office Chart : data source view +Oracle Open Office Chart : data source view;drag and drop +Oracle Open Office Chart : data source view;overview +Oracle Open Office Chart : data source view;showing +Oracle Open Office Chart : data sources +Oracle Open Office Chart : data sources;as tables +Oracle Open Office Chart : data sources;connection settings (Base) +Oracle Open Office Chart : data sources;copying records to spreadsheets +Oracle Open Office Chart : data sources;displaying current +Oracle Open Office Chart : data sources;LDAP server (Base) +Oracle Open Office Chart : data sources;Oracle Open Office Base +Oracle Open Office Chart : data sources;registering address books +Oracle Open Office Chart : data sources;reports +Oracle Open Office Chart : data sources;setting for stock charts +Oracle Open Office Chart : data sources;viewing +Oracle Open Office Chart : data structure of XForms +Oracle Open Office Chart : data values in charts +Oracle Open Office Chart : data, see also values +Oracle Open Office Chart : database contents +Oracle Open Office Chart : database contents;inserting as tables +Oracle Open Office Chart : database contents;inserting as text +Oracle Open Office Chart : database reports +Oracle Open Office Chart : Database Wizard (Base) +Oracle Open Office Chart : databases +Oracle Open Office Chart : databases;administration through SQL (Base) +Oracle Open Office Chart : databases;ADO (Base) +Oracle Open Office Chart : databases;connecting (Base) +Oracle Open Office Chart : databases;creating +Oracle Open Office Chart : databases;creating labels +Oracle Open Office Chart : databases;creating queries +Oracle Open Office Chart : databases;creating reports +Oracle Open Office Chart : databases;creating tables +Oracle Open Office Chart : databases;deleting (Base) +Oracle Open Office Chart : databases;drag and drop (Base) +Oracle Open Office Chart : databases;editing tables +Oracle Open Office Chart : databases;form filters +Oracle Open Office Chart : databases;formats (Base) +Oracle Open Office Chart : databases;importing/exporting +Oracle Open Office Chart : databases;JDBC (Base) +Oracle Open Office Chart : databases;main page (Base) +Oracle Open Office Chart : databases;ODBC (Base) +Oracle Open Office Chart : databases;overview +Oracle Open Office Chart : databases;registering (Base) +Oracle Open Office Chart : databases;searching records +Oracle Open Office Chart : databases;shortcut keys +Oracle Open Office Chart : databases;sorting +Oracle Open Office Chart : databases;standard filters +Oracle Open Office Chart : databases;text formats +Oracle Open Office Chart : databases;viewing +Oracle Open Office Chart : date fields +Oracle Open Office Chart : date fields;creating +Oracle Open Office Chart : date fields;properties +Oracle Open Office Chart : date formats +Oracle Open Office Chart : dates +Oracle Open Office Chart : dates;default (Calc) +Oracle Open Office Chart : dates;printing in presentations +Oracle Open Office Chart : dates;start 1900/01/01 (Calc) +Oracle Open Office Chart : dates;start 1904/01/01 (Calc) +Oracle Open Office Chart : dBASE +Oracle Open Office Chart : dBASE;database settings (Base) +Oracle Open Office Chart : DDE +Oracle Open Office Chart : DDE;definition +Oracle Open Office Chart : deactivating +Oracle Open Office Chart : deactivating;plug-ins +Oracle Open Office Chart : decimal places displayed (Calc) +Oracle Open Office Chart : decimal separator key +Oracle Open Office Chart : decimal tab stops +Oracle Open Office Chart : default directories +Oracle Open Office Chart : default filters, see standard filters +Oracle Open Office Chart : default printer +Oracle Open Office Chart : default printer;setting up +Oracle Open Office Chart : default printer;UNIX +Oracle Open Office Chart : default templates +Oracle Open Office Chart : default templates;changing +Oracle Open Office Chart : default templates;organizing +Oracle Open Office Chart : defaults +Oracle Open Office Chart : defaults;document formats in file dialogs +Oracle Open Office Chart : defaults;documents +Oracle Open Office Chart : defaults;file formats in Oracle Open Office +Oracle Open Office Chart : defaults;fonts +Oracle Open Office Chart : defaults;grids (Writer/Calc) +Oracle Open Office Chart : defaults;languages +Oracle Open Office Chart : defaults;number formats +Oracle Open Office Chart : defaults;of saving +Oracle Open Office Chart : defaults;program configuration +Oracle Open Office Chart : defaults;tab stops in text +Oracle Open Office Chart : defaults;views +Oracle Open Office Chart : defining +Oracle Open Office Chart : defining;arrowheads and other line ends +Oracle Open Office Chart : defining;colors +Oracle Open Office Chart : defining;line styles +Oracle Open Office Chart : defining;paragraph borders +Oracle Open Office Chart : defining;queries (Base) +Oracle Open Office Chart : defining;table borders +Oracle Open Office Chart : deleting +Oracle Open Office Chart : deleting;all direct formatting +Oracle Open Office Chart : deleting;comments +Oracle Open Office Chart : deleting;databases (Base) +Oracle Open Office Chart : deleting;hyperlinks +Oracle Open Office Chart : deleting;lines in text +Oracle Open Office Chart : deleting;models/instances +Oracle Open Office Chart : deleting;namespaces in XForms +Oracle Open Office Chart : deleting;tab stops +Oracle Open Office Chart : deleting;templates +Oracle Open Office Chart : deleting;XML filters +Oracle Open Office Chart : depth stagger +Oracle Open Office Chart : descriptions for objects +Oracle Open Office Chart : design mode after saving +Oracle Open Office Chart : design view +Oracle Open Office Chart : design view;creating forms +Oracle Open Office Chart : design view;queries/views (Base) +Oracle Open Office Chart : designing +Oracle Open Office Chart : designing;database tables +Oracle Open Office Chart : designing;fonts +Oracle Open Office Chart : designing;queries (Base) +Oracle Open Office Chart : detaching toolbars +Oracle Open Office Chart : dictionaries +Oracle Open Office Chart : dictionaries;common terms in simplified and traditional chinese +Oracle Open Office Chart : dictionaries;creating +Oracle Open Office Chart : dictionaries;editing user-defined +Oracle Open Office Chart : dictionaries;spellcheck +Oracle Open Office Chart : dictionaries, see also languages +Oracle Open Office Chart : digital signatures +Oracle Open Office Chart : digital signatures;getting/managing/applying +Oracle Open Office Chart : digital signatures;overview +Oracle Open Office Chart : digital signatures;WebDAV over HTTPS +Oracle Open Office Chart : direct formatting +Oracle Open Office Chart : direct formatting;undoing all +Oracle Open Office Chart : directories +Oracle Open Office Chart : directories;creating new +Oracle Open Office Chart : directories;directory structure +Oracle Open Office Chart : disabled persons +Oracle Open Office Chart : displaying +Oracle Open Office Chart : displaying;comments in text documents +Oracle Open Office Chart : displaying;non-printing characters (Writer) +Oracle Open Office Chart : displaying;pictures and objects (Writer) +Oracle Open Office Chart : displaying;tables (Writer) +Oracle Open Office Chart : displaying;zero values (Calc) +Oracle Open Office Chart : distances +Oracle Open Office Chart : distinct values in SQL queries +Oracle Open Office Chart : distorting in drawings +Oracle Open Office Chart : distributing XML filters +Oracle Open Office Chart : docking +Oracle Open Office Chart : docking;definition +Oracle Open Office Chart : docking;toolbars +Oracle Open Office Chart : docking;windows +Oracle Open Office Chart : Document Converter Wizard +Oracle Open Office Chart : Document Map, see Navigator +Oracle Open Office Chart : document types in Oracle Open Office +Oracle Open Office Chart : documents +Oracle Open Office Chart : documents;changing titles +Oracle Open Office Chart : documents;closing +Oracle Open Office Chart : documents;comparing +Oracle Open Office Chart : documents;contents as lists +Oracle Open Office Chart : documents;editing time +Oracle Open Office Chart : documents;exporting +Oracle Open Office Chart : documents;importing +Oracle Open Office Chart : documents;languages +Oracle Open Office Chart : documents;measurement units in +Oracle Open Office Chart : documents;merging +Oracle Open Office Chart : documents;number of pages/tables/sheets +Oracle Open Office Chart : documents;opening +Oracle Open Office Chart : documents;opening in design mode +Oracle Open Office Chart : documents;opening with templates +Oracle Open Office Chart : documents;organizing +Oracle Open Office Chart : documents;printing +Oracle Open Office Chart : documents;read-only +Oracle Open Office Chart : documents;reloading +Oracle Open Office Chart : documents;saving +Oracle Open Office Chart : documents;saving automatically +Oracle Open Office Chart : documents;saving in other formats +Oracle Open Office Chart : documents;sending as e-mail +Oracle Open Office Chart : documents;styles changed +Oracle Open Office Chart : documents;version management +Oracle Open Office Chart : documents;version numbers +Oracle Open Office Chart : donut charts +Oracle Open Office Chart : dotted areas +Oracle Open Office Chart : double-line spacing in paragraphs +Oracle Open Office Chart : double-line writing in Asian layout +Oracle Open Office Chart : drag and drop +Oracle Open Office Chart : drag and drop;copying and pasting text +Oracle Open Office Chart : drag and drop;data source view +Oracle Open Office Chart : drag and drop;from Gallery to draw objects +Oracle Open Office Chart : drag and drop;overview +Oracle Open Office Chart : drag and drop;pictures +Oracle Open Office Chart : drag and drop;to Gallery +Oracle Open Office Chart : draw objects +Oracle Open Office Chart : draw objects;adding/editing/copying +Oracle Open Office Chart : draw objects;anchoring +Oracle Open Office Chart : draw objects;arranging within stacks +Oracle Open Office Chart : draw objects;copying between documents +Oracle Open Office Chart : draw objects;displaying (Calc) +Oracle Open Office Chart : draw objects;dropping Gallery pictures +Oracle Open Office Chart : draw objects;flipping +Oracle Open Office Chart : draw objects;legends +Oracle Open Office Chart : draw objects;positioning and resizing +Oracle Open Office Chart : draw objects;protecting +Oracle Open Office Chart : draw objects;slanting +Oracle Open Office Chart : draw objects;text in +Oracle Open Office Chart : Drawing bar +Oracle Open Office Chart : drawing lines in text +Oracle Open Office Chart : drawings +Oracle Open Office Chart : drawings;creating/opening +Oracle Open Office Chart : drawings;languages +Oracle Open Office Chart : drawings;printing +Oracle Open Office Chart : drawings;printing defaults +Oracle Open Office Chart : drawings;printing in text documents +Oracle Open Office Chart : drawings;saving +Oracle Open Office Chart : drawings;saving automatically +Oracle Open Office Chart : drawings;saving in other formats +Oracle Open Office Chart : drawings;sending as e-mail +Oracle Open Office Chart : drawings;showing (Writer) +Oracle Open Office Chart : drawings, see also draw objects +Oracle Open Office Chart : drop-down lists in form functions +Oracle Open Office Chart : e-mail attachments +Oracle Open Office Chart : Edit File icon +Oracle Open Office Chart : edit mode +Oracle Open Office Chart : edit mode;after opening +Oracle Open Office Chart : edit mode;through Enter key (Calc) +Oracle Open Office Chart : Edit Points bar +Oracle Open Office Chart : editing +Oracle Open Office Chart : editing;chart axes +Oracle Open Office Chart : editing;chart data +Oracle Open Office Chart : editing;chart legends +Oracle Open Office Chart : editing;chart titles +Oracle Open Office Chart : editing;comments +Oracle Open Office Chart : editing;data binding of XForms +Oracle Open Office Chart : editing;database tables and queries +Oracle Open Office Chart : editing;draw objects +Oracle Open Office Chart : editing;Fontwork objects +Oracle Open Office Chart : editing;hyperlinks +Oracle Open Office Chart : editing;menus +Oracle Open Office Chart : editing;objects +Oracle Open Office Chart : editing;Oracle Open Office documents in Internet Explorer +Oracle Open Office Chart : editing;pictures +Oracle Open Office Chart : editing;reports +Oracle Open Office Chart : editing;shortcut keys +Oracle Open Office Chart : editing;tab stops +Oracle Open Office Chart : editing;templates +Oracle Open Office Chart : editing;titles +Oracle Open Office Chart : editing;toolbars +Oracle Open Office Chart : editing;undoing +Oracle Open Office Chart : editing;XForms +Oracle Open Office Chart : editing time of documents +Oracle Open Office Chart : editors +Oracle Open Office Chart : editors;formula editor +Oracle Open Office Chart : editors;ImageMap editor +Oracle Open Office Chart : effects +Oracle Open Office Chart : effects;font positions +Oracle Open Office Chart : effects;fonts +Oracle Open Office Chart : effects;Fontwork icons +Oracle Open Office Chart : ellipse drawing +Oracle Open Office Chart : empty documents +Oracle Open Office Chart : empty paragraph removal +Oracle Open Office Chart : encryption of contents +Oracle Open Office Chart : entering groups +Oracle Open Office Chart : entering text from right to left +Oracle Open Office Chart : equal sign, see also operators +Oracle Open Office Chart : equations in formula editor +Oracle Open Office Chart : error bars in charts +Oracle Open Office Chart : error indicators in charts +Oracle Open Office Chart : Error Report Tool +Oracle Open Office Chart : Euro +Oracle Open Office Chart : Euro;currency formats +Oracle Open Office Chart : Euro;Euro Converter Wizard +Oracle Open Office Chart : even/odd pages +Oracle Open Office Chart : even/odd pages;printing +Oracle Open Office Chart : events +Oracle Open Office Chart : events;assigning scripts +Oracle Open Office Chart : events;controls +Oracle Open Office Chart : events;customizing +Oracle Open Office Chart : events;in forms +Oracle Open Office Chart : Excel +Oracle Open Office Chart : Excel;saving as +Oracle Open Office Chart : Excel;search criteria +Oracle Open Office Chart : exceptions +Oracle Open Office Chart : exceptions;user-defined dictionaries +Oracle Open Office Chart : exchanging, see also replacing +Oracle Open Office Chart : executing SQL commands +Oracle Open Office Chart : exiting +Oracle Open Office Chart : exiting;groups +Oracle Open Office Chart : exiting;Oracle Open Office +Oracle Open Office Chart : expanding formatting (Calc) +Oracle Open Office Chart : explorer of data sources +Oracle Open Office Chart : export filters +Oracle Open Office Chart : exporting +Oracle Open Office Chart : exporting;bitmaps +Oracle Open Office Chart : exporting;HTML and text documents +Oracle Open Office Chart : exporting;Microsoft Office documents with VBA code +Oracle Open Office Chart : exporting;spreadsheets to text format +Oracle Open Office Chart : exporting;templates +Oracle Open Office Chart : exporting;to foreign formats +Oracle Open Office Chart : exporting;to HTML +Oracle Open Office Chart : exporting;to Microsoft Office formats +Oracle Open Office Chart : exporting;to PDF +Oracle Open Office Chart : exporting;to PostScript format +Oracle Open Office Chart : exporting;to XML +Oracle Open Office Chart : exporting;XML files +Oracle Open Office Chart : extended tips in Help +Oracle Open Office Chart : extension mode in text +Oracle Open Office Chart : extensions +Oracle Open Office Chart : extensions;Extension Manager +Oracle Open Office Chart : extensions;file formats +Oracle Open Office Chart : external keys (Base) +Oracle Open Office Chart : faster printing +Oracle Open Office Chart : faxes +Oracle Open Office Chart : faxes;configuring Oracle Open Office +Oracle Open Office Chart : faxes;fax programs/fax printers under UNIX +Oracle Open Office Chart : faxes;selecting a fax machine +Oracle Open Office Chart : faxes;sending +Oracle Open Office Chart : faxes;wizards +Oracle Open Office Chart : feedback +Oracle Open Office Chart : feedback;automatically +Oracle Open Office Chart : fields +Oracle Open Office Chart : fields;database tables +Oracle Open Office Chart : fields;displaying field codes (Writer) +Oracle Open Office Chart : fields;formatted fields +Oracle Open Office Chart : fields;updating automatically (Writer) +Oracle Open Office Chart : file associations for Microsoft Office +Oracle Open Office Chart : file filters +Oracle Open Office Chart : file filters;mobile devices +Oracle Open Office Chart : file filters;XML +Oracle Open Office Chart : file formats +Oracle Open Office Chart : file formats;changing Oracle Open Office defaults +Oracle Open Office Chart : file formats;OpenDocument/XML +Oracle Open Office Chart : file formats;saving always in other formats +Oracle Open Office Chart : file selection button +Oracle Open Office Chart : file sharing options for current document +Oracle Open Office Chart : files +Oracle Open Office Chart : files;filters and formats +Oracle Open Office Chart : files;importing +Oracle Open Office Chart : files;opening +Oracle Open Office Chart : files;properties +Oracle Open Office Chart : files;saving +Oracle Open Office Chart : files;saving automatically +Oracle Open Office Chart : files;saving in other formats +Oracle Open Office Chart : files;sending as e-mail +Oracle Open Office Chart : files;version numbers +Oracle Open Office Chart : files and folders in Oracle Open Office +Oracle Open Office Chart : files, see also documents +Oracle Open Office Chart : fill characters with tabulators +Oracle Open Office Chart : fill colors for areas +Oracle Open Office Chart : fill patterns for areas +Oracle Open Office Chart : filter conditions +Oracle Open Office Chart : filter conditions;connecting +Oracle Open Office Chart : filter conditions;in queries (Base) +Oracle Open Office Chart : filtering +Oracle Open Office Chart : filtering;data in databases +Oracle Open Office Chart : filtering;data in forms +Oracle Open Office Chart : filters +Oracle Open Office Chart : filters;comparison operators +Oracle Open Office Chart : filters;for import and export +Oracle Open Office Chart : filters;Navigator +Oracle Open Office Chart : filters;pictures +Oracle Open Office Chart : filters;XML filter settings +Oracle Open Office Chart : Find tab in Help +Oracle Open Office Chart : finding +Oracle Open Office Chart : finding;in all sheets +Oracle Open Office Chart : finding;records in form documents +Oracle Open Office Chart : finding;selections +Oracle Open Office Chart : finding;similarity search +Oracle Open Office Chart : fitting to pages +Oracle Open Office Chart : fitting to pages;print settings in Math +Oracle Open Office Chart : fitting to pages;print settings in presentations +Oracle Open Office Chart : fixed text +Oracle Open Office Chart : fixed text;form functions +Oracle Open Office Chart : fixing toolbars +Oracle Open Office Chart : flipping draw objects +Oracle Open Office Chart : floating frames in HTML documents +Oracle Open Office Chart : floating toolbars +Oracle Open Office Chart : focus of controls +Oracle Open Office Chart : folder creation +Oracle Open Office Chart : font lists +Oracle Open Office Chart : font name box +Oracle Open Office Chart : font sizes +Oracle Open Office Chart : font sizes;bullets +Oracle Open Office Chart : font sizes;relative changes +Oracle Open Office Chart : font sizes;scaling on screen +Oracle Open Office Chart : font sizes;text +Oracle Open Office Chart : fonts +Oracle Open Office Chart : fonts;changing in templates +Oracle Open Office Chart : fonts;color ignored +Oracle Open Office Chart : fonts;colors +Oracle Open Office Chart : fonts;default settings +Oracle Open Office Chart : fonts;effects +Oracle Open Office Chart : fonts;for HTML and Basic +Oracle Open Office Chart : fonts;formats +Oracle Open Office Chart : fonts;outlines +Oracle Open Office Chart : fonts;positions in text +Oracle Open Office Chart : fonts;shadows +Oracle Open Office Chart : fonts;specifying several +Oracle Open Office Chart : fonts;strikethrough +Oracle Open Office Chart : fonts;styles +Oracle Open Office Chart : fonts;text objects +Oracle Open Office Chart : Fontwork +Oracle Open Office Chart : footers +Oracle Open Office Chart : footers;backgrounds +Oracle Open Office Chart : form controls +Oracle Open Office Chart : form controls;assigning macros +Oracle Open Office Chart : form controls;protecting +Oracle Open Office Chart : form controls;toolbars +Oracle Open Office Chart : form fields +Oracle Open Office Chart : form filters +Oracle Open Office Chart : Form Navigator +Oracle Open Office Chart : format codes +Oracle Open Office Chart : format codes;numbers +Oracle Open Office Chart : format filling printing in Oracle Open Office Math +Oracle Open Office Chart : Format Paintbrush +Oracle Open Office Chart : formats +Oracle Open Office Chart : formats;Asian layout +Oracle Open Office Chart : formats;fonts +Oracle Open Office Chart : formats;maximizing page formats +Oracle Open Office Chart : formats;number and currency formats +Oracle Open Office Chart : formats;of currencies/date/time +Oracle Open Office Chart : formats;on opening and saving +Oracle Open Office Chart : formats;pasting in special formats +Oracle Open Office Chart : formats;positions +Oracle Open Office Chart : formats;tabulators +Oracle Open Office Chart : formatted fields +Oracle Open Office Chart : formatted fields;form functions +Oracle Open Office Chart : formatted fields;properties +Oracle Open Office Chart : formatting +Oracle Open Office Chart : formatting;Asian typography +Oracle Open Office Chart : formatting;axes in charts +Oracle Open Office Chart : formatting;chart areas +Oracle Open Office Chart : formatting;chart floors +Oracle Open Office Chart : formatting;chart legends +Oracle Open Office Chart : formatting;chart titles +Oracle Open Office Chart : formatting;chart walls +Oracle Open Office Chart : formatting;copying +Oracle Open Office Chart : formatting;definition +Oracle Open Office Chart : formatting;expanding (Calc) +Oracle Open Office Chart : formatting;font effects +Oracle Open Office Chart : formatting;hyperlinks +Oracle Open Office Chart : formatting;pages +Oracle Open Office Chart : formatting;printer metrics (Writer) +Oracle Open Office Chart : formatting;undoing +Oracle Open Office Chart : formatting;undoing when writing +Oracle Open Office Chart : forms +Oracle Open Office Chart : forms;browsing +Oracle Open Office Chart : forms;Combo Box/List Box Wizard +Oracle Open Office Chart : forms;creating +Oracle Open Office Chart : forms;data +Oracle Open Office Chart : forms;designing (Base) +Oracle Open Office Chart : forms;events +Oracle Open Office Chart : forms;filtering data +Oracle Open Office Chart : forms;finding records +Oracle Open Office Chart : forms;focus after opening +Oracle Open Office Chart : forms;general information (Base) +Oracle Open Office Chart : forms;grouping controls +Oracle Open Office Chart : forms;HTML filters +Oracle Open Office Chart : forms;Navigator +Oracle Open Office Chart : forms;opening in design mode +Oracle Open Office Chart : forms;properties +Oracle Open Office Chart : forms;sorting data +Oracle Open Office Chart : forms;subforms +Oracle Open Office Chart : forms;wizards +Oracle Open Office Chart : forms;XForms +Oracle Open Office Chart : formula texts +Oracle Open Office Chart : formula texts;printing in Oracle Open Office Math +Oracle Open Office Chart : formulas +Oracle Open Office Chart : formulas;new +Oracle Open Office Chart : formulas;starting formula editor +Oracle Open Office Chart : formulas in reports +Oracle Open Office Chart : formulas in reports;editing +Oracle Open Office Chart : forums and support +Oracle Open Office Chart : frames +Oracle Open Office Chart : frames;around paragraphs +Oracle Open Office Chart : frames;around tables +Oracle Open Office Chart : frames;AutoCorrect function +Oracle Open Office Chart : frames;backgrounds +Oracle Open Office Chart : frames;captions (Writer) +Oracle Open Office Chart : frames;printing in Oracle Open Office Math +Oracle Open Office Chart : frames;protecting +Oracle Open Office Chart : frames;selection frames +Oracle Open Office Chart : frames;text fitting to frames +Oracle Open Office Chart : freeform lines +Oracle Open Office Chart : freeform lines;draw functions +Oracle Open Office Chart : FTP +Oracle Open Office Chart : FTP;opening documents +Oracle Open Office Chart : FTP;saving documents +Oracle Open Office Chart : full joins (Base) +Oracle Open Office Chart : full screen view +Oracle Open Office Chart : full-text search in Help +Oracle Open Office Chart : functions in reports +Oracle Open Office Chart : functions in reports;editing +Oracle Open Office Chart : Gallery +Oracle Open Office Chart : Gallery;adding pictures +Oracle Open Office Chart : Gallery;dragging pictures to draw objects +Oracle Open Office Chart : Gallery;hiding/showing +Oracle Open Office Chart : Gallery;inserting pictures from +Oracle Open Office Chart : get method for form transmissions +Oracle Open Office Chart : getting support +Oracle Open Office Chart : GIF format +Oracle Open Office Chart : glossaries +Oracle Open Office Chart : glossaries;common terms +Oracle Open Office Chart : glossaries;Internet terms +Oracle Open Office Chart : gradients off for faster printing +Oracle Open Office Chart : graphic objects, see draw objects +Oracle Open Office Chart : graphical text art +Oracle Open Office Chart : graphics +Oracle Open Office Chart : graphics;cache +Oracle Open Office Chart : graphics;protecting +Oracle Open Office Chart : graphics, see also pictures +Oracle Open Office Chart : grayscale printing +Oracle Open Office Chart : grid controls +Oracle Open Office Chart : grid controls;form functions +Oracle Open Office Chart : grids +Oracle Open Office Chart : grids;defaults (Writer/Calc) +Oracle Open Office Chart : grids;display options (Impress/Draw) +Oracle Open Office Chart : grids;displaying lines (Calc) +Oracle Open Office Chart : grids;formatting axes +Oracle Open Office Chart : grids;inserting in charts +Oracle Open Office Chart : group box creation +Oracle Open Office Chart : groups +Oracle Open Office Chart : groups;entering/exiting/ungrouping +Oracle Open Office Chart : groups;naming +Oracle Open Office Chart : groups;of controls +Oracle Open Office Chart : guides +Oracle Open Office Chart : guides;display options (Impress/Draw) +Oracle Open Office Chart : guides;displaying when moving objects (Impress) +Oracle Open Office Chart : guides;showing (Calc) +Oracle Open Office Chart : guides;showing when moving frames (Writer) +Oracle Open Office Chart : gutter +Oracle Open Office Chart : handles +Oracle Open Office Chart : handles;displaying (Writer) +Oracle Open Office Chart : handles;scaling +Oracle Open Office Chart : handles;showing simple/large handles (Calc) +Oracle Open Office Chart : Hangul/Hanja +Oracle Open Office Chart : hatching +Oracle Open Office Chart : headers +Oracle Open Office Chart : headers;backgrounds +Oracle Open Office Chart : headings +Oracle Open Office Chart : headings;entering as text box +Oracle Open Office Chart : Hebrew +Oracle Open Office Chart : Hebrew;entering text +Oracle Open Office Chart : Hebrew;language settings +Oracle Open Office Chart : Help +Oracle Open Office Chart : Help;bookmarks +Oracle Open Office Chart : Help;extended tips on/off +Oracle Open Office Chart : Help;full-text search +Oracle Open Office Chart : Help;Help tips +Oracle Open Office Chart : Help;keywords +Oracle Open Office Chart : Help;navigation pane showing/hiding +Oracle Open Office Chart : Help;style sheets +Oracle Open Office Chart : Help;topics +Oracle Open Office Chart : Help Agent +Oracle Open Office Chart : Help Agent;help +Oracle Open Office Chart : Help Agent;options +Oracle Open Office Chart : Help tips +Oracle Open Office Chart : Help tips;hiding +Oracle Open Office Chart : hidden controls in Form Navigator +Oracle Open Office Chart : hidden fields display (Writer) +Oracle Open Office Chart : hidden pages +Oracle Open Office Chart : hidden pages;printing in presentations +Oracle Open Office Chart : hidden text +Oracle Open Office Chart : hidden text;showing (Writer) +Oracle Open Office Chart : hiding +Oracle Open Office Chart : hiding;changes +Oracle Open Office Chart : hiding;chart legends +Oracle Open Office Chart : hiding;docked windows +Oracle Open Office Chart : hiding;navigation pane in Help window +Oracle Open Office Chart : high contrast mode +Oracle Open Office Chart : highlighting changes +Oracle Open Office Chart : Hindi +Oracle Open Office Chart : Hindi;entering text +Oracle Open Office Chart : Hindi;language settings +Oracle Open Office Chart : horizontal scrollbars (Writer) +Oracle Open Office Chart : hotspots +Oracle Open Office Chart : hotspots;adding to images +Oracle Open Office Chart : hotspots;properties +Oracle Open Office Chart : HowTos for charts +Oracle Open Office Chart : HTML +Oracle Open Office Chart : HTML;compatibility settings +Oracle Open Office Chart : HTML;definition +Oracle Open Office Chart : HTML;export character set +Oracle Open Office Chart : HTML;fonts for source display +Oracle Open Office Chart : HTML;importing META tags +Oracle Open Office Chart : HTML;live presentations +Oracle Open Office Chart : HTML documents +Oracle Open Office Chart : HTML documents;auto reloading +Oracle Open Office Chart : HTML documents;importing/exporting +Oracle Open Office Chart : HTML documents;META tags in +Oracle Open Office Chart : HTML documents;new +Oracle Open Office Chart : HTML documents;source text +Oracle Open Office Chart : hyperlinks +Oracle Open Office Chart : hyperlinks;assigning macros +Oracle Open Office Chart : hyperlinks;character formats +Oracle Open Office Chart : hyperlinks;definition +Oracle Open Office Chart : hyperlinks;deleting +Oracle Open Office Chart : hyperlinks;editing +Oracle Open Office Chart : hyperlinks;inserting +Oracle Open Office Chart : hyperlinks;relative and absolute +Oracle Open Office Chart : hyperlinks;turning off automatic recognition +Oracle Open Office Chart : hyperlinks, see also links +Oracle Open Office Chart : hyphenation +Oracle Open Office Chart : hyphenation;activating for a language +Oracle Open Office Chart : hyphenation;minimal number of characters +Oracle Open Office Chart : hyphens +Oracle Open Office Chart : hyphens;displaying custom (Writer) +Oracle Open Office Chart : hyphens;inserting custom +Oracle Open Office Chart : icon bars, see toolbars +Oracle Open Office Chart : icon sizes +Oracle Open Office Chart : ignore list for spellcheck +Oracle Open Office Chart : ignored font colors +Oracle Open Office Chart : illumination +Oracle Open Office Chart : illumination;3D charts +Oracle Open Office Chart : illustrations, see pictures +Oracle Open Office Chart : image button creation +Oracle Open Office Chart : image control creation +Oracle Open Office Chart : ImageMap +Oracle Open Office Chart : ImageMap;definition +Oracle Open Office Chart : ImageMap;editor +Oracle Open Office Chart : ImageMap;hotspot properties +Oracle Open Office Chart : images +Oracle Open Office Chart : images;ImageMap +Oracle Open Office Chart : images;inserting and editing bitmaps +Oracle Open Office Chart : images, see also pictures +Oracle Open Office Chart : IME +Oracle Open Office Chart : IME;definition +Oracle Open Office Chart : IME;showing/hiding +Oracle Open Office Chart : import filters +Oracle Open Office Chart : import restrictions for Microsoft Office +Oracle Open Office Chart : importing +Oracle Open Office Chart : importing;bitmaps +Oracle Open Office Chart : importing;compatibility settings for text import +Oracle Open Office Chart : importing;databases +Oracle Open Office Chart : importing;documents in other formats +Oracle Open Office Chart : importing;from XML +Oracle Open Office Chart : importing;HTML and text documents +Oracle Open Office Chart : importing;HTML with META tags +Oracle Open Office Chart : importing;Microsoft Office documents with VBA code +Oracle Open Office Chart : importing;tables in text format +Oracle Open Office Chart : importing;templates +Oracle Open Office Chart : improvement program +Oracle Open Office Chart : improvement program - Improvement Program +Oracle Open Office Chart : inches +Oracle Open Office Chart : Index tab in Help +Oracle Open Office Chart : indexes +Oracle Open Office Chart : indexes;backgrounds +Oracle Open Office Chart : indexes;showing/hiding Help index tab +Oracle Open Office Chart : indicator lines in text +Oracle Open Office Chart : inner joins (Base) +Oracle Open Office Chart : input method window +Oracle Open Office Chart : insert mode for entering text +Oracle Open Office Chart : inserting +Oracle Open Office Chart : inserting;buttons in toolbars +Oracle Open Office Chart : inserting;cell ranges from spreadsheets +Oracle Open Office Chart : inserting;charts +Oracle Open Office Chart : inserting;clipboard options +Oracle Open Office Chart : inserting;comments +Oracle Open Office Chart : inserting;data from text documents +Oracle Open Office Chart : inserting;datasource records in spreadsheets +Oracle Open Office Chart : inserting;drawings +Oracle Open Office Chart : inserting;floating frames +Oracle Open Office Chart : inserting;Fontwork objects +Oracle Open Office Chart : inserting;form fields +Oracle Open Office Chart : inserting;hyperlinks +Oracle Open Office Chart : inserting;line breaks in cells +Oracle Open Office Chart : inserting;movies/sounds +Oracle Open Office Chart : inserting;new text tables defaults +Oracle Open Office Chart : inserting;objects from Gallery +Oracle Open Office Chart : inserting;OLE objects +Oracle Open Office Chart : inserting;paragraph borders +Oracle Open Office Chart : inserting;paragraph bullets +Oracle Open Office Chart : inserting;pictures in Gallery +Oracle Open Office Chart : inserting;plug-ins +Oracle Open Office Chart : inserting;push buttons +Oracle Open Office Chart : inserting;special characters +Oracle Open Office Chart : inserting;tab stops +Oracle Open Office Chart : inserting;textures on chart bars +Oracle Open Office Chart : installing +Oracle Open Office Chart : installing;ActiveX control +Oracle Open Office Chart : installing;mobile device filters +Oracle Open Office Chart : installing;UNO components +Oracle Open Office Chart : installing;XML filters +Oracle Open Office Chart : instructions +Oracle Open Office Chart : instructions;general +Oracle Open Office Chart : Internet +Oracle Open Office Chart : Internet;checking for updates +Oracle Open Office Chart : Internet;Internet Explorer for displaying Oracle Open Office documents +Oracle Open Office Chart : Internet;presentations +Oracle Open Office Chart : Internet;starting searches +Oracle Open Office Chart : Internet glossary +Oracle Open Office Chart : invert filter +Oracle Open Office Chart : invisible areas +Oracle Open Office Chart : italic text +Oracle Open Office Chart : iterative references in spreadsheets +Oracle Open Office Chart : Java +Oracle Open Office Chart : Java;definition +Oracle Open Office Chart : Java;setting options +Oracle Open Office Chart : JDBC +Oracle Open Office Chart : JDBC;databases (Base) +Oracle Open Office Chart : JDBC;definition +Oracle Open Office Chart : joining +Oracle Open Office Chart : joining;paragraphs +Oracle Open Office Chart : joining;tables (Base) +Oracle Open Office Chart : joins in databases (Base) +Oracle Open Office Chart : justifying text +Oracle Open Office Chart : kerning +Oracle Open Office Chart : kerning;Asian texts +Oracle Open Office Chart : kerning;definition +Oracle Open Office Chart : kerning;in characters +Oracle Open Office Chart : key fields for relations (Base) +Oracle Open Office Chart : keyboard +Oracle Open Office Chart : keyboard;assigning/editing shortcut keys +Oracle Open Office Chart : keyboard;general commands +Oracle Open Office Chart : keyboard;removing numbering +Oracle Open Office Chart : keys +Oracle Open Office Chart : keys;adding push buttons +Oracle Open Office Chart : keys;primary keys (Base) +Oracle Open Office Chart : kiosk export +Oracle Open Office Chart : labels +Oracle Open Office Chart : labels;creating and synchronizing +Oracle Open Office Chart : labels;for charts +Oracle Open Office Chart : labels;for draw objects +Oracle Open Office Chart : labels;form functions +Oracle Open Office Chart : labels;from databases +Oracle Open Office Chart : labels, see also names/callouts +Oracle Open Office Chart : languages +Oracle Open Office Chart : languages;activating modules +Oracle Open Office Chart : languages;Asian support +Oracle Open Office Chart : languages;complex text layout +Oracle Open Office Chart : languages;locale settings +Oracle Open Office Chart : languages;selecting for text +Oracle Open Office Chart : languages;setting options +Oracle Open Office Chart : languages;spellcheck +Oracle Open Office Chart : languages;spellchecking and formatting +Oracle Open Office Chart : large handles (Writer) +Oracle Open Office Chart : large icons +Oracle Open Office Chart : layer arrangement +Oracle Open Office Chart : layout +Oracle Open Office Chart : layout;importing Word documents +Oracle Open Office Chart : layout;pages +Oracle Open Office Chart : LDAP server +Oracle Open Office Chart : LDAP server;address books (Base) +Oracle Open Office Chart : LDAP server;sign on options +Oracle Open Office Chart : leading between paragraphs +Oracle Open Office Chart : left alignment of paragraphs +Oracle Open Office Chart : left joins (Base) +Oracle Open Office Chart : legends +Oracle Open Office Chart : legends;charts +Oracle Open Office Chart : legends;draw objects +Oracle Open Office Chart : legends;rounding corners +Oracle Open Office Chart : Letter Wizard +Oracle Open Office Chart : levels +Oracle Open Office Chart : levels;depth stagger +Oracle Open Office Chart : levels;macro security +Oracle Open Office Chart : limits of tables (Writer) +Oracle Open Office Chart : line breaks +Oracle Open Office Chart : line breaks;in cells +Oracle Open Office Chart : line charts +Oracle Open Office Chart : line spacing +Oracle Open Office Chart : line spacing;context menu in paragraphs +Oracle Open Office Chart : line spacing;paragraph +Oracle Open Office Chart : line styles +Oracle Open Office Chart : line styles;applying +Oracle Open Office Chart : line styles;defining +Oracle Open Office Chart : lines +Oracle Open Office Chart : lines;defining ends +Oracle Open Office Chart : lines;draw functions +Oracle Open Office Chart : lines;drawing in text +Oracle Open Office Chart : lines;editing points +Oracle Open Office Chart : lines;removing automatic lines +Oracle Open Office Chart : lines of text +Oracle Open Office Chart : lines of text;alignment +Oracle Open Office Chart : links +Oracle Open Office Chart : links;between cells and controls +Oracle Open Office Chart : links;by drag and drop +Oracle Open Office Chart : links;character formats +Oracle Open Office Chart : links;definition +Oracle Open Office Chart : links;editing hyperlinks +Oracle Open Office Chart : links;inserting +Oracle Open Office Chart : links;modifying +Oracle Open Office Chart : links;opening files with +Oracle Open Office Chart : links;relational databases (Base) +Oracle Open Office Chart : links;turning off automatic recognition +Oracle Open Office Chart : links;updating options (Writer) +Oracle Open Office Chart : links;updating specific links +Oracle Open Office Chart : list box creation +Oracle Open Office Chart : lists +Oracle Open Office Chart : lists;data assigned to controls +Oracle Open Office Chart : lists;registered databases (Base) +Oracle Open Office Chart : lists;regular expressions +Oracle Open Office Chart : live presentations on the Internet +Oracle Open Office Chart : loading +Oracle Open Office Chart : loading;documents +Oracle Open Office Chart : loading;documents from other formats +Oracle Open Office Chart : loading;HTML documents, automatically +Oracle Open Office Chart : loading;Microsoft Office documents with VBA code +Oracle Open Office Chart : loading;reloading +Oracle Open Office Chart : loading;XML files +Oracle Open Office Chart : locale settings +Oracle Open Office Chart : logarithmic scaling along axes +Oracle Open Office Chart : lowercase letters +Oracle Open Office Chart : lowercase letters;font effects +Oracle Open Office Chart : Macro Wizard (Base) +Oracle Open Office Chart : macros +Oracle Open Office Chart : macros;assigning to events in forms +Oracle Open Office Chart : macros;attaching new (Base) +Oracle Open Office Chart : macros;in MS Office documents +Oracle Open Office Chart : macros;interrupting +Oracle Open Office Chart : macros;organizing +Oracle Open Office Chart : macros;recording +Oracle Open Office Chart : macros;security +Oracle Open Office Chart : macros;security levels +Oracle Open Office Chart : macros;security warning dialog +Oracle Open Office Chart : macros;selecting security warnings +Oracle Open Office Chart : magnifiers +Oracle Open Office Chart : margins +Oracle Open Office Chart : margins;pages +Oracle Open Office Chart : margins;setting with the mouse +Oracle Open Office Chart : margins;shadows +Oracle Open Office Chart : marking changes +Oracle Open Office Chart : marking, see selecting +Oracle Open Office Chart : Math formula editor +Oracle Open Office Chart : mean value lines in charts +Oracle Open Office Chart : measurement units +Oracle Open Office Chart : measurement units;changing on rulers +Oracle Open Office Chart : measurement units;converting +Oracle Open Office Chart : measurement units;selecting +Oracle Open Office Chart : Media Player window +Oracle Open Office Chart : menus +Oracle Open Office Chart : menus;activating context menus +Oracle Open Office Chart : menus;assigning macros +Oracle Open Office Chart : menus;customizing +Oracle Open Office Chart : merging +Oracle Open Office Chart : merging;documents +Oracle Open Office Chart : META tags +Oracle Open Office Chart : metrics +Oracle Open Office Chart : metrics;converting +Oracle Open Office Chart : metrics;document formatting (Writer) +Oracle Open Office Chart : metrics;in sheets +Oracle Open Office Chart : Microsoft Office +Oracle Open Office Chart : Microsoft Office;Access databases (base) +Oracle Open Office Chart : Microsoft Office;as default file format +Oracle Open Office Chart : Microsoft Office;document import restrictions +Oracle Open Office Chart : Microsoft Office;feature comparisons +Oracle Open Office Chart : Microsoft Office;importing password protected files +Oracle Open Office Chart : Microsoft Office;importing Word documents +Oracle Open Office Chart : Microsoft Office;importing/exporting VBA code +Oracle Open Office Chart : Microsoft Office;new users information +Oracle Open Office Chart : Microsoft Office;opening Microsoft documents +Oracle Open Office Chart : Microsoft Office;reassigning document types +Oracle Open Office Chart : migrating macros (Base) +Oracle Open Office Chart : mobile device filters +Oracle Open Office Chart : models in XForms +Oracle Open Office Chart : modifying, see changing +Oracle Open Office Chart : more controls +Oracle Open Office Chart : mosaic filter +Oracle Open Office Chart : mouse +Oracle Open Office Chart : mouse;pointers when using drag and drop +Oracle Open Office Chart : mouse;positioning +Oracle Open Office Chart : movies +Oracle Open Office Chart : moving +Oracle Open Office Chart : moving;tab stops on ruler +Oracle Open Office Chart : moving;toolbars +Oracle Open Office Chart : moving;using guide lines in presentations +Oracle Open Office Chart : MS ADO interface (Base) +Oracle Open Office Chart : multi-line titles in forms +Oracle Open Office Chart : multiple documents +Oracle Open Office Chart : multiple documents;opening +Oracle Open Office Chart : multiple selection +Oracle Open Office Chart : music +Oracle Open Office Chart : My Documents folder +Oracle Open Office Chart : My Documents folder;changing work directory +Oracle Open Office Chart : My Documents folder;opening +Oracle Open Office Chart : MySQL databases (Base) +Oracle Open Office Chart : names +Oracle Open Office Chart : names;multi-line titles +Oracle Open Office Chart : names;objects +Oracle Open Office Chart : names, see also labels/callouts +Oracle Open Office Chart : namespace organization in XForms +Oracle Open Office Chart : native SQL (Base) +Oracle Open Office Chart : navigating +Oracle Open Office Chart : navigating;in documents +Oracle Open Office Chart : Navigation bar +Oracle Open Office Chart : Navigation bar;controls +Oracle Open Office Chart : Navigation bar;forms +Oracle Open Office Chart : Navigator +Oracle Open Office Chart : Navigator;comments +Oracle Open Office Chart : Navigator;contents as lists +Oracle Open Office Chart : Navigator;docking +Oracle Open Office Chart : Navigator;working with +Oracle Open Office Chart : net charts +Oracle Open Office Chart : network identity options +Oracle Open Office Chart : new databases +Oracle Open Office Chart : new documents +Oracle Open Office Chart : new lines in cells +Oracle Open Office Chart : new windows +Oracle Open Office Chart : non-breaking dashes +Oracle Open Office Chart : non-breaking spaces (Writer) +Oracle Open Office Chart : non-printing characters (Writer) +Oracle Open Office Chart : number formats +Oracle Open Office Chart : number formats;codes +Oracle Open Office Chart : number formats;formats +Oracle Open Office Chart : number formats;recognition in text tables +Oracle Open Office Chart : number of pages +Oracle Open Office Chart : number of sheets +Oracle Open Office Chart : number of tables +Oracle Open Office Chart : numbering +Oracle Open Office Chart : numbering;options +Oracle Open Office Chart : numbering;turning off +Oracle Open Office Chart : numbering;using automatically +Oracle Open Office Chart : numbers +Oracle Open Office Chart : numbers;date, time and currency formats +Oracle Open Office Chart : numerical fields in forms +Oracle Open Office Chart : objects +Oracle Open Office Chart : objects;always moveable (Impress/Draw) +Oracle Open Office Chart : objects;arranging within stacks +Oracle Open Office Chart : objects;copying when moving in presentations +Oracle Open Office Chart : objects;definition +Oracle Open Office Chart : objects;displaying in spreadsheets +Oracle Open Office Chart : objects;displaying in text documents +Oracle Open Office Chart : objects;editing +Oracle Open Office Chart : objects;inserting from Gallery +Oracle Open Office Chart : objects;inserting OLE objects +Oracle Open Office Chart : objects;moving and resizing with mouse +Oracle Open Office Chart : objects;naming +Oracle Open Office Chart : objects;opening +Oracle Open Office Chart : objects;properties of charts +Oracle Open Office Chart : objects;quickly moving to +Oracle Open Office Chart : objects;titles and descriptions +Oracle Open Office Chart : ODBC +Oracle Open Office Chart : ODBC;database (Base) +Oracle Open Office Chart : ODBC;definition +Oracle Open Office Chart : ODF file formats +Oracle Open Office Chart : Office +Oracle Open Office Chart : Office;Microsoft Office and Oracle Open Office +Oracle Open Office Chart : OLE +Oracle Open Office Chart : OLE;definition +Oracle Open Office Chart : OLE objects +Oracle Open Office Chart : OLE objects;arranging within stacks +Oracle Open Office Chart : OLE objects;captions (Writer) +Oracle Open Office Chart : OLE objects;inserting +Oracle Open Office Chart : OLE objects;number of +Oracle Open Office Chart : OLE objects;protecting +Oracle Open Office Chart : one and a half line spacing in text +Oracle Open Office Chart : online feedback options +Oracle Open Office Chart : online registration +Oracle Open Office Chart : online update options +Oracle Open Office Chart : online updates +Oracle Open Office Chart : online updates;checking automatically +Oracle Open Office Chart : online updates;checking manually +Oracle Open Office Chart : OpenDocument file formats +Oracle Open Office Chart : OpenGL +Oracle Open Office Chart : OpenGL;definition +Oracle Open Office Chart : opening +Oracle Open Office Chart : opening;context menus +Oracle Open Office Chart : opening;database files +Oracle Open Office Chart : opening;dialog settings +Oracle Open Office Chart : opening;documents +Oracle Open Office Chart : opening;documents from other formats +Oracle Open Office Chart : opening;documents on WebDAV server +Oracle Open Office Chart : opening;documents with links +Oracle Open Office Chart : opening;files, with placeholders +Oracle Open Office Chart : opening;forms +Oracle Open Office Chart : opening;Microsoft Office files +Oracle Open Office Chart : opening;mobile device documents +Oracle Open Office Chart : opening;objects +Oracle Open Office Chart : opening;reports +Oracle Open Office Chart : opening;several files +Oracle Open Office Chart : opening;XForms +Oracle Open Office Chart : operators +Oracle Open Office Chart : operators;standard filters +Oracle Open Office Chart : optional hyphens (Writer) +Oracle Open Office Chart : options +Oracle Open Office Chart : options;accessibility +Oracle Open Office Chart : options;appearance +Oracle Open Office Chart : options;compatibility (Writer) +Oracle Open Office Chart : options;improvement program +Oracle Open Office Chart : options;network identity +Oracle Open Office Chart : options;online update +Oracle Open Office Chart : options;tools +Oracle Open Office Chart : Oracle databases (base) +Oracle Open Office Chart : Oracle Open Office Base data sources +Oracle Open Office Chart : Oracle Open Office Basic scripts in HTML documents +Oracle Open Office Chart : Oracle Open Office documents +Oracle Open Office Chart : Oracle Open Office documents;mobile device filters +Oracle Open Office Chart : Oracle Open Office documents;viewing and editing in Internet Explorer +Oracle Open Office Chart : Oracle Open Office Math start +Oracle Open Office Chart : order of chart data +Oracle Open Office Chart : ordering +Oracle Open Office Chart : ordering;objects +Oracle Open Office Chart : ordinal numbers +Oracle Open Office Chart : ordinal numbers;replacing +Oracle Open Office Chart : organizing +Oracle Open Office Chart : organizing;macros and scripts +Oracle Open Office Chart : organizing;namespaces in XForms +Oracle Open Office Chart : organizing;styles +Oracle Open Office Chart : organizing;templates +Oracle Open Office Chart : original size +Oracle Open Office Chart : original size;printing in Oracle Open Office Math +Oracle Open Office Chart : original size;restoring after cropping +Oracle Open Office Chart : outlines +Oracle Open Office Chart : outlines;font effects +Oracle Open Office Chart : outlines;outline symbols +Oracle Open Office Chart : outlines;sending to presentations +Oracle Open Office Chart : overwrite mode +Oracle Open Office Chart : packages, see extensions +Oracle Open Office Chart : page breaks +Oracle Open Office Chart : page breaks;displaying (Calc) +Oracle Open Office Chart : page formats +Oracle Open Office Chart : page formats;maximizing +Oracle Open Office Chart : page formats;restriction +Oracle Open Office Chart : page styles +Oracle Open Office Chart : page styles;editing/applying with statusbar +Oracle Open Office Chart : pages +Oracle Open Office Chart : pages;backgrounds in all applications +Oracle Open Office Chart : pages;formatting and numbering +Oracle Open Office Chart : pages;printing page names in presentations +Oracle Open Office Chart : pages;scaling +Oracle Open Office Chart : pages;selecting one to print +Oracle Open Office Chart : paint box +Oracle Open Office Chart : paint can symbol +Oracle Open Office Chart : Paintbrush +Oracle Open Office Chart : pair kerning +Oracle Open Office Chart : Palm file filters +Oracle Open Office Chart : paper formats +Oracle Open Office Chart : paper size warning +Oracle Open Office Chart : paper trays +Oracle Open Office Chart : paragraph marks +Oracle Open Office Chart : paragraph marks;displaying (Writer) +Oracle Open Office Chart : paragraph styles +Oracle Open Office Chart : paragraph styles;languages +Oracle Open Office Chart : paragraph styles;modifying basic fonts +Oracle Open Office Chart : paragraphs +Oracle Open Office Chart : paragraphs;alignment +Oracle Open Office Chart : paragraphs;Asian typography +Oracle Open Office Chart : paragraphs;defining borders +Oracle Open Office Chart : paragraphs;hidden paragraphs (Writer) +Oracle Open Office Chart : paragraphs;increasing indents of +Oracle Open Office Chart : paragraphs;indents, margins and columns +Oracle Open Office Chart : paragraphs;inserting bullets +Oracle Open Office Chart : paragraphs;joining +Oracle Open Office Chart : paragraphs;numbering automatically +Oracle Open Office Chart : paragraphs;removing blank ones +Oracle Open Office Chart : paragraphs;spacing +Oracle Open Office Chart : paragraphs;tab stops +Oracle Open Office Chart : parameters +Oracle Open Office Chart : parameters;command line +Oracle Open Office Chart : parameters;queries (Base) +Oracle Open Office Chart : password as document property +Oracle Open Office Chart : passwords for protecting contents +Oracle Open Office Chart : pasting +Oracle Open Office Chart : pasting;cell ranges +Oracle Open Office Chart : pasting;cell ranges from spreadsheets +Oracle Open Office Chart : pasting;data from text documents +Oracle Open Office Chart : pasting;draw objects +Oracle Open Office Chart : pasting;draw objects from other documents +Oracle Open Office Chart : pasting;formatted/unformatted text +Oracle Open Office Chart : pasting;from data source view +Oracle Open Office Chart : pasting;from data sources to Oracle Open Office Calc +Oracle Open Office Chart : pasting;pictures from other documents +Oracle Open Office Chart : pasting;sheet areas in text documents +Oracle Open Office Chart : pasting;to Gallery +Oracle Open Office Chart : paths +Oracle Open Office Chart : paths;changing work directory +Oracle Open Office Chart : paths;defaults +Oracle Open Office Chart : pattern editor +Oracle Open Office Chart : pattern fields +Oracle Open Office Chart : pattern fields;form functions +Oracle Open Office Chart : patterns for objects +Oracle Open Office Chart : PDF +Oracle Open Office Chart : PDF;export +Oracle Open Office Chart : PDF;PostScript to PDF converter, UNIX +Oracle Open Office Chart : personal data input +Oracle Open Office Chart : phonetic guide +Oracle Open Office Chart : picklist creation +Oracle Open Office Chart : pictures +Oracle Open Office Chart : pictures;adding to Gallery +Oracle Open Office Chart : pictures;arranging within stacks +Oracle Open Office Chart : pictures;assigning macros +Oracle Open Office Chart : pictures;backgrounds +Oracle Open Office Chart : pictures;captions (Writer) +Oracle Open Office Chart : pictures;changing paths +Oracle Open Office Chart : pictures;cropping and zooming +Oracle Open Office Chart : pictures;displaying in Calc +Oracle Open Office Chart : pictures;displaying in Writer (Writer) +Oracle Open Office Chart : pictures;drag and drop between documents +Oracle Open Office Chart : pictures;drawing +Oracle Open Office Chart : pictures;editing +Oracle Open Office Chart : pictures;filters +Oracle Open Office Chart : pictures;ImageMap +Oracle Open Office Chart : pictures;inserting automatically +Oracle Open Office Chart : pictures;inserting from Gallery +Oracle Open Office Chart : pictures;number of +Oracle Open Office Chart : pictures;printing +Oracle Open Office Chart : pictures;scaling/resizing +Oracle Open Office Chart : pie charts +Oracle Open Office Chart : pie charts;options +Oracle Open Office Chart : pie charts;types +Oracle Open Office Chart : pixel editor +Oracle Open Office Chart : pixel graphics +Oracle Open Office Chart : pixel graphics;inserting and editing +Oracle Open Office Chart : pixel patterns +Oracle Open Office Chart : placeholders +Oracle Open Office Chart : placeholders;in SQL queries +Oracle Open Office Chart : placeholders;on opening files +Oracle Open Office Chart : placing toolbars +Oracle Open Office Chart : playing movies and sound files +Oracle Open Office Chart : plotting data as charts +Oracle Open Office Chart : plug-ins +Oracle Open Office Chart : plug-ins;activating and deactivating +Oracle Open Office Chart : plug-ins;definition +Oracle Open Office Chart : plug-ins;inserting +Oracle Open Office Chart : pocket device appliances +Oracle Open Office Chart : Pocket PC file filters +Oracle Open Office Chart : points +Oracle Open Office Chart : points;reducing editing points when snapping (Impress/Draw) +Oracle Open Office Chart : polygon drawing +Oracle Open Office Chart : pop-art filter +Oracle Open Office Chart : portable document format +Oracle Open Office Chart : positioning +Oracle Open Office Chart : positioning;axes +Oracle Open Office Chart : positioning;draw objects and controls +Oracle Open Office Chart : positioning;fonts +Oracle Open Office Chart : positioning;objects +Oracle Open Office Chart : positioning;toolbars +Oracle Open Office Chart : post method for form transmissions +Oracle Open Office Chart : posterizing filter +Oracle Open Office Chart : PostScript +Oracle Open Office Chart : PostScript;creating files +Oracle Open Office Chart : PostScript;PDF converter, UNIX +Oracle Open Office Chart : PowerPoint export +Oracle Open Office Chart : precision as shown (Calc) +Oracle Open Office Chart : predefining fonts +Oracle Open Office Chart : predictive text, see also AutoCorrect function/AutoFill function/AutoInput function/word completion/text completion +Oracle Open Office Chart : presentations +Oracle Open Office Chart : presentations;creating/opening +Oracle Open Office Chart : presentations;inserting spreadsheet cells +Oracle Open Office Chart : presentations;live on the Internet +Oracle Open Office Chart : presentations;print menu +Oracle Open Office Chart : presentations;saving +Oracle Open Office Chart : presentations;saving automatically +Oracle Open Office Chart : presentations;saving in other formats +Oracle Open Office Chart : presentations;sending as e-mail +Oracle Open Office Chart : presentations;starting with wizard +Oracle Open Office Chart : presentations;wizards +Oracle Open Office Chart : press buttons, see push buttons +Oracle Open Office Chart : previews +Oracle Open Office Chart : previews;fonts lists +Oracle Open Office Chart : primary keys +Oracle Open Office Chart : primary keys;defining +Oracle Open Office Chart : primary keys;design view +Oracle Open Office Chart : primary keys;inserting (Base) +Oracle Open Office Chart : print area selection +Oracle Open Office Chart : printer metrics for document formatting (Writer) +Oracle Open Office Chart : printers +Oracle Open Office Chart : printers;adding, UNIX +Oracle Open Office Chart : printers;choosing +Oracle Open Office Chart : printers;default printer +Oracle Open Office Chart : printers;faxes under UNIX +Oracle Open Office Chart : printers;maximum page formats +Oracle Open Office Chart : printers;paper trays +Oracle Open Office Chart : printers;properties +Oracle Open Office Chart : printing +Oracle Open Office Chart : printing;black and white +Oracle Open Office Chart : printing;brochures +Oracle Open Office Chart : printing;colors in grayscale +Oracle Open Office Chart : printing;comments +Oracle Open Office Chart : printing;copies +Oracle Open Office Chart : printing;creating individual jobs +Oracle Open Office Chart : printing;dates in presentations +Oracle Open Office Chart : printing;directly +Oracle Open Office Chart : printing;documents +Oracle Open Office Chart : printing;drawings defaults +Oracle Open Office Chart : printing;elements in text documents +Oracle Open Office Chart : printing;faster +Oracle Open Office Chart : printing;fitting to pages in Oracle Open Office Math +Oracle Open Office Chart : printing;fitting to pages in presentations +Oracle Open Office Chart : printing;formulas in Oracle Open Office Math +Oracle Open Office Chart : printing;hidden pages of presentations +Oracle Open Office Chart : printing;in original size in Oracle Open Office Math +Oracle Open Office Chart : printing;left/right pages +Oracle Open Office Chart : printing;queries (Base) +Oracle Open Office Chart : printing;scaling in Oracle Open Office Math +Oracle Open Office Chart : printing;selections +Oracle Open Office Chart : printing;text always in black +Oracle Open Office Chart : printing;text in reverse order +Oracle Open Office Chart : printing;tiling pages in presentations +Oracle Open Office Chart : printing;transparencies +Oracle Open Office Chart : printing;warnings +Oracle Open Office Chart : printing;without scaling in presentations +Oracle Open Office Chart : printing speed +Oracle Open Office Chart : programming +Oracle Open Office Chart : programming;Oracle Open Office +Oracle Open Office Chart : programming;scripting +Oracle Open Office Chart : properties +Oracle Open Office Chart : properties;charts +Oracle Open Office Chart : properties;fields in databases +Oracle Open Office Chart : properties;files +Oracle Open Office Chart : properties;form controls +Oracle Open Office Chart : properties;forms +Oracle Open Office Chart : properties;hotspots +Oracle Open Office Chart : properties;printers +Oracle Open Office Chart : properties;smooth lines in line charts/XY charts +Oracle Open Office Chart : protected contents +Oracle Open Office Chart : protected dashes +Oracle Open Office Chart : protected database tables +Oracle Open Office Chart : protected documents +Oracle Open Office Chart : protected spaces +Oracle Open Office Chart : protected spaces;inserting +Oracle Open Office Chart : protected spaces;showing (Writer) +Oracle Open Office Chart : protecting +Oracle Open Office Chart : protecting;contents +Oracle Open Office Chart : protecting;recorded changes +Oracle Open Office Chart : proxy settings +Oracle Open Office Chart : push buttons +Oracle Open Office Chart : push buttons;adding to documents +Oracle Open Office Chart : push buttons;creating +Oracle Open Office Chart : queries +Oracle Open Office Chart : queries;copying (Base) +Oracle Open Office Chart : queries;creating in design view (Base) +Oracle Open Office Chart : queries;creating in SQL view +Oracle Open Office Chart : queries;defining (Base) +Oracle Open Office Chart : queries;deleting table links (Base) +Oracle Open Office Chart : queries;editing in data source view +Oracle Open Office Chart : queries;formulating filter conditions (Base) +Oracle Open Office Chart : queries;joining tables (Base) +Oracle Open Office Chart : queries;missing elements (Base) +Oracle Open Office Chart : queries;overview (Base) +Oracle Open Office Chart : queries;parameter queries (Base) +Oracle Open Office Chart : queries;printing (Base) +Oracle Open Office Chart : Query Wizard (Base) +Oracle Open Office Chart : Quickstarter +Oracle Open Office Chart : quotes +Oracle Open Office Chart : quotes;custom +Oracle Open Office Chart : radar charts, see net charts +Oracle Open Office Chart : radio button creation +Oracle Open Office Chart : read-only documents +Oracle Open Office Chart : read-only documents;cursor +Oracle Open Office Chart : read-only documents;database tables on/off +Oracle Open Office Chart : read-only documents;editing +Oracle Open Office Chart : read-only documents;opening documents as +Oracle Open Office Chart : read-only items in Data Navigator +Oracle Open Office Chart : recognizing URLs automatically +Oracle Open Office Chart : recording +Oracle Open Office Chart : recording;changes +Oracle Open Office Chart : recording;macros +Oracle Open Office Chart : records +Oracle Open Office Chart : records;inserting comments +Oracle Open Office Chart : records;protecting +Oracle Open Office Chart : records;saving +Oracle Open Office Chart : records;searching in databases +Oracle Open Office Chart : rectangle drawing +Oracle Open Office Chart : rectangles with round corners +Oracle Open Office Chart : recursions in spreadsheets +Oracle Open Office Chart : redo command +Oracle Open Office Chart : reduced printing +Oracle Open Office Chart : reference lines +Oracle Open Office Chart : references +Oracle Open Office Chart : references;displaying in color (Calc) +Oracle Open Office Chart : references;expanding (Calc) +Oracle Open Office Chart : references;iterative (Calc) +Oracle Open Office Chart : register-true +Oracle Open Office Chart : register-true;definition +Oracle Open Office Chart : registering +Oracle Open Office Chart : registering;address books +Oracle Open Office Chart : registering;databases (Base) +Oracle Open Office Chart : registering;Oracle Open Office +Oracle Open Office Chart : regression curves in charts +Oracle Open Office Chart : regular expressions +Oracle Open Office Chart : regular expressions;list of +Oracle Open Office Chart : relational databases (Base) +Oracle Open Office Chart : relations +Oracle Open Office Chart : relations;creating and deleting (Base) +Oracle Open Office Chart : relations;joining tables (Base) +Oracle Open Office Chart : relations;properties (Base) +Oracle Open Office Chart : relative hyperlinks +Oracle Open Office Chart : relative saving of URLs +Oracle Open Office Chart : reloading +Oracle Open Office Chart : reloading;documents +Oracle Open Office Chart : reloading;HTML documents, automatically +Oracle Open Office Chart : remarks, see also comments +Oracle Open Office Chart : remote configurations +Oracle Open Office Chart : remove noise filter +Oracle Open Office Chart : removing +Oracle Open Office Chart : removing;bullets and numbering +Oracle Open Office Chart : removing;form filters +Oracle Open Office Chart : removing, see also deleting +Oracle Open Office Chart : reorganizing charts +Oracle Open Office Chart : repeating +Oracle Open Office Chart : repeating;commands +Oracle Open Office Chart : replacement options +Oracle Open Office Chart : replacement table +Oracle Open Office Chart : replacing +Oracle Open Office Chart : replacing;AutoCorrect function +Oracle Open Office Chart : replacing;dashes +Oracle Open Office Chart : replacing;ordinal numbers +Oracle Open Office Chart : replacing;tab stops (regular expressions) +Oracle Open Office Chart : Report Builder +Oracle Open Office Chart : reports +Oracle Open Office Chart : reports;creating +Oracle Open Office Chart : reports;error reports +Oracle Open Office Chart : reports;opening and editing +Oracle Open Office Chart : reports;templates +Oracle Open Office Chart : resetting +Oracle Open Office Chart : resetting;templates +Oracle Open Office Chart : resizing +Oracle Open Office Chart : resizing;objects, by mouse +Oracle Open Office Chart : resizing, see also scaling/zooming +Oracle Open Office Chart : resolution when printing bitmaps +Oracle Open Office Chart : restoring +Oracle Open Office Chart : restoring;default formatting +Oracle Open Office Chart : restoring;editing +Oracle Open Office Chart : reversing printing order +Oracle Open Office Chart : review function +Oracle Open Office Chart : review function;accepting or rejecting changes +Oracle Open Office Chart : review function;comparing documents +Oracle Open Office Chart : review function;protecting records +Oracle Open Office Chart : review function;recording changes example +Oracle Open Office Chart : review function;tracking changes +Oracle Open Office Chart : rich text control +Oracle Open Office Chart : right alignment of paragraphs +Oracle Open Office Chart : right joins (Base) +Oracle Open Office Chart : right-to-left text +Oracle Open Office Chart : rotating +Oracle Open Office Chart : rotating;3D text +Oracle Open Office Chart : round corners +Oracle Open Office Chart : rounding precision (Calc) +Oracle Open Office Chart : row headers +Oracle Open Office Chart : row headers;displaying (Calc) +Oracle Open Office Chart : row headers;highlighting (Calc) +Oracle Open Office Chart : rulers +Oracle Open Office Chart : rulers;default settings +Oracle Open Office Chart : rulers;measurement units +Oracle Open Office Chart : rulers;visible in presentations +Oracle Open Office Chart : samples and templates +Oracle Open Office Chart : saving +Oracle Open Office Chart : saving;default file formats +Oracle Open Office Chart : saving;dialog settings +Oracle Open Office Chart : saving;documents +Oracle Open Office Chart : saving;documents for mobile devices +Oracle Open Office Chart : saving;documents in other formats +Oracle Open Office Chart : saving;documents, automatically +Oracle Open Office Chart : saving;in Microsoft Office file format +Oracle Open Office Chart : saving;options +Oracle Open Office Chart : saving;templates +Oracle Open Office Chart : saving;to XML +Oracle Open Office Chart : saving;VBA code in Microsoft Office documents +Oracle Open Office Chart : saving;with password by default +Oracle Open Office Chart : saving as command +Oracle Open Office Chart : saving as command;precautions +Oracle Open Office Chart : scaling +Oracle Open Office Chart : scaling;axes +Oracle Open Office Chart : scaling;font sizes in user interface +Oracle Open Office Chart : scaling;objects +Oracle Open Office Chart : scaling;pictures +Oracle Open Office Chart : scaling;printing in Oracle Open Office Math +Oracle Open Office Chart : scaling;text in charts +Oracle Open Office Chart : scaling;when printing presentations +Oracle Open Office Chart : scaling, see also zooming +Oracle Open Office Chart : scatter charts +Oracle Open Office Chart : screen +Oracle Open Office Chart : screen;full screen views +Oracle Open Office Chart : screen;scaling +Oracle Open Office Chart : screen magnifiers +Oracle Open Office Chart : screen readers +Oracle Open Office Chart : script organization +Oracle Open Office Chart : scrollbars +Oracle Open Office Chart : scrollbars;controls +Oracle Open Office Chart : scrollbars;displaying (Calc) +Oracle Open Office Chart : scrollbars;horizontal and vertical (Writer) +Oracle Open Office Chart : search criteria for database functions in cells +Oracle Open Office Chart : search engines +Oracle Open Office Chart : search engines;definition +Oracle Open Office Chart : search engines;selecting +Oracle Open Office Chart : searching +Oracle Open Office Chart : searching;all sheets +Oracle Open Office Chart : searching;databases +Oracle Open Office Chart : searching;form filters +Oracle Open Office Chart : searching;Internet +Oracle Open Office Chart : searching;tables and forms +Oracle Open Office Chart : secondary axes in charts +Oracle Open Office Chart : sections +Oracle Open Office Chart : sections;backgrounds +Oracle Open Office Chart : security +Oracle Open Office Chart : security;digital signatures +Oracle Open Office Chart : security;options for documents with macros +Oracle Open Office Chart : security;protecting contents +Oracle Open Office Chart : security;security levels for macros +Oracle Open Office Chart : security;warning dialogs with macros +Oracle Open Office Chart : selecting +Oracle Open Office Chart : selecting;controls +Oracle Open Office Chart : selecting;measurement units +Oracle Open Office Chart : selecting;objects +Oracle Open Office Chart : selecting;print areas +Oracle Open Office Chart : selecting;several files +Oracle Open Office Chart : selection clipboard +Oracle Open Office Chart : selection frames +Oracle Open Office Chart : selection modes in text +Oracle Open Office Chart : sending +Oracle Open Office Chart : sending;AutoAbstract function in presentations +Oracle Open Office Chart : sending;documents as e-mail +Oracle Open Office Chart : sending;documents as faxes +Oracle Open Office Chart : separator lines +Oracle Open Office Chart : separator lines;defining +Oracle Open Office Chart : separators +Oracle Open Office Chart : separators;conditional +Oracle Open Office Chart : Server Side ImageMap +Oracle Open Office Chart : settings +Oracle Open Office Chart : settings;printers +Oracle Open Office Chart : settings;program configuration +Oracle Open Office Chart : settings;proxies +Oracle Open Office Chart : settings;views +Oracle Open Office Chart : SGML +Oracle Open Office Chart : SGML;definition +Oracle Open Office Chart : shadows +Oracle Open Office Chart : shadows;areas +Oracle Open Office Chart : shadows;borders +Oracle Open Office Chart : shadows;characters +Oracle Open Office Chart : shadows;characters, using context menu +Oracle Open Office Chart : shapes +Oracle Open Office Chart : sharing documents +Oracle Open Office Chart : sharpening filter +Oracle Open Office Chart : sheet tabs +Oracle Open Office Chart : sheet tabs;displaying +Oracle Open Office Chart : sheets +Oracle Open Office Chart : sheets;searching all +Oracle Open Office Chart : shortcut keys +Oracle Open Office Chart : shortcut keys;assigning macros +Oracle Open Office Chart : shortcut keys;charts +Oracle Open Office Chart : shortcut keys;general +Oracle Open Office Chart : shortcut keys;in databases +Oracle Open Office Chart : shortcut keys;Oracle Open Office accessibility +Oracle Open Office Chart : showing +Oracle Open Office Chart : showing;changes +Oracle Open Office Chart : showing;docked windows +Oracle Open Office Chart : showing;drawings and controls (Writer) +Oracle Open Office Chart : showing;live presentations on the Internet +Oracle Open Office Chart : showing;toolbars +Oracle Open Office Chart : signing documents with digital signatures +Oracle Open Office Chart : similarity search +Oracle Open Office Chart : simple handles (Writer) +Oracle Open Office Chart : simplified Chinese +Oracle Open Office Chart : simplified Chinese;conversion to traditional Chinese +Oracle Open Office Chart : single sign on options +Oracle Open Office Chart : single-line spacing in text +Oracle Open Office Chart : sizes +Oracle Open Office Chart : sizes;draw objects +Oracle Open Office Chart : sizes;pictures +Oracle Open Office Chart : slanting draw objects +Oracle Open Office Chart : small capitals +Oracle Open Office Chart : small icons +Oracle Open Office Chart : smart tag configuration +Oracle Open Office Chart : smooth scrolling (Writer) +Oracle Open Office Chart : smoothing filter +Oracle Open Office Chart : snap grid defaults (Writer/Calc) +Oracle Open Office Chart : snapping in presentations and drawings +Oracle Open Office Chart : solarization filter +Oracle Open Office Chart : sort lists +Oracle Open Office Chart : sort lists;copying to in Calc +Oracle Open Office Chart : sorting +Oracle Open Office Chart : sorting;data in forms +Oracle Open Office Chart : sorting;databases +Oracle Open Office Chart : sound files +Oracle Open Office Chart : spaces +Oracle Open Office Chart : spaces;displaying (Writer) +Oracle Open Office Chart : spaces;ignoring double +Oracle Open Office Chart : spaces;inserting protected spaces +Oracle Open Office Chart : spaces;showing protected spaces (Writer) +Oracle Open Office Chart : spacing +Oracle Open Office Chart : spacing;between paragraphs in footnotes +Oracle Open Office Chart : spacing;font effects +Oracle Open Office Chart : spacing;lines and paragraphs +Oracle Open Office Chart : spacing;tab stops in text documents +Oracle Open Office Chart : spacing;tabs in presentations +Oracle Open Office Chart : spadmin +Oracle Open Office Chart : special characters +Oracle Open Office Chart : speech bubbles +Oracle Open Office Chart : speed of printing +Oracle Open Office Chart : spellcheck +Oracle Open Office Chart : spellcheck;activating for a language +Oracle Open Office Chart : spellcheck;context menus +Oracle Open Office Chart : spellcheck;default languages +Oracle Open Office Chart : spellcheck;dialog +Oracle Open Office Chart : spellcheck;dictionary of exceptions +Oracle Open Office Chart : spellcheck;ignore list +Oracle Open Office Chart : spin button creation +Oracle Open Office Chart : spoolfiles with Xprinter +Oracle Open Office Chart : spreadsheets +Oracle Open Office Chart : spreadsheets;as databases (base) +Oracle Open Office Chart : spreadsheets;copying areas to text documents +Oracle Open Office Chart : spreadsheets;creating/opening +Oracle Open Office Chart : spreadsheets;inserting charts +Oracle Open Office Chart : spreadsheets;inserting database records +Oracle Open Office Chart : spreadsheets;printing +Oracle Open Office Chart : spreadsheets;saving +Oracle Open Office Chart : spreadsheets;saving automatically +Oracle Open Office Chart : spreadsheets;saving in other formats +Oracle Open Office Chart : spreadsheets;sending as e-mail +Oracle Open Office Chart : SQL +Oracle Open Office Chart : SQL;definition +Oracle Open Office Chart : SQL;DISTINCT parameter +Oracle Open Office Chart : SQL;executing SQL commands +Oracle Open Office Chart : SQL;executing SQL statements (Base) +Oracle Open Office Chart : SQL;queries (Base) +Oracle Open Office Chart : square drawings +Oracle Open Office Chart : standard bar on/off +Oracle Open Office Chart : standard deviation in charts +Oracle Open Office Chart : standard filters +Oracle Open Office Chart : standard filters;comparison operators +Oracle Open Office Chart : standard filters;databases +Oracle Open Office Chart : standard printer under UNIX +Oracle Open Office Chart : start center +Oracle Open Office Chart : start parameters +Oracle Open Office Chart : statistics in charts +Oracle Open Office Chart : status bar on/off +Oracle Open Office Chart : stickers +Oracle Open Office Chart : stock charts +Oracle Open Office Chart : strikethrough +Oracle Open Office Chart : strikethrough;characters +Oracle Open Office Chart : strikethrough;font effects +Oracle Open Office Chart : styles +Oracle Open Office Chart : styles;'changed' message +Oracle Open Office Chart : styles;copying between documents +Oracle Open Office Chart : styles;keyboard shortcuts +Oracle Open Office Chart : styles;organizing +Oracle Open Office Chart : styles;printing styles used in a document +Oracle Open Office Chart : styles;replacing automatically +Oracle Open Office Chart : Styles and Formatting window +Oracle Open Office Chart : Styles and Formatting window;docking +Oracle Open Office Chart : subforms +Oracle Open Office Chart : subforms;creating +Oracle Open Office Chart : subforms;description +Oracle Open Office Chart : submitting forms +Oracle Open Office Chart : suffixes in file formats +Oracle Open Office Chart : support on the Web +Oracle Open Office Chart : synchronizing +Oracle Open Office Chart : synchronizing;labels and business cards +Oracle Open Office Chart : synchronizing;Pocket PC and Oracle Open Office formats +Oracle Open Office Chart : system address book registration +Oracle Open Office Chart : tab stops +Oracle Open Office Chart : tab stops;displaying (Writer) +Oracle Open Office Chart : tab stops;inserting and editing +Oracle Open Office Chart : tab stops;regular expressions +Oracle Open Office Chart : tab stops;setting in sheets +Oracle Open Office Chart : tab stops;settings +Oracle Open Office Chart : tab stops;spacing in presentations +Oracle Open Office Chart : tab stops;spacing in text documents +Oracle Open Office Chart : table controls +Oracle Open Office Chart : table controls;form functions +Oracle Open Office Chart : table controls;keyboard-only edit mode +Oracle Open Office Chart : table controls;properties +Oracle Open Office Chart : table views of databases +Oracle Open Office Chart : Table Wizard (Base) +Oracle Open Office Chart : tables +Oracle Open Office Chart : tables;inserting line breaks +Oracle Open Office Chart : tables in databases +Oracle Open Office Chart : tables in databases;access rights to (Base) +Oracle Open Office Chart : tables in databases;adding to queries +Oracle Open Office Chart : tables in databases;browsing and editing +Oracle Open Office Chart : tables in databases;copying database tables (Base) +Oracle Open Office Chart : tables in databases;creating +Oracle Open Office Chart : tables in databases;creating in design view (manually) +Oracle Open Office Chart : tables in databases;importing text formats (Base) +Oracle Open Office Chart : tables in databases;joining for queries (Base) +Oracle Open Office Chart : tables in databases;printing queries (Base) +Oracle Open Office Chart : tables in databases;relations (Base) +Oracle Open Office Chart : tables in databases;searching +Oracle Open Office Chart : tables in spreadsheets +Oracle Open Office Chart : tables in spreadsheets;copying data to other applications +Oracle Open Office Chart : tables in spreadsheets;defining borders +Oracle Open Office Chart : tables in spreadsheets;value highlighting +Oracle Open Office Chart : tables in text +Oracle Open Office Chart : tables in text;captions +Oracle Open Office Chart : tables in text;creating automatically +Oracle Open Office Chart : tables in text;default settings +Oracle Open Office Chart : tables in text;defining borders +Oracle Open Office Chart : tables in text;displaying +Oracle Open Office Chart : tables in text;printing +Oracle Open Office Chart : tabs +Oracle Open Office Chart : tabs;displaying sheet tabs +Oracle Open Office Chart : tags +Oracle Open Office Chart : tags;definition +Oracle Open Office Chart : tags;META tags +Oracle Open Office Chart : templates +Oracle Open Office Chart : templates;agendas +Oracle Open Office Chart : templates;changing basic fonts +Oracle Open Office Chart : templates;database reports +Oracle Open Office Chart : templates;deleting +Oracle Open Office Chart : templates;editing and saving +Oracle Open Office Chart : templates;faxes +Oracle Open Office Chart : templates;importing and exporting +Oracle Open Office Chart : templates;letters +Oracle Open Office Chart : templates;new documents from templates +Oracle Open Office Chart : templates;opening documents with +Oracle Open Office Chart : templates;organizing +Oracle Open Office Chart : terminology +Oracle Open Office Chart : terminology;general glossary +Oracle Open Office Chart : terminology;Internet glossary +Oracle Open Office Chart : testing XML filters +Oracle Open Office Chart : text +Oracle Open Office Chart : text;animating +Oracle Open Office Chart : text;Asian layout +Oracle Open Office Chart : text;bold +Oracle Open Office Chart : text;coloring +Oracle Open Office Chart : text;copying by drag and drop +Oracle Open Office Chart : text;CTL languages +Oracle Open Office Chart : text;drawing pictures +Oracle Open Office Chart : text;font effects +Oracle Open Office Chart : text;font sizes +Oracle Open Office Chart : text;font styles +Oracle Open Office Chart : text;fonts and formats +Oracle Open Office Chart : text;Fontwork icons +Oracle Open Office Chart : text;hyperlinks +Oracle Open Office Chart : text;inserting special characters +Oracle Open Office Chart : text;italics +Oracle Open Office Chart : text;kerning +Oracle Open Office Chart : text;language selection +Oracle Open Office Chart : text;line spacing +Oracle Open Office Chart : text;overwriting or inserting +Oracle Open Office Chart : text;printing in black +Oracle Open Office Chart : text;replacing with format +Oracle Open Office Chart : text;selection modes +Oracle Open Office Chart : text;shadowed +Oracle Open Office Chart : text;text/draw objects +Oracle Open Office Chart : text attributes +Oracle Open Office Chart : text attributes;hyperlinks +Oracle Open Office Chart : text attributes;undoing +Oracle Open Office Chart : text boxes +Oracle Open Office Chart : text boxes;form functions +Oracle Open Office Chart : text boxes;positioning +Oracle Open Office Chart : text breaks in cells +Oracle Open Office Chart : text colors for better accessibility +Oracle Open Office Chart : text databases (Base) +Oracle Open Office Chart : text documents +Oracle Open Office Chart : text documents;creating/opening +Oracle Open Office Chart : text documents;importing/exporting +Oracle Open Office Chart : text documents;inserting spreadsheet cells +Oracle Open Office Chart : text documents;print settings +Oracle Open Office Chart : text documents;printing +Oracle Open Office Chart : text documents;saving +Oracle Open Office Chart : text documents;saving automatically +Oracle Open Office Chart : text documents;saving in other formats +Oracle Open Office Chart : text documents;sending as e-mail +Oracle Open Office Chart : text effects +Oracle Open Office Chart : text flow +Oracle Open Office Chart : text flow;in cells +Oracle Open Office Chart : text formats +Oracle Open Office Chart : text formats;databases +Oracle Open Office Chart : text formats;pasting +Oracle Open Office Chart : text input fields +Oracle Open Office Chart : text layout for special languages +Oracle Open Office Chart : text objects +Oracle Open Office Chart : text objects;alignment +Oracle Open Office Chart : text objects;draw functions +Oracle Open Office Chart : text objects;fonts +Oracle Open Office Chart : text objects;in presentations and drawings +Oracle Open Office Chart : text overflow in spreadsheet cells +Oracle Open Office Chart : text scaling in charts +Oracle Open Office Chart : text, see also text documents, paragraphs and characters +Oracle Open Office Chart : TextArt, see Fontwork +Oracle Open Office Chart : textures +Oracle Open Office Chart : textures;inserting from Gallery +Oracle Open Office Chart : textures;on chart bars +Oracle Open Office Chart : Thai +Oracle Open Office Chart : Thai;entering text +Oracle Open Office Chart : Thai;language settings +Oracle Open Office Chart : thesaurus +Oracle Open Office Chart : thesaurus;activating for a language +Oracle Open Office Chart : ticker text +Oracle Open Office Chart : time fields +Oracle Open Office Chart : time fields;form functions +Oracle Open Office Chart : times +Oracle Open Office Chart : times;inserting when printing presentations +Oracle Open Office Chart : times, formats +Oracle Open Office Chart : tips +Oracle Open Office Chart : tips;extended tips in Help +Oracle Open Office Chart : title rows +Oracle Open Office Chart : title rows;printing in Oracle Open Office Math +Oracle Open Office Chart : titles +Oracle Open Office Chart : titles;alignment (charts) +Oracle Open Office Chart : titles;changing +Oracle Open Office Chart : titles;editing in charts +Oracle Open Office Chart : titles;font effects +Oracle Open Office Chart : titles;formatting automatically +Oracle Open Office Chart : titles;formatting charts +Oracle Open Office Chart : titles;objects +Oracle Open Office Chart : toolbars +Oracle Open Office Chart : toolbars;adding buttons +Oracle Open Office Chart : toolbars;docking/undocking +Oracle Open Office Chart : toolbars;Form Navigation bar +Oracle Open Office Chart : toolbars;viewing/closing +Oracle Open Office Chart : tools bar +Oracle Open Office Chart : tooltips +Oracle Open Office Chart : tooltips;extended tips +Oracle Open Office Chart : tooltips;help +Oracle Open Office Chart : Track Changes, see review function +Oracle Open Office Chart : traditional Chinese +Oracle Open Office Chart : traditional Chinese;conversion to simplified Chinese +Oracle Open Office Chart : transparency +Oracle Open Office Chart : transparency;areas +Oracle Open Office Chart : transparency;off for faster printing +Oracle Open Office Chart : transparency;saving +Oracle Open Office Chart : tree view of Help +Oracle Open Office Chart : trend lines in charts +Oracle Open Office Chart : triangle drawing +Oracle Open Office Chart : typefaces +Oracle Open Office Chart : typefaces;formats +Oracle Open Office Chart : typography +Oracle Open Office Chart : typography;Asian +Oracle Open Office Chart : underlining +Oracle Open Office Chart : underlining;AutoFormat function +Oracle Open Office Chart : underlining;characters +Oracle Open Office Chart : underlining;text +Oracle Open Office Chart : undocking windows +Oracle Open Office Chart : undoing +Oracle Open Office Chart : undoing;direct formatting +Oracle Open Office Chart : undoing;editing +Oracle Open Office Chart : undoing;number of steps +Oracle Open Office Chart : ungrouping groups +Oracle Open Office Chart : units +Oracle Open Office Chart : units;converting +Oracle Open Office Chart : units;measurement units +Oracle Open Office Chart : UNO components +Oracle Open Office Chart : UNO components;Extension Manager +Oracle Open Office Chart : UNO components;integrating new +Oracle Open Office Chart : update options +Oracle Open Office Chart : updates +Oracle Open Office Chart : updates;checking automatically +Oracle Open Office Chart : updates;checking manually +Oracle Open Office Chart : updating +Oracle Open Office Chart : updating;fields and charts, automatically (Writer) +Oracle Open Office Chart : updating;links in text documents +Oracle Open Office Chart : updating;links, on opening +Oracle Open Office Chart : updating;templates +Oracle Open Office Chart : URL +Oracle Open Office Chart : URL;changing hyperlink URLs +Oracle Open Office Chart : URL;definition +Oracle Open Office Chart : URL;in pictures +Oracle Open Office Chart : URL;saving absolute/relative paths +Oracle Open Office Chart : URL;turning off URL recognition +Oracle Open Office Chart : user data +Oracle Open Office Chart : user data;input +Oracle Open Office Chart : user data;removing when saving +Oracle Open Office Chart : user feedback +Oracle Open Office Chart : user feedback;automatically +Oracle Open Office Chart : user-defined dictionaries +Oracle Open Office Chart : user-defined dictionaries;creating +Oracle Open Office Chart : user-defined dictionaries;dictionary of exceptions +Oracle Open Office Chart : user-defined dictionaries;editing +Oracle Open Office Chart : user-defined styles +Oracle Open Office Chart : user-defined styles;automatically replacing +Oracle Open Office Chart : UTF-8/UCS2 support +Oracle Open Office Chart : values +Oracle Open Office Chart : values;rounded as shown (Calc) +Oracle Open Office Chart : variables +Oracle Open Office Chart : variables;for paths +Oracle Open Office Chart : variances in charts +Oracle Open Office Chart : VBA code +Oracle Open Office Chart : VBA code;loading/saving documents with VBA code +Oracle Open Office Chart : version management +Oracle Open Office Chart : version numbers of documents +Oracle Open Office Chart : versions +Oracle Open Office Chart : versions;comparing documents +Oracle Open Office Chart : versions;file saving as, restriction +Oracle Open Office Chart : versions;merging document versions +Oracle Open Office Chart : versions;of a document +Oracle Open Office Chart : versions;Oracle Open Office +Oracle Open Office Chart : vertical callouts +Oracle Open Office Chart : vertical scrollbars (Writer) +Oracle Open Office Chart : vertical text boxes +Oracle Open Office Chart : videos +Oracle Open Office Chart : viewing +Oracle Open Office Chart : viewing;databases +Oracle Open Office Chart : viewing;file properties +Oracle Open Office Chart : viewing;Oracle Open Office documents in Internet Explorer +Oracle Open Office Chart : viewing;toolbars +Oracle Open Office Chart : views +Oracle Open Office Chart : views;creating database views (Base) +Oracle Open Office Chart : views;defaults +Oracle Open Office Chart : views;full screen +Oracle Open Office Chart : views;icons +Oracle Open Office Chart : views;scaling +Oracle Open Office Chart : Visual Basic for Applications +Oracle Open Office Chart : Visual Basic for Applications;loading/saving documents with VBA code +Oracle Open Office Chart : watermarks +Oracle Open Office Chart : web documents +Oracle Open Office Chart : web documents;XForms +Oracle Open Office Chart : Web support +Oracle Open Office Chart : WebCast export +Oracle Open Office Chart : WebDAV over HTTPS +Oracle Open Office Chart : windows +Oracle Open Office Chart : windows;docking +Oracle Open Office Chart : windows;docking definition +Oracle Open Office Chart : windows;hiding/showing/docking +Oracle Open Office Chart : windows;new +Oracle Open Office Chart : wizards +Oracle Open Office Chart : wizards;agendas +Oracle Open Office Chart : wizards;database queries +Oracle Open Office Chart : wizards;database tables (Base) +Oracle Open Office Chart : wizards;databases (Base) +Oracle Open Office Chart : wizards;document converter +Oracle Open Office Chart : wizards;Euro Converter +Oracle Open Office Chart : wizards;faxes +Oracle Open Office Chart : wizards;forms +Oracle Open Office Chart : wizards;letters +Oracle Open Office Chart : wizards;macros (Base) +Oracle Open Office Chart : wizards;overview +Oracle Open Office Chart : wizards;presentations +Oracle Open Office Chart : wizards;reports +Oracle Open Office Chart : Word documents +Oracle Open Office Chart : Word documents;compatibility +Oracle Open Office Chart : Word documents;saving as +Oracle Open Office Chart : WordArt, see Fontwork +Oracle Open Office Chart : words +Oracle Open Office Chart : words;automatically replacing +Oracle Open Office Chart : words;wrapping in cells +Oracle Open Office Chart : words;wrapping in CTL +Oracle Open Office Chart : working directory change +Oracle Open Office Chart : wrapping text +Oracle Open Office Chart : wrapping text;in cells +Oracle Open Office Chart : write protection on/off +Oracle Open Office Chart : writing aids options +Oracle Open Office Chart : WYSIWYG in fonts lists +Oracle Open Office Chart : X axes +Oracle Open Office Chart : X axes;grid formatting +Oracle Open Office Chart : X axes;positioning +Oracle Open Office Chart : X axes;scaling +Oracle Open Office Chart : X axes;showing +Oracle Open Office Chart : XForms +Oracle Open Office Chart : XForms;adding/editing/deleting/organizing namespaces +Oracle Open Office Chart : XForms;conditions +Oracle Open Office Chart : XForms;opening/editing +Oracle Open Office Chart : XML converters +Oracle Open Office Chart : XML file formats +Oracle Open Office Chart : XML filters +Oracle Open Office Chart : XML filters;creating/testing +Oracle Open Office Chart : XML filters;saving as package/installing/deleting +Oracle Open Office Chart : XML filters;settings +Oracle Open Office Chart : XML Forms, see XForms +Oracle Open Office Chart : XSLT filters, see also XML filters +Oracle Open Office Chart : XY charts +Oracle Open Office Chart : Y axes +Oracle Open Office Chart : Y axes;formatting +Oracle Open Office Chart : Y axes;grid formatting +Oracle Open Office Chart : Y axes;positioning +Oracle Open Office Chart : Y axes;scaling +Oracle Open Office Chart : Y axes;showing +Oracle Open Office Chart : years +Oracle Open Office Chart : years;2-digit options +Oracle Open Office Chart : Z axes +Oracle Open Office Chart : Z axes;grid formatting +Oracle Open Office Chart : Z axes;showing +Oracle Open Office Chart : zero values +Oracle Open Office Chart : zero values;displaying (Calc) +Oracle Open Office Chart : zooming +Oracle Open Office Chart : zooming;page views +Oracle Open Office Chart : zooming;pictures +Oracle Open Office Chart : zooming;status bar Oracle Open Office Base : 3D text creation Oracle Open Office Base : abbreviation replacement Oracle Open Office Base : absolute hyperlinks @@ -14558,10 +8944,8 @@ Oracle Open Office Base : AutoCorrect function;options Oracle Open Office Base : AutoCorrect function;pictures and frames Oracle Open Office Base : AutoCorrect function;quotes Oracle Open Office Base : AutoCorrect function;replacement table -Oracle Open Office Base : AutoCorrect function;switching on and off in Calc +Oracle Open Office Base : AutoCorrect function;switching on and off Oracle Open Office Base : AutoCorrect function;URL recognition -Oracle Open Office Base : AutoFormat function -Oracle Open Office Base : AutoFormat function;switching on and off Oracle Open Office Base : automatic captions (Writer) Oracle Open Office Base : automatic control focus Oracle Open Office Base : automatic hyperlink formatting @@ -14718,6 +9102,7 @@ Oracle Open Office Base : clipboard;pasting Oracle Open Office Base : clipboard;pasting formatted/unformatted text Oracle Open Office Base : clipboard;selection clipboard Oracle Open Office Base : clipboard;Unix +Oracle Open Office Base : Clippy, see Help Agent Oracle Open Office Base : closing Oracle Open Office Base : closing;documents Oracle Open Office Base : closing;toolbars @@ -14728,9 +9113,9 @@ Oracle Open Office Base : colors;adding Oracle Open Office Base : colors;appearance Oracle Open Office Base : colors;backgrounds Oracle Open Office Base : colors;charts -Oracle Open Office Base : colors;fill format Oracle Open Office Base : colors;fonts Oracle Open Office Base : colors;grid lines and cells (Calc) +Oracle Open Office Base : colors;ignored text color Oracle Open Office Base : colors;models Oracle Open Office Base : colors;not printing Oracle Open Office Base : colors;printing in grayscale @@ -14749,7 +9134,6 @@ Oracle Open Office Base : commands Oracle Open Office Base : commands;repeating Oracle Open Office Base : commands;SQL Oracle Open Office Base : comments -Oracle Open Office Base : comments;displaying (Calc) Oracle Open Office Base : comments;inserting/editing/deleting/printing Oracle Open Office Base : comments;on changes Oracle Open Office Base : comments;printing in text @@ -14759,7 +9143,7 @@ Oracle Open Office Base : common terms;glossaries Oracle Open Office Base : common terms;Internet glossary Oracle Open Office Base : comparisons Oracle Open Office Base : comparisons;document versions -Oracle Open Office Base : comparisons;operators in default filter dialog +Oracle Open Office Base : comparisons;operators in standard filter dialog Oracle Open Office Base : compatibility settings for MS Word import Oracle Open Office Base : complete screen view Oracle Open Office Base : complex text layout @@ -14805,6 +9189,7 @@ Oracle Open Office Base : controls;rich text control Oracle Open Office Base : controls;select mode Oracle Open Office Base : controls;showing (Writer) Oracle Open Office Base : converters +Oracle Open Office Base : converters;document converter Oracle Open Office Base : converters;Euro converter Oracle Open Office Base : converters;PostScript, UNIX Oracle Open Office Base : converters;XML @@ -14839,6 +9224,7 @@ Oracle Open Office Base : CTL;(not) wrapping words Oracle Open Office Base : CTL;complex text layout languages Oracle Open Office Base : CTL;definition Oracle Open Office Base : CTL;options +Oracle Open Office Base : cube drawing Oracle Open Office Base : currencies Oracle Open Office Base : currencies;converters Oracle Open Office Base : currencies;format codes @@ -14942,9 +9328,7 @@ Oracle Open Office Base : decimal places displayed (Calc) Oracle Open Office Base : decimal separator key Oracle Open Office Base : decimal tab stops Oracle Open Office Base : default directories -Oracle Open Office Base : default filters -Oracle Open Office Base : default filters;comparison operators -Oracle Open Office Base : default filters;databases +Oracle Open Office Base : default filters, see standard filters Oracle Open Office Base : default printer Oracle Open Office Base : default printer;setting up Oracle Open Office Base : default printer;UNIX @@ -14952,8 +9336,8 @@ Oracle Open Office Base : default templates Oracle Open Office Base : default templates;changing Oracle Open Office Base : default templates;organizing Oracle Open Office Base : defaults +Oracle Open Office Base : defaults;document formats in file dialogs Oracle Open Office Base : defaults;documents -Oracle Open Office Base : defaults;file formats in file dialogs Oracle Open Office Base : defaults;file formats in Oracle Open Office Oracle Open Office Base : defaults;fonts Oracle Open Office Base : defaults;grids (Writer/Calc) @@ -15009,7 +9393,6 @@ Oracle Open Office Base : directories;creating new Oracle Open Office Base : directories;directory structure Oracle Open Office Base : disabled persons Oracle Open Office Base : displaying -Oracle Open Office Base : displaying;comments (Calc) Oracle Open Office Base : displaying;comments in text documents Oracle Open Office Base : displaying;non-printing characters (Writer) Oracle Open Office Base : displaying;pictures and objects (Writer) @@ -15126,6 +9509,7 @@ Oracle Open Office Base : effects Oracle Open Office Base : effects;font positions Oracle Open Office Base : effects;fonts Oracle Open Office Base : effects;Fontwork icons +Oracle Open Office Base : ellipse drawing Oracle Open Office Base : empty documents Oracle Open Office Base : empty paragraph removal Oracle Open Office Base : encryption of contents @@ -15211,6 +9595,7 @@ Oracle Open Office Base : files;saving in other formats Oracle Open Office Base : files;sending as e-mail Oracle Open Office Base : files;version numbers Oracle Open Office Base : files and folders in Oracle Open Office +Oracle Open Office Base : files, see also documents Oracle Open Office Base : fill characters with tabulators Oracle Open Office Base : fill colors for areas Oracle Open Office Base : fill patterns for areas @@ -15251,8 +9636,8 @@ Oracle Open Office Base : font sizes;relative changes Oracle Open Office Base : font sizes;scaling on screen Oracle Open Office Base : font sizes;text Oracle Open Office Base : fonts -Oracle Open Office Base : fonts;adding under UNIX Oracle Open Office Base : fonts;changing in templates +Oracle Open Office Base : fonts;color ignored Oracle Open Office Base : fonts;colors Oracle Open Office Base : fonts;default settings Oracle Open Office Base : fonts;effects @@ -15265,7 +9650,7 @@ Oracle Open Office Base : fonts;specifying several Oracle Open Office Base : fonts;strikethrough Oracle Open Office Base : fonts;styles Oracle Open Office Base : fonts;text objects -Oracle Open Office Base : Fontwork icons +Oracle Open Office Base : Fontwork Oracle Open Office Base : footers Oracle Open Office Base : footers;backgrounds Oracle Open Office Base : form controls @@ -15427,12 +9812,16 @@ Oracle Open Office Base : hiding;changes Oracle Open Office Base : hiding;docked windows Oracle Open Office Base : hiding;navigation pane in Help window Oracle Open Office Base : high contrast mode +Oracle Open Office Base : highlighting changes Oracle Open Office Base : Hindi Oracle Open Office Base : Hindi;entering text Oracle Open Office Base : Hindi;language settings Oracle Open Office Base : horizontal scrollbars (Writer) Oracle Open Office Base : hotspots +Oracle Open Office Base : hotspots;adding to images +Oracle Open Office Base : hotspots;properties Oracle Open Office Base : HTML +Oracle Open Office Base : HTML;compatibility settings Oracle Open Office Base : HTML;definition Oracle Open Office Base : HTML;export character set Oracle Open Office Base : HTML;fonts for source display @@ -15463,12 +9852,14 @@ Oracle Open Office Base : hyphens;inserting custom Oracle Open Office Base : icon bars, see toolbars Oracle Open Office Base : icon sizes Oracle Open Office Base : ignore list for spellcheck +Oracle Open Office Base : ignored font colors Oracle Open Office Base : illustrations, see pictures Oracle Open Office Base : image button creation Oracle Open Office Base : image control creation Oracle Open Office Base : ImageMap Oracle Open Office Base : ImageMap;definition Oracle Open Office Base : ImageMap;editor +Oracle Open Office Base : ImageMap;hotspot properties Oracle Open Office Base : images Oracle Open Office Base : images;ImageMap Oracle Open Office Base : images;inserting and editing bitmaps @@ -15490,6 +9881,7 @@ Oracle Open Office Base : importing;Microsoft Office documents with VBA code Oracle Open Office Base : importing;tables in text format Oracle Open Office Base : importing;templates Oracle Open Office Base : improvement program +Oracle Open Office Base : improvement program - Improvement Program Oracle Open Office Base : inches Oracle Open Office Base : Index tab in Help Oracle Open Office Base : indexes @@ -15802,7 +10194,7 @@ Oracle Open Office Base : opening;dialog settings Oracle Open Office Base : opening;documents Oracle Open Office Base : opening;documents from other formats Oracle Open Office Base : opening;documents on WebDAV server -Oracle Open Office Base : opening;files with links +Oracle Open Office Base : opening;documents with links Oracle Open Office Base : opening;files, with placeholders Oracle Open Office Base : opening;forms Oracle Open Office Base : opening;Microsoft Office files @@ -15812,7 +10204,7 @@ Oracle Open Office Base : opening;reports Oracle Open Office Base : opening;several files Oracle Open Office Base : opening;XForms Oracle Open Office Base : operators -Oracle Open Office Base : operators;default filters +Oracle Open Office Base : operators;standard filters Oracle Open Office Base : optional hyphens (Writer) Oracle Open Office Base : options Oracle Open Office Base : options;accessibility @@ -15862,6 +10254,7 @@ Oracle Open Office Base : pages;scaling Oracle Open Office Base : pages;selecting one to print Oracle Open Office Base : paint box Oracle Open Office Base : paint can symbol +Oracle Open Office Base : Paintbrush Oracle Open Office Base : pair kerning Oracle Open Office Base : Palm file filters Oracle Open Office Base : paper formats @@ -15888,6 +10281,7 @@ Oracle Open Office Base : paragraphs;tab stops Oracle Open Office Base : parameters Oracle Open Office Base : parameters;command line Oracle Open Office Base : parameters;queries (Base) +Oracle Open Office Base : password as document property Oracle Open Office Base : passwords for protecting contents Oracle Open Office Base : pasting Oracle Open Office Base : pasting;cell ranges @@ -15980,7 +10374,6 @@ Oracle Open Office Base : presentations;saving in other formats Oracle Open Office Base : presentations;sending as e-mail Oracle Open Office Base : presentations;starting with wizard Oracle Open Office Base : presentations;wizards -Oracle Open Office Base : Presenter Console shortcuts Oracle Open Office Base : press buttons, see push buttons Oracle Open Office Base : previews Oracle Open Office Base : previews;fonts lists @@ -16035,6 +10428,7 @@ Oracle Open Office Base : properties;fields in databases Oracle Open Office Base : properties;files Oracle Open Office Base : properties;form controls Oracle Open Office Base : properties;forms +Oracle Open Office Base : properties;hotspots Oracle Open Office Base : properties;printers Oracle Open Office Base : protected contents Oracle Open Office Base : protected dashes @@ -16083,6 +10477,7 @@ Oracle Open Office Base : records;inserting comments Oracle Open Office Base : records;protecting Oracle Open Office Base : records;saving Oracle Open Office Base : records;searching in databases +Oracle Open Office Base : rectangle drawing Oracle Open Office Base : rectangles with round corners Oracle Open Office Base : recursions in spreadsheets Oracle Open Office Base : redo command @@ -16147,6 +10542,7 @@ Oracle Open Office Base : review function;accepting or rejecting changes Oracle Open Office Base : review function;comparing documents Oracle Open Office Base : review function;protecting records Oracle Open Office Base : review function;recording changes example +Oracle Open Office Base : review function;tracking changes Oracle Open Office Base : rich text control Oracle Open Office Base : right alignment of paragraphs Oracle Open Office Base : right joins (Base) @@ -16235,7 +10631,6 @@ Oracle Open Office Base : settings Oracle Open Office Base : settings;printers Oracle Open Office Base : settings;program configuration Oracle Open Office Base : settings;proxies -Oracle Open Office Base : settings;tracking changes Oracle Open Office Base : settings;views Oracle Open Office Base : SGML Oracle Open Office Base : SGML;definition @@ -16244,6 +10639,7 @@ Oracle Open Office Base : shadows;areas Oracle Open Office Base : shadows;borders Oracle Open Office Base : shadows;characters Oracle Open Office Base : shadows;characters, using context menu +Oracle Open Office Base : shapes Oracle Open Office Base : sharing documents Oracle Open Office Base : sharpening filter Oracle Open Office Base : sheet tabs @@ -16265,7 +10661,7 @@ Oracle Open Office Base : signing documents with digital signatures Oracle Open Office Base : similarity search Oracle Open Office Base : simple handles (Writer) Oracle Open Office Base : simplified Chinese -Oracle Open Office Base : simplified Chinese;translating to traditional Chinese +Oracle Open Office Base : simplified Chinese;conversion to traditional Chinese Oracle Open Office Base : single sign on options Oracle Open Office Base : single-line spacing in text Oracle Open Office Base : sizes @@ -16329,7 +10725,9 @@ Oracle Open Office Base : SQL;executing SQL statements (Base) Oracle Open Office Base : SQL;queries (Base) Oracle Open Office Base : square drawings Oracle Open Office Base : standard bar on/off -Oracle Open Office Base : standard filters in databases +Oracle Open Office Base : standard filters +Oracle Open Office Base : standard filters;comparison operators +Oracle Open Office Base : standard filters;databases Oracle Open Office Base : standard printer under UNIX Oracle Open Office Base : start center Oracle Open Office Base : start parameters @@ -16510,15 +10908,16 @@ Oracle Open Office Base : tools bar Oracle Open Office Base : tooltips Oracle Open Office Base : tooltips;extended tips Oracle Open Office Base : tooltips;help +Oracle Open Office Base : Track Changes, see review function Oracle Open Office Base : traditional Chinese -Oracle Open Office Base : traditional Chinese;translating to simplified chinese +Oracle Open Office Base : traditional Chinese;conversion to simplified Chinese Oracle Open Office Base : transparency Oracle Open Office Base : transparency;areas Oracle Open Office Base : transparency;off for faster printing Oracle Open Office Base : transparency;saving Oracle Open Office Base : tree view of Help +Oracle Open Office Base : triangle drawing Oracle Open Office Base : typefaces -Oracle Open Office Base : typefaces;adding under UNIX Oracle Open Office Base : typefaces;formats Oracle Open Office Base : typography Oracle Open Office Base : typography;Asian @@ -16752,10 +11151,8 @@ Oracle Open Office Basic : AutoCorrect function;options Oracle Open Office Basic : AutoCorrect function;pictures and frames Oracle Open Office Basic : AutoCorrect function;quotes Oracle Open Office Basic : AutoCorrect function;replacement table -Oracle Open Office Basic : AutoCorrect function;switching on and off in Calc +Oracle Open Office Basic : AutoCorrect function;switching on and off Oracle Open Office Basic : AutoCorrect function;URL recognition -Oracle Open Office Basic : AutoFormat function -Oracle Open Office Basic : AutoFormat function;switching on and off Oracle Open Office Basic : automatic captions (Writer) Oracle Open Office Basic : automatic control focus Oracle Open Office Basic : automatic hyperlink formatting @@ -16939,6 +11336,7 @@ Oracle Open Office Basic : clipboard;pasting Oracle Open Office Basic : clipboard;pasting formatted/unformatted text Oracle Open Office Basic : clipboard;selection clipboard Oracle Open Office Basic : clipboard;Unix +Oracle Open Office Basic : Clippy, see Help Agent Oracle Open Office Basic : CLng function Oracle Open Office Basic : Close statement Oracle Open Office Basic : closing @@ -16951,9 +11349,9 @@ Oracle Open Office Basic : colors;adding Oracle Open Office Basic : colors;appearance Oracle Open Office Basic : colors;backgrounds Oracle Open Office Basic : colors;charts -Oracle Open Office Basic : colors;fill format Oracle Open Office Basic : colors;fonts Oracle Open Office Basic : colors;grid lines and cells (Calc) +Oracle Open Office Basic : colors;ignored text color Oracle Open Office Basic : colors;models Oracle Open Office Basic : colors;not printing Oracle Open Office Basic : colors;printing in grayscale @@ -16973,7 +11371,6 @@ Oracle Open Office Basic : commands Oracle Open Office Basic : commands;repeating Oracle Open Office Basic : commands;SQL Oracle Open Office Basic : comments -Oracle Open Office Basic : comments;displaying (Calc) Oracle Open Office Basic : comments;inserting/editing/deleting/printing Oracle Open Office Basic : comments;on changes Oracle Open Office Basic : comments;printing in text @@ -16986,7 +11383,7 @@ Oracle Open Office Basic : comparison operators Oracle Open Office Basic : comparison operators;Oracle Open Office Basic Oracle Open Office Basic : comparisons Oracle Open Office Basic : comparisons;document versions -Oracle Open Office Basic : comparisons;operators in default filter dialog +Oracle Open Office Basic : comparisons;operators in standard filter dialog Oracle Open Office Basic : compatibility settings for MS Word import Oracle Open Office Basic : complete screen view Oracle Open Office Basic : complex text layout @@ -17043,6 +11440,7 @@ Oracle Open Office Basic : controls;rich text control Oracle Open Office Basic : controls;select mode Oracle Open Office Basic : controls;showing (Writer) Oracle Open Office Basic : converters +Oracle Open Office Basic : converters;document converter Oracle Open Office Basic : converters;Euro converter Oracle Open Office Basic : converters;PostScript, UNIX Oracle Open Office Basic : converters;XML @@ -17089,6 +11487,7 @@ Oracle Open Office Basic : CTL;(not) wrapping words Oracle Open Office Basic : CTL;complex text layout languages Oracle Open Office Basic : CTL;definition Oracle Open Office Basic : CTL;options +Oracle Open Office Basic : cube drawing Oracle Open Office Basic : CurDir function Oracle Open Office Basic : currencies Oracle Open Office Basic : currencies;converters @@ -17207,9 +11606,7 @@ Oracle Open Office Basic : decimal tab stops Oracle Open Office Basic : Declare statement Oracle Open Office Basic : declaring variables Oracle Open Office Basic : default directories -Oracle Open Office Basic : default filters -Oracle Open Office Basic : default filters;comparison operators -Oracle Open Office Basic : default filters;databases +Oracle Open Office Basic : default filters, see standard filters Oracle Open Office Basic : default printer Oracle Open Office Basic : default printer;setting up Oracle Open Office Basic : default printer;UNIX @@ -17217,8 +11614,8 @@ Oracle Open Office Basic : default templates Oracle Open Office Basic : default templates;changing Oracle Open Office Basic : default templates;organizing Oracle Open Office Basic : defaults +Oracle Open Office Basic : defaults;document formats in file dialogs Oracle Open Office Basic : defaults;documents -Oracle Open Office Basic : defaults;file formats in file dialogs Oracle Open Office Basic : defaults;file formats in Oracle Open Office Oracle Open Office Basic : defaults;fonts Oracle Open Office Basic : defaults;grids (Writer/Calc) @@ -17305,7 +11702,6 @@ Oracle Open Office Basic : directories;creating new Oracle Open Office Basic : directories;directory structure Oracle Open Office Basic : disabled persons Oracle Open Office Basic : displaying -Oracle Open Office Basic : displaying;comments (Calc) Oracle Open Office Basic : displaying;comments in text documents Oracle Open Office Basic : displaying;non-printing characters (Writer) Oracle Open Office Basic : displaying;pictures and objects (Writer) @@ -17425,6 +11821,7 @@ Oracle Open Office Basic : effects Oracle Open Office Basic : effects;font positions Oracle Open Office Basic : effects;fonts Oracle Open Office Basic : effects;Fontwork icons +Oracle Open Office Basic : ellipse drawing Oracle Open Office Basic : empty documents Oracle Open Office Basic : empty paragraph removal Oracle Open Office Basic : encryption of contents @@ -17535,6 +11932,7 @@ Oracle Open Office Basic : files;saving in other formats Oracle Open Office Basic : files;sending as e-mail Oracle Open Office Basic : files;version numbers Oracle Open Office Basic : files and folders in Oracle Open Office +Oracle Open Office Basic : files, see also documents Oracle Open Office Basic : fill characters with tabulators Oracle Open Office Basic : fill colors for areas Oracle Open Office Basic : fill patterns for areas @@ -17580,8 +11978,8 @@ Oracle Open Office Basic : font sizes;relative changes Oracle Open Office Basic : font sizes;scaling on screen Oracle Open Office Basic : font sizes;text Oracle Open Office Basic : fonts -Oracle Open Office Basic : fonts;adding under UNIX Oracle Open Office Basic : fonts;changing in templates +Oracle Open Office Basic : fonts;color ignored Oracle Open Office Basic : fonts;colors Oracle Open Office Basic : fonts;default settings Oracle Open Office Basic : fonts;effects @@ -17594,7 +11992,7 @@ Oracle Open Office Basic : fonts;specifying several Oracle Open Office Basic : fonts;strikethrough Oracle Open Office Basic : fonts;styles Oracle Open Office Basic : fonts;text objects -Oracle Open Office Basic : Fontwork icons +Oracle Open Office Basic : Fontwork Oracle Open Office Basic : footers Oracle Open Office Basic : footers;backgrounds Oracle Open Office Basic : For statement @@ -17782,6 +12180,7 @@ Oracle Open Office Basic : hiding;changes Oracle Open Office Basic : hiding;docked windows Oracle Open Office Basic : hiding;navigation pane in Help window Oracle Open Office Basic : high contrast mode +Oracle Open Office Basic : highlighting changes Oracle Open Office Basic : Hindi Oracle Open Office Basic : Hindi;entering text Oracle Open Office Basic : Hindi;language settings @@ -17789,8 +12188,11 @@ Oracle Open Office Basic : horizontal line control Oracle Open Office Basic : horizontal scrollbar control Oracle Open Office Basic : horizontal scrollbars (Writer) Oracle Open Office Basic : hotspots +Oracle Open Office Basic : hotspots;adding to images +Oracle Open Office Basic : hotspots;properties Oracle Open Office Basic : Hour function Oracle Open Office Basic : HTML +Oracle Open Office Basic : HTML;compatibility settings Oracle Open Office Basic : HTML;definition Oracle Open Office Basic : HTML;export character set Oracle Open Office Basic : HTML;fonts for source display @@ -17826,6 +12228,7 @@ Oracle Open Office Basic : IDE;Integrated Development Environment Oracle Open Office Basic : IDE;keyboard shortcuts Oracle Open Office Basic : If statement Oracle Open Office Basic : ignore list for spellcheck +Oracle Open Office Basic : ignored font colors Oracle Open Office Basic : IIf statement Oracle Open Office Basic : illustrations, see pictures Oracle Open Office Basic : image button creation @@ -17834,6 +12237,7 @@ Oracle Open Office Basic : image control creation Oracle Open Office Basic : ImageMap Oracle Open Office Basic : ImageMap;definition Oracle Open Office Basic : ImageMap;editor +Oracle Open Office Basic : ImageMap;hotspot properties Oracle Open Office Basic : images Oracle Open Office Basic : images;ImageMap Oracle Open Office Basic : images;inserting and editing bitmaps @@ -17856,6 +12260,7 @@ Oracle Open Office Basic : importing;Microsoft Office documents with VBA code Oracle Open Office Basic : importing;tables in text format Oracle Open Office Basic : importing;templates Oracle Open Office Basic : improvement program +Oracle Open Office Basic : improvement program - Improvement Program Oracle Open Office Basic : inches Oracle Open Office Basic : Index tab in Help Oracle Open Office Basic : indexes @@ -18245,7 +12650,7 @@ Oracle Open Office Basic : opening;dialog settings Oracle Open Office Basic : opening;documents Oracle Open Office Basic : opening;documents from other formats Oracle Open Office Basic : opening;documents on WebDAV server -Oracle Open Office Basic : opening;files with links +Oracle Open Office Basic : opening;documents with links Oracle Open Office Basic : opening;files, with placeholders Oracle Open Office Basic : opening;forms Oracle Open Office Basic : opening;Microsoft Office files @@ -18256,7 +12661,7 @@ Oracle Open Office Basic : opening;several files Oracle Open Office Basic : opening;XForms Oracle Open Office Basic : operators Oracle Open Office Basic : operators;comparisons -Oracle Open Office Basic : operators;default filters +Oracle Open Office Basic : operators;standard filters Oracle Open Office Basic : Option Base statement Oracle Open Office Basic : option button control Oracle Open Office Basic : Option Explicit statement @@ -18312,6 +12717,7 @@ Oracle Open Office Basic : pages;scaling Oracle Open Office Basic : pages;selecting one to print Oracle Open Office Basic : paint box Oracle Open Office Basic : paint can symbol +Oracle Open Office Basic : Paintbrush Oracle Open Office Basic : pair kerning Oracle Open Office Basic : Palm file filters Oracle Open Office Basic : paper formats @@ -18340,6 +12746,7 @@ Oracle Open Office Basic : parameters;command line Oracle Open Office Basic : parameters;for procedures and functions Oracle Open Office Basic : parameters;passing by reference or value Oracle Open Office Basic : parameters;queries (Base) +Oracle Open Office Basic : password as document property Oracle Open Office Basic : passwords for protecting contents Oracle Open Office Basic : pasting Oracle Open Office Basic : pasting;cell ranges @@ -18433,7 +12840,6 @@ Oracle Open Office Basic : presentations;saving in other formats Oracle Open Office Basic : presentations;sending as e-mail Oracle Open Office Basic : presentations;starting with wizard Oracle Open Office Basic : presentations;wizards -Oracle Open Office Basic : Presenter Console shortcuts Oracle Open Office Basic : press buttons, see push buttons Oracle Open Office Basic : previews Oracle Open Office Basic : previews;fonts lists @@ -18497,6 +12903,7 @@ Oracle Open Office Basic : properties;fields in databases Oracle Open Office Basic : properties;files Oracle Open Office Basic : properties;form controls Oracle Open Office Basic : properties;forms +Oracle Open Office Basic : properties;hotspots Oracle Open Office Basic : properties;printers Oracle Open Office Basic : protected contents Oracle Open Office Basic : protected dashes @@ -18551,6 +12958,7 @@ Oracle Open Office Basic : records;inserting comments Oracle Open Office Basic : records;protecting Oracle Open Office Basic : records;saving Oracle Open Office Basic : records;searching in databases +Oracle Open Office Basic : rectangle drawing Oracle Open Office Basic : rectangles with round corners Oracle Open Office Basic : recursions in spreadsheets Oracle Open Office Basic : Red function @@ -18622,6 +13030,7 @@ Oracle Open Office Basic : review function;accepting or rejecting changes Oracle Open Office Basic : review function;comparing documents Oracle Open Office Basic : review function;protecting records Oracle Open Office Basic : review function;recording changes example +Oracle Open Office Basic : review function;tracking changes Oracle Open Office Basic : rich text control Oracle Open Office Basic : right alignment of paragraphs Oracle Open Office Basic : Right function @@ -18726,7 +13135,6 @@ Oracle Open Office Basic : settings Oracle Open Office Basic : settings;printers Oracle Open Office Basic : settings;program configuration Oracle Open Office Basic : settings;proxies -Oracle Open Office Basic : settings;tracking changes Oracle Open Office Basic : settings;views Oracle Open Office Basic : SGML Oracle Open Office Basic : SGML;definition @@ -18736,6 +13144,7 @@ Oracle Open Office Basic : shadows;areas Oracle Open Office Basic : shadows;borders Oracle Open Office Basic : shadows;characters Oracle Open Office Basic : shadows;characters, using context menu +Oracle Open Office Basic : shapes Oracle Open Office Basic : sharing documents Oracle Open Office Basic : sharpening filter Oracle Open Office Basic : sheet tabs @@ -18759,7 +13168,7 @@ Oracle Open Office Basic : signing documents with digital signatures Oracle Open Office Basic : similarity search Oracle Open Office Basic : simple handles (Writer) Oracle Open Office Basic : simplified Chinese -Oracle Open Office Basic : simplified Chinese;translating to traditional Chinese +Oracle Open Office Basic : simplified Chinese;conversion to traditional Chinese Oracle Open Office Basic : Sin function Oracle Open Office Basic : single sign on options Oracle Open Office Basic : single-line spacing in text @@ -18827,7 +13236,9 @@ Oracle Open Office Basic : SQL;queries (Base) Oracle Open Office Basic : Sqr function Oracle Open Office Basic : square drawings Oracle Open Office Basic : standard bar on/off -Oracle Open Office Basic : standard filters in databases +Oracle Open Office Basic : standard filters +Oracle Open Office Basic : standard filters;comparison operators +Oracle Open Office Basic : standard filters;databases Oracle Open Office Basic : standard printer under UNIX Oracle Open Office Basic : start center Oracle Open Office Basic : start parameters @@ -19029,21 +13440,22 @@ Oracle Open Office Basic : tools bar Oracle Open Office Basic : tooltips Oracle Open Office Basic : tooltips;extended tips Oracle Open Office Basic : tooltips;help +Oracle Open Office Basic : Track Changes, see review function Oracle Open Office Basic : traditional Chinese -Oracle Open Office Basic : traditional Chinese;translating to simplified chinese +Oracle Open Office Basic : traditional Chinese;conversion to simplified Chinese Oracle Open Office Basic : translating dialogs Oracle Open Office Basic : transparency Oracle Open Office Basic : transparency;areas Oracle Open Office Basic : transparency;off for faster printing Oracle Open Office Basic : transparency;saving Oracle Open Office Basic : tree view of Help +Oracle Open Office Basic : triangle drawing Oracle Open Office Basic : Trim function Oracle Open Office Basic : twips Oracle Open Office Basic : twips;definition Oracle Open Office Basic : TwipsPerPixelX function Oracle Open Office Basic : TwipsPerPixelY function Oracle Open Office Basic : typefaces -Oracle Open Office Basic : typefaces;adding under UNIX Oracle Open Office Basic : typefaces;formats Oracle Open Office Basic : TypeName function Oracle Open Office Basic : types of variables @@ -19205,6 +13617,5693 @@ Oracle Open Office Basic : zooming Oracle Open Office Basic : zooming;page views Oracle Open Office Basic : zooming;pictures Oracle Open Office Basic : zooming;status bar +Oracle Open Office Math : 3D text creation +Oracle Open Office Math : abbreviation replacement +Oracle Open Office Math : absolute hyperlinks +Oracle Open Office Math : absolute saving of URLs +Oracle Open Office Math : absolute values +Oracle Open Office Math : accents +Oracle Open Office Math : accents +Oracle Open Office Math : accents;in Oracle Open Office Math +Oracle Open Office Math : Access databases (base) +Oracle Open Office Math : access rights for database tables (Base) +Oracle Open Office Math : accessibility +Oracle Open Office Math : accessibility;general shortcuts +Oracle Open Office Math : accessibility;options +Oracle Open Office Math : accessibility;Oracle Open Office assistive technology +Oracle Open Office Math : accessibility;Oracle Open Office features +Oracle Open Office Math : accessibility;Oracle Open Office Math shortcuts +Oracle Open Office Math : activating +Oracle Open Office Math : activating;context menus +Oracle Open Office Math : activating;Error Report Tool +Oracle Open Office Math : activating;extended help tips +Oracle Open Office Math : activating;plug-ins +Oracle Open Office Math : ActiveX control +Oracle Open Office Math : Adabas D databases (base) +Oracle Open Office Math : add-ons, see UNO components +Oracle Open Office Math : addition signs +Oracle Open Office Math : additional selection mode +Oracle Open Office Math : address books +Oracle Open Office Math : address books;LDAP server (Base) +Oracle Open Office Math : address books;registering +Oracle Open Office Math : address labels from databases +Oracle Open Office Math : ADO databases (Base) +Oracle Open Office Math : Agenda Wizard +Oracle Open Office Math : aging filter +Oracle Open Office Math : aligning +Oracle Open Office Math : aligning;cells +Oracle Open Office Math : aligning;characters in Oracle Open Office Math +Oracle Open Office Math : aligning;multi-line formulas +Oracle Open Office Math : aligning;objects +Oracle Open Office Math : aligning;paragraphs +Oracle Open Office Math : aligning;tables in text +Oracle Open Office Math : aligning;text objects +Oracle Open Office Math : aligning formulas +Oracle Open Office Math : alignment +Oracle Open Office Math : alignment;horizontally centered (Math) +Oracle Open Office Math : alignment;left (Math) +Oracle Open Office Math : alignment;right (Math) +Oracle Open Office Math : alternative fonts +Oracle Open Office Math : ampersand symbol, see also operators +Oracle Open Office Math : anchors +Oracle Open Office Math : anchors;changing +Oracle Open Office Math : anchors;displaying (Calc) +Oracle Open Office Math : anchors;types/positions for draw objects +Oracle Open Office Math : AND operator +Oracle Open Office Math : animations +Oracle Open Office Math : animations;accessibility options +Oracle Open Office Math : appearance options +Oracle Open Office Math : approximately equal to relation +Oracle Open Office Math : Arabic +Oracle Open Office Math : Arabic;entering text +Oracle Open Office Math : Arabic;language settings +Oracle Open Office Math : arc cosine function +Oracle Open Office Math : arc cotangent function +Oracle Open Office Math : arc sine function +Oracle Open Office Math : area hyperbolic cosine function +Oracle Open Office Math : area hyperbolic cotangent function +Oracle Open Office Math : area hyperbolic tangent function +Oracle Open Office Math : areas +Oracle Open Office Math : areas;bitmap patterns +Oracle Open Office Math : areas;hatched/dotted +Oracle Open Office Math : areas;shadows +Oracle Open Office Math : areas;slanting +Oracle Open Office Math : areas;styles +Oracle Open Office Math : areas;transparency +Oracle Open Office Math : arguments in command line +Oracle Open Office Math : arranging +Oracle Open Office Math : arranging;matrices +Oracle Open Office Math : arranging;objects +Oracle Open Office Math : arrows +Oracle Open Office Math : arrows;defining arrow heads +Oracle Open Office Math : arrows;defining arrow lines +Oracle Open Office Math : arrows;drawing in text +Oracle Open Office Math : arrows;symbols in Oracle Open Office Math +Oracle Open Office Math : ASCII +Oracle Open Office Math : ASCII;definition +Oracle Open Office Math : Asian languages +Oracle Open Office Math : Asian languages;enabling +Oracle Open Office Math : Asian Phonetic Guide +Oracle Open Office Math : Asian typography +Oracle Open Office Math : assigning scripts +Oracle Open Office Math : assistive technology in Oracle Open Office +Oracle Open Office Math : attaching toolbars +Oracle Open Office Math : attachments in e-mails +Oracle Open Office Math : attributes +Oracle Open Office Math : attributes;accents +Oracle Open Office Math : attributes;additional information +Oracle Open Office Math : attributes;changing defaults +Oracle Open Office Math : attributes;changing fonts +Oracle Open Office Math : attributes;changing in Oracle Open Office Math +Oracle Open Office Math : attributes;colored characters +Oracle Open Office Math : attributes;in Oracle Open Office Math +Oracle Open Office Math : attributes;list of +Oracle Open Office Math : audio +Oracle Open Office Math : auto reloading HTML documents +Oracle Open Office Math : AutoAbstract function for sending text to presentations +Oracle Open Office Math : AutoCaption function in Oracle Open Office Writer +Oracle Open Office Math : AutoComplete function in text and list boxes +Oracle Open Office Math : AutoCorrect function +Oracle Open Office Math : AutoCorrect function;context menu +Oracle Open Office Math : AutoCorrect function;options +Oracle Open Office Math : AutoCorrect function;pictures and frames +Oracle Open Office Math : AutoCorrect function;quotes +Oracle Open Office Math : AutoCorrect function;replacement table +Oracle Open Office Math : AutoCorrect function;switching on and off +Oracle Open Office Math : AutoCorrect function;URL recognition +Oracle Open Office Math : automatic captions (Writer) +Oracle Open Office Math : automatic control focus +Oracle Open Office Math : automatic hyperlink formatting +Oracle Open Office Math : automatic line breaks +Oracle Open Office Math : automatic lines/borders in text +Oracle Open Office Math : automatic saving +Oracle Open Office Math : AutoPilots, see wizards +Oracle Open Office Math : AutoValue (Base) +Oracle Open Office Math : axes in charts +Oracle Open Office Math : axis-ellipsis +Oracle Open Office Math : back epsilon symbol +Oracle Open Office Math : backgrounds +Oracle Open Office Math : backgrounds;defining colors/pictures +Oracle Open Office Math : backgrounds;frames/sections/indexes +Oracle Open Office Math : backgrounds;inserting from Gallery +Oracle Open Office Math : backgrounds;printing +Oracle Open Office Math : backing window +Oracle Open Office Math : backslash division sign +Oracle Open Office Math : backups +Oracle Open Office Math : backups;automatic +Oracle Open Office Math : backups;documents +Oracle Open Office Math : Basic +Oracle Open Office Math : Basic;fonts for source display +Oracle Open Office Math : Basic;programming +Oracle Open Office Math : Basic;recording macros +Oracle Open Office Math : basic fonts +Oracle Open Office Math : Bézier curves +Oracle Open Office Math : Bézier curves;control points in presentations +Oracle Open Office Math : bi-directional writing +Oracle Open Office Math : binary operators +Oracle Open Office Math : binary operators +Oracle Open Office Math : binary operators;list of +Oracle Open Office Math : binding space +Oracle Open Office Math : binomials +Oracle Open Office Math : bitmaps +Oracle Open Office Math : bitmaps;inserting and editing +Oracle Open Office Math : bitmaps;off for faster printing +Oracle Open Office Math : bitmaps;patterns +Oracle Open Office Math : black and white printing +Oracle Open Office Math : black printing in Calc +Oracle Open Office Math : block selection mode +Oracle Open Office Math : bold +Oracle Open Office Math : bold;AutoFormat function +Oracle Open Office Math : bold;text +Oracle Open Office Math : bold attribute +Oracle Open Office Math : bookmarks +Oracle Open Office Math : bookmarks;Help +Oracle Open Office Math : Boolean operators +Oracle Open Office Math : borders +Oracle Open Office Math : borders;arranging +Oracle Open Office Math : borders;cells on screen (Calc) +Oracle Open Office Math : borders;for paragraphs +Oracle Open Office Math : borders;for tables +Oracle Open Office Math : borders;shadows +Oracle Open Office Math : borders;table boundaries (Writer) +Oracle Open Office Math : borders, see also frames +Oracle Open Office Math : bound fields +Oracle Open Office Math : bound fields;controls +Oracle Open Office Math : boundaries of tables (Writer) +Oracle Open Office Math : braces in Oracle Open Office Math +Oracle Open Office Math : brackets +Oracle Open Office Math : brackets;angle (Math) +Oracle Open Office Math : brackets;angle with operator +Oracle Open Office Math : brackets;double square (Math) +Oracle Open Office Math : brackets;group +Oracle Open Office Math : brackets;in Oracle Open Office Math +Oracle Open Office Math : brackets;inserting in Oracle Open Office Math +Oracle Open Office Math : brackets;merging formula parts +Oracle Open Office Math : brackets;operator (Math) +Oracle Open Office Math : brackets;reference list +Oracle Open Office Math : brackets;round (Math) +Oracle Open Office Math : brackets;scalable +Oracle Open Office Math : brackets;single, without group function +Oracle Open Office Math : brackets;square (Math) +Oracle Open Office Math : brackets;widowed +Oracle Open Office Math : brackets and grouping in Oracle Open Office Math +Oracle Open Office Math : break display (Writer) +Oracle Open Office Math : brochures +Oracle Open Office Math : brochures;printing several +Oracle Open Office Math : build numbers of Oracle Open Office +Oracle Open Office Math : bullet lists +Oracle Open Office Math : bullet lists;formatting options +Oracle Open Office Math : bullets +Oracle Open Office Math : bullets;paragraphs +Oracle Open Office Math : bullets;replacing +Oracle Open Office Math : bullets;turning off +Oracle Open Office Math : business cards +Oracle Open Office Math : business cards;creating and synchronizing +Oracle Open Office Math : business cards;using templates +Oracle Open Office Math : button bars, see toolbars +Oracle Open Office Math : buttons +Oracle Open Office Math : buttons;adding push buttons +Oracle Open Office Math : buttons;big/small +Oracle Open Office Math : buttons;editing hyperlink buttons +Oracle Open Office Math : buttons;form functions +Oracle Open Office Math : buttons;toolbars +Oracle Open Office Math : cache for graphics +Oracle Open Office Math : calculating +Oracle Open Office Math : calculating;iterative references (Calc) +Oracle Open Office Math : callouts +Oracle Open Office Math : callouts;drawings +Oracle Open Office Math : capital letters +Oracle Open Office Math : capital letters;AutoCorrect function +Oracle Open Office Math : capital letters;font effects +Oracle Open Office Math : captions +Oracle Open Office Math : captions;automatic captions (Writer) +Oracle Open Office Math : captions;tables/pictures/frames/OLE objects (Writer) +Oracle Open Office Math : captions, see also labels/callouts +Oracle Open Office Math : cardinal numbers +Oracle Open Office Math : cascading update (Base) +Oracle Open Office Math : case sensitivity +Oracle Open Office Math : case sensitivity;comparing cell contents (Calc) +Oracle Open Office Math : case sensitivity;searching +Oracle Open Office Math : catalog for mathematical symbols +Oracle Open Office Math : ceiling brackets +Oracle Open Office Math : ceiling brackets;lines with +Oracle Open Office Math : ceiling brackets;scalable lines with +Oracle Open Office Math : cells +Oracle Open Office Math : cells;aligning +Oracle Open Office Math : cells;coloring (Calc) +Oracle Open Office Math : cells;cursor positions after input (Calc) +Oracle Open Office Math : cells;formatting without effect (Calc) +Oracle Open Office Math : cells;line breaks +Oracle Open Office Math : cells;linked to controls +Oracle Open Office Math : cells;number of +Oracle Open Office Math : cells;pasting +Oracle Open Office Math : cells;resetting formats +Oracle Open Office Math : cells;showing grid lines (Calc) +Oracle Open Office Math : center dots symbol +Oracle Open Office Math : centered horizontally +Oracle Open Office Math : centered horizontally;alignment (Math) +Oracle Open Office Math : centered text +Oracle Open Office Math : centimeters +Oracle Open Office Math : certificates +Oracle Open Office Math : changes +Oracle Open Office Math : changes;accepting automatically +Oracle Open Office Math : changes;accepting or rejecting +Oracle Open Office Math : changes;comparing to original +Oracle Open Office Math : changes;protecting +Oracle Open Office Math : changes;recording +Oracle Open Office Math : changes;review function +Oracle Open Office Math : changes;showing +Oracle Open Office Math : changing +Oracle Open Office Math : changing;default formatting +Oracle Open Office Math : changing;document titles +Oracle Open Office Math : changing;file associations in Setup program +Oracle Open Office Math : changing;fonts +Oracle Open Office Math : changing;icon sizes +Oracle Open Office Math : changing;links +Oracle Open Office Math : changing;work directory +Oracle Open Office Math : changing, see also editing and replacing +Oracle Open Office Math : character styles +Oracle Open Office Math : character styles;language selection +Oracle Open Office Math : characters +Oracle Open Office Math : characters;alternative fonts +Oracle Open Office Math : characters;Asian layout +Oracle Open Office Math : characters;bold +Oracle Open Office Math : characters;coloring +Oracle Open Office Math : characters;displaying only on screen (Writer) +Oracle Open Office Math : characters;enabling CTL and Asian characters +Oracle Open Office Math : characters;font effects +Oracle Open Office Math : characters;fonts and formats +Oracle Open Office Math : characters;hyperlinks +Oracle Open Office Math : characters;italics +Oracle Open Office Math : characters;language selection +Oracle Open Office Math : characters;shadowed +Oracle Open Office Math : characters;spacing +Oracle Open Office Math : characters;special +Oracle Open Office Math : characters;underlining +Oracle Open Office Math : charcoal sketches filter +Oracle Open Office Math : charts +Oracle Open Office Math : charts;arranging within stacks +Oracle Open Office Math : charts;bars with textures +Oracle Open Office Math : charts;colors +Oracle Open Office Math : charts;copying with link to source cell range +Oracle Open Office Math : charts;displaying (Calc) +Oracle Open Office Math : charts;editing axes +Oracle Open Office Math : charts;editing data +Oracle Open Office Math : charts;editing legends +Oracle Open Office Math : charts;editing titles +Oracle Open Office Math : charts;inserting +Oracle Open Office Math : charts;updating automatically (Writer) +Oracle Open Office Math : check box creation +Oracle Open Office Math : Chinese writing systems +Oracle Open Office Math : choosing printers +Oracle Open Office Math : circle attribute +Oracle Open Office Math : circle drawings +Oracle Open Office Math : circumflex attribute +Oracle Open Office Math : Client Side ImageMap +Oracle Open Office Math : clipboard +Oracle Open Office Math : clipboard;cutting +Oracle Open Office Math : clipboard;pasting +Oracle Open Office Math : clipboard;pasting formatted/unformatted text +Oracle Open Office Math : clipboard;selection clipboard +Oracle Open Office Math : clipboard;Unix +Oracle Open Office Math : Clippy, see Help Agent +Oracle Open Office Math : closing +Oracle Open Office Math : closing;documents +Oracle Open Office Math : closing;toolbars +Oracle Open Office Math : collaboration +Oracle Open Office Math : color bar +Oracle Open Office Math : colored characters +Oracle Open Office Math : colors +Oracle Open Office Math : colors;adding +Oracle Open Office Math : colors;appearance +Oracle Open Office Math : colors;backgrounds +Oracle Open Office Math : colors;charts +Oracle Open Office Math : colors;fonts +Oracle Open Office Math : colors;grid lines and cells (Calc) +Oracle Open Office Math : colors;ignored text color +Oracle Open Office Math : colors;in formulas +Oracle Open Office Math : colors;models +Oracle Open Office Math : colors;not printing +Oracle Open Office Math : colors;printing in grayscale +Oracle Open Office Math : colors;restriction (Calc) +Oracle Open Office Math : colors;selection +Oracle Open Office Math : column headers +Oracle Open Office Math : column headers;displaying (Calc) +Oracle Open Office Math : column headers;highlighting (Calc) +Oracle Open Office Math : columns +Oracle Open Office Math : columns;setting with the mouse +Oracle Open Office Math : combo box creation +Oracle Open Office Math : command button creation +Oracle Open Office Math : command buttons, see push buttons +Oracle Open Office Math : command line parameters +Oracle Open Office Math : commands +Oracle Open Office Math : commands;repeating +Oracle Open Office Math : commands;SQL +Oracle Open Office Math : comments +Oracle Open Office Math : comments;entering in Oracle Open Office Math +Oracle Open Office Math : comments;inserting/editing/deleting/printing +Oracle Open Office Math : comments;on changes +Oracle Open Office Math : comments;printing in text +Oracle Open Office Math : common terms +Oracle Open Office Math : common terms;Chinese dictionary +Oracle Open Office Math : common terms;glossaries +Oracle Open Office Math : common terms;Internet glossary +Oracle Open Office Math : comparisons +Oracle Open Office Math : comparisons;document versions +Oracle Open Office Math : comparisons;operators in standard filter dialog +Oracle Open Office Math : compatibility settings for MS Word import +Oracle Open Office Math : complete screen view +Oracle Open Office Math : complex numbers +Oracle Open Office Math : complex numbers;set +Oracle Open Office Math : complex numbers;symbols +Oracle Open Office Math : complex text layout +Oracle Open Office Math : complex text layout;definition +Oracle Open Office Math : complex text layout;enabling +Oracle Open Office Math : complex text layout, see CTL +Oracle Open Office Math : compose key to insert special characters +Oracle Open Office Math : concatenating math symbols +Oracle Open Office Math : concatenation, see ampersand symbol +Oracle Open Office Math : conditional separators +Oracle Open Office Math : conditions +Oracle Open Office Math : conditions;in number formats +Oracle Open Office Math : conditions;items in Data Navigator +Oracle Open Office Math : Configuration Manager +Oracle Open Office Math : configuring +Oracle Open Office Math : configuring;fax icon +Oracle Open Office Math : configuring;Oracle Open Office +Oracle Open Office Math : configuring;toolbars +Oracle Open Office Math : congruent relation +Oracle Open Office Math : connections to data sources (Base) +Oracle Open Office Math : considerably greater than relation +Oracle Open Office Math : considerably less than relation +Oracle Open Office Math : contents protection +Oracle Open Office Math : context menus +Oracle Open Office Math : control point display in presentations +Oracle Open Office Math : controls +Oracle Open Office Math : controls;activating in forms +Oracle Open Office Math : controls;adding to documents +Oracle Open Office Math : controls;arranging in forms +Oracle Open Office Math : controls;arranging within stacks +Oracle Open Office Math : controls;assigning data sources +Oracle Open Office Math : controls;assigning macros (Basic) +Oracle Open Office Math : controls;bound fields/list contents/linked cells +Oracle Open Office Math : controls;events +Oracle Open Office Math : controls;focus +Oracle Open Office Math : controls;formatted fields +Oracle Open Office Math : controls;grouping +Oracle Open Office Math : controls;hidden +Oracle Open Office Math : controls;inserting +Oracle Open Office Math : controls;multi-line titles +Oracle Open Office Math : controls;positions and sizes +Oracle Open Office Math : controls;printing +Oracle Open Office Math : controls;properties of form controls +Oracle Open Office Math : controls;properties of table controls +Oracle Open Office Math : controls;reference by SQL +Oracle Open Office Math : controls;rich text control +Oracle Open Office Math : controls;select mode +Oracle Open Office Math : controls;showing (Writer) +Oracle Open Office Math : converters +Oracle Open Office Math : converters;document converter +Oracle Open Office Math : converters;Euro converter +Oracle Open Office Math : converters;PostScript, UNIX +Oracle Open Office Math : converters;XML +Oracle Open Office Math : converting +Oracle Open Office Math : converting;Hangul/Hanja +Oracle Open Office Math : converting;metrics +Oracle Open Office Math : converting;Microsoft documents +Oracle Open Office Math : converting;Oracle Open Office documents +Oracle Open Office Math : converting;Pocket PC formats +Oracle Open Office Math : copies +Oracle Open Office Math : copies;printing +Oracle Open Office Math : coproduct +Oracle Open Office Math : copying +Oracle Open Office Math : copying;by drag and drop +Oracle Open Office Math : copying;data from text documents +Oracle Open Office Math : copying;datasource records in spreadsheets +Oracle Open Office Math : copying;draw objects +Oracle Open Office Math : copying;draw objects between documents +Oracle Open Office Math : copying;formatting +Oracle Open Office Math : copying;from data source view +Oracle Open Office Math : copying;from Gallery +Oracle Open Office Math : copying;in Unix +Oracle Open Office Math : copying;pictures, between documents +Oracle Open Office Math : copying;sheet areas, to text documents +Oracle Open Office Math : copying;to Gallery +Oracle Open Office Math : copyright for Oracle Open Office +Oracle Open Office Math : corner roundings +Oracle Open Office Math : correspondence +Oracle Open Office Math : correspondence;original by +Oracle Open Office Math : correspondence;picture by +Oracle Open Office Math : cosine function +Oracle Open Office Math : cotangent function +Oracle Open Office Math : crash reports +Oracle Open Office Math : criteria of query design (Base) +Oracle Open Office Math : cropping pictures +Oracle Open Office Math : CTL +Oracle Open Office Math : CTL;(not) wrapping words +Oracle Open Office Math : CTL;complex text layout languages +Oracle Open Office Math : CTL;definition +Oracle Open Office Math : CTL;options +Oracle Open Office Math : cube drawing +Oracle Open Office Math : currencies +Oracle Open Office Math : currencies;converters +Oracle Open Office Math : currencies;format codes +Oracle Open Office Math : currency field creation +Oracle Open Office Math : currency formats +Oracle Open Office Math : cursor +Oracle Open Office Math : cursor;allowing in protected areas (Writer) +Oracle Open Office Math : cursor;in Oracle Open Office Math +Oracle Open Office Math : cursor;in read-only text +Oracle Open Office Math : cursor;quickly moving to an object +Oracle Open Office Math : curve integrals +Oracle Open Office Math : curves +Oracle Open Office Math : curves;editing points +Oracle Open Office Math : custom dictionaries +Oracle Open Office Math : custom dictionaries;editing +Oracle Open Office Math : custom hyphens (Writer) +Oracle Open Office Math : custom quotes +Oracle Open Office Math : custom templates +Oracle Open Office Math : customizing +Oracle Open Office Math : customizing;events +Oracle Open Office Math : customizing;keyboard +Oracle Open Office Math : customizing;menus +Oracle Open Office Math : customizing;Oracle Open Office +Oracle Open Office Math : customizing;round corners +Oracle Open Office Math : customizing;toolbars +Oracle Open Office Math : cutting +Oracle Open Office Math : dashes +Oracle Open Office Math : data +Oracle Open Office Math : data;filtering in forms +Oracle Open Office Math : data;forms and subforms +Oracle Open Office Math : data;read-only +Oracle Open Office Math : data;sorting in forms +Oracle Open Office Math : data;user data +Oracle Open Office Math : data binding change in XForms +Oracle Open Office Math : Data Navigator +Oracle Open Office Math : Data Navigator;adding/editing items +Oracle Open Office Math : Data Navigator;display options +Oracle Open Office Math : data source browser +Oracle Open Office Math : data source explorer +Oracle Open Office Math : data source view +Oracle Open Office Math : data source view;drag and drop +Oracle Open Office Math : data source view;overview +Oracle Open Office Math : data source view;showing +Oracle Open Office Math : data sources +Oracle Open Office Math : data sources;as tables +Oracle Open Office Math : data sources;connection settings (Base) +Oracle Open Office Math : data sources;copying records to spreadsheets +Oracle Open Office Math : data sources;displaying current +Oracle Open Office Math : data sources;LDAP server (Base) +Oracle Open Office Math : data sources;Oracle Open Office Base +Oracle Open Office Math : data sources;registering address books +Oracle Open Office Math : data sources;reports +Oracle Open Office Math : data sources;viewing +Oracle Open Office Math : data structure of XForms +Oracle Open Office Math : data, see also values +Oracle Open Office Math : database contents +Oracle Open Office Math : database contents;inserting as tables +Oracle Open Office Math : database contents;inserting as text +Oracle Open Office Math : database reports +Oracle Open Office Math : Database Wizard (Base) +Oracle Open Office Math : databases +Oracle Open Office Math : databases;administration through SQL (Base) +Oracle Open Office Math : databases;ADO (Base) +Oracle Open Office Math : databases;connecting (Base) +Oracle Open Office Math : databases;creating +Oracle Open Office Math : databases;creating labels +Oracle Open Office Math : databases;creating queries +Oracle Open Office Math : databases;creating reports +Oracle Open Office Math : databases;creating tables +Oracle Open Office Math : databases;deleting (Base) +Oracle Open Office Math : databases;drag and drop (Base) +Oracle Open Office Math : databases;editing tables +Oracle Open Office Math : databases;form filters +Oracle Open Office Math : databases;formats (Base) +Oracle Open Office Math : databases;importing/exporting +Oracle Open Office Math : databases;JDBC (Base) +Oracle Open Office Math : databases;main page (Base) +Oracle Open Office Math : databases;ODBC (Base) +Oracle Open Office Math : databases;overview +Oracle Open Office Math : databases;registering (Base) +Oracle Open Office Math : databases;searching records +Oracle Open Office Math : databases;shortcut keys +Oracle Open Office Math : databases;sorting +Oracle Open Office Math : databases;standard filters +Oracle Open Office Math : databases;text formats +Oracle Open Office Math : databases;viewing +Oracle Open Office Math : date fields +Oracle Open Office Math : date fields;creating +Oracle Open Office Math : date fields;properties +Oracle Open Office Math : date formats +Oracle Open Office Math : dates +Oracle Open Office Math : dates;default (Calc) +Oracle Open Office Math : dates;printing in presentations +Oracle Open Office Math : dates;start 1900/01/01 (Calc) +Oracle Open Office Math : dates;start 1904/01/01 (Calc) +Oracle Open Office Math : dBASE +Oracle Open Office Math : dBASE;database settings (Base) +Oracle Open Office Math : DDE +Oracle Open Office Math : DDE;definition +Oracle Open Office Math : deactivating +Oracle Open Office Math : deactivating;plug-ins +Oracle Open Office Math : decimal places displayed (Calc) +Oracle Open Office Math : decimal separator key +Oracle Open Office Math : decimal tab stops +Oracle Open Office Math : default directories +Oracle Open Office Math : default filters, see standard filters +Oracle Open Office Math : default printer +Oracle Open Office Math : default printer;setting up +Oracle Open Office Math : default printer;UNIX +Oracle Open Office Math : default templates +Oracle Open Office Math : default templates;changing +Oracle Open Office Math : default templates;organizing +Oracle Open Office Math : defaults +Oracle Open Office Math : defaults;changing default formatting +Oracle Open Office Math : defaults;document formats in file dialogs +Oracle Open Office Math : defaults;documents +Oracle Open Office Math : defaults;file formats in Oracle Open Office +Oracle Open Office Math : defaults;fonts +Oracle Open Office Math : defaults;grids (Writer/Calc) +Oracle Open Office Math : defaults;languages +Oracle Open Office Math : defaults;number formats +Oracle Open Office Math : defaults;of saving +Oracle Open Office Math : defaults;program configuration +Oracle Open Office Math : defaults;tab stops in text +Oracle Open Office Math : defaults;views +Oracle Open Office Math : defined as relation +Oracle Open Office Math : defining +Oracle Open Office Math : defining;arrowheads and other line ends +Oracle Open Office Math : defining;colors +Oracle Open Office Math : defining;formula fonts +Oracle Open Office Math : defining;line styles +Oracle Open Office Math : defining;paragraph borders +Oracle Open Office Math : defining;queries (Base) +Oracle Open Office Math : defining;table borders +Oracle Open Office Math : deleting +Oracle Open Office Math : deleting;all direct formatting +Oracle Open Office Math : deleting;comments +Oracle Open Office Math : deleting;databases (Base) +Oracle Open Office Math : deleting;hyperlinks +Oracle Open Office Math : deleting;lines in text +Oracle Open Office Math : deleting;models/instances +Oracle Open Office Math : deleting;namespaces in XForms +Oracle Open Office Math : deleting;tab stops +Oracle Open Office Math : deleting;templates +Oracle Open Office Math : deleting;XML filters +Oracle Open Office Math : depth stagger +Oracle Open Office Math : descriptions for objects +Oracle Open Office Math : design mode after saving +Oracle Open Office Math : design view +Oracle Open Office Math : design view;creating forms +Oracle Open Office Math : design view;queries/views (Base) +Oracle Open Office Math : designing +Oracle Open Office Math : designing;database tables +Oracle Open Office Math : designing;fonts +Oracle Open Office Math : designing;queries (Base) +Oracle Open Office Math : detaching toolbars +Oracle Open Office Math : diagonal downward dots +Oracle Open Office Math : diagonal downward dots;symbol +Oracle Open Office Math : diagonal upward dots +Oracle Open Office Math : diagonal upward dots;symbol +Oracle Open Office Math : dictionaries +Oracle Open Office Math : dictionaries;common terms in simplified and traditional chinese +Oracle Open Office Math : dictionaries;creating +Oracle Open Office Math : dictionaries;editing user-defined +Oracle Open Office Math : dictionaries;spellcheck +Oracle Open Office Math : dictionaries, see also languages +Oracle Open Office Math : difference set operator +Oracle Open Office Math : digital signatures +Oracle Open Office Math : digital signatures;getting/managing/applying +Oracle Open Office Math : digital signatures;overview +Oracle Open Office Math : digital signatures;WebDAV over HTTPS +Oracle Open Office Math : direct formatting +Oracle Open Office Math : direct formatting;undoing all +Oracle Open Office Math : direct text +Oracle Open Office Math : direct text;entering in Oracle Open Office Math +Oracle Open Office Math : directories +Oracle Open Office Math : directories;creating new +Oracle Open Office Math : directories;directory structure +Oracle Open Office Math : disabled persons +Oracle Open Office Math : displaying +Oracle Open Office Math : displaying;comments in text documents +Oracle Open Office Math : displaying;non-printing characters (Writer) +Oracle Open Office Math : displaying;pictures and objects (Writer) +Oracle Open Office Math : displaying;tables (Writer) +Oracle Open Office Math : displaying;zero values (Calc) +Oracle Open Office Math : distances +Oracle Open Office Math : distances between brackets +Oracle Open Office Math : distinct values in SQL queries +Oracle Open Office Math : distorting in drawings +Oracle Open Office Math : distributing XML filters +Oracle Open Office Math : divides relation +Oracle Open Office Math : division signs +Oracle Open Office Math : docking +Oracle Open Office Math : docking;definition +Oracle Open Office Math : docking;toolbars +Oracle Open Office Math : docking;windows +Oracle Open Office Math : Document Converter Wizard +Oracle Open Office Math : Document Map, see Navigator +Oracle Open Office Math : document types in Oracle Open Office +Oracle Open Office Math : documents +Oracle Open Office Math : documents;changing titles +Oracle Open Office Math : documents;closing +Oracle Open Office Math : documents;comparing +Oracle Open Office Math : documents;contents as lists +Oracle Open Office Math : documents;editing time +Oracle Open Office Math : documents;exporting +Oracle Open Office Math : documents;importing +Oracle Open Office Math : documents;languages +Oracle Open Office Math : documents;measurement units in +Oracle Open Office Math : documents;merging +Oracle Open Office Math : documents;number of pages/tables/sheets +Oracle Open Office Math : documents;opening +Oracle Open Office Math : documents;opening in design mode +Oracle Open Office Math : documents;opening with templates +Oracle Open Office Math : documents;organizing +Oracle Open Office Math : documents;printing +Oracle Open Office Math : documents;read-only +Oracle Open Office Math : documents;reloading +Oracle Open Office Math : documents;saving +Oracle Open Office Math : documents;saving automatically +Oracle Open Office Math : documents;saving in other formats +Oracle Open Office Math : documents;sending as e-mail +Oracle Open Office Math : documents;styles changed +Oracle Open Office Math : documents;version management +Oracle Open Office Math : documents;version numbers +Oracle Open Office Math : does not divide relation +Oracle Open Office Math : dot attribute +Oracle Open Office Math : dotted areas +Oracle Open Office Math : double arrow symbols +Oracle Open Office Math : double dot attribute +Oracle Open Office Math : double square brackets +Oracle Open Office Math : double square brackets;scalable +Oracle Open Office Math : double-line spacing in paragraphs +Oracle Open Office Math : double-line writing in Asian layout +Oracle Open Office Math : down arrow symbol +Oracle Open Office Math : drag and drop +Oracle Open Office Math : drag and drop;copying and pasting text +Oracle Open Office Math : drag and drop;data source view +Oracle Open Office Math : drag and drop;from Gallery to draw objects +Oracle Open Office Math : drag and drop;overview +Oracle Open Office Math : drag and drop;pictures +Oracle Open Office Math : drag and drop;to Gallery +Oracle Open Office Math : draw objects +Oracle Open Office Math : draw objects;adding/editing/copying +Oracle Open Office Math : draw objects;anchoring +Oracle Open Office Math : draw objects;arranging within stacks +Oracle Open Office Math : draw objects;copying between documents +Oracle Open Office Math : draw objects;displaying (Calc) +Oracle Open Office Math : draw objects;dropping Gallery pictures +Oracle Open Office Math : draw objects;flipping +Oracle Open Office Math : draw objects;legends +Oracle Open Office Math : draw objects;positioning and resizing +Oracle Open Office Math : draw objects;protecting +Oracle Open Office Math : draw objects;slanting +Oracle Open Office Math : draw objects;text in +Oracle Open Office Math : Drawing bar +Oracle Open Office Math : drawing lines in text +Oracle Open Office Math : drawings +Oracle Open Office Math : drawings;creating/opening +Oracle Open Office Math : drawings;languages +Oracle Open Office Math : drawings;printing +Oracle Open Office Math : drawings;printing defaults +Oracle Open Office Math : drawings;printing in text documents +Oracle Open Office Math : drawings;saving +Oracle Open Office Math : drawings;saving automatically +Oracle Open Office Math : drawings;saving in other formats +Oracle Open Office Math : drawings;sending as e-mail +Oracle Open Office Math : drawings;showing (Writer) +Oracle Open Office Math : drawings, see also draw objects +Oracle Open Office Math : drop-down lists in form functions +Oracle Open Office Math : e-mail attachments +Oracle Open Office Math : Edit File icon +Oracle Open Office Math : edit mode +Oracle Open Office Math : edit mode;after opening +Oracle Open Office Math : edit mode;through Enter key (Calc) +Oracle Open Office Math : Edit Points bar +Oracle Open Office Math : editing +Oracle Open Office Math : editing;chart axes +Oracle Open Office Math : editing;chart data +Oracle Open Office Math : editing;chart legends +Oracle Open Office Math : editing;chart titles +Oracle Open Office Math : editing;comments +Oracle Open Office Math : editing;data binding of XForms +Oracle Open Office Math : editing;database tables and queries +Oracle Open Office Math : editing;draw objects +Oracle Open Office Math : editing;Fontwork objects +Oracle Open Office Math : editing;hyperlinks +Oracle Open Office Math : editing;menus +Oracle Open Office Math : editing;objects +Oracle Open Office Math : editing;Oracle Open Office documents in Internet Explorer +Oracle Open Office Math : editing;pictures +Oracle Open Office Math : editing;reports +Oracle Open Office Math : editing;shortcut keys +Oracle Open Office Math : editing;tab stops +Oracle Open Office Math : editing;templates +Oracle Open Office Math : editing;toolbars +Oracle Open Office Math : editing;undoing +Oracle Open Office Math : editing;XForms +Oracle Open Office Math : editing time of documents +Oracle Open Office Math : editors +Oracle Open Office Math : editors;formula editor +Oracle Open Office Math : editors;ImageMap editor +Oracle Open Office Math : effects +Oracle Open Office Math : effects;font positions +Oracle Open Office Math : effects;fonts +Oracle Open Office Math : effects;Fontwork icons +Oracle Open Office Math : ellipse drawing +Oracle Open Office Math : ellipsis symbols +Oracle Open Office Math : empty documents +Oracle Open Office Math : empty paragraph removal +Oracle Open Office Math : empty set +Oracle Open Office Math : encryption of contents +Oracle Open Office Math : entering groups +Oracle Open Office Math : entering text from right to left +Oracle Open Office Math : epsilon +Oracle Open Office Math : epsilon;back +Oracle Open Office Math : equal sign +Oracle Open Office Math : equal sign, see also operators +Oracle Open Office Math : Equation Editor, see Oracle Open Office Math +Oracle Open Office Math : equations in formula editor +Oracle Open Office Math : Error Report Tool +Oracle Open Office Math : error search +Oracle Open Office Math : error search;next error +Oracle Open Office Math : error search;previous error +Oracle Open Office Math : Euro +Oracle Open Office Math : Euro;currency formats +Oracle Open Office Math : Euro;Euro Converter Wizard +Oracle Open Office Math : even/odd pages +Oracle Open Office Math : even/odd pages;printing +Oracle Open Office Math : events +Oracle Open Office Math : events;assigning scripts +Oracle Open Office Math : events;controls +Oracle Open Office Math : events;customizing +Oracle Open Office Math : events;in forms +Oracle Open Office Math : examples +Oracle Open Office Math : examples;integral +Oracle Open Office Math : examples;Oracle Open Office Math formulas +Oracle Open Office Math : Excel +Oracle Open Office Math : Excel;saving as +Oracle Open Office Math : Excel;search criteria +Oracle Open Office Math : exceptions +Oracle Open Office Math : exceptions;user-defined dictionaries +Oracle Open Office Math : exchanging, see also replacing +Oracle Open Office Math : executing SQL commands +Oracle Open Office Math : existence quantor symbol +Oracle Open Office Math : exiting +Oracle Open Office Math : exiting;groups +Oracle Open Office Math : exiting;Oracle Open Office +Oracle Open Office Math : expanding formatting (Calc) +Oracle Open Office Math : explorer of data sources +Oracle Open Office Math : exponential functions +Oracle Open Office Math : exponents +Oracle Open Office Math : exponents;variables with right +Oracle Open Office Math : exponents and indexes in Oracle Open Office Math +Oracle Open Office Math : export filters +Oracle Open Office Math : exporting +Oracle Open Office Math : exporting;bitmaps +Oracle Open Office Math : exporting;HTML and text documents +Oracle Open Office Math : exporting;Microsoft Office documents with VBA code +Oracle Open Office Math : exporting;spreadsheets to text format +Oracle Open Office Math : exporting;templates +Oracle Open Office Math : exporting;to foreign formats +Oracle Open Office Math : exporting;to HTML +Oracle Open Office Math : exporting;to Microsoft Office formats +Oracle Open Office Math : exporting;to PDF +Oracle Open Office Math : exporting;to PostScript format +Oracle Open Office Math : exporting;to XML +Oracle Open Office Math : exporting;XML files +Oracle Open Office Math : extended tips in Help +Oracle Open Office Math : extension mode in text +Oracle Open Office Math : extensions +Oracle Open Office Math : extensions;Extension Manager +Oracle Open Office Math : extensions;file formats +Oracle Open Office Math : external keys (Base) +Oracle Open Office Math : factorial +Oracle Open Office Math : faster printing +Oracle Open Office Math : faxes +Oracle Open Office Math : faxes;configuring Oracle Open Office +Oracle Open Office Math : faxes;fax programs/fax printers under UNIX +Oracle Open Office Math : faxes;selecting a fax machine +Oracle Open Office Math : faxes;sending +Oracle Open Office Math : faxes;wizards +Oracle Open Office Math : feedback +Oracle Open Office Math : feedback;automatically +Oracle Open Office Math : fields +Oracle Open Office Math : fields;database tables +Oracle Open Office Math : fields;displaying field codes (Writer) +Oracle Open Office Math : fields;formatted fields +Oracle Open Office Math : fields;updating automatically (Writer) +Oracle Open Office Math : file associations for Microsoft Office +Oracle Open Office Math : file filters +Oracle Open Office Math : file filters;mobile devices +Oracle Open Office Math : file filters;XML +Oracle Open Office Math : file formats +Oracle Open Office Math : file formats;changing Oracle Open Office defaults +Oracle Open Office Math : file formats;OpenDocument/XML +Oracle Open Office Math : file formats;saving always in other formats +Oracle Open Office Math : file selection button +Oracle Open Office Math : file sharing options for current document +Oracle Open Office Math : files +Oracle Open Office Math : files;filters and formats +Oracle Open Office Math : files;importing +Oracle Open Office Math : files;opening +Oracle Open Office Math : files;properties +Oracle Open Office Math : files;saving +Oracle Open Office Math : files;saving automatically +Oracle Open Office Math : files;saving in other formats +Oracle Open Office Math : files;sending as e-mail +Oracle Open Office Math : files;version numbers +Oracle Open Office Math : files and folders in Oracle Open Office +Oracle Open Office Math : files, see also documents +Oracle Open Office Math : fill characters with tabulators +Oracle Open Office Math : fill colors for areas +Oracle Open Office Math : fill patterns for areas +Oracle Open Office Math : filter conditions +Oracle Open Office Math : filter conditions;connecting +Oracle Open Office Math : filter conditions;in queries (Base) +Oracle Open Office Math : filtering +Oracle Open Office Math : filtering;data in databases +Oracle Open Office Math : filtering;data in forms +Oracle Open Office Math : filters +Oracle Open Office Math : filters;comparison operators +Oracle Open Office Math : filters;for import and export +Oracle Open Office Math : filters;Navigator +Oracle Open Office Math : filters;pictures +Oracle Open Office Math : filters;XML filter settings +Oracle Open Office Math : Find tab in Help +Oracle Open Office Math : finding +Oracle Open Office Math : finding;errors in Oracle Open Office Math +Oracle Open Office Math : finding;in all sheets +Oracle Open Office Math : finding;records in form documents +Oracle Open Office Math : finding;selections +Oracle Open Office Math : finding;similarity search +Oracle Open Office Math : fitting to pages +Oracle Open Office Math : fitting to pages;print settings in Math +Oracle Open Office Math : fitting to pages;print settings in presentations +Oracle Open Office Math : fixed text +Oracle Open Office Math : fixed text;form functions +Oracle Open Office Math : fixing toolbars +Oracle Open Office Math : flipping draw objects +Oracle Open Office Math : floating frames in HTML documents +Oracle Open Office Math : floating toolbars +Oracle Open Office Math : floor brackets +Oracle Open Office Math : focus of controls +Oracle Open Office Math : folder creation +Oracle Open Office Math : font attributes +Oracle Open Office Math : font attributes;changing defaults +Oracle Open Office Math : font lists +Oracle Open Office Math : font name box +Oracle Open Office Math : font sizes +Oracle Open Office Math : font sizes;bullets +Oracle Open Office Math : font sizes;example +Oracle Open Office Math : font sizes;in Oracle Open Office Math +Oracle Open Office Math : font sizes;relative changes +Oracle Open Office Math : font sizes;scaling on screen +Oracle Open Office Math : font sizes;text +Oracle Open Office Math : fonts +Oracle Open Office Math : fonts;changing in templates +Oracle Open Office Math : fonts;color ignored +Oracle Open Office Math : fonts;colors +Oracle Open Office Math : fonts;default settings +Oracle Open Office Math : fonts;effects +Oracle Open Office Math : fonts;for HTML and Basic +Oracle Open Office Math : fonts;formats +Oracle Open Office Math : fonts;in Oracle Open Office Math +Oracle Open Office Math : fonts;outlines +Oracle Open Office Math : fonts;positions in text +Oracle Open Office Math : fonts;shadows +Oracle Open Office Math : fonts;specifying several +Oracle Open Office Math : fonts;strikethrough +Oracle Open Office Math : fonts;styles +Oracle Open Office Math : fonts;text objects +Oracle Open Office Math : Fontwork +Oracle Open Office Math : footers +Oracle Open Office Math : footers;backgrounds +Oracle Open Office Math : for all symbol +Oracle Open Office Math : form controls +Oracle Open Office Math : form controls;assigning macros +Oracle Open Office Math : form controls;protecting +Oracle Open Office Math : form controls;toolbars +Oracle Open Office Math : form fields +Oracle Open Office Math : form filters +Oracle Open Office Math : Form Navigator +Oracle Open Office Math : format codes +Oracle Open Office Math : format codes;numbers +Oracle Open Office Math : format filling printing in Oracle Open Office Math +Oracle Open Office Math : Format Paintbrush +Oracle Open Office Math : formats +Oracle Open Office Math : formats;Asian layout +Oracle Open Office Math : formats;fonts +Oracle Open Office Math : formats;maximizing page formats +Oracle Open Office Math : formats;number and currency formats +Oracle Open Office Math : formats;of currencies/date/time +Oracle Open Office Math : formats;on opening and saving +Oracle Open Office Math : formats;pasting in special formats +Oracle Open Office Math : formats;positions +Oracle Open Office Math : formats;tabulators +Oracle Open Office Math : formatted fields +Oracle Open Office Math : formatted fields;form functions +Oracle Open Office Math : formatted fields;properties +Oracle Open Office Math : formatting +Oracle Open Office Math : formatting;Asian typography +Oracle Open Office Math : formatting;axes in charts +Oracle Open Office Math : formatting;changing default attributes +Oracle Open Office Math : formatting;chart legends +Oracle Open Office Math : formatting;copying +Oracle Open Office Math : formatting;definition +Oracle Open Office Math : formatting;expanding (Calc) +Oracle Open Office Math : formatting;font effects +Oracle Open Office Math : formatting;hyperlinks +Oracle Open Office Math : formatting;in Oracle Open Office Math +Oracle Open Office Math : formatting;pages +Oracle Open Office Math : formatting;printer metrics (Writer) +Oracle Open Office Math : formatting;reference list (Math) +Oracle Open Office Math : formatting;undoing +Oracle Open Office Math : formatting;undoing when writing +Oracle Open Office Math : forms +Oracle Open Office Math : forms;browsing +Oracle Open Office Math : forms;Combo Box/List Box Wizard +Oracle Open Office Math : forms;creating +Oracle Open Office Math : forms;data +Oracle Open Office Math : forms;designing (Base) +Oracle Open Office Math : forms;events +Oracle Open Office Math : forms;filtering data +Oracle Open Office Math : forms;finding records +Oracle Open Office Math : forms;focus after opening +Oracle Open Office Math : forms;general information (Base) +Oracle Open Office Math : forms;grouping controls +Oracle Open Office Math : forms;HTML filters +Oracle Open Office Math : forms;Navigator +Oracle Open Office Math : forms;opening in design mode +Oracle Open Office Math : forms;properties +Oracle Open Office Math : forms;sorting data +Oracle Open Office Math : forms;subforms +Oracle Open Office Math : forms;wizards +Oracle Open Office Math : forms;XForms +Oracle Open Office Math : formula cursor in Oracle Open Office Math +Oracle Open Office Math : formula display sizes +Oracle Open Office Math : formula fonts +Oracle Open Office Math : formula fonts;defining +Oracle Open Office Math : formula parts +Oracle Open Office Math : formula parts;manually aligning +Oracle Open Office Math : formula parts;merging +Oracle Open Office Math : formula texts +Oracle Open Office Math : formula texts;printing in Oracle Open Office Math +Oracle Open Office Math : formula view +Oracle Open Office Math : formula view;refreshing +Oracle Open Office Math : formulas +Oracle Open Office Math : formulas;aligning +Oracle Open Office Math : formulas;attributes in +Oracle Open Office Math : formulas;element spacing +Oracle Open Office Math : formulas;entering symbols in +Oracle Open Office Math : formulas;examples +Oracle Open Office Math : formulas;fit to text +Oracle Open Office Math : formulas;in color +Oracle Open Office Math : formulas;increasing size of display +Oracle Open Office Math : formulas;line breaks +Oracle Open Office Math : formulas;maximum size +Oracle Open Office Math : formulas;new +Oracle Open Office Math : formulas;reference tables +Oracle Open Office Math : formulas;selections +Oracle Open Office Math : formulas;starting formula editor +Oracle Open Office Math : formulas;zooming out +Oracle Open Office Math : formulas in reports +Oracle Open Office Math : formulas in reports;editing +Oracle Open Office Math : forums and support +Oracle Open Office Math : fractions in formulas +Oracle Open Office Math : frames +Oracle Open Office Math : frames;around paragraphs +Oracle Open Office Math : frames;around tables +Oracle Open Office Math : frames;AutoCorrect function +Oracle Open Office Math : frames;backgrounds +Oracle Open Office Math : frames;captions (Writer) +Oracle Open Office Math : frames;printing in Oracle Open Office Math +Oracle Open Office Math : frames;protecting +Oracle Open Office Math : frames;selection frames +Oracle Open Office Math : frames;text fitting to frames +Oracle Open Office Math : freeform lines +Oracle Open Office Math : freeform lines;draw functions +Oracle Open Office Math : FTP +Oracle Open Office Math : FTP;opening documents +Oracle Open Office Math : FTP;saving documents +Oracle Open Office Math : full joins (Base) +Oracle Open Office Math : full screen view +Oracle Open Office Math : full-text search in Help +Oracle Open Office Math : functions +Oracle Open Office Math : functions;in Oracle Open Office Math +Oracle Open Office Math : functions in reports +Oracle Open Office Math : functions in reports;editing +Oracle Open Office Math : functions operators +Oracle Open Office Math : functions operators;list of +Oracle Open Office Math : Gallery +Oracle Open Office Math : Gallery;adding pictures +Oracle Open Office Math : Gallery;dragging pictures to draw objects +Oracle Open Office Math : Gallery;hiding/showing +Oracle Open Office Math : Gallery;inserting pictures from +Oracle Open Office Math : gaps in formulas +Oracle Open Office Math : get method for form transmissions +Oracle Open Office Math : getting support +Oracle Open Office Math : GIF format +Oracle Open Office Math : glossaries +Oracle Open Office Math : glossaries;common terms +Oracle Open Office Math : glossaries;Internet terms +Oracle Open Office Math : gradients off for faster printing +Oracle Open Office Math : graphic objects, see draw objects +Oracle Open Office Math : graphical text art +Oracle Open Office Math : graphics +Oracle Open Office Math : graphics;cache +Oracle Open Office Math : graphics;protecting +Oracle Open Office Math : graphics, see also pictures +Oracle Open Office Math : grayscale printing +Oracle Open Office Math : greater than or equal to signs +Oracle Open Office Math : greater than relations +Oracle Open Office Math : Greek symbols in formulas +Oracle Open Office Math : grid controls +Oracle Open Office Math : grid controls;form functions +Oracle Open Office Math : grids +Oracle Open Office Math : grids;defaults (Writer/Calc) +Oracle Open Office Math : grids;display options (Impress/Draw) +Oracle Open Office Math : grids;displaying lines (Calc) +Oracle Open Office Math : group box creation +Oracle Open Office Math : grouping and brackets in Oracle Open Office Math +Oracle Open Office Math : grouping brackets +Oracle Open Office Math : groups +Oracle Open Office Math : groups;entering/exiting/ungrouping +Oracle Open Office Math : groups;naming +Oracle Open Office Math : groups;of controls +Oracle Open Office Math : guides +Oracle Open Office Math : guides;display options (Impress/Draw) +Oracle Open Office Math : guides;displaying when moving objects (Impress) +Oracle Open Office Math : guides;showing (Calc) +Oracle Open Office Math : guides;showing when moving frames (Writer) +Oracle Open Office Math : gutter +Oracle Open Office Math : h-bar symbol +Oracle Open Office Math : handles +Oracle Open Office Math : handles;displaying (Writer) +Oracle Open Office Math : handles;scaling +Oracle Open Office Math : handles;showing simple/large handles (Calc) +Oracle Open Office Math : Hangul/Hanja +Oracle Open Office Math : hatching +Oracle Open Office Math : headers +Oracle Open Office Math : headers;backgrounds +Oracle Open Office Math : headings +Oracle Open Office Math : headings;entering as text box +Oracle Open Office Math : Hebrew +Oracle Open Office Math : Hebrew;entering text +Oracle Open Office Math : Hebrew;language settings +Oracle Open Office Math : Help +Oracle Open Office Math : Help;bookmarks +Oracle Open Office Math : Help;extended tips on/off +Oracle Open Office Math : Help;full-text search +Oracle Open Office Math : Help;Help tips +Oracle Open Office Math : Help;keywords +Oracle Open Office Math : Help;navigation pane showing/hiding +Oracle Open Office Math : Help;style sheets +Oracle Open Office Math : Help;topics +Oracle Open Office Math : Help Agent +Oracle Open Office Math : Help Agent;help +Oracle Open Office Math : Help Agent;options +Oracle Open Office Math : Help tips +Oracle Open Office Math : Help tips;hiding +Oracle Open Office Math : hidden controls in Form Navigator +Oracle Open Office Math : hidden fields display (Writer) +Oracle Open Office Math : hidden pages +Oracle Open Office Math : hidden pages;printing in presentations +Oracle Open Office Math : hidden text +Oracle Open Office Math : hidden text;showing (Writer) +Oracle Open Office Math : hiding +Oracle Open Office Math : hiding;changes +Oracle Open Office Math : hiding;docked windows +Oracle Open Office Math : hiding;navigation pane in Help window +Oracle Open Office Math : high contrast mode +Oracle Open Office Math : highlighting changes +Oracle Open Office Math : Hindi +Oracle Open Office Math : Hindi;entering text +Oracle Open Office Math : Hindi;language settings +Oracle Open Office Math : horizontal scrollbars (Writer) +Oracle Open Office Math : hotspots +Oracle Open Office Math : hotspots;adding to images +Oracle Open Office Math : hotspots;properties +Oracle Open Office Math : HTML +Oracle Open Office Math : HTML;compatibility settings +Oracle Open Office Math : HTML;definition +Oracle Open Office Math : HTML;export character set +Oracle Open Office Math : HTML;fonts for source display +Oracle Open Office Math : HTML;importing META tags +Oracle Open Office Math : HTML;live presentations +Oracle Open Office Math : HTML documents +Oracle Open Office Math : HTML documents;auto reloading +Oracle Open Office Math : HTML documents;importing/exporting +Oracle Open Office Math : HTML documents;META tags in +Oracle Open Office Math : HTML documents;new +Oracle Open Office Math : HTML documents;source text +Oracle Open Office Math : hyperbolic cosine function +Oracle Open Office Math : hyperbolic cotangent function +Oracle Open Office Math : hyperbolic sine function +Oracle Open Office Math : hyperbolic tangent function +Oracle Open Office Math : hyperlinks +Oracle Open Office Math : hyperlinks;assigning macros +Oracle Open Office Math : hyperlinks;character formats +Oracle Open Office Math : hyperlinks;definition +Oracle Open Office Math : hyperlinks;deleting +Oracle Open Office Math : hyperlinks;editing +Oracle Open Office Math : hyperlinks;inserting +Oracle Open Office Math : hyperlinks;relative and absolute +Oracle Open Office Math : hyperlinks;turning off automatic recognition +Oracle Open Office Math : hyperlinks, see also links +Oracle Open Office Math : hyphenation +Oracle Open Office Math : hyphenation;activating for a language +Oracle Open Office Math : hyphenation;minimal number of characters +Oracle Open Office Math : hyphens +Oracle Open Office Math : hyphens;displaying custom (Writer) +Oracle Open Office Math : hyphens;inserting custom +Oracle Open Office Math : icon bars, see toolbars +Oracle Open Office Math : icon sizes +Oracle Open Office Math : identical to relation +Oracle Open Office Math : ignore list for spellcheck +Oracle Open Office Math : ignored font colors +Oracle Open Office Math : illustrations, see pictures +Oracle Open Office Math : image button creation +Oracle Open Office Math : image control creation +Oracle Open Office Math : image of relation +Oracle Open Office Math : ImageMap +Oracle Open Office Math : ImageMap;definition +Oracle Open Office Math : ImageMap;editor +Oracle Open Office Math : ImageMap;hotspot properties +Oracle Open Office Math : images +Oracle Open Office Math : images;ImageMap +Oracle Open Office Math : images;inserting and editing bitmaps +Oracle Open Office Math : images, see also pictures +Oracle Open Office Math : imaginary part of a complex number +Oracle Open Office Math : IME +Oracle Open Office Math : IME;definition +Oracle Open Office Math : IME;showing/hiding +Oracle Open Office Math : import filters +Oracle Open Office Math : import restrictions for Microsoft Office +Oracle Open Office Math : importing +Oracle Open Office Math : importing;bitmaps +Oracle Open Office Math : importing;compatibility settings for text import +Oracle Open Office Math : importing;databases +Oracle Open Office Math : importing;documents in other formats +Oracle Open Office Math : importing;from XML +Oracle Open Office Math : importing;HTML and text documents +Oracle Open Office Math : importing;HTML with META tags +Oracle Open Office Math : importing;Microsoft Office documents with VBA code +Oracle Open Office Math : importing;Oracle Open Office Math formulas +Oracle Open Office Math : importing;tables in text format +Oracle Open Office Math : importing;templates +Oracle Open Office Math : improvement program +Oracle Open Office Math : improvement program - Improvement Program +Oracle Open Office Math : inches +Oracle Open Office Math : included in set operator +Oracle Open Office Math : includes set operator +Oracle Open Office Math : Index tab in Help +Oracle Open Office Math : indexes +Oracle Open Office Math : indexes;adding to formulas +Oracle Open Office Math : indexes;backgrounds +Oracle Open Office Math : indexes;showing/hiding Help index tab +Oracle Open Office Math : indexes and exponents in Oracle Open Office Math +Oracle Open Office Math : indicator lines in text +Oracle Open Office Math : inequation +Oracle Open Office Math : infinity symbol +Oracle Open Office Math : inner joins (Base) +Oracle Open Office Math : input method window +Oracle Open Office Math : insert mode for entering text +Oracle Open Office Math : inserting +Oracle Open Office Math : inserting;brackets +Oracle Open Office Math : inserting;buttons in toolbars +Oracle Open Office Math : inserting;cell ranges from spreadsheets +Oracle Open Office Math : inserting;charts +Oracle Open Office Math : inserting;clipboard options +Oracle Open Office Math : inserting;comments +Oracle Open Office Math : inserting;comments in Oracle Open Office Math +Oracle Open Office Math : inserting;data from text documents +Oracle Open Office Math : inserting;datasource records in spreadsheets +Oracle Open Office Math : inserting;drawings +Oracle Open Office Math : inserting;floating frames +Oracle Open Office Math : inserting;Fontwork objects +Oracle Open Office Math : inserting;form fields +Oracle Open Office Math : inserting;gaps +Oracle Open Office Math : inserting;hyperlinks +Oracle Open Office Math : inserting;line breaks in cells +Oracle Open Office Math : inserting;movies/sounds +Oracle Open Office Math : inserting;new text tables defaults +Oracle Open Office Math : inserting;objects from Gallery +Oracle Open Office Math : inserting;OLE objects +Oracle Open Office Math : inserting;paragraph borders +Oracle Open Office Math : inserting;paragraph bullets +Oracle Open Office Math : inserting;pictures in Gallery +Oracle Open Office Math : inserting;plug-ins +Oracle Open Office Math : inserting;push buttons +Oracle Open Office Math : inserting;special characters +Oracle Open Office Math : inserting;tab stops +Oracle Open Office Math : inserting;text in Oracle Open Office Math +Oracle Open Office Math : inserting;textures on chart bars +Oracle Open Office Math : installing +Oracle Open Office Math : installing;ActiveX control +Oracle Open Office Math : installing;mobile device filters +Oracle Open Office Math : installing;UNO components +Oracle Open Office Math : installing;XML filters +Oracle Open Office Math : instructions +Oracle Open Office Math : instructions;general +Oracle Open Office Math : instructions;Oracle Open Office Math +Oracle Open Office Math : integral limits +Oracle Open Office Math : integrals +Oracle Open Office Math : integrals;example +Oracle Open Office Math : integrals;signs +Oracle Open Office Math : Internet +Oracle Open Office Math : Internet;checking for updates +Oracle Open Office Math : Internet;Internet Explorer for displaying Oracle Open Office documents +Oracle Open Office Math : Internet;presentations +Oracle Open Office Math : Internet;starting searches +Oracle Open Office Math : Internet glossary +Oracle Open Office Math : intersection of sets +Oracle Open Office Math : invert filter +Oracle Open Office Math : invisible areas +Oracle Open Office Math : italic attribute in Oracle Open Office Math +Oracle Open Office Math : italic text +Oracle Open Office Math : iterative references in spreadsheets +Oracle Open Office Math : Java +Oracle Open Office Math : Java;definition +Oracle Open Office Math : Java;setting options +Oracle Open Office Math : JDBC +Oracle Open Office Math : JDBC;databases (Base) +Oracle Open Office Math : JDBC;definition +Oracle Open Office Math : joining +Oracle Open Office Math : joining;paragraphs +Oracle Open Office Math : joining;tables (Base) +Oracle Open Office Math : joins in databases (Base) +Oracle Open Office Math : justifying text +Oracle Open Office Math : kerning +Oracle Open Office Math : kerning;Asian texts +Oracle Open Office Math : kerning;definition +Oracle Open Office Math : kerning;in characters +Oracle Open Office Math : key fields for relations (Base) +Oracle Open Office Math : keyboard +Oracle Open Office Math : keyboard;assigning/editing shortcut keys +Oracle Open Office Math : keyboard;general commands +Oracle Open Office Math : keyboard;removing numbering +Oracle Open Office Math : keys +Oracle Open Office Math : keys;adding push buttons +Oracle Open Office Math : keys;primary keys (Base) +Oracle Open Office Math : kiosk export +Oracle Open Office Math : labels +Oracle Open Office Math : labels;creating and synchronizing +Oracle Open Office Math : labels;for draw objects +Oracle Open Office Math : labels;form functions +Oracle Open Office Math : labels;from databases +Oracle Open Office Math : labels, see also names/callouts +Oracle Open Office Math : lambda-bar symbol +Oracle Open Office Math : languages +Oracle Open Office Math : languages;activating modules +Oracle Open Office Math : languages;Asian support +Oracle Open Office Math : languages;complex text layout +Oracle Open Office Math : languages;locale settings +Oracle Open Office Math : languages;selecting for text +Oracle Open Office Math : languages;setting options +Oracle Open Office Math : languages;spellcheck +Oracle Open Office Math : languages;spellchecking and formatting +Oracle Open Office Math : large handles (Writer) +Oracle Open Office Math : large icons +Oracle Open Office Math : layer arrangement +Oracle Open Office Math : layout +Oracle Open Office Math : layout;importing Word documents +Oracle Open Office Math : layout;pages +Oracle Open Office Math : LDAP server +Oracle Open Office Math : LDAP server;address books (Base) +Oracle Open Office Math : LDAP server;sign on options +Oracle Open Office Math : leading between paragraphs +Oracle Open Office Math : left alignment of paragraphs +Oracle Open Office Math : left arrow symbol +Oracle Open Office Math : left joins (Base) +Oracle Open Office Math : left-justified alignment (Math) +Oracle Open Office Math : legends +Oracle Open Office Math : legends;charts +Oracle Open Office Math : legends;draw objects +Oracle Open Office Math : legends;rounding corners +Oracle Open Office Math : less than or equal to signs +Oracle Open Office Math : less than relations +Oracle Open Office Math : Letter Wizard +Oracle Open Office Math : levels +Oracle Open Office Math : levels;depth stagger +Oracle Open Office Math : levels;macro security +Oracle Open Office Math : limits +Oracle Open Office Math : limits;in Oracle Open Office Math +Oracle Open Office Math : limits;in sums/integrals +Oracle Open Office Math : limits of tables (Writer) +Oracle Open Office Math : line above attribute +Oracle Open Office Math : line breaks +Oracle Open Office Math : line breaks;in cells +Oracle Open Office Math : line breaks;in formulas +Oracle Open Office Math : line spacing +Oracle Open Office Math : line spacing;context menu in paragraphs +Oracle Open Office Math : line spacing;paragraph +Oracle Open Office Math : line styles +Oracle Open Office Math : line styles;applying +Oracle Open Office Math : line styles;defining +Oracle Open Office Math : line through attribute +Oracle Open Office Math : lines +Oracle Open Office Math : lines;defining ends +Oracle Open Office Math : lines;draw functions +Oracle Open Office Math : lines;drawing in text +Oracle Open Office Math : lines;editing points +Oracle Open Office Math : lines;inserting in formulas +Oracle Open Office Math : lines;removing automatic lines +Oracle Open Office Math : lines;scalable +Oracle Open Office Math : lines;with edges +Oracle Open Office Math : lines of text +Oracle Open Office Math : lines of text;alignment +Oracle Open Office Math : links +Oracle Open Office Math : links;between cells and controls +Oracle Open Office Math : links;by drag and drop +Oracle Open Office Math : links;character formats +Oracle Open Office Math : links;definition +Oracle Open Office Math : links;editing hyperlinks +Oracle Open Office Math : links;inserting +Oracle Open Office Math : links;modifying +Oracle Open Office Math : links;opening files with +Oracle Open Office Math : links;relational databases (Base) +Oracle Open Office Math : links;turning off automatic recognition +Oracle Open Office Math : links;updating options (Writer) +Oracle Open Office Math : links;updating specific links +Oracle Open Office Math : list box creation +Oracle Open Office Math : lists +Oracle Open Office Math : lists;data assigned to controls +Oracle Open Office Math : lists;registered databases (Base) +Oracle Open Office Math : lists;regular expressions +Oracle Open Office Math : live presentations on the Internet +Oracle Open Office Math : loading +Oracle Open Office Math : loading;documents +Oracle Open Office Math : loading;documents from other formats +Oracle Open Office Math : loading;HTML documents, automatically +Oracle Open Office Math : loading;Microsoft Office documents with VBA code +Oracle Open Office Math : loading;reloading +Oracle Open Office Math : loading;XML files +Oracle Open Office Math : locale settings +Oracle Open Office Math : logarithms +Oracle Open Office Math : logic symbols +Oracle Open Office Math : logical operators +Oracle Open Office Math : lower limits +Oracle Open Office Math : lowercase letters +Oracle Open Office Math : lowercase letters;font effects +Oracle Open Office Math : Macro Wizard (Base) +Oracle Open Office Math : macros +Oracle Open Office Math : macros;assigning to events in forms +Oracle Open Office Math : macros;attaching new (Base) +Oracle Open Office Math : macros;in MS Office documents +Oracle Open Office Math : macros;interrupting +Oracle Open Office Math : macros;organizing +Oracle Open Office Math : macros;recording +Oracle Open Office Math : macros;security +Oracle Open Office Math : macros;security levels +Oracle Open Office Math : macros;security warning dialog +Oracle Open Office Math : macros;selecting security warnings +Oracle Open Office Math : magnifiers +Oracle Open Office Math : margins +Oracle Open Office Math : margins;pages +Oracle Open Office Math : margins;setting with the mouse +Oracle Open Office Math : margins;shadows +Oracle Open Office Math : markers +Oracle Open Office Math : markers;definition +Oracle Open Office Math : markers;next +Oracle Open Office Math : markers;previous +Oracle Open Office Math : marking changes +Oracle Open Office Math : marking, see selecting +Oracle Open Office Math : Math formula editor +Oracle Open Office Math : mathematical symbols +Oracle Open Office Math : mathematical symbols;catalog +Oracle Open Office Math : mathematical symbols;other +Oracle Open Office Math : matrices +Oracle Open Office Math : matrices;arranging +Oracle Open Office Math : maximum formula size +Oracle Open Office Math : measurement units +Oracle Open Office Math : measurement units;changing on rulers +Oracle Open Office Math : measurement units;converting +Oracle Open Office Math : measurement units;selecting +Oracle Open Office Math : Media Player window +Oracle Open Office Math : menus +Oracle Open Office Math : menus;activating context menus +Oracle Open Office Math : menus;assigning macros +Oracle Open Office Math : menus;customizing +Oracle Open Office Math : merging +Oracle Open Office Math : merging;documents +Oracle Open Office Math : merging;formula parts +Oracle Open Office Math : META tags +Oracle Open Office Math : metrics +Oracle Open Office Math : metrics;converting +Oracle Open Office Math : metrics;document formatting (Writer) +Oracle Open Office Math : metrics;in sheets +Oracle Open Office Math : Microsoft Office +Oracle Open Office Math : Microsoft Office;Access databases (base) +Oracle Open Office Math : Microsoft Office;as default file format +Oracle Open Office Math : Microsoft Office;document import restrictions +Oracle Open Office Math : Microsoft Office;feature comparisons +Oracle Open Office Math : Microsoft Office;importing password protected files +Oracle Open Office Math : Microsoft Office;importing Word documents +Oracle Open Office Math : Microsoft Office;importing/exporting VBA code +Oracle Open Office Math : Microsoft Office;new users information +Oracle Open Office Math : Microsoft Office;opening Microsoft documents +Oracle Open Office Math : Microsoft Office;reassigning document types +Oracle Open Office Math : migrating macros (Base) +Oracle Open Office Math : minus signs +Oracle Open Office Math : minus/plus signs +Oracle Open Office Math : mobile device filters +Oracle Open Office Math : models in XForms +Oracle Open Office Math : modifying, see changing +Oracle Open Office Math : more controls +Oracle Open Office Math : mosaic filter +Oracle Open Office Math : mouse +Oracle Open Office Math : mouse;pointers when using drag and drop +Oracle Open Office Math : mouse;positioning +Oracle Open Office Math : movies +Oracle Open Office Math : moving +Oracle Open Office Math : moving;tab stops on ruler +Oracle Open Office Math : moving;toolbars +Oracle Open Office Math : moving;using guide lines in presentations +Oracle Open Office Math : MS ADO interface (Base) +Oracle Open Office Math : much greater than relation +Oracle Open Office Math : much less than relation +Oracle Open Office Math : multi-line formulas +Oracle Open Office Math : multi-line formulas;aligning +Oracle Open Office Math : multi-line titles in forms +Oracle Open Office Math : multiple documents +Oracle Open Office Math : multiple documents;opening +Oracle Open Office Math : multiple selection +Oracle Open Office Math : multiplication signs +Oracle Open Office Math : music +Oracle Open Office Math : My Documents folder +Oracle Open Office Math : My Documents folder;changing work directory +Oracle Open Office Math : My Documents folder;opening +Oracle Open Office Math : MySQL databases (Base) +Oracle Open Office Math : Nabla operator +Oracle Open Office Math : names +Oracle Open Office Math : names;multi-line titles +Oracle Open Office Math : names;objects +Oracle Open Office Math : names, see also labels/callouts +Oracle Open Office Math : namespace organization in XForms +Oracle Open Office Math : native SQL (Base) +Oracle Open Office Math : natural exponential functions +Oracle Open Office Math : natural logarithms +Oracle Open Office Math : natural numbers +Oracle Open Office Math : navigating +Oracle Open Office Math : navigating;in documents +Oracle Open Office Math : Navigation bar +Oracle Open Office Math : Navigation bar;controls +Oracle Open Office Math : Navigation bar;forms +Oracle Open Office Math : Navigator +Oracle Open Office Math : Navigator;comments +Oracle Open Office Math : Navigator;contents as lists +Oracle Open Office Math : Navigator;docking +Oracle Open Office Math : Navigator;working with +Oracle Open Office Math : network identity options +Oracle Open Office Math : new databases +Oracle Open Office Math : new documents +Oracle Open Office Math : new lines in cells +Oracle Open Office Math : new symbols in Oracle Open Office Math +Oracle Open Office Math : new windows +Oracle Open Office Math : non-breaking dashes +Oracle Open Office Math : non-breaking spaces (Writer) +Oracle Open Office Math : non-printing characters (Writer) +Oracle Open Office Math : not included in set operator +Oracle Open Office Math : NOT operator +Oracle Open Office Math : not subset set operators +Oracle Open Office Math : not superset set operators +Oracle Open Office Math : number formats +Oracle Open Office Math : number formats;codes +Oracle Open Office Math : number formats;formats +Oracle Open Office Math : number formats;recognition in text tables +Oracle Open Office Math : number of pages +Oracle Open Office Math : number of sheets +Oracle Open Office Math : number of tables +Oracle Open Office Math : numbering +Oracle Open Office Math : numbering;options +Oracle Open Office Math : numbering;turning off +Oracle Open Office Math : numbering;using automatically +Oracle Open Office Math : numbers +Oracle Open Office Math : numbers;date, time and currency formats +Oracle Open Office Math : numerical fields in forms +Oracle Open Office Math : objects +Oracle Open Office Math : objects;always moveable (Impress/Draw) +Oracle Open Office Math : objects;arranging within stacks +Oracle Open Office Math : objects;copying when moving in presentations +Oracle Open Office Math : objects;definition +Oracle Open Office Math : objects;displaying in spreadsheets +Oracle Open Office Math : objects;displaying in text documents +Oracle Open Office Math : objects;editing +Oracle Open Office Math : objects;inserting from Gallery +Oracle Open Office Math : objects;inserting OLE objects +Oracle Open Office Math : objects;moving and resizing with mouse +Oracle Open Office Math : objects;naming +Oracle Open Office Math : objects;opening +Oracle Open Office Math : objects;quickly moving to +Oracle Open Office Math : objects;titles and descriptions +Oracle Open Office Math : ODBC +Oracle Open Office Math : ODBC;database (Base) +Oracle Open Office Math : ODBC;definition +Oracle Open Office Math : ODF file formats +Oracle Open Office Math : Office +Oracle Open Office Math : Office;Microsoft Office and Oracle Open Office +Oracle Open Office Math : OLE +Oracle Open Office Math : OLE;definition +Oracle Open Office Math : OLE objects +Oracle Open Office Math : OLE objects;arranging within stacks +Oracle Open Office Math : OLE objects;captions (Writer) +Oracle Open Office Math : OLE objects;inserting +Oracle Open Office Math : OLE objects;number of +Oracle Open Office Math : OLE objects;protecting +Oracle Open Office Math : one and a half line spacing in text +Oracle Open Office Math : online feedback options +Oracle Open Office Math : online registration +Oracle Open Office Math : online update options +Oracle Open Office Math : online updates +Oracle Open Office Math : online updates;checking automatically +Oracle Open Office Math : online updates;checking manually +Oracle Open Office Math : OpenDocument file formats +Oracle Open Office Math : OpenGL +Oracle Open Office Math : OpenGL;definition +Oracle Open Office Math : opening +Oracle Open Office Math : opening;context menus +Oracle Open Office Math : opening;database files +Oracle Open Office Math : opening;dialog settings +Oracle Open Office Math : opening;documents +Oracle Open Office Math : opening;documents from other formats +Oracle Open Office Math : opening;documents on WebDAV server +Oracle Open Office Math : opening;documents with links +Oracle Open Office Math : opening;files, with placeholders +Oracle Open Office Math : opening;forms +Oracle Open Office Math : opening;Microsoft Office files +Oracle Open Office Math : opening;mobile device documents +Oracle Open Office Math : opening;objects +Oracle Open Office Math : opening;reports +Oracle Open Office Math : opening;several files +Oracle Open Office Math : opening;XForms +Oracle Open Office Math : operator brackets +Oracle Open Office Math : operators +Oracle Open Office Math : operators;general +Oracle Open Office Math : operators;in Math +Oracle Open Office Math : operators;list of +Oracle Open Office Math : operators;standard filters +Oracle Open Office Math : operators;unary and binary +Oracle Open Office Math : optional hyphens (Writer) +Oracle Open Office Math : options +Oracle Open Office Math : options;accessibility +Oracle Open Office Math : options;appearance +Oracle Open Office Math : options;compatibility (Writer) +Oracle Open Office Math : options;improvement program +Oracle Open Office Math : options;network identity +Oracle Open Office Math : options;online update +Oracle Open Office Math : options;tools +Oracle Open Office Math : OR operator +Oracle Open Office Math : Oracle databases (base) +Oracle Open Office Math : Oracle Open Office Base data sources +Oracle Open Office Math : Oracle Open Office Basic scripts in HTML documents +Oracle Open Office Math : Oracle Open Office documents +Oracle Open Office Math : Oracle Open Office documents;mobile device filters +Oracle Open Office Math : Oracle Open Office documents;viewing and editing in Internet Explorer +Oracle Open Office Math : Oracle Open Office Math +Oracle Open Office Math : Oracle Open Office Math;entering symbols in +Oracle Open Office Math : Oracle Open Office Math;examples +Oracle Open Office Math : Oracle Open Office Math;formatting +Oracle Open Office Math : Oracle Open Office Math;general instructions +Oracle Open Office Math : Oracle Open Office Math;reference list +Oracle Open Office Math : Oracle Open Office Math;relations +Oracle Open Office Math : Oracle Open Office Math start +Oracle Open Office Math : ordering +Oracle Open Office Math : ordering;objects +Oracle Open Office Math : ordinal numbers +Oracle Open Office Math : ordinal numbers;replacing +Oracle Open Office Math : organizing +Oracle Open Office Math : organizing;macros and scripts +Oracle Open Office Math : organizing;namespaces in XForms +Oracle Open Office Math : organizing;styles +Oracle Open Office Math : organizing;templates +Oracle Open Office Math : original by correspondence +Oracle Open Office Math : original size +Oracle Open Office Math : original size;printing in Oracle Open Office Math +Oracle Open Office Math : original size;restoring after cropping +Oracle Open Office Math : orphaned brackets +Oracle Open Office Math : orthogonal relations +Oracle Open Office Math : other operators +Oracle Open Office Math : other operators;list of +Oracle Open Office Math : outlines +Oracle Open Office Math : outlines;font effects +Oracle Open Office Math : outlines;outline symbols +Oracle Open Office Math : outlines;sending to presentations +Oracle Open Office Math : overline attribute +Oracle Open Office Math : overwrite mode +Oracle Open Office Math : owns command +Oracle Open Office Math : packages, see extensions +Oracle Open Office Math : page breaks +Oracle Open Office Math : page breaks;displaying (Calc) +Oracle Open Office Math : page formats +Oracle Open Office Math : page formats;maximizing +Oracle Open Office Math : page formats;restriction +Oracle Open Office Math : page styles +Oracle Open Office Math : page styles;editing/applying with statusbar +Oracle Open Office Math : pages +Oracle Open Office Math : pages;backgrounds in all applications +Oracle Open Office Math : pages;formatting and numbering +Oracle Open Office Math : pages;printing page names in presentations +Oracle Open Office Math : pages;scaling +Oracle Open Office Math : pages;selecting one to print +Oracle Open Office Math : paint box +Oracle Open Office Math : paint can symbol +Oracle Open Office Math : Paintbrush +Oracle Open Office Math : pair kerning +Oracle Open Office Math : Palm file filters +Oracle Open Office Math : paper formats +Oracle Open Office Math : paper size warning +Oracle Open Office Math : paper trays +Oracle Open Office Math : paragraph marks +Oracle Open Office Math : paragraph marks;displaying (Writer) +Oracle Open Office Math : paragraph styles +Oracle Open Office Math : paragraph styles;languages +Oracle Open Office Math : paragraph styles;modifying basic fonts +Oracle Open Office Math : paragraphs +Oracle Open Office Math : paragraphs;alignment +Oracle Open Office Math : paragraphs;Asian typography +Oracle Open Office Math : paragraphs;defining borders +Oracle Open Office Math : paragraphs;hidden paragraphs (Writer) +Oracle Open Office Math : paragraphs;increasing indents of +Oracle Open Office Math : paragraphs;indents, margins and columns +Oracle Open Office Math : paragraphs;inserting bullets +Oracle Open Office Math : paragraphs;joining +Oracle Open Office Math : paragraphs;numbering automatically +Oracle Open Office Math : paragraphs;removing blank ones +Oracle Open Office Math : paragraphs;spacing +Oracle Open Office Math : paragraphs;tab stops +Oracle Open Office Math : parallel relation +Oracle Open Office Math : parameters +Oracle Open Office Math : parameters;command line +Oracle Open Office Math : parameters;queries (Base) +Oracle Open Office Math : parentheses (Math) +Oracle Open Office Math : partial differentiation symbol +Oracle Open Office Math : password as document property +Oracle Open Office Math : passwords for protecting contents +Oracle Open Office Math : pasting +Oracle Open Office Math : pasting;cell ranges +Oracle Open Office Math : pasting;cell ranges from spreadsheets +Oracle Open Office Math : pasting;data from text documents +Oracle Open Office Math : pasting;draw objects +Oracle Open Office Math : pasting;draw objects from other documents +Oracle Open Office Math : pasting;formatted/unformatted text +Oracle Open Office Math : pasting;from data source view +Oracle Open Office Math : pasting;from data sources to Oracle Open Office Calc +Oracle Open Office Math : pasting;pictures from other documents +Oracle Open Office Math : pasting;sheet areas in text documents +Oracle Open Office Math : pasting;to Gallery +Oracle Open Office Math : paths +Oracle Open Office Math : paths;changing work directory +Oracle Open Office Math : paths;defaults +Oracle Open Office Math : pattern editor +Oracle Open Office Math : pattern fields +Oracle Open Office Math : pattern fields;form functions +Oracle Open Office Math : patterns for objects +Oracle Open Office Math : PDF +Oracle Open Office Math : PDF;export +Oracle Open Office Math : PDF;PostScript to PDF converter, UNIX +Oracle Open Office Math : personal data input +Oracle Open Office Math : phonetic guide +Oracle Open Office Math : picklist creation +Oracle Open Office Math : picture by correspondence +Oracle Open Office Math : pictures +Oracle Open Office Math : pictures;adding to Gallery +Oracle Open Office Math : pictures;arranging within stacks +Oracle Open Office Math : pictures;assigning macros +Oracle Open Office Math : pictures;backgrounds +Oracle Open Office Math : pictures;captions (Writer) +Oracle Open Office Math : pictures;changing paths +Oracle Open Office Math : pictures;cropping and zooming +Oracle Open Office Math : pictures;displaying in Calc +Oracle Open Office Math : pictures;displaying in Writer (Writer) +Oracle Open Office Math : pictures;drag and drop between documents +Oracle Open Office Math : pictures;drawing +Oracle Open Office Math : pictures;editing +Oracle Open Office Math : pictures;filters +Oracle Open Office Math : pictures;ImageMap +Oracle Open Office Math : pictures;inserting automatically +Oracle Open Office Math : pictures;inserting from Gallery +Oracle Open Office Math : pictures;number of +Oracle Open Office Math : pictures;printing +Oracle Open Office Math : pictures;scaling/resizing +Oracle Open Office Math : pixel editor +Oracle Open Office Math : pixel graphics +Oracle Open Office Math : pixel graphics;inserting and editing +Oracle Open Office Math : pixel patterns +Oracle Open Office Math : placeholders +Oracle Open Office Math : placeholders;in SQL queries +Oracle Open Office Math : placeholders;inserting in formulas +Oracle Open Office Math : placeholders;on opening files +Oracle Open Office Math : placeholders;position of next +Oracle Open Office Math : placeholders;previous marker +Oracle Open Office Math : placing toolbars +Oracle Open Office Math : playing movies and sound files +Oracle Open Office Math : plotting data as charts +Oracle Open Office Math : plug-ins +Oracle Open Office Math : plug-ins;activating and deactivating +Oracle Open Office Math : plug-ins;definition +Oracle Open Office Math : plug-ins;inserting +Oracle Open Office Math : plus signs +Oracle Open Office Math : plus/minus signs +Oracle Open Office Math : pocket device appliances +Oracle Open Office Math : Pocket PC file filters +Oracle Open Office Math : points +Oracle Open Office Math : points;reducing editing points when snapping (Impress/Draw) +Oracle Open Office Math : polygon drawing +Oracle Open Office Math : pop-art filter +Oracle Open Office Math : portable document format +Oracle Open Office Math : positioning +Oracle Open Office Math : positioning;draw objects and controls +Oracle Open Office Math : positioning;fonts +Oracle Open Office Math : positioning;objects +Oracle Open Office Math : positioning;toolbars +Oracle Open Office Math : post method for form transmissions +Oracle Open Office Math : posterizing filter +Oracle Open Office Math : PostScript +Oracle Open Office Math : PostScript;creating files +Oracle Open Office Math : PostScript;PDF converter, UNIX +Oracle Open Office Math : PowerPoint export +Oracle Open Office Math : powers +Oracle Open Office Math : precision as shown (Calc) +Oracle Open Office Math : predefining fonts +Oracle Open Office Math : predictive text, see also AutoCorrect function/AutoFill function/AutoInput function/word completion/text completion +Oracle Open Office Math : presentations +Oracle Open Office Math : presentations;creating/opening +Oracle Open Office Math : presentations;inserting spreadsheet cells +Oracle Open Office Math : presentations;live on the Internet +Oracle Open Office Math : presentations;print menu +Oracle Open Office Math : presentations;saving +Oracle Open Office Math : presentations;saving automatically +Oracle Open Office Math : presentations;saving in other formats +Oracle Open Office Math : presentations;sending as e-mail +Oracle Open Office Math : presentations;starting with wizard +Oracle Open Office Math : presentations;wizards +Oracle Open Office Math : press buttons, see push buttons +Oracle Open Office Math : previews +Oracle Open Office Math : previews;fonts lists +Oracle Open Office Math : primary keys +Oracle Open Office Math : primary keys;defining +Oracle Open Office Math : primary keys;design view +Oracle Open Office Math : primary keys;inserting (Base) +Oracle Open Office Math : print area selection +Oracle Open Office Math : printer metrics for document formatting (Writer) +Oracle Open Office Math : printers +Oracle Open Office Math : printers;adding, UNIX +Oracle Open Office Math : printers;choosing +Oracle Open Office Math : printers;default printer +Oracle Open Office Math : printers;faxes under UNIX +Oracle Open Office Math : printers;maximum page formats +Oracle Open Office Math : printers;paper trays +Oracle Open Office Math : printers;properties +Oracle Open Office Math : printing +Oracle Open Office Math : printing;black and white +Oracle Open Office Math : printing;brochures +Oracle Open Office Math : printing;colors in grayscale +Oracle Open Office Math : printing;comments +Oracle Open Office Math : printing;copies +Oracle Open Office Math : printing;creating individual jobs +Oracle Open Office Math : printing;dates in presentations +Oracle Open Office Math : printing;directly +Oracle Open Office Math : printing;documents +Oracle Open Office Math : printing;drawings defaults +Oracle Open Office Math : printing;elements in text documents +Oracle Open Office Math : printing;faster +Oracle Open Office Math : printing;fitting to pages in Oracle Open Office Math +Oracle Open Office Math : printing;fitting to pages in presentations +Oracle Open Office Math : printing;formulas in Oracle Open Office Math +Oracle Open Office Math : printing;hidden pages of presentations +Oracle Open Office Math : printing;in original size in Oracle Open Office Math +Oracle Open Office Math : printing;left/right pages +Oracle Open Office Math : printing;queries (Base) +Oracle Open Office Math : printing;scaling in Oracle Open Office Math +Oracle Open Office Math : printing;selections +Oracle Open Office Math : printing;text always in black +Oracle Open Office Math : printing;text in reverse order +Oracle Open Office Math : printing;tiling pages in presentations +Oracle Open Office Math : printing;transparencies +Oracle Open Office Math : printing;warnings +Oracle Open Office Math : printing;without scaling in presentations +Oracle Open Office Math : printing speed +Oracle Open Office Math : product +Oracle Open Office Math : programming +Oracle Open Office Math : programming;Oracle Open Office +Oracle Open Office Math : programming;scripting +Oracle Open Office Math : properties +Oracle Open Office Math : properties;fields in databases +Oracle Open Office Math : properties;files +Oracle Open Office Math : properties;form controls +Oracle Open Office Math : properties;forms +Oracle Open Office Math : properties;hotspots +Oracle Open Office Math : properties;printers +Oracle Open Office Math : proportional to relation +Oracle Open Office Math : protected contents +Oracle Open Office Math : protected dashes +Oracle Open Office Math : protected database tables +Oracle Open Office Math : protected documents +Oracle Open Office Math : protected spaces +Oracle Open Office Math : protected spaces;inserting +Oracle Open Office Math : protected spaces;showing (Writer) +Oracle Open Office Math : protecting +Oracle Open Office Math : protecting;contents +Oracle Open Office Math : protecting;recorded changes +Oracle Open Office Math : proxy settings +Oracle Open Office Math : push buttons +Oracle Open Office Math : push buttons;adding to documents +Oracle Open Office Math : push buttons;creating +Oracle Open Office Math : queries +Oracle Open Office Math : queries;copying (Base) +Oracle Open Office Math : queries;creating in design view (Base) +Oracle Open Office Math : queries;creating in SQL view +Oracle Open Office Math : queries;defining (Base) +Oracle Open Office Math : queries;deleting table links (Base) +Oracle Open Office Math : queries;editing in data source view +Oracle Open Office Math : queries;formulating filter conditions (Base) +Oracle Open Office Math : queries;joining tables (Base) +Oracle Open Office Math : queries;missing elements (Base) +Oracle Open Office Math : queries;overview (Base) +Oracle Open Office Math : queries;parameter queries (Base) +Oracle Open Office Math : queries;printing (Base) +Oracle Open Office Math : Query Wizard (Base) +Oracle Open Office Math : Quickstarter +Oracle Open Office Math : quotes +Oracle Open Office Math : quotes;custom +Oracle Open Office Math : quotient set +Oracle Open Office Math : radio button creation +Oracle Open Office Math : range of integral example +Oracle Open Office Math : rational numbers +Oracle Open Office Math : read-only documents +Oracle Open Office Math : read-only documents;cursor +Oracle Open Office Math : read-only documents;database tables on/off +Oracle Open Office Math : read-only documents;editing +Oracle Open Office Math : read-only documents;opening documents as +Oracle Open Office Math : read-only items in Data Navigator +Oracle Open Office Math : real numbers +Oracle Open Office Math : real part of complex numbers +Oracle Open Office Math : recognizing URLs automatically +Oracle Open Office Math : recording +Oracle Open Office Math : recording;changes +Oracle Open Office Math : recording;macros +Oracle Open Office Math : records +Oracle Open Office Math : records;inserting comments +Oracle Open Office Math : records;protecting +Oracle Open Office Math : records;saving +Oracle Open Office Math : records;searching in databases +Oracle Open Office Math : rectangle drawing +Oracle Open Office Math : rectangles with round corners +Oracle Open Office Math : recursions in spreadsheets +Oracle Open Office Math : redo command +Oracle Open Office Math : reduced printing +Oracle Open Office Math : reference lines +Oracle Open Office Math : reference tables +Oracle Open Office Math : reference tables;formulas +Oracle Open Office Math : references +Oracle Open Office Math : references;displaying in color (Calc) +Oracle Open Office Math : references;expanding (Calc) +Oracle Open Office Math : references;iterative (Calc) +Oracle Open Office Math : refreshing formula view +Oracle Open Office Math : register-true +Oracle Open Office Math : register-true;definition +Oracle Open Office Math : registering +Oracle Open Office Math : registering;address books +Oracle Open Office Math : registering;databases (Base) +Oracle Open Office Math : registering;Oracle Open Office +Oracle Open Office Math : regular expressions +Oracle Open Office Math : regular expressions;list of +Oracle Open Office Math : relational databases (Base) +Oracle Open Office Math : relations +Oracle Open Office Math : relations;creating and deleting (Base) +Oracle Open Office Math : relations;in Oracle Open Office Math +Oracle Open Office Math : relations;joining tables (Base) +Oracle Open Office Math : relations;properties (Base) +Oracle Open Office Math : relations operators +Oracle Open Office Math : relations operators;list of +Oracle Open Office Math : relative hyperlinks +Oracle Open Office Math : relative saving of URLs +Oracle Open Office Math : reloading +Oracle Open Office Math : reloading;documents +Oracle Open Office Math : reloading;HTML documents, automatically +Oracle Open Office Math : remarks, see also comments +Oracle Open Office Math : remote configurations +Oracle Open Office Math : remove noise filter +Oracle Open Office Math : removing +Oracle Open Office Math : removing;bullets and numbering +Oracle Open Office Math : removing;form filters +Oracle Open Office Math : removing, see also deleting +Oracle Open Office Math : repeating +Oracle Open Office Math : repeating;commands +Oracle Open Office Math : replacement options +Oracle Open Office Math : replacement table +Oracle Open Office Math : replacing +Oracle Open Office Math : replacing;AutoCorrect function +Oracle Open Office Math : replacing;dashes +Oracle Open Office Math : replacing;ordinal numbers +Oracle Open Office Math : replacing;tab stops (regular expressions) +Oracle Open Office Math : Report Builder +Oracle Open Office Math : reports +Oracle Open Office Math : reports;creating +Oracle Open Office Math : reports;error reports +Oracle Open Office Math : reports;opening and editing +Oracle Open Office Math : reports;templates +Oracle Open Office Math : resetting +Oracle Open Office Math : resetting;templates +Oracle Open Office Math : resizing +Oracle Open Office Math : resizing;fonts +Oracle Open Office Math : resizing;objects, by mouse +Oracle Open Office Math : resizing, see also scaling/zooming +Oracle Open Office Math : resolution when printing bitmaps +Oracle Open Office Math : restoring +Oracle Open Office Math : restoring;default formatting +Oracle Open Office Math : restoring;editing +Oracle Open Office Math : reversed circumflex attribute +Oracle Open Office Math : reversing printing order +Oracle Open Office Math : review function +Oracle Open Office Math : review function;accepting or rejecting changes +Oracle Open Office Math : review function;comparing documents +Oracle Open Office Math : review function;protecting records +Oracle Open Office Math : review function;recording changes example +Oracle Open Office Math : review function;tracking changes +Oracle Open Office Math : rich text control +Oracle Open Office Math : right alignment of paragraphs +Oracle Open Office Math : right angled relations +Oracle Open Office Math : right arrow symbol +Oracle Open Office Math : right joins (Base) +Oracle Open Office Math : right-justified alignment in Oracle Open Office Math +Oracle Open Office Math : right-to-left text +Oracle Open Office Math : roots +Oracle Open Office Math : rotating +Oracle Open Office Math : rotating;3D text +Oracle Open Office Math : round brackets +Oracle Open Office Math : round corners +Oracle Open Office Math : rounding precision (Calc) +Oracle Open Office Math : row headers +Oracle Open Office Math : row headers;displaying (Calc) +Oracle Open Office Math : row headers;highlighting (Calc) +Oracle Open Office Math : rulers +Oracle Open Office Math : rulers;default settings +Oracle Open Office Math : rulers;measurement units +Oracle Open Office Math : rulers;visible in presentations +Oracle Open Office Math : samples and templates +Oracle Open Office Math : saving +Oracle Open Office Math : saving;default file formats +Oracle Open Office Math : saving;dialog settings +Oracle Open Office Math : saving;documents +Oracle Open Office Math : saving;documents for mobile devices +Oracle Open Office Math : saving;documents in other formats +Oracle Open Office Math : saving;documents, automatically +Oracle Open Office Math : saving;in Microsoft Office file format +Oracle Open Office Math : saving;options +Oracle Open Office Math : saving;templates +Oracle Open Office Math : saving;to XML +Oracle Open Office Math : saving;VBA code in Microsoft Office documents +Oracle Open Office Math : saving;with password by default +Oracle Open Office Math : saving as command +Oracle Open Office Math : saving as command;precautions +Oracle Open Office Math : scalable braces +Oracle Open Office Math : scalable lines with ceiling +Oracle Open Office Math : scalable round brackets +Oracle Open Office Math : scaling +Oracle Open Office Math : scaling;font sizes in user interface +Oracle Open Office Math : scaling;fonts +Oracle Open Office Math : scaling;in Oracle Open Office Math +Oracle Open Office Math : scaling;objects +Oracle Open Office Math : scaling;pictures +Oracle Open Office Math : scaling;printing in Oracle Open Office Math +Oracle Open Office Math : scaling;when printing presentations +Oracle Open Office Math : scaling, see also zooming +Oracle Open Office Math : screen +Oracle Open Office Math : screen;full screen views +Oracle Open Office Math : screen;scaling +Oracle Open Office Math : screen magnifiers +Oracle Open Office Math : screen readers +Oracle Open Office Math : script organization +Oracle Open Office Math : scrollbars +Oracle Open Office Math : scrollbars;controls +Oracle Open Office Math : scrollbars;displaying (Calc) +Oracle Open Office Math : scrollbars;horizontal and vertical (Writer) +Oracle Open Office Math : search criteria for database functions in cells +Oracle Open Office Math : search engines +Oracle Open Office Math : search engines;definition +Oracle Open Office Math : search engines;selecting +Oracle Open Office Math : searching +Oracle Open Office Math : searching;all sheets +Oracle Open Office Math : searching;databases +Oracle Open Office Math : searching;form filters +Oracle Open Office Math : searching;Internet +Oracle Open Office Math : searching;tables and forms +Oracle Open Office Math : sections +Oracle Open Office Math : sections;backgrounds +Oracle Open Office Math : security +Oracle Open Office Math : security;digital signatures +Oracle Open Office Math : security;options for documents with macros +Oracle Open Office Math : security;protecting contents +Oracle Open Office Math : security;security levels for macros +Oracle Open Office Math : security;warning dialogs with macros +Oracle Open Office Math : selecting +Oracle Open Office Math : selecting;controls +Oracle Open Office Math : selecting;measurement units +Oracle Open Office Math : selecting;objects +Oracle Open Office Math : selecting;print areas +Oracle Open Office Math : selecting;several files +Oracle Open Office Math : selection clipboard +Oracle Open Office Math : selection frames +Oracle Open Office Math : selection modes in text +Oracle Open Office Math : selection options in formulas +Oracle Open Office Math : sending +Oracle Open Office Math : sending;AutoAbstract function in presentations +Oracle Open Office Math : sending;documents as e-mail +Oracle Open Office Math : sending;documents as faxes +Oracle Open Office Math : separator lines +Oracle Open Office Math : separator lines;defining +Oracle Open Office Math : separators +Oracle Open Office Math : separators;conditional +Oracle Open Office Math : Server Side ImageMap +Oracle Open Office Math : set operations in Oracle Open OfficeMath +Oracle Open Office Math : set operators +Oracle Open Office Math : set operators;list of +Oracle Open Office Math : sets of numbers +Oracle Open Office Math : settings +Oracle Open Office Math : settings;printers +Oracle Open Office Math : settings;program configuration +Oracle Open Office Math : settings;proxies +Oracle Open Office Math : settings;views +Oracle Open Office Math : SGML +Oracle Open Office Math : SGML;definition +Oracle Open Office Math : shadows +Oracle Open Office Math : shadows;areas +Oracle Open Office Math : shadows;borders +Oracle Open Office Math : shadows;characters +Oracle Open Office Math : shadows;characters, using context menu +Oracle Open Office Math : shapes +Oracle Open Office Math : sharing documents +Oracle Open Office Math : sharpening filter +Oracle Open Office Math : sheet tabs +Oracle Open Office Math : sheet tabs;displaying +Oracle Open Office Math : sheets +Oracle Open Office Math : sheets;searching all +Oracle Open Office Math : shortcut keys +Oracle Open Office Math : shortcut keys;assigning macros +Oracle Open Office Math : shortcut keys;general +Oracle Open Office Math : shortcut keys;in databases +Oracle Open Office Math : shortcut keys;in formulas +Oracle Open Office Math : shortcut keys;Oracle Open Office accessibility +Oracle Open Office Math : showing +Oracle Open Office Math : showing;changes +Oracle Open Office Math : showing;docked windows +Oracle Open Office Math : showing;drawings and controls (Writer) +Oracle Open Office Math : showing;live presentations on the Internet +Oracle Open Office Math : showing;toolbars +Oracle Open Office Math : signing documents with digital signatures +Oracle Open Office Math : similar to relations +Oracle Open Office Math : similarity search +Oracle Open Office Math : simple handles (Writer) +Oracle Open Office Math : simplified Chinese +Oracle Open Office Math : simplified Chinese;conversion to traditional Chinese +Oracle Open Office Math : sine function +Oracle Open Office Math : single brackets without group function +Oracle Open Office Math : single sign on options +Oracle Open Office Math : single-line spacing in text +Oracle Open Office Math : sizes +Oracle Open Office Math : sizes;draw objects +Oracle Open Office Math : sizes;of fonts in Oracle Open Office Math +Oracle Open Office Math : sizes;pictures +Oracle Open Office Math : slanting draw objects +Oracle Open Office Math : slash division sign +Oracle Open Office Math : small capitals +Oracle Open Office Math : small gaps +Oracle Open Office Math : small icons +Oracle Open Office Math : smart tag configuration +Oracle Open Office Math : smooth scrolling (Writer) +Oracle Open Office Math : smoothing filter +Oracle Open Office Math : snap grid defaults (Writer/Calc) +Oracle Open Office Math : snapping in presentations and drawings +Oracle Open Office Math : solarization filter +Oracle Open Office Math : sort lists +Oracle Open Office Math : sort lists;copying to in Calc +Oracle Open Office Math : sorting +Oracle Open Office Math : sorting;data in forms +Oracle Open Office Math : sorting;databases +Oracle Open Office Math : sound files +Oracle Open Office Math : spaces +Oracle Open Office Math : spaces;displaying (Writer) +Oracle Open Office Math : spaces;ignoring double +Oracle Open Office Math : spaces;inserting protected spaces +Oracle Open Office Math : spaces;showing protected spaces (Writer) +Oracle Open Office Math : spaces in formulas +Oracle Open Office Math : spacing +Oracle Open Office Math : spacing;between paragraphs in footnotes +Oracle Open Office Math : spacing;font effects +Oracle Open Office Math : spacing;formula elements +Oracle Open Office Math : spacing;lines and paragraphs +Oracle Open Office Math : spacing;tab stops in text documents +Oracle Open Office Math : spacing;tabs in presentations +Oracle Open Office Math : spadmin +Oracle Open Office Math : special characters +Oracle Open Office Math : speech bubbles +Oracle Open Office Math : speed of printing +Oracle Open Office Math : spellcheck +Oracle Open Office Math : spellcheck;activating for a language +Oracle Open Office Math : spellcheck;context menus +Oracle Open Office Math : spellcheck;default languages +Oracle Open Office Math : spellcheck;dialog +Oracle Open Office Math : spellcheck;dictionary of exceptions +Oracle Open Office Math : spellcheck;ignore list +Oracle Open Office Math : spin button creation +Oracle Open Office Math : spoolfiles with Xprinter +Oracle Open Office Math : spreadsheets +Oracle Open Office Math : spreadsheets;as databases (base) +Oracle Open Office Math : spreadsheets;copying areas to text documents +Oracle Open Office Math : spreadsheets;creating/opening +Oracle Open Office Math : spreadsheets;inserting charts +Oracle Open Office Math : spreadsheets;inserting database records +Oracle Open Office Math : spreadsheets;printing +Oracle Open Office Math : spreadsheets;saving +Oracle Open Office Math : spreadsheets;saving automatically +Oracle Open Office Math : spreadsheets;saving in other formats +Oracle Open Office Math : spreadsheets;sending as e-mail +Oracle Open Office Math : SQL +Oracle Open Office Math : SQL;definition +Oracle Open Office Math : SQL;DISTINCT parameter +Oracle Open Office Math : SQL;executing SQL commands +Oracle Open Office Math : SQL;executing SQL statements (Base) +Oracle Open Office Math : SQL;queries (Base) +Oracle Open Office Math : square brackets +Oracle Open Office Math : square drawings +Oracle Open Office Math : square roots +Oracle Open Office Math : stacks +Oracle Open Office Math : standard bar on/off +Oracle Open Office Math : standard filters +Oracle Open Office Math : standard filters;comparison operators +Oracle Open Office Math : standard filters;databases +Oracle Open Office Math : standard printer under UNIX +Oracle Open Office Math : start center +Oracle Open Office Math : start parameters +Oracle Open Office Math : status bar on/off +Oracle Open Office Math : stickers +Oracle Open Office Math : strikethrough +Oracle Open Office Math : strikethrough;characters +Oracle Open Office Math : strikethrough;font effects +Oracle Open Office Math : styles +Oracle Open Office Math : styles;'changed' message +Oracle Open Office Math : styles;copying between documents +Oracle Open Office Math : styles;keyboard shortcuts +Oracle Open Office Math : styles;organizing +Oracle Open Office Math : styles;printing styles used in a document +Oracle Open Office Math : styles;replacing automatically +Oracle Open Office Math : Styles and Formatting window +Oracle Open Office Math : Styles and Formatting window;docking +Oracle Open Office Math : subforms +Oracle Open Office Math : subforms;creating +Oracle Open Office Math : subforms;description +Oracle Open Office Math : submitting forms +Oracle Open Office Math : subscripts +Oracle Open Office Math : subset set operators +Oracle Open Office Math : subtraction signs +Oracle Open Office Math : suffixes in file formats +Oracle Open Office Math : sum range example +Oracle Open Office Math : summation +Oracle Open Office Math : superscripts +Oracle Open Office Math : superset set operators +Oracle Open Office Math : support on the Web +Oracle Open Office Math : symbols +Oracle Open Office Math : symbols;adding in Oracle Open Office Math +Oracle Open Office Math : symbols;entering in Oracle Open Office Math +Oracle Open Office Math : symbols;for complex numbers +Oracle Open Office Math : synchronizing +Oracle Open Office Math : synchronizing;labels and business cards +Oracle Open Office Math : synchronizing;Pocket PC and Oracle Open Office formats +Oracle Open Office Math : system address book registration +Oracle Open Office Math : tab stops +Oracle Open Office Math : tab stops;displaying (Writer) +Oracle Open Office Math : tab stops;inserting and editing +Oracle Open Office Math : tab stops;regular expressions +Oracle Open Office Math : tab stops;setting in sheets +Oracle Open Office Math : tab stops;settings +Oracle Open Office Math : tab stops;spacing in presentations +Oracle Open Office Math : tab stops;spacing in text documents +Oracle Open Office Math : table controls +Oracle Open Office Math : table controls;form functions +Oracle Open Office Math : table controls;keyboard-only edit mode +Oracle Open Office Math : table controls;properties +Oracle Open Office Math : table views of databases +Oracle Open Office Math : Table Wizard (Base) +Oracle Open Office Math : tables +Oracle Open Office Math : tables;inserting line breaks +Oracle Open Office Math : tables in databases +Oracle Open Office Math : tables in databases;access rights to (Base) +Oracle Open Office Math : tables in databases;adding to queries +Oracle Open Office Math : tables in databases;browsing and editing +Oracle Open Office Math : tables in databases;copying database tables (Base) +Oracle Open Office Math : tables in databases;creating +Oracle Open Office Math : tables in databases;creating in design view (manually) +Oracle Open Office Math : tables in databases;importing text formats (Base) +Oracle Open Office Math : tables in databases;joining for queries (Base) +Oracle Open Office Math : tables in databases;printing queries (Base) +Oracle Open Office Math : tables in databases;relations (Base) +Oracle Open Office Math : tables in databases;searching +Oracle Open Office Math : tables in spreadsheets +Oracle Open Office Math : tables in spreadsheets;copying data to other applications +Oracle Open Office Math : tables in spreadsheets;defining borders +Oracle Open Office Math : tables in spreadsheets;value highlighting +Oracle Open Office Math : tables in text +Oracle Open Office Math : tables in text;captions +Oracle Open Office Math : tables in text;creating automatically +Oracle Open Office Math : tables in text;default settings +Oracle Open Office Math : tables in text;defining borders +Oracle Open Office Math : tables in text;displaying +Oracle Open Office Math : tables in text;printing +Oracle Open Office Math : tabs +Oracle Open Office Math : tabs;displaying sheet tabs +Oracle Open Office Math : tags +Oracle Open Office Math : tags;definition +Oracle Open Office Math : tags;META tags +Oracle Open Office Math : tangent function +Oracle Open Office Math : templates +Oracle Open Office Math : templates;agendas +Oracle Open Office Math : templates;changing basic fonts +Oracle Open Office Math : templates;database reports +Oracle Open Office Math : templates;deleting +Oracle Open Office Math : templates;editing and saving +Oracle Open Office Math : templates;faxes +Oracle Open Office Math : templates;importing and exporting +Oracle Open Office Math : templates;letters +Oracle Open Office Math : templates;new documents from templates +Oracle Open Office Math : templates;opening documents with +Oracle Open Office Math : templates;organizing +Oracle Open Office Math : terminology +Oracle Open Office Math : terminology;general glossary +Oracle Open Office Math : terminology;Internet glossary +Oracle Open Office Math : testing XML filters +Oracle Open Office Math : text +Oracle Open Office Math : text;animating +Oracle Open Office Math : text;Asian layout +Oracle Open Office Math : text;bold +Oracle Open Office Math : text;coloring +Oracle Open Office Math : text;copying by drag and drop +Oracle Open Office Math : text;CTL languages +Oracle Open Office Math : text;drawing pictures +Oracle Open Office Math : text;font effects +Oracle Open Office Math : text;font sizes +Oracle Open Office Math : text;font styles +Oracle Open Office Math : text;fonts and formats +Oracle Open Office Math : text;Fontwork icons +Oracle Open Office Math : text;hyperlinks +Oracle Open Office Math : text;inserting special characters +Oracle Open Office Math : text;italics +Oracle Open Office Math : text;kerning +Oracle Open Office Math : text;language selection +Oracle Open Office Math : text;line spacing +Oracle Open Office Math : text;overwriting or inserting +Oracle Open Office Math : text;printing in black +Oracle Open Office Math : text;replacing with format +Oracle Open Office Math : text;selection modes +Oracle Open Office Math : text;shadowed +Oracle Open Office Math : text;text/draw objects +Oracle Open Office Math : text attributes +Oracle Open Office Math : text attributes;hyperlinks +Oracle Open Office Math : text attributes;undoing +Oracle Open Office Math : text boxes +Oracle Open Office Math : text boxes;form functions +Oracle Open Office Math : text boxes;positioning +Oracle Open Office Math : text breaks in cells +Oracle Open Office Math : text colors for better accessibility +Oracle Open Office Math : text databases (Base) +Oracle Open Office Math : text documents +Oracle Open Office Math : text documents;creating/opening +Oracle Open Office Math : text documents;importing/exporting +Oracle Open Office Math : text documents;inserting spreadsheet cells +Oracle Open Office Math : text documents;print settings +Oracle Open Office Math : text documents;printing +Oracle Open Office Math : text documents;saving +Oracle Open Office Math : text documents;saving automatically +Oracle Open Office Math : text documents;saving in other formats +Oracle Open Office Math : text documents;sending as e-mail +Oracle Open Office Math : text effects +Oracle Open Office Math : text flow +Oracle Open Office Math : text flow;in cells +Oracle Open Office Math : text formats +Oracle Open Office Math : text formats;databases +Oracle Open Office Math : text formats;pasting +Oracle Open Office Math : text input fields +Oracle Open Office Math : text layout for special languages +Oracle Open Office Math : text mode in Oracle Open Office Math +Oracle Open Office Math : text objects +Oracle Open Office Math : text objects;alignment +Oracle Open Office Math : text objects;draw functions +Oracle Open Office Math : text objects;fonts +Oracle Open Office Math : text objects;in presentations and drawings +Oracle Open Office Math : text overflow in spreadsheet cells +Oracle Open Office Math : text strings +Oracle Open Office Math : text strings;entering in Oracle Open Office Math +Oracle Open Office Math : text, see also text documents, paragraphs and characters +Oracle Open Office Math : TextArt, see Fontwork +Oracle Open Office Math : textures +Oracle Open Office Math : textures;inserting from Gallery +Oracle Open Office Math : textures;on chart bars +Oracle Open Office Math : Thai +Oracle Open Office Math : Thai;entering text +Oracle Open Office Math : Thai;language settings +Oracle Open Office Math : there exists symbol +Oracle Open Office Math : thesaurus +Oracle Open Office Math : thesaurus;activating for a language +Oracle Open Office Math : ticker text +Oracle Open Office Math : tilde as attribute +Oracle Open Office Math : time fields +Oracle Open Office Math : time fields;form functions +Oracle Open Office Math : times +Oracle Open Office Math : times;inserting when printing presentations +Oracle Open Office Math : times, formats +Oracle Open Office Math : tips +Oracle Open Office Math : tips;extended tips in Help +Oracle Open Office Math : title rows +Oracle Open Office Math : title rows;printing in Oracle Open Office Math +Oracle Open Office Math : titles +Oracle Open Office Math : titles;changing +Oracle Open Office Math : titles;editing in charts +Oracle Open Office Math : titles;font effects +Oracle Open Office Math : titles;formatting automatically +Oracle Open Office Math : titles;objects +Oracle Open Office Math : toolbars +Oracle Open Office Math : toolbars;adding buttons +Oracle Open Office Math : toolbars;docking/undocking +Oracle Open Office Math : toolbars;Form Navigation bar +Oracle Open Office Math : toolbars;viewing/closing +Oracle Open Office Math : tools bar +Oracle Open Office Math : tooltips +Oracle Open Office Math : tooltips;extended tips +Oracle Open Office Math : tooltips;help +Oracle Open Office Math : toward relation +Oracle Open Office Math : Track Changes, see review function +Oracle Open Office Math : traditional Chinese +Oracle Open Office Math : traditional Chinese;conversion to simplified Chinese +Oracle Open Office Math : transparency +Oracle Open Office Math : transparency;areas +Oracle Open Office Math : transparency;off for faster printing +Oracle Open Office Math : transparency;saving +Oracle Open Office Math : transparent character as attribute +Oracle Open Office Math : tree view of Help +Oracle Open Office Math : triangle drawing +Oracle Open Office Math : trigonometrical functions +Oracle Open Office Math : triple dot attribute +Oracle Open Office Math : typefaces +Oracle Open Office Math : typefaces;formats +Oracle Open Office Math : typography +Oracle Open Office Math : typography;Asian +Oracle Open Office Math : unary operators +Oracle Open Office Math : unary operators;list of +Oracle Open Office Math : unary operators +Oracle Open Office Math : underline attribute +Oracle Open Office Math : underlining +Oracle Open Office Math : underlining;AutoFormat function +Oracle Open Office Math : underlining;characters +Oracle Open Office Math : underlining;text +Oracle Open Office Math : undocking windows +Oracle Open Office Math : undoing +Oracle Open Office Math : undoing;direct formatting +Oracle Open Office Math : undoing;editing +Oracle Open Office Math : undoing;number of steps +Oracle Open Office Math : unequal sign +Oracle Open Office Math : ungrouping groups +Oracle Open Office Math : union of sets +Oracle Open Office Math : units +Oracle Open Office Math : units;converting +Oracle Open Office Math : units;measurement units +Oracle Open Office Math : universal quantifier symbol +Oracle Open Office Math : UNO components +Oracle Open Office Math : UNO components;Extension Manager +Oracle Open Office Math : UNO components;integrating new +Oracle Open Office Math : up arrow symbol +Oracle Open Office Math : update options +Oracle Open Office Math : updates +Oracle Open Office Math : updates;checking automatically +Oracle Open Office Math : updates;checking manually +Oracle Open Office Math : updating +Oracle Open Office Math : updating;fields and charts, automatically (Writer) +Oracle Open Office Math : updating;links in text documents +Oracle Open Office Math : updating;links, on opening +Oracle Open Office Math : updating;templates +Oracle Open Office Math : upper limits +Oracle Open Office Math : URL +Oracle Open Office Math : URL;changing hyperlink URLs +Oracle Open Office Math : URL;definition +Oracle Open Office Math : URL;in pictures +Oracle Open Office Math : URL;saving absolute/relative paths +Oracle Open Office Math : URL;turning off URL recognition +Oracle Open Office Math : user data +Oracle Open Office Math : user data;input +Oracle Open Office Math : user data;removing when saving +Oracle Open Office Math : user feedback +Oracle Open Office Math : user feedback;automatically +Oracle Open Office Math : user-defined dictionaries +Oracle Open Office Math : user-defined dictionaries;creating +Oracle Open Office Math : user-defined dictionaries;dictionary of exceptions +Oracle Open Office Math : user-defined dictionaries;editing +Oracle Open Office Math : user-defined operators +Oracle Open Office Math : user-defined operators;general +Oracle Open Office Math : user-defined operators;unary and binary +Oracle Open Office Math : user-defined styles +Oracle Open Office Math : user-defined styles;automatically replacing +Oracle Open Office Math : UTF-8/UCS2 support +Oracle Open Office Math : values +Oracle Open Office Math : values;absolute +Oracle Open Office Math : values;rounded as shown (Calc) +Oracle Open Office Math : variables +Oracle Open Office Math : variables;for paths +Oracle Open Office Math : variables;with right exponents +Oracle Open Office Math : VBA code +Oracle Open Office Math : VBA code;loading/saving documents with VBA code +Oracle Open Office Math : vector arrows as attributes +Oracle Open Office Math : version management +Oracle Open Office Math : version numbers of documents +Oracle Open Office Math : versions +Oracle Open Office Math : versions;comparing documents +Oracle Open Office Math : versions;file saving as, restriction +Oracle Open Office Math : versions;merging document versions +Oracle Open Office Math : versions;of a document +Oracle Open Office Math : versions;Oracle Open Office +Oracle Open Office Math : vertical arrangement of elements +Oracle Open Office Math : vertical bars +Oracle Open Office Math : vertical callouts +Oracle Open Office Math : vertical dots symbol +Oracle Open Office Math : vertical elements +Oracle Open Office Math : vertical scrollbars (Writer) +Oracle Open Office Math : vertical text boxes +Oracle Open Office Math : videos +Oracle Open Office Math : viewing +Oracle Open Office Math : viewing;databases +Oracle Open Office Math : viewing;file properties +Oracle Open Office Math : viewing;Oracle Open Office documents in Internet Explorer +Oracle Open Office Math : viewing;toolbars +Oracle Open Office Math : views +Oracle Open Office Math : views;creating database views (Base) +Oracle Open Office Math : views;defaults +Oracle Open Office Math : views;full screen +Oracle Open Office Math : views;icons +Oracle Open Office Math : views;maximum size +Oracle Open Office Math : views;scaling +Oracle Open Office Math : views;zooming out Oracle Open Office Math +Oracle Open Office Math : Visual Basic for Applications +Oracle Open Office Math : Visual Basic for Applications;loading/saving documents with VBA code +Oracle Open Office Math : watermarks +Oracle Open Office Math : web documents +Oracle Open Office Math : web documents;XForms +Oracle Open Office Math : Web support +Oracle Open Office Math : WebCast export +Oracle Open Office Math : WebDAV over HTTPS +Oracle Open Office Math : weierstrass p symbol +Oracle Open Office Math : whole numbers +Oracle Open Office Math : wide circumflex attribute +Oracle Open Office Math : wide tilde attribute +Oracle Open Office Math : wide vector arrow attribute +Oracle Open Office Math : widowed brackets +Oracle Open Office Math : windows +Oracle Open Office Math : windows;docking +Oracle Open Office Math : windows;docking definition +Oracle Open Office Math : windows;hiding/showing/docking +Oracle Open Office Math : windows;new +Oracle Open Office Math : wizards +Oracle Open Office Math : wizards;agendas +Oracle Open Office Math : wizards;database queries +Oracle Open Office Math : wizards;database tables (Base) +Oracle Open Office Math : wizards;databases (Base) +Oracle Open Office Math : wizards;document converter +Oracle Open Office Math : wizards;Euro Converter +Oracle Open Office Math : wizards;faxes +Oracle Open Office Math : wizards;forms +Oracle Open Office Math : wizards;letters +Oracle Open Office Math : wizards;macros (Base) +Oracle Open Office Math : wizards;overview +Oracle Open Office Math : wizards;presentations +Oracle Open Office Math : wizards;reports +Oracle Open Office Math : Word documents +Oracle Open Office Math : Word documents;compatibility +Oracle Open Office Math : Word documents;saving as +Oracle Open Office Math : WordArt, see Fontwork +Oracle Open Office Math : words +Oracle Open Office Math : words;automatically replacing +Oracle Open Office Math : words;wrapping in cells +Oracle Open Office Math : words;wrapping in CTL +Oracle Open Office Math : working directory change +Oracle Open Office Math : wrapping text +Oracle Open Office Math : wrapping text;in cells +Oracle Open Office Math : wrapping text;in formulas +Oracle Open Office Math : write protection on/off +Oracle Open Office Math : writing aids options +Oracle Open Office Math : WYSIWYG in fonts lists +Oracle Open Office Math : XForms +Oracle Open Office Math : XForms;adding/editing/deleting/organizing namespaces +Oracle Open Office Math : XForms;conditions +Oracle Open Office Math : XForms;opening/editing +Oracle Open Office Math : XML converters +Oracle Open Office Math : XML file formats +Oracle Open Office Math : XML filters +Oracle Open Office Math : XML filters;creating/testing +Oracle Open Office Math : XML filters;saving as package/installing/deleting +Oracle Open Office Math : XML filters;settings +Oracle Open Office Math : XML Forms, see XForms +Oracle Open Office Math : XSLT filters, see also XML filters +Oracle Open Office Math : years +Oracle Open Office Math : years;2-digit options +Oracle Open Office Math : zero values +Oracle Open Office Math : zero values;displaying (Calc) +Oracle Open Office Math : zooming +Oracle Open Office Math : zooming;page views +Oracle Open Office Math : zooming;pictures +Oracle Open Office Math : zooming;status bar +Oracle Open Office Math : zooming in on formula display +Oracle Open Office Math : zooming out on formula display +Oracle Open Office Writer : 3D charts +Oracle Open Office Writer : 3D text creation +Oracle Open Office Writer : abbreviation replacement +Oracle Open Office Writer : abbreviations +Oracle Open Office Writer : absolute hyperlinks +Oracle Open Office Writer : absolute saving of URLs +Oracle Open Office Writer : accents +Oracle Open Office Writer : Access databases (base) +Oracle Open Office Writer : access rights for database tables (Base) +Oracle Open Office Writer : accessibility +Oracle Open Office Writer : accessibility;general shortcuts +Oracle Open Office Writer : accessibility;options +Oracle Open Office Writer : accessibility;Oracle Open Office assistive technology +Oracle Open Office Writer : accessibility;Oracle Open Office features +Oracle Open Office Writer : accessibility;Oracle Open Office Writer +Oracle Open Office Writer : activating +Oracle Open Office Writer : activating;context menus +Oracle Open Office Writer : activating;Error Report Tool +Oracle Open Office Writer : activating;extended help tips +Oracle Open Office Writer : activating;plug-ins +Oracle Open Office Writer : ActiveX control +Oracle Open Office Writer : Adabas D databases (base) +Oracle Open Office Writer : add-ons, see UNO components +Oracle Open Office Writer : additional selection mode +Oracle Open Office Writer : address books +Oracle Open Office Writer : address books;exchanging +Oracle Open Office Writer : address books;LDAP server (Base) +Oracle Open Office Writer : address books;registering +Oracle Open Office Writer : address labels from databases +Oracle Open Office Writer : adjusting page margins and cell widths +Oracle Open Office Writer : ADO databases (Base) +Oracle Open Office Writer : Agenda Wizard +Oracle Open Office Writer : aging filter +Oracle Open Office Writer : aligning +Oracle Open Office Writer : aligning;2D charts +Oracle Open Office Writer : aligning;cells +Oracle Open Office Writer : aligning;objects +Oracle Open Office Writer : aligning;paragraphs +Oracle Open Office Writer : aligning;tables in text +Oracle Open Office Writer : aligning;text objects +Oracle Open Office Writer : aligning;titles in charts +Oracle Open Office Writer : alphabetical indexes +Oracle Open Office Writer : alternative fonts +Oracle Open Office Writer : ampersand symbol, see also operators +Oracle Open Office Writer : anchors +Oracle Open Office Writer : anchors;changing +Oracle Open Office Writer : anchors;displaying (Calc) +Oracle Open Office Writer : anchors;options +Oracle Open Office Writer : anchors;types/positions for draw objects +Oracle Open Office Writer : animations +Oracle Open Office Writer : animations;accessibility options +Oracle Open Office Writer : animations;text +Oracle Open Office Writer : appearance options +Oracle Open Office Writer : Arabic +Oracle Open Office Writer : Arabic;entering text +Oracle Open Office Writer : Arabic;language settings +Oracle Open Office Writer : area charts +Oracle Open Office Writer : areas +Oracle Open Office Writer : areas;bitmap patterns +Oracle Open Office Writer : areas;hatched/dotted +Oracle Open Office Writer : areas;shadows +Oracle Open Office Writer : areas;slanting +Oracle Open Office Writer : areas;styles +Oracle Open Office Writer : areas;transparency +Oracle Open Office Writer : arguments in command line +Oracle Open Office Writer : arithmetical operators in formulas +Oracle Open Office Writer : arranging +Oracle Open Office Writer : arranging;headings +Oracle Open Office Writer : arranging;objects +Oracle Open Office Writer : arrows +Oracle Open Office Writer : arrows;defining arrow heads +Oracle Open Office Writer : arrows;defining arrow lines +Oracle Open Office Writer : arrows;drawing in text +Oracle Open Office Writer : ASCII +Oracle Open Office Writer : ASCII;definition +Oracle Open Office Writer : Asian languages +Oracle Open Office Writer : Asian languages;enabling +Oracle Open Office Writer : Asian languages;search options +Oracle Open Office Writer : Asian languages;sorting paragraphs/table rows +Oracle Open Office Writer : Asian Phonetic Guide +Oracle Open Office Writer : Asian typography +Oracle Open Office Writer : aspect ratio +Oracle Open Office Writer : aspect ratio;resizing objects +Oracle Open Office Writer : assigning scripts +Oracle Open Office Writer : assistive technology in Oracle Open Office +Oracle Open Office Writer : attaching toolbars +Oracle Open Office Writer : attachments in e-mails +Oracle Open Office Writer : audio +Oracle Open Office Writer : auto reloading HTML documents +Oracle Open Office Writer : AutoAbstract function for sending text to presentations +Oracle Open Office Writer : AutoCaption function in Oracle Open Office Writer +Oracle Open Office Writer : AutoComplete function in text and list boxes +Oracle Open Office Writer : AutoCorrect function +Oracle Open Office Writer : AutoCorrect function;adding exceptions +Oracle Open Office Writer : AutoCorrect function;context menu +Oracle Open Office Writer : AutoCorrect function;headings +Oracle Open Office Writer : AutoCorrect function;options +Oracle Open Office Writer : AutoCorrect function;pictures and frames +Oracle Open Office Writer : AutoCorrect function;quotes +Oracle Open Office Writer : AutoCorrect function;replacement table +Oracle Open Office Writer : AutoCorrect function;smart tags +Oracle Open Office Writer : AutoCorrect function;switching on and off +Oracle Open Office Writer : AutoCorrect function;text documents +Oracle Open Office Writer : AutoCorrect function;turning off +Oracle Open Office Writer : AutoCorrect function;URL recognition +Oracle Open Office Writer : AutoCorrect function;word completion +Oracle Open Office Writer : AutoFormat function for tables +Oracle Open Office Writer : automatic bullets/numbers +Oracle Open Office Writer : automatic bullets/numbers;AutoCorrect function +Oracle Open Office Writer : automatic captions (Writer) +Oracle Open Office Writer : automatic changes on/off +Oracle Open Office Writer : automatic control focus +Oracle Open Office Writer : automatic heading formatting +Oracle Open Office Writer : automatic hyperlink formatting +Oracle Open Office Writer : automatic hyphenation in text +Oracle Open Office Writer : automatic line breaks +Oracle Open Office Writer : automatic lines/borders in text +Oracle Open Office Writer : automatic numbering +Oracle Open Office Writer : automatic numbering;of objects +Oracle Open Office Writer : automatic saving +Oracle Open Office Writer : automatic spellcheck +Oracle Open Office Writer : automatic word completion +Oracle Open Office Writer : AutoPilots, see wizards +Oracle Open Office Writer : AutoText +Oracle Open Office Writer : AutoValue (Base) +Oracle Open Office Writer : averages in charts +Oracle Open Office Writer : axes +Oracle Open Office Writer : axes;better scaling +Oracle Open Office Writer : axes;formatting +Oracle Open Office Writer : axes;formatting grids +Oracle Open Office Writer : axes;inserting grids +Oracle Open Office Writer : axes;interval marks +Oracle Open Office Writer : axes;showing axes in charts +Oracle Open Office Writer : axes in charts +Oracle Open Office Writer : backgrounds +Oracle Open Office Writer : backgrounds;defining colors/pictures +Oracle Open Office Writer : backgrounds;different pages +Oracle Open Office Writer : backgrounds;frames/sections/indexes +Oracle Open Office Writer : backgrounds;inserting from Gallery +Oracle Open Office Writer : backgrounds;printing +Oracle Open Office Writer : backgrounds;selecting +Oracle Open Office Writer : backgrounds;text objects +Oracle Open Office Writer : backing window +Oracle Open Office Writer : backups +Oracle Open Office Writer : backups;automatic +Oracle Open Office Writer : backups;documents +Oracle Open Office Writer : bar charts +Oracle Open Office Writer : Basic +Oracle Open Office Writer : Basic;fonts for source display +Oracle Open Office Writer : Basic;programming +Oracle Open Office Writer : Basic;recording macros +Oracle Open Office Writer : basic fonts +Oracle Open Office Writer : behavior of rows/columns +Oracle Open Office Writer : Bézier curves +Oracle Open Office Writer : Bézier curves;control points in presentations +Oracle Open Office Writer : bi-directional writing +Oracle Open Office Writer : bibliographies +Oracle Open Office Writer : binding space +Oracle Open Office Writer : bitmaps +Oracle Open Office Writer : bitmaps;inserting and editing +Oracle Open Office Writer : bitmaps;off for faster printing +Oracle Open Office Writer : bitmaps;patterns +Oracle Open Office Writer : black and white printing +Oracle Open Office Writer : black printing in Calc +Oracle Open Office Writer : blank pages with alternating page styles +Oracle Open Office Writer : block protect, see also widows or orphans +Oracle Open Office Writer : block selection mode +Oracle Open Office Writer : blocks of text +Oracle Open Office Writer : bold +Oracle Open Office Writer : bold;AutoFormat function +Oracle Open Office Writer : bold;formatting while typing +Oracle Open Office Writer : bold;text +Oracle Open Office Writer : book previews +Oracle Open Office Writer : book view +Oracle Open Office Writer : booklet printing +Oracle Open Office Writer : bookmarks +Oracle Open Office Writer : bookmarks;Help +Oracle Open Office Writer : bookmarks;inserting +Oracle Open Office Writer : bookmarks;positioning cursor +Oracle Open Office Writer : borders +Oracle Open Office Writer : borders;arranging +Oracle Open Office Writer : borders;automatic drawing on/off +Oracle Open Office Writer : borders;cells on screen (Calc) +Oracle Open Office Writer : borders;for footnotes/endnotes +Oracle Open Office Writer : borders;for headers/footers +Oracle Open Office Writer : borders;for objects +Oracle Open Office Writer : borders;for pages +Oracle Open Office Writer : borders;for paragraphs +Oracle Open Office Writer : borders;for tables +Oracle Open Office Writer : borders;for text tables +Oracle Open Office Writer : borders;shadows +Oracle Open Office Writer : borders;table boundaries (Writer) +Oracle Open Office Writer : borders, see also frames +Oracle Open Office Writer : bound fields +Oracle Open Office Writer : bound fields;controls +Oracle Open Office Writer : boundaries of tables (Writer) +Oracle Open Office Writer : break display (Writer) +Oracle Open Office Writer : brochures +Oracle Open Office Writer : brochures;printing individual +Oracle Open Office Writer : brochures;printing several +Oracle Open Office Writer : brush for copying styles +Oracle Open Office Writer : bubble charts +Oracle Open Office Writer : build numbers of Oracle Open Office +Oracle Open Office Writer : bullet lists +Oracle Open Office Writer : bullet lists;changing levels +Oracle Open Office Writer : bullet lists;creating while typing +Oracle Open Office Writer : bullet lists;formatting options +Oracle Open Office Writer : bullet lists;interrupting +Oracle Open Office Writer : bullet lists;turning on and off +Oracle Open Office Writer : bullets +Oracle Open Office Writer : bullets;adding and editing +Oracle Open Office Writer : bullets;paragraphs +Oracle Open Office Writer : bullets;replacing +Oracle Open Office Writer : bullets;turning off +Oracle Open Office Writer : bullets;using automatically +Oracle Open Office Writer : business cards +Oracle Open Office Writer : business cards;creating and synchronizing +Oracle Open Office Writer : business cards;using templates +Oracle Open Office Writer : button bars, see toolbars +Oracle Open Office Writer : buttons +Oracle Open Office Writer : buttons;adding push buttons +Oracle Open Office Writer : buttons;big/small +Oracle Open Office Writer : buttons;editing hyperlink buttons +Oracle Open Office Writer : buttons;form functions +Oracle Open Office Writer : buttons;toolbars +Oracle Open Office Writer : cache for graphics +Oracle Open Office Writer : calculating +Oracle Open Office Writer : calculating;across multiple text tables +Oracle Open Office Writer : calculating;formulas/mean values +Oracle Open Office Writer : calculating;in text +Oracle Open Office Writer : calculating;in text tables +Oracle Open Office Writer : calculating;iterative references (Calc) +Oracle Open Office Writer : calculating;regression curves +Oracle Open Office Writer : calculating;sums in text tables +Oracle Open Office Writer : callouts +Oracle Open Office Writer : callouts;drawings +Oracle Open Office Writer : capital letters +Oracle Open Office Writer : capital letters;AutoCorrect function +Oracle Open Office Writer : capital letters;avoiding after specific abbreviations +Oracle Open Office Writer : capital letters;changing to small letters +Oracle Open Office Writer : capital letters;changing to small letters after periods +Oracle Open Office Writer : capital letters;font effects +Oracle Open Office Writer : capital letters;starting paragraphs +Oracle Open Office Writer : captions +Oracle Open Office Writer : captions;adding chapter numbers +Oracle Open Office Writer : captions;automatic captions (Writer) +Oracle Open Office Writer : captions;inserting and editing +Oracle Open Office Writer : captions;tables/pictures/frames/OLE objects (Writer) +Oracle Open Office Writer : captions, see also labels/callouts +Oracle Open Office Writer : cascading update (Base) +Oracle Open Office Writer : case sensitivity +Oracle Open Office Writer : case sensitivity;comparing cell contents (Calc) +Oracle Open Office Writer : case sensitivity;searching +Oracle Open Office Writer : cell merges +Oracle Open Office Writer : cells +Oracle Open Office Writer : cells;adapting the width by keyboard +Oracle Open Office Writer : cells;aligning +Oracle Open Office Writer : cells;backgrounds +Oracle Open Office Writer : cells;borders in text tables +Oracle Open Office Writer : cells;calculating sums +Oracle Open Office Writer : cells;coloring (Calc) +Oracle Open Office Writer : cells;cursor positions after input (Calc) +Oracle Open Office Writer : cells;enlarging and reducing in text tables +Oracle Open Office Writer : cells;formatting without effect (Calc) +Oracle Open Office Writer : cells;inserting from spreadsheets +Oracle Open Office Writer : cells;line breaks +Oracle Open Office Writer : cells;linked to controls +Oracle Open Office Writer : cells;merging/splitting +Oracle Open Office Writer : cells;number of +Oracle Open Office Writer : cells;pasting +Oracle Open Office Writer : cells;protecting/unprotecting +Oracle Open Office Writer : cells;resetting formats +Oracle Open Office Writer : cells;showing grid lines (Calc) +Oracle Open Office Writer : centered text +Oracle Open Office Writer : centering +Oracle Open Office Writer : centering;images on HTML pages +Oracle Open Office Writer : centering;text frames on pages +Oracle Open Office Writer : centimeters +Oracle Open Office Writer : central documents +Oracle Open Office Writer : certificates +Oracle Open Office Writer : changes +Oracle Open Office Writer : changes;accepting or rejecting +Oracle Open Office Writer : changes;automatic +Oracle Open Office Writer : changes;comparing to original +Oracle Open Office Writer : changes;protecting +Oracle Open Office Writer : changes;recording +Oracle Open Office Writer : changes;review function +Oracle Open Office Writer : changes;showing +Oracle Open Office Writer : changing +Oracle Open Office Writer : changing;bulleting symbols +Oracle Open Office Writer : changing;cases of text +Oracle Open Office Writer : changing;document titles +Oracle Open Office Writer : changing;field shadings +Oracle Open Office Writer : changing;fields, into text +Oracle Open Office Writer : changing;file associations in Setup program +Oracle Open Office Writer : changing;icon sizes +Oracle Open Office Writer : changing;indents +Oracle Open Office Writer : changing;links +Oracle Open Office Writer : changing;outline levels +Oracle Open Office Writer : changing;page backgrounds +Oracle Open Office Writer : changing;starting numbers in lists +Oracle Open Office Writer : changing;work directory +Oracle Open Office Writer : changing, see also editing and replacing +Oracle Open Office Writer : chapter names in headers +Oracle Open Office Writer : chapter numbering +Oracle Open Office Writer : chapter numbers in captions +Oracle Open Office Writer : character styles +Oracle Open Office Writer : character styles;language selection +Oracle Open Office Writer : character styles;style categories +Oracle Open Office Writer : characters +Oracle Open Office Writer : characters;alternative fonts +Oracle Open Office Writer : characters;Asian layout +Oracle Open Office Writer : characters;bold +Oracle Open Office Writer : characters;coloring +Oracle Open Office Writer : characters;counting +Oracle Open Office Writer : characters;displaying only on screen (Writer) +Oracle Open Office Writer : characters;enabling CTL and Asian characters +Oracle Open Office Writer : characters;finding all +Oracle Open Office Writer : characters;font effects +Oracle Open Office Writer : characters;fonts and formats +Oracle Open Office Writer : characters;hyperlinks +Oracle Open Office Writer : characters;italics +Oracle Open Office Writer : characters;language selection +Oracle Open Office Writer : characters;shadowed +Oracle Open Office Writer : characters;spacing +Oracle Open Office Writer : characters;special +Oracle Open Office Writer : characters;subscript and superscript +Oracle Open Office Writer : characters;underlining +Oracle Open Office Writer : characters;uppercase or lowercase +Oracle Open Office Writer : charcoal sketches filter +Oracle Open Office Writer : chart legends +Oracle Open Office Writer : chart legends;hiding +Oracle Open Office Writer : chart legends;showing icons with labels +Oracle Open Office Writer : chart types +Oracle Open Office Writer : chart types;area +Oracle Open Office Writer : chart types;bubble +Oracle Open Office Writer : chart types;column and bar +Oracle Open Office Writer : chart types;column and line +Oracle Open Office Writer : chart types;line +Oracle Open Office Writer : chart types;net +Oracle Open Office Writer : chart types;pie/donut +Oracle Open Office Writer : chart types;stock +Oracle Open Office Writer : chart types;XY (scatter) +Oracle Open Office Writer : charts +Oracle Open Office Writer : charts;3D views +Oracle Open Office Writer : charts;aligning +Oracle Open Office Writer : charts;arranging within stacks +Oracle Open Office Writer : charts;bars with textures +Oracle Open Office Writer : charts;borders +Oracle Open Office Writer : charts;choosing chart types +Oracle Open Office Writer : charts;colors +Oracle Open Office Writer : charts;copying from Calc into Writer +Oracle Open Office Writer : charts;copying with link to source cell range +Oracle Open Office Writer : charts;data labels +Oracle Open Office Writer : charts;displaying (Calc) +Oracle Open Office Writer : charts;editing axes +Oracle Open Office Writer : charts;editing data +Oracle Open Office Writer : charts;editing legends +Oracle Open Office Writer : charts;editing titles +Oracle Open Office Writer : charts;formatting areas +Oracle Open Office Writer : charts;formatting floors +Oracle Open Office Writer : charts;formatting walls +Oracle Open Office Writer : charts;inserting +Oracle Open Office Writer : charts;labeling +Oracle Open Office Writer : charts;overview +Oracle Open Office Writer : charts;positioning axes +Oracle Open Office Writer : charts;properties +Oracle Open Office Writer : charts;reorganizing +Oracle Open Office Writer : charts;scaling axes +Oracle Open Office Writer : charts;scaling text +Oracle Open Office Writer : charts;shortcuts +Oracle Open Office Writer : charts;showing axes +Oracle Open Office Writer : charts;updating automatically (Writer) +Oracle Open Office Writer : check box creation +Oracle Open Office Writer : checking spelling +Oracle Open Office Writer : checking spelling;all languages +Oracle Open Office Writer : checking spelling;manually +Oracle Open Office Writer : checking spelling;while typing +Oracle Open Office Writer : Chinese writing systems +Oracle Open Office Writer : choosing printers +Oracle Open Office Writer : circle drawings +Oracle Open Office Writer : Client Side ImageMap +Oracle Open Office Writer : clipboard +Oracle Open Office Writer : clipboard;calculating in text +Oracle Open Office Writer : clipboard;cutting +Oracle Open Office Writer : clipboard;pasting +Oracle Open Office Writer : clipboard;pasting formatted/unformatted text +Oracle Open Office Writer : clipboard;selection clipboard +Oracle Open Office Writer : clipboard;Unix +Oracle Open Office Writer : Clippy, see Help Agent +Oracle Open Office Writer : closing +Oracle Open Office Writer : closing;documents +Oracle Open Office Writer : closing;toolbars +Oracle Open Office Writer : collaboration +Oracle Open Office Writer : color bar +Oracle Open Office Writer : colors +Oracle Open Office Writer : colors;adding +Oracle Open Office Writer : colors;appearance +Oracle Open Office Writer : colors;backgrounds +Oracle Open Office Writer : colors;charts +Oracle Open Office Writer : colors;fonts +Oracle Open Office Writer : colors;grid lines and cells (Calc) +Oracle Open Office Writer : colors;ignored text color +Oracle Open Office Writer : colors;models +Oracle Open Office Writer : colors;not printing +Oracle Open Office Writer : colors;printing in grayscale +Oracle Open Office Writer : colors;restriction (Calc) +Oracle Open Office Writer : colors;selection +Oracle Open Office Writer : column and line charts +Oracle Open Office Writer : column charts +Oracle Open Office Writer : column headers +Oracle Open Office Writer : column headers;displaying (Calc) +Oracle Open Office Writer : column headers;highlighting (Calc) +Oracle Open Office Writer : columns +Oracle Open Office Writer : columns;breaks in text tables +Oracle Open Office Writer : columns;inserting in tables +Oracle Open Office Writer : columns;inserting/deleting in tables by keyboard +Oracle Open Office Writer : columns;on text pages +Oracle Open Office Writer : columns;selecting +Oracle Open Office Writer : columns;setting with the mouse +Oracle Open Office Writer : combination charts +Oracle Open Office Writer : combo box creation +Oracle Open Office Writer : command button creation +Oracle Open Office Writer : command buttons, see push buttons +Oracle Open Office Writer : command line parameters +Oracle Open Office Writer : commands +Oracle Open Office Writer : commands;repeating +Oracle Open Office Writer : commands;SQL +Oracle Open Office Writer : comments +Oracle Open Office Writer : comments;inserting/editing/deleting/printing +Oracle Open Office Writer : comments;on changes +Oracle Open Office Writer : comments;printing in text +Oracle Open Office Writer : common terms +Oracle Open Office Writer : common terms;Chinese dictionary +Oracle Open Office Writer : common terms;glossaries +Oracle Open Office Writer : common terms;Internet glossary +Oracle Open Office Writer : comparisons +Oracle Open Office Writer : comparisons;document versions +Oracle Open Office Writer : comparisons;operators in standard filter dialog +Oracle Open Office Writer : compatibility settings for MS Word import +Oracle Open Office Writer : complete screen view +Oracle Open Office Writer : completion of words +Oracle Open Office Writer : complex text layout +Oracle Open Office Writer : complex text layout;definition +Oracle Open Office Writer : complex text layout;enabling +Oracle Open Office Writer : complex text layout, see CTL +Oracle Open Office Writer : compose key to insert special characters +Oracle Open Office Writer : concatenation, see ampersand symbol +Oracle Open Office Writer : concordance files +Oracle Open Office Writer : concordance files;definition +Oracle Open Office Writer : concordance files;indexes +Oracle Open Office Writer : conditional separators +Oracle Open Office Writer : conditional styles +Oracle Open Office Writer : conditional text +Oracle Open Office Writer : conditional text;page counts +Oracle Open Office Writer : conditional text;setting up +Oracle Open Office Writer : conditions +Oracle Open Office Writer : conditions;in fields and sections +Oracle Open Office Writer : conditions;in number formats +Oracle Open Office Writer : conditions;items in Data Navigator +Oracle Open Office Writer : conditions;user data fields +Oracle Open Office Writer : Configuration Manager +Oracle Open Office Writer : configuring +Oracle Open Office Writer : configuring;fax icon +Oracle Open Office Writer : configuring;Oracle Open Office +Oracle Open Office Writer : configuring;toolbars +Oracle Open Office Writer : connections to data sources (Base) +Oracle Open Office Writer : contents protection +Oracle Open Office Writer : context menus +Oracle Open Office Writer : continuation pages +Oracle Open Office Writer : contour editor +Oracle Open Office Writer : contour wrap +Oracle Open Office Writer : control point display in presentations +Oracle Open Office Writer : controls +Oracle Open Office Writer : controls;activating in forms +Oracle Open Office Writer : controls;adding to documents +Oracle Open Office Writer : controls;arranging in forms +Oracle Open Office Writer : controls;arranging within stacks +Oracle Open Office Writer : controls;assigning data sources +Oracle Open Office Writer : controls;assigning macros (Basic) +Oracle Open Office Writer : controls;bound fields/list contents/linked cells +Oracle Open Office Writer : controls;events +Oracle Open Office Writer : controls;focus +Oracle Open Office Writer : controls;formatted fields +Oracle Open Office Writer : controls;grouping +Oracle Open Office Writer : controls;hidden +Oracle Open Office Writer : controls;inserting +Oracle Open Office Writer : controls;multi-line titles +Oracle Open Office Writer : controls;positions and sizes +Oracle Open Office Writer : controls;printing +Oracle Open Office Writer : controls;properties of form controls +Oracle Open Office Writer : controls;properties of table controls +Oracle Open Office Writer : controls;reference by SQL +Oracle Open Office Writer : controls;rich text control +Oracle Open Office Writer : controls;select mode +Oracle Open Office Writer : controls;showing (Writer) +Oracle Open Office Writer : converters +Oracle Open Office Writer : converters;document converter +Oracle Open Office Writer : converters;Euro converter +Oracle Open Office Writer : converters;PostScript, UNIX +Oracle Open Office Writer : converters;XML +Oracle Open Office Writer : converting +Oracle Open Office Writer : converting;fields, into text +Oracle Open Office Writer : converting;Hangul/Hanja +Oracle Open Office Writer : converting;metrics +Oracle Open Office Writer : converting;Microsoft documents +Oracle Open Office Writer : converting;Oracle Open Office documents +Oracle Open Office Writer : converting;Pocket PC formats +Oracle Open Office Writer : converting;sections, into normal text +Oracle Open Office Writer : converting;text, into tables +Oracle Open Office Writer : copies +Oracle Open Office Writer : copies;printing +Oracle Open Office Writer : copies;removing line breaks +Oracle Open Office Writer : copying +Oracle Open Office Writer : copying;by drag and drop +Oracle Open Office Writer : copying;charts from Oracle Open Office Calc +Oracle Open Office Writer : copying;data from text documents +Oracle Open Office Writer : copying;datasource records in spreadsheets +Oracle Open Office Writer : copying;draw objects +Oracle Open Office Writer : copying;draw objects between documents +Oracle Open Office Writer : copying;formatting +Oracle Open Office Writer : copying;from data source view +Oracle Open Office Writer : copying;from Gallery +Oracle Open Office Writer : copying;in Unix +Oracle Open Office Writer : copying;pictures, between documents +Oracle Open Office Writer : copying;sheet areas, to text documents +Oracle Open Office Writer : copying;styles, by fill format mode +Oracle Open Office Writer : copying;styles, from selections +Oracle Open Office Writer : copying;text sections +Oracle Open Office Writer : copying;to Gallery +Oracle Open Office Writer : copyright for Oracle Open Office +Oracle Open Office Writer : corner roundings +Oracle Open Office Writer : counting words +Oracle Open Office Writer : crash reports +Oracle Open Office Writer : criteria of query design (Base) +Oracle Open Office Writer : cropping pictures +Oracle Open Office Writer : cross-references +Oracle Open Office Writer : cross-references;inserting and updating +Oracle Open Office Writer : cross-references;inserting with Navigator +Oracle Open Office Writer : cross-references;modifying +Oracle Open Office Writer : CTL +Oracle Open Office Writer : CTL;(not) wrapping words +Oracle Open Office Writer : CTL;complex text layout languages +Oracle Open Office Writer : CTL;definition +Oracle Open Office Writer : CTL;options +Oracle Open Office Writer : cube drawing +Oracle Open Office Writer : currencies +Oracle Open Office Writer : currencies;converters +Oracle Open Office Writer : currencies;format codes +Oracle Open Office Writer : currency field creation +Oracle Open Office Writer : currency formats +Oracle Open Office Writer : cursor +Oracle Open Office Writer : cursor;allowing in protected areas (Writer) +Oracle Open Office Writer : cursor;direct cursor +Oracle Open Office Writer : cursor;in read-only text +Oracle Open Office Writer : cursor;quickly moving to an object +Oracle Open Office Writer : curves +Oracle Open Office Writer : curves;editing points +Oracle Open Office Writer : curves;properties in line charts/XY charts +Oracle Open Office Writer : custom dictionaries +Oracle Open Office Writer : custom dictionaries;editing +Oracle Open Office Writer : custom dictionaries;removing words from +Oracle Open Office Writer : custom hyphens (Writer) +Oracle Open Office Writer : custom quotes +Oracle Open Office Writer : custom templates +Oracle Open Office Writer : customizing +Oracle Open Office Writer : customizing;events +Oracle Open Office Writer : customizing;keyboard +Oracle Open Office Writer : customizing;menus +Oracle Open Office Writer : customizing;Oracle Open Office +Oracle Open Office Writer : customizing;round corners +Oracle Open Office Writer : customizing;toolbars +Oracle Open Office Writer : cutting +Oracle Open Office Writer : dashes +Oracle Open Office Writer : data +Oracle Open Office Writer : data;filtering in forms +Oracle Open Office Writer : data;forms and subforms +Oracle Open Office Writer : data;read-only +Oracle Open Office Writer : data;sorting in forms +Oracle Open Office Writer : data;user data +Oracle Open Office Writer : data binding change in XForms +Oracle Open Office Writer : data labels in charts +Oracle Open Office Writer : Data Navigator +Oracle Open Office Writer : Data Navigator;adding/editing items +Oracle Open Office Writer : Data Navigator;display options +Oracle Open Office Writer : data ranges in charts +Oracle Open Office Writer : data series +Oracle Open Office Writer : data source browser +Oracle Open Office Writer : data source explorer +Oracle Open Office Writer : data source view +Oracle Open Office Writer : data source view;drag and drop +Oracle Open Office Writer : data source view;overview +Oracle Open Office Writer : data source view;showing +Oracle Open Office Writer : data sources +Oracle Open Office Writer : data sources;as tables +Oracle Open Office Writer : data sources;connection settings (Base) +Oracle Open Office Writer : data sources;copying records to spreadsheets +Oracle Open Office Writer : data sources;displaying current +Oracle Open Office Writer : data sources;LDAP server (Base) +Oracle Open Office Writer : data sources;Oracle Open Office Base +Oracle Open Office Writer : data sources;registering address books +Oracle Open Office Writer : data sources;reports +Oracle Open Office Writer : data sources;setting for stock charts +Oracle Open Office Writer : data sources;viewing +Oracle Open Office Writer : data structure of XForms +Oracle Open Office Writer : data values in charts +Oracle Open Office Writer : data, see also values +Oracle Open Office Writer : database contents +Oracle Open Office Writer : database contents;inserting as tables +Oracle Open Office Writer : database contents;inserting as text +Oracle Open Office Writer : database reports +Oracle Open Office Writer : Database Wizard (Base) +Oracle Open Office Writer : databases +Oracle Open Office Writer : databases;administration through SQL (Base) +Oracle Open Office Writer : databases;ADO (Base) +Oracle Open Office Writer : databases;connecting (Base) +Oracle Open Office Writer : databases;creating +Oracle Open Office Writer : databases;creating bibliographies +Oracle Open Office Writer : databases;creating labels +Oracle Open Office Writer : databases;creating queries +Oracle Open Office Writer : databases;creating reports +Oracle Open Office Writer : databases;creating tables +Oracle Open Office Writer : databases;deleting (Base) +Oracle Open Office Writer : databases;drag and drop (Base) +Oracle Open Office Writer : databases;editing tables +Oracle Open Office Writer : databases;exchanging +Oracle Open Office Writer : databases;form filters +Oracle Open Office Writer : databases;formats (Base) +Oracle Open Office Writer : databases;importing/exporting +Oracle Open Office Writer : databases;in conditions +Oracle Open Office Writer : databases;JDBC (Base) +Oracle Open Office Writer : databases;main page (Base) +Oracle Open Office Writer : databases;ODBC (Base) +Oracle Open Office Writer : databases;overview +Oracle Open Office Writer : databases;registering (Base) +Oracle Open Office Writer : databases;searching records +Oracle Open Office Writer : databases;shortcut keys +Oracle Open Office Writer : databases;sorting +Oracle Open Office Writer : databases;standard filters +Oracle Open Office Writer : databases;text formats +Oracle Open Office Writer : databases;viewing +Oracle Open Office Writer : date fields +Oracle Open Office Writer : date fields;creating +Oracle Open Office Writer : date fields;fixed/variable +Oracle Open Office Writer : date fields;HTML +Oracle Open Office Writer : date fields;properties +Oracle Open Office Writer : date formats +Oracle Open Office Writer : dates +Oracle Open Office Writer : dates;default (Calc) +Oracle Open Office Writer : dates;formatting automatically in tables +Oracle Open Office Writer : dates;inserting +Oracle Open Office Writer : dates;printing in presentations +Oracle Open Office Writer : dates;start 1900/01/01 (Calc) +Oracle Open Office Writer : dates;start 1904/01/01 (Calc) +Oracle Open Office Writer : dBASE +Oracle Open Office Writer : dBASE;database settings (Base) +Oracle Open Office Writer : DDE +Oracle Open Office Writer : DDE;command for inserting sections +Oracle Open Office Writer : DDE;definition +Oracle Open Office Writer : DDE;inserting tables +Oracle Open Office Writer : deactivating +Oracle Open Office Writer : deactivating;plug-ins +Oracle Open Office Writer : deactivating;word completion +Oracle Open Office Writer : decimal places displayed (Calc) +Oracle Open Office Writer : decimal separator key +Oracle Open Office Writer : decimal tab stops +Oracle Open Office Writer : default directories +Oracle Open Office Writer : default filters, see standard filters +Oracle Open Office Writer : default printer +Oracle Open Office Writer : default printer;setting up +Oracle Open Office Writer : default printer;UNIX +Oracle Open Office Writer : default templates +Oracle Open Office Writer : default templates;changing +Oracle Open Office Writer : default templates;defining/resetting +Oracle Open Office Writer : default templates;organizing +Oracle Open Office Writer : defaults +Oracle Open Office Writer : defaults;document formats in file dialogs +Oracle Open Office Writer : defaults;documents +Oracle Open Office Writer : defaults;file formats in Oracle Open Office +Oracle Open Office Writer : defaults;fonts +Oracle Open Office Writer : defaults;grids (Writer/Calc) +Oracle Open Office Writer : defaults;languages +Oracle Open Office Writer : defaults;number formats +Oracle Open Office Writer : defaults;of saving +Oracle Open Office Writer : defaults;program configuration +Oracle Open Office Writer : defaults;tab stops in text +Oracle Open Office Writer : defaults;templates +Oracle Open Office Writer : defaults;views +Oracle Open Office Writer : defining +Oracle Open Office Writer : defining;arrowheads and other line ends +Oracle Open Office Writer : defining;colors +Oracle Open Office Writer : defining;conditions +Oracle Open Office Writer : defining;headers/footers +Oracle Open Office Writer : defining;line styles +Oracle Open Office Writer : defining;object borders +Oracle Open Office Writer : defining;page borders +Oracle Open Office Writer : defining;page styles +Oracle Open Office Writer : defining;paragraph borders +Oracle Open Office Writer : defining;queries (Base) +Oracle Open Office Writer : defining;starting page numbers +Oracle Open Office Writer : defining;table borders +Oracle Open Office Writer : defining;table borders in Writer +Oracle Open Office Writer : deleting +Oracle Open Office Writer : deleting;all direct formatting +Oracle Open Office Writer : deleting;comments +Oracle Open Office Writer : deleting;databases (Base) +Oracle Open Office Writer : deleting;entries of indexes/tables of contents +Oracle Open Office Writer : deleting;footnotes +Oracle Open Office Writer : deleting;heading numbers +Oracle Open Office Writer : deleting;hyperlinks +Oracle Open Office Writer : deleting;indexes/tables of contents +Oracle Open Office Writer : deleting;line breaks +Oracle Open Office Writer : deleting;lines in text +Oracle Open Office Writer : deleting;models/instances +Oracle Open Office Writer : deleting;namespaces in XForms +Oracle Open Office Writer : deleting;numbers in lists +Oracle Open Office Writer : deleting;page breaks +Oracle Open Office Writer : deleting;rows/columns, by keyboard +Oracle Open Office Writer : deleting;tab stops +Oracle Open Office Writer : deleting;tables or table contents +Oracle Open Office Writer : deleting;templates +Oracle Open Office Writer : deleting;words in user-defined dictionaries +Oracle Open Office Writer : deleting;XML filters +Oracle Open Office Writer : demoting heading levels +Oracle Open Office Writer : depth stagger +Oracle Open Office Writer : descriptions for objects +Oracle Open Office Writer : design mode after saving +Oracle Open Office Writer : design view +Oracle Open Office Writer : design view;creating forms +Oracle Open Office Writer : design view;queries/views (Base) +Oracle Open Office Writer : designing +Oracle Open Office Writer : designing;database tables +Oracle Open Office Writer : designing;fonts +Oracle Open Office Writer : designing;queries (Base) +Oracle Open Office Writer : detaching toolbars +Oracle Open Office Writer : dictionaries +Oracle Open Office Writer : dictionaries;common terms in simplified and traditional chinese +Oracle Open Office Writer : dictionaries;creating +Oracle Open Office Writer : dictionaries;editing user-defined +Oracle Open Office Writer : dictionaries;spellcheck +Oracle Open Office Writer : dictionaries;thesaurus +Oracle Open Office Writer : dictionaries, see also languages +Oracle Open Office Writer : digital signatures +Oracle Open Office Writer : digital signatures;getting/managing/applying +Oracle Open Office Writer : digital signatures;overview +Oracle Open Office Writer : digital signatures;WebDAV over HTTPS +Oracle Open Office Writer : direct cursor +Oracle Open Office Writer : direct cursor;restriction +Oracle Open Office Writer : direct cursor;settings +Oracle Open Office Writer : direct formatting +Oracle Open Office Writer : direct formatting;exiting +Oracle Open Office Writer : direct formatting;undoing all +Oracle Open Office Writer : directories +Oracle Open Office Writer : directories;creating new +Oracle Open Office Writer : directories;directory structure +Oracle Open Office Writer : disabled persons +Oracle Open Office Writer : disabling +Oracle Open Office Writer : disabling;field highlighting +Oracle Open Office Writer : disabling;smart tags +Oracle Open Office Writer : disabling;word completion +Oracle Open Office Writer : displaying +Oracle Open Office Writer : displaying;comments in text documents +Oracle Open Office Writer : displaying;hidden text +Oracle Open Office Writer : displaying;non-printing characters (Writer) +Oracle Open Office Writer : displaying;pictures and objects (Writer) +Oracle Open Office Writer : displaying;tables (Writer) +Oracle Open Office Writer : displaying;zero values (Calc) +Oracle Open Office Writer : distances +Oracle Open Office Writer : distinct values in SQL queries +Oracle Open Office Writer : distorting in drawings +Oracle Open Office Writer : distributing XML filters +Oracle Open Office Writer : dividing tables +Oracle Open Office Writer : DocInformation fields +Oracle Open Office Writer : docking +Oracle Open Office Writer : docking;definition +Oracle Open Office Writer : docking;Navigator window +Oracle Open Office Writer : docking;toolbars +Oracle Open Office Writer : docking;windows +Oracle Open Office Writer : Document Converter Wizard +Oracle Open Office Writer : Document Map, see Navigator +Oracle Open Office Writer : document templates +Oracle Open Office Writer : document types in Oracle Open Office +Oracle Open Office Writer : documents +Oracle Open Office Writer : documents;changing titles +Oracle Open Office Writer : documents;closing +Oracle Open Office Writer : documents;comparing +Oracle Open Office Writer : documents;contents as lists +Oracle Open Office Writer : documents;editing time +Oracle Open Office Writer : documents;exporting +Oracle Open Office Writer : documents;importing +Oracle Open Office Writer : documents;languages +Oracle Open Office Writer : documents;master documents and subdocuments +Oracle Open Office Writer : documents;measurement units in +Oracle Open Office Writer : documents;merging +Oracle Open Office Writer : documents;number of pages/tables/sheets +Oracle Open Office Writer : documents;number of words/characters +Oracle Open Office Writer : documents;opening +Oracle Open Office Writer : documents;opening in design mode +Oracle Open Office Writer : documents;opening with templates +Oracle Open Office Writer : documents;organizing +Oracle Open Office Writer : documents;printing +Oracle Open Office Writer : documents;read-only +Oracle Open Office Writer : documents;reloading +Oracle Open Office Writer : documents;saving +Oracle Open Office Writer : documents;saving automatically +Oracle Open Office Writer : documents;saving in other formats +Oracle Open Office Writer : documents;sending as e-mail +Oracle Open Office Writer : documents;styles changed +Oracle Open Office Writer : documents;version management +Oracle Open Office Writer : documents;version numbers +Oracle Open Office Writer : donut charts +Oracle Open Office Writer : dotted areas +Oracle Open Office Writer : double-line spacing in paragraphs +Oracle Open Office Writer : double-line writing in Asian layout +Oracle Open Office Writer : drag and drop +Oracle Open Office Writer : drag and drop;copying and pasting text +Oracle Open Office Writer : drag and drop;creating new styles +Oracle Open Office Writer : drag and drop;data source view +Oracle Open Office Writer : drag and drop;from Gallery to draw objects +Oracle Open Office Writer : drag and drop;overview +Oracle Open Office Writer : drag and drop;pictures +Oracle Open Office Writer : drag and drop;to Gallery +Oracle Open Office Writer : draw objects +Oracle Open Office Writer : draw objects;adding/editing/copying +Oracle Open Office Writer : draw objects;anchoring +Oracle Open Office Writer : draw objects;arranging within stacks +Oracle Open Office Writer : draw objects;copying between documents +Oracle Open Office Writer : draw objects;cross-referencing +Oracle Open Office Writer : draw objects;displaying (Calc) +Oracle Open Office Writer : draw objects;dropping Gallery pictures +Oracle Open Office Writer : draw objects;flipping +Oracle Open Office Writer : draw objects;inserting captions +Oracle Open Office Writer : draw objects;legends +Oracle Open Office Writer : draw objects;positioning and resizing +Oracle Open Office Writer : draw objects;protecting +Oracle Open Office Writer : draw objects;slanting +Oracle Open Office Writer : draw objects;text in +Oracle Open Office Writer : Drawing bar +Oracle Open Office Writer : drawing lines in text +Oracle Open Office Writer : drawings +Oracle Open Office Writer : drawings;creating/opening +Oracle Open Office Writer : drawings;languages +Oracle Open Office Writer : drawings;printing +Oracle Open Office Writer : drawings;printing defaults +Oracle Open Office Writer : drawings;printing in text documents +Oracle Open Office Writer : drawings;saving +Oracle Open Office Writer : drawings;saving automatically +Oracle Open Office Writer : drawings;saving in other formats +Oracle Open Office Writer : drawings;sending as e-mail +Oracle Open Office Writer : drawings;showing (Writer) +Oracle Open Office Writer : drawings, see also draw objects +Oracle Open Office Writer : drop caps insertion +Oracle Open Office Writer : drop-down lists in form functions +Oracle Open Office Writer : e-mail attachments +Oracle Open Office Writer : Edit File icon +Oracle Open Office Writer : edit mode +Oracle Open Office Writer : edit mode;after opening +Oracle Open Office Writer : edit mode;through Enter key (Calc) +Oracle Open Office Writer : Edit Points bar +Oracle Open Office Writer : editing +Oracle Open Office Writer : editing;captions +Oracle Open Office Writer : editing;chart axes +Oracle Open Office Writer : editing;chart data +Oracle Open Office Writer : editing;chart legends +Oracle Open Office Writer : editing;chart titles +Oracle Open Office Writer : editing;comments +Oracle Open Office Writer : editing;concordance files +Oracle Open Office Writer : editing;cross-references +Oracle Open Office Writer : editing;data binding of XForms +Oracle Open Office Writer : editing;database tables and queries +Oracle Open Office Writer : editing;draw objects +Oracle Open Office Writer : editing;Fontwork objects +Oracle Open Office Writer : editing;footnotes/endnotes +Oracle Open Office Writer : editing;hyperlinks +Oracle Open Office Writer : editing;index format +Oracle Open Office Writer : editing;indexes/tables of contents +Oracle Open Office Writer : editing;menus +Oracle Open Office Writer : editing;objects +Oracle Open Office Writer : editing;Oracle Open Office documents in Internet Explorer +Oracle Open Office Writer : editing;pictures +Oracle Open Office Writer : editing;reports +Oracle Open Office Writer : editing;sections +Oracle Open Office Writer : editing;shortcut keys +Oracle Open Office Writer : editing;tab stops +Oracle Open Office Writer : editing;table/index entries +Oracle Open Office Writer : editing;templates +Oracle Open Office Writer : editing;text frames +Oracle Open Office Writer : editing;titles +Oracle Open Office Writer : editing;toolbars +Oracle Open Office Writer : editing;undoing +Oracle Open Office Writer : editing;XForms +Oracle Open Office Writer : editing time of documents +Oracle Open Office Writer : editors +Oracle Open Office Writer : editors;contour editor +Oracle Open Office Writer : editors;formula editor +Oracle Open Office Writer : editors;ImageMap editor +Oracle Open Office Writer : effects +Oracle Open Office Writer : effects;font positions +Oracle Open Office Writer : effects;fonts +Oracle Open Office Writer : effects;Fontwork icons +Oracle Open Office Writer : effects;text animation +Oracle Open Office Writer : ellipse drawing +Oracle Open Office Writer : emphasizing text +Oracle Open Office Writer : empty documents +Oracle Open Office Writer : empty page with alternating page styles +Oracle Open Office Writer : empty paragraph removal +Oracle Open Office Writer : encryption of contents +Oracle Open Office Writer : endnotes +Oracle Open Office Writer : endnotes;inserting and editing +Oracle Open Office Writer : endnotes;spacing +Oracle Open Office Writer : enlarging columns,cells and table rows +Oracle Open Office Writer : entering groups +Oracle Open Office Writer : entering text from right to left +Oracle Open Office Writer : entering text with direct cursor +Oracle Open Office Writer : entries +Oracle Open Office Writer : entries;bibliographies +Oracle Open Office Writer : entries;defining in indexes/tables of contents +Oracle Open Office Writer : entries;in tables of contents, as hyperlinks +Oracle Open Office Writer : envelopes +Oracle Open Office Writer : equal sign, see also operators +Oracle Open Office Writer : equations in formula editor +Oracle Open Office Writer : error bars in charts +Oracle Open Office Writer : error indicators in charts +Oracle Open Office Writer : Error Report Tool +Oracle Open Office Writer : Euro +Oracle Open Office Writer : Euro;currency formats +Oracle Open Office Writer : Euro;Euro Converter Wizard +Oracle Open Office Writer : even/odd pages +Oracle Open Office Writer : even/odd pages;formatting +Oracle Open Office Writer : even/odd pages;printing +Oracle Open Office Writer : events +Oracle Open Office Writer : events;assigning scripts +Oracle Open Office Writer : events;controls +Oracle Open Office Writer : events;customizing +Oracle Open Office Writer : events;in forms +Oracle Open Office Writer : examples for regular expressions +Oracle Open Office Writer : Excel +Oracle Open Office Writer : Excel;saving as +Oracle Open Office Writer : Excel;search criteria +Oracle Open Office Writer : exceptions +Oracle Open Office Writer : exceptions;AutoCorrect function +Oracle Open Office Writer : exceptions;user-defined dictionaries +Oracle Open Office Writer : exchanging databases +Oracle Open Office Writer : exchanging, see also replacing +Oracle Open Office Writer : executing SQL commands +Oracle Open Office Writer : exiting +Oracle Open Office Writer : exiting;direct formatting +Oracle Open Office Writer : exiting;groups +Oracle Open Office Writer : exiting;Oracle Open Office +Oracle Open Office Writer : expanding formatting (Calc) +Oracle Open Office Writer : explorer of data sources +Oracle Open Office Writer : export filters +Oracle Open Office Writer : exporting +Oracle Open Office Writer : exporting;bitmaps +Oracle Open Office Writer : exporting;HTML and text documents +Oracle Open Office Writer : exporting;Microsoft Office documents with VBA code +Oracle Open Office Writer : exporting;spreadsheets to text format +Oracle Open Office Writer : exporting;templates +Oracle Open Office Writer : exporting;to foreign formats +Oracle Open Office Writer : exporting;to HTML +Oracle Open Office Writer : exporting;to Microsoft Office formats +Oracle Open Office Writer : exporting;to PDF +Oracle Open Office Writer : exporting;to PostScript format +Oracle Open Office Writer : exporting;to XML +Oracle Open Office Writer : exporting;XML files +Oracle Open Office Writer : extended tips in Help +Oracle Open Office Writer : extension mode in text +Oracle Open Office Writer : extensions +Oracle Open Office Writer : extensions;Extension Manager +Oracle Open Office Writer : extensions;file formats +Oracle Open Office Writer : external keys (Base) +Oracle Open Office Writer : faster printing +Oracle Open Office Writer : faxes +Oracle Open Office Writer : faxes;configuring Oracle Open Office +Oracle Open Office Writer : faxes;fax programs/fax printers under UNIX +Oracle Open Office Writer : faxes;selecting a fax machine +Oracle Open Office Writer : faxes;sending +Oracle Open Office Writer : faxes;wizards +Oracle Open Office Writer : feedback +Oracle Open Office Writer : feedback;automatically +Oracle Open Office Writer : fields +Oracle Open Office Writer : fields;converting into text +Oracle Open Office Writer : fields;database tables +Oracle Open Office Writer : fields;defining conditions +Oracle Open Office Writer : fields;displaying field codes (Writer) +Oracle Open Office Writer : fields;formatted fields +Oracle Open Office Writer : fields;HTML import and export +Oracle Open Office Writer : fields;input fields in text +Oracle Open Office Writer : fields;inserting time +Oracle Open Office Writer : fields;subject +Oracle Open Office Writer : fields;updating automatically (Writer) +Oracle Open Office Writer : fields;updating/viewing +Oracle Open Office Writer : fields;user data +Oracle Open Office Writer : file associations for Microsoft Office +Oracle Open Office Writer : file filters +Oracle Open Office Writer : file filters;mobile devices +Oracle Open Office Writer : file filters;XML +Oracle Open Office Writer : file formats +Oracle Open Office Writer : file formats;changing Oracle Open Office defaults +Oracle Open Office Writer : file formats;OpenDocument/XML +Oracle Open Office Writer : file formats;saving always in other formats +Oracle Open Office Writer : file selection button +Oracle Open Office Writer : file sharing options for current document +Oracle Open Office Writer : files +Oracle Open Office Writer : files;filters and formats +Oracle Open Office Writer : files;importing +Oracle Open Office Writer : files;opening +Oracle Open Office Writer : files;properties +Oracle Open Office Writer : files;saving +Oracle Open Office Writer : files;saving automatically +Oracle Open Office Writer : files;saving in other formats +Oracle Open Office Writer : files;sending as e-mail +Oracle Open Office Writer : files;version numbers +Oracle Open Office Writer : files and folders in Oracle Open Office +Oracle Open Office Writer : files, see also documents +Oracle Open Office Writer : fill characters with tabulators +Oracle Open Office Writer : fill colors for areas +Oracle Open Office Writer : fill format mode +Oracle Open Office Writer : fill patterns for areas +Oracle Open Office Writer : filter conditions +Oracle Open Office Writer : filter conditions;connecting +Oracle Open Office Writer : filter conditions;in queries (Base) +Oracle Open Office Writer : filtering +Oracle Open Office Writer : filtering;data in databases +Oracle Open Office Writer : filtering;data in forms +Oracle Open Office Writer : filters +Oracle Open Office Writer : filters;comparison operators +Oracle Open Office Writer : filters;for import and export +Oracle Open Office Writer : filters;Navigator +Oracle Open Office Writer : filters;pictures +Oracle Open Office Writer : filters;XML filter settings +Oracle Open Office Writer : Find tab in Help +Oracle Open Office Writer : finding +Oracle Open Office Writer : finding;in all sheets +Oracle Open Office Writer : finding;records in form documents +Oracle Open Office Writer : finding;selections +Oracle Open Office Writer : finding;similarity search +Oracle Open Office Writer : finding;text/text formats/styles/objects +Oracle Open Office Writer : first letters as large capital letters +Oracle Open Office Writer : First Page page style +Oracle Open Office Writer : fitting to pages +Oracle Open Office Writer : fitting to pages;print settings in Math +Oracle Open Office Writer : fitting to pages;print settings in presentations +Oracle Open Office Writer : fixed dates +Oracle Open Office Writer : fixed text +Oracle Open Office Writer : fixed text;form functions +Oracle Open Office Writer : fixing toolbars +Oracle Open Office Writer : flipping draw objects +Oracle Open Office Writer : floating frames in HTML documents +Oracle Open Office Writer : floating titles in headers +Oracle Open Office Writer : floating toolbars +Oracle Open Office Writer : focus of controls +Oracle Open Office Writer : folder creation +Oracle Open Office Writer : font attributes +Oracle Open Office Writer : font attributes;resetting +Oracle Open Office Writer : font lists +Oracle Open Office Writer : font name box +Oracle Open Office Writer : font sizes +Oracle Open Office Writer : font sizes;bullets +Oracle Open Office Writer : font sizes;relative changes +Oracle Open Office Writer : font sizes;scaling on screen +Oracle Open Office Writer : font sizes;text +Oracle Open Office Writer : fonts +Oracle Open Office Writer : fonts;changing in templates +Oracle Open Office Writer : fonts;color ignored +Oracle Open Office Writer : fonts;colors +Oracle Open Office Writer : fonts;default settings +Oracle Open Office Writer : fonts;effects +Oracle Open Office Writer : fonts;for HTML and Basic +Oracle Open Office Writer : fonts;formats +Oracle Open Office Writer : fonts;outlines +Oracle Open Office Writer : fonts;positions in text +Oracle Open Office Writer : fonts;resetting +Oracle Open Office Writer : fonts;shadows +Oracle Open Office Writer : fonts;specifying several +Oracle Open Office Writer : fonts;strikethrough +Oracle Open Office Writer : fonts;styles +Oracle Open Office Writer : fonts;text objects +Oracle Open Office Writer : Fontwork +Oracle Open Office Writer : footers +Oracle Open Office Writer : footers;about +Oracle Open Office Writer : footers;backgrounds +Oracle Open Office Writer : footers;defining for left and right pages +Oracle Open Office Writer : footers;formatting +Oracle Open Office Writer : footers;inserting +Oracle Open Office Writer : footers;with page numbers +Oracle Open Office Writer : footnotes +Oracle Open Office Writer : footnotes;inserting and editing +Oracle Open Office Writer : footnotes;spacing +Oracle Open Office Writer : form controls +Oracle Open Office Writer : form controls;assigning macros +Oracle Open Office Writer : form controls;protecting +Oracle Open Office Writer : form controls;toolbars +Oracle Open Office Writer : form fields +Oracle Open Office Writer : form filters +Oracle Open Office Writer : form letters +Oracle Open Office Writer : Form Navigator +Oracle Open Office Writer : format codes +Oracle Open Office Writer : format codes;numbers +Oracle Open Office Writer : format filling printing in Oracle Open Office Math +Oracle Open Office Writer : Format Paintbrush +Oracle Open Office Writer : formats +Oracle Open Office Writer : formats;Asian layout +Oracle Open Office Writer : formats;copying and pasting +Oracle Open Office Writer : formats;finding and replacing +Oracle Open Office Writer : formats;fonts +Oracle Open Office Writer : formats;maximizing page formats +Oracle Open Office Writer : formats;number and currency formats +Oracle Open Office Writer : formats;of currencies/date/time +Oracle Open Office Writer : formats;on opening and saving +Oracle Open Office Writer : formats;pasting in special formats +Oracle Open Office Writer : formats;positions +Oracle Open Office Writer : formats;resetting +Oracle Open Office Writer : formats;tabulators +Oracle Open Office Writer : formatted fields +Oracle Open Office Writer : formatted fields;form functions +Oracle Open Office Writer : formatted fields;properties +Oracle Open Office Writer : formatting +Oracle Open Office Writer : formatting;Asian typography +Oracle Open Office Writer : formatting;axes in charts +Oracle Open Office Writer : formatting;bold, while typing +Oracle Open Office Writer : formatting;bullets +Oracle Open Office Writer : formatting;changing individual pages +Oracle Open Office Writer : formatting;chart areas +Oracle Open Office Writer : formatting;chart floors +Oracle Open Office Writer : formatting;chart legends +Oracle Open Office Writer : formatting;chart titles +Oracle Open Office Writer : formatting;chart walls +Oracle Open Office Writer : formatting;contour wrap +Oracle Open Office Writer : formatting;copying +Oracle Open Office Writer : formatting;definition +Oracle Open Office Writer : formatting;even/odd pages +Oracle Open Office Writer : formatting;exiting direct formatting +Oracle Open Office Writer : formatting;expanding (Calc) +Oracle Open Office Writer : formatting;font effects +Oracle Open Office Writer : formatting;hyperlinks +Oracle Open Office Writer : formatting;indenting paragraphs +Oracle Open Office Writer : formatting;indexes and tables of contents +Oracle Open Office Writer : formatting;numbered lists +Oracle Open Office Writer : formatting;page numbers +Oracle Open Office Writer : formatting;pages +Oracle Open Office Writer : formatting;printer metrics (Writer) +Oracle Open Office Writer : formatting;register-true text +Oracle Open Office Writer : formatting;undoing +Oracle Open Office Writer : formatting;undoing when writing +Oracle Open Office Writer : formatting styles +Oracle Open Office Writer : formatting styles;importing +Oracle Open Office Writer : formatting styles;styles and templates +Oracle Open Office Writer : forms +Oracle Open Office Writer : forms;browsing +Oracle Open Office Writer : forms;Combo Box/List Box Wizard +Oracle Open Office Writer : forms;creating +Oracle Open Office Writer : forms;data +Oracle Open Office Writer : forms;designing (Base) +Oracle Open Office Writer : forms;events +Oracle Open Office Writer : forms;filtering data +Oracle Open Office Writer : forms;finding records +Oracle Open Office Writer : forms;focus after opening +Oracle Open Office Writer : forms;general information (Base) +Oracle Open Office Writer : forms;grouping controls +Oracle Open Office Writer : forms;HTML filters +Oracle Open Office Writer : forms;Navigator +Oracle Open Office Writer : forms;opening in design mode +Oracle Open Office Writer : forms;properties +Oracle Open Office Writer : forms;sorting data +Oracle Open Office Writer : forms;subforms +Oracle Open Office Writer : forms;wizards +Oracle Open Office Writer : forms;XForms +Oracle Open Office Writer : formula texts +Oracle Open Office Writer : formula texts;printing in Oracle Open Office Math +Oracle Open Office Writer : formulas +Oracle Open Office Writer : formulas;calculating in text +Oracle Open Office Writer : formulas;complex formulas in text +Oracle Open Office Writer : formulas;new +Oracle Open Office Writer : formulas;pasting results in text documents +Oracle Open Office Writer : formulas;starting formula editor +Oracle Open Office Writer : formulas in reports +Oracle Open Office Writer : formulas in reports;editing +Oracle Open Office Writer : formulating conditions +Oracle Open Office Writer : forums and support +Oracle Open Office Writer : frames +Oracle Open Office Writer : frames;anchoring options +Oracle Open Office Writer : frames;around objects +Oracle Open Office Writer : frames;around pages +Oracle Open Office Writer : frames;around paragraphs +Oracle Open Office Writer : frames;around tables +Oracle Open Office Writer : frames;around text tables +Oracle Open Office Writer : frames;AutoCorrect function +Oracle Open Office Writer : frames;backgrounds +Oracle Open Office Writer : frames;captions (Writer) +Oracle Open Office Writer : frames;defining hyperlinks +Oracle Open Office Writer : frames;jumping to +Oracle Open Office Writer : frames;labeling +Oracle Open Office Writer : frames;linking +Oracle Open Office Writer : frames;printing in Oracle Open Office Math +Oracle Open Office Writer : frames;protecting +Oracle Open Office Writer : frames;selection frames +Oracle Open Office Writer : frames;styles +Oracle Open Office Writer : frames;text fitting to frames +Oracle Open Office Writer : frames;unlinking +Oracle Open Office Writer : freeform lines +Oracle Open Office Writer : freeform lines;draw functions +Oracle Open Office Writer : FTP +Oracle Open Office Writer : FTP;opening documents +Oracle Open Office Writer : FTP;saving documents +Oracle Open Office Writer : full joins (Base) +Oracle Open Office Writer : full screen view +Oracle Open Office Writer : full-text search in Help +Oracle Open Office Writer : functions in reports +Oracle Open Office Writer : functions in reports;editing +Oracle Open Office Writer : Gallery +Oracle Open Office Writer : Gallery;adding pictures +Oracle Open Office Writer : Gallery;docking and resizing +Oracle Open Office Writer : Gallery;dragging pictures to draw objects +Oracle Open Office Writer : Gallery;hiding/showing +Oracle Open Office Writer : Gallery;inserting pictures from +Oracle Open Office Writer : get method for form transmissions +Oracle Open Office Writer : getting support +Oracle Open Office Writer : GIF format +Oracle Open Office Writer : glossaries +Oracle Open Office Writer : glossaries;common terms +Oracle Open Office Writer : glossaries;Internet terms +Oracle Open Office Writer : gradients off for faster printing +Oracle Open Office Writer : grammar checker +Oracle Open Office Writer : graphic objects, see draw objects +Oracle Open Office Writer : graphical text art +Oracle Open Office Writer : graphics +Oracle Open Office Writer : graphics;cache +Oracle Open Office Writer : graphics;do not show +Oracle Open Office Writer : graphics;protecting +Oracle Open Office Writer : graphics, see also pictures +Oracle Open Office Writer : grayscale printing +Oracle Open Office Writer : grid controls +Oracle Open Office Writer : grid controls;form functions +Oracle Open Office Writer : grids +Oracle Open Office Writer : grids;defaults (Writer/Calc) +Oracle Open Office Writer : grids;display options (Impress/Draw) +Oracle Open Office Writer : grids;displaying lines (Calc) +Oracle Open Office Writer : grids;formatting axes +Oracle Open Office Writer : grids;inserting in charts +Oracle Open Office Writer : group box creation +Oracle Open Office Writer : groups +Oracle Open Office Writer : groups;entering/exiting/ungrouping +Oracle Open Office Writer : groups;naming +Oracle Open Office Writer : groups;of controls +Oracle Open Office Writer : guides +Oracle Open Office Writer : guides;display options (Impress/Draw) +Oracle Open Office Writer : guides;displaying when moving objects (Impress) +Oracle Open Office Writer : guides;showing (Calc) +Oracle Open Office Writer : guides;showing when moving frames (Writer) +Oracle Open Office Writer : gutter +Oracle Open Office Writer : handles +Oracle Open Office Writer : handles;displaying (Writer) +Oracle Open Office Writer : handles;scaling +Oracle Open Office Writer : handles;showing simple/large handles (Calc) +Oracle Open Office Writer : hanging indents in paragraphs +Oracle Open Office Writer : Hangul/Hanja +Oracle Open Office Writer : hard returns in pasted text +Oracle Open Office Writer : hatching +Oracle Open Office Writer : headers +Oracle Open Office Writer : headers;about +Oracle Open Office Writer : headers;backgrounds +Oracle Open Office Writer : headers;chapter information +Oracle Open Office Writer : headers;defining for left and right pages +Oracle Open Office Writer : headers;formatting +Oracle Open Office Writer : headers;inserting +Oracle Open Office Writer : headings +Oracle Open Office Writer : headings;automatic +Oracle Open Office Writer : headings;entering as text box +Oracle Open Office Writer : headings;jumping to +Oracle Open Office Writer : headings;numbering/paragraph styles +Oracle Open Office Writer : headings;rearranging +Oracle Open Office Writer : headings;repeating in tables +Oracle Open Office Writer : headings;starting with tab stops +Oracle Open Office Writer : headings;switching levels by keyboard +Oracle Open Office Writer : Hebrew +Oracle Open Office Writer : Hebrew;entering text +Oracle Open Office Writer : Hebrew;language settings +Oracle Open Office Writer : Help +Oracle Open Office Writer : Help;bookmarks +Oracle Open Office Writer : Help;extended tips on/off +Oracle Open Office Writer : Help;full-text search +Oracle Open Office Writer : Help;Help tips +Oracle Open Office Writer : Help;keywords +Oracle Open Office Writer : Help;navigation pane showing/hiding +Oracle Open Office Writer : Help;style sheets +Oracle Open Office Writer : Help;topics +Oracle Open Office Writer : Help Agent +Oracle Open Office Writer : Help Agent;help +Oracle Open Office Writer : Help Agent;options +Oracle Open Office Writer : Help tips +Oracle Open Office Writer : Help tips;fields +Oracle Open Office Writer : Help tips;hiding +Oracle Open Office Writer : hidden controls in Form Navigator +Oracle Open Office Writer : hidden fields display (Writer) +Oracle Open Office Writer : hidden pages +Oracle Open Office Writer : hidden pages;printing in presentations +Oracle Open Office Writer : hidden text +Oracle Open Office Writer : hidden text;displaying +Oracle Open Office Writer : hidden text;showing (Writer) +Oracle Open Office Writer : hiding +Oracle Open Office Writer : hiding;changes +Oracle Open Office Writer : hiding;chart legends +Oracle Open Office Writer : hiding;database fields +Oracle Open Office Writer : hiding;docked windows +Oracle Open Office Writer : hiding;navigation pane in Help window +Oracle Open Office Writer : hiding;rulers +Oracle Open Office Writer : hiding;sections +Oracle Open Office Writer : hiding;text, from specific users +Oracle Open Office Writer : hiding;text, with conditions +Oracle Open Office Writer : high contrast mode +Oracle Open Office Writer : highlighting changes +Oracle Open Office Writer : Hindi +Oracle Open Office Writer : Hindi;entering text +Oracle Open Office Writer : Hindi;language settings +Oracle Open Office Writer : homepage creation +Oracle Open Office Writer : horizontal lines +Oracle Open Office Writer : horizontal rulers +Oracle Open Office Writer : horizontal scrollbars (Writer) +Oracle Open Office Writer : hotspots +Oracle Open Office Writer : hotspots;adding to images +Oracle Open Office Writer : hotspots;properties +Oracle Open Office Writer : HowTos for charts +Oracle Open Office Writer : HTML +Oracle Open Office Writer : HTML;compatibility settings +Oracle Open Office Writer : HTML;definition +Oracle Open Office Writer : HTML;export character set +Oracle Open Office Writer : HTML;fonts for source display +Oracle Open Office Writer : HTML;importing META tags +Oracle Open Office Writer : HTML;live presentations +Oracle Open Office Writer : HTML;special tags for fields +Oracle Open Office Writer : HTML documents +Oracle Open Office Writer : HTML documents;auto reloading +Oracle Open Office Writer : HTML documents;creating from text documents +Oracle Open Office Writer : HTML documents;headers and footers +Oracle Open Office Writer : HTML documents;importing/exporting +Oracle Open Office Writer : HTML documents;inserting linked sections +Oracle Open Office Writer : HTML documents;META tags in +Oracle Open Office Writer : HTML documents;new +Oracle Open Office Writer : HTML documents;source text +Oracle Open Office Writer : hyperlinks +Oracle Open Office Writer : hyperlinks;assigning macros +Oracle Open Office Writer : hyperlinks;character formats +Oracle Open Office Writer : hyperlinks;definition +Oracle Open Office Writer : hyperlinks;deleting +Oracle Open Office Writer : hyperlinks;editing +Oracle Open Office Writer : hyperlinks;for objects +Oracle Open Office Writer : hyperlinks;in tables of contents and indexes +Oracle Open Office Writer : hyperlinks;inserting +Oracle Open Office Writer : hyperlinks;inserting from Navigator +Oracle Open Office Writer : hyperlinks;jumping to +Oracle Open Office Writer : hyperlinks;relative and absolute +Oracle Open Office Writer : hyperlinks;turning off automatic recognition +Oracle Open Office Writer : hyperlinks, see also links +Oracle Open Office Writer : hyphenation +Oracle Open Office Writer : hyphenation;activating for a language +Oracle Open Office Writer : hyphenation;manual/automatic +Oracle Open Office Writer : hyphenation;minimal number of characters +Oracle Open Office Writer : hyphenation;preventing for specific words +Oracle Open Office Writer : hyphens +Oracle Open Office Writer : hyphens;displaying custom (Writer) +Oracle Open Office Writer : hyphens;inserting custom +Oracle Open Office Writer : icon bars, see toolbars +Oracle Open Office Writer : icon sizes +Oracle Open Office Writer : if-then queries as fields +Oracle Open Office Writer : ignore list for spellcheck +Oracle Open Office Writer : ignored font colors +Oracle Open Office Writer : illumination +Oracle Open Office Writer : illumination;3D charts +Oracle Open Office Writer : illustrations, see pictures +Oracle Open Office Writer : image button creation +Oracle Open Office Writer : image control creation +Oracle Open Office Writer : ImageMap +Oracle Open Office Writer : ImageMap;definition +Oracle Open Office Writer : ImageMap;editor +Oracle Open Office Writer : ImageMap;hotspot properties +Oracle Open Office Writer : images +Oracle Open Office Writer : images;do not show +Oracle Open Office Writer : images;ImageMap +Oracle Open Office Writer : images;inserting and editing bitmaps +Oracle Open Office Writer : images;inserting in text +Oracle Open Office Writer : images, see also pictures +Oracle Open Office Writer : IME +Oracle Open Office Writer : IME;definition +Oracle Open Office Writer : IME;showing/hiding +Oracle Open Office Writer : import filters +Oracle Open Office Writer : import restrictions for Microsoft Office +Oracle Open Office Writer : importing +Oracle Open Office Writer : importing;bitmaps +Oracle Open Office Writer : importing;compatibility settings for text import +Oracle Open Office Writer : importing;databases +Oracle Open Office Writer : importing;documents in other formats +Oracle Open Office Writer : importing;from XML +Oracle Open Office Writer : importing;HTML and text documents +Oracle Open Office Writer : importing;HTML with META tags +Oracle Open Office Writer : importing;Microsoft Office documents with VBA code +Oracle Open Office Writer : importing;styles from other files +Oracle Open Office Writer : importing;tables in text format +Oracle Open Office Writer : importing;templates +Oracle Open Office Writer : improvement program +Oracle Open Office Writer : improvement program - Improvement Program +Oracle Open Office Writer : inches +Oracle Open Office Writer : indents +Oracle Open Office Writer : indents;in text +Oracle Open Office Writer : indents;setting on rulers +Oracle Open Office Writer : Index tab in Help +Oracle Open Office Writer : indexes +Oracle Open Office Writer : indexes;alphabetical indexes +Oracle Open Office Writer : indexes;backgrounds +Oracle Open Office Writer : indexes;creating bibliographies +Oracle Open Office Writer : indexes;creating user-defined indexes +Oracle Open Office Writer : indexes;defining entries in +Oracle Open Office Writer : indexes;editing or deleting entries +Oracle Open Office Writer : indexes;editing/updating/deleting +Oracle Open Office Writer : indexes;formatting +Oracle Open Office Writer : indexes;master documents +Oracle Open Office Writer : indexes;multiple documents +Oracle Open Office Writer : indexes;showing/hiding Help index tab +Oracle Open Office Writer : indexes;unprotecting +Oracle Open Office Writer : indicator lines in text +Oracle Open Office Writer : initial capitals in titles +Oracle Open Office Writer : inner joins (Base) +Oracle Open Office Writer : input fields in text +Oracle Open Office Writer : input method window +Oracle Open Office Writer : insert mode for entering text +Oracle Open Office Writer : inserting +Oracle Open Office Writer : inserting;buttons in toolbars +Oracle Open Office Writer : inserting;captions +Oracle Open Office Writer : inserting;cell ranges from spreadsheets +Oracle Open Office Writer : inserting;chapter numbers in captions +Oracle Open Office Writer : inserting;charts +Oracle Open Office Writer : inserting;clipboard options +Oracle Open Office Writer : inserting;comments +Oracle Open Office Writer : inserting;cross-references +Oracle Open Office Writer : inserting;data from text documents +Oracle Open Office Writer : inserting;datasource records in spreadsheets +Oracle Open Office Writer : inserting;date fields +Oracle Open Office Writer : inserting;drawings +Oracle Open Office Writer : inserting;envelopes +Oracle Open Office Writer : inserting;floating frames +Oracle Open Office Writer : inserting;Fontwork objects +Oracle Open Office Writer : inserting;footnotes/endnotes +Oracle Open Office Writer : inserting;form fields +Oracle Open Office Writer : inserting;from Gallery into text +Oracle Open Office Writer : inserting;horizontal lines +Oracle Open Office Writer : inserting;hyperlinks +Oracle Open Office Writer : inserting;hyperlinks from Navigator +Oracle Open Office Writer : inserting;input fields +Oracle Open Office Writer : inserting;line breaks in cells +Oracle Open Office Writer : inserting;lines under headers/above footers +Oracle Open Office Writer : inserting;movies/sounds +Oracle Open Office Writer : inserting;new text tables defaults +Oracle Open Office Writer : inserting;numbering +Oracle Open Office Writer : inserting;objects from Gallery +Oracle Open Office Writer : inserting;OLE objects +Oracle Open Office Writer : inserting;page breaks +Oracle Open Office Writer : inserting;page numbers +Oracle Open Office Writer : inserting;paragraph borders +Oracle Open Office Writer : inserting;paragraph bullets +Oracle Open Office Writer : inserting;paragraphs before/after tables +Oracle Open Office Writer : inserting;pictures +Oracle Open Office Writer : inserting;pictures in Gallery +Oracle Open Office Writer : inserting;pictures, by dialog +Oracle Open Office Writer : inserting;plug-ins +Oracle Open Office Writer : inserting;push buttons +Oracle Open Office Writer : inserting;rows/columns, by keyboard +Oracle Open Office Writer : inserting;scanned images +Oracle Open Office Writer : inserting;sections +Oracle Open Office Writer : inserting;special characters +Oracle Open Office Writer : inserting;tab stops +Oracle Open Office Writer : inserting;tables in text +Oracle Open Office Writer : inserting;text blocks +Oracle Open Office Writer : inserting;text documents +Oracle Open Office Writer : inserting;text frames +Oracle Open Office Writer : inserting;textures on chart bars +Oracle Open Office Writer : installing +Oracle Open Office Writer : installing;ActiveX control +Oracle Open Office Writer : installing;mobile device filters +Oracle Open Office Writer : installing;smart tags +Oracle Open Office Writer : installing;UNO components +Oracle Open Office Writer : installing;XML filters +Oracle Open Office Writer : instructions +Oracle Open Office Writer : instructions;general +Oracle Open Office Writer : instructions;Oracle Open Office Writer +Oracle Open Office Writer : Internet +Oracle Open Office Writer : Internet;checking for updates +Oracle Open Office Writer : Internet;Internet Explorer for displaying Oracle Open Office documents +Oracle Open Office Writer : Internet;presentations +Oracle Open Office Writer : Internet;starting searches +Oracle Open Office Writer : Internet glossary +Oracle Open Office Writer : interrupting numbered lists +Oracle Open Office Writer : invert filter +Oracle Open Office Writer : invisible areas +Oracle Open Office Writer : invisible characters +Oracle Open Office Writer : invisible characters;finding +Oracle Open Office Writer : italic text +Oracle Open Office Writer : iterative references in spreadsheets +Oracle Open Office Writer : Java +Oracle Open Office Writer : Java;definition +Oracle Open Office Writer : Java;setting options +Oracle Open Office Writer : JDBC +Oracle Open Office Writer : JDBC;databases (Base) +Oracle Open Office Writer : JDBC;definition +Oracle Open Office Writer : joining +Oracle Open Office Writer : joining;numbered lists +Oracle Open Office Writer : joining;paragraphs +Oracle Open Office Writer : joining;tables (Base) +Oracle Open Office Writer : joins in databases (Base) +Oracle Open Office Writer : jumping +Oracle Open Office Writer : jumping;to bookmarks +Oracle Open Office Writer : jumping;to text elements +Oracle Open Office Writer : justifying text +Oracle Open Office Writer : juxtaposing tables +Oracle Open Office Writer : kerning +Oracle Open Office Writer : kerning;Asian texts +Oracle Open Office Writer : kerning;definition +Oracle Open Office Writer : kerning;in characters +Oracle Open Office Writer : key fields for relations (Base) +Oracle Open Office Writer : keyboard +Oracle Open Office Writer : keyboard;accessibility Oracle Open Office Writer +Oracle Open Office Writer : keyboard;adding or deleting rows/columns +Oracle Open Office Writer : keyboard;assigning/editing shortcut keys +Oracle Open Office Writer : keyboard;bold formatting +Oracle Open Office Writer : keyboard;general commands +Oracle Open Office Writer : keyboard;modifying the behavior of rows/columns +Oracle Open Office Writer : keyboard;navigating and selecting in text +Oracle Open Office Writer : keyboard;removing numbering +Oracle Open Office Writer : keyboard;resizing rows/columns +Oracle Open Office Writer : keys +Oracle Open Office Writer : keys;adding push buttons +Oracle Open Office Writer : keys;primary keys (Base) +Oracle Open Office Writer : kiosk export +Oracle Open Office Writer : labels +Oracle Open Office Writer : labels;creating and synchronizing +Oracle Open Office Writer : labels;for charts +Oracle Open Office Writer : labels;for draw objects +Oracle Open Office Writer : labels;form functions +Oracle Open Office Writer : labels;from databases +Oracle Open Office Writer : labels, see also names/callouts +Oracle Open Office Writer : landscape and portrait +Oracle Open Office Writer : languages +Oracle Open Office Writer : languages;activating modules +Oracle Open Office Writer : languages;Asian support +Oracle Open Office Writer : languages;complex text layout +Oracle Open Office Writer : languages;locale settings +Oracle Open Office Writer : languages;recognition of +Oracle Open Office Writer : languages;selecting for text +Oracle Open Office Writer : languages;setting options +Oracle Open Office Writer : languages;spellcheck +Oracle Open Office Writer : languages;spellchecking and formatting +Oracle Open Office Writer : large handles (Writer) +Oracle Open Office Writer : large icons +Oracle Open Office Writer : layer arrangement +Oracle Open Office Writer : layout +Oracle Open Office Writer : layout;importing Word documents +Oracle Open Office Writer : layout;pages +Oracle Open Office Writer : LDAP server +Oracle Open Office Writer : LDAP server;address books (Base) +Oracle Open Office Writer : LDAP server;sign on options +Oracle Open Office Writer : leading between paragraphs +Oracle Open Office Writer : left alignment of paragraphs +Oracle Open Office Writer : left joins (Base) +Oracle Open Office Writer : Left Page page style +Oracle Open Office Writer : legends +Oracle Open Office Writer : legends;charts +Oracle Open Office Writer : legends;draw objects +Oracle Open Office Writer : legends;rounding corners +Oracle Open Office Writer : legends, see also captions +Oracle Open Office Writer : Letter Wizard +Oracle Open Office Writer : letters +Oracle Open Office Writer : letters;creating form letters +Oracle Open Office Writer : letters;inserting envelopes +Oracle Open Office Writer : levels +Oracle Open Office Writer : levels;changing outline levels +Oracle Open Office Writer : levels;depth stagger +Oracle Open Office Writer : levels;macro security +Oracle Open Office Writer : lexicon, see thesaurus +Oracle Open Office Writer : limits of tables (Writer) +Oracle Open Office Writer : line breaks +Oracle Open Office Writer : line breaks;in cells +Oracle Open Office Writer : line breaks;removing +Oracle Open Office Writer : line charts +Oracle Open Office Writer : line numbers +Oracle Open Office Writer : line spacing +Oracle Open Office Writer : line spacing;context menu in paragraphs +Oracle Open Office Writer : line spacing;paragraph +Oracle Open Office Writer : line styles +Oracle Open Office Writer : line styles;applying +Oracle Open Office Writer : line styles;defining +Oracle Open Office Writer : lines +Oracle Open Office Writer : lines;automatic drawing on/off +Oracle Open Office Writer : lines;defining ends +Oracle Open Office Writer : lines;draw functions +Oracle Open Office Writer : lines;drawing in text +Oracle Open Office Writer : lines;editing points +Oracle Open Office Writer : lines;footnotes/endnotes +Oracle Open Office Writer : lines;inserting horizontal lines +Oracle Open Office Writer : lines;removing automatic lines +Oracle Open Office Writer : lines;under headers/above footers +Oracle Open Office Writer : lines of text +Oracle Open Office Writer : lines of text;alignment +Oracle Open Office Writer : lines of text;indents +Oracle Open Office Writer : lines of text;numbering +Oracle Open Office Writer : lines of text;register-true +Oracle Open Office Writer : lines of text;sorting paragraphs +Oracle Open Office Writer : links +Oracle Open Office Writer : links;between cells and controls +Oracle Open Office Writer : links;by drag and drop +Oracle Open Office Writer : links;character formats +Oracle Open Office Writer : links;definition +Oracle Open Office Writer : links;editing hyperlinks +Oracle Open Office Writer : links;inserting +Oracle Open Office Writer : links;inserting sections +Oracle Open Office Writer : links;inserting text documents as +Oracle Open Office Writer : links;modifying +Oracle Open Office Writer : links;opening files with +Oracle Open Office Writer : links;relational databases (Base) +Oracle Open Office Writer : links;text frames +Oracle Open Office Writer : links;turning off automatic recognition +Oracle Open Office Writer : links;updating options (Writer) +Oracle Open Office Writer : links;updating specific links +Oracle Open Office Writer : list box creation +Oracle Open Office Writer : lists +Oracle Open Office Writer : lists;automatic numbering +Oracle Open Office Writer : lists;AutoText shortcuts +Oracle Open Office Writer : lists;changing levels +Oracle Open Office Writer : lists;combining numbered lists +Oracle Open Office Writer : lists;data assigned to controls +Oracle Open Office Writer : lists;registered databases (Base) +Oracle Open Office Writer : lists;regular expressions +Oracle Open Office Writer : lists;removing/interrupting numbering +Oracle Open Office Writer : live presentations on the Internet +Oracle Open Office Writer : loading +Oracle Open Office Writer : loading;documents +Oracle Open Office Writer : loading;documents from other formats +Oracle Open Office Writer : loading;HTML documents, automatically +Oracle Open Office Writer : loading;Microsoft Office documents with VBA code +Oracle Open Office Writer : loading;reloading +Oracle Open Office Writer : loading;styles from other files +Oracle Open Office Writer : loading;XML files +Oracle Open Office Writer : locale settings +Oracle Open Office Writer : logarithmic scaling along axes +Oracle Open Office Writer : logical expressions +Oracle Open Office Writer : lowercase letters +Oracle Open Office Writer : lowercase letters;font effects +Oracle Open Office Writer : lowercase letters;text +Oracle Open Office Writer : lowering outline levels +Oracle Open Office Writer : Macro Wizard (Base) +Oracle Open Office Writer : macros +Oracle Open Office Writer : macros;assigning to events in forms +Oracle Open Office Writer : macros;attaching new (Base) +Oracle Open Office Writer : macros;in MS Office documents +Oracle Open Office Writer : macros;interrupting +Oracle Open Office Writer : macros;organizing +Oracle Open Office Writer : macros;recording +Oracle Open Office Writer : macros;security +Oracle Open Office Writer : macros;security levels +Oracle Open Office Writer : macros;security warning dialog +Oracle Open Office Writer : macros;selecting security warnings +Oracle Open Office Writer : magnifiers +Oracle Open Office Writer : mail merge +Oracle Open Office Writer : manual hyphenation in text +Oracle Open Office Writer : manual numbering in text +Oracle Open Office Writer : manual page breaks +Oracle Open Office Writer : marginal numbers on text pages +Oracle Open Office Writer : margins +Oracle Open Office Writer : margins;pages +Oracle Open Office Writer : margins;setting with the mouse +Oracle Open Office Writer : margins;shadows +Oracle Open Office Writer : marking changes +Oracle Open Office Writer : marking, see selecting +Oracle Open Office Writer : master documents +Oracle Open Office Writer : master documents;creating/editing/exporting +Oracle Open Office Writer : master documents;indexes +Oracle Open Office Writer : master documents;properties +Oracle Open Office Writer : matching conditional text in fields +Oracle Open Office Writer : Math formula editor +Oracle Open Office Writer : mean value lines in charts +Oracle Open Office Writer : measurement units +Oracle Open Office Writer : measurement units;changing on rulers +Oracle Open Office Writer : measurement units;converting +Oracle Open Office Writer : measurement units;selecting +Oracle Open Office Writer : Media Player window +Oracle Open Office Writer : menus +Oracle Open Office Writer : menus;activating context menus +Oracle Open Office Writer : menus;assigning macros +Oracle Open Office Writer : menus;customizing +Oracle Open Office Writer : merging +Oracle Open Office Writer : merging;cells +Oracle Open Office Writer : merging;cells, by keyboard +Oracle Open Office Writer : merging;documents +Oracle Open Office Writer : merging;indexes +Oracle Open Office Writer : merging;numbered lists +Oracle Open Office Writer : merging;tables +Oracle Open Office Writer : META tags +Oracle Open Office Writer : metrics +Oracle Open Office Writer : metrics;converting +Oracle Open Office Writer : metrics;document formatting (Writer) +Oracle Open Office Writer : metrics;in sheets +Oracle Open Office Writer : Microsoft Office +Oracle Open Office Writer : Microsoft Office;Access databases (base) +Oracle Open Office Writer : Microsoft Office;as default file format +Oracle Open Office Writer : Microsoft Office;document import restrictions +Oracle Open Office Writer : Microsoft Office;feature comparisons +Oracle Open Office Writer : Microsoft Office;importing password protected files +Oracle Open Office Writer : Microsoft Office;importing Word documents +Oracle Open Office Writer : Microsoft Office;importing/exporting VBA code +Oracle Open Office Writer : Microsoft Office;new users information +Oracle Open Office Writer : Microsoft Office;opening Microsoft documents +Oracle Open Office Writer : Microsoft Office;reassigning document types +Oracle Open Office Writer : migrating macros (Base) +Oracle Open Office Writer : mirrored page layout +Oracle Open Office Writer : mobile device filters +Oracle Open Office Writer : models in XForms +Oracle Open Office Writer : modifying, see changing +Oracle Open Office Writer : months +Oracle Open Office Writer : months;automatically completing +Oracle Open Office Writer : more controls +Oracle Open Office Writer : mosaic filter +Oracle Open Office Writer : mouse +Oracle Open Office Writer : mouse;moving and copying text +Oracle Open Office Writer : mouse;pointers when using drag and drop +Oracle Open Office Writer : mouse;positioning +Oracle Open Office Writer : movies +Oracle Open Office Writer : moving +Oracle Open Office Writer : moving;headings +Oracle Open Office Writer : moving;objects and frames +Oracle Open Office Writer : moving;tab stops on ruler +Oracle Open Office Writer : moving;text sections +Oracle Open Office Writer : moving;toolbars +Oracle Open Office Writer : moving;using guide lines in presentations +Oracle Open Office Writer : MS ADO interface (Base) +Oracle Open Office Writer : multi-column text +Oracle Open Office Writer : multi-line titles in forms +Oracle Open Office Writer : multi-page tables +Oracle Open Office Writer : multi-page view of documents +Oracle Open Office Writer : multiple documents +Oracle Open Office Writer : multiple documents;indexes +Oracle Open Office Writer : multiple documents;opening +Oracle Open Office Writer : multiple selection +Oracle Open Office Writer : music +Oracle Open Office Writer : My Documents folder +Oracle Open Office Writer : My Documents folder;changing work directory +Oracle Open Office Writer : My Documents folder;opening +Oracle Open Office Writer : MySQL databases (Base) +Oracle Open Office Writer : names +Oracle Open Office Writer : names;chapter names in headers +Oracle Open Office Writer : names;multi-line titles +Oracle Open Office Writer : names;objects +Oracle Open Office Writer : names, see also labels/callouts +Oracle Open Office Writer : namespace organization in XForms +Oracle Open Office Writer : native SQL (Base) +Oracle Open Office Writer : navigating +Oracle Open Office Writer : navigating;in documents +Oracle Open Office Writer : navigating;in text, with keyboard +Oracle Open Office Writer : Navigation bar +Oracle Open Office Writer : Navigation bar;controls +Oracle Open Office Writer : Navigation bar;forms +Oracle Open Office Writer : Navigator +Oracle Open Office Writer : Navigator;comments +Oracle Open Office Writer : Navigator;contents as lists +Oracle Open Office Writer : Navigator;docking +Oracle Open Office Writer : Navigator;docking and resizing +Oracle Open Office Writer : Navigator;heading levels and chapters +Oracle Open Office Writer : Navigator;inserting hyperlinks +Oracle Open Office Writer : Navigator;master documents +Oracle Open Office Writer : Navigator;overview in texts +Oracle Open Office Writer : Navigator;working with +Oracle Open Office Writer : net charts +Oracle Open Office Writer : network identity options +Oracle Open Office Writer : networks and AutoText directories +Oracle Open Office Writer : new databases +Oracle Open Office Writer : new documents +Oracle Open Office Writer : new lines in cells +Oracle Open Office Writer : new page styles from selection +Oracle Open Office Writer : new windows +Oracle Open Office Writer : next page number in footers +Oracle Open Office Writer : non-breaking dashes +Oracle Open Office Writer : non-breaking spaces (Writer) +Oracle Open Office Writer : non-printing characters (Writer) +Oracle Open Office Writer : non-printing text +Oracle Open Office Writer : number formats +Oracle Open Office Writer : number formats;codes +Oracle Open Office Writer : number formats;formats +Oracle Open Office Writer : number formats;recognition in text tables +Oracle Open Office Writer : number of characters +Oracle Open Office Writer : number of pages +Oracle Open Office Writer : number of sheets +Oracle Open Office Writer : number of tables +Oracle Open Office Writer : number of words +Oracle Open Office Writer : numbering +Oracle Open Office Writer : numbering;captions +Oracle Open Office Writer : numbering;changing the level of +Oracle Open Office Writer : numbering;combining +Oracle Open Office Writer : numbering;headings +Oracle Open Office Writer : numbering;lines +Oracle Open Office Writer : numbering;lists, while typing +Oracle Open Office Writer : numbering;manually/by styles +Oracle Open Office Writer : numbering;options +Oracle Open Office Writer : numbering;pages +Oracle Open Office Writer : numbering;paragraphs, on and off +Oracle Open Office Writer : numbering;quotations/similar items +Oracle Open Office Writer : numbering;removing/interrupting +Oracle Open Office Writer : numbering;style categories +Oracle Open Office Writer : numbering;turning off +Oracle Open Office Writer : numbering;using automatically +Oracle Open Office Writer : numbers +Oracle Open Office Writer : numbers;automatic recognition in text tables +Oracle Open Office Writer : numbers;date, time and currency formats +Oracle Open Office Writer : numbers;line numbering +Oracle Open Office Writer : numbers;lists +Oracle Open Office Writer : numerical fields in forms +Oracle Open Office Writer : objects +Oracle Open Office Writer : objects;always moveable (Impress/Draw) +Oracle Open Office Writer : objects;anchoring options +Oracle Open Office Writer : objects;arranging within stacks +Oracle Open Office Writer : objects;captioning +Oracle Open Office Writer : objects;captioning automatically +Oracle Open Office Writer : objects;contour wrap +Oracle Open Office Writer : objects;copying when moving in presentations +Oracle Open Office Writer : objects;cross-referencing +Oracle Open Office Writer : objects;defining borders +Oracle Open Office Writer : objects;defining hyperlinks +Oracle Open Office Writer : objects;definition +Oracle Open Office Writer : objects;displaying in spreadsheets +Oracle Open Office Writer : objects;displaying in text documents +Oracle Open Office Writer : objects;editing +Oracle Open Office Writer : objects;finding by Navigator +Oracle Open Office Writer : objects;inserting from Gallery +Oracle Open Office Writer : objects;inserting OLE objects +Oracle Open Office Writer : objects;moving and resizing with keyboard +Oracle Open Office Writer : objects;moving and resizing with mouse +Oracle Open Office Writer : objects;naming +Oracle Open Office Writer : objects;opening +Oracle Open Office Writer : objects;properties of charts +Oracle Open Office Writer : objects;quickly moving to +Oracle Open Office Writer : objects;quickly moving to, within text +Oracle Open Office Writer : objects;titles and descriptions +Oracle Open Office Writer : ODBC +Oracle Open Office Writer : ODBC;database (Base) +Oracle Open Office Writer : ODBC;definition +Oracle Open Office Writer : ODF file formats +Oracle Open Office Writer : Office +Oracle Open Office Writer : Office;Microsoft Office and Oracle Open Office +Oracle Open Office Writer : OLE +Oracle Open Office Writer : OLE;definition +Oracle Open Office Writer : OLE objects +Oracle Open Office Writer : OLE objects;arranging within stacks +Oracle Open Office Writer : OLE objects;borders +Oracle Open Office Writer : OLE objects;captions (Writer) +Oracle Open Office Writer : OLE objects;cross-referencing +Oracle Open Office Writer : OLE objects;inserting +Oracle Open Office Writer : OLE objects;inserting tables in +Oracle Open Office Writer : OLE objects;number of +Oracle Open Office Writer : OLE objects;protecting +Oracle Open Office Writer : one and a half line spacing in text +Oracle Open Office Writer : online feedback options +Oracle Open Office Writer : online registration +Oracle Open Office Writer : online update options +Oracle Open Office Writer : online updates +Oracle Open Office Writer : online updates;checking automatically +Oracle Open Office Writer : online updates;checking manually +Oracle Open Office Writer : OpenDocument file formats +Oracle Open Office Writer : OpenGL +Oracle Open Office Writer : OpenGL;definition +Oracle Open Office Writer : opening +Oracle Open Office Writer : opening;context menus +Oracle Open Office Writer : opening;database files +Oracle Open Office Writer : opening;dialog settings +Oracle Open Office Writer : opening;documents +Oracle Open Office Writer : opening;documents from other formats +Oracle Open Office Writer : opening;documents on WebDAV server +Oracle Open Office Writer : opening;documents with links +Oracle Open Office Writer : opening;files, with placeholders +Oracle Open Office Writer : opening;forms +Oracle Open Office Writer : opening;Microsoft Office files +Oracle Open Office Writer : opening;mobile device documents +Oracle Open Office Writer : opening;objects +Oracle Open Office Writer : opening;reports +Oracle Open Office Writer : opening;several files +Oracle Open Office Writer : opening;XForms +Oracle Open Office Writer : operators +Oracle Open Office Writer : operators;in formulas +Oracle Open Office Writer : operators;standard filters +Oracle Open Office Writer : optional hyphens (Writer) +Oracle Open Office Writer : options +Oracle Open Office Writer : options;accessibility +Oracle Open Office Writer : options;appearance +Oracle Open Office Writer : options;compatibility (Writer) +Oracle Open Office Writer : options;improvement program +Oracle Open Office Writer : options;network identity +Oracle Open Office Writer : options;online update +Oracle Open Office Writer : options;smart tags +Oracle Open Office Writer : options;tools +Oracle Open Office Writer : Oracle databases (base) +Oracle Open Office Writer : Oracle Open Office Base data sources +Oracle Open Office Writer : Oracle Open Office Basic scripts in HTML documents +Oracle Open Office Writer : Oracle Open Office documents +Oracle Open Office Writer : Oracle Open Office documents;mobile device filters +Oracle Open Office Writer : Oracle Open Office documents;viewing and editing in Internet Explorer +Oracle Open Office Writer : Oracle Open Office Math start +Oracle Open Office Writer : Oracle Open Office Writer +Oracle Open Office Writer : Oracle Open Office Writer;instructions +Oracle Open Office Writer : Oracle Open Office Writer;special HTML tags +Oracle Open Office Writer : order of chart data +Oracle Open Office Writer : ordering +Oracle Open Office Writer : ordering;objects +Oracle Open Office Writer : ordering;printing in reverse order +Oracle Open Office Writer : ordinal numbers +Oracle Open Office Writer : ordinal numbers;replacing +Oracle Open Office Writer : organizing +Oracle Open Office Writer : organizing;footnotes +Oracle Open Office Writer : organizing;macros and scripts +Oracle Open Office Writer : organizing;namespaces in XForms +Oracle Open Office Writer : organizing;styles +Oracle Open Office Writer : organizing;templates +Oracle Open Office Writer : organizing;templates (guide) +Oracle Open Office Writer : orientation of pages +Oracle Open Office Writer : original size +Oracle Open Office Writer : original size;printing in Oracle Open Office Math +Oracle Open Office Writer : original size;restoring after cropping +Oracle Open Office Writer : orphans +Oracle Open Office Writer : outlines +Oracle Open Office Writer : outlines;arranging chapters +Oracle Open Office Writer : outlines;font effects +Oracle Open Office Writer : outlines;numbering +Oracle Open Office Writer : outlines;outline symbols +Oracle Open Office Writer : outlines;sending to presentations +Oracle Open Office Writer : overviews +Oracle Open Office Writer : overviews;Navigator in text documents +Oracle Open Office Writer : overviews;printing multi-page view +Oracle Open Office Writer : overwrite mode +Oracle Open Office Writer : packages, see extensions +Oracle Open Office Writer : page breaks +Oracle Open Office Writer : page breaks;displaying (Calc) +Oracle Open Office Writer : page breaks;inserting and deleting +Oracle Open Office Writer : page breaks;tables +Oracle Open Office Writer : page counts +Oracle Open Office Writer : page formats +Oracle Open Office Writer : page formats;changing individual pages +Oracle Open Office Writer : page formats;maximizing +Oracle Open Office Writer : page formats;restriction +Oracle Open Office Writer : page margins on rulers +Oracle Open Office Writer : page numbers +Oracle Open Office Writer : page numbers;continuation pages +Oracle Open Office Writer : page numbers;footers +Oracle Open Office Writer : page numbers;inserting/defining/formatting +Oracle Open Office Writer : page styles +Oracle Open Office Writer : page styles;backgrounds +Oracle Open Office Writer : page styles;changing +Oracle Open Office Writer : page styles;changing from selection +Oracle Open Office Writer : page styles;creating and applying +Oracle Open Office Writer : page styles;editing/applying with statusbar +Oracle Open Office Writer : page styles;left and right pages +Oracle Open Office Writer : page styles;orientation/scope +Oracle Open Office Writer : page styles;page numbering +Oracle Open Office Writer : page styles;style categories +Oracle Open Office Writer : pages +Oracle Open Office Writer : pages;backgrounds +Oracle Open Office Writer : pages;backgrounds in all applications +Oracle Open Office Writer : pages;continuation pages +Oracle Open Office Writer : pages;defining borders +Oracle Open Office Writer : pages;formatting and numbering +Oracle Open Office Writer : pages;inserting/deleting page breaks +Oracle Open Office Writer : pages;jumping to +Oracle Open Office Writer : pages;left and right pages +Oracle Open Office Writer : pages;number of +Oracle Open Office Writer : pages;numbers and count of +Oracle Open Office Writer : pages;orientation +Oracle Open Office Writer : pages;previews +Oracle Open Office Writer : pages;printing multiple on one sheet +Oracle Open Office Writer : pages;printing page names in presentations +Oracle Open Office Writer : pages;register-true +Oracle Open Office Writer : pages;scaling +Oracle Open Office Writer : pages;selecting one to print +Oracle Open Office Writer : paint box +Oracle Open Office Writer : paint can symbol +Oracle Open Office Writer : Paintbrush +Oracle Open Office Writer : pair kerning +Oracle Open Office Writer : Palm file filters +Oracle Open Office Writer : paper formats +Oracle Open Office Writer : paper orientation +Oracle Open Office Writer : paper size warning +Oracle Open Office Writer : paper tray selection +Oracle Open Office Writer : paper trays +Oracle Open Office Writer : paragraph marks +Oracle Open Office Writer : paragraph marks;displaying (Writer) +Oracle Open Office Writer : paragraph marks;removing +Oracle Open Office Writer : paragraph marks;searching +Oracle Open Office Writer : paragraph styles +Oracle Open Office Writer : paragraph styles;languages +Oracle Open Office Writer : paragraph styles;modifying basic fonts +Oracle Open Office Writer : paragraph styles;numbering +Oracle Open Office Writer : paragraph styles;style categories +Oracle Open Office Writer : paragraphs +Oracle Open Office Writer : paragraphs;alignment +Oracle Open Office Writer : paragraphs;Asian typography +Oracle Open Office Writer : paragraphs;automatic numbering +Oracle Open Office Writer : paragraphs;backgrounds +Oracle Open Office Writer : paragraphs;bulleted +Oracle Open Office Writer : paragraphs;defining borders +Oracle Open Office Writer : paragraphs;hidden paragraphs (Writer) +Oracle Open Office Writer : paragraphs;hiding +Oracle Open Office Writer : paragraphs;increasing indents of +Oracle Open Office Writer : paragraphs;indents +Oracle Open Office Writer : paragraphs;indents, margins and columns +Oracle Open Office Writer : paragraphs;inserting before/after tables +Oracle Open Office Writer : paragraphs;inserting bullets +Oracle Open Office Writer : paragraphs;joining +Oracle Open Office Writer : paragraphs;keeping together at breaks +Oracle Open Office Writer : paragraphs;line numbers +Oracle Open Office Writer : paragraphs;moving by keyboard +Oracle Open Office Writer : paragraphs;numbering automatically +Oracle Open Office Writer : paragraphs;numbering non-consecutive +Oracle Open Office Writer : paragraphs;numbering on/off +Oracle Open Office Writer : paragraphs;register-true +Oracle Open Office Writer : paragraphs;removing blank ones +Oracle Open Office Writer : paragraphs;spacing +Oracle Open Office Writer : paragraphs;tab stops +Oracle Open Office Writer : parameters +Oracle Open Office Writer : parameters;command line +Oracle Open Office Writer : parameters;queries (Base) +Oracle Open Office Writer : password as document property +Oracle Open Office Writer : passwords for protecting contents +Oracle Open Office Writer : pasting +Oracle Open Office Writer : pasting;cell ranges +Oracle Open Office Writer : pasting;cell ranges from spreadsheets +Oracle Open Office Writer : pasting;cut/copied text sections +Oracle Open Office Writer : pasting;data from text documents +Oracle Open Office Writer : pasting;draw objects +Oracle Open Office Writer : pasting;draw objects from other documents +Oracle Open Office Writer : pasting;formatted/unformatted text +Oracle Open Office Writer : pasting;from data source view +Oracle Open Office Writer : pasting;from data sources to Oracle Open Office Calc +Oracle Open Office Writer : pasting;pictures from other documents +Oracle Open Office Writer : pasting;results of formulas +Oracle Open Office Writer : pasting;sheet areas in text documents +Oracle Open Office Writer : pasting;to Gallery +Oracle Open Office Writer : paths +Oracle Open Office Writer : paths;changing work directory +Oracle Open Office Writer : paths;defaults +Oracle Open Office Writer : pattern editor +Oracle Open Office Writer : pattern fields +Oracle Open Office Writer : pattern fields;form functions +Oracle Open Office Writer : patterns for objects +Oracle Open Office Writer : PDF +Oracle Open Office Writer : PDF;export +Oracle Open Office Writer : PDF;PostScript to PDF converter, UNIX +Oracle Open Office Writer : personal data input +Oracle Open Office Writer : phonetic guide +Oracle Open Office Writer : picklist creation +Oracle Open Office Writer : pictures +Oracle Open Office Writer : pictures;adding to Gallery +Oracle Open Office Writer : pictures;anchoring options +Oracle Open Office Writer : pictures;arranging within stacks +Oracle Open Office Writer : pictures;assigning macros +Oracle Open Office Writer : pictures;backgrounds +Oracle Open Office Writer : pictures;borders +Oracle Open Office Writer : pictures;captions (Writer) +Oracle Open Office Writer : pictures;changing paths +Oracle Open Office Writer : pictures;cropping and zooming +Oracle Open Office Writer : pictures;cross-referencing +Oracle Open Office Writer : pictures;defining hyperlinks +Oracle Open Office Writer : pictures;displaying in Calc +Oracle Open Office Writer : pictures;displaying in Writer (Writer) +Oracle Open Office Writer : pictures;do not show +Oracle Open Office Writer : pictures;drag and drop between documents +Oracle Open Office Writer : pictures;drawing +Oracle Open Office Writer : pictures;editing +Oracle Open Office Writer : pictures;filters +Oracle Open Office Writer : pictures;ImageMap +Oracle Open Office Writer : pictures;inserting automatically +Oracle Open Office Writer : pictures;inserting by dialog +Oracle Open Office Writer : pictures;inserting from Draw +Oracle Open Office Writer : pictures;inserting from Gallery +Oracle Open Office Writer : pictures;inserting from Gallery into text +Oracle Open Office Writer : pictures;inserting options +Oracle Open Office Writer : pictures;number of +Oracle Open Office Writer : pictures;printing +Oracle Open Office Writer : pictures;scaling/resizing +Oracle Open Office Writer : pictures;scanning +Oracle Open Office Writer : pie charts +Oracle Open Office Writer : pie charts;options +Oracle Open Office Writer : pie charts;types +Oracle Open Office Writer : pixel editor +Oracle Open Office Writer : pixel graphics +Oracle Open Office Writer : pixel graphics;inserting and editing +Oracle Open Office Writer : pixel patterns +Oracle Open Office Writer : placeholders +Oracle Open Office Writer : placeholders;in SQL queries +Oracle Open Office Writer : placeholders;on opening files +Oracle Open Office Writer : placing toolbars +Oracle Open Office Writer : playing movies and sound files +Oracle Open Office Writer : plotting data as charts +Oracle Open Office Writer : plug-ins +Oracle Open Office Writer : plug-ins;activating and deactivating +Oracle Open Office Writer : plug-ins;definition +Oracle Open Office Writer : plug-ins;inserting +Oracle Open Office Writer : pocket device appliances +Oracle Open Office Writer : Pocket PC file filters +Oracle Open Office Writer : points +Oracle Open Office Writer : points;reducing editing points when snapping (Impress/Draw) +Oracle Open Office Writer : polygon drawing +Oracle Open Office Writer : pop-art filter +Oracle Open Office Writer : portable document format +Oracle Open Office Writer : portrait and landscape +Oracle Open Office Writer : positioning +Oracle Open Office Writer : positioning;axes +Oracle Open Office Writer : positioning;draw objects and controls +Oracle Open Office Writer : positioning;fonts +Oracle Open Office Writer : positioning;objects +Oracle Open Office Writer : positioning;objects (guide) +Oracle Open Office Writer : positioning;toolbars +Oracle Open Office Writer : post method for form transmissions +Oracle Open Office Writer : posterizing filter +Oracle Open Office Writer : PostScript +Oracle Open Office Writer : PostScript;creating files +Oracle Open Office Writer : PostScript;PDF converter, UNIX +Oracle Open Office Writer : PowerPoint export +Oracle Open Office Writer : precision as shown (Calc) +Oracle Open Office Writer : predefining fonts +Oracle Open Office Writer : predictive text, see also AutoCorrect function/AutoFill function/AutoInput function/word completion/text completion +Oracle Open Office Writer : presentations +Oracle Open Office Writer : presentations;creating/opening +Oracle Open Office Writer : presentations;inserting spreadsheet cells +Oracle Open Office Writer : presentations;live on the Internet +Oracle Open Office Writer : presentations;print menu +Oracle Open Office Writer : presentations;saving +Oracle Open Office Writer : presentations;saving automatically +Oracle Open Office Writer : presentations;saving in other formats +Oracle Open Office Writer : presentations;sending as e-mail +Oracle Open Office Writer : presentations;starting with wizard +Oracle Open Office Writer : presentations;wizards +Oracle Open Office Writer : press buttons, see push buttons +Oracle Open Office Writer : previews +Oracle Open Office Writer : previews;book preview +Oracle Open Office Writer : previews;fonts lists +Oracle Open Office Writer : previews;print layouts +Oracle Open Office Writer : primary keys +Oracle Open Office Writer : primary keys;defining +Oracle Open Office Writer : primary keys;design view +Oracle Open Office Writer : primary keys;inserting (Base) +Oracle Open Office Writer : print area selection +Oracle Open Office Writer : print layout checks +Oracle Open Office Writer : printer metrics for document formatting (Writer) +Oracle Open Office Writer : printers +Oracle Open Office Writer : printers;adding, UNIX +Oracle Open Office Writer : printers;choosing +Oracle Open Office Writer : printers;default printer +Oracle Open Office Writer : printers;faxes under UNIX +Oracle Open Office Writer : printers;maximum page formats +Oracle Open Office Writer : printers;paper trays +Oracle Open Office Writer : printers;properties +Oracle Open Office Writer : printing +Oracle Open Office Writer : printing;AutoText shortcuts +Oracle Open Office Writer : printing;black and white +Oracle Open Office Writer : printing;brochures +Oracle Open Office Writer : printing;colors in grayscale +Oracle Open Office Writer : printing;comments +Oracle Open Office Writer : printing;copies +Oracle Open Office Writer : printing;creating individual jobs +Oracle Open Office Writer : printing;dates in presentations +Oracle Open Office Writer : printing;directly +Oracle Open Office Writer : printing;documents +Oracle Open Office Writer : printing;drawings defaults +Oracle Open Office Writer : printing;elements in text documents +Oracle Open Office Writer : printing;faster +Oracle Open Office Writer : printing;fitting to pages in Oracle Open Office Math +Oracle Open Office Writer : printing;fitting to pages in presentations +Oracle Open Office Writer : printing;formulas in Oracle Open Office Math +Oracle Open Office Writer : printing;hidden pages of presentations +Oracle Open Office Writer : printing;hiding text frames from printing +Oracle Open Office Writer : printing;in original size in Oracle Open Office Math +Oracle Open Office Writer : printing;individual brochures +Oracle Open Office Writer : printing;left/right pages +Oracle Open Office Writer : printing;multiple pages per sheet +Oracle Open Office Writer : printing;portrait/landscape format +Oracle Open Office Writer : printing;previews +Oracle Open Office Writer : printing;queries (Base) +Oracle Open Office Writer : printing;reverse order +Oracle Open Office Writer : printing;scaling in Oracle Open Office Math +Oracle Open Office Writer : printing;selections +Oracle Open Office Writer : printing;text always in black +Oracle Open Office Writer : printing;text in reverse order +Oracle Open Office Writer : printing;tiling pages in presentations +Oracle Open Office Writer : printing;transparencies +Oracle Open Office Writer : printing;warnings +Oracle Open Office Writer : printing;without scaling in presentations +Oracle Open Office Writer : printing speed +Oracle Open Office Writer : programming +Oracle Open Office Writer : programming;Oracle Open Office +Oracle Open Office Writer : programming;scripting +Oracle Open Office Writer : promoting heading levels +Oracle Open Office Writer : properties +Oracle Open Office Writer : properties;charts +Oracle Open Office Writer : properties;fields +Oracle Open Office Writer : properties;fields in databases +Oracle Open Office Writer : properties;files +Oracle Open Office Writer : properties;form controls +Oracle Open Office Writer : properties;forms +Oracle Open Office Writer : properties;hotspots +Oracle Open Office Writer : properties;printers +Oracle Open Office Writer : properties;smooth lines in line charts/XY charts +Oracle Open Office Writer : proportional distribution of tables +Oracle Open Office Writer : protected contents +Oracle Open Office Writer : protected dashes +Oracle Open Office Writer : protected database tables +Oracle Open Office Writer : protected documents +Oracle Open Office Writer : protected spaces +Oracle Open Office Writer : protected spaces;inserting +Oracle Open Office Writer : protected spaces;showing (Writer) +Oracle Open Office Writer : protecting +Oracle Open Office Writer : protecting;contents +Oracle Open Office Writer : protecting;recorded changes +Oracle Open Office Writer : protecting;sections +Oracle Open Office Writer : protecting;tables and sections +Oracle Open Office Writer : protecting;text flow +Oracle Open Office Writer : proxy settings +Oracle Open Office Writer : push buttons +Oracle Open Office Writer : push buttons;adding to documents +Oracle Open Office Writer : push buttons;creating +Oracle Open Office Writer : queries +Oracle Open Office Writer : queries;copying (Base) +Oracle Open Office Writer : queries;creating in design view (Base) +Oracle Open Office Writer : queries;creating in SQL view +Oracle Open Office Writer : queries;defining (Base) +Oracle Open Office Writer : queries;deleting table links (Base) +Oracle Open Office Writer : queries;editing in data source view +Oracle Open Office Writer : queries;formulating filter conditions (Base) +Oracle Open Office Writer : queries;joining tables (Base) +Oracle Open Office Writer : queries;missing elements (Base) +Oracle Open Office Writer : queries;overview (Base) +Oracle Open Office Writer : queries;parameter queries (Base) +Oracle Open Office Writer : queries;printing (Base) +Oracle Open Office Writer : Query Wizard (Base) +Oracle Open Office Writer : Quickstarter +Oracle Open Office Writer : quotation marks +Oracle Open Office Writer : quotation marks;changing automatically +Oracle Open Office Writer : quotes +Oracle Open Office Writer : quotes;custom +Oracle Open Office Writer : radar charts, see net charts +Oracle Open Office Writer : radio button creation +Oracle Open Office Writer : read-only documents +Oracle Open Office Writer : read-only documents;cursor +Oracle Open Office Writer : read-only documents;database tables on/off +Oracle Open Office Writer : read-only documents;editing +Oracle Open Office Writer : read-only documents;opening documents as +Oracle Open Office Writer : read-only items in Data Navigator +Oracle Open Office Writer : read-only sections +Oracle Open Office Writer : rearranging headings +Oracle Open Office Writer : recognition +Oracle Open Office Writer : recognition;languages +Oracle Open Office Writer : recognition;numbers +Oracle Open Office Writer : recognizing URLs automatically +Oracle Open Office Writer : recording +Oracle Open Office Writer : recording;changes +Oracle Open Office Writer : recording;macros +Oracle Open Office Writer : records +Oracle Open Office Writer : records;inserting comments +Oracle Open Office Writer : records;protecting +Oracle Open Office Writer : records;saving +Oracle Open Office Writer : records;searching in databases +Oracle Open Office Writer : rectangle drawing +Oracle Open Office Writer : rectangles with round corners +Oracle Open Office Writer : recursions in spreadsheets +Oracle Open Office Writer : redo command +Oracle Open Office Writer : reduced printing +Oracle Open Office Writer : reduced printing of multiple pages +Oracle Open Office Writer : reducing rows and columns in text tables +Oracle Open Office Writer : reference lines +Oracle Open Office Writer : references +Oracle Open Office Writer : references;displaying in color (Calc) +Oracle Open Office Writer : references;expanding (Calc) +Oracle Open Office Writer : references;in Writer tables +Oracle Open Office Writer : references;inserting cross-references +Oracle Open Office Writer : references;iterative (Calc) +Oracle Open Office Writer : references;modifying cross-references +Oracle Open Office Writer : refusing word completions +Oracle Open Office Writer : register-true +Oracle Open Office Writer : register-true;definition +Oracle Open Office Writer : register-true;pages and paragraphs +Oracle Open Office Writer : registering +Oracle Open Office Writer : registering;address books +Oracle Open Office Writer : registering;databases (Base) +Oracle Open Office Writer : registering;Oracle Open Office +Oracle Open Office Writer : regression curves in charts +Oracle Open Office Writer : regular expressions +Oracle Open Office Writer : regular expressions;list of +Oracle Open Office Writer : regular expressions;searching +Oracle Open Office Writer : rejecting word completions +Oracle Open Office Writer : related words in thesaurus +Oracle Open Office Writer : relational databases (Base) +Oracle Open Office Writer : relations +Oracle Open Office Writer : relations;creating and deleting (Base) +Oracle Open Office Writer : relations;joining tables (Base) +Oracle Open Office Writer : relations;properties (Base) +Oracle Open Office Writer : relative distribution of table cells +Oracle Open Office Writer : relative hyperlinks +Oracle Open Office Writer : relative saving of URLs +Oracle Open Office Writer : reloading +Oracle Open Office Writer : reloading;documents +Oracle Open Office Writer : reloading;HTML documents, automatically +Oracle Open Office Writer : remarks, see also comments +Oracle Open Office Writer : remote configurations +Oracle Open Office Writer : remove noise filter +Oracle Open Office Writer : removing +Oracle Open Office Writer : removing;bullets and numbering +Oracle Open Office Writer : removing;bullets in text documents +Oracle Open Office Writer : removing;cell protection in text documents +Oracle Open Office Writer : removing;form filters +Oracle Open Office Writer : removing;subdocuments +Oracle Open Office Writer : removing, see also deleting +Oracle Open Office Writer : reorganizing charts +Oracle Open Office Writer : repeating +Oracle Open Office Writer : repeating;commands +Oracle Open Office Writer : repeating;table headings after page breaks +Oracle Open Office Writer : replacement options +Oracle Open Office Writer : replacement table +Oracle Open Office Writer : replacing +Oracle Open Office Writer : replacing;AutoCorrect function +Oracle Open Office Writer : replacing;dashes +Oracle Open Office Writer : replacing;databases +Oracle Open Office Writer : replacing;fields, by text +Oracle Open Office Writer : replacing;objects from Gallery +Oracle Open Office Writer : replacing;ordinal numbers +Oracle Open Office Writer : replacing;tab stops (regular expressions) +Oracle Open Office Writer : replacing;text and text formats +Oracle Open Office Writer : Report Builder +Oracle Open Office Writer : reports +Oracle Open Office Writer : reports;creating +Oracle Open Office Writer : reports;error reports +Oracle Open Office Writer : reports;opening and editing +Oracle Open Office Writer : reports;templates +Oracle Open Office Writer : resetting +Oracle Open Office Writer : resetting;fonts +Oracle Open Office Writer : resetting;templates +Oracle Open Office Writer : resizing +Oracle Open Office Writer : resizing;aspect ratio +Oracle Open Office Writer : resizing;objects and frames, by keyboard +Oracle Open Office Writer : resizing;objects, by mouse +Oracle Open Office Writer : resizing;rows and columns in text tables +Oracle Open Office Writer : resizing;text frames, by mouse +Oracle Open Office Writer : resizing;windows +Oracle Open Office Writer : resizing, see also scaling/zooming +Oracle Open Office Writer : resolution when printing bitmaps +Oracle Open Office Writer : restoring +Oracle Open Office Writer : restoring;default formatting +Oracle Open Office Writer : restoring;editing +Oracle Open Office Writer : reversing printing order +Oracle Open Office Writer : review function +Oracle Open Office Writer : review function;accepting or rejecting changes +Oracle Open Office Writer : review function;comparing documents +Oracle Open Office Writer : review function;protecting records +Oracle Open Office Writer : review function;recording changes example +Oracle Open Office Writer : review function;tracking changes +Oracle Open Office Writer : rich text control +Oracle Open Office Writer : right alignment of paragraphs +Oracle Open Office Writer : right indents in paragraphs +Oracle Open Office Writer : right joins (Base) +Oracle Open Office Writer : right pages +Oracle Open Office Writer : right-to-left text +Oracle Open Office Writer : rising outline levels +Oracle Open Office Writer : rotating +Oracle Open Office Writer : rotating;3D text +Oracle Open Office Writer : rotating;text +Oracle Open Office Writer : round corners +Oracle Open Office Writer : rounding precision (Calc) +Oracle Open Office Writer : row breaks in text tables +Oracle Open Office Writer : row headers +Oracle Open Office Writer : row headers;displaying (Calc) +Oracle Open Office Writer : row headers;highlighting (Calc) +Oracle Open Office Writer : rows +Oracle Open Office Writer : rows;inserting in tables, using icon +Oracle Open Office Writer : rows;inserting/deleting in tables by keyboard +Oracle Open Office Writer : rows;register-true text +Oracle Open Office Writer : rows;selecting +Oracle Open Office Writer : rulers +Oracle Open Office Writer : rulers;default settings +Oracle Open Office Writer : rulers;measurement units +Oracle Open Office Writer : rulers;using rulers +Oracle Open Office Writer : rulers;visible in presentations +Oracle Open Office Writer : rules +Oracle Open Office Writer : running titles in headers +Oracle Open Office Writer : samples and templates +Oracle Open Office Writer : saving +Oracle Open Office Writer : saving;default file formats +Oracle Open Office Writer : saving;dialog settings +Oracle Open Office Writer : saving;documents +Oracle Open Office Writer : saving;documents for mobile devices +Oracle Open Office Writer : saving;documents in other formats +Oracle Open Office Writer : saving;documents, automatically +Oracle Open Office Writer : saving;in HTML format +Oracle Open Office Writer : saving;in Microsoft Office file format +Oracle Open Office Writer : saving;options +Oracle Open Office Writer : saving;templates +Oracle Open Office Writer : saving;to XML +Oracle Open Office Writer : saving;VBA code in Microsoft Office documents +Oracle Open Office Writer : saving;with password by default +Oracle Open Office Writer : saving as command +Oracle Open Office Writer : saving as command;precautions +Oracle Open Office Writer : scaling +Oracle Open Office Writer : scaling;axes +Oracle Open Office Writer : scaling;font sizes in user interface +Oracle Open Office Writer : scaling;objects +Oracle Open Office Writer : scaling;pictures +Oracle Open Office Writer : scaling;printing in Oracle Open Office Math +Oracle Open Office Writer : scaling;text frames, by mouse +Oracle Open Office Writer : scaling;text in charts +Oracle Open Office Writer : scaling;when printing presentations +Oracle Open Office Writer : scaling, see also zooming +Oracle Open Office Writer : scanning pictures +Oracle Open Office Writer : scatter charts +Oracle Open Office Writer : scope of page styles +Oracle Open Office Writer : screen +Oracle Open Office Writer : screen;full screen views +Oracle Open Office Writer : screen;scaling +Oracle Open Office Writer : screen magnifiers +Oracle Open Office Writer : screen readers +Oracle Open Office Writer : script organization +Oracle Open Office Writer : scrollbars +Oracle Open Office Writer : scrollbars;controls +Oracle Open Office Writer : scrollbars;displaying (Calc) +Oracle Open Office Writer : scrollbars;horizontal and vertical (Writer) +Oracle Open Office Writer : search criteria for database functions in cells +Oracle Open Office Writer : search engines +Oracle Open Office Writer : search engines;definition +Oracle Open Office Writer : search engines;selecting +Oracle Open Office Writer : searching +Oracle Open Office Writer : searching;all sheets +Oracle Open Office Writer : searching;cross-references +Oracle Open Office Writer : searching;databases +Oracle Open Office Writer : searching;form filters +Oracle Open Office Writer : searching;formats +Oracle Open Office Writer : searching;Internet +Oracle Open Office Writer : searching;repeating a search +Oracle Open Office Writer : searching;synonyms +Oracle Open Office Writer : searching;tables and forms +Oracle Open Office Writer : searching;with wildcards +Oracle Open Office Writer : searching, see also finding +Oracle Open Office Writer : secondary axes in charts +Oracle Open Office Writer : sections +Oracle Open Office Writer : sections;backgrounds +Oracle Open Office Writer : sections;columns in/use of +Oracle Open Office Writer : sections;defining conditions +Oracle Open Office Writer : sections;editing +Oracle Open Office Writer : sections;hiding +Oracle Open Office Writer : sections;inserting +Oracle Open Office Writer : sections;inserting external content +Oracle Open Office Writer : sections;inserting sections by DDE +Oracle Open Office Writer : sections;moving and copying +Oracle Open Office Writer : sections;protecting/unprotecting +Oracle Open Office Writer : security +Oracle Open Office Writer : security;digital signatures +Oracle Open Office Writer : security;options for documents with macros +Oracle Open Office Writer : security;protecting contents +Oracle Open Office Writer : security;security levels for macros +Oracle Open Office Writer : security;warning dialogs with macros +Oracle Open Office Writer : selecting +Oracle Open Office Writer : selecting;controls +Oracle Open Office Writer : selecting;measurement units +Oracle Open Office Writer : selecting;objects +Oracle Open Office Writer : selecting;paper trays +Oracle Open Office Writer : selecting;print areas +Oracle Open Office Writer : selecting;several files +Oracle Open Office Writer : selecting;tables +Oracle Open Office Writer : selecting;text, with keyboard +Oracle Open Office Writer : selection clipboard +Oracle Open Office Writer : selection frames +Oracle Open Office Writer : selection modes in text +Oracle Open Office Writer : sending +Oracle Open Office Writer : sending;AutoAbstract function in presentations +Oracle Open Office Writer : sending;documents as e-mail +Oracle Open Office Writer : sending;documents as faxes +Oracle Open Office Writer : separation, see hyphenation +Oracle Open Office Writer : separator lines +Oracle Open Office Writer : separator lines;AutoCorrect function +Oracle Open Office Writer : separator lines;defining +Oracle Open Office Writer : separators +Oracle Open Office Writer : separators;conditional +Oracle Open Office Writer : serial letters +Oracle Open Office Writer : Server Side ImageMap +Oracle Open Office Writer : settings +Oracle Open Office Writer : settings;direct cursor +Oracle Open Office Writer : settings;printers +Oracle Open Office Writer : settings;program configuration +Oracle Open Office Writer : settings;proxies +Oracle Open Office Writer : settings;views +Oracle Open Office Writer : settings;word completion +Oracle Open Office Writer : SGML +Oracle Open Office Writer : SGML;definition +Oracle Open Office Writer : shadows +Oracle Open Office Writer : shadows;areas +Oracle Open Office Writer : shadows;borders +Oracle Open Office Writer : shadows;characters +Oracle Open Office Writer : shadows;characters, using context menu +Oracle Open Office Writer : shadows;headers/footers +Oracle Open Office Writer : shapes +Oracle Open Office Writer : sharing documents +Oracle Open Office Writer : sharpening filter +Oracle Open Office Writer : sheet tabs +Oracle Open Office Writer : sheet tabs;displaying +Oracle Open Office Writer : sheets +Oracle Open Office Writer : sheets;searching all +Oracle Open Office Writer : shortcut keys +Oracle Open Office Writer : shortcut keys;assigning macros +Oracle Open Office Writer : shortcut keys;bold formatting +Oracle Open Office Writer : shortcut keys;charts +Oracle Open Office Writer : shortcut keys;general +Oracle Open Office Writer : shortcut keys;in databases +Oracle Open Office Writer : shortcut keys;in text documents +Oracle Open Office Writer : shortcut keys;Oracle Open Office accessibility +Oracle Open Office Writer : showing +Oracle Open Office Writer : showing;changes +Oracle Open Office Writer : showing;docked windows +Oracle Open Office Writer : showing;drawings and controls (Writer) +Oracle Open Office Writer : showing;live presentations on the Internet +Oracle Open Office Writer : showing;rulers +Oracle Open Office Writer : showing;toolbars +Oracle Open Office Writer : sideways orientation of pages +Oracle Open Office Writer : signing documents with digital signatures +Oracle Open Office Writer : similarity search +Oracle Open Office Writer : simple handles (Writer) +Oracle Open Office Writer : simplified Chinese +Oracle Open Office Writer : simplified Chinese;conversion to traditional Chinese +Oracle Open Office Writer : single sign on options +Oracle Open Office Writer : single-line spacing in text +Oracle Open Office Writer : sizes +Oracle Open Office Writer : sizes;draw objects +Oracle Open Office Writer : sizes;pictures +Oracle Open Office Writer : slanting draw objects +Oracle Open Office Writer : small capitals +Oracle Open Office Writer : small capitals (guide) +Oracle Open Office Writer : small icons +Oracle Open Office Writer : smart tag configuration +Oracle Open Office Writer : smart tags +Oracle Open Office Writer : smooth scrolling (Writer) +Oracle Open Office Writer : smoothing filter +Oracle Open Office Writer : snap grid defaults (Writer/Calc) +Oracle Open Office Writer : snapping in presentations and drawings +Oracle Open Office Writer : solarization filter +Oracle Open Office Writer : sort lists +Oracle Open Office Writer : sort lists;copying to in Calc +Oracle Open Office Writer : sorting +Oracle Open Office Writer : sorting;data in forms +Oracle Open Office Writer : sorting;databases +Oracle Open Office Writer : sorting;paragraphs in special languages +Oracle Open Office Writer : sorting;paragraphs/table rows +Oracle Open Office Writer : sound files +Oracle Open Office Writer : spaces +Oracle Open Office Writer : spaces;displaying (Writer) +Oracle Open Office Writer : spaces;ignoring double +Oracle Open Office Writer : spaces;inserting protected spaces +Oracle Open Office Writer : spaces;showing protected spaces (Writer) +Oracle Open Office Writer : spacing +Oracle Open Office Writer : spacing;between paragraphs in footnotes +Oracle Open Office Writer : spacing;endnotes/footnotes +Oracle Open Office Writer : spacing;font effects +Oracle Open Office Writer : spacing;lines and paragraphs +Oracle Open Office Writer : spacing;register-true text +Oracle Open Office Writer : spacing;tab stops in text documents +Oracle Open Office Writer : spacing;tabs in presentations +Oracle Open Office Writer : spadmin +Oracle Open Office Writer : special characters +Oracle Open Office Writer : speech bubbles +Oracle Open Office Writer : speed of printing +Oracle Open Office Writer : spellcheck +Oracle Open Office Writer : spellcheck;activating for a language +Oracle Open Office Writer : spellcheck;activating for all languages +Oracle Open Office Writer : spellcheck;AutoSpellcheck on/off +Oracle Open Office Writer : spellcheck;checking text documents manually +Oracle Open Office Writer : spellcheck;context menus +Oracle Open Office Writer : spellcheck;default languages +Oracle Open Office Writer : spellcheck;dialog +Oracle Open Office Writer : spellcheck;dictionary of exceptions +Oracle Open Office Writer : spellcheck;ignore list +Oracle Open Office Writer : spelling in thesaurus +Oracle Open Office Writer : spin button creation +Oracle Open Office Writer : splitting cells +Oracle Open Office Writer : splitting cells;by keyboard +Oracle Open Office Writer : splitting cells;by menu command +Oracle Open Office Writer : splitting tables +Oracle Open Office Writer : splitting tables;at cursor position +Oracle Open Office Writer : splitting tables;row breaks +Oracle Open Office Writer : spoolfiles with Xprinter +Oracle Open Office Writer : spreadsheets +Oracle Open Office Writer : spreadsheets;as databases (base) +Oracle Open Office Writer : spreadsheets;copying areas to text documents +Oracle Open Office Writer : spreadsheets;creating/opening +Oracle Open Office Writer : spreadsheets;inserting charts +Oracle Open Office Writer : spreadsheets;inserting database records +Oracle Open Office Writer : spreadsheets;inserting tables from +Oracle Open Office Writer : spreadsheets;printing +Oracle Open Office Writer : spreadsheets;saving +Oracle Open Office Writer : spreadsheets;saving automatically +Oracle Open Office Writer : spreadsheets;saving in other formats +Oracle Open Office Writer : spreadsheets;sending as e-mail +Oracle Open Office Writer : SQL +Oracle Open Office Writer : SQL;definition +Oracle Open Office Writer : SQL;DISTINCT parameter +Oracle Open Office Writer : SQL;executing SQL commands +Oracle Open Office Writer : SQL;executing SQL statements (Base) +Oracle Open Office Writer : SQL;queries (Base) +Oracle Open Office Writer : square drawings +Oracle Open Office Writer : standard bar on/off +Oracle Open Office Writer : standard deviation in charts +Oracle Open Office Writer : standard filters +Oracle Open Office Writer : standard filters;comparison operators +Oracle Open Office Writer : standard filters;databases +Oracle Open Office Writer : standard printer under UNIX +Oracle Open Office Writer : start center +Oracle Open Office Writer : start parameters +Oracle Open Office Writer : starting page numbers +Oracle Open Office Writer : statistical functions +Oracle Open Office Writer : statistics in charts +Oracle Open Office Writer : status bar on/off +Oracle Open Office Writer : stickers +Oracle Open Office Writer : stock charts +Oracle Open Office Writer : storing bibliographic information +Oracle Open Office Writer : strikethrough +Oracle Open Office Writer : strikethrough;characters +Oracle Open Office Writer : strikethrough;font effects +Oracle Open Office Writer : styles +Oracle Open Office Writer : styles;'changed' message +Oracle Open Office Writer : styles;categories +Oracle Open Office Writer : styles;conditional +Oracle Open Office Writer : styles;copying between documents +Oracle Open Office Writer : styles;creating from selections +Oracle Open Office Writer : styles;finding +Oracle Open Office Writer : styles;for pages +Oracle Open Office Writer : styles;importing from other files +Oracle Open Office Writer : styles;keyboard shortcuts +Oracle Open Office Writer : styles;master documents +Oracle Open Office Writer : styles;organizing +Oracle Open Office Writer : styles;page numbers +Oracle Open Office Writer : styles;printing styles used in a document +Oracle Open Office Writer : styles;replacing automatically +Oracle Open Office Writer : styles;styles and templates +Oracle Open Office Writer : styles;table styles +Oracle Open Office Writer : styles;transferring +Oracle Open Office Writer : styles;updating from selections +Oracle Open Office Writer : Styles and Formatting window +Oracle Open Office Writer : Styles and Formatting window;applying styles +Oracle Open Office Writer : Styles and Formatting window;docking +Oracle Open Office Writer : Styles and Formatting window;docking and resizing +Oracle Open Office Writer : Styles and Formatting window;updating from selections +Oracle Open Office Writer : Stylist, see Styles and Formatting window +Oracle Open Office Writer : subdocuments +Oracle Open Office Writer : subdocuments;creating/editing/removing +Oracle Open Office Writer : subdocuments;properties +Oracle Open Office Writer : subforms +Oracle Open Office Writer : subforms;creating +Oracle Open Office Writer : subforms;description +Oracle Open Office Writer : subject fields +Oracle Open Office Writer : submitting forms +Oracle Open Office Writer : subscript text +Oracle Open Office Writer : subsidiary documents +Oracle Open Office Writer : suffixes in file formats +Oracle Open Office Writer : sums of table cell series +Oracle Open Office Writer : superscript text +Oracle Open Office Writer : support on the Web +Oracle Open Office Writer : switching off +Oracle Open Office Writer : switching off;hyphenation for specific words +Oracle Open Office Writer : switching off;word completion +Oracle Open Office Writer : synchronizing +Oracle Open Office Writer : synchronizing;labels and business cards +Oracle Open Office Writer : synchronizing;Pocket PC and Oracle Open Office formats +Oracle Open Office Writer : synonyms in thesaurus +Oracle Open Office Writer : system address book registration +Oracle Open Office Writer : tab stops +Oracle Open Office Writer : tab stops;before headings +Oracle Open Office Writer : tab stops;displaying (Writer) +Oracle Open Office Writer : tab stops;inserting and editing +Oracle Open Office Writer : tab stops;inserting in lists +Oracle Open Office Writer : tab stops;regular expressions +Oracle Open Office Writer : tab stops;setting in sheets +Oracle Open Office Writer : tab stops;settings +Oracle Open Office Writer : tab stops;spacing in presentations +Oracle Open Office Writer : tab stops;spacing in text documents +Oracle Open Office Writer : table cells +Oracle Open Office Writer : table cells;adjusting the width on rulers +Oracle Open Office Writer : table cells;calculating sums +Oracle Open Office Writer : table cells;enlarging/reducing in text +Oracle Open Office Writer : table controls +Oracle Open Office Writer : table controls;form functions +Oracle Open Office Writer : table controls;keyboard-only edit mode +Oracle Open Office Writer : table controls;properties +Oracle Open Office Writer : table mode selection +Oracle Open Office Writer : table views of databases +Oracle Open Office Writer : Table Wizard (Base) +Oracle Open Office Writer : tables +Oracle Open Office Writer : tables;adapting the width by keyboard +Oracle Open Office Writer : tables;allowing page breaks +Oracle Open Office Writer : tables;AutoFormat function +Oracle Open Office Writer : tables;backgrounds +Oracle Open Office Writer : tables;calculating across +Oracle Open Office Writer : tables;calculating sums +Oracle Open Office Writer : tables;converting to text +Oracle Open Office Writer : tables;cross-referencing +Oracle Open Office Writer : tables;defining borders +Oracle Open Office Writer : tables;deleting +Oracle Open Office Writer : tables;deleting page breaks before +Oracle Open Office Writer : tables;editing by keyboard +Oracle Open Office Writer : tables;editing with the keyboard +Oracle Open Office Writer : tables;heading repetition after page breaks +Oracle Open Office Writer : tables;inserting columns in +Oracle Open Office Writer : tables;inserting line breaks +Oracle Open Office Writer : tables;inserting rows +Oracle Open Office Writer : tables;inserting text before +Oracle Open Office Writer : tables;inserting text tables +Oracle Open Office Writer : tables;jumping to +Oracle Open Office Writer : tables;labeling +Oracle Open Office Writer : tables;merging +Oracle Open Office Writer : tables;merging cells +Oracle Open Office Writer : tables;number recognition +Oracle Open Office Writer : tables;performing calculations in +Oracle Open Office Writer : tables;positioning +Oracle Open Office Writer : tables;protecting/unprotecting cells +Oracle Open Office Writer : tables;resizing/juxtaposing +Oracle Open Office Writer : tables;selecting +Oracle Open Office Writer : tables;sorting rows +Oracle Open Office Writer : tables;splitting +Oracle Open Office Writer : tables;start/end of document +Oracle Open Office Writer : tables;text flow around text tables +Oracle Open Office Writer : tables in databases +Oracle Open Office Writer : tables in databases;access rights to (Base) +Oracle Open Office Writer : tables in databases;adding to queries +Oracle Open Office Writer : tables in databases;browsing and editing +Oracle Open Office Writer : tables in databases;copying database tables (Base) +Oracle Open Office Writer : tables in databases;creating +Oracle Open Office Writer : tables in databases;creating in design view (manually) +Oracle Open Office Writer : tables in databases;importing text formats (Base) +Oracle Open Office Writer : tables in databases;joining for queries (Base) +Oracle Open Office Writer : tables in databases;printing queries (Base) +Oracle Open Office Writer : tables in databases;relations (Base) +Oracle Open Office Writer : tables in databases;searching +Oracle Open Office Writer : tables in spreadsheets +Oracle Open Office Writer : tables in spreadsheets;copying data to other applications +Oracle Open Office Writer : tables in spreadsheets;defining borders +Oracle Open Office Writer : tables in spreadsheets;inserting in text +Oracle Open Office Writer : tables in spreadsheets;value highlighting +Oracle Open Office Writer : tables in text +Oracle Open Office Writer : tables in text;captions +Oracle Open Office Writer : tables in text;creating automatically +Oracle Open Office Writer : tables in text;default settings +Oracle Open Office Writer : tables in text;defining borders +Oracle Open Office Writer : tables in text;displaying +Oracle Open Office Writer : tables in text;printing +Oracle Open Office Writer : tables of contents +Oracle Open Office Writer : tables of contents;creating and updating +Oracle Open Office Writer : tables of contents;defining entries in +Oracle Open Office Writer : tables of contents;editing and deleting +Oracle Open Office Writer : tables of contents;editing or deleting entries +Oracle Open Office Writer : tables of contents;formatting +Oracle Open Office Writer : tables of contents;hyperlinks as entries +Oracle Open Office Writer : tables of contents;unprotecting +Oracle Open Office Writer : tabs +Oracle Open Office Writer : tabs;displaying sheet tabs +Oracle Open Office Writer : tags +Oracle Open Office Writer : tags;definition +Oracle Open Office Writer : tags;in Oracle Open Office Writer +Oracle Open Office Writer : tags;META tags +Oracle Open Office Writer : templates +Oracle Open Office Writer : templates;agendas +Oracle Open Office Writer : templates;changing basic fonts +Oracle Open Office Writer : templates;creating document templates +Oracle Open Office Writer : templates;database reports +Oracle Open Office Writer : templates;default templates +Oracle Open Office Writer : templates;deleting +Oracle Open Office Writer : templates;editing and saving +Oracle Open Office Writer : templates;faxes +Oracle Open Office Writer : templates;importing and exporting +Oracle Open Office Writer : templates;letters +Oracle Open Office Writer : templates;new documents from templates +Oracle Open Office Writer : templates;opening documents with +Oracle Open Office Writer : templates;organizing +Oracle Open Office Writer : templates;organizing (guide) +Oracle Open Office Writer : templates;updating from selections +Oracle Open Office Writer : terminology +Oracle Open Office Writer : terminology;general glossary +Oracle Open Office Writer : terminology;Internet glossary +Oracle Open Office Writer : testing XML filters +Oracle Open Office Writer : text +Oracle Open Office Writer : text;animating +Oracle Open Office Writer : text;Asian layout +Oracle Open Office Writer : text;backgrounds +Oracle Open Office Writer : text;bold +Oracle Open Office Writer : text;coloring +Oracle Open Office Writer : text;conditional text +Oracle Open Office Writer : text;converting to tables +Oracle Open Office Writer : text;copying by drag and drop +Oracle Open Office Writer : text;CTL languages +Oracle Open Office Writer : text;cursor +Oracle Open Office Writer : text;drawing pictures +Oracle Open Office Writer : text;emphasizing +Oracle Open Office Writer : text;font effects +Oracle Open Office Writer : text;font sizes +Oracle Open Office Writer : text;font styles +Oracle Open Office Writer : text;fonts and formats +Oracle Open Office Writer : text;Fontwork icons +Oracle Open Office Writer : text;formatting around objects +Oracle Open Office Writer : text;formatting bold while typing +Oracle Open Office Writer : text;hiding +Oracle Open Office Writer : text;hiding from specific users, with conditions +Oracle Open Office Writer : text;hyperlinks +Oracle Open Office Writer : text;input fields +Oracle Open Office Writer : text;inserting pictures from Draw +Oracle Open Office Writer : text;inserting pictures in +Oracle Open Office Writer : text;inserting special characters +Oracle Open Office Writer : text;italics +Oracle Open Office Writer : text;kerning +Oracle Open Office Writer : text;language selection +Oracle Open Office Writer : text;line numbers +Oracle Open Office Writer : text;line spacing +Oracle Open Office Writer : text;multi-column +Oracle Open Office Writer : text;navigating and selecting with keyboard +Oracle Open Office Writer : text;non-printable +Oracle Open Office Writer : text;number of words/characters +Oracle Open Office Writer : text;overwriting or inserting +Oracle Open Office Writer : text;printing in black +Oracle Open Office Writer : text;replacing with format +Oracle Open Office Writer : text;rotating +Oracle Open Office Writer : text;selection modes +Oracle Open Office Writer : text;shadowed +Oracle Open Office Writer : text;sorting paragraphs +Oracle Open Office Writer : text;subscript and superscript +Oracle Open Office Writer : text;text/draw objects +Oracle Open Office Writer : text;turning off automatic correction +Oracle Open Office Writer : text;uppercase or lowercase +Oracle Open Office Writer : text animation +Oracle Open Office Writer : text attributes +Oracle Open Office Writer : text attributes;hyperlinks +Oracle Open Office Writer : text attributes;undoing +Oracle Open Office Writer : text blocks +Oracle Open Office Writer : text boxes +Oracle Open Office Writer : text boxes;form functions +Oracle Open Office Writer : text boxes;positioning +Oracle Open Office Writer : text breaks in cells +Oracle Open Office Writer : text colors for better accessibility +Oracle Open Office Writer : text columns +Oracle Open Office Writer : text databases (Base) +Oracle Open Office Writer : text documents +Oracle Open Office Writer : text documents;creating/opening +Oracle Open Office Writer : text documents;default templates +Oracle Open Office Writer : text documents;importing/exporting +Oracle Open Office Writer : text documents;inserting Calc charts +Oracle Open Office Writer : text documents;inserting spreadsheet cells +Oracle Open Office Writer : text documents;merging +Oracle Open Office Writer : text documents;print settings +Oracle Open Office Writer : text documents;printing +Oracle Open Office Writer : text documents;publishing in HTML +Oracle Open Office Writer : text documents;saving +Oracle Open Office Writer : text documents;saving automatically +Oracle Open Office Writer : text documents;saving in other formats +Oracle Open Office Writer : text documents;sending as e-mail +Oracle Open Office Writer : text documents;shortcut keys in +Oracle Open Office Writer : text documents;word completion settings +Oracle Open Office Writer : text effects +Oracle Open Office Writer : text flow +Oracle Open Office Writer : text flow;around text tables +Oracle Open Office Writer : text flow;at breaks +Oracle Open Office Writer : text flow;from frame to frame +Oracle Open Office Writer : text flow;in cells +Oracle Open Office Writer : text formats +Oracle Open Office Writer : text formats;copying and pasting +Oracle Open Office Writer : text formats;databases +Oracle Open Office Writer : text formats;finding +Oracle Open Office Writer : text formats;pasting +Oracle Open Office Writer : text frames +Oracle Open Office Writer : text frames;centering on pages +Oracle Open Office Writer : text frames;inserting/editing/linking +Oracle Open Office Writer : text frames;labeling +Oracle Open Office Writer : text grid for Asian layout +Oracle Open Office Writer : text input fields +Oracle Open Office Writer : text layout for special languages +Oracle Open Office Writer : text objects +Oracle Open Office Writer : text objects;alignment +Oracle Open Office Writer : text objects;draw functions +Oracle Open Office Writer : text objects;fonts +Oracle Open Office Writer : text objects;in presentations and drawings +Oracle Open Office Writer : text overflow in spreadsheet cells +Oracle Open Office Writer : text scaling in charts +Oracle Open Office Writer : text wrap around objects +Oracle Open Office Writer : text, see also text documents, paragraphs and characters +Oracle Open Office Writer : TextArt, see Fontwork +Oracle Open Office Writer : textures +Oracle Open Office Writer : textures;inserting from Gallery +Oracle Open Office Writer : textures;on chart bars +Oracle Open Office Writer : Thai +Oracle Open Office Writer : Thai;entering text +Oracle Open Office Writer : Thai;language settings +Oracle Open Office Writer : thesaurus +Oracle Open Office Writer : thesaurus;activating for a language +Oracle Open Office Writer : thesaurus;related words +Oracle Open Office Writer : ticker text +Oracle Open Office Writer : time fields +Oracle Open Office Writer : time fields;form functions +Oracle Open Office Writer : time fields;HTML +Oracle Open Office Writer : time fields;inserting +Oracle Open Office Writer : times +Oracle Open Office Writer : times;inserting when printing presentations +Oracle Open Office Writer : times, formats +Oracle Open Office Writer : tips +Oracle Open Office Writer : tips;extended tips in Help +Oracle Open Office Writer : title pages +Oracle Open Office Writer : title pages;centering text on +Oracle Open Office Writer : title pages;page styles +Oracle Open Office Writer : title rows +Oracle Open Office Writer : title rows;printing in Oracle Open Office Math +Oracle Open Office Writer : titles +Oracle Open Office Writer : titles;alignment (charts) +Oracle Open Office Writer : titles;changing +Oracle Open Office Writer : titles;editing in charts +Oracle Open Office Writer : titles;font effects +Oracle Open Office Writer : titles;formatting automatically +Oracle Open Office Writer : titles;formatting charts +Oracle Open Office Writer : titles;objects +Oracle Open Office Writer : toolbars +Oracle Open Office Writer : toolbars;adding buttons +Oracle Open Office Writer : toolbars;docking/undocking +Oracle Open Office Writer : toolbars;Form Navigation bar +Oracle Open Office Writer : toolbars;viewing/closing +Oracle Open Office Writer : tools bar +Oracle Open Office Writer : tooltips +Oracle Open Office Writer : tooltips;extended tips +Oracle Open Office Writer : tooltips;help +Oracle Open Office Writer : totals in text tables +Oracle Open Office Writer : Track Changes, see review function +Oracle Open Office Writer : traditional Chinese +Oracle Open Office Writer : traditional Chinese;conversion to simplified Chinese +Oracle Open Office Writer : transparency +Oracle Open Office Writer : transparency;areas +Oracle Open Office Writer : transparency;off for faster printing +Oracle Open Office Writer : transparency;saving +Oracle Open Office Writer : tree view of Help +Oracle Open Office Writer : trend lines in charts +Oracle Open Office Writer : triangle drawing +Oracle Open Office Writer : trigonometric functions +Oracle Open Office Writer : turning off automatic correction +Oracle Open Office Writer : typefaces +Oracle Open Office Writer : typefaces;formats +Oracle Open Office Writer : typography +Oracle Open Office Writer : typography;Asian +Oracle Open Office Writer : underlining +Oracle Open Office Writer : underlining;AutoFormat function +Oracle Open Office Writer : underlining;characters +Oracle Open Office Writer : underlining;quick +Oracle Open Office Writer : underlining;text +Oracle Open Office Writer : undocking windows +Oracle Open Office Writer : undoing +Oracle Open Office Writer : undoing;direct formatting +Oracle Open Office Writer : undoing;editing +Oracle Open Office Writer : undoing;number of steps +Oracle Open Office Writer : ungrouping groups +Oracle Open Office Writer : units +Oracle Open Office Writer : units;converting +Oracle Open Office Writer : units;measurement units +Oracle Open Office Writer : unlinking frames +Oracle Open Office Writer : UNO components +Oracle Open Office Writer : UNO components;Extension Manager +Oracle Open Office Writer : UNO components;integrating new +Oracle Open Office Writer : unprotecting tables of contents and indexes +Oracle Open Office Writer : update options +Oracle Open Office Writer : updates +Oracle Open Office Writer : updates;checking automatically +Oracle Open Office Writer : updates;checking manually +Oracle Open Office Writer : updating +Oracle Open Office Writer : updating;cross-references +Oracle Open Office Writer : updating;fields +Oracle Open Office Writer : updating;fields and charts, automatically (Writer) +Oracle Open Office Writer : updating;indexes/tables of contents +Oracle Open Office Writer : updating;linked sections, manually +Oracle Open Office Writer : updating;links in text documents +Oracle Open Office Writer : updating;links, on opening +Oracle Open Office Writer : updating;styles, from selections +Oracle Open Office Writer : updating;tables of contents +Oracle Open Office Writer : updating;templates +Oracle Open Office Writer : updating;text documents +Oracle Open Office Writer : uppercase +Oracle Open Office Writer : uppercase;changing to lowercase +Oracle Open Office Writer : uppercase;formatting text +Oracle Open Office Writer : URL +Oracle Open Office Writer : URL;changing hyperlink URLs +Oracle Open Office Writer : URL;definition +Oracle Open Office Writer : URL;in pictures +Oracle Open Office Writer : URL;saving absolute/relative paths +Oracle Open Office Writer : URL;turning off URL recognition +Oracle Open Office Writer : user data +Oracle Open Office Writer : user data;in conditions +Oracle Open Office Writer : user data;input +Oracle Open Office Writer : user data;querying +Oracle Open Office Writer : user data;removing when saving +Oracle Open Office Writer : user feedback +Oracle Open Office Writer : user feedback;automatically +Oracle Open Office Writer : user variables in conditions/fields +Oracle Open Office Writer : user-defined dictionaries +Oracle Open Office Writer : user-defined dictionaries;creating +Oracle Open Office Writer : user-defined dictionaries;dictionary of exceptions +Oracle Open Office Writer : user-defined dictionaries;editing +Oracle Open Office Writer : user-defined dictionaries;removing words from +Oracle Open Office Writer : user-defined fields, restriction +Oracle Open Office Writer : user-defined indexes +Oracle Open Office Writer : user-defined styles +Oracle Open Office Writer : user-defined styles;automatically replacing +Oracle Open Office Writer : UTF-8/UCS2 support +Oracle Open Office Writer : values +Oracle Open Office Writer : values;rounded as shown (Calc) +Oracle Open Office Writer : variable dates +Oracle Open Office Writer : variables +Oracle Open Office Writer : variables;document properties +Oracle Open Office Writer : variables;for hiding text +Oracle Open Office Writer : variables;for paths +Oracle Open Office Writer : variables;in conditions +Oracle Open Office Writer : variances in charts +Oracle Open Office Writer : VBA code +Oracle Open Office Writer : VBA code;loading/saving documents with VBA code +Oracle Open Office Writer : version management +Oracle Open Office Writer : version numbers of documents +Oracle Open Office Writer : versions +Oracle Open Office Writer : versions;comparing documents +Oracle Open Office Writer : versions;file saving as, restriction +Oracle Open Office Writer : versions;merging document versions +Oracle Open Office Writer : versions;of a document +Oracle Open Office Writer : versions;Oracle Open Office +Oracle Open Office Writer : vertical callouts +Oracle Open Office Writer : vertical rulers +Oracle Open Office Writer : vertical scrollbars (Writer) +Oracle Open Office Writer : vertical text boxes +Oracle Open Office Writer : videos +Oracle Open Office Writer : viewing +Oracle Open Office Writer : viewing;databases +Oracle Open Office Writer : viewing;fields +Oracle Open Office Writer : viewing;file properties +Oracle Open Office Writer : viewing;Oracle Open Office documents in Internet Explorer +Oracle Open Office Writer : viewing;toolbars +Oracle Open Office Writer : views +Oracle Open Office Writer : views;creating database views (Base) +Oracle Open Office Writer : views;defaults +Oracle Open Office Writer : views;full screen +Oracle Open Office Writer : views;icons +Oracle Open Office Writer : views;scaling +Oracle Open Office Writer : Visual Basic for Applications +Oracle Open Office Writer : Visual Basic for Applications;loading/saving documents with VBA code +Oracle Open Office Writer : watermarks +Oracle Open Office Writer : web documents +Oracle Open Office Writer : web documents;XForms +Oracle Open Office Writer : Web support +Oracle Open Office Writer : WebCast export +Oracle Open Office Writer : WebDAV over HTTPS +Oracle Open Office Writer : weekdays +Oracle Open Office Writer : weekdays;automatically completing +Oracle Open Office Writer : widows +Oracle Open Office Writer : wildcards, see regular expressions +Oracle Open Office Writer : windows +Oracle Open Office Writer : windows;docking +Oracle Open Office Writer : windows;docking definition +Oracle Open Office Writer : windows;hiding/showing/docking +Oracle Open Office Writer : windows;new +Oracle Open Office Writer : wizards +Oracle Open Office Writer : wizards;agendas +Oracle Open Office Writer : wizards;database queries +Oracle Open Office Writer : wizards;database tables (Base) +Oracle Open Office Writer : wizards;databases (Base) +Oracle Open Office Writer : wizards;document converter +Oracle Open Office Writer : wizards;Euro Converter +Oracle Open Office Writer : wizards;faxes +Oracle Open Office Writer : wizards;form letters +Oracle Open Office Writer : wizards;forms +Oracle Open Office Writer : wizards;letters +Oracle Open Office Writer : wizards;macros (Base) +Oracle Open Office Writer : wizards;overview +Oracle Open Office Writer : wizards;presentations +Oracle Open Office Writer : wizards;reports +Oracle Open Office Writer : word completion +Oracle Open Office Writer : word completion;settings +Oracle Open Office Writer : word completion;using/disabling +Oracle Open Office Writer : word counts +Oracle Open Office Writer : Word documents +Oracle Open Office Writer : Word documents;compatibility +Oracle Open Office Writer : Word documents;saving as +Oracle Open Office Writer : WordArt, see Fontwork +Oracle Open Office Writer : words +Oracle Open Office Writer : words;automatic replacement on/off +Oracle Open Office Writer : words;automatically replacing +Oracle Open Office Writer : words;backgrounds +Oracle Open Office Writer : words;counting in text +Oracle Open Office Writer : words;disabling spellcheck +Oracle Open Office Writer : words;wrapping in cells +Oracle Open Office Writer : words;wrapping in CTL +Oracle Open Office Writer : words;wrapping/not wrapping in text +Oracle Open Office Writer : working directory change +Oracle Open Office Writer : wrapping text +Oracle Open Office Writer : wrapping text;editing contours +Oracle Open Office Writer : wrapping text;in cells +Oracle Open Office Writer : write protection on/off +Oracle Open Office Writer : writing aids options +Oracle Open Office Writer : writing with direct cursor +Oracle Open Office Writer : WYSIWYG in fonts lists +Oracle Open Office Writer : X axes +Oracle Open Office Writer : X axes;grid formatting +Oracle Open Office Writer : X axes;positioning +Oracle Open Office Writer : X axes;scaling +Oracle Open Office Writer : X axes;showing +Oracle Open Office Writer : XForms +Oracle Open Office Writer : XForms;adding/editing/deleting/organizing namespaces +Oracle Open Office Writer : XForms;conditions +Oracle Open Office Writer : XForms;opening/editing +Oracle Open Office Writer : XML converters +Oracle Open Office Writer : XML file formats +Oracle Open Office Writer : XML filters +Oracle Open Office Writer : XML filters;creating/testing +Oracle Open Office Writer : XML filters;saving as package/installing/deleting +Oracle Open Office Writer : XML filters;settings +Oracle Open Office Writer : XML Forms, see XForms +Oracle Open Office Writer : XSLT filters, see also XML filters +Oracle Open Office Writer : XY charts +Oracle Open Office Writer : Y axes +Oracle Open Office Writer : Y axes;formatting +Oracle Open Office Writer : Y axes;grid formatting +Oracle Open Office Writer : Y axes;positioning +Oracle Open Office Writer : Y axes;scaling +Oracle Open Office Writer : Y axes;showing +Oracle Open Office Writer : years +Oracle Open Office Writer : years;2-digit options +Oracle Open Office Writer : Z axes +Oracle Open Office Writer : Z axes;grid formatting +Oracle Open Office Writer : Z axes;showing +Oracle Open Office Writer : zero values +Oracle Open Office Writer : zero values;displaying (Calc) +Oracle Open Office Writer : zooming +Oracle Open Office Writer : zooming;page views +Oracle Open Office Writer : zooming;pictures +Oracle Open Office Writer : zooming;status bar Oracle Open Office Draw : 3D charts Oracle Open Office Draw : 3D objects Oracle Open Office Draw : 3D objects;assembling @@ -19213,6 +19312,8 @@ Oracle Open Office Draw : 3D objects;inserting Oracle Open Office Draw : 3D rotation objects Oracle Open Office Draw : 3D rotation objects;converting to Oracle Open Office Draw : 3D rotation objects;generating +Oracle Open Office Draw : 3D scenes +Oracle Open Office Draw : 3D scenes;creating Oracle Open Office Draw : 3D text creation Oracle Open Office Draw : abbreviation replacement Oracle Open Office Draw : absolute hyperlinks @@ -19318,10 +19419,8 @@ Oracle Open Office Draw : AutoCorrect function;options Oracle Open Office Draw : AutoCorrect function;pictures and frames Oracle Open Office Draw : AutoCorrect function;quotes Oracle Open Office Draw : AutoCorrect function;replacement table -Oracle Open Office Draw : AutoCorrect function;switching on and off in Calc +Oracle Open Office Draw : AutoCorrect function;switching on and off Oracle Open Office Draw : AutoCorrect function;URL recognition -Oracle Open Office Draw : AutoFormat function -Oracle Open Office Draw : AutoFormat function;switching on and off Oracle Open Office Draw : automatic captions (Writer) Oracle Open Office Draw : automatic control focus Oracle Open Office Draw : automatic hyperlink formatting @@ -19542,6 +19641,7 @@ Oracle Open Office Draw : clipboard;pasting Oracle Open Office Draw : clipboard;pasting formatted/unformatted text Oracle Open Office Draw : clipboard;selection clipboard Oracle Open Office Draw : clipboard;Unix +Oracle Open Office Draw : Clippy, see Help Agent Oracle Open Office Draw : closing Oracle Open Office Draw : closing;documents Oracle Open Office Draw : closing;shapes @@ -19557,9 +19657,9 @@ Oracle Open Office Draw : colors;default colors Oracle Open Office Draw : colors;defining and saving Oracle Open Office Draw : colors;defining gradients interactively Oracle Open Office Draw : colors;displaying presentations -Oracle Open Office Draw : colors;fill format Oracle Open Office Draw : colors;fonts Oracle Open Office Draw : colors;grid lines and cells (Calc) +Oracle Open Office Draw : colors;ignored text color Oracle Open Office Draw : colors;loading lists Oracle Open Office Draw : colors;models Oracle Open Office Draw : colors;not printing @@ -19588,7 +19688,6 @@ Oracle Open Office Draw : commands Oracle Open Office Draw : commands;repeating Oracle Open Office Draw : commands;SQL Oracle Open Office Draw : comments -Oracle Open Office Draw : comments;displaying (Calc) Oracle Open Office Draw : comments;inserting/editing/deleting/printing Oracle Open Office Draw : comments;on changes Oracle Open Office Draw : comments;printing in text @@ -19598,7 +19697,7 @@ Oracle Open Office Draw : common terms;glossaries Oracle Open Office Draw : common terms;Internet glossary Oracle Open Office Draw : comparisons Oracle Open Office Draw : comparisons;document versions -Oracle Open Office Draw : comparisons;operators in default filter dialog +Oracle Open Office Draw : comparisons;operators in standard filter dialog Oracle Open Office Draw : compatibility settings for MS Word import Oracle Open Office Draw : complete screen view Oracle Open Office Draw : complex text layout @@ -19656,6 +19755,7 @@ Oracle Open Office Draw : controls;rich text control Oracle Open Office Draw : controls;select mode Oracle Open Office Draw : controls;showing (Writer) Oracle Open Office Draw : converters +Oracle Open Office Draw : converters;document converter Oracle Open Office Draw : converters;Euro converter Oracle Open Office Draw : converters;PostScript, UNIX Oracle Open Office Draw : converters;XML @@ -19705,6 +19805,7 @@ Oracle Open Office Draw : CTL;(not) wrapping words Oracle Open Office Draw : CTL;complex text layout languages Oracle Open Office Draw : CTL;definition Oracle Open Office Draw : CTL;options +Oracle Open Office Draw : cube drawing Oracle Open Office Draw : cubes Oracle Open Office Draw : currencies Oracle Open Office Draw : currencies;converters @@ -19828,9 +19929,7 @@ Oracle Open Office Draw : decimal separator key Oracle Open Office Draw : decimal tab stops Oracle Open Office Draw : decreasing sizes of views Oracle Open Office Draw : default directories -Oracle Open Office Draw : default filters -Oracle Open Office Draw : default filters;comparison operators -Oracle Open Office Draw : default filters;databases +Oracle Open Office Draw : default filters, see standard filters Oracle Open Office Draw : default printer Oracle Open Office Draw : default printer;setting up Oracle Open Office Draw : default printer;UNIX @@ -19838,8 +19937,8 @@ Oracle Open Office Draw : default templates Oracle Open Office Draw : default templates;changing Oracle Open Office Draw : default templates;organizing Oracle Open Office Draw : defaults +Oracle Open Office Draw : defaults;document formats in file dialogs Oracle Open Office Draw : defaults;documents -Oracle Open Office Draw : defaults;file formats in file dialogs Oracle Open Office Draw : defaults;file formats in Oracle Open Office Oracle Open Office Draw : defaults;fonts Oracle Open Office Draw : defaults;grids (Writer/Calc) @@ -19905,7 +20004,6 @@ Oracle Open Office Draw : directories;directory structure Oracle Open Office Draw : disabled persons Oracle Open Office Draw : display qualities of presentations Oracle Open Office Draw : displaying -Oracle Open Office Draw : displaying;comments (Calc) Oracle Open Office Draw : displaying;comments in text documents Oracle Open Office Draw : displaying;non-printing characters (Writer) Oracle Open Office Draw : displaying;pictures and objects (Writer) @@ -20053,6 +20151,7 @@ Oracle Open Office Draw : effects;fonts Oracle Open Office Draw : effects;Fontwork icons Oracle Open Office Draw : effects;preview Oracle Open Office Draw : effects;sounds +Oracle Open Office Draw : ellipse drawing Oracle Open Office Draw : ellipses Oracle Open Office Draw : ellipses;segments Oracle Open Office Draw : ellipses;toolbars @@ -20163,6 +20262,7 @@ Oracle Open Office Draw : files;saving in other formats Oracle Open Office Draw : files;sending as e-mail Oracle Open Office Draw : files;version numbers Oracle Open Office Draw : files and folders in Oracle Open Office +Oracle Open Office Draw : files, see also documents Oracle Open Office Draw : fill characters with tabulators Oracle Open Office Draw : fill colors for areas Oracle Open Office Draw : fill format mode @@ -20209,8 +20309,8 @@ Oracle Open Office Draw : font sizes;relative changes Oracle Open Office Draw : font sizes;scaling on screen Oracle Open Office Draw : font sizes;text Oracle Open Office Draw : fonts -Oracle Open Office Draw : fonts;adding under UNIX Oracle Open Office Draw : fonts;changing in templates +Oracle Open Office Draw : fonts;color ignored Oracle Open Office Draw : fonts;colors Oracle Open Office Draw : fonts;default settings Oracle Open Office Draw : fonts;effects @@ -20223,7 +20323,7 @@ Oracle Open Office Draw : fonts;specifying several Oracle Open Office Draw : fonts;strikethrough Oracle Open Office Draw : fonts;styles Oracle Open Office Draw : fonts;text objects -Oracle Open Office Draw : Fontwork icons +Oracle Open Office Draw : Fontwork Oracle Open Office Draw : footers Oracle Open Office Draw : footers;backgrounds Oracle Open Office Draw : footers;slide masters @@ -20432,15 +20532,19 @@ Oracle Open Office Draw : hiding;navigation pane in Help window Oracle Open Office Draw : hiding;slides Oracle Open Office Draw : hiding;subpoints Oracle Open Office Draw : high contrast mode +Oracle Open Office Draw : highlighting changes Oracle Open Office Draw : Hindi Oracle Open Office Draw : Hindi;entering text Oracle Open Office Draw : Hindi;language settings Oracle Open Office Draw : horizontal scrollbars (Writer) Oracle Open Office Draw : hot spots in flowcharts Oracle Open Office Draw : hotspots +Oracle Open Office Draw : hotspots;adding to images +Oracle Open Office Draw : hotspots;properties Oracle Open Office Draw : HowTos for charts Oracle Open Office Draw : Howtos for Draw Oracle Open Office Draw : HTML +Oracle Open Office Draw : HTML;compatibility settings Oracle Open Office Draw : HTML;definition Oracle Open Office Draw : HTML;export character set Oracle Open Office Draw : HTML;exporting from presentations @@ -20474,6 +20578,7 @@ Oracle Open Office Draw : hyphens;inserting custom Oracle Open Office Draw : icon bars, see toolbars Oracle Open Office Draw : icon sizes Oracle Open Office Draw : ignore list for spellcheck +Oracle Open Office Draw : ignored font colors Oracle Open Office Draw : illumination Oracle Open Office Draw : illumination;3D charts Oracle Open Office Draw : illustrations, see pictures @@ -20482,6 +20587,7 @@ Oracle Open Office Draw : image control creation Oracle Open Office Draw : ImageMap Oracle Open Office Draw : ImageMap;definition Oracle Open Office Draw : ImageMap;editor +Oracle Open Office Draw : ImageMap;hotspot properties Oracle Open Office Draw : images Oracle Open Office Draw : images;ImageMap Oracle Open Office Draw : images;inserting @@ -20505,6 +20611,7 @@ Oracle Open Office Draw : importing;presentations with HTML Oracle Open Office Draw : importing;tables in text format Oracle Open Office Draw : importing;templates Oracle Open Office Draw : improvement program +Oracle Open Office Draw : improvement program - Improvement Program Oracle Open Office Draw : in front of object command Oracle Open Office Draw : inches Oracle Open Office Draw : including spreadsheets @@ -20912,7 +21019,7 @@ Oracle Open Office Draw : opening;dialog settings Oracle Open Office Draw : opening;documents Oracle Open Office Draw : opening;documents from other formats Oracle Open Office Draw : opening;documents on WebDAV server -Oracle Open Office Draw : opening;files with links +Oracle Open Office Draw : opening;documents with links Oracle Open Office Draw : opening;files, with placeholders Oracle Open Office Draw : opening;forms Oracle Open Office Draw : opening;Microsoft Office files @@ -20922,7 +21029,7 @@ Oracle Open Office Draw : opening;reports Oracle Open Office Draw : opening;several files Oracle Open Office Draw : opening;XForms Oracle Open Office Draw : operators -Oracle Open Office Draw : operators;default filters +Oracle Open Office Draw : operators;standard filters Oracle Open Office Draw : optional hyphens (Writer) Oracle Open Office Draw : options Oracle Open Office Draw : options;accessibility @@ -20983,6 +21090,7 @@ Oracle Open Office Draw : pages;scaling Oracle Open Office Draw : pages;selecting one to print Oracle Open Office Draw : paint box Oracle Open Office Draw : paint can symbol +Oracle Open Office Draw : Paintbrush Oracle Open Office Draw : pair kerning Oracle Open Office Draw : Palm file filters Oracle Open Office Draw : paper formats @@ -21009,6 +21117,7 @@ Oracle Open Office Draw : paragraphs;tab stops Oracle Open Office Draw : parameters Oracle Open Office Draw : parameters;command line Oracle Open Office Draw : parameters;queries (Base) +Oracle Open Office Draw : password as document property Oracle Open Office Draw : passwords for protecting contents Oracle Open Office Draw : pasting Oracle Open Office Draw : pasting;cell ranges @@ -21128,7 +21237,6 @@ Oracle Open Office Draw : presentations;starting Oracle Open Office Draw : presentations;starting with wizard Oracle Open Office Draw : presentations;window / full screen Oracle Open Office Draw : presentations;wizards -Oracle Open Office Draw : Presenter Console shortcuts Oracle Open Office Draw : press buttons, see push buttons Oracle Open Office Draw : previews Oracle Open Office Draw : previews;fonts lists @@ -21187,6 +21295,7 @@ Oracle Open Office Draw : properties;fields in databases Oracle Open Office Draw : properties;files Oracle Open Office Draw : properties;form controls Oracle Open Office Draw : properties;forms +Oracle Open Office Draw : properties;hotspots Oracle Open Office Draw : properties;printers Oracle Open Office Draw : properties;smooth lines in line charts/XY charts Oracle Open Office Draw : protected contents @@ -21239,6 +21348,7 @@ Oracle Open Office Draw : records;inserting comments Oracle Open Office Draw : records;protecting Oracle Open Office Draw : records;saving Oracle Open Office Draw : records;searching in databases +Oracle Open Office Draw : rectangle drawing Oracle Open Office Draw : rectangles Oracle Open Office Draw : rectangles with round corners Oracle Open Office Draw : recursions in spreadsheets @@ -21310,6 +21420,7 @@ Oracle Open Office Draw : review function;accepting or rejecting changes Oracle Open Office Draw : review function;comparing documents Oracle Open Office Draw : review function;protecting records Oracle Open Office Draw : review function;recording changes example +Oracle Open Office Draw : review function;tracking changes Oracle Open Office Draw : rich text control Oracle Open Office Draw : right alignment of paragraphs Oracle Open Office Draw : right joins (Base) @@ -21414,7 +21525,6 @@ Oracle Open Office Draw : settings Oracle Open Office Draw : settings;printers Oracle Open Office Draw : settings;program configuration Oracle Open Office Draw : settings;proxies -Oracle Open Office Draw : settings;tracking changes Oracle Open Office Draw : settings;views Oracle Open Office Draw : SGML Oracle Open Office Draw : SGML;definition @@ -21423,6 +21533,7 @@ Oracle Open Office Draw : shadows;areas Oracle Open Office Draw : shadows;borders Oracle Open Office Draw : shadows;characters Oracle Open Office Draw : shadows;characters, using context menu +Oracle Open Office Draw : shapes Oracle Open Office Draw : sharing documents Oracle Open Office Draw : sharpening filter Oracle Open Office Draw : shearing objects @@ -21456,7 +21567,7 @@ Oracle Open Office Draw : signing documents with digital signatures Oracle Open Office Draw : similarity search Oracle Open Office Draw : simple handles (Writer) Oracle Open Office Draw : simplified Chinese -Oracle Open Office Draw : simplified Chinese;translating to traditional Chinese +Oracle Open Office Draw : simplified Chinese;conversion to traditional Chinese Oracle Open Office Draw : single sign on options Oracle Open Office Draw : single-line spacing in text Oracle Open Office Draw : sizes @@ -21571,7 +21682,9 @@ Oracle Open Office Draw : SQL;queries (Base) Oracle Open Office Draw : square drawings Oracle Open Office Draw : standard bar on/off Oracle Open Office Draw : standard deviation in charts -Oracle Open Office Draw : standard filters in databases +Oracle Open Office Draw : standard filters +Oracle Open Office Draw : standard filters;comparison operators +Oracle Open Office Draw : standard filters;databases Oracle Open Office Draw : standard printer under UNIX Oracle Open Office Draw : start center Oracle Open Office Draw : start parameters @@ -21785,8 +21898,9 @@ Oracle Open Office Draw : tooltips Oracle Open Office Draw : tooltips;extended tips Oracle Open Office Draw : tooltips;help Oracle Open Office Draw : torus +Oracle Open Office Draw : Track Changes, see review function Oracle Open Office Draw : traditional Chinese -Oracle Open Office Draw : traditional Chinese;translating to simplified chinese +Oracle Open Office Draw : traditional Chinese;conversion to simplified Chinese Oracle Open Office Draw : transition effects Oracle Open Office Draw : transparency Oracle Open Office Draw : transparency;adjusting @@ -21796,8 +21910,8 @@ Oracle Open Office Draw : transparency;off for faster printing Oracle Open Office Draw : transparency;saving Oracle Open Office Draw : tree view of Help Oracle Open Office Draw : trend lines in charts +Oracle Open Office Draw : triangle drawing Oracle Open Office Draw : typefaces -Oracle Open Office Draw : typefaces;adding under UNIX Oracle Open Office Draw : typefaces;formats Oracle Open Office Draw : typography Oracle Open Office Draw : typography;Asian diff --git a/testautomation/framework/required/includes/window_functions.inc b/testautomation/framework/required/includes/window_functions.inc index 008248a1c57d..dfb6b2600df8 100755 --- a/testautomation/framework/required/includes/window_functions.inc +++ b/testautomation/framework/required/includes/window_functions.inc @@ -35,12 +35,6 @@ testcase tWindowFunctions printlog( "Update test for window functions" ) - if ( gtSysName = "Mac OS X" ) then - printlog( "No testing for Mac as some Window attributes do not exist" ) - goto endsub - endif - - printlog( "Create initial document" ) gApplication = "WRITER" hInitSingleDoc() @@ -114,7 +108,7 @@ testcase tWindowFunctions if ( DocumentWriter.IsMin() ) then printlog( "Window is minimized" ) else - qaerrorlog( "#i32672# Window not minimized" ) + warnlog( "Window not minimized" ) endif kontext "DocumentWriter" diff --git a/testautomation/framework/tools/includes/template_tools.inc b/testautomation/framework/tools/includes/template_tools.inc index c9d1e94fa16f..1491abe9c64f 100755..100644 --- a/testautomation/framework/tools/includes/template_tools.inc +++ b/testautomation/framework/tools/includes/template_tools.inc @@ -254,11 +254,14 @@ function hSelectDocumentObject( iTitle as integer , iMode as integer ) as string '///<u>Input</u>: '///<ol> '///+<li>Index of the folder to be selected on the categories-pane (integer)</li> + '///<ul> + '///+<li>Valid positive index</li> + '///</ul> '///+<li>Mode in which to open the template (integer)</li> '///<ul> '///+<li>0 = Do not open the object, just return its name</li> '///+<li>1 = Open a new document based on the selected Template</li> - '///+<li>2 = edit the template</li> + '///+<li>2 = edit the template (unsupported)</li> '///</ul> '///</ol> '///<u>Returns</u>: @@ -267,32 +270,12 @@ function hSelectDocumentObject( iTitle as integer , iMode as integer ) as string '///</ul> '///<u>Description</u>: '///<ul> - '///+<li>Verify function parameter iMode</li> - - if ( ( iMode < 0 ) or ( iMode > 2 ) ) then - warnlog( CFN & "Invalid function parameter iMode: " & iMode ) - hSelectDocumentObject() = "" - exit function - endif dim cTitle as string dim brc as boolean dim iObjectCount as integer Kontext "TemplateAndDocuments" - '///+<li>Verify the function parameter iTitle > 0</li> - if ( iTitle < 1 ) then - warnlog( CFN & "Invalid function parameter iTitle: " & iTitle ) - hSelectDocumentObject() = "" - exit function - endif - - '///+<li>Verify that the index is not too large</li> - if ( iTitle > FileList.getItemCount() ) then - warnlog( CFN & "Invalid function parameter iTitle: " & iTitle ) - hSelectDocumentObject() = "" - exit function - endif '///+<li>Get the title of the selected object</li> cTitle = hGetFileFolderName( iTitle ) @@ -315,9 +298,7 @@ function hSelectDocumentObject( iTitle as integer , iMode as integer ) as string kontext "TemplateAndDocuments" if ( TemplateAndDocuments.exists() ) then '///+<li>If yes: Try to determine if it is a new folder</li> - brc = hIsObjectAFolder( iObjectCount ) - - if ( brc ) then + if ( hIsObjectAFolder( iObjectCount ) ) then hSelectDocumentObject() = "Folder" exit function endif @@ -326,12 +307,13 @@ function hSelectDocumentObject( iTitle as integer , iMode as integer ) as string catch endcatch - hFileWait() - hHandleActivesOnLoad( 2, false ) - hHandleInitialDialogs() + case 2 : warnlog( "Unsupported option: Edit template" ) end select + hFileWait() + hHandleActivesOnLoad( 2, false ) + brc = hHandleInitialDialogs() '///+<li>If all initial dialogs were handled correctly, return the title</li> if ( brc ) then diff --git a/testautomation/global/hid/hid.lst b/testautomation/global/hid/hid.lst new file mode 100755 index 000000000000..a07f54c87773 --- /dev/null +++ b/testautomation/global/hid/hid.lst @@ -0,0 +1,6 @@ +1 1 +SID_OPENDOC 5501 +SID_SAVEASDOC 5502 +SID_RELOAD 5508 +SID_QUITAPP 5300 +SID_SAVEDOC 5505 diff --git a/testautomation/global/hid/readme.txt b/testautomation/global/hid/readme.txt deleted file mode 100644 index 7d786f27ba1a..000000000000 --- a/testautomation/global/hid/readme.txt +++ /dev/null @@ -1,130 +0,0 @@ -Introduction ------------- - -This is the former location of the file: hid.lst -It is intended, that after a fresh checkout from svn you will not find it here anymore. -There will be no hid.lst anymore in source code repository for testautomation. - -But the file hid.lst is essential for running automated tests with VCL -TestTool: Your OOo installation may already contain it at: -<OOo installation directory>/basis-link/program/hid.lst -(Depending on your installation you need to install the 'testtool' package) - -As a fallback you will find the file hid.lst online at: -http://quaste.services.openoffice.org/index.php?option=com_quaste&task=tests_overview&workspace=DEV300&milestone=m51&download=2 -(Please substitute DEV300 and m51 with the respective version numbers from your used OOo installation) -See announcement on QUASTe: http://quaste.services.openoffice.org/index.php?option=com_content&task=view&id=14&Itemid=1 - -As another fallback, the testautomation archives from Maho Nakata will already contain the hid.lst from QUASTe: -http://ooopackages.good-day.net/pub/OpenOffice.org/qa/testautomation/ -Announcement is here: http://qa.openoffice.org/servlets/ReadMsg?list=dev&msgNo=12515 - -Action needed for tests with VCL TestTool? It depends; - -Ideal processing ----------------- - -When checking out the VCL TestTool environment from svn; -OOo is already installed and the installation path is set -in the VCL TestTool seetings; -> http://wiki.services.openoffice.org/wiki/VCLTesttool - -The first test run will recognize the absence of hid.lst in the directory -testautomation/global/hid, but finds hid.lst file in OOo -installation directory; -Then VCL TestTool will copy it from OOo installation to testautomation -directory - the test can start; - -When using the testautomation archives from Nakata Maho, -> http://ooopackages.good-day.net/pub/OpenOffice.org/qa/testautomation/ -there will still be already a hid.lst file in the testautomation -directory. - --------------------------------------------------------------------- - -Longer description to this change ---------------------------------- - -The change was necessarry since there were always several conflicts on -integration of several CWS's modifying the hid.lst file into one master. -The hid.lst is refused to checked in by Release Engineering after -building OOo, since they claim it is too late then and all files are -tagged then already in svn. -The file changes when new UI is put into, or removed from OOo; -It matches the number of an UI element known by OOo to a speaking name, -used in VCL TestTool test scripts. -There were always two hid.lst files in OOo: -- The first one, that is also the source for the second one, is -generated during building OOo; -- The second one, the one found in 'testautomation' was run through -several scripts to make it useable for testautomation and always -verified manually for errors; - -With some fixes in DEV300m42/m45 and issue i101284 the generation of -hid.lst was changed during building of OOo, to use the resulting hid.lst -at the end also for testautomation; -This makes the second hid.lst now superfluous, since the hid.lst is also -delivered with every OOo installation; - -The locations of the hid.lst: -- After an OOo build it is found at: solver/300/unxmacxp.pro/bin/hid.lst - (due to a bug in deliver this one might be the wrong one, then you find - it in: instsetoo_native/unxmacxi.pro/bin/hid.lst) - To get the hid.lst build, you need to use 'configure' with the switch: --enable-hids -- In an installed OOo: - Win32: Program Files\Sun\StarOffice 9\Basis\program\hid.lst - Mac OS: StarOffice.app/Contents/basis-link/program/hid.lst - Linux: /opt/openoffice.org/basis3.2/program/hid.lst -- Online at http://quaste.services.openoffice.org/index.php?option=com_quaste&task=tests_overview&workspace=DEV300&milestone=m51&download=2 - With the respected values for the version replaced. - -The file is finaly needed at: testautomation/global/hid/hid.lst - -When using testautomation packages from: -> http://ooopackages.good-day.net/pub/OpenOffice.org/qa/testautomation/ -No additional action should be required, since a hid.lst will be at the -needed location. - -When checking out testautomation from svn, hid.lst is tried to find and -copied by VCL TestTool on first test run. - -When manual action is required ------------------------------- - -In case the target directory for hid.lst is not writeable by the user -who is running the test, manual action is required: -Open your VCL TestTool settings and change the hid directory path -to the basis program directory of your OOo installation; E.g.: -openoffice.org3/basis-link/program -> http://wiki.services.openoffice.org/wiki/VCLTesttool - -There is also some output in the resultfile of the test, that should -give some hint, about the hid.lst; Either it was already there, got -copied from OOo or simply just not found. - -If no hid.lst file is found, or could not be copied a messagebox comes up, -telling the reason and testing is aborted. Then please read the -additional messages in the resultfile. - -There might also be the case where the version of the hid.lst does not match the -version of the used OOo. Then there is an informal message shown. -The version should not differ, please check and correct the location of -the hid.lst file. Some reasons might be: -- the build was not done with configure switch --enable-hids; - then the hid.lst comes from helpcontent2/helpers/hid.lst, which - is a constant one, which is far too old. -As for the VCL TestTool environment, the hid.lst file is also version dependant to OOo. - -Current warnings in results ---------------------------- - -There are currenty about 99 warnings in the beginning, which are already -fixed in CWS dba32e: i103219, butis not yet integrated into the master. - -Getting help ------------- - -If nothing helps, do not hesitate to ask on maling list: -dev@qa.openoffice.org -Start your subject with '[automation]: ' - diff --git a/testautomation/global/required/includes/g_printing.inc b/testautomation/global/required/includes/g_printing.inc index 15ee12c4308d..2d0bd716e551 100644 --- a/testautomation/global/required/includes/g_printing.inc +++ b/testautomation/global/required/includes/g_printing.inc @@ -408,7 +408,7 @@ testcase tPrintLayout() endif endif - lb_test( PrintOrder, 2, 1, "" ) + lb_test( PrintOrder, 4, 1, "" ) cb_test( BorderAroundPages, false, "" ) select case( gApplication ) diff --git a/testautomation/global/sid/all.sid b/testautomation/global/sid/all.sid index f19c453b9ad2..258ef7c2da3d 100755 --- a/testautomation/global/sid/all.sid +++ b/testautomation/global/sid/all.sid @@ -10,17 +10,17 @@ ' *** Nicht mehr aktuelle Slots, *** ' ** die aber noch verwendet werden ** ' ** -DateiNeu SID_NEWDOC -DateiLetzteVersion SID_RELOAD SID_LASTVERSIONDOC -DateiVersenden SID_MAIL_SENDDOC -DateiScannenQuelleAuswaehlen SID_TWAIN_SELECT -DateiScannenAnfordern SID_TWAIN_SELECT -BearbeitenAllesMarkieren SID_SELECT -EinfuegenObjekt SID_INSERT_OBJECT -EinfuegenObjektObjekte SID_INSERT_OBJECT -EinfuegenObjektWriter FN_INSERT_OBJECT_DLG -EinfuegenRahmenfenster SID_INSERT_FLOATINGFRAME -ExtrasNumerierungAufzaehlung FN_NUMBER_BULLETS +DateiNeu .uno:NewDoc +DateiLetzteVersion SID_RELOAD +DateiVersenden .uno:SendMail +DateiScannenQuelleAuswaehlen .uno:TwainSelect +DateiScannenAnfordern .uno:TwainSelect +BearbeitenAllesMarkieren .uno:Select +EinfuegenObjekt .uno:InsertObject +EinfuegenObjektObjekte .uno:InsertObject +EinfuegenObjektWriter .uno:InsertObjectDialog +EinfuegenRahmenfenster .uno:InsertObjectFloatingFrame +ExtrasNumerierungAufzaehlung .uno:BulletsAndNumberingDialog ' *************************************************** @@ -28,621 +28,620 @@ ExtrasNumerierungAufzaehlung FN_NUMBER_BULLETS ' ********* DateiMen� ********* ' **** ' **** Alle -DateiNeuAusVorlage SID_NEWDOC -DateiOeffnen SID_OPENDOC +DateiNeuAusVorlage .uno:NewDoc +DateiOeffnen .uno:Open DateiAutopilotBrief service:com.sun.star.wizards.letter.CallWizard?start DateiAutopilotFax service:com.sun.star.wizards.fax.CallWizard?start DateiAutopilotAgenda service:com.sun.star.wizards.agenda.CallWizard?start -DateiAutopilotPraesentation SID_SD_AUTOPILOT -DateiSchliessenUndZurueck SID_CLOSEDOC -DateiKopieAktualisieren SID_SAVEDOC -DateiKopieSpeichern SID_SAVEASDOC -DateiSchliessen SID_CLOSEDOC -DateiSpeichern SID_SAVEDOC -DateiSpeichernUnter SID_SAVEASDOC -DateiAllesSpeichern SID_SAVEDOCS -DateiExportieren SID_EXPORTDOC -DateiSendenDokumentAlseMail SID_MAIL_SENDDOC -DateiVersionen SID_VERSION -DateiNeuLaden SID_RELOAD SID_LASTVERSIONDOC -DateiEigenschaften SID_DOCINFO -DateiDokumentvorlageSpeichern SID_DOCTEMPLATE -DateiDokumentvorlageVerwalten SID_ORGANIZER -DateiDokumentvorlageBearbeiten SID_OPENTEMPLATE -DateiSeitenansicht SID_PRINTPREVIEW -DateiDrucken SID_PRINTDOC -DateiDruckereinstellung SID_SETUPPRINTER +DateiAutopilotPraesentation .uno:AutoPilotPresentations +DateiSchliessenUndZurueck .uno:CloseDoc +DateiKopieAktualisieren .uno:Save +DateiKopieSpeichern .uno:SaveAs +DateiSchliessen .uno:CloseDoc +DateiSpeichern .uno:Save +DateiSpeichernUnter .uno:SaveAs +DateiAllesSpeichern .uno:SaveAll +DateiExportieren .uno:ExportTo +DateiSendenDokumentAlseMail .uno:SendMail +DateiVersionen .uno:VersionDialog +DateiNeuLaden SID_RELOAD +DateiEigenschaften .uno:SetDocumentProperties +DateiDokumentvorlageSpeichern .uno:SaveAsTemplate +DateiDokumentvorlageVerwalten .uno:Organizer +DateiDokumentvorlageBearbeiten .uno:OpenTemplate +DateiSeitenansicht .uno:PrintPreview +DateiDrucken .uno:Print +DateiDruckereinstellung .uno:PrinterSetup DateiBeenden SID_QUITAPP ' **** Writer -DateiSendenGliederungAnPraesentation FN_OUTLINE_TO_IMPRESS -DateiSendenGliederungZumClipboard FN_OUTLINE_TO_CLIPBOARD -DateiSendenAutoabstractErzeugen FN_ABSTRACT_NEWDOC -DateiSendenAutoabstractAnPraesentation FN_ABSTRACT_STARIMPRESS -DateiSendenGlobaldokumentErzeugen FN_NEW_GLOBAL_DOC -DateiSendenHTMLDokumentErzeugen FN_NEW_HTML_DOC -DateiSerienbrief FN_QRY_MERGE +DateiSendenGliederungAnPraesentation .uno:SendOutlineToStarImpress +DateiSendenGliederungZumClipboard .uno:SendOutlineToClipboard +DateiSendenAutoabstractErzeugen .uno:CreateAbstract +DateiSendenAutoabstractAnPraesentation .uno:SendAbstractToStarImpress +DateiSendenGlobaldokumentErzeugen .uno:NewGlobalDoc +DateiSendenHTMLDokumentErzeugen .uno:NewHtmlDoc +DateiSerienbrief .uno:MergeDialog ' **** Impress / Draw -DateiSeiteEinrichten SID_PAGESETUP -Dateieinpacken SID_PACKNGO +DateiSeiteEinrichten .uno:PageSetup +Dateieinpacken .uno:PackAndGo ' **** Image / Chart / Math -DateiDokumentAlsEMail SID_MAIL_SENDDOC +DateiDokumentAlsEMail .uno:SendMail ' *********************************** ' ********* Bearbeitenmenue ********* ' **** ' **** Alle -BearbeitenRueckgaengig SID_UNDO -BearbeitenWiederholen SID_REDO -BearbeitenLetzterBefehl SID_REPEAT -BearbeitenAusschneiden SID_CUT -BearbeitenKopieren SID_COPY -BearbeitenEinfuegen SID_PASTE -BearbeitenLoeschen SID_DELETE -BearbeitenAllesAuswaehlen SID_SELECTALL -BearbeitenSuchenErsetzen SID_SEARCH_DLG -BearbeitenNavigator SID_NAVIGATOR -BearbeitenAutoText FN_GLOSSARY_DLG -BearbeitenPlugIn SID_PLUGINS_ACTIVE -BearbeitenImageMap SID_IMAP -BearbeitenLiteraturdatenbank SID_COMP_BIBLIOGRAPHY +BearbeitenRueckgaengig .uno:Undo +BearbeitenWiederholen .uno:Redo +BearbeitenLetzterBefehl .uno:Repeat +BearbeitenAusschneiden .uno:Cut +BearbeitenKopieren .uno:Copy +BearbeitenEinfuegen .uno:Paste +BearbeitenLoeschen .uno:Delete +BearbeitenAllesAuswaehlen .uno:SelectAll +BearbeitenSuchenErsetzen .uno:SearchDialog +BearbeitenNavigator .uno:Navigator +BearbeitenAutoText .uno:EditGlossary +BearbeitenPlugIn .uno:PlugInsActive +BearbeitenImageMap .uno:ImageMapDialog +BearbeitenLiteraturdatenbank .uno:BibliographyComponent ' **** Writer BearbeitenInhalteEinfuegenWriter .uno:PasteSpecial -BearbeitenAenderungenAufzeichnen FN_REDLINE_ON -BearbeitenAenderungenAnzeigen FN_REDLINE_SHOW -BearbeitenAenderungenAkzeptierenOderVerwerfen FN_REDLINE_ACCEPT -BearbeitenAenderungenKommentar FN_REDLINE_COMMENT -BearbeitenAenderungenDokumentZusammenfuehren SID_DOCUMENT_MERGE -BearbeitenDokumentVergleichen SID_DOCUMENT_COMPARE -BearbeitenVerknuepfungenWriter FN_EDIT_LINK_DLG -BearbeitenDatenbankAustauschen FN_CHANGE_DBFIELD -BearbeitenFeldbefehl FN_EDIT_FIELD -BearbeitenFussnote FN_EDIT_FOOTNOTE -BearbeitenVerzeichniseintrag FN_EDIT_IDX_ENTRY_DLG -BearbeitenHyperlink FN_EDIT_HYPERLINK +BearbeitenAenderungenAufzeichnen .uno:TrackChanges +BearbeitenAenderungenAnzeigen .uno:ShowTrackedChanges +BearbeitenAenderungenAkzeptierenOderVerwerfen .uno:AcceptTrackedChanges +BearbeitenAenderungenKommentar .uno:CommentChangeTracking +BearbeitenAenderungenDokumentZusammenfuehren .uno:MergeDocuments +BearbeitenDokumentVergleichen .uno:CompareDocuments +BearbeitenVerknuepfungenWriter .uno:LinkDialog +BearbeitenDatenbankAustauschen .uno:ChangeDatabaseField +BearbeitenFeldbefehl .uno:FieldDialog +BearbeitenFussnote .uno:EditFootnote +BearbeitenVerzeichniseintrag .uno:IndexEntryDialog +BearbeitenHyperlink .uno:EditHyperlink ' **** Calc BearbeitenInhalteEinfuegenCalc .uno:PasteSpecial -BearbeitenAenderungenAufzeichnenCalc FID_CHG_RECORD -BearbeitenAenderungenSchuetzen SID_CHG_PROTECT -BearbeitenAenderungenKommentarCalc FID_CHG_COMMENT -BearbeitenAenderungenAnzeigenCalc FID_CHG_SHOW -BearbeitenAenderungenAkzeptierenOderVerwerfenCalc FID_CHG_ACCEPT -BearbeitenAenderungenDokumentZusammenfuehrenCalc SID_DOCUMENT_MERGE -BearbeitenDokumentVergleichenCalc SID_DOCUMENT_COMPARE -BearbeitenVerknuepfungenCalc SID_LINKS -BearbeitenKopfUndFusszeilen SID_HFEDIT -BearbeitenAusfuellenLinks FID_FILL_TO_LEFT -BearbeitenAusfuellenOben FID_FILL_TO_TOP -BearbeitenAusfuellenRechts FID_FILL_TO_RIGHT -BearbeitenAusfuellenReihe FID_FILL_SERIES -BearbeitenAusfuellenTabelle FID_FILL_TAB -BearbeitenAusfuellenUnten FID_FILL_TO_BOTTOM -BearbeitenInhalteLoeschen SID_DELETE -BearbeitenZellenLoeschen FID_DELETE_CELL -BearbeitenTabelleLoeschen FID_DELETE_TABLE -BearbeitenTabelleVerschiebenKopieren FID_TAB_MOVE -BearbeitenManuellenUmbruchLoeschenSpaltenumbruch FID_DEL_COLBRK -BearbeitenManuellenUmbruchLoeschenZeilenumbruch FID_DEL_ROWBRK +BearbeitenAenderungenAufzeichnenCalc .uno:TraceChangeMode +BearbeitenAenderungenSchuetzen .uno:ProtectTraceChangeMode +BearbeitenAenderungenKommentarCalc .uno:CommentChange +BearbeitenAenderungenAnzeigenCalc .uno:ShowChanges +BearbeitenAenderungenAkzeptierenOderVerwerfenCalc .uno:AcceptChanges +BearbeitenAenderungenDokumentZusammenfuehrenCalc .uno:MergeDocuments +BearbeitenDokumentVergleichenCalc .uno:CompareDocuments +BearbeitenVerknuepfungenCalc .uno:EditLinks +BearbeitenKopfUndFusszeilen .uno:EditHeaderAndFooter +BearbeitenAusfuellenLinks .uno:FillLeft +BearbeitenAusfuellenOben .uno:FillUp +BearbeitenAusfuellenRechts .uno:FillRight +BearbeitenAusfuellenReihe .uno:FillSeries +BearbeitenAusfuellenTabelle .uno:FillTable +BearbeitenAusfuellenUnten .uno:FillDown +BearbeitenInhalteLoeschen .uno:Delete +BearbeitenZellenLoeschen .uno:DeleteCell +BearbeitenTabelleLoeschen .uno:Remove +BearbeitenTabelleVerschiebenKopieren .uno:Move +BearbeitenManuellenUmbruchLoeschenSpaltenumbruch .uno:DeleteColumnbreak +BearbeitenManuellenUmbruchLoeschenZeilenumbruch .uno:DeleteRowbreak ' **** Draw / Impress BearbeitenInhalteEinfuegenDraw .uno:PasteSpecial -BearbeitenVerknuepfungenDraw SID_MANAGE_LINKS -BearbeitenDuplizieren SID_COPYOBJECTS -BearbeitenUeberblenden SID_POLYGON_MORPHING -BearbeitenSeiteLoeschen SID_DELETE_PAGE -BearbeitenEbeneLoeschen SID_DELETE_LAYER -BearbeitenFeldbefehlDraw SID_MODIFY_FIELD +BearbeitenVerknuepfungenDraw .uno:ManageLinks +BearbeitenDuplizieren .uno:CopyObjects +BearbeitenUeberblenden .uno:Morphing +BearbeitenSeiteLoeschen .uno:DeletePage +BearbeitenEbeneLoeschen .uno:DeleteLayer +BearbeitenFeldbefehlDraw .uno:ModifyField ' **** Image / Chart / Math -BearbeitenAllesAuswaehlenMath SID_SELECT -BearbeitenNaechsterMarker SID_NEXTMARK -BearbeitenVorherigerMarker SID_PREVMARK -BearbeitenNaechsterFehler SID_NEXTERR -BearbeitenVorherigerFehler SID_PREVERR -BearbeitenDiagrammdaten SID_DIAGRAM_DATA +BearbeitenAllesAuswaehlenMath .uno:Select +BearbeitenNaechsterMarker .uno:NextMark +BearbeitenVorherigerMarker .uno:PrevMark +BearbeitenNaechsterFehler .uno:NextError +BearbeitenVorherigerFehler .uno:PrevError +BearbeitenDiagrammdaten sym:CHART2_HID_DIAGRAM_DATA ' *********************************** ' ********* Ansichtmenue ********* ' **** ' **** Alle -AnsichtMassstab SID_ATTR_ZOOM -AnsichtBrowser SID_BROWSER -AnsichtHyperlinkleiste SID_HYPERLINK_INSERT -AnsichtStatusleiste SID_TOGGLESTATUSBAR SID_TOGGLESTATUSBAR -AnsichtGanzerBildschirm SID_WIN_FULLSCREEN SID_FULLSCREEN +AnsichtMassstab .uno:Zoom +AnsichtBrowser .uno:Beamer +AnsichtHyperlinkleiste .uno:InsertHyperlink +AnsichtStatusleiste .uno:StatusBarVisible .uno:StatusBarVisible +AnsichtGanzerBildschirm .uno:FullScreen SID_FULLSCREEN ' **** Writer -AnsichtLineal FN_RULER -AnsichtAktuelleDatenbank SID_IMPORT_DATA -AnsichtTextbegrenzungen FN_VIEW_BOUNDS -AnsichtMarkierungen FN_VIEW_MARKS -AnsichtFeldbefehle FN_VIEW_FIELDNAME -AnsichtSteuerzeichen FN_VIEW_META_CHARS -AnsichtOnlineLayout SID_BROWSER_MODE -AnsichtVersteckteAbsaetze FN_VIEW_HIDDEN_PARA -AnsichtHTMLBearbeitung SID_HTML_MODE -AnsichtHTMLQuelltextWriter HID_SOURCEVIEW +AnsichtLineal .uno:Ruler +AnsichtAktuelleDatenbank .uno:DataImport +AnsichtTextbegrenzungen .uno:ViewBounds +AnsichtMarkierungen .uno:Marks +AnsichtFeldbefehle .uno:Fieldnames +AnsichtSteuerzeichen .uno:ControlCodes +AnsichtOnlineLayout .uno:BrowseView +AnsichtVersteckteAbsaetze .uno:ShowHiddenParagraphs +AnsichtHTMLBearbeitung .uno:HtmlMode +AnsichtHTMLQuelltextWriter sym:SW_HID_SOURCEVIEW ' **** Calc -AnsichtRechenleiste FID_TOGGLEINPUTLINE -AnsichtSpaltenZeilenkoepfe FID_TOGGLEHEADERS -AnsichtWerteHervorheben FID_TOGGLESYNTAX -AnsichtSeitenumbruchVorschau FID_PAGEBREAKMODE +AnsichtRechenleiste .uno:InputLineVisible +AnsichtSpaltenZeilenkoepfe .uno:ViewRowColumnHeaders +AnsichtWerteHervorheben .uno:ViewValueHighlighting +AnsichtSeitenumbruchVorschau .uno:PagebreakMode ' **** Draw / Impress -AnsichtFarbleiste SID_COLOR_CONTROL -AnsichtLineale SID_RULER -AnsichtZeichnung SID_DRAWINGMODE -AnsichtGliederung SID_OUTLINEMODE -AnsichtDiasortierung SID_DIAMODE -AnsichtNotizen SID_NOTESMODE -AnsichtHandzettel SID_HANDOUTMODE -AnsichtBildschirmpraesentation SID_PRESENTATION -AnsichtVorschau SID_PREVIEW_WIN -AnsichtSeite SID_PAGEMODE -AnsichtHintergrund SID_MASTERPAGE -AnsichtHintergrundZeichnung SID_SLIDE_MASTERPAGE -AnsichtHintergrundTitel SID_TITLE_MASTERPAGE -AnsichtHintergrundNotizen SID_NOTES_MASTERPAGE -AnsichtHintergrundHandzettel SID_HANDOUT_MASTERPAGE -AnsichtEbene SID_LAYERMODE +AnsichtFarbleiste .uno:ColorControl +AnsichtLineale .uno:ShowRuler +AnsichtZeichnung .uno:DrawingMode +AnsichtGliederung .uno:OutlineMode +AnsichtDiasortierung .uno:DiaMode +AnsichtNotizen .uno:NotesMode +AnsichtHandzettel .uno:HandoutMode +AnsichtBildschirmpraesentation .uno:Presentation +AnsichtVorschau .uno:PreviewWindow +AnsichtSeite .uno:PageMode +AnsichtHintergrund .uno:MasterPage +AnsichtHintergrundZeichnung .uno:SlideMasterPage +AnsichtHintergrundTitel .uno:TitleMasterPage +AnsichtHintergrundNotizen .uno:NotesMasterPage +AnsichtHintergrundHandzettel .uno:HandoutMasterPage +AnsichtEbene .uno:LayerMode ' **** Image -AnsichtFuenfzig SID_VIEW050 -AnsichtEinhundert SID_VIEW100 -AnsichtZweihundert SID_VIEW200 -AnsichtVergroessern SID_ZOOMIN -AnsichtVerkleinern SID_ZOOMOUT -AnsichtAllesAnzeigen SID_ADJUST -AnsichtAktualisieren SID_DRAW -AnsichtOperatoren SID_TOOLBOX +AnsichtFuenfzig .uno:View50 +AnsichtEinhundert .uno:View100 +AnsichtZweihundert .uno:View200 +AnsichtVergroessern .uno:ZoomIn +AnsichtVerkleinern .uno:ZoomOut +AnsichtAllesAnzeigen .uno:Adjust +AnsichtAktualisieren .uno:Draw +AnsichtOperatoren .uno:ToolBox ' **** Math -AnsichtAutomatischesNeuzeichnen SID_AUTO_REDRAW +AnsichtAutomatischesNeuzeichnen .uno:RedrawAutomatic ' **** Frameset -AnsichtHTMLQuelltextFrame SID_SOURCEVIEW +AnsichtHTMLQuelltextFrame .uno:SourceView ' **** WriterWeb -AnsichtDruckLayout FN_PRINT_LAYOUT -AnsichtHTMLQuelltext SID_SOURCEVIEW +AnsichtDruckLayout .uno:PrintLayout +AnsichtHTMLQuelltext .uno:SourceView ' *********************************** ' ********* Einfuegenmenue ********** ' **** ' **** Alle -EinfuegenGrafikAusDatei SID_INSERT_GRAPHIC -EinfuegenGrafikDiagramm SID_INSERT_DIAGRAM -EinfuegenObjektOLEObjekt SID_INSERT_OBJECT -EinfuegenObjektPlugIn SID_INSERT_PLUGIN -EinfuegenObjektApplet SID_INSERT_APPLET -EinfuegenObjektKlang SID_INSERT_SOUND -EinfuegenObjektVideo SID_INSERT_VIDEO -EinfuegenFrame SID_INSERT_FLOATINGFRAME +EinfuegenGrafikAusDatei .uno:InsertGraphic +EinfuegenGrafikDiagramm .uno:InsertObjectChart +EinfuegenObjektOLEObjekt .uno:InsertObject +EinfuegenObjektPlugIn .uno:InsertPlugin +EinfuegenObjektKlang .uno:InsertSound +EinfuegenObjektVideo .uno:InsertVideo +EinfuegenFrame .uno:InsertObjectFloatingFrame ' **** Writer EinfuegenSonderzeichenWriter .uno:InsertSymbol -EinfuegenFormelWriter FN_INSERT_SMA -EinfuegenTabelleWriter FN_INSERT_TABLE -EinfuegenDateiWriter SID_INSERTDOC -EinfuegenManuellerUmbruch FN_INSERT_BREAK_DLG -EinfuegenFeldbefehlDatum FN_INSERT_FLD_DATE -EinfuegenFeldbefehlUhrzeit FN_INSERT_FLD_TIME -EinfuegenFeldbefehlSeitennummer FN_INSERT_FLD_PGNUMBER -EinfuegenFeldbefehlSeitenanzahl FN_INSERT_FLD_PGCOUNT -EinfuegenFeldbefehlThema FN_INSERT_FLD_TOPIC -EinfuegenFeldbefehlTitel FN_INSERT_FLD_TITLE -EinfuegenFeldbefehlAutor FN_INSERT_FLD_AUTHOR -EinfuegenFeldbefehlAndere FN_INSERT_FIELD -EinfuegenBereich FN_INSERT_REGION -EinfuegenHyperlink SID_HYPERLINK_DIALOG -EinfuegenFussnote FN_INSERT_FOOTNOTE_DLG -EinfuegenBeschriftung FN_INSERT_CAPTION -EinfuegenTextmarke FN_INSERT_BOOKMARK -EinfuegenQuerverweis FN_INSERT_REF_FIELD -EinfuegenNotizWriter FN_POSTIT -EinfuegenScript FN_JAVAEDIT -EinfuegenVerzeichnis FN_INSERT_MULTI_TOX -EinfuegenVerzeichnisseEintrag FN_INSERT_IDX_ENTRY_DLG -EinfuegenVerzeichnisLiteraturverzeichnis FN_INSERT_AUTH_ENTRY_DLG -EinfuegenBriefumschlag FN_ENVELOP -EinfuegenEtiketten FN_LABEL -EinfuegenVisitenkarten FN_BUSINESS_CARD -EinfuegenHorizontaleLinie FN_INSERT_HRULER -EinfuegenRahmen FN_INSERT_FRAME -EinfuegenGrafikScannenQuelleAuswaehlen SID_TWAIN_SELECT -EinfuegenGrafikScannenAnfordern SID_TWAIN_TRANSFER +EinfuegenFormelWriter .uno:InsertObjectStarMath +EinfuegenTabelleWriter .uno:InsertTable +EinfuegenDateiWriter .uno:InsertDoc +EinfuegenManuellerUmbruch .uno:InsertBreak +EinfuegenFeldbefehlDatum .uno:InsertDateField +EinfuegenFeldbefehlUhrzeit .uno:InsertTimeField +EinfuegenFeldbefehlSeitennummer .uno:InsertPageNumberField +EinfuegenFeldbefehlSeitenanzahl .uno:InsertPageCountField +EinfuegenFeldbefehlThema .uno:InsertTopicField +EinfuegenFeldbefehlTitel .uno:InsertTitleField +EinfuegenFeldbefehlAutor .uno:InsertAuthorField +EinfuegenFeldbefehlAndere .uno:InsertField +EinfuegenBereich .uno:InsertSection +EinfuegenHyperlink .uno:HyperlinkDialog +EinfuegenFussnote .uno:InsertFootnoteDialog +EinfuegenBeschriftung .uno:InsertCaptionDialog +EinfuegenTextmarke .uno:InsertBookmark +EinfuegenQuerverweis .uno:InsertReferenceField +EinfuegenNotizWriter .uno:InsertAnnotation +EinfuegenScript .uno:InsertScript +EinfuegenVerzeichnis .uno:InsertMultiIndex +EinfuegenVerzeichnisseEintrag .uno:InsertIndexesEntry +EinfuegenVerzeichnisLiteraturverzeichnis .uno:InsertAuthoritiesEntry +EinfuegenBriefumschlag .uno:InsertEnvelope +EinfuegenEtiketten .uno:InsertLabels +EinfuegenVisitenkarten .uno:InsertBusinessCard +EinfuegenHorizontaleLinie .uno:InsertGraphicRuler +EinfuegenRahmen .uno:InsertFrame +EinfuegenGrafikScannenQuelleAuswaehlen .uno:TwainSelect +EinfuegenGrafikScannenAnfordern .uno:TwainTransfer ' **** Calc -EinfuegenSonderzeichenCalc SID_CHARMAP -EinfuegenGrafikAusBildbearbeitungCalc SID_INSERT_SIMAGE -EinfuegenFormelCalc SID_INSERT_SMATH -EinfuegenTabelleCalc FID_INS_TABLE -EinfuegenManuellerUmbruchSpaltenumbruch FID_INS_COLBRK -EinfuegenManuellerUmbruchZeilenumbruch FID_INS_ROWBRK -EinfuegenZellen FID_INS_CELL -EinfuegenZeilenCalc FID_INS_ROW -EinfuegenSpaltenCalc FID_INS_COLUMN -EinfuegenFunktion SID_OPENDLG_FUNCTION -EinfuegenNamenEinfuegen FID_INSERT_NAME -EinfuegenNamenFestlegen FID_DEFINE_NAME -EinfuegenNamenUebernehmen FID_USE_NAME -EinfuegenNamenBeschriftungen SID_DEFINE_COLROWNAMERANGES -EinfuegenNotizCalc SID_INSERT_POSTIT -EinfuegenExterneDatenQuelle SID_EXTERNAL_SOURCE +EinfuegenSonderzeichenCalc .uno:InsertSymbol +EinfuegenGrafikAusBildbearbeitungCalc .uno:InsertObjectStarImage +EinfuegenFormelCalc .uno:InsertObjectStarMath +EinfuegenTabelleCalc .uno:Insert +EinfuegenManuellerUmbruchSpaltenumbruch .uno:InsertColumnBreak +EinfuegenManuellerUmbruchZeilenumbruch .uno:InsertRowBreak +EinfuegenZellen .uno:InsertCell +EinfuegenZeilenCalc .uno:InsertRows +EinfuegenSpaltenCalc .uno:InsertColumns +EinfuegenFunktion .uno:FunctionDialog +EinfuegenNamenEinfuegen .uno:InsertName +EinfuegenNamenFestlegen .uno:DefineName +EinfuegenNamenUebernehmen .uno:CreateNames +EinfuegenNamenBeschriftungen .uno:DefineLabelRange +EinfuegenNotizCalc .uno:InsertAnnotation +EinfuegenExterneDatenQuelle .uno:InsertExternalDataSource ' **** Einfuegenmenue : Draw EinfuegenSonderzeichenDraw .uno:InsertSymbol -EinfuegenGrafikAusBildbearbeitungDraw SID_INSERT_IMAGE -EinfuegenFormelDraw SID_INSERT_MATH -EinfuegenTabelleDraw SID_ATTR_TABLE -EinfuegenDateiDraw SID_INSERTFILE -EinfuegenSeite SID_INSERTPAGE -EinfuegenSeiteDuplizieren SID_DUPLICATE_PAGE -EinfuegenSeitenAusGliederung SID_EXPAND_PAGE -EinfuegenUebersichtsseite SID_SUMMARY_PAGE -EinfuegenEbene SID_INSERTLAYER -EinfuegenFangliniePunkt SID_CAPTUREPOINT -EinfuegenFeldbefehlDatumFix SID_INSERT_FLD_DATE_FIX -EinfuegenFeldbefehlDatumVariabel SID_INSERT_FLD_DATE_VAR -EinfuegenFeldbefehlUhrzeitFix SID_INSERT_FLD_TIME_FIX -EinfuegenFeldbefehlUhrzeitVariabel SID_INSERT_FLD_TIME_VAR -EinfuegenFeldbefehlAutorDraw SID_INSERT_FLD_AUTHOR -EinfuegenFeldbefehlSeitennummerDraw SID_INSERT_FLD_PAGE -EinfuegenFeldbefehlDateiname SID_INSERT_FLD_FILE -EinfuegenQuelleAuswaehlen SID_TWAIN_SELECT -EinfuegenAnfordern SID_TWAIN_TRANSFER -EinfuegenSymbol SID_CHOOSE_POLYGON +EinfuegenGrafikAusBildbearbeitungDraw .uno:InsertImage +EinfuegenFormelDraw .uno:InsertMath +EinfuegenTabelleDraw .uno:InsertSpreadsheet +EinfuegenDateiDraw .uno:ImportFromFile +EinfuegenSeite .uno:InsertPage +EinfuegenSeiteDuplizieren .uno:DuplicatePage +EinfuegenSeitenAusGliederung .uno:ExpandPage +EinfuegenUebersichtsseite .uno:SummaryPage +EinfuegenEbene .uno:InsertLayer +EinfuegenFangliniePunkt .uno:CapturePoint +EinfuegenFeldbefehlDatumFix .uno:InsertDateFieldFix +EinfuegenFeldbefehlDatumVariabel .uno:InsertDateFieldVar +EinfuegenFeldbefehlUhrzeitFix .uno:InsertTimeFieldFix +EinfuegenFeldbefehlUhrzeitVariabel .uno:InsertTimeFieldVar +EinfuegenFeldbefehlAutorDraw .uno:InsertAuthorField +EinfuegenFeldbefehlSeitennummerDraw .uno:InsertPageField +EinfuegenFeldbefehlDateiname .uno:InsertFileField +EinfuegenQuelleAuswaehlen .uno:TwainSelect +EinfuegenAnfordern .uno:TwainTransfer +EinfuegenSymbol .uno:ChoosePolygon ' *********************************** ' *********** Formatmenue *********** ' **** ' **** Alle -FormatZeichen SID_CHAR_DLG +FormatZeichen .uno:FontDialog FormatLinie .uno:FormatLine FormatFlaeche .uno:FormatArea -FormatAbsatz SID_PARA_DLG -FormatVorlagenkatalog SID_STYLE_CATALOG -FormatVorlagenLaden SID_TEMPLATE_LOAD -FormatGestalter SID_STYLE_DESIGNER -'FormatStylist SID_STYLE_DESIGNER -FormatKontrollfeld SID_FM_CTL_PROPERTIES -FormatFormularEigenschaften SID_FM_PROPERTIES -FormatGrossBuchstaben SID_TRANSLITERATE_UPPER -FormatKleinBuchstaben SID_TRANSLITERATE_LOWER +FormatAbsatz .uno:ParagraphDialog +FormatVorlagenkatalog .uno:StyleCatalog +FormatVorlagenLaden .uno:LoadStyles +FormatGestalter .uno:DesignerDialog +'FormatStylist .uno:DesignerDialog +FormatKontrollfeld .uno:ControlProperties +FormatFormularEigenschaften .uno:FormProperties +FormatGrossBuchstaben .uno:ChangeCaseToUpper +FormatKleinBuchstaben .uno:ChangeCaseToLower ' **** Writer -FormatStandardWriter FN_FORMAT_RESET -FormatSeiteWriter FN_FORMAT_PAGE_DLG -FormatBereiche FN_EDIT_REGION -FormatNumerierungAufzaehlung FN_NUMBER_BULLETS -FormatAutoformatWaehrendDerEingabe FN_AUTOFORMAT_AUTO -FormatAutoFormatAutomatisch FN_AUTOFORMAT_AUTO -FormatAutoformatDokumentFormatieren FN_AUTOFORMAT_APPLY -FormatAutoFormatAutoFormat SID_AUTOFORMAT -FormatAutoFormatEinstellungen SID_AUTOFORMAT -FormatTabelle FN_FORMAT_TABLE_DLG -FormatTabelleAuftrennen FN_TABLE_SPLIT_TABLE -FormatTabellenVerbinden FN_TABLE_MERGE_TABLE -FormatZahlenformat FN_NUM_FORMAT_TABLE_DLG -FormatZelleVerbinden FN_TABLE_MERGE_CELLS -FormatZelleTeilen FN_TABLE_SPLIT_CELLS -FormatZelleOben FN_TABLE_VERT_NONE -FormatZelleMitte FN_TABLE_VERT_CENTER -FormatZelleUnten FN_TABLE_VERT_BOTTOM -FormatZelleSchuetzen FN_TABLE_SET_READ_ONLY_CELLS -FormatZelleSchutzAufheben FN_TABLE_UNSET_READ_ONLY_CELLS -FormatZeileHoehe FN_TABLE_SET_ROW_HEIGHT -FormatZeileOptimaleHoehe FN_TABLE_OPTIMAL_HEIGHT -FormatZeileZeilenGleichmaessigVerteilen FN_TABLE_BALANCE_ROWS -FormatZeileSelektieren FN_TABLE_SELECT_ROW -FormatZeileEinfuegen FN_TABLE_INSERT_ROW_DLG -FormatZeileLoeschen FN_TABLE_DELETE_ROW -FormatSpalteBreiteWriter FN_TABLE_SET_COL_WIDTH -FormatSpalteOptimaleBreiteWriter FN_TABLE_ADJUST_CELLS -FormatSpalteSpaltenGleichmaessigVerteilen FN_TABLE_BALANCE_CELLS -FormatSpalteSelektieren FN_TABLE_SELECT_COL -FormatSpalteEinfuegen FN_TABLE_INSERT_COL_DLG -FormatSpalteLoeschen FN_TABLE_DELETE_COL -FormatGrafik FN_FORMAT_GRAFIC_DLG -FormatRahmen FN_FORMAT_FRAME_DLG -FormatObjekt FN_FORMAT_FRAME_DLG -FormatAnordnungGanzNachVorn SID_FRAME_TO_TOP -FormatAnordnungWeiterNachVorn FN_FRAME_UP -FormatAnordnungWeiterNachHinten FN_FRAME_DOWN -FormatAnordnungGanzNachHinten SID_FRAME_TO_BOTTOM -FormatAnordnungInDenVordergrund SID_OBJECT_HEAVEN -FormatAnordnungInDenHintergrund SID_OBJECT_HELL -FormatAusrichtungLinks FN_FRAME_ALIGN_HORZ_LEFT -FormatAusrichtungZentriert FN_FRAME_ALIGN_HORZ_CENTER -FormatAusrichtungRechts FN_FRAME_ALIGN_HORZ_RIGHT -FormatAusrichtungOben FN_FRAME_ALIGN_VERT_TOP -FormatAusrichtungMitte FN_FRAME_ALIGN_VERT_CENTER -FormatAusrichtungUnten FN_FRAME_ALIGN_VERT_BOTTOM -FormatVerankerungAnDerSeite FN_TOOL_ANKER_PAGE -FormatVerankerungAmAbsatz FN_TOOL_ANKER_PARAGRAPH -FormatVerankerungAmZeichen FN_TOOL_ANKER_CHAR -FormatUmlaufKeinUmlauf FN_FRAME_NOWRAP -FormatUmlaufSeitenumlauf FN_FRAME_WRAP -FormatUmlaufIdealerSeitenumlauf FN_FRAME_WRAP_IDEAL -FormatUmlaufDurchlauf FN_FRAME_WRAPTHRU -FormatUmlaufImHintergrund FN_FRAME_WRAPTHRU_TRANSP -FormatUmlaufKontur FN_FRAME_WRAP_CONTOUR -FormatUmlaufKonturBearbeiten SID_CONTOUR_DLG -FormatUmlaufErsterAbsatz FN_WRAP_ANCHOR_ONLY -FormatUmlaufBearbeiten FN_DRAW_WRAP_DLG -FormatPositionUndGroesse SID_ATTR_TRANSFORM -FormatSpiegelnVertikal FN_FLIP_VERT_GRAFIC -FormatSpiegelnHorizontal FN_FLIP_HORZ_GRAFIC -FormatObjektAusrichtungLinks SID_OBJECT_ALIGN_LEFT -FormatObjektAusrichtungZentriert SID_OBJECT_ALIGN_CENTER -FormatObjektAusrichtungRechts SID_OBJECT_ALIGN_RIGHT -FormatObjektAusrichtungOben SID_OBJECT_ALIGN_UP -FormatObjektAusrichtungMitte SID_OBJECT_ALIGN_MIDDLE -FormatObjektAusrichtungUnten SID_OBJECT_ALIGN_DOWN -FormatPunkteBearbeiten SID_BEZIER_EDIT -FormatGruppeGruppieren SID_GROUP -FormatGruppeAufheben SID_UNGROUP -FormatGruppeBetreten SID_ENTER_GROUP -FormatGruppeVerlassen SID_LEAVE_GROUP -FormatStilFett SID_ATTR_CHAR_WEIGHT -FormatStilKursiv SID_ATTR_CHAR_POSTURE -FormatStilUnterstreichen SID_ATTR_CHAR_UNDERLINE -FormatStilDurchstreichen SID_ATTR_CHAR_STRIKEOUT -FormatStilSchatten SID_ATTR_CHAR_SHADOWED -FormatStilKontur SID_ATTR_CHAR_CONTOUR -FormatStilHochstellen FN_SET_SUPER_SCRIPT -FormatStilTiefstellen FN_SET_SUB_SCRIPT -FormatZeilenabstandEinzeilig SID_ATTR_PARA_LINESPACE_10 -FormatZeilenabstand15Zeilig SID_ATTR_PARA_LINESPACE_15 -FormatZeilenabstandZweizeilig SID_ATTR_PARA_LINESPACE_20 -FormatAusrichtungLinksText SID_ATTR_PARA_ADJUST_LEFT -FormatAusrichtungRechtsText SID_ATTR_PARA_ADJUST_RIGHT -FormatAusrichtungZentriertText SID_ATTR_PARA_ADJUST_CENTER -FormatAusrichtungBlocksatzText SID_ATTR_PARA_ADJUST_BLOCK +FormatStandardWriter .uno:ResetAttributes +FormatSeiteWriter .uno:PageDialog +FormatBereiche .uno:EditRegion +FormatNumerierungAufzaehlung .uno:BulletsAndNumberingDialog +FormatAutoformatWaehrendDerEingabe .uno:OnlineAutoFormat +FormatAutoFormatAutomatisch .uno:OnlineAutoFormat +FormatAutoformatDokumentFormatieren .uno:AutoFormatApply +FormatAutoFormatAutoFormat .uno:AutoFormat +FormatAutoFormatEinstellungen .uno:AutoFormat +FormatTabelle .uno:TableDialog +FormatTabelleAuftrennen .uno:SplitTable +FormatTabellenVerbinden .uno:MergeTable +FormatZahlenformat .uno:TableNumberFormatDialog +FormatZelleVerbinden .uno:MergeCells +FormatZelleTeilen .uno:SplitCell +FormatZelleOben .uno:CellVertTop +FormatZelleMitte .uno:CellVertCenter +FormatZelleUnten .uno:CellVertBottom +FormatZelleSchuetzen .uno:Protect +FormatZelleSchutzAufheben .uno:UnsetCellsReadOnly +FormatZeileHoehe .uno:SetRowHeight +FormatZeileOptimaleHoehe .uno:SetOptimalRowHeight +FormatZeileZeilenGleichmaessigVerteilen .uno:DistributeRows +FormatZeileSelektieren .uno:EntireRow +FormatZeileEinfuegen .uno:InsertRowDialog +FormatZeileLoeschen .uno:DeleteRows +FormatSpalteBreiteWriter .uno:SetColumnWidth +FormatSpalteOptimaleBreiteWriter .uno:SetOptimalColumnWidth +FormatSpalteSpaltenGleichmaessigVerteilen .uno:DistributeColumns +FormatSpalteSelektieren .uno:EntireColumn +FormatSpalteEinfuegen .uno:InsertColumnDialog +FormatSpalteLoeschen .uno:DeleteColumns +FormatGrafik .uno:GraphicDialog +FormatRahmen .uno:FrameDialog +FormatObjekt .uno:FrameDialog +FormatAnordnungGanzNachVorn .uno:BringToFront +FormatAnordnungWeiterNachVorn .uno:ObjectForwardOne +FormatAnordnungWeiterNachHinten .uno:ObjectBackOne +FormatAnordnungGanzNachHinten .uno:SendToBack +FormatAnordnungInDenVordergrund .uno:SetObjectToForeground +FormatAnordnungInDenHintergrund .uno:SetObjectToBackground +FormatAusrichtungLinks .uno:AlignLeft +FormatAusrichtungZentriert .uno:AlignHorizontalCenter +FormatAusrichtungRechts .uno:AlignRight +FormatAusrichtungOben .uno:AlignTop +FormatAusrichtungMitte .uno:AlignVerticalCenter +FormatAusrichtungUnten .uno:AlignBottom +FormatVerankerungAnDerSeite .uno:SetAnchorToPage +FormatVerankerungAmAbsatz .uno:SetAnchorToPara +FormatVerankerungAmZeichen .uno:SetAnchorToChar +FormatUmlaufKeinUmlauf .uno:WrapOff +FormatUmlaufSeitenumlauf .uno:WrapOn +FormatUmlaufIdealerSeitenumlauf .uno:WrapIdeal +FormatUmlaufDurchlauf .uno:WrapThrough +FormatUmlaufImHintergrund .uno:WrapThroughTransparent +FormatUmlaufKontur .uno:WrapContour +FormatUmlaufKonturBearbeiten .uno:ContourDialog +FormatUmlaufErsterAbsatz .uno:WrapAnchorOnly +FormatUmlaufBearbeiten .uno:TextWrap +FormatPositionUndGroesse .uno:TransformDialog +FormatSpiegelnVertikal .uno:FlipVertical +FormatSpiegelnHorizontal .uno:FlipHorizontal +FormatObjektAusrichtungLinks .uno:ObjectAlignLeft +FormatObjektAusrichtungZentriert .uno:AlignCenter +FormatObjektAusrichtungRechts .uno:ObjectAlignRight +FormatObjektAusrichtungOben .uno:AlignUp +FormatObjektAusrichtungMitte .uno:AlignMiddle +FormatObjektAusrichtungUnten .uno:AlignDown +FormatPunkteBearbeiten .uno:ToggleObjectBezierMode +FormatGruppeGruppieren .uno:FormatGroup +FormatGruppeAufheben .uno:FormatUngroup +FormatGruppeBetreten .uno:EnterGroup +FormatGruppeVerlassen .uno:LeaveGroup +FormatStilFett .uno:Bold +FormatStilKursiv .uno:Italic +FormatStilUnterstreichen .uno:Underline +FormatStilDurchstreichen .uno:Strikeout +FormatStilSchatten .uno:Shadowed +FormatStilKontur .uno:OutlineFont +FormatStilHochstellen .uno:SuperScript +FormatStilTiefstellen .uno:SubScript +FormatZeilenabstandEinzeilig .uno:SpacePara1 +FormatZeilenabstand15Zeilig .uno:SpacePara15 +FormatZeilenabstandZweizeilig .uno:SpacePara2 +FormatAusrichtungLinksText .uno:LeftPara +FormatAusrichtungRechtsText .uno:RightPara +FormatAusrichtungZentriertText .uno:CenterPara +FormatAusrichtungBlocksatzText .uno:JustifyPara ' alt -FormatGruppierung SID_GROUP -FormatGruppierungAufheben SID_UNGROUP +FormatGruppierung .uno:FormatGroup +FormatGruppierungAufheben .uno:FormatUngroup ' Formatmenue : Calc -FormatStandardCalc SID_CELL_FORMAT_RESET -FormatTextZeichnung SID_DRAWTEXT_ATTR_DLG -FormatSeiteCalc SID_FORMATPAGE -FormatZelle FID_CELL_FORMAT -FormatZeileAusblenden FID_ROW_HIDE -FormatZeileEinblenden FID_ROW_SHOW -FormatZeileHoeheCalc FID_ROW_HEIGHT -FormatZeileOptimaleHoeheCalc FID_ROW_OPT_HEIGHT -FormatSpalteAusblenden FID_COL_HIDE -FormatSpalteBreiteCalc FID_COL_WIDTH -FormatSpalteEinblenden FID_COL_SHOW -FormatSpalteOptimaleBreiteCalc FID_COL_OPT_WIDTH -FormatTabelleAusblenden FID_TABLE_HIDE -FormatTabelleEinblenden FID_TABLE_SHOW -FormatTabelleUmbenennen FID_TAB_MENU_RENAME FID_TAB_RENAME -FormatZellenZusammenfassenAufheben FID_MERGE_OFF -FormatZellenZusammenfassenFestlegen FID_MERGE_ON -FormatDruckbereicheAufheben SID_DELETE_PRINTAREA -FormatDruckbereicheBearbeiten SID_OPENDLG_EDIT_PRINTAREA -FormatDruckbereicheFestlegen SID_DEFINE_PRINTAREA -FormatBedingteFormatierung SID_OPENDLG_CONDFRMT -FormatVerankerungSeite SID_ANCHOR_PAGE -FormatVerankerungZelle SID_ANCHOR_CELL -FormatSpiegelnVertikalCalc SID_MIRROR_VERTICAL -FormatSpiegelnHorizontalCalc SID_MIRROR_HORIZONTAL -FormatAnordnungGanzNachVornCalc SID_FRAME_TO_TOP -FormatAnordnungWeiterNachVornCalc SID_FRAME_UP -FormatAnordnungWeiterNachHintenCalc SID_FRAME_DOWN -FormatAnordnungGanzNachHintenCalc SID_FRAME_TO_BOTTOM -FormatAnordnungInDenHintergrundCalc SID_OBJECT_HELL -FormatAnordnungInDenVordergrundCalc SID_OBJECT_HEAVEN -FormatAusrichtungLinksCalc SID_OBJECT_ALIGN_LEFT -FormatAusrichtungZentriertCalc SID_OBJECT_ALIGN_CENTER -FormatAusrichtungRechtsCalc SID_OBJECT_ALIGN_RIGHT -FormatAusrichtungObenCalc SID_OBJECT_ALIGN_UP -FormatAusrichtungMitteCalc SID_OBJECT_ALIGN_MIDDLE -FormatAusrichtungUntenCalc SID_OBJECT_ALIGN_DOWN -FormatGruppeGruppierenCalc SID_GROUP -FormatGruppeAufhebenCalc SID_UNGROUP -FormatGruppeBetretenCalc SID_ENTER_GROUP -FormatGruppeVerlassenCalc SID_LEAVE_GROUP +FormatStandardCalc .uno:ResetAttributes +FormatTextZeichnung .uno:TextAttributes +FormatSeiteCalc .uno:PageFormatDialog +FormatZelle .uno:FormatCellDialog +FormatZeileAusblenden .uno:HideRow +FormatZeileEinblenden .uno:ShowRow +FormatZeileHoeheCalc .uno:RowHeight +FormatZeileOptimaleHoeheCalc .uno:SetOptimalRowHeight +FormatSpalteAusblenden .uno:HideColumn +FormatSpalteBreiteCalc .uno:ColumnWidth +FormatSpalteEinblenden .uno:ShowColumn +FormatSpalteOptimaleBreiteCalc .uno:SetOptimalColumnWidth +FormatTabelleAusblenden .uno:Hide +FormatTabelleEinblenden .uno:Show +FormatTabelleUmbenennen .uno:RenameTable .uno:Name +FormatZellenZusammenfassenAufheben .uno:SplitCell +FormatZellenZusammenfassenFestlegen .uno:MergeCells +FormatDruckbereicheAufheben .uno:DeletePrintArea +FormatDruckbereicheBearbeiten .uno:EditPrintArea +FormatDruckbereicheFestlegen .uno:DefinePrintArea +FormatBedingteFormatierung .uno:ConditionalFormatDialog +FormatVerankerungSeite .uno:SetAnchorToPage +FormatVerankerungZelle .uno:SetAnchorToCell +FormatSpiegelnVertikalCalc .uno:ObjectMirrorVertical +FormatSpiegelnHorizontalCalc .uno:ObjectMirrorHorizontal +FormatAnordnungGanzNachVornCalc .uno:BringToFront +FormatAnordnungWeiterNachVornCalc .uno:ObjectForwardOne +FormatAnordnungWeiterNachHintenCalc .uno:ObjectBackOne +FormatAnordnungGanzNachHintenCalc .uno:SendToBack +FormatAnordnungInDenHintergrundCalc .uno:SetObjectToBackground +FormatAnordnungInDenVordergrundCalc .uno:SetObjectToForeground +FormatAusrichtungLinksCalc .uno:ObjectAlignLeft +FormatAusrichtungZentriertCalc .uno:AlignCenter +FormatAusrichtungRechtsCalc .uno:ObjectAlignRight +FormatAusrichtungObenCalc .uno:AlignUp +FormatAusrichtungMitteCalc .uno:AlignMiddle +FormatAusrichtungUntenCalc .uno:AlignDown +FormatGruppeGruppierenCalc .uno:FormatGroup +FormatGruppeAufhebenCalc .uno:FormatUngroup +FormatGruppeBetretenCalc .uno:EnterGroup +FormatGruppeVerlassenCalc .uno:LeaveGroup ' **** Draw / Impress -FormatSeiteDraw SID_PAGESETUP -FormatBemassung SID_MEASURE_DLG -Format3D_Effekte SID_3D_WIN -FormatVerbinder SID_CONNECTION_DLG -FormatAufzaehlungszeichen SID_OUTLINE_BULLET -FormatSeitenlayout SID_MODIFYPAGE -FormatEbene SID_MODIFYLAYER -FormatDesign SID_PRESENTATION_LAYOUT +FormatSeiteDraw .uno:PageSetup +FormatBemassung .uno:MeasureAttributes +Format3D_Effekte .uno:Window3D +FormatVerbinder .uno:ConnectorAttributes +FormatAufzaehlungszeichen .uno:OutlineBullet +FormatSeitenlayout .uno:ModifyPage +FormatEbene .uno:ModifyLayer +FormatDesign .uno:PresentationLayout ' **** Math -FormatSchriftarten SID_FONT -FormatSchriftgroessen SID_FONTSIZE -FormatAbstaende SID_DISTANCE -FormatAusrichtung SID_ALIGN +FormatSchriftarten .uno:ChangeFont +FormatSchriftgroessen .uno:ChangeFontSize +FormatAbstaende .uno:ChangeDistance +FormatAusrichtung .uno:ChangeAlignment ' *********************************** ' *********** Extrasmenue *********** ' **** ' **** Alle -ExtrasRechtschreibungAutomatisch SID_AUTOSPELL_CHECK -ExtrasAutoKorrektur SID_AUTO_CORRECT_DLG -ExtrasMakro SID_BASICCHOOSER -ExtrasAnpassen SID_CONFIG -ExtrasOptionen SID_OPTIONS_TREEDIALOG +ExtrasRechtschreibungAutomatisch .uno:SpellOnline +ExtrasAutoKorrektur .uno:AutoCorrectDlg +ExtrasMakro .uno:MacroDialog +ExtrasAnpassen .uno:ConfigureDialog +ExtrasOptionen .uno:OptionsTreeDialog ' **** Writer -ExtrasKapitelnumerierung FN_NUMBERING_OUTLINE_DLG -ExtrasZeilennumerierung FN_LINE_NUMBERING_DLG -ExtrasSeitennummer FN_CHANGE_PAGENUM -ExtrasFussnoten FN_FORMAT_FOOTNOTE_DLG -ExtrasTextInTabelle FN_CONVERT_TEXT_TABLE -ExtrasSortieren FN_SORTING_DLG -ExtrasBerechnen FN_CALCULATE -ExtrasAktualisierenAllesAktualisieren FN_UPDATE_ALL -ExtrasAktualisierenFelder FN_UPDATE_FIELDS -ExtrasAktualisierenVerknuepfungen FN_UPDATE_ALL_LINKS -ExtrasAktualisierenAktuellesVerzeichnis FN_UPDATE_CUR_TOX -ExtrasAktualisierenAlleVerzeichnisse FN_UPDATE_TOX -ExtrasAktualisierenSeitenformatierung FN_REPAGINATE +ExtrasKapitelnumerierung .uno:ChapterNumberingDialog +ExtrasZeilennumerierung .uno:LineNumberingDialog +ExtrasSeitennummer .uno:PageOffset +ExtrasFussnoten .uno:FootnoteDialog +ExtrasTextInTabelle .uno:ConvertTableText +ExtrasSortieren .uno:SortDialog +ExtrasBerechnen .uno:CalculateSel +ExtrasAktualisierenAllesAktualisieren .uno:UpdateAll +ExtrasAktualisierenFelder .uno:UpdateFields +ExtrasAktualisierenVerknuepfungen .uno:UpdateAllLinks +ExtrasAktualisierenAktuellesVerzeichnis .uno:UpdateCurIndex +ExtrasAktualisierenAlleVerzeichnisse .uno:UpdateAllIndexes +ExtrasAktualisierenSeitenformatierung .uno:Repaginate ' **** WriterWeb -ExtrasSeitenformatierung FN_REPAGINATE +ExtrasSeitenformatierung .uno:Repaginate ' **** Calc -ExtrasDetektivAlleSpurenEntfernen SID_DETECTIVE_DEL_ALL -ExtrasDetektivFuellModus SID_DETECTIVE_FILLMODE -ExtrasDetektivSpurZumFehler SID_DETECTIVE_ADD_ERR -ExtrasDetektivSpurZumNachfolger SID_DETECTIVE_ADD_SUCC -ExtrasDetektivSpurZumNachfolgerEntfernen SID_DETECTIVE_DEL_SUCC -ExtrasDetektivSpurZumVorgaenger SID_DETECTIVE_ADD_PRED -ExtrasDetektivSpurZumVorgaengerEntfernen SID_DETECTIVE_DEL_PRED -ExtrasDetektivUngueltigeDatenEinkreisen SID_DETECTIVE_INVALID SID_FILL_SELECT -ExtrasDetektivAutomatischAktuakisieren SID_DETECTIVE_AUTO -ExtrasZielwertsuche SID_OPENDLG_SOLVE -ExtrasSzenarien SID_SCENARIOS -ExtrasDokumentSchuetzenDokument FID_PROTECT_DOC -ExtrasDokumentSchuetzenTabelle FID_PROTECT_TABLE -ExtrasNeuBerechnen FID_RECALC -ExtrasAutomatischBerechnen FID_AUTO_CALC -ExtrasAutoEingabe FID_AUTOCOMPLETE +ExtrasDetektivAlleSpurenEntfernen .uno:ClearArrows +ExtrasDetektivFuellModus .uno:AuditingFillMode +ExtrasDetektivSpurZumFehler .uno:ShowErrors +ExtrasDetektivSpurZumNachfolger .uno:ShowDependents +ExtrasDetektivSpurZumNachfolgerEntfernen .uno:ClearArrowDependents +ExtrasDetektivSpurZumVorgaenger .uno:ShowPrecedents +ExtrasDetektivSpurZumVorgaengerEntfernen .uno:ClearArrowPrecedents +ExtrasDetektivUngueltigeDatenEinkreisen .uno:ShowInvalid .uno:FillModeSelect +ExtrasDetektivAutomatischAktuakisieren .uno:AutoRefreshArrows +ExtrasZielwertsuche .uno:GoalSeekDialog +ExtrasSzenarien .uno:ScenarioManager +ExtrasDokumentSchuetzenDokument .uno:ToolProtectionDocument +ExtrasDokumentSchuetzenTabelle .uno:Protect +ExtrasNeuBerechnen .uno:Calculate +ExtrasAutomatischBerechnen .uno:AutomaticCalculation +ExtrasAutoEingabe .uno:AutoComplete ' **** Draw / Impress -ExtrasThesaurusDraw SID_THESAURUS -ExtrasPipette SID_BMPMASK +ExtrasThesaurusDraw .uno:ThesaurusDialog +ExtrasPipette .uno:BmpMask ExtrasDiawechsel .uno:SlideChangeWindow -ExtrasAnimation SID_ANIMATION_OBJECTS +ExtrasAnimation .uno:AnimationObjects ExtrasEffekt .uno:AnimationEffects -ExtrasInteraktion SID_ANIMATION_EFFECTS -ExtrasPraesentationseinstellung SID_PRESENTATION_DLG -ExtrasIndividuellePraesentation SID_CUSTOMSHOW_DLG +ExtrasInteraktion .uno:AnimationEffects +ExtrasPraesentationseinstellung .uno:PresentationDialog +ExtrasIndividuellePraesentation .uno:CustomShowDialog ' **** Math -' ExtrasSymbole SID_SYMBOLS -ExtrasSymboleKatalog SID_SYMBOLS_CATALOGUE +' ExtrasSymbole .uno:Symbols +ExtrasSymboleKatalog .uno:SymbolCatalogue ' ExtrasSymboleLaden SID_SYMBOLS_LOAD -ExtrasFormelImportieren SID_IMPORT_FORMULA +ExtrasFormelImportieren .uno:ImportFormula ' *********************************** ' *********** Praesentationmenue ************ ' **** -PraesentationBildschirmpraesentation SID_PRESENTATION -PraesentationPraesentationmitZeitnahme SID_REHEARSE_TIMINGS -PraesentationPraesentationseinstellungen SID_PRESENTATION_DLG -PraesentationIndividuellePraesentation SID_CUSTOMSHOW_DLG +PraesentationBildschirmpraesentation .uno:Presentation +PraesentationPraesentationmitZeitnahme .uno:RehearseTimings +PraesentationPraesentationseinstellungen .uno:PresentationDialog +PraesentationIndividuellePraesentation .uno:CustomShowDialog PraesentationDiawechsel .uno:SlideChangeWindow -PraesentationDiaAnzeigen SID_HIDE_SLIDE -PraesentationAnimation SID_ANIMATION_OBJECTS +PraesentationDiaAnzeigen .uno:HideSlide +PraesentationAnimation .uno:AnimationObjects PraesentationEffekt .uno:AnimationEffects -PraesentationInteraktion SID_ANIMATION_EFFECTS +PraesentationInteraktion .uno:AnimationEffects ' *********************************** ' *********** Datenmenue ************ ' **** ' **** Calc -DatenBereichAuswaehlen SID_SELECT_DB -DatenBereichFestlegen SID_DEFINE_DBNAME -DatenSortieren SID_SORT -DatenFilterAutoFilter SID_AUTO_FILTER -DatenFilterAutoFilterAusblenden SID_AUTOFILTER_HIDE -DatenFilterFilterEntfernen SID_UNFILTER -DatenFilterSpezialfilter SID_SPECIAL_FILTER -DatenFilterStandardfilter SID_FILTER -DatenTeilergebnisse SID_SUBTOTALS -DatenGueltigkeit FID_VALIDATION -DatenDatenpilotAufrufen SID_OPENDLG_PIVOTTABLE -DatenMehrfachoperationen SID_OPENDLG_TABOP -DatenKonsolidieren SID_OPENDLG_CONSOLIDATE -DatenGliederungAutoGliederung SID_AUTO_OUTLINE -DatenGliederungDetailAusblenden SID_OUTLINE_HIDE -DatenGliederungDetailEinblenden SID_OUTLINE_SHOW -DatenGliederungEntfernen SID_OUTLINE_DELETEALL -DatenGliederungGruppierung SID_OUTLINE_MAKE -DatenGliederungGruppierungAufheben SID_OUTLINE_REMOVE -DatenDatenpilotAktualisieren SID_PIVOT_RECALC -DatenDatenpilotLoeschen SID_PIVOT_KILL -DatenBereichAktualisieren SID_REFRESH_DBAREA +DatenBereichAuswaehlen .uno:SelectDB +DatenBereichFestlegen .uno:DefineDBName +DatenSortieren .uno:DataSort +DatenFilterAutoFilter .uno:DataFilterAutoFilter +DatenFilterAutoFilterAusblenden .uno:DataFilterHideAutoFilter +DatenFilterFilterEntfernen .uno:DataFilterRemoveFilter +DatenFilterSpezialfilter .uno:DataFilterSpecialFilter +DatenFilterStandardfilter .uno:DataFilterStandardFilter +DatenTeilergebnisse .uno:DataSubTotals +DatenGueltigkeit .uno:Validation +DatenDatenpilotAufrufen .uno:DataDataPilotRun +DatenMehrfachoperationen .uno:TableOperationDialog +DatenKonsolidieren .uno:DataConsolidate +DatenGliederungAutoGliederung .uno:AutoOutline +DatenGliederungDetailAusblenden .uno:HideDetail +DatenGliederungDetailEinblenden .uno:ShowDetail +DatenGliederungEntfernen .uno:ClearOutline +DatenGliederungGruppierung .uno:Group +DatenGliederungGruppierungAufheben .uno:Ungroup +DatenDatenpilotAktualisieren .uno:RecalcPivotTable +DatenDatenpilotLoeschen .uno:DeletePivotTable +DatenBereichAktualisieren .uno:DataAreaRefresh ' *********************************** ' ********** Fenstermenue *********** ' **** ' **** Alle -FensterNeuesFenster SID_NEWWINDOW +FensterNeuesFenster .uno:NewWindow 'FensterUeberlappend SID_CASCADEWINS 'FensterNebeneinander SID_TILEWINS 'FensterHorizontal SID_HORIZONTALWINS 'FensterVertikal SID_VERTICALWINS -FensterAlleSchliessen SID_CLOSEWINS -FensterTeilen SID_WINDOW_SPLIT -FensterFixieren SID_WINDOW_FIX +FensterAlleSchliessen .uno:CloseWins +FensterTeilen .uno:SplitWindow +FensterFixieren .uno:FreezePanes ' *********************************** ' *********** Hilfemenue ************ ' **** ' **** Alle -HilfeInhalt SID_HELPINDEX -HilfeHelferlein SID_HELP_PI -HilfeTip SID_HELPTIPS -HilfeAktiveHilfe SID_HELPBALLOONS -HilfeOnlineregistrierung SID_ONLINE_REGISTRATION -HilfeInfoUeber SID_ABOUT +HilfeInhalt .uno:HelpIndex +HilfeHelferlein .uno:HelperDialog +HilfeTip .uno:HelpTip +HilfeAktiveHilfe .uno:ActiveHelp +HilfeOnlineregistrierung .uno:OnlineRegistrationDlg +HilfeInfoUeber .uno:About ' *********************************** ' ********** Aendernmenue *********** ' **** ' **** Draw / Impress -AendernPositionGroesse SID_ATTR_TRANSFORM -AendernSpiegelnVertikalDraw SID_VERTICAL -AendernSpiegelnHorizontalDraw SID_HORIZONTAL -AendernUmwandelnInKurve SID_CHANGEBEZIER -AendernUmwandelnInPolygon SID_CHANGEPOLYGON -AendernUmwandelnIn3D SID_CONVERT_TO_3D -AendernUmwandelnIn3DRotationskoerper SID_CONVERT_TO_3D_LATHE_FAST -AendernUmwandelnInMetafile SID_CONVERT_TO_METAFILE -AendernUmwandelnInBitmap SID_CONVERT_TO_BITMAP -AendernAnordnungGanznachVorn SID_FRAME_TO_TOP -AendernAnordnungWeiterNachVorn SID_MOREFRONT -AendernAnordnungWeiterNachHinten SID_MOREBACK -AendernAnordnungGanznachHinten SID_FRAME_TO_BOTTOM -AendernAnordnungVorDasObjekt SID_BEFORE_OBJ -AendernAnordnungHinterDasObjekt SID_BEHIND_OBJ -AendernAnordnungVertauschen SID_REVERSE_ORDER -AendernVerteilen SID_DISTRIBUTE_DLG -AendernAusrichtungLinks SID_OBJECT_ALIGN_LEFT -AendernAusrichtungZentriert SID_OBJECT_ALIGN_CENTER -AendernAusrichtungRechts SID_OBJECT_ALIGN_RIGHT -AendernAusrichtungOben SID_OBJECT_ALIGN_UP -AendernAusrichtungMitte SID_OBJECT_ALIGN_MIDDLE -AendernAusrichtungUnten SID_OBJECT_ALIGN_DOWN -AendernObjektBenennen SID_NAME_GROUP -AendernFontWork SID_FONTWORK -AendernPipette SID_BMPMASK -AendernGruppierung SID_GROUP -AendernGruppierungAufheben SID_UNGROUP -AendernGruppierungBetreten SID_ENTER_GROUP -AendernGruppierungVerlassen SID_LEAVE_GROUP -AendernKombination SID_COMBINE -AendernKombinationAufheben SID_DISMANTLE -AendernVerbinden SID_CONNECT -AendernAufbrechen SID_BREAK -AendernShapeMerge SID_POLY_MERGE -AendernShapeSubstract SID_POLY_SUBSTRACT -AendernShapeIntersect SID_POLY_INTERSECT +AendernPositionGroesse .uno:TransformDialog +AendernSpiegelnVertikalDraw .uno:MirrorVert +AendernSpiegelnHorizontalDraw .uno:MirrorHorz +AendernUmwandelnInKurve .uno:ChangeBezier +AendernUmwandelnInPolygon .uno:ChangePolygon +AendernUmwandelnIn3D .uno:ConvertInto3D +AendernUmwandelnIn3DRotationskoerper .uno:ConvertInto3DLatheFast +AendernUmwandelnInMetafile .uno:ConvertIntoMetaFile +AendernUmwandelnInBitmap .uno:ConvertIntoBitmap +AendernAnordnungGanznachVorn .uno:BringToFront +AendernAnordnungWeiterNachVorn .uno:Forward +AendernAnordnungWeiterNachHinten .uno:Backward +AendernAnordnungGanznachHinten .uno:SendToBack +AendernAnordnungVorDasObjekt .uno:BeforeObject +AendernAnordnungHinterDasObjekt .uno:BehindObject +AendernAnordnungVertauschen .uno:ReverseOrder +AendernVerteilen .uno:DistributeSelection +AendernAusrichtungLinks .uno:ObjectAlignLeft +AendernAusrichtungZentriert .uno:AlignCenter +AendernAusrichtungRechts .uno:ObjectAlignRight +AendernAusrichtungOben .uno:AlignUp +AendernAusrichtungMitte .uno:AlignMiddle +AendernAusrichtungUnten .uno:AlignDown +AendernObjektBenennen .uno:NameGroup +AendernFontWork .uno:FontWork +AendernPipette .uno:BmpMask +AendernGruppierung .uno:FormatGroup +AendernGruppierungAufheben .uno:FormatUngroup +AendernGruppierungBetreten .uno:EnterGroup +AendernGruppierungVerlassen .uno:LeaveGroup +AendernKombination .uno:Combine +AendernKombinationAufheben .uno:Dismantle +AendernVerbinden .uno:Connect +AendernAufbrechen .uno:Break +AendernShapeMerge .uno:Merge +AendernShapeSubstract .uno:Substract +AendernShapeIntersect .uno:Intersect diff --git a/testautomation/global/sid/bars.sid b/testautomation/global/sid/bars.sid index 2c26b9cb0845..227c3108277e 100755 --- a/testautomation/global/sid/bars.sid +++ b/testautomation/global/sid/bars.sid @@ -12,20 +12,20 @@ ' ***** Standardbar ' ** ' ** f�r alle -FL_URL SID_OPENURL +FL_URL .uno:OpenUrl FL_NeuLaden SID_RELOAD -FL_Bearbeiten SID_EDITDOC -FL_Speichern SID_SAVEDOC -FL_Verknuepfen SID_CREATELINK -FL_Drucken SID_PRINTDOCDIRECT -FL_Ausschneiden SID_CUT -FL_Kopieren SID_COPY -FL_Einsetzen SID_PASTE -FL_Undo SID_UNDO -FL_Redo SID_REDO -FL_Browser SID_BROWSER -FL_Navigator SID_NAVIGATOR -FL_Gestalter SID_STYLE_DESIGNER +FL_Bearbeiten .uno:EditDoc +FL_Speichern .uno:Save +FL_Verknuepfen .uno:AddBookmark +FL_Drucken .uno:PrintDefault +FL_Ausschneiden .uno:Cut +FL_Kopieren .uno:Copy +FL_Einsetzen .uno:Paste +FL_Undo .uno:Undo +FL_Redo .uno:Redo +FL_Browser .uno:Beamer +FL_Navigator .uno:Navigator +FL_Gestalter .uno:DesignerDialog ' ******************************************************* ' @@ -34,10 +34,10 @@ FL_Gestalter SID_STYLE_DESIGNER ' ** f�r alle 'HL_URLName ofa:ComboBox:RID_SVXDLG_HYPERLINK:CB_NAME 'HL_URLListe ofa:ComboBox:RID_SVXDLG_HYPERLINK:CB_URL -HL_Frame HID_OFA_HYPERLINK_TARGET -HL_Link SID_HYPERLINK_SETLINK -HL_Bookmark SID_CREATELINK -HL_Suchen HID_OFA_HYPERLINK_SEARCH +HL_Frame sym:SVX_HID_OFA_HYPERLINK_TARGET +HL_Link .uno:SetHyperlink +HL_Bookmark .uno:AddBookmark +HL_Suchen sym:SVX_HID_OFA_HYPERLINK_SEARCH ' ******************************************************* ' @@ -45,161 +45,161 @@ HL_Suchen HID_OFA_HYPERLINK_SEARCH ' ** ' ** Datenbank-Beamer -OL_DB_Beamer_StandardFilter SID_FM_FILTERCRIT -OL_DB_Beamer_DatenInText SID_SBA_BRW_INSERT +OL_DB_Beamer_StandardFilter .uno:FilterCrit +OL_DB_Beamer_DatenInText .uno:SbaBrwInsert ' ** Form Toolbar -FM_FormFilter_Start SID_FM_FILTER_START -FM_FF_Navigator SID_FM_FILTER_NAVIGATOR -FM_FF_Execute SID_FM_FILTER_EXECUTE -FM_FF_Exit SID_FM_FILTER_EXIT -FM_Remove_Filter SID_FM_REMOVE_FILTER_SORT - -FM_No_Record SID_FM_RECORD_ABSOLUTE -FM_First_Record SID_FM_RECORD_FIRST -FM_Previous_Record SID_FM_RECORD_PREV -FM_Next_Record SID_FM_RECORD_NEXT -FM_Last_Record SID_FM_RECORD_LAST -FM_Save_Record SID_FM_RECORD_SAVE -'--10630: BUTTON: Allows you to undo a data entry. SID_FM_RECORD_UNDO -FM_New_Record SID_FM_RECORD_NEW -FM_Delete_Record SID_FM_RECORD_DELETE -'OB_DB_Beamer:Refresh SID_FM_REFRESH -FM_Search SID_FM_SEARCH -FM_Sort_Asc SID_FM_SORTUP -FM_Sort_Des SID_FM_SORTDOWN -FM_AutoFilter SID_FM_AUTOFILTER -'--10729: BUTTON: Prompts the database server to filter the visible data by specified criteria. SID_FM_FILTER_START -FM_Sort_Order SID_FM_ORDERCRIT -FM_View_As_Grid SID_FM_VIEW_AS_GRID -FM_Apply_Filter SID_FM_FORM_FILTERED +FM_FormFilter_Start .uno:FormFilter +FM_FF_Navigator .uno:FormFilterNavigator +FM_FF_Execute .uno:FormFilterExecute +FM_FF_Exit .uno:FormFilterExit +FM_Remove_Filter .uno:RemoveFilterSort + +FM_No_Record .uno:AbsoluteRecord +FM_First_Record .uno:FirstRecord +FM_Previous_Record .uno:PrevRecord +FM_Next_Record .uno:NextRecord +FM_Last_Record .uno:LastRecord +FM_Save_Record .uno:RecSave +'--10630: BUTTON: Allows you to undo a data entry. .uno:RecUndo +FM_New_Record .uno:NewRecord +FM_Delete_Record .uno:DeleteRecord +'OB_DB_Beamer:Refresh .uno:Refresh +FM_Search .uno:RecSearch +FM_Sort_Asc .uno:Sortup +FM_Sort_Des .uno:SortDown +FM_AutoFilter .uno:AutoFilter +'--10729: BUTTON: Prompts the database server to filter the visible data by specified criteria. .uno:FormFilter +FM_Sort_Order .uno:OrderCrit +FM_View_As_Grid .uno:ViewFormAsGrid +FM_Apply_Filter .uno:FormFiltered ' ** Writer ' - normal -OL_Writer_Schriftart SID_ATTR_CHAR_FONT -OL_Writer_Schriftgroesse SID_ATTR_CHAR_FONTHEIGHT -OL_Writer_Fett SID_ATTR_CHAR_WEIGHT -OL_Writer_Kursiv SID_ATTR_CHAR_POSTURE -OL_Writer_Unterstrichen SID_ATTR_CHAR_UNDERLINE -OL_Writer_Linksbuendig SID_ATTR_PARA_ADJUST_LEFT -OL_Writer_Zentriert SID_ATTR_PARA_ADJUST_CENTER -OL_Writer_Rechtsbuendig SID_ATTR_PARA_ADJUST_RIGHT -OL_Writer_Blocksatz SID_ATTR_PARA_ADJUST_BLOCK -OL_Writer_Numerierung FN_NUM_NUMBERING_ON -OL_Writer_Aufzaehlung FN_NUM_BULLET_ON -OL_Writer_EinzugVermindern SID_DEC_INDENT -OL_Writer_EinzugErhoehen SID_INC_INDENT -OL_Writer_Textfarbe SID_ATTR_CHAR_COLOR2 -OL_Writer_Zeichenhintergrund SID_ATTR_CHAR_COLOR_BACKGROUND -OL_Writer_Absatzhintergrund SID_BACKGROUND_COLOR +OL_Writer_Schriftart .uno:CharFontName +OL_Writer_Schriftgroesse .uno:FontHeight +OL_Writer_Fett .uno:Bold +OL_Writer_Kursiv .uno:Italic +OL_Writer_Unterstrichen .uno:Underline +OL_Writer_Linksbuendig .uno:LeftPara +OL_Writer_Zentriert .uno:CenterPara +OL_Writer_Rechtsbuendig .uno:RightPara +OL_Writer_Blocksatz .uno:JustifyPara +OL_Writer_Numerierung .uno:DefaultNumbering +OL_Writer_Aufzaehlung .uno:DefaultBullet +OL_Writer_EinzugVermindern .uno:DecrementIndent +OL_Writer_EinzugErhoehen .uno:IncrementIndent +OL_Writer_Textfarbe .uno:FontColor +OL_Writer_Zeichenhintergrund .uno:BackColor +OL_Writer_Absatzhintergrund .uno:BackgroundColor ' ** Writer ' - Tabelle -OL_Tabelle_SW_FormelEingeben FN_EDIT_FORMULA -OL_Tabelle_SW_TabellenmodeFix FN_TABLE_MODE_FIX -OL_Tabelle_SW_TabellenmodeProportional FN_TABLE_MODE_FIX_PROP -OL_Tabelle_SW_TabellenmodeVariabel FN_TABLE_MODE_VARIABLE -OL_Tabelle_SW_ZelleVerbinden FN_TABLE_MERGE_CELLS -OL_Tabelle_SW_ZelleTeilen FN_TABLE_SPLIT_CELLS -OL_Tabelle_SW_Optimieren FN_OPTIMIZE_TABLE -OL_Tabelle_SW_ZeileEinfuegen FN_TABLE_INSERT_ROW_DLG -OL_Tabelle_SW_SpalteEinfuegen FN_TABLE_INSERT_COL -OL_Tabelle_SW_ZeileLoeschen FN_TABLE_DELETE_ROW -OL_Tabelle_SW_SpalteLoeschen FN_TABLE_DELETE_COL -OL_Tabelle_SW_Umrandung SID_ATTR_BORDER -OL_Tabelle_SW_LinienStil SID_FRAME_LINESTYLE -OL_Tabelle_SW_Hintergrundfarbe SID_BACKGROUND_COLOR -OL_Tabelle_SW_ZeileAuswaehlen FN_TABLE_SELECT_ROW -OL_Tabelle_SW_SpalteAuswaehlen FN_TABLE_SELECT_COL -OL_Tabelle_SW_TabelleAuswaehlen FN_TABLE_SELECT_ALL +OL_Tabelle_SW_FormelEingeben .uno:InsertFormula +OL_Tabelle_SW_TabellenmodeFix .uno:TableModeFix +OL_Tabelle_SW_TabellenmodeProportional .uno:TableModeFixProp +OL_Tabelle_SW_TabellenmodeVariabel .uno:TableModeVariable +OL_Tabelle_SW_ZelleVerbinden .uno:MergeCells +OL_Tabelle_SW_ZelleTeilen .uno:SplitCell +OL_Tabelle_SW_Optimieren .uno:OptimizeTable +OL_Tabelle_SW_ZeileEinfuegen .uno:InsertRowDialog +OL_Tabelle_SW_SpalteEinfuegen .uno:InsertColumns +OL_Tabelle_SW_ZeileLoeschen .uno:DeleteRows +OL_Tabelle_SW_SpalteLoeschen .uno:DeleteColumns +OL_Tabelle_SW_Umrandung .uno:SetBorderStyle +OL_Tabelle_SW_LinienStil .uno:LineStyle +OL_Tabelle_SW_Hintergrundfarbe .uno:BackgroundColor +OL_Tabelle_SW_ZeileAuswaehlen .uno:EntireRow +OL_Tabelle_SW_SpalteAuswaehlen .uno:EntireColumn +OL_Tabelle_SW_TabelleAuswaehlen .uno:SelectTable ' ** Writer ' - Rahmen / Grafik / OLE-Objekte -OL_Objekt_SW_KeinUmlauf FN_FRAME_NOWRAP -OL_Objekt_SW_Umlauf FN_FRAME_WRAP -OL_Objekt_SW_Durchlauf FN_FRAME_WRAPTHRU -OL_Objekt_SW_Links FN_FRAME_ALIGN_HORZ_LEFT -OL_Objekt_SW_Zentriert FN_FRAME_ALIGN_HORZ_CENTER -OL_Objekt_SW_Rechts FN_FRAME_ALIGN_HORZ_RIGHT -OL_Objekt_SW_Oben FN_FRAME_ALIGN_VERT_TOP -OL_Objekt_SW_Mitte FN_FRAME_ALIGN_VERT_CENTER -OL_Objekt_SW_Unten FN_FRAME_ALIGN_VERT_BOTTOM -OL_Objekt_SW_Umrandung SID_ATTR_BORDER -OL_Objekt_SW_Linienstil SID_FRAME_LINESTYLE -OL_Objekt_SW_LinienFarbe SID_FRAME_LINECOLOR -OL_Objekt_SW_Hintergrundmuster SID_BACKGROUND_PATTERN -OL_Objekt_SW_Hintergrundfarbe SID_BACKGROUND_COLOR -OL_Objekt_SW_GanzNachVorn SID_FRAME_TO_TOP -OL_Objekt_SW_GanzNachHinten SID_FRAME_TO_BOTTOM -OL_Objekt_SW_Verankerungwechseln FN_TOOL_ANKER -OL_Objekt_SW_HorizontalSpiegeln FN_FLIP_HORZ_GRAFIC -OL_Objekt_SW_VertikalSpiegeln FN_FLIP_VERT_GRAFIC -OL_Objekt_SW_PositionUndGroesse SID_ATTR_TRANSFORM -OL_Objekt_SW_InDenVordergrund SID_OBJECT_HEAVEN -OL_Objekt_SW_InDenHintergrund SID_OBJECT_HELL -OL_Objekt_SW_EigenschaftenObjekt FN_FORMAT_FRAME_DLG -OL_Objekt_SW_EigenschaftenControls SID_SHOW_BROWSER +OL_Objekt_SW_KeinUmlauf .uno:WrapOff +OL_Objekt_SW_Umlauf .uno:WrapOn +OL_Objekt_SW_Durchlauf .uno:WrapThrough +OL_Objekt_SW_Links .uno:AlignLeft +OL_Objekt_SW_Zentriert .uno:AlignHorizontalCenter +OL_Objekt_SW_Rechts .uno:AlignRight +OL_Objekt_SW_Oben .uno:AlignTop +OL_Objekt_SW_Mitte .uno:AlignVerticalCenter +OL_Objekt_SW_Unten .uno:AlignBottom +OL_Objekt_SW_Umrandung .uno:SetBorderStyle +OL_Objekt_SW_Linienstil .uno:LineStyle +OL_Objekt_SW_LinienFarbe .uno:FrameLineColor +OL_Objekt_SW_Hintergrundmuster .uno:BackgroundPatternController +OL_Objekt_SW_Hintergrundfarbe .uno:BackgroundColor +OL_Objekt_SW_GanzNachVorn .uno:BringToFront +OL_Objekt_SW_GanzNachHinten .uno:SendToBack +OL_Objekt_SW_Verankerungwechseln .uno:ToggleAnchorType +OL_Objekt_SW_HorizontalSpiegeln .uno:FlipHorizontal +OL_Objekt_SW_VertikalSpiegeln .uno:FlipVertical +OL_Objekt_SW_PositionUndGroesse .uno:TransformDialog +OL_Objekt_SW_InDenVordergrund .uno:SetObjectToForeground +OL_Objekt_SW_InDenHintergrund .uno:SetObjectToBackground +OL_Objekt_SW_EigenschaftenObjekt .uno:FrameDialog +OL_Objekt_SW_EigenschaftenControls .uno:ShowBrowser ' ** Writer ' - Numerierung / Aufzaehlung -OL_Numerierung_NumerierungAusschalten FN_NUM_BULLET_OFF -OL_Numerierung_Hochstufen FN_NUM_BULLET_UP -OL_Numerierung_Hinunterstufen FN_NUM_BULLET_DOWN -OL_Numerierung_HochstufenMitUnterpunkten FN_NUM_BULLET_OUTLINE_UP -OL_Numerierung_HinunterstufenMitUnterpunkten FN_NUM_BULLET_OUTLINE_DOWN -OL_Numerierung_AbsatzOhnenNumerierung FN_NUM_BULLET_NONUM -OL_Numerierung_Hochschieben FN_NUM_BULLET_MOVEUP -OL_Numerierung_Hinunterschieben FN_NUM_BULLET_MOVEDOWN -OL_Numerierung_HochschiebenMitUnterpunkten FN_NUM_BULLET_OUTLINE_MOVEUP -OL_Numerierung_HinunterschiebenMitUnterpunkten FN_NUM_BULLET_OUTLINE_MOVEDOWN -OL_Numerierung_NumerierungNeuStarten FN_NUMBER_NEWSTART -OL_Numerierung_NumerierungAufzaehlung FN_NUMBER_BULLETS +OL_Numerierung_NumerierungAusschalten .uno:RemoveBullets +OL_Numerierung_Hochstufen .uno:IncrementLevel +OL_Numerierung_Hinunterstufen .uno:DecrementLevel +OL_Numerierung_HochstufenMitUnterpunkten .uno:IncrementSubLevels +OL_Numerierung_HinunterstufenMitUnterpunkten .uno:DecrementSubLevels +OL_Numerierung_AbsatzOhnenNumerierung .uno:InsertNeutralParagraph +OL_Numerierung_Hochschieben .uno:MoveUp +OL_Numerierung_Hinunterschieben .uno:MoveDown +OL_Numerierung_HochschiebenMitUnterpunkten .uno:MoveUpSubItems +OL_Numerierung_HinunterschiebenMitUnterpunkten .uno:MoveDownSubItems +OL_Numerierung_NumerierungNeuStarten .uno:NumberingStart +OL_Numerierung_NumerierungAufzaehlung .uno:BulletsAndNumberingDialog ' ** Calc ' - normal -OL_CALC_Schriftart SID_ATTR_CHAR_FONT -OL_CALC_Schriftgroesse SID_ATTR_CHAR_FONTHEIGHT -OL_CALC_Fett SID_ATTR_CHAR_WEIGHT -OL_CALC_Kursiv SID_ATTR_CHAR_POSTURE -OL_CALC_Unterstrichen SID_ATTR_CHAR_UNDERLINE -OL_CALC_Schriftfarbe SID_ATTR_CHAR_COLOR -OL_CALC_Linksbuendig SID_ATTR_PARA_ADJUST_LEFT -OL_CALC_Zentriert SID_ATTR_PARA_ADJUST_CENTER -OL_CALC_Rechtsbuendig SID_ATTR_PARA_ADJUST_RIGHT -OL_CALC_Waehrungsformat SID_NUMBER_CURRENCY -OL_CALC_Prozentformat SID_NUMBER_PERCENT -OL_CALC_StandardWaehrungformat SID_NUMBER_STANDARD -OL_CALC_DezimalstellenHinzufuegen SID_NUMBER_INCDEC -OL_CALC_DezimalstellenLoeschen SID_NUMBER_DECDEC -OL_CALC_EinzugVermindern SID_DEC_INDENT -OL_CALC_EinzugErhoehen SID_INC_INDENT -OL_CALC_Umrandung SID_ATTR_BORDER -OL_CALC_Hintergrundfarbe SID_BACKGROUND_COLOR -OL_CALC_VertikalOben SID_ALIGNTOP -OL_CALC_VertikalMitte SID_ALIGNCENTERVER -OL_CALC_VertikalUnten SID_ALIGNBOTTOM +OL_CALC_Schriftart .uno:CharFontName +OL_CALC_Schriftgroesse .uno:FontHeight +OL_CALC_Fett .uno:Bold +OL_CALC_Kursiv .uno:Italic +OL_CALC_Unterstrichen .uno:Underline +OL_CALC_Schriftfarbe .uno:Color +OL_CALC_Linksbuendig .uno:LeftPara +OL_CALC_Zentriert .uno:CenterPara +OL_CALC_Rechtsbuendig .uno:RightPara +OL_CALC_Waehrungsformat .uno:NumberFormatCurrency +OL_CALC_Prozentformat .uno:NumberFormatPercent +OL_CALC_StandardWaehrungformat .uno:NumberFormatStandard +OL_CALC_DezimalstellenHinzufuegen .uno:NumberFormatIncDecimals +OL_CALC_DezimalstellenLoeschen .uno:NumberFormatDecDecimals +OL_CALC_EinzugVermindern .uno:DecrementIndent +OL_CALC_EinzugErhoehen .uno:IncrementIndent +OL_CALC_Umrandung .uno:SetBorderStyle +OL_CALC_Hintergrundfarbe .uno:BackgroundColor +OL_CALC_VertikalOben .uno:AlignTop +OL_CALC_VertikalMitte .uno:AlignVCenter +OL_CALC_VertikalUnten .uno:AlignBottom ' ** Draw / Impress ' - normal OL_DRAW_Linie .uno:FormatLine -OL_DRAW_Linienendenstil SID_ATTR_LINEEND_STYLE -OL_DRAW_Linienstil SID_ATTR_LINE_STYLE -OL_DRAW_Linienbreite SID_ATTR_LINE_WIDTH -OL_DRAW_Linienfarbe SID_ATTR_LINE_COLOR +OL_DRAW_Linienendenstil .uno:LineEndStyle +OL_DRAW_Linienstil .uno:XLineStyle +OL_DRAW_Linienbreite .uno:LineWidth +OL_DRAW_Linienfarbe .uno:XLineColor OL_DRAW_Flaeche .uno:FormatArea -OL_DRAW_Flaechenstil SID_ATTR_FILL_STYLE -OL_DRAW_Flaechenfarbe SID_ATTR_FILL_STYLE +OL_DRAW_Flaechenstil .uno:FillStyle +OL_DRAW_Flaechenfarbe .uno:FillStyle OL_DRAW_Schatten .uno:FillShadow -OL_DRAW_Drehen SID_OBJECT_ROTATE -OL_DRAW_PunkteBearbeiten SID_BEZIER_EDIT -OL_DRAW_Ausrichtung SID_OBJECT_ALIGN -OL_DRAW_GanzNachVorn SID_FRAME_TO_TOP -OL_DRAW_GanzNachHinten SID_FRAME_TO_BOTTOM -OL_DRAW_InDenVordergrund SID_OBJECT_HEAVEN -OL_DRAW_InDenHintergrund SID_OBJECT_HELL -OL_DRAW_VorDasObjekt SID_BEFORE_OBJ -OL_DRAW_HinterDasObjekt SID_BEHIND_OBJ -OL_DRAW_VerankerungWechseln FN_TOOL_ANKER +OL_DRAW_Drehen .uno:ToggleObjectRotateMode +OL_DRAW_PunkteBearbeiten .uno:ToggleObjectBezierMode +OL_DRAW_Ausrichtung .uno:ObjectAlign +OL_DRAW_GanzNachVorn .uno:BringToFront +OL_DRAW_GanzNachHinten .uno:SendToBack +OL_DRAW_InDenVordergrund .uno:SetObjectToForeground +OL_DRAW_InDenHintergrund .uno:SetObjectToBackground +OL_DRAW_VorDasObjekt .uno:BeforeObject +OL_DRAW_HinterDasObjekt .uno:BehindObject +OL_DRAW_VerankerungWechseln .uno:ToggleAnchorType ' ** Draw / Impress ' - Diamode @@ -207,126 +207,126 @@ OL_DIA_Ueberblendeffekt .uno:DiaEffect OL_DIA_Geschwindigkeit .uno:DiaSpeed OL_DIA_Diawechsel .uno:DiaAuto OL_DIA_Zeit .uno:DiaTime -OL_DIA_PraesentationMitZeitnahme SID_REHEARSE_TIMINGS -OL_DIA_DiaAnzeigen SID_HIDE_SLIDE -OL_DIA_DiasProReihe SID_PAGES_PER_ROW +OL_DIA_PraesentationMitZeitnahme .uno:RehearseTimings +OL_DIA_DiaAnzeigen .uno:HideSlide +OL_DIA_DiasProReihe .uno:PagesPerRow ' ** Draw / Impress ' - Bezierleiste -OL_BEZIER_Verschieben SID_BEZIER_MOVE -OL_BEZIER_Einfuegen SID_BEZIER_INSERT -OL_BEZIER_Loeschen SID_BEZIER_DELETE -OL_BEZIER_Auftrennen SID_BEZIER_CUTLINE -OL_BEZIER_InKurve SID_BEZIER_CONVERT -OL_BEZIER_Ecke SID_BEZIER_EDGE -OL_BEZIER_Glatt SID_BEZIER_SMOOTH -OL_BEZIER_Symmetrisch SID_BEZIER_SYMMTR -OL_BEZIER_Schliessen SID_BEZIER_CLOSE -OL_BEZIER_PunkteReduzieren SID_BEZIER_ELIMINATE_POINTS +OL_BEZIER_Verschieben .uno:BezierMove +OL_BEZIER_Einfuegen .uno:BezierInsert +OL_BEZIER_Loeschen .uno:BezierDelete +OL_BEZIER_Auftrennen .uno:BezierCutLine +OL_BEZIER_InKurve .uno:BezierConvert +OL_BEZIER_Ecke .uno:BezierEdge +OL_BEZIER_Glatt .uno:BezierSmooth +OL_BEZIER_Symmetrisch .uno:BezierSymmetric +OL_BEZIER_Schliessen .uno:BezierClose +OL_BEZIER_PunkteReduzieren .uno:BezierEliminatePoints ' ** Draw / Impress ' - Klebepunte -OL_KLEBE_PunkteEinfuegen SID_GLUE_INSERT_POINT -OL_KLEBE_Links SID_GLUE_ESCDIR_LEFT -OL_KLEBE_Oben SID_GLUE_ESCDIR_TOP -OL_KLEBE_Rechts SID_GLUE_ESCDIR_RIGHT -OL_KLEBE_Unten SID_GLUE_ESCDIR_BOTTOM -OL_KLEBE_PositionAnObjektAnpassen SID_GLUE_PERCENT -OL_KLEBE_HorizontalLinks SID_GLUE_HORZALIGN_LEFT -OL_KLEBE_HorizontalZentriert SID_GLUE_HORZALIGN_CENTER -OL_KLEBE_HorizontalRechts SID_GLUE_HORZALIGN_RIGHT -OL_KLEBE_VertikalOben SID_GLUE_VERTALIGN_TOP -OL_KLEBE_VertikalZentriert SID_GLUE_VERTALIGN_CENTER -OL_KLEBE_VertikalUnten SID_GLUE_VERTALIGN_BOTTOM +OL_KLEBE_PunkteEinfuegen .uno:GlueInsertPoint +OL_KLEBE_Links .uno:GlueEscapeDirectionLeft +OL_KLEBE_Oben .uno:GlueEscapeDirectionTop +OL_KLEBE_Rechts .uno:GlueEscapeDirectionRight +OL_KLEBE_Unten .uno:GlueEscapeDirectionBottom +OL_KLEBE_PositionAnObjektAnpassen .uno:GluePercent +OL_KLEBE_HorizontalLinks .uno:GlueHorzAlignLeft +OL_KLEBE_HorizontalZentriert .uno:GlueHorzAlignCenter +OL_KLEBE_HorizontalRechts .uno:GlueHorzAlignRight +OL_KLEBE_VertikalOben .uno:GlueVertAlignTop +OL_KLEBE_VertikalZentriert .uno:GlueVertAlignCenter +OL_KLEBE_VertikalUnten .uno:GlueVertAlignBottom ' ** Frameset ' - normal -OL_FRAME_HTMLQuelltext SID_SOURCEVIEW +OL_FRAME_HTMLQuelltext .uno:SourceView ' ** Basicdokument ' - normal -OL_BASIC_Bibliothek SID_BASICIDE_LIBSELECTOR -OL_BASIC_Uebersetzen SID_BASICCOMPILE -OL_BASIC_Ausfuehren SID_BASICRUN -OL_BASIC_Anhalten SID_BASICSTOP -OL_BASIC_Prozedurschritt SID_BASICSTEPOVER -OL_BASIC_Einzelschritt SID_BASICSTEPINTO -OL_BASIC_Haltepunkt SID_BASICIDE_TOGGLEBRKPNT -OL_BASIC_BeobachterAnzeigen SID_BASICIDE_ADDWATCH -OL_BASIC_Objektkatalog SID_BASICIDE_OBJCAT -OL_BASIC_Makros SID_BASICIDE_CHOOSEMACRO -OL_BASIC_Module SID_BASICIDE_MODULEDLG -OL_BASIC_KlammerSuchen SID_BASICIDE_MATCHGROUP -OL_BASIC_Kontrollfelder SID_CHOOSE_CONTROLS -OL_BASIC_QuelltextEinfuegen SID_BASICLOAD -OL_BASIC_QuelltextSpeichern SID_BASICSAVEAS +OL_BASIC_Bibliothek .uno:LibSelector +OL_BASIC_Uebersetzen .uno:CompileBasic +OL_BASIC_Ausfuehren .uno:RunBasic +OL_BASIC_Anhalten .uno:BasicStop +OL_BASIC_Prozedurschritt .uno:BasicStepOver +OL_BASIC_Einzelschritt .uno:BasicStepInto +OL_BASIC_Haltepunkt .uno:ToggleBreakPoint +OL_BASIC_BeobachterAnzeigen .uno:AddWatch +OL_BASIC_Objektkatalog .uno:ObjectCatalog +OL_BASIC_Makros .uno:ChooseMacro +OL_BASIC_Module .uno:ModuleDialog +OL_BASIC_KlammerSuchen .uno:MatchGroup +OL_BASIC_Kontrollfelder .uno:ChooseControls +OL_BASIC_QuelltextEinfuegen .uno:LoadBasic +OL_BASIC_QuelltextSpeichern .uno:SaveBasicAs ' ** Allgemeine Objektleisten ' ' ** Seitenansicht ' - normal -OL_SEITENANSICHT_VorherigeSeite FN_PAGEUP -OL_SEITENANSICHT_NaechsteSeite FN_PAGEDOWN -OL_SEITENANSICHT_ErsteSeite FN_START_OF_DOCUMENT -OL_SEITENANSICHT_LetzteSeite FN_END_OF_DOCUMENT -OL_SEITENANSICHT_ZweiSeiten FN_SHOW_TWO_PAGES -OL_SEITENANSICHT_VierSeiten FN_SHOW_MULTIPLE_PAGES -OL_SEITENANSICHT_Massstab SID_ATTR_ZOOM -OL_SEITENANSICHT_GanzerBildschirm SID_WIN_FULLSCREEN -OL_SEITENANSICHT_DruckenSeitenansicht FN_PRINT_PAGEPREVIEW -OL_SEITENANSICHT_Schliessen SID_CLOSEWIN -OL_SEITENANSICHT_SeitenAnsichtSchliessen SID_CLOSEWIN -OL_SEITENANSICHT_Seitenlayout SID_FORMATPAGE -OL_SEITENANSICHT_MassstabVergroessern SID_PREVIEW_ZOOMIN -OL_SEITENANSICHT_MassstabVerkleinern SID_PREVIEW_ZOOMOUT -OL_SEITENANSICHT_NaechsteSeiteCalc SID_PREVIEW_NEXT -OL_SEITENANSICHT_VorherigeSeiteCalc SID_PREVIEW_PREVIOUS -OL_SEITENANSICHT_ErsteSeiteCalc SID_PREVIEW_FIRST -OL_SEITENANSICHT_LetzteSeiteCalc SID_PREVIEW_LAST +OL_SEITENANSICHT_VorherigeSeite .uno:PageUp +OL_SEITENANSICHT_NaechsteSeite .uno:PageDown +OL_SEITENANSICHT_ErsteSeite .uno:GoToStartOfDoc +OL_SEITENANSICHT_LetzteSeite .uno:GoToEndOfDoc +OL_SEITENANSICHT_ZweiSeiten .uno:ShowTwoPages +OL_SEITENANSICHT_VierSeiten .uno:ShowMultiplePages +OL_SEITENANSICHT_Massstab .uno:Zoom +OL_SEITENANSICHT_GanzerBildschirm .uno:FullScreen +OL_SEITENANSICHT_DruckenSeitenansicht .uno:PrintPagePreView +OL_SEITENANSICHT_Schliessen .uno:CloseWin +OL_SEITENANSICHT_SeitenAnsichtSchliessen .uno:CloseWin +OL_SEITENANSICHT_Seitenlayout .uno:PageFormatDialog +OL_SEITENANSICHT_MassstabVergroessern .uno:ZoomIn +OL_SEITENANSICHT_MassstabVerkleinern .uno:ZoomOut +OL_SEITENANSICHT_NaechsteSeiteCalc .uno:NextPage +OL_SEITENANSICHT_VorherigeSeiteCalc .uno:PreviousPage +OL_SEITENANSICHT_ErsteSeiteCalc .uno:FirstPage +OL_SEITENANSICHT_LetzteSeiteCalc .uno:LastPage ' ** Zeichenobjekt ' - Text -OL_ZO_Text_Schriftart SID_ATTR_CHAR_FONT -OL_ZO_Text_Schriftgroesse SID_ATTR_CHAR_FONTHEIGHT -OL_ZO_Text_Fett SID_ATTR_CHAR_WEIGHT -OL_ZO_Text_Kursiv SID_ATTR_CHAR_POSTURE -OL_ZO_Text_Unterstrichen SID_ATTR_CHAR_UNDERLINE -OL_ZO_Text_Linksbuendig SID_ATTR_PARA_ADJUST_LEFT -OL_ZO_Text_Zentriert SID_ATTR_PARA_ADJUST_CENTER -OL_ZO_Text_Schriftfarbe SID_ATTR_CHAR_COLOR -OL_ZO_Text_Einzeilig SID_ATTR_PARA_LINESPACE_10 -OL_ZO_Text_Eineinhalbzeilig SID_ATTR_PARA_LINESPACE_15 -OL_ZO_Text_Zweizeilig SID_ATTR_PARA_LINESPACE_20 -OL_ZO_Text_Hochstellen FN_SET_SUPER_SCRIPT -OL_ZO_Text_Tiefstellen FN_SET_SUB_SCRIPT -OL_ZO_Text_Zeichenformat SID_CHAR_DLG -OL_ZO_Text_Absatzformat SID_PARA_DLG -OL_ZO_Text_Hintergrundmuster SID_BACKGROUND_PATTERN -OL_ZO_Text_Hintergrundfarbe SID_BACKGROUND_COLOR -OL_ZO_Text_Aufzaehlungszeichen SID_OUTLINE_BULLET +OL_ZO_Text_Schriftart .uno:CharFontName +OL_ZO_Text_Schriftgroesse .uno:FontHeight +OL_ZO_Text_Fett .uno:Bold +OL_ZO_Text_Kursiv .uno:Italic +OL_ZO_Text_Unterstrichen .uno:Underline +OL_ZO_Text_Linksbuendig .uno:LeftPara +OL_ZO_Text_Zentriert .uno:CenterPara +OL_ZO_Text_Schriftfarbe .uno:Color +OL_ZO_Text_Einzeilig .uno:SpacePara1 +OL_ZO_Text_Eineinhalbzeilig .uno:SpacePara15 +OL_ZO_Text_Zweizeilig .uno:SpacePara2 +OL_ZO_Text_Hochstellen .uno:SuperScript +OL_ZO_Text_Tiefstellen .uno:SubScript +OL_ZO_Text_Zeichenformat .uno:FontDialog +OL_ZO_Text_Absatzformat .uno:ParagraphDialog +OL_ZO_Text_Hintergrundmuster .uno:BackgroundPatternController +OL_ZO_Text_Hintergrundfarbe .uno:BackgroundColor +OL_ZO_Text_Aufzaehlungszeichen .uno:OutlineBullet ' ** Zeichenobjekt ' - Flaeche OL_ZO_FLAECHE_Linie .uno:FormatLine -OL_ZO_FLAECHE_Linienendenstil SID_ATTR_LINEEND_STYLE -OL_ZO_FLAECHE_Linienstil SID_ATTR_LINE_STYLE -OL_ZO_FLAECHE_Linienbreite SID_ATTR_LINE_WIDTH -OL_ZO_FLAECHE_Linienfarbe SID_ATTR_LINE_COLOR -OL_ZO_FLAECHE_Flaeche SID_ATTRIBUTES_AREA -OL_ZO_FLAECHE_Flaechenstil SID_ATTR_FILL_STYLE -OL_ZO_FLAECHE_Flaechenfarbe SID_ATTR_FILL_STYLE +OL_ZO_FLAECHE_Linienendenstil .uno:LineEndStyle +OL_ZO_FLAECHE_Linienstil .uno:XLineStyle +OL_ZO_FLAECHE_Linienbreite .uno:LineWidth +OL_ZO_FLAECHE_Linienfarbe .uno:XLineColor +OL_ZO_FLAECHE_Flaeche .uno:FormatArea +OL_ZO_FLAECHE_Flaechenstil .uno:FillStyle +OL_ZO_FLAECHE_Flaechenfarbe .uno:FillStyle OL_ZO_FLAECHE_Schatten .uno:FillShadow -OL_ZO_FLAECHE_Animation SID_ANIMATION_OBJECTS +OL_ZO_FLAECHE_Animation .uno:AnimationObjects OL_ZO_FLAECHE_Effekt .uno:EffectWindow -OL_ZO_FLAECHE_Interaktion SID_ANIMATION_EFFECTS -OL_ZO_FLAECHE_Drehen SID_OBJECT_ROTATE -OL_ZO_FLAECHE_PunkteBearbeiten SID_BEZIER_EDIT -OL_ZO_FLAECHE_Ausrichtung SID_OBJECT_ALIGN -OL_ZO_FLAECHE_GanzNachVorn SID_FRAME_TO_TOP -OL_ZO_FLAECHE_GanzNachHinten SID_FRAME_TO_BOTTOM -OL_ZO_FLAECHE_InDenVordergrund SID_OBJECT_HEAVEN -OL_ZO_FLAECHE_InDenHintergrund SID_OBJECT_HELL -OL_ZO_FLAECHE_VerankerungWechseln FN_TOOL_ANKER +OL_ZO_FLAECHE_Interaktion .uno:AnimationEffects +OL_ZO_FLAECHE_Drehen .uno:ToggleObjectRotateMode +OL_ZO_FLAECHE_PunkteBearbeiten .uno:ToggleObjectBezierMode +OL_ZO_FLAECHE_Ausrichtung .uno:ObjectAlign +OL_ZO_FLAECHE_GanzNachVorn .uno:BringToFront +OL_ZO_FLAECHE_GanzNachHinten .uno:SendToBack +OL_ZO_FLAECHE_InDenVordergrund .uno:SetObjectToForeground +OL_ZO_FLAECHE_InDenHintergrund .uno:SetObjectToBackground +OL_ZO_FLAECHE_VerankerungWechseln .uno:ToggleAnchorType ' ******************************************************* ' @@ -334,414 +334,411 @@ OL_ZO_FLAECHE_VerankerungWechseln FN_TOOL_ANKER ' ' ** Writer ' - normal -WL_WRITER_Einfuegen FN_INSERT_CTRL -WL_WRITER_Feldbefehle FN_INSERT_FIELD_CTRL - WL_WRITER_Datum FN_INSERT_FLD_DATE - WL_WRITER_Uhrzeit FN_INSERT_FLD_TIME - WL_WRITER_Seitennummer FN_INSERT_FLD_PGNUMBER - WL_WRITER_Seitenanzahl FN_INSERT_FLD_PGCOUNT - WL_WRITER_Thema FN_INSERT_FLD_TOPIC - WL_WRITER_Titel FN_INSERT_FLD_TITLE - WL_WRITER_Autor FN_INSERT_FLD_AUTHOR - WL_WRITER_Andere FN_INSERT_FIELD -WL_WRITER_ObjektEinfuegen FN_INSERT_OBJ_CTRL -WL_WRITER_Zeichnen SID_INSERT_DRAW -WL_WRITER_Kontrollfelder SID_CHOOSE_CONTROLS -WL_WRITER_Formular SID_FM_CONFIG -WL_WRITER_AutoFormat SID_AUTOFORMAT -WL_WRITER_Autotext FN_GLOSSARY_DLG -WL_WRITER_AutomatischePruefung SID_AUTOSPELL_CHECK -WL_WRITER_SuchenUndErsetzen SID_SEARCH_DLG -WL_WRITER_SteuerzeichenEinAus FN_VIEW_META_CHARS -WL_WRITER_GrafikenAusschalten FN_VIEW_GRAPHIC -WL_WRITER_Hyperlink SID_HYPERLINK_INSERT -WL_WRITER_OnlineLayout SID_BROWSER_MODE -WL_WRITER_SchattencursorEinschalten FN_SHADOWCURSOR +WL_WRITER_Einfuegen .uno:InsertCtrl +WL_WRITER_Feldbefehle .uno:InsertFieldCtrl + WL_WRITER_Datum .uno:InsertDateField + WL_WRITER_Uhrzeit .uno:InsertTimeField + WL_WRITER_Seitennummer .uno:InsertPageNumberField + WL_WRITER_Seitenanzahl .uno:InsertPageCountField + WL_WRITER_Thema .uno:InsertTopicField + WL_WRITER_Titel .uno:InsertTitleField + WL_WRITER_Autor .uno:InsertAuthorField + WL_WRITER_Andere .uno:InsertField +WL_WRITER_ObjektEinfuegen .uno:InsertObjCtrl +WL_WRITER_Zeichnen .uno:InsertDraw +WL_WRITER_Kontrollfelder .uno:ChooseControls +WL_WRITER_Formular .uno:Config +WL_WRITER_AutoFormat .uno:AutoFormat +WL_WRITER_Autotext .uno:EditGlossary +WL_WRITER_AutomatischePruefung .uno:SpellOnline +WL_WRITER_SuchenUndErsetzen .uno:SearchDialog +WL_WRITER_SteuerzeichenEinAus .uno:ControlCodes +WL_WRITER_GrafikenAusschalten .uno:Graphic +WL_WRITER_Hyperlink .uno:InsertHyperlink +WL_WRITER_OnlineLayout .uno:BrowseView +WL_WRITER_SchattencursorEinschalten .uno:ShadowCursor ' ** Calc ' - normal -WL_CALC_Einfuegen SID_TBXCTL_INSERT -WL_CALC_ZellenEinfuegen SID_TBXCTL_INSCELLS -WL_CALC_ObjektEinfuegen FN_INSERT_OBJ_CTRL -WL_CALC_Zeichnen SID_INSERT_DRAW -WL_CALC_Kontrollfelder SID_CHOOSE_CONTROLS -WL_CALC_Autoformat SID_AUTOFORMAT -WL_CALC_AutomatischeRechtschreibung SID_AUTOSPELL_CHECK -WL_CALC_SuchenUndErsetzen SID_SEARCH_DLG -WL_CALC_AutoFilter SID_AUTO_FILTER -WL_CALC_SortierenAuf SID_SORT_ASCENDING -WL_CALC_SortierenAb SID_SORT_DESCENDING -WL_CALC_Gruppierung SID_OUTLINE_MAKE -WL_CALC_GruppierungAufheben SID_OUTLINE_REMOVE +WL_CALC_Einfuegen .uno:InsertCtrl +WL_CALC_ZellenEinfuegen .uno:InsCellsCtrl +WL_CALC_ObjektEinfuegen .uno:InsertObjCtrl +WL_CALC_Zeichnen .uno:InsertDraw +WL_CALC_Kontrollfelder .uno:ChooseControls +WL_CALC_Autoformat .uno:AutoFormat +WL_CALC_AutomatischeRechtschreibung .uno:SpellOnline +WL_CALC_SuchenUndErsetzen .uno:SearchDialog +WL_CALC_AutoFilter .uno:DataFilterAutoFilter +WL_CALC_SortierenAuf .uno:SortAscending +WL_CALC_SortierenAb .uno:SortDescending +WL_CALC_Gruppierung .uno:Group +WL_CALC_GruppierungAufheben .uno:Ungroup ' ** Draw / Impress ' - normal -WL_DRAW_Auswahl SID_OBJECT_SELECT -WL_DRAW_Zoom SID_ZOOM_TOOLBOX -WL_DRAW_Grafikeffekte SID_OBJECT_CHOOSE_MODE -WL_DRAW_Anordnung SID_POSITION -WL_DRAW_TextBoxen SID_DRAWTBX_TEXT -WL_DRAW_Rechteck SID_DRAW_RECT -WL_DRAW_Ellipsen SID_DRAWTBX_ELLIPSES -WL_DRAW_Kurven SID_DRAWTBX_LINES -WL_DRAW_Linien SID_DRAWTBX_ARROWS -WL_DRAW_3DObjekte SID_DRAWTBX_3D_OBJECTS -WL_DRAW_Verbinder SID_DRAWTBX_CONNECTORS -WL_DRAW_Einfuegen SID_DRAWTBX_INSERT -WL_DRAW_Kontrollfelder SID_CHOOSE_CONTROLS -WL_DRAW_Praesentation SID_PRESENTATION +WL_DRAW_Auswahl .uno:SelectObject +WL_DRAW_Zoom .uno:ZoomToolBox +WL_DRAW_Grafikeffekte .uno:AdvancedMode +WL_DRAW_Anordnung .uno:ObjectPosition +WL_DRAW_TextBoxen .uno:TextToolbox +WL_DRAW_Rechteck .uno:Rect +WL_DRAW_Ellipsen .uno:EllipseToolbox +WL_DRAW_Kurven .uno:LineToolbox +WL_DRAW_Linien .uno:ArrowsToolbox +WL_DRAW_3DObjekte .uno:Objects3DToolbox +WL_DRAW_Verbinder .uno:ConnectorToolbox +WL_DRAW_Einfuegen .uno:InsertToolbox +WL_DRAW_Kontrollfelder .uno:ChooseControls +WL_DRAW_Praesentation .uno:Presentation WL_DRAW_Effekt .uno:EffectWindow -WL_DRAW_Interaktion SID_ANIMATION_OBJECTS -WL_DRAW_3DEffekt SID_3D_WIN +WL_DRAW_Interaktion .uno:AnimationObjects +WL_DRAW_3DEffekt .uno:Window3D ' ** Draw / Impress ' - Gliederungsansicht -WL_GL_DRAW_Zoom SID_ZOOM_TOOLBOX -WL_GL_DRAW_Hinunterstufen SID_OUTLINE_RIGHT -WL_GL_DRAW_Hochstufen SID_OUTLINE_LEFT -WL_GL_DRAW_Hochschieben SID_OUTLINE_UP -WL_GL_DRAW_Hinunterschieben SID_OUTLINE_DOWN -WL_GL_DRAW_NurErsteEbene SID_OUTLINE_COLLAPSE_ALL -WL_GL_DRAW_AlleEbenen SID_OUTLINE_EXPAND_ALL -WL_GL_DRAW_UnterpunkteAusblenden SID_OUTLINE_COLLAPSE -WL_GL_DRAW_UnterpunkteAnzeigen SID_OUTLINE_EXPAND -WL_GL_DRAW_FormatierungEinAus SID_OUTLINE_FORMAT -WL_GL_DRAW_SchwarzweisDarstellung SID_COLORVIEW -WL_GL_DRAW_Praesentation SID_PRESENTATION +WL_GL_DRAW_Zoom .uno:ZoomToolBox +WL_GL_DRAW_Hinunterstufen .uno:OutlineRight +WL_GL_DRAW_Hochstufen .uno:OutlineLeft +WL_GL_DRAW_Hochschieben .uno:OutlineUp +WL_GL_DRAW_Hinunterschieben .uno:OutlineDown +WL_GL_DRAW_NurErsteEbene .uno:OutlineCollapseAll +WL_GL_DRAW_AlleEbenen .uno:OutlineExpandAll +WL_GL_DRAW_UnterpunkteAusblenden .uno:OutlineCollapse +WL_GL_DRAW_UnterpunkteAnzeigen .uno:OutlineExpand +WL_GL_DRAW_FormatierungEinAus .uno:OutlineFormat +WL_GL_DRAW_SchwarzweisDarstellung .uno:ColorView +WL_GL_DRAW_Praesentation .uno:Presentation ' ** Draw / Impress ' - Diamodus -WL_DIA_Zoom SID_ZOOM_TOOLBOX -WL_DIA_Praesentation SID_PRESENTATION +WL_DIA_Zoom .uno:ZoomToolBox +WL_DIA_Praesentation .uno:Presentation ' ** HTML-Dokument ' - normal -WL_WEB_Einfuegen FN_INSERT_CTRL -WL_WEB_Feldbefehle FN_INSERT_FIELD_CTRL - WL_WEB_Datum FN_INSERT_FLD_DATE - WL_WEB_Uhrzeit FN_INSERT_FLD_TIME - WL_WEB_Seitennummer FN_INSERT_FLD_PGNUMBER - WL_WEB_Seitenanzahl FN_INSERT_FLD_PGCOUNT - WL_WEB_Thema FN_INSERT_FLD_TOPIC - WL_WEB_Titel FN_INSERT_FLD_TITLE +WL_WEB_Einfuegen .uno:InsertCtrl +WL_WEB_Feldbefehle .uno:InsertFieldCtrl + WL_WEB_Datum .uno:InsertDateField + WL_WEB_Uhrzeit .uno:InsertTimeField + WL_WEB_Seitennummer .uno:InsertPageNumberField + WL_WEB_Seitenanzahl .uno:InsertPageCountField + WL_WEB_Thema .uno:InsertTopicField + WL_WEB_Titel .uno:InsertTitleField 'WL_Web_Kopfzeile FN_INSERT_HEADER 'WL_Web_Fusszeile FN_INSERT_FOOTER -WL_WEB_Lauftext SID_DRAW_TEXT_MARQUEE -WL_WEB_Kontrollfelder SID_CHOOSE_CONTROLS -WL_WEB_SuchenUndErsetzen SID_SEARCH_DLG -WL_WEB_SteuerzeichenEinAus FN_VIEW_META_CHARS -WL_WEB_GrafikenAusschalten FN_VIEW_GRAPHIC -WL_WEB_Hyperlink SID_HYPERLINK_INSERT -WL_WEB_OnlineLayout SID_BROWSER_MODE -WL_WEB_SchattencursorEinschalten FN_SHADOWCURSOR -WL_WEB_DruckLayout FN_PRINT_LAYOUT -WL_WEB_HTMLQuelltextWeb SID_SOURCEVIEW +WL_WEB_Lauftext .uno:Text_Marquee +WL_WEB_Kontrollfelder .uno:ChooseControls +WL_WEB_SuchenUndErsetzen .uno:SearchDialog +WL_WEB_SteuerzeichenEinAus .uno:ControlCodes +WL_WEB_GrafikenAusschalten .uno:Graphic +WL_WEB_Hyperlink .uno:InsertHyperlink +WL_WEB_OnlineLayout .uno:BrowseView +WL_WEB_SchattencursorEinschalten .uno:ShadowCursor +WL_WEB_DruckLayout .uno:PrintLayout +WL_WEB_HTMLQuelltextWeb .uno:SourceView ' ** Math ' - Normal -WL_MATH_Vergroessern SID_ZOOMIN -WL_MATH_Verkleinern SID_ZOOMOUT -WL_MATH_ZoomHundertProzent SID_VIEW100 -WL_MATH_GanzeFormel SID_ADJUST -WL_MATH_FormelAktualisieren SID_DRAW -WL_MATH_FormelSymbole SID_SYMBOLS_CATALOGUE +WL_MATH_Vergroessern .uno:ZoomIn +WL_MATH_Verkleinern .uno:ZoomOut +WL_MATH_ZoomHundertProzent .uno:View100 +WL_MATH_GanzeFormel .uno:Adjust +WL_MATH_FormelAktualisieren .uno:Draw +WL_MATH_FormelSymbole .uno:SymbolCatalogue ' ******************************************************* ' ' ***** Rechenleisten ' ' ** Calc -RL_CALC_Bereich HID_INSWIN_POS -RL_CALC_Funktionsautopilot HID_INSWIN_CALC -RL_CALC_Summe HID_INSWIN_SUMME -RL_CALC_Funktion HID_INSWIN_FUNC -RL_CALC_Eingabefeld HID_INSWIN_INPUT -RL_CALC_Verwerfen HID_INSWIN_CANCEL -RL_CALC_Uebernehmen HID_INSWIN_OK +RL_CALC_Bereich sym:SC_HID_INSWIN_POS +RL_CALC_Funktionsautopilot sym:SC_HID_INSWIN_CALC +RL_CALC_Summe sym:SC_HID_INSWIN_SUMME +RL_CALC_Funktion sym:SC_HID_INSWIN_FUNC +RL_CALC_Eingabefeld sym:SC_HID_INSWIN_INPUT +RL_CALC_Verwerfen sym:SC_HID_INSWIN_CANCEL +RL_CALC_Uebernehmen sym:SC_HID_INSWIN_OK ' ' ** Writer -RL_WRITER_Formel FN_FORMULA_CALC -RL_WRITER_VerwerfenWriter FN_FORMULA_CANCEL -RL_WRITER_UebernehmenWriter FN_FORMULA_APPLY -RL_WRITER_EingabefeldWriter HID_EDIT_FORMULA -RL_WRITER_SummeWriter HID_MN_CALC_SUM -RL_WRITER_Runden HID_MN_CALC_ROUND -RL_WRITER_Prozent HID_MN_CALC_PHD -RL_WRITER_Wurzel HID_MN_CALC_SQRT -RL_WRITER_Potenziere HID_MN_CALC_POW -RL_WRITER_OperatorenListentrenner HID_MN_CALC_LISTSEP -RL_WRITER_OperatorenGleich HID_MN_CALC_EQ -RL_WRITER_OperatorenNichtGleich HID_MN_CALC_NEQ -RL_WRITER_OperatorenKleinerGleich HID_MN_CALC_LEQ -RL_WRITER_OperatorenGroesserGleich HID_MN_CALC_GEQ -RL_WRITER_OperatorenKleiner HID_MN_CALC_LES -RL_WRITER_OperatorenGroesser HID_MN_CALC_GRE -RL_WRITER_OperatorenOder HID_MN_CALC_OR -RL_WRITER_OperatorenExklusivesOder HID_MN_CALC_XOR -RL_WRITER_OperatorenUnd HID_MN_CALC_AND -RL_WRITER_OperatorenNicht HID_MN_CALC_NOT -RL_WRITER_Mittelwert HID_MN_CALC_MEAN -RL_WRITER_Minimalwert HID_MN_CALC_MIN -RL_WRITER_Maximalwert HID_MN_CALC_MAX -RL_WRITER_Sinus HID_MN_CALC_SIN -RL_WRITER_Cosinus HID_MN_CALC_COS -RL_WRITER_Tangens HID_MN_CALC_TAN -RL_WRITER_Arcussinus HID_MN_CALC_ASIN -RL_WRITER_Arcuscosinus HID_MN_CALC_ACOS -RL_WRITER_Arcustangens HID_MN_CALC_ATAN +RL_WRITER_Formel sym:SW_HID_TBX_FORMULA_CALC +RL_WRITER_VerwerfenWriter sym:SW_HID_TBX_FORMULA_CANCEL +RL_WRITER_UebernehmenWriter sym:SW_HID_TBX_FORMULA_APPLY +RL_WRITER_EingabefeldWriter sym:SW_HID_EDIT_FORMULA +RL_WRITER_SummeWriter sym:SW_HID_MN_CALC_SUM +RL_WRITER_Runden sym:SW_HID_MN_CALC_ROUND +RL_WRITER_Prozent sym:SW_HID_MN_CALC_PHD +RL_WRITER_Wurzel sym:SW_HID_MN_CALC_SQRT +RL_WRITER_Potenziere sym:SW_HID_MN_CALC_POW +RL_WRITER_OperatorenListentrenner sym:SW_HID_MN_CALC_LISTSEP +RL_WRITER_OperatorenGleich sym:SW_HID_MN_CALC_EQ +RL_WRITER_OperatorenNichtGleich sym:SW_HID_MN_CALC_NEQ +RL_WRITER_OperatorenKleinerGleich sym:SW_HID_MN_CALC_LEQ +RL_WRITER_OperatorenGroesserGleich sym:SW_HID_MN_CALC_GEQ +RL_WRITER_OperatorenKleiner sym:SW_HID_MN_CALC_LES +RL_WRITER_OperatorenGroesser sym:SW_HID_MN_CALC_GRE +RL_WRITER_OperatorenOder sym:SW_HID_MN_CALC_OR +RL_WRITER_OperatorenExklusivesOder sym:SW_HID_MN_CALC_XOR +RL_WRITER_OperatorenUnd sym:SW_HID_MN_CALC_AND +RL_WRITER_OperatorenNicht sym:SW_HID_MN_CALC_NOT +RL_WRITER_Mittelwert sym:SW_HID_MN_CALC_MEAN +RL_WRITER_Minimalwert sym:SW_HID_MN_CALC_MIN +RL_WRITER_Maximalwert sym:SW_HID_MN_CALC_MAX +RL_WRITER_Sinus sym:SW_HID_MN_CALC_SIN +RL_WRITER_Cosinus sym:SW_HID_MN_CALC_COS +RL_WRITER_Tangens sym:SW_HID_MN_CALC_TAN +RL_WRITER_Arcussinus sym:SW_HID_MN_CALC_ASIN +RL_WRITER_Arcuscosinus sym:SW_HID_MN_CALC_ACOS +RL_WRITER_Arcustangens sym:SW_HID_MN_CALC_ATAN ' ******************************************************* ' ' ***** Toolboxen ' ** ' ** Einfuegen Writer -WL_TB_SW_EINFUEGEN_Rahmen FN_INSERT_FRAME_INTERACT -WL_TB_SW_EINFUEGEN_Grafik SID_INSERT_GRAPHIC -WL_TB_SW_EINFUEGEN_Tabelle FN_INSERT_TABLE -WL_TB_SW_EINFUEGEN_TextEinfuegen SID_INSERTDOC -WL_TB_SW_EINFUEGEN_Fussnote FN_INSERT_FOOTNOTE -WL_TB_SW_EINFUEGEN_Sonderzeichen FN_INSERT_SYMBOL -WL_TB_SW_EINFUEGEN_SpaltenAnzahl FN_INSERT_FRAME_INTERACT_NOCOL -WL_TB_SW_EINFUEGEN_MehrspaltigenRahmen FN_INSERT_FRAME -WL_TB_SW_EINFUEGEN_Verzeichnis FN_INSERT_IDX_ENTRY_DLG -WL_TB_SW_EINFUEGEN_TextMarke FN_INSERT_BOOKMARK +WL_TB_SW_EINFUEGEN_Rahmen .uno:InsertFrameInteract +WL_TB_SW_EINFUEGEN_Grafik .uno:InsertGraphic +WL_TB_SW_EINFUEGEN_Tabelle .uno:InsertTable +WL_TB_SW_EINFUEGEN_TextEinfuegen .uno:InsertDoc +WL_TB_SW_EINFUEGEN_Fussnote .uno:InsertFootnote +WL_TB_SW_EINFUEGEN_SpaltenAnzahl .uno:InsertFrameInteractNoColumns +WL_TB_SW_EINFUEGEN_MehrspaltigenRahmen .uno:InsertFrame +WL_TB_SW_EINFUEGEN_Verzeichnis .uno:InsertIndexesEntry +WL_TB_SW_EINFUEGEN_TextMarke .uno:InsertBookmark ' ** ' ** Einfuegen-Objekt Writer -WL_TB_SW_Objekt_Diagramm SID_INSERT_DIAGRAM -WL_TB_SW_Objekt_FormelEinfuegen FN_INSERT_SMA -WL_TB_SW_Objekt_Rahmenfenster SID_INSERT_FLOATINGFRAME -WL_TB_SW_Objekt_Objekt FN_INSERT_OBJECT_DLG +WL_TB_SW_Objekt_Diagramm .uno:InsertObjectChart +WL_TB_SW_Objekt_FormelEinfuegen .uno:InsertObjectStarMath +WL_TB_SW_Objekt_Rahmenfenster .uno:InsertObjectFloatingFrame +WL_TB_SW_Objekt_Objekt .uno:InsertObjectDialog ' ** ' ** Zeichenfunktionen -WL_TB_ZF_Auswahl SID_OBJECT_SELECT -WL_TB_ZF_Linie SID_DRAW_LINE -WL_TB_ZF_Rechteck SID_DRAW_RECT -WL_TB_ZF_Ellipse SID_DRAW_ELLIPSE -WL_TB_ZF_Polygon SID_DRAW_POLYGON_NOFILL -WL_TB_ZF_Bezier SID_DRAW_BEZIER_NOFILL -WL_TB_ZF_Freihand SID_DRAW_FREELINE_NOFILL -WL_TB_ZF_Kreisbogen SID_DRAW_ARC -WL_TB_ZF_Kreissektor SID_DRAW_PIE -WL_TB_ZF_Kreissegment SID_DRAW_CIRCLECUT -WL_TB_ZF_Textobjekt SID_DRAW_TEXT -WL_TB_ZF_Lauftext SID_DRAW_TEXT_MARQUEE -WL_TB_ZF_Legende SID_DRAW_CAPTION +WL_TB_ZF_Auswahl .uno:SelectObject +WL_TB_ZF_Linie .uno:Line +WL_TB_ZF_Rechteck .uno:Rect +WL_TB_ZF_Ellipse .uno:Ellipse +WL_TB_ZF_Polygon .uno:Polygon_Unfilled +WL_TB_ZF_Bezier .uno:Bezier_Unfilled +WL_TB_ZF_Freihand .uno:Freeline_Unfilled +WL_TB_ZF_Kreisbogen .uno:Arc +WL_TB_ZF_Kreissektor .uno:Pie +WL_TB_ZF_Kreissegment .uno:CircleCut +WL_TB_ZF_Textobjekt .uno:DrawText +WL_TB_ZF_Lauftext .uno:Text_Marquee +WL_TB_ZF_Legende .uno:DrawCaption ' ** ' ** Kontrollfelder -WL_TB_CONTROLS_CommandButton SID_INSERT_PUSHBUTTON -WL_TB_CONTROLS_SpinButton SID_INSERT_SPINBUTTON -WL_TB_CONTROLS_CheckBox SID_INSERT_CHECKBOX -WL_TB_CONTROLS_OptionButton SID_INSERT_RADIOBUTTON -WL_TB_CONTROLS_Label SID_INSERT_FIXEDTEXT -WL_TB_CONTROLS_TextFeld SID_INSERT_EDIT -WL_TB_CONTROLS_ListBox SID_INSERT_LISTBOX -WL_TB_CONTROLS_ComboBox SID_INSERT_COMBOBOX -WL_TB_CONTROLS_HScrollBar SID_INSERT_HSCROLLBAR -WL_TB_CONTROLS_VScrollBar SID_INSERT_VSCROLLBAR -WL_TB_CONTROLS_FrameControl SID_INSERT_GROUPBOX -WL_TB_CONTROLS_Preview SID_INSERT_PREVIEW -WL_TB_CONTROLS_URLButton SID_INSERT_URLBUTTON -WL_TB_CONTROLS_Selektieren SID_OBJECT_SELECT -WL_TB_CONTROLS_KontrollfeldEigenschaften SID_SHOW_BROWSER -WL_TB_CONTROLS_Testmodus SID_DIALOG_TESTMODE +WL_TB_CONTROLS_CommandButton .uno:InsertPushbutton +WL_TB_CONTROLS_SpinButton .uno:Spinbutton +WL_TB_CONTROLS_CheckBox .uno:Checkbox +WL_TB_CONTROLS_OptionButton .uno:Radiobutton +WL_TB_CONTROLS_Label .uno:InsertFixedText +WL_TB_CONTROLS_TextFeld .uno:InsertEdit +WL_TB_CONTROLS_ListBox .uno:InsertListbox +WL_TB_CONTROLS_ComboBox .uno:Combobox +WL_TB_CONTROLS_HScrollBar .uno:HScrollbar +WL_TB_CONTROLS_VScrollBar .uno:VScrollbar +WL_TB_CONTROLS_FrameControl .uno:Groupbox +WL_TB_CONTROLS_Preview .uno:Preview +WL_TB_CONTROLS_URLButton .uno:URLButton +WL_TB_CONTROLS_Selektieren .uno:SelectObject +WL_TB_CONTROLS_KontrollfeldEigenschaften .uno:ShowBrowser +WL_TB_CONTROLS_Testmodus .uno:TestMode ' ** ' ** Zoomen im Draw -WL_SD_Groesser SID_ZOOM_OUT -WL_SD_Kleiner SID_ZOOM_IN -WL_SD_VerschiebenZoom SID_ZOOM_PANNING -WL_SD_VorherigeDarstellung SID_ZOOM_PREV -WL_SD_NaechsteDarstellung SID_ZOOM_NEXT -WL_SD_EinsZuEins SID_SIZE_REAL -WL_SD_GanzeSeite SID_SIZE_PAGE -WL_SD_Seitenbreite SID_SIZE_PAGE_WIDTH -WL_SD_Optimal SID_SIZE_ALL -WL_SD_Objektzoom SID_SIZE_OPTIMAL +WL_SD_Groesser .uno:ZoomPlus +WL_SD_Kleiner .uno:ZoomMinus +WL_SD_VerschiebenZoom .uno:ZoomPanning +WL_SD_VorherigeDarstellung .uno:ZoomPrevious +WL_SD_NaechsteDarstellung .uno:ZoomNext +WL_SD_EinsZuEins .uno:Zoom100Percent +WL_SD_GanzeSeite .uno:ZoomPage +WL_SD_Seitenbreite .uno:ZoomPageWidth +WL_SD_Optimal .uno:ZoomOptimal +WL_SD_Objektzoom .uno:ZoomObjects ' ** ' ** Anordnung im Draw -WL_TB_ANORDNUNG_WeiterNachVorn SID_MOREFRONT -WL_TB_ANORDNUNG_WeiterNachHinten SID_MOREBACK -WL_TB_ANORDNUNG_VorDasObjekt SID_BEFORE_OBJ -WL_TB_ANORDNUNG_HinterDasObjekt SID_BEHIND_OBJ -WL_TB_ANORDNUNG_Vertauschen SID_REVERSE_ORDER +WL_TB_ANORDNUNG_WeiterNachVorn .uno:Forward +WL_TB_ANORDNUNG_WeiterNachHinten .uno:Backward +WL_TB_ANORDNUNG_VorDasObjekt .uno:BeforeObject +WL_TB_ANORDNUNG_HinterDasObjekt .uno:BehindObject +WL_TB_ANORDNUNG_Vertauschen .uno:ReverseOrder ' ** ' ** Ausrichtung im Draw -WL_TB_AUSRICHTUNG_Links SID_OBJECT_ALIGN_LEFT -WL_TB_AUSRICHTUNG_Rechts SID_OBJECT_ALIGN_RIGHT -WL_TB_AUSRICHTUNG_Oben SID_OBJECT_ALIGN_UP -WL_TB_AUSRICHTUNG_Mitte SID_OBJECT_ALIGN_MIDDLE -WL_TB_AUSRICHTUNG_Unten SID_OBJECT_ALIGN_DOWN -WL_TB_AUSRICHTUNG_Zentriert SID_OBJECT_ALIGN_CENTER +WL_TB_AUSRICHTUNG_Links .uno:ObjectAlignLeft +WL_TB_AUSRICHTUNG_Rechts .uno:ObjectAlignRight +WL_TB_AUSRICHTUNG_Oben .uno:AlignUp +WL_TB_AUSRICHTUNG_Mitte .uno:AlignMiddle +WL_TB_AUSRICHTUNG_Unten .uno:AlignDown +WL_TB_AUSRICHTUNG_Zentriert .uno:AlignCenter ' ** ' ** Effekte im Draw -WL_TB_SD_EFFEKTE_Spiegeln SID_OBJECT_MIRROR -WL_TB_SD_EFFEKTE_Verzerren SID_OBJECT_SHEAR -WL_TB_SD_EFFEKTE_Rotationskoerper SID_CONVERT_TO_3D_LATHE -WL_TB_SD_EFFEKTE_KlebepunkteBearbeiten SID_GLUE_EDITMODE -WL_TB_SD_EFFEKTE_SetzenAufKreisPerspektivisch SID_OBJECT_CROOK_ROTATE -WL_TB_SD_EFFEKTE_SetzenAufKreisSchraeggestellt SID_OBJECT_CROOK_SLANT +WL_TB_SD_EFFEKTE_Spiegeln .uno:Mirror +WL_TB_SD_EFFEKTE_Verzerren .uno:Shear +WL_TB_SD_EFFEKTE_Rotationskoerper .uno:ConvertInto3DLathe +WL_TB_SD_EFFEKTE_KlebepunkteBearbeiten .uno:GlueEditMode +WL_TB_SD_EFFEKTE_SetzenAufKreisPerspektivisch .uno:CrookRotate +WL_TB_SD_EFFEKTE_SetzenAufKreisSchraeggestellt .uno:CrookSlant ' ** ' ** Ellipsen im Draw -WL_SD_Ellipsen SID_DRAW_ELLIPSE -WL_SD_EllipseVoll SID_DRAW_ELLIPSE -WL_SD_EllipseLeer SID_DRAW_ELLIPSE_NOFILL -WL_SD_KreisVoll SID_DRAW_CIRCLE -WL_SD_KreisLeer SID_DRAW_CIRCLE_NOFILL -WL_SD_EllipsensegmentVoll SID_DRAW_PIE -WL_SD_EllipsensegmentLeer SID_DRAW_PIE_NOFILL -WL_SD_KreissegmentVoll SID_DRAW_CIRCLEPIE -WL_SD_KreissegmentLeer SID_DRAW_CIRCLEPIE_NOFILL -WL_SD_EllipsenabschnittVoll SID_DRAW_ELLIPSECUT -WL_SD_EllipsenabschnittLeer SID_DRAW_ELLIPSECUT_NOFILL -WL_SD_KreisabschnittVoll SID_DRAW_CIRCLECUT -WL_SD_KreisabschnittLeer SID_DRAW_CIRCLECUT_NOFILL -WL_SD_Kreisbogen SID_DRAW_CIRCLEARC +WL_SD_Ellipsen .uno:Ellipse +WL_SD_EllipseVoll .uno:Ellipse +WL_SD_EllipseLeer .uno:Ellipse_Unfilled +WL_SD_KreisVoll .uno:Circle +WL_SD_KreisLeer .uno:Circle_Unfilled +WL_SD_EllipsensegmentVoll .uno:Pie +WL_SD_EllipsensegmentLeer .uno:Pie_Unfilled +WL_SD_KreissegmentVoll .uno:CirclePie +WL_SD_KreissegmentLeer .uno:CirclePie_Unfilled +WL_SD_EllipsenabschnittVoll .uno:EllipseCut +WL_SD_EllipsenabschnittLeer .uno:EllipseCut_Unfilled +WL_SD_KreisabschnittVoll .uno:CircleCut +WL_SD_KreisabschnittLeer .uno:CircleCut_Unfilled +WL_SD_Kreisbogen .uno:CircleArc ' ** ' ** Kurven im Draw -WL_SD_KurveVoll SID_DRAW_BEZIER_FILL -WL_SD_KurveLeer SID_DRAW_BEZIER_NOFILL -WL_SD_PolygonVoll SID_DRAW_POLYGON -WL_SD_Polygon SID_DRAW_POLYGON_NOFILL -WL_SD_PolygonWinkelVoll SID_DRAW_XPOLYGON -WL_SD_PolygonWinkel SID_DRAW_XPOLYGON_NOFILL -WL_SD_FreihandlinieVoll SID_DRAW_FREELINE -WL_SD_FreihandlinieLeer SID_DRAW_FREELINE_NOFILL +WL_SD_KurveVoll .uno:BezierFill +WL_SD_KurveLeer .uno:Bezier_Unfilled +WL_SD_PolygonVoll .uno:Polygon +WL_SD_Polygon .uno:Polygon_Unfilled +WL_SD_PolygonWinkelVoll .uno:Polygon_Diagonal +WL_SD_PolygonWinkel .uno:Polygon_Diagonal_Unfilled +WL_SD_FreihandlinieVoll .uno:Freeline +WL_SD_FreihandlinieLeer .uno:Freeline_Unfilled ' ** ' ** Linien und Pfeile im Draw -WL_SD_LinieZeichnen SID_DRAW_LINE -WL_SD_LinieMitPfeilende SID_LINE_ARROW_END -WL_SD_LinieMitPfeilKreisende SID_LINE_ARROW_CIRCLE -WL_SD_LinieMitPfeilQuadratende SID_LINE_ARROW_SQUARE -WL_SD_LinieWinkel SID_DRAW_XLINE -WL_SD_LinieMitPfeilanfang SID_LINE_ARROW_START -WL_SD_LinieMitKreisPfeilende SID_LINE_CIRCLE_ARROW -WL_SD_LinieMitQuadratKreisende SID_LINE_SQUARE_ARROW -WL_SD_Masslinie SID_DRAW_MEASURELINE -WL_SD_LinieMitPfeilenden SID_LINE_ARROWS +WL_SD_LinieZeichnen .uno:Line +WL_SD_LinieMitPfeilende .uno:LineArrowEnd +WL_SD_LinieMitPfeilKreisende .uno:LineArrowCircle +WL_SD_LinieMitPfeilQuadratende .uno:LineArrowSquare +WL_SD_LinieWinkel .uno:Line_Diagonal +WL_SD_LinieMitPfeilanfang .uno:LineArrowStart +WL_SD_LinieMitKreisPfeilende .uno:LineCircleArrow +WL_SD_LinieMitQuadratKreisende .uno:LineSquareArrow +WL_SD_Masslinie .uno:MeasureLine +WL_SD_LinieMitPfeilenden .uno:LineArrows ' ** ' ** Rechtecke im Draw -WL_SD_RechteckVoll SID_DRAW_RECT -WL_SD_RechteckLeer SID_DRAW_RECT_NOFILL -WL_SD_RechteckRundVoll SID_DRAW_RECT_ROUND -WL_SD_RechteckRundLeer SID_DRAW_RECT_ROUND_NOFILL -WL_SD_QuadratVoll SID_DRAW_SQUARE -WL_SD_QuadratLeer SID_DRAW_SQUARE_NOFILL -WL_SD_QuadratRundVoll SID_DRAW_SQUARE_ROUND -WL_SD_QuadratRundLeer SID_DRAW_SQUARE_ROUND_NOFILL +WL_SD_RechteckVoll .uno:Rect +WL_SD_RechteckLeer .uno:Rect_Unfilled +WL_SD_RechteckRundVoll .uno:Rect_Rounded +WL_SD_RechteckRundLeer .uno:Rect_Rounded_Unfilled +WL_SD_QuadratVoll .uno:Square +WL_SD_QuadratLeer .uno:Square_Unfilled +WL_SD_QuadratRundVoll .uno:Square_Rounded +WL_SD_QuadratRundLeer .uno:Square_Rounded_Unfilled ' ** ' ** Text im Draw -WL_SD_TextBox SID_DRAWTBX_TEXT -WL_SD_TextEinfuegenDraw SID_ATTR_CHAR -WL_SD_TextRahmen SID_TEXT_FITTOSIZE -WL_SD_TextLegende SID_DRAW_CAPTION +WL_SD_TextBox .uno:TextToolbox +WL_SD_TextEinfuegenDraw .uno:Text +WL_SD_TextRahmen .uno:TextFitToSizeTool +WL_SD_TextLegende .uno:DrawCaption ' ** ' ** Verbinder im Draw -WL_SD_VVerbinder SID_TOOL_CONNECTOR -WL_SD_VPfeilAnfang SID_CONNECTOR_ARROW_START -WL_SD_VPfeilEnde SID_CONNECTOR_ARROW_END -WL_SD_Vpfeile SID_CONNECTOR_ARROWS -WL_SD_VkreisAnfang SID_CONNECTOR_CIRCLE_START -WL_SD_VkreisEnde SID_CONNECTOR_CIRCLE_END -WL_SD_Vkreise SID_CONNECTOR_CIRCLES -WL_SD_LinienVerbinder SID_CONNECTOR_LINES -WL_SD_LPfeilAnfang SID_CONNECTOR_LINES_ARROW_START -WL_SD_LPfeilEnde SID_CONNECTOR_LINES_ARROW_END -WL_SD_Lpfeile SID_CONNECTOR_LINES_ARROWS -WL_SD_LkreisAnfang SID_CONNECTOR_LINES_CIRCLE_START -WL_SD_LkreisEnde SID_CONNECTOR_LINES_CIRCLE_END -WL_SD_Lkreise SID_CONNECTOR_LINES_CIRCLES -WL_SD_Direktverbinder SID_CONNECTOR_LINE -WL_SD_DPfeilAnfang SID_CONNECTOR_LINE_ARROW_START -WL_SD_DPfeilEnde SID_CONNECTOR_LINE_ARROW_END -WL_SD_Dpfeile SID_CONNECTOR_LINE_ARROWS -WL_SD_DkreisAnfang SID_CONNECTOR_LINE_CIRCLE_START -WL_SD_DkreisEnde SID_CONNECTOR_LINE_CIRCLE_END -WL_SD_DKreise SID_CONNECTOR_LINE_CIRCLES -WL_SD_KurvenVerbinder SID_CONNECTOR_CURVE -WL_SD_KPfeilAnfang SID_CONNECTOR_CURVE_ARROW_START -WL_SD_KPfeilEnde SID_CONNECTOR_CURVE_ARROW_END -WL_SD_Kpfeile SID_CONNECTOR_CURVE_ARROWS -WL_SD_KkreisAnfang SID_CONNECTOR_CURVE_CIRCLE_START -WL_SD_KkreisEnde SID_CONNECTOR_CURVE_CIRCLE_END -WL_SD_KKreise SID_CONNECTOR_CURVE_CIRCLES +WL_SD_VVerbinder .uno:Connector +WL_SD_VPfeilAnfang .uno:ConnectorArrowStart +WL_SD_VPfeilEnde .uno:ConnectorArrowEnd +WL_SD_Vpfeile .uno:ConnectorArrows +WL_SD_VkreisAnfang .uno:ConnectorCircleStart +WL_SD_VkreisEnde .uno:ConnectorCircleEnd +WL_SD_Vkreise .uno:ConnectorCircles +WL_SD_LinienVerbinder .uno:ConnectorLines +WL_SD_LPfeilAnfang .uno:ConnectorLinesArrowStart +WL_SD_LPfeilEnde .uno:ConnectorLinesArrowEnd +WL_SD_Lpfeile .uno:ConnectorLinesArrows +WL_SD_LkreisAnfang .uno:ConnectorLinesCircleStart +WL_SD_LkreisEnde .uno:ConnectorLinesCircleEnd +WL_SD_Lkreise .uno:ConnectorLinesCircles +WL_SD_Direktverbinder .uno:ConnectorLine +WL_SD_DPfeilAnfang .uno:ConnectorLineArrowStart +WL_SD_DPfeilEnde .uno:ConnectorLineArrowEnd +WL_SD_Dpfeile .uno:ConnectorLineArrows +WL_SD_DkreisAnfang .uno:ConnectorLineCircleStart +WL_SD_DkreisEnde .uno:ConnectorLineCircleEnd +WL_SD_DKreise .uno:ConnectorLineCircles +WL_SD_KurvenVerbinder .uno:ConnectorCurve +WL_SD_KPfeilAnfang .uno:ConnectorCurveArrowStart +WL_SD_KPfeilEnde .uno:ConnectorCurveArrowEnd +WL_SD_Kpfeile .uno:ConnectorCurveArrows +WL_SD_KkreisAnfang .uno:ConnectorCurveCircleStart +WL_SD_KkreisEnde .uno:ConnectorCurveCircleEnd +WL_SD_KKreise .uno:ConnectorCurveCircles ' ** ' ** 3D-Objekte im Draw -WL_SD_Wuerfel SID_3D_CUBE -WL_SD_Kugel SID_3D_SPHERE -WL_SD_Zylinder SID_3D_CYLINDER -WL_SD_Kegel SID_3D_CONE -WL_SD_Pyramide SID_3D_PYRAMID -WL_SD_Torus SID_3D_TORUS -WL_SD_Schale SID_3D_SHELL -WL_SD_Halbkugel SID_3D_HALF_SPHERE +WL_SD_Wuerfel .uno:Cube +WL_SD_Kugel .uno:Sphere +WL_SD_Zylinder .uno:Cylinder +WL_SD_Kegel .uno:Cone +WL_SD_Pyramide .uno:Cyramid +WL_SD_Torus .uno:Torus +WL_SD_Schale .uno:Shell3D +WL_SD_Halbkugel .uno:HalfSphere ' ** ' ** Einfuegen im Draw -WL_TB_SD_EINFUEGEN_Diagramm SID_INSERT_DIAGRAM -WL_TB_SD_EINFUEGEN_Formel SID_INSERT_MATH -WL_TB_SD_EINFUEGEN_Objekt SID_INSERT_OBJECT -WL_TB_SD_EINFUEGEN_Plugin SID_INSERT_PLUGIN -WL_TB_SD_EINFUEGEN_Applet SID_INSERT_APPLET -WL_TB_SD_EINFUEGEN_Tabelle SID_ATTR_TABLE -WL_TB_SD_EINFUEGEN_Datei SID_INSERTFILE -WL_TB_SD_EINFUEGEN_Seite SID_INSERTPAGE -WL_TB_SD_EINFUEGEN_StarImage SID_INSERT_IMAGE +WL_TB_SD_EINFUEGEN_Diagramm .uno:InsertObjectChart +WL_TB_SD_EINFUEGEN_Formel .uno:InsertMath +WL_TB_SD_EINFUEGEN_Objekt .uno:InsertObject +WL_TB_SD_EINFUEGEN_Plugin .uno:InsertPlugin +WL_TB_SD_EINFUEGEN_Tabelle .uno:InsertSpreadsheet +WL_TB_SD_EINFUEGEN_Datei .uno:ImportFromFile +WL_TB_SD_EINFUEGEN_Seite .uno:InsertPage +WL_TB_SD_EINFUEGEN_StarImage .uno:InsertImage ' ** ' ** Einfuegen im Calc -WL_TB_SC_Einfuegen_Grafik SID_INSERT_GRAPHIC -WL_TB_SC_Einfuegen_Sonderzeichen SID_CHARMAP +WL_TB_SC_Einfuegen_Grafik .uno:InsertGraphic +WL_TB_SC_Einfuegen_Sonderzeichen .uno:InsertSymbol ' ** ' ** Einfuegen Objekte im Calc -WL_TB_SC_OBJEKT_Diagramm SID_DRAW_CHART -WL_TB_SC_OBJEKT_Image SID_INSERT_SIMAGE -WL_TB_SC_OBJEKT_Formel SID_INSERT_SMATH -WL_TB_SC_OBJEKT_Frame SID_INSERT_FLOATINGFRAME -WL_TB_SC_OBJEKT_Objekt SID_INSERT_OBJECT -WL_TB_SC_OBJEKT_Plugin SID_INSERT_PLUGIN -WL_TB_SC_OBJEKT_Applet SID_INSERT_APPLET +WL_TB_SC_OBJEKT_Diagramm .uno:DrawChart +WL_TB_SC_OBJEKT_Image .uno:InsertObjectStarImage +WL_TB_SC_OBJEKT_Formel .uno:InsertObjectStarMath +WL_TB_SC_OBJEKT_Frame .uno:InsertObjectFloatingFrame +WL_TB_SC_OBJEKT_Objekt .uno:InsertObject +WL_TB_SC_OBJEKT_Plugin .uno:InsertPlugin ' ** ' ** Einfuegen Zellen im Calc -WL_TB_SC_Zellen_ZellenNachUnten FID_INS_CELLSDOWN -WL_TB_SC_Zellen_ZellenNachRechts FID_INS_CELLSRIGHT -WL_TB_SC_Zellen_GanzeZeile FID_INS_ROW -WL_TB_SC_Zellen_GanzeSpalte FID_INS_COLUMN +WL_TB_SC_Zellen_ZellenNachUnten .uno:InsertCellsDown +WL_TB_SC_Zellen_ZellenNachRechts .uno:InsertCellsRight +WL_TB_SC_Zellen_GanzeZeile .uno:InsertRows +WL_TB_SC_Zellen_GanzeSpalte .uno:InsertColumns ' ** ' ** Optionsleiste im Draw / Impress -Opl_SD_PunkteBearbeiten SID_BEZIER_EDIT -Opl_SD_KlebepunkteBearbeiten SID_GLUE_EDITMODE +Opl_SD_PunkteBearbeiten .uno:ToggleObjectBezierMode +Opl_SD_KlebepunkteBearbeiten .uno:GlueEditMode Opl_SD_EffekteZulassen .uno:AnimationObjects -Opl_SD_DrehmodusNachKlick SID_CLICK_CHANGE_ROTATION -Opl_SD_RasterSichtbar SID_GRID_VISIBLE -Opl_SD_FanglinieSichtbar SID_HELPLINES_VISIBLE -Opl_SD_HilfslinienBeimVerschieben SID_HELPLINES_MOVE -Opl_SD_RasterBenutzen SID_GRID_USE -Opl_SD_FanglinieBenutzen SID_HELPLINES_USE -Opl_SD_FangenAnSeitenraendern SID_SNAP_BORDER -Opl_SD_FangenAnObjektRahmen SID_SNAP_FRAME -Opl_SD_FangenAnObjektpunkten SID_SNAP_POINTS -Opl_SD_Schnellbearbeitung SID_QUICKEDIT -Opl_SD_NurTextbreichSelektieren SID_PICK_THROUGH -Opl_SD_TextBearbeitenBeiDoppelklick SID_DOUBLECLICK_TEXTEDIT -Opl_SD_EinfacheHandles SID_HANDLES_DRAFT -Opl_SD_GrosseHandles SID_BIG_HANDLES -Opl_SD_ObjektMitAttributen SID_SOLID_CREATE -Opl_SD_AlleGruppierungenVerlassen SID_CONNECTOR_LINES_CIRCLES +Opl_SD_DrehmodusNachKlick .uno:ClickChangeRotation +Opl_SD_RasterSichtbar .uno:GridVisible +Opl_SD_FanglinieSichtbar .uno:HelplinesVisible +Opl_SD_HilfslinienBeimVerschieben .uno:HelplinesMove +Opl_SD_RasterBenutzen .uno:GridUse +Opl_SD_FanglinieBenutzen .uno:HelplinesUse +Opl_SD_FangenAnSeitenraendern .uno:SnapBorder +Opl_SD_FangenAnObjektRahmen .uno:SnapFrame +Opl_SD_FangenAnObjektpunkten .uno:SnapPoints +Opl_SD_Schnellbearbeitung .uno:QuickEdit +Opl_SD_NurTextbreichSelektieren .uno:PickThrough +Opl_SD_TextBearbeitenBeiDoppelklick .uno:DoubleClickTextEdit +Opl_SD_EinfacheHandles .uno:HandlesDraft +Opl_SD_GrosseHandles .uno:BigHandles +Opl_SD_ObjektMitAttributen .uno:SolidCreate +Opl_SD_AlleGruppierungenVerlassen .uno:ConnectorLinesCircles diff --git a/testautomation/global/sid/context.sid b/testautomation/global/sid/context.sid index f5d47e635a7f..72d6dba96cb1 100644..100755 --- a/testautomation/global/sid/context.sid +++ b/testautomation/global/sid/context.sid @@ -5,36 +5,36 @@ ' Minimieren SID_WIN_MINIMIZED ' ** Kontextmenue Calc -ZeilenLoeschen SID_DEL_ROWS -SpaltenLoeschen SID_DEL_COLS -' AnhaengenTabelle FID_TAB_APPEND ' ist zur 541 rausgenommen worden -NotizAnzeigen FID_NOTE_VISIBLE +ZeilenLoeschen .uno:DeleteRows +SpaltenLoeschen .uno:DeleteColumns +' AnhaengenTabelle .uno:Add ' ist zur 541 rausgenommen worden +NotizAnzeigen .uno:NoteVisible ' Kontextmenue: Tabelle Calc -AlleTabellenAuswaehlen FID_TAB_SELECTALL -SetTabColor FID_TAB_MENU_SET_TAB_BG_COLOR +AlleTabellenAuswaehlen .uno:TableSelectAll +SetTabColor .uno:SetTabBgColor ' ** Kontextmenue im Gestalter/Stylist -Stylist_Neu HID_STYLIST_NEW -Stylist_Aendern HID_STYLIST_EDIT -Stylist_Loeschen HID_STYLIST_DELETE +Stylist_Neu sym:SFX2_HID_STYLIST_NEW +Stylist_Aendern sym:SFX2_HID_STYLIST_EDIT +Stylist_Loeschen sym:SFX2_HID_STYLIST_DELETE 'Open ' ** Kontextmenue Objekte -Obj_Originalgroesse SID_ORIGINALSIZE +Obj_Originalgroesse .uno:OriginalSize ' ** Kontextmenue SeitenUmbruchvorschau Calc -Skalierungaufheben FID_RESET_PRINTZOOM +Skalierungaufheben .uno:ResetPrintZoom ' ** Kontextmenue automatische Rechtschreibung pruefen -ARP_Ersetzung HID_LINGU_REPLACE -ARP_Rechtschreibung HID_LINGU_SPELLING_DLG -ARP_Aufnehmen HID_LINGU_ADD_WORD -ARP_AlleIgnorieren HID_LINGU_IGNORE_WORD -ARP_Autokorrektur HID_LINGU_AUTOCORR +ARP_Ersetzung sym:SW_HID_LINGU_REPLACE +ARP_Rechtschreibung sym:SW_HID_LINGU_SPELLING_DLG +ARP_Aufnehmen sym:SW_HID_LINGU_ADD_WORD +ARP_AlleIgnorieren sym:SW_HID_LINGU_IGNORE_WORD +ARP_Autokorrektur sym:SW_HID_LINGU_AUTOCORR ' ** Kontextmenue IMPRESS/DRAW -VorlageBearbeiten SID_STYLE_EDIT -ContextOriginalSize SID_ORIGINAL_SIZE +VorlageBearbeiten .uno:EditStyle +ContextOriginalSize .uno:OriginalSize diff --git a/testautomation/global/sid/e_all.sid b/testautomation/global/sid/e_all.sid index 89b0a6d15e4d..4770eab50f1b 100755 --- a/testautomation/global/sid/e_all.sid +++ b/testautomation/global/sid/e_all.sid @@ -11,137 +11,137 @@ ' ********* File Menu ********* ' **** ' **** All applications -FileNewFromTemplate SID_NEWDOC -FileOpen SID_OPENDOC +FileNewFromTemplate .uno:NewDoc +FileOpen SID_OPENDOC FileAutopilotLetter service:com.sun.star.wizards.letter.CallWizard?start FileAutopilotFax service:com.sun.star.wizards.fax.CallWizard?start FileAutopilotAgenda service:com.sun.star.wizards.agenda.CallWizard?start -FileAutopilotPresentation SID_SD_AUTOPILOT -FileAutopilotAddressDataSource SID_ADDRESS_DATA_SOURCE +FileAutopilotPresentation .uno:AutoPilotPresentations +FileAutopilotAddressDataSource .uno:AutoPilotAddressDataSource FirstTimeWizard service:com.sun.star.comp.desktop.FirstStart?start FileWizardsWebPage service:com.sun.star.wizards.web.CallWizard?start +FileCloseAndReturn .uno:CloseDoc FileWizardDocumentConverter sym:vnd.sun.star.script:ImportWizard.Main.Main?language=Basic&location=application FileWizardEuroConverter sym:vnd.sun.star.script:Euro.AutoPilotRun.StartAutoPilot?language=Basic&location=application -FileCloseAndReturn SID_CLOSEDOC FileSaveCopy SID_SAVEASDOC FileClose .uno:CloseDoc FileSave SID_SAVEDOC FileSaveAs SID_SAVEASDOC -FileSaveAll SID_SAVEDOCS -FileExport SID_EXPORTDOC -FileExportAsPDF SID_EXPORTDOCASPDF -FileSendDocumentAsEmail SID_MAIL_SENDDOC -FileSendDocumentAsPDF SID_MAIL_SENDDOCASPDF -FileVersions SID_VERSION -FileReload SID_RELOAD SID_LASTVERSIONDOC -FileProperties SID_DOCINFO -FileTemplatesOrganize SID_ORGANIZER -FileTemplatesSave SID_DOCTEMPLATE -FileTemplatesEdit SID_OPENTEMPLATE -FileTemplatesAddressbookSource SID_TEMPLATE_ADDRESSBOKSOURCE -FilePageView SID_PRINTPREVIEW -FilePrint SID_PRINTDOC -FilePrintersettings SID_SETUPPRINTER +FileSaveAll .uno:SaveAll +FileExport .uno:ExportTo +FileExportAsPDF .uno:ExportToPDF +FileSendDocumentAsEmail .uno:SendMail +FileSendDocumentAsPDF .uno:SendMailDocAsPDF +FileVersions .uno:VersionDialog +FileReload SID_RELOAD +FileProperties .uno:SetDocumentProperties +FileTemplatesOrganize .uno:Organizer +FileTemplatesSave .uno:SaveAsTemplate +FileTemplatesEdit .uno:OpenTemplate +FileTemplatesAddressbookSource .uno:AddressBookSource +FilePageView .uno:PrintPreview +FilePrint .uno:Print +FilePrintersettings .uno:PrinterSetup FileExit SID_QUITAPP ' **** Writer -FileSendOutlineToPresentation FN_OUTLINE_TO_IMPRESS -FileSendOutlineToClipboard FN_OUTLINE_TO_CLIPBOARD -FileSendCreateAutoabstract FN_ABSTRACT_NEWDOC -FileSendAutoabstractToPresentation FN_ABSTRACT_STARIMPRESS -FileSendCreateMasterdocument FN_NEW_GLOBAL_DOC -FileSendCreateHTMLDocument FN_NEW_HTML_DOC +FileSendOutlineToPresentation .uno:SendOutlineToStarImpress +FileSendOutlineToClipboard .uno:SendOutlineToClipboard +FileSendCreateAutoabstract .uno:CreateAbstract +FileSendAutoabstractToPresentation .uno:SendAbstractToStarImpress +FileSendCreateMasterdocument .uno:NewGlobalDoc +FileSendCreateHTMLDocument .uno:NewHtmlDoc ' **** Impress / Draw -FilePack SID_PACKNGO +FilePack .uno:PackAndGo ' *********************************** ' ********* Edit Menu ********* ' **** ' **** All applications -EditUndo SID_UNDO -EditRedo SID_REDO -EditRepeat SID_REPEAT -EditCut SID_CUT +EditUndo .uno:Undo +EditRedo .uno:Redo +EditRepeat .uno:Repeat +EditCut .uno:Cut EditCopy .uno:Copy EditDoc .uno:EditDoc -EditPaste SID_PASTE -EditDelete SID_DELETE -EditSelectAll SID_SELECTALL -EditSearchAndReplace SID_SEARCH_DLG -EditPlugIn SID_PLUGINS_ACTIVE -EditImageMap SID_IMAP +EditPaste .uno:Paste +EditDelete .uno:Delete +EditSelectAll .uno:SelectAll +EditSearchAndReplace .uno:SearchDialog +EditPlugIn .uno:PlugInsActive +EditImageMap .uno:ImageMapDialog EditObjectEdit .uno:ObjectMenue?VerbID:short=0 EditObjectProperties .uno:ObjectMenue?VerbID:short=-7 EditObjectOpen .uno:ObjectMenue?VerbID:short=2 EditObjectSaveCopyAs .uno:ObjectMenue?VerbID:short=-8 ' **** Writer -EditAutotext FN_GLOSSARY_DLG +EditAutotext .uno:EditGlossary EditPasteSpecialWriter .uno:PasteSpecial -EditChangesRecord FN_REDLINE_ON -EditChangesShow FN_REDLINE_SHOW -EditChangesAcceptOrReject FN_REDLINE_ACCEPT -EditChangesComment FN_REDLINE_COMMENT -EditChangesMergeDocument SID_DOCUMENT_MERGE -EditCompareDocument SID_DOCUMENT_COMPARE -EditChangesProtectTrace FN_REDLINE_PROTECT -EditLinksWriter FN_EDIT_LINK_DLG -EditExchangeDatabase FN_CHANGE_DBFIELD -EditFields FN_EDIT_FIELD -EditFootnote FN_EDIT_FOOTNOTE -EditIndexEntry FN_EDIT_IDX_ENTRY_DLG -EditBibliographyEntry FN_EDIT_AUTH_ENTRY_DLG -EditHyperlink FN_EDIT_HYPERLINK +EditChangesRecord .uno:TrackChanges +EditChangesShow .uno:ShowTrackedChanges +EditChangesAcceptOrReject .uno:AcceptTrackedChanges +EditChangesComment .uno:CommentChangeTracking +EditChangesMergeDocument .uno:MergeDocuments +EditCompareDocument .uno:CompareDocuments +EditChangesProtectTrace .uno:ProtectTraceChangeMode +EditLinksWriter .uno:LinkDialog +EditExchangeDatabase .uno:ChangeDatabaseField +EditFields .uno:FieldDialog +EditFootnote .uno:EditFootnote +EditIndexEntry .uno:IndexEntryDialog +EditBibliographyEntry .uno:AuthoritiesEntryDialog +EditHyperlink .uno:EditHyperlink EditSelectionModeStandard .uno:SelectionModeDefault EditSelectionModeBlock .uno:SelectionModeBlock ' **** Calc EditPasteSpecialCalc .uno:PasteSpecial -EditChangesRecordCalc FID_CHG_RECORD -EditChangesProtectTraceCalc SID_CHG_PROTECT -EditChangesCommentsCalc FID_CHG_COMMENT -EditChangesShowCalc FID_CHG_SHOW -EditChangesAcceptOrDiscardCalc FID_CHG_ACCEPT -EditChangesDocumentMergeDocumentCalc SID_DOCUMENT_MERGE -EditCompareDocumentCalc SID_DOCUMENT_COMPARE -EditLinksCalc SID_LINKS -EditHeadersAndFooters SID_HFEDIT -EditFillLeft FID_FILL_TO_LEFT -EditFillUp FID_FILL_TO_TOP -EditFillRight FID_FILL_TO_RIGHT -EditFillSeries FID_FILL_SERIES -EditFillSheet FID_FILL_TAB -EditFillDown FID_FILL_TO_BOTTOM -EditDeleteContents SID_DELETE -EditDeleteCells FID_DELETE_CELL -EditDeleteSheet FID_DELETE_TABLE -EditCopyMoveSheet FID_TAB_MOVE -EditSheetSelect SID_SELECT_TABLES -EditRemoveManualBreakColumnBreak FID_DEL_COLBRK -EditRemoveManualBreakRowBreak FID_DEL_ROWBRK +EditChangesRecordCalc .uno:TraceChangeMode +EditChangesProtectTraceCalc .uno:ProtectTraceChangeMode +EditChangesCommentsCalc .uno:CommentChange +EditChangesShowCalc .uno:ShowChanges +EditChangesAcceptOrDiscardCalc .uno:AcceptChanges +EditChangesDocumentMergeDocumentCalc .uno:MergeDocuments +EditCompareDocumentCalc .uno:CompareDocuments +EditLinksCalc .uno:EditLinks +EditHeadersAndFooters .uno:EditHeaderAndFooter +EditFillLeft .uno:FillLeft +EditFillUp .uno:FillUp +EditFillRight .uno:FillRight +EditFillSeries .uno:FillSeries +EditFillSheet .uno:FillTable +EditFillDown .uno:FillDown +EditDeleteContents .uno:Delete +EditDeleteCells .uno:DeleteCell +EditDeleteSheet .uno:Remove +EditCopyMoveSheet .uno:Move +EditSheetSelect .uno:SelectTables +EditRemoveManualBreakColumnBreak .uno:DeleteColumnbreak +EditRemoveManualBreakRowBreak .uno:DeleteRowbreak EditObjectSaveCopyAsCalc .uno:ObjectMenue?VerbID:short=-8 ' **** Draw / Impress EditPasteSpecial .uno:PasteSpecial -EditLinksDraw SID_MANAGE_LINKS -EditDuplicate SID_COPYOBJECTS -EditCrossFading SID_POLYGON_MORPHING -EditRenameSlide SID_RENAMEPAGE -EditDeleteSlide SID_DELETE_PAGE -InsertLayer SID_INSERTLAYER -EditDeleteLayer SID_DELETE_LAYER -EditLayerRename SID_RENAMELAYER -EditfieldsDraw SID_MODIFY_FIELD -EditHyperlinkDraw SID_EDIT_HYPERLINK -EditGluePoints SID_GLUE_EDITMODE +EditLinksDraw .uno:ManageLinks +EditDuplicate .uno:CopyObjects +EditCrossFading .uno:Morphing +EditRenameSlide .uno:RenamePage +EditDeleteSlide .uno:DeletePage +InsertLayer .uno:InsertLayer +EditDeleteLayer .uno:DeleteLayer +EditLayerRename .uno:RenameLayer +EditfieldsDraw .uno:ModifyField +EditHyperlinkDraw .uno:EditHyperlink +EditGluePoints .uno:GlueEditMode ' **** Chart / Math -EditSelectAllMath SID_SELECT -EditNextMarker SID_NEXTMARK -EditPreviousMarker SID_PREVMARK -EditNextError SID_NEXTERR -EditPreviousError SID_PREVERR +EditSelectAllMath .uno:Select +EditNextMarker .uno:NextMark +EditPreviousMarker .uno:PrevMark +EditNextError .uno:NextError +EditPreviousError .uno:PrevError EditChartData .uno:DiagramData EditDataRanges .uno:DataRanges @@ -149,15 +149,15 @@ EditDataRanges .uno:DataRanges ' ********* View Menu ********* ' **** ' **** All applications -ViewZoom SID_ATTR_ZOOM -ViewBeamer SID_BROWSER +ViewZoom .uno:Zoom +ViewBeamer .uno:Beamer ViewDataSources .uno:ViewDataSourceBrowser ViewToolbarsHyperlinkbar .uno:InsertHyperlink ViewToolbarsConfigure .uno:ConfigureDialog -ViewToolbarsStatusbar SID_TOGGLESTATUSBAR -ViewFullScreen SID_WIN_FULLSCREEN -ViewCurrentDatabase SID_VIEW_DATA_SOURCE_BROWSER -ViewNavigator SID_NAVIGATOR +ViewToolbarsStatusbar .uno:StatusBarVisible +ViewFullScreen .uno:FullScreen +ViewCurrentDatabase .uno:ViewDataSourceBrowser +ViewNavigator .uno:Navigator ViewToolbarsThreeDSettings .uno:AvailableToolbars?Toolbar:string=extrusionobjectbar ViewToolbarsAlign .uno:AvailableToolbars?Toolbar:string=alignmentbar ViewToolbarsBasicShapes .uno:AvailableToolbars?Toolbar:string=basicshapes @@ -206,88 +206,88 @@ ViewToolbarsPreviewbar .uno:AvailableToolbars?Toolbar:string=previewbar ViewToolbarsDrawObjectbar .uno:AvailableToolbars?Toolbar:string=drawobjectbar ' **** Writer -ViewRuler FN_RULER -ViewCurrentDatabaseWriter SID_VIEW_DATA_SOURCE_BROWSER -ViewTextBoundaries FN_VIEW_BOUNDS -ViewFieldShadings FN_VIEW_MARKS -ViewFields FN_VIEW_FIELDNAME -ViewNonprintingCharacters FN_VIEW_META_CHARS -ViewOnlineLayout SID_BROWSER_MODE -ViewHiddenParagraphs FN_VIEW_HIDDEN_PARA -ViewInputMethodStatus SID_SHOW_IME_STATUS_WINDOW +ViewRuler .uno:Ruler +ViewCurrentDatabaseWriter .uno:ViewDataSourceBrowser +ViewTextBoundaries .uno:ViewBounds +ViewFieldShadings .uno:Marks +ViewFields .uno:Fieldnames +ViewNonprintingCharacters .uno:ControlCodes +ViewOnlineLayout .uno:BrowseView +ViewHiddenParagraphs .uno:ShowHiddenParagraphs +ViewInputMethodStatus .uno:ShowImeStatusWindow ' **** Calc ViewToolbarsFormulaBar .uno:InputLineVisible -ViewColumnAndRowHeaders FID_TOGGLEHEADERS -ViewValueHightlighting FID_TOGGLESYNTAX +ViewColumnAndRowHeaders .uno:ViewRowColumnHeaders +ViewValueHightlighting .uno:ViewValueHighlighting ViewNormalView .uno:NormalViewMode ViewPageBreakPreview .uno:PagebreakMode -ViewCurrentDatabaseCalc SID_VIEW_DATA_SOURCE_BROWSER +ViewCurrentDatabaseCalc .uno:ViewDataSourceBrowser ViewSelectionCalc .uno:Toolbox ' **** Draw / Impress -ViewBackground SID_MASTERPAGE -ViewDrawing SID_SLIDE_MASTERPAGE -ViewGridVisible SID_GRID_VISIBLE -ViewGridUse SID_GRID_USE -ViewGridFront SID_GRID_FRONT +ViewBackground .uno:MasterPage +ViewDrawing .uno:SlideMasterPage +ViewGridVisible .uno:GridVisible +ViewGridUse .uno:GridUse +ViewGridFront .uno:GridFront ViewHandout .uno:HandoutMode -ViewHeaderAndFooter SID_HEADER_AND_FOOTER -ViewLayer SID_LAYERMODE -ViewLayerButton HID_SD_BTN_LAYER 59781 +ViewHeaderAndFooter .uno:HeaderAndFooter +ViewLayer .uno:LayerMode +ViewLayerButton sym:SD_HID_SD_BTN_LAYER 59781 ViewMasterPage .uno:MasterPage ViewMasterButton .uno:MasterPageMenu ViewNormal .uno:NormalMultiPaneGUI ViewNotes .uno:NotesMode ViewOutline .uno:OutlineMode ViewPagePane .uno:LeftPaneDraw -ViewPreview SID_PREVIEW_WIN +ViewPreview .uno:PreviewWindow ViewPreviewWindow .uno:PreviewWindow -ViewQualityColour SID_OUTPUT_QUALITY_COLOR -ViewQualityGreyscale SID_OUTPUT_QUALITY_GRAYSCALE -ViewQualityBlackWhite SID_OUTPUT_QUALITY_BLACKWHITE +ViewQualityColour .uno:OutputQualityColor +ViewQualityGreyscale .uno:OutputQualityGrayscale +ViewQualityBlackWhite .uno:OutputQualityBlackWhite ViewRightPane .uno:RightPane -ViewRulers SID_RULER +ViewRulers .uno:ShowRuler ViewSlideShow .uno:Presentation ViewSlideSorter .uno:DiaMode -ViewSlide SID_PAGEMODE -ViewSlideButton HID_SD_BTN_PAGE 59779 -ViewSnapLinesVisible SID_HELPLINES_VISIBLE -ViewSnapLinesUse SID_HELPLINES_USE -ViewSnapLinesFront SID_HELPLINES_FRONT +ViewSlide .uno:PageMode +ViewSlideButton sym:SD_HID_SD_BTN_PAGE 59779 +ViewSnapLinesVisible .uno:HelplinesVisible +ViewSnapLinesUse .uno:HelplinesUse +ViewSnapLinesFront .uno:HelplinesFront ViewStatusBarVisible .uno:StatusBarVisible ViewShowImeStatusWindow .uno:ShowImeStatusWindow ViewShowRuler .uno:ShowRuler ViewTaskPane .uno:TaskPane ViewTaskSlide .uno:LeftPaneImpress -ViewTitle SID_TITLE_MASTERPAGE +ViewTitle .uno:TitleMasterPage ViewToolbarsOptionbar .uno:AvailableToolbars?Toolbar:string=optionsbar ViewToolbarsColorBar .uno:ColorControl -ViewWorkspaceDrawingView SID_DRAWINGMODE -ViewWorkspaceOutlineView SID_OUTLINEMODE -ViewWorkspaceSlidesView SID_DIAMODE -ViewWorkspaceNotesView SID_NOTESMODE -ViewWorkspaceHandoutView SID_HANDOUTMODE +ViewWorkspaceDrawingView .uno:DrawingMode +ViewWorkspaceOutlineView .uno:OutlineMode +ViewWorkspaceSlidesView .uno:DiaMode +ViewWorkspaceNotesView .uno:NotesMode +ViewWorkspaceHandoutView .uno:HandoutMode ' **** Math -ViewAutoUpdateDisplay SID_AUTO_REDRAW -ViewSelection SID_TOOLBOX -ViewZoomIn SID_ZOOMIN -ViewZoomAll SID_ZOOMOUT -ViewShowAll SID_ADJUST -ViewUpdate SID_DRAW +ViewAutoUpdateDisplay .uno:RedrawAutomatic +ViewSelection .uno:ToolBox +ViewZoomIn .uno:ZoomIn +ViewZoomAll .uno:ZoomOut +ViewShowAll .uno:Adjust +ViewUpdate .uno:Draw ' **** WriterWeb -ViewPrintLayout FN_PRINT_LAYOUT -ViewHTMLSource SID_SOURCEVIEW +ViewPrintLayout .uno:PrintLayout +ViewHTMLSource .uno:SourceView ' *********************************** ' ********* Insert Menu ********** ' **** ' **** All applications -InsertGraphics SID_INSERT_GRAPHIC +InsertGraphics .uno:InsertGraphic InsertChart .uno:InsertObjectChart -InsertGraphicsFromFile SID_INSERT_GRAPHIC +InsertGraphicsFromFile .uno:InsertGraphic InsertMovieAndSound .uno:InsertAVMedia InsertFloatingFrame .uno:InsertObjectFloatingFrame InsertObjectOLEObject .uno:InsertObject @@ -306,58 +306,58 @@ InsertLRM .uno:InsertLRM InsertRLM .uno:InsertLRM ' **** Writer -InsertManualBreak FN_INSERT_BREAK_DLG +InsertManualBreak .uno:InsertBreak InsertSpecialCharacterWriter .uno:InsertSymbol -InsertObjectFormulaWriter FN_INSERT_SMA -InsertTableWriter FN_INSERT_TABLE -InsertFileWriter SID_INSERTDOC -InsertFieldsDate FN_INSERT_FLD_DATE -InsertFieldsTime FN_INSERT_FLD_TIME -InsertFieldsPageNumbers FN_INSERT_FLD_PGNUMBER -InsertFieldsPageCount FN_INSERT_FLD_PGCOUNT -InsertFieldsSubject FN_INSERT_FLD_TOPIC -InsertFieldsTitle FN_INSERT_FLD_TITLE -InsertFieldsAuthor FN_INSERT_FLD_AUTHOR -InsertFieldsOther FN_INSERT_FIELD -InsertHeader FN_INSERT_PAGEHEADER -InsertFooter FN_INSERT_PAGEFOOTER -InsertSection FN_INSERT_REGION -InsertHyperlink SID_HYPERLINK_DIALOG -InsertFootnote FN_INSERT_FOOTNOTE_DLG -InsertCaption FN_INSERT_CAPTION -InsertBookmark FN_INSERT_BOOKMARK -InsertReferenceField FN_INSERT_REF_FIELD -InsertNoteWriter FN_POSTIT -InsertScript FN_JAVAEDIT -InsertIndexes FN_INSERT_MULTI_TOX -InsertIndexesEntry FN_INSERT_IDX_ENTRY_DLG -InsertIndexesBibliographyEntry FN_INSERT_AUTH_ENTRY_DLG -InsertEnvelope FN_ENVELOP -InsertHorizontalLine FN_INSERT_HRULER -InsertFrame FN_INSERT_FRAME -InsertGraphicsScanSelectSource SID_TWAIN_SELECT -InsertGraphicsScanRequest SID_TWAIN_TRANSFER +InsertObjectFormulaWriter .uno:InsertObjectStarMath +InsertTableWriter .uno:InsertTable +InsertFileWriter .uno:InsertDoc +InsertFieldsDate .uno:InsertDateField +InsertFieldsTime .uno:InsertTimeField +InsertFieldsPageNumbers .uno:InsertPageNumberField +InsertFieldsPageCount .uno:InsertPageCountField +InsertFieldsSubject .uno:InsertTopicField +InsertFieldsTitle .uno:InsertTitleField +InsertFieldsAuthor .uno:InsertAuthorField +InsertFieldsOther .uno:InsertField +InsertHeader .uno:InsertPageHeader +InsertFooter .uno:InsertPageFooter +InsertSection .uno:InsertSection +InsertHyperlink .uno:HyperlinkDialog +InsertFootnote .uno:InsertFootnoteDialog +InsertCaption .uno:InsertCaptionDialog +InsertBookmark .uno:InsertBookmark +InsertReferenceField .uno:InsertReferenceField +InsertNoteWriter .uno:InsertAnnotation +InsertScript .uno:InsertScript +InsertIndexes .uno:InsertMultiIndex +InsertIndexesEntry .uno:InsertIndexesEntry +InsertIndexesBibliographyEntry .uno:InsertAuthoritiesEntry +InsertEnvelope .uno:InsertEnvelope +InsertHorizontalLine .uno:InsertGraphicRuler +InsertFrame .uno:InsertFrame +InsertGraphicsScanSelectSource .uno:TwainSelect +InsertGraphicsScanRequest .uno:TwainTransfer ' **** Calc -InsertSpecialCharacterCalc SID_CHARMAP -InsertGraphicsFromImageEditorCalc SID_INSERT_SIMAGE +InsertSpecialCharacterCalc .uno:InsertSymbol +InsertGraphicsFromImageEditorCalc .uno:InsertObjectStarImage InsertChartCalc .uno:InsertObjectChart -InsertObjectFormulaCalc SID_INSERT_SMATH -InsertSheetCalc FID_INS_TABLE -InsertManuelBreakColumnBreak FID_INS_COLBRK -InsertManuelBreakRowBreak FID_INS_ROWBRK -InsertCells FID_INS_CELL -InsertRowsCalc FID_INS_ROW -InsertColumnsCalc FID_INS_COLUMN -InsertFunction SID_OPENDLG_FUNCTION -InsertFunctionList FID_FUNCTION_BOX -InsertNamesInsert FID_INSERT_NAME -InsertNamesDefine FID_DEFINE_NAME -InsertNameCreate FID_USE_NAME -InsertNamesLabels SID_DEFINE_COLROWNAMERANGES -InsertNoteCalc SID_INSERT_POSTIT -InsertLinkToExternalData SID_EXTERNAL_SOURCE -InsertSheetFromFile FID_INS_TABLE_EXT +InsertObjectFormulaCalc .uno:InsertObjectStarMath +InsertSheetCalc .uno:Insert +InsertManuelBreakColumnBreak .uno:InsertColumnBreak +InsertManuelBreakRowBreak .uno:InsertRowBreak +InsertCells .uno:InsertCell +InsertRowsCalc .uno:InsertRows +InsertColumnsCalc .uno:InsertColumns +InsertFunction .uno:FunctionDialog +InsertFunctionList .uno:FunctionBox +InsertNamesInsert .uno:InsertName +InsertNamesDefine .uno:DefineName +InsertNameCreate .uno:CreateNames +InsertNamesLabels .uno:DefineLabelRange +InsertNoteCalc .uno:InsertAnnotation +InsertLinkToExternalData .uno:InsertExternalDataSource +InsertSheetFromFile .uno:InsertSheetFromFile ' **** Draw InsertPage .uno:InsertPage @@ -366,32 +366,32 @@ InsertBullet .uno:InsertSymbol InsertCapturePoint .uno:CapturePoint InsertDuplicatePage .uno:DuplicatePage InsertSpecialCharacterDraw .uno:InsertSymbol -InsertGraficsDraw SID_INSERT_IMAGE +InsertGraficsDraw .uno:InsertImage InsertGraphicMenu .uno:GraphicMenu -InsertObjectFormulaDraw SID_INSERT_MATH +InsertObjectFormulaDraw .uno:InsertMath InsertObjectMenu .uno:ObjectMenu InsertImportFromFile .uno:ImportFromFile InsertSpreadsheet .uno:InsertSpreadsheet -InsertSpreadsheetDraw SID_ATTR_TABLE -InsertFileDraw SID_INSERTFILE -InsertSlide SID_INSERTPAGE -InsertDuplicateSlide SID_DUPLICATE_PAGE -InsertExpandSlide SID_EXPAND_PAGE -InsertSummerySlide SID_SUMMARY_PAGE -InsertFieldsDateFix SID_INSERT_FLD_DATE_FIX -InsertFieldsDateVariable SID_INSERT_FLD_DATE_VAR +InsertSpreadsheetDraw .uno:InsertSpreadsheet +InsertFileDraw .uno:ImportFromFile +InsertSlide .uno:InsertPage +InsertDuplicateSlide .uno:DuplicatePage +InsertExpandSlide .uno:ExpandPage +InsertSummerySlide .uno:SummaryPage +InsertFieldsDateFix .uno:InsertDateFieldFix +InsertFieldsDateVariable .uno:InsertDateFieldVar InsertFieldMenu .uno:FieldMenu -InsertFieldsTimeFix SID_INSERT_FLD_TIME_FIX -InsertFieldsTimeVariable SID_INSERT_FLD_TIME_VAR -InsertFieldsAuthorDraw SID_INSERT_FLD_AUTHOR -InsertFieldsPageNumberDraw SID_INSERT_FLD_PAGE +InsertFieldsTimeFix .uno:InsertTimeFieldFix +InsertFieldsTimeVariable .uno:InsertTimeFieldVar +InsertFieldsAuthorDraw .uno:InsertAuthorField +InsertFieldsPageNumberDraw .uno:InsertPageField InsertFieldsPageCountDraw .uno:InsertPagesField -InsertFieldsFileName SID_INSERT_FLD_FILE +InsertFieldsFileName .uno:InsertFileField InsertHyperlinkDialog .uno:HyperlinkDialog -InsertScanSelectSource SID_TWAIN_SELECT -InsertScanRequest SID_TWAIN_TRANSFER -InsertSymbol SID_CHOOSE_POLYGON -InsertSnapPointLine SID_CAPTUREPOINT +InsertScanSelectSource .uno:TwainSelect +InsertScanRequest .uno:TwainTransfer +InsertSymbol .uno:ChoosePolygon +InsertSnapPointLine .uno:CapturePoint ' **** Chart InsertTitle .uno:InsertMenuTitles @@ -407,15 +407,15 @@ InsertYErrorBars .uno:InsertMenuYErrorBars ' *********** Format Menu *********** ' **** ' **** All applications -FormatCharacter SID_CHAR_DLG -FormatLine SID_ATTRIBUTES_LINE -FormatArea SID_ATTRIBUTES_AREA -FormatParagraph SID_PARA_DLG -FormatStylesCatalog SID_STYLE_CATALOG -FormatStylesLoad SID_TEMPLATE_LOAD -FormatStylist SID_STYLE_DESIGNER -FormatControl SID_FM_CTL_PROPERTIES -FormatForm SID_FM_PROPERTIES +FormatCharacter .uno:FontDialog +FormatLine .uno:FormatLine +FormatArea .uno:FormatArea +FormatParagraph .uno:ParagraphDialog +FormatStylesCatalog .uno:StyleCatalog +FormatStylesLoad .uno:LoadStyles +FormatStylist .uno:DesignerDialog +FormatControl .uno:ControlProperties +FormatForm .uno:FormProperties FormatChangeCaseToSentence .uno:ChangeCaseToSentenceCase FormatChangeCaseCapitalizeEveryWord .uno:ChangeCaseToTitleCase FormatChangeCaseToggleCase .uno:ChangeCaseToToggleCase @@ -428,143 +428,143 @@ FormatChangeCaseKatagana .uno:ChangeCaseToKatakana ' **** Writer FormatDefaultWriter .uno:ResetAttributes -FormatPageWriter FN_FORMAT_PAGE_DLG -FormatSections FN_EDIT_REGION -FormatNumberingBullets FN_NUMBER_BULLETS +FormatPageWriter .uno:PageDialog +FormatSections .uno:EditRegion +FormatNumberingBullets .uno:BulletsAndNumberingDialog FormatAutoformatWhileTyping .uno:OnlineAutoFormat FormatAutoformatApply .uno:AutoFormatApply FormatAutoFormatApplyAndEditChanges .uno:AutoFormatRedlineApply -FormatTable FN_FORMAT_TABLE_DLG -FormatSplitTable FN_TABLE_SPLIT_TABLE -FormatMergeTables FN_TABLE_MERGE_TABLE -FormatTextWriter FN_DRAWTEXT_ATTR_DLG -FormatNumberFormat FN_NUM_FORMAT_TABLE_DLG -FormatRowHeight FN_TABLE_SET_ROW_HEIGHT -FormatRowOptimalHeight FN_TABLE_OPTIMAL_HEIGHT -FormatRowSpaceEqually FN_TABLE_BALANCE_ROWS -FormatRowSelect FN_TABLE_SELECT_ROW -FormatRowInsert FN_TABLE_INSERT_ROW_DLG -FormatRowDelete FN_TABLE_DELETE_ROW -FormatRuby SID_RUBY_DIALOG -FormatColumns FN_FORMAT_COLUMN -FormatColumnWidthWriter FN_TABLE_SET_COL_WIDTH -FormatColumnOptimalWidthWriter FN_TABLE_ADJUST_CELLS -FormatColumnSpaceEqually FN_TABLE_BALANCE_CELLS -FormatColumnInsert FN_TABLE_INSERT_COL_DLG -FormatGraphics FN_FORMAT_GRAFIC_DLG -FormatFrame FN_FORMAT_FRAME_DLG -FormatObject FN_FORMAT_FRAME_DLG -FormatArrangeBringToFront SID_FRAME_TO_TOP -FormatArrangeBringForward FN_FRAME_UP -FormatArrangeSetBackward FN_FRAME_DOWN -FormatArrangeSendToBack SID_FRAME_TO_BOTTOM -FormatArrangeToForeground SID_OBJECT_HEAVEN -FormatArrangeToBackground SID_OBJECT_HELL -FormatAlignmentLeft FN_FRAME_ALIGN_HORZ_LEFT -FormatAlignmentCentered FN_FRAME_ALIGN_HORZ_CENTER -FormatAlignmentRight FN_FRAME_ALIGN_HORZ_RIGHT -FormatAlignmentTop FN_FRAME_ALIGN_VERT_TOP -FormatAlignmentCenter FN_FRAME_ALIGN_VERT_CENTER -FormatAlignmentBottom FN_FRAME_ALIGN_VERT_BOTTOM -FormatAnchorToPage FN_TOOL_ANKER_PAGE -FormatAnchorToParagraph FN_TOOL_ANKER_PARAGRAPH -FormatAnchorAsCharacter FN_TOOL_ANKER_CHAR -FormatAnchorToCharacter FN_TOOL_ANKER_AT_CHAR -FormatAnchorToFrame FN_TOOL_ANKER_FRAME -FormatWrapNoWrap FN_FRAME_NOWRAP -FormatWrapPageWrap FN_FRAME_WRAP -FormatWrapOptimalPageWrap FN_FRAME_WRAP_IDEAL -FormatWrapThrough FN_FRAME_WRAPTHRU -FormatWrapInBackground FN_FRAME_WRAPTHRU_TRANSP -FormatWrapContour FN_FRAME_WRAP_CONTOUR -FormatWrapEditContour SID_CONTOUR_DLG -FormatWrapFirstParagraph FN_WRAP_ANCHOR_ONLY -FormatWrapEdit FN_DRAW_WRAP_DLG +FormatTable .uno:TableDialog +FormatSplitTable .uno:SplitTable +FormatMergeTables .uno:MergeTable +FormatTextWriter .uno:TextAttributes +FormatNumberFormat .uno:TableNumberFormatDialog +FormatRowHeight .uno:SetRowHeight +FormatRowOptimalHeight .uno:SetOptimalRowHeight +FormatRowSpaceEqually .uno:DistributeRows +FormatRowSelect .uno:EntireRow +FormatRowInsert .uno:InsertRowDialog +FormatRowDelete .uno:DeleteRows +FormatRuby .uno:RubyDialog +FormatColumns .uno:FormatColumns +FormatColumnWidthWriter .uno:SetColumnWidth +FormatColumnOptimalWidthWriter .uno:SetOptimalColumnWidth +FormatColumnSpaceEqually .uno:DistributeColumns +FormatColumnInsert .uno:InsertColumnDialog +FormatGraphics .uno:GraphicDialog +FormatFrame .uno:FrameDialog +FormatObject .uno:FrameDialog +FormatArrangeBringToFront .uno:BringToFront +FormatArrangeBringForward .uno:ObjectForwardOne +FormatArrangeSetBackward .uno:ObjectBackOne +FormatArrangeSendToBack .uno:SendToBack +FormatArrangeToForeground .uno:SetObjectToForeground +FormatArrangeToBackground .uno:SetObjectToBackground +FormatAlignmentLeft .uno:AlignLeft +FormatAlignmentCentered .uno:AlignHorizontalCenter +FormatAlignmentRight .uno:AlignRight +FormatAlignmentTop .uno:AlignTop +FormatAlignmentCenter .uno:AlignVerticalCenter +FormatAlignmentBottom .uno:AlignBottom +FormatAnchorToPage .uno:SetAnchorToPage +FormatAnchorToParagraph .uno:SetAnchorToPara +FormatAnchorAsCharacter .uno:SetAnchorToChar +FormatAnchorToCharacter .uno:SetAnchorAtChar +FormatAnchorToFrame .uno:SetAnchorToFrame +FormatWrapNoWrap .uno:WrapOff +FormatWrapPageWrap .uno:WrapOn +FormatWrapOptimalPageWrap .uno:WrapIdeal +FormatWrapThrough .uno:WrapThrough +FormatWrapInBackground .uno:WrapThroughTransparent +FormatWrapContour .uno:WrapContour +FormatWrapEditContour .uno:ContourDialog +FormatWrapFirstParagraph .uno:WrapAnchorOnly +FormatWrapEdit .uno:TextWrap FormatNameObject .uno:NameGroup -FormatPositionAndSize SID_ATTR_TRANSFORM -FormatFlipVertically FN_FLIP_VERT_GRAFIC -FormatFlipHorizontally FN_FLIP_HORZ_GRAFIC -FormatObjectAlignmentLeft SID_OBJECT_ALIGN_LEFT -FormatObjectAlignmentCentered SID_OBJECT_ALIGN_CENTER -FormatObjectAlignmentRight SID_OBJECT_ALIGN_RIGHT -FormatObjectAlignmentTop SID_OBJECT_ALIGN_UP -FormatObjectAlignmentCenter SID_OBJECT_ALIGN_MIDDLE -FormatObjectAlignmentBottom SID_OBJECT_ALIGN_DOWN -FormatEditPoints SID_BEZIER_EDIT -FormatFontWork SID_FONTWORK -FormatGroupGroup SID_GROUP -FormatGroupUngroup SID_UNGROUP -FormatGroupEditGroup SID_ENTER_GROUP -FormatGroupExitGroup SID_LEAVE_GROUP -FormatStyleBold SID_ATTR_CHAR_WEIGHT -FormatStyleItalic SID_ATTR_CHAR_POSTURE -FormatStyleUnderline SID_ATTR_CHAR_UNDERLINE -FormatStyleStrikeThrough SID_ATTR_CHAR_STRIKEOUT -FormatStyleShadow SID_ATTR_CHAR_SHADOWED -FormatStyleOutline SID_ATTR_CHAR_CONTOUR -FormatStyleSuperscript FN_SET_SUPER_SCRIPT -FormatStyleSubscript FN_SET_SUB_SCRIPT -FormatLineSpacingSingleLine SID_ATTR_PARA_LINESPACE_10 -FormatLineSpacing15Lines SID_ATTR_PARA_LINESPACE_15 -FormatLineSpacingDouble SID_ATTR_PARA_LINESPACE_20 -FormatAlignmentLeftText SID_ATTR_PARA_ADJUST_LEFT -FormatAlignmentRightText SID_ATTR_PARA_ADJUST_RIGHT -FormatAlignmentCenteredText SID_ATTR_PARA_ADJUST_CENTER -FormatAlignmentJustifiedText SID_ATTR_PARA_ADJUST_BLOCK -FormatReplaceWithTextBox SID_FM_CONVERTTO_EDIT -FormatReplaceWithLabelField SID_FM_CONVERTTO_FIXEDTEXT -FormatReplaceWithListbox SID_FM_CONVERTTO_LISTBOX -FormatReplaceWithCheckbox SID_FM_CONVERTTO_CHECKBOX -FormatReplaceWithRadiobutton SID_FM_CONVERTTO_RADIOBUTTON -FormatReplaceWithGroupbox SID_FM_CONVERTTO_GROUPBOX -FormatReplaceWithCombobox SID_FM_CONVERTTO_COMBOBOX -FormatReplaceWithImageButton SID_FM_CONVERTTO_IMAGEBUTTON -FormatReplaceWithFileSelection SID_FM_CONVERTTO_FILECONTROL -FormatReplaceWithDateField SID_FM_CONVERTTO_DATE -FormatReplaceWithTimeField SID_FM_CONVERTTO_TIME -FormatReplaceWithNumericalField SID_FM_CONVERTTO_NUMERIC -FormatReplaceWithCurrencyField SID_FM_CONVERTTO_CURRENCY -FormatReplaceWithPatternField SID_FM_CONVERTTO_PATTERN -FormatReplaceWithImageControl SID_FM_CONVERTTO_IMAGECONTROL -FormatReplaceWithFormattedField SID_FM_CONVERTTO_FORMATTED -FormatReplaceWithScrollbar SID_FM_CONVERTTO_SCROLLBAR -FormatReplaceWithSpinbutton SID_FM_CONVERTTO_SPINBUTTON +FormatPositionAndSize .uno:TransformDialog +FormatFlipVertically .uno:FlipVertical +FormatFlipHorizontally .uno:FlipHorizontal +FormatObjectAlignmentLeft .uno:ObjectAlignLeft +FormatObjectAlignmentCentered .uno:AlignCenter +FormatObjectAlignmentRight .uno:ObjectAlignRight +FormatObjectAlignmentTop .uno:AlignUp +FormatObjectAlignmentCenter .uno:AlignMiddle +FormatObjectAlignmentBottom .uno:AlignDown +FormatEditPoints .uno:ToggleObjectBezierMode +FormatFontWork .uno:FontWork +FormatGroupGroup .uno:FormatGroup +FormatGroupUngroup .uno:FormatUngroup +FormatGroupEditGroup .uno:EnterGroup +FormatGroupExitGroup .uno:LeaveGroup +FormatStyleBold .uno:Bold +FormatStyleItalic .uno:Italic +FormatStyleUnderline .uno:Underline +FormatStyleStrikeThrough .uno:Strikeout +FormatStyleShadow .uno:Shadowed +FormatStyleOutline .uno:OutlineFont +FormatStyleSuperscript .uno:SuperScript +FormatStyleSubscript .uno:SubScript +FormatLineSpacingSingleLine .uno:SpacePara1 +FormatLineSpacing15Lines .uno:SpacePara15 +FormatLineSpacingDouble .uno:SpacePara2 +FormatAlignmentLeftText .uno:LeftPara +FormatAlignmentRightText .uno:RightPara +FormatAlignmentCenteredText .uno:CenterPara +FormatAlignmentJustifiedText .uno:JustifyPara +FormatReplaceWithTextBox .uno:ConvertToEdit +FormatReplaceWithLabelField .uno:ConvertToFixed +FormatReplaceWithListbox .uno:ConvertToList +FormatReplaceWithCheckbox .uno:ConvertToCheckBox +FormatReplaceWithRadiobutton .uno:ConvertToRadio +FormatReplaceWithGroupbox .uno:ConvertToGroup +FormatReplaceWithCombobox .uno:ConvertToCombo +FormatReplaceWithImageButton .uno:ConvertToImageBtn +FormatReplaceWithFileSelection .uno:ConvertToFileControl +FormatReplaceWithDateField .uno:ConvertToDate +FormatReplaceWithTimeField .uno:ConvertToTime +FormatReplaceWithNumericalField .uno:ConvertToNumeric +FormatReplaceWithCurrencyField .uno:ConvertToCurrency +FormatReplaceWithPatternField .uno:ConvertToPattern +FormatReplaceWithImageControl .uno:ConvertToImageControl +FormatReplaceWithFormattedField .uno:ConvertToFormatted +FormatReplaceWithScrollbar .uno:ConvertToScrollBar +FormatReplaceWithSpinbutton .uno:ConvertToSpinButton ' Formatmenue : Calc -FormatDefaultCalc SID_CELL_FORMAT_RESET -FormatTextCalc SID_DRAWTEXT_ATTR_DLG -FormatPageCalc SID_FORMATPAGE -FormatCells FID_CELL_FORMAT -FormatRowHide FID_ROW_HIDE -FormatRowShow FID_ROW_SHOW -FormatRowHeightCalc FID_ROW_HEIGHT -FormatRowOptimalHeightCalc FID_ROW_OPT_HEIGHT -FormatColumnHide FID_COL_HIDE -FormatColumnWidthCalc FID_COL_WIDTH -FormatColumnShow FID_COL_SHOW -FormatColumnOptimalWidthCalc FID_COL_OPT_WIDTH -FormatSheetHide FID_TABLE_HIDE -FormatSheetShow FID_TABLE_SHOW -FormatSheetRename FID_TAB_MENU_RENAME FID_TAB_RENAME +FormatDefaultCalc .uno:ResetAttributes +FormatTextCalc .uno:TextAttributes +FormatPageCalc .uno:PageFormatDialog +FormatCells .uno:FormatCellDialog +FormatRowHide .uno:HideRow +FormatRowShow .uno:ShowRow +FormatRowHeightCalc .uno:RowHeight +FormatRowOptimalHeightCalc .uno:SetOptimalRowHeight +FormatColumnHide .uno:HideColumn +FormatColumnWidthCalc .uno:ColumnWidth +FormatColumnShow .uno:ShowColumn +FormatColumnOptimalWidthCalc .uno:SetOptimalColumnWidth +FormatSheetHide .uno:Hide +FormatSheetShow .uno:Show +FormatSheetRename .uno:RenameTable .uno:Name FormatSheetRightToLeft .uno:SheetRightToLeft FormatSheetTabColor .uno:SetTabBgColor FormatMergeCells .uno:ToggleMergeCells -FormatPrintRangesRemove SID_DELETE_PRINTAREA -FormatPrintRangesEdit SID_OPENDLG_EDIT_PRINTAREA -FormatPrintRangesDefine SID_DEFINE_PRINTAREA -FormatPrintRangesAdd SID_ADD_PRINTAREA +FormatPrintRangesRemove .uno:DeletePrintArea +FormatPrintRangesEdit .uno:EditPrintArea +FormatPrintRangesDefine .uno:DefinePrintArea +FormatPrintRangesAdd .uno:AddPrintArea FormatAutoformat .uno:AutoFormat -FormatConditionalFormatting SID_OPENDLG_CONDFRMT -FormatAnchorToPageCalc SID_ANCHOR_PAGE -FormatAnchorToCell SID_ANCHOR_CELL -FormatFlipVerticallyCalc SID_MIRROR_VERTICAL -FormatFlipHorizontalCalc SID_MIRROR_HORIZONTAL -FormatArrangeBringToFrontCalc SID_FRAME_TO_TOP -FormatArrangeBringForwardCalc SID_FRAME_UP -FormatArrangeSendBackwardCalc SID_FRAME_DOWN -FormatArrangeSendToBackCalc SID_FRAME_TO_BOTTOM -FormatArrangeToBackgroundCalc SID_OBJECT_HELL -FormatArrangeToForegroundCalc SID_OBJECT_HEAVEN +FormatConditionalFormatting .uno:ConditionalFormatDialog +FormatAnchorToPageCalc .uno:SetAnchorToPage +FormatAnchorToCell .uno:SetAnchorToCell +FormatFlipVerticallyCalc .uno:ObjectMirrorVertical +FormatFlipHorizontalCalc .uno:ObjectMirrorHorizontal +FormatArrangeBringToFrontCalc .uno:BringToFront +FormatArrangeBringForwardCalc .uno:ObjectForwardOne +FormatArrangeSendBackwardCalc .uno:ObjectBackOne +FormatArrangeSendToBackCalc .uno:SendToBack +FormatArrangeToBackgroundCalc .uno:SetObjectToBackground +FormatArrangeToForegroundCalc .uno:SetObjectToForeground FormatAlignmentHorizontalDefaultCalc .uno:CommonAlignHorizontalDefault FormatAlignmentLeftCalc .uno:CommonAlignLeft FormatAlignmentHorizontalCenterCalc .uno:CommonAlignHorizontalCenter @@ -573,45 +573,45 @@ FormatAlignmentJustifiedCalc .uno:CommonAlignJustified FormatAlignmentTopCalc .uno:CommonAlignTop FormatAlignmentverticalCenterCalc .uno:CommonAlignVerticalCenter FormatAlignmentBottomCalc .uno:CommonAlignBottom -FormatAlignmentObjectLeftCalc SID_OBJECT_ALIGN_LEFT -FormatAlignmentObjectCenteredCalc SID_OBJECT_ALIGN_CENTER -FormatAlignmentObjectRightCalc SID_OBJECT_ALIGN_RIGHT -FormatAlignmentObjectTopCalc SID_OBJECT_ALIGN_UP -FormatAlignmentObjectCenterCalc SID_OBJECT_ALIGN_MIDDLE -FormatAlignmentObjectBottomCalc SID_OBJECT_ALIGN_DOWN -FormatGroupGroupCalc SID_GROUP -FormatGroupUngroupCalc SID_UNGROUP -FormatGroupEditGroupCalc SID_ENTER_GROUP -FormatGroupExitGroupCalc SID_LEAVE_GROUP +FormatAlignmentObjectLeftCalc .uno:ObjectAlignLeft +FormatAlignmentObjectCenteredCalc .uno:AlignCenter +FormatAlignmentObjectRightCalc .uno:ObjectAlignRight +FormatAlignmentObjectTopCalc .uno:AlignUp +FormatAlignmentObjectCenterCalc .uno:AlignMiddle +FormatAlignmentObjectBottomCalc .uno:AlignDown +FormatGroupGroupCalc .uno:FormatGroup +FormatGroupUngroupCalc .uno:FormatUngroup +FormatGroupEditGroupCalc .uno:EnterGroup +FormatGroupExitGroupCalc .uno:LeaveGroup FormatPointsCalc .uno:ToggleObjectBezierMode ' **** Draw / Impress -Format3D_Effects SID_3D_WIN +Format3D_Effects .uno:Window3D FormatBullet .uno:OutlineBullet -FormatEditGroupDraw SID_ENTER_GROUP -FormatExitGroupDraw SID_LEAVE_GROUP +FormatEditGroupDraw .uno:EnterGroup +FormatExitGroupDraw .uno:LeaveGroup FormatDefaultFormatting .uno:SetDefault -FormatDimensioning SID_MEASURE_DLG -FormatConnector SID_CONNECTION_DLG +FormatDimensioning .uno:MeasureAttributes +FormatConnector .uno:ConnectorAttributes FormatModifyPage .uno:ModifyPage -FormatNumberingBulletsDraw SID_OUTLINE_BULLET -FormatPage SID_MODIFYPAGE -FormatLayer SID_MODIFYLAYER -FormatModifyLayout SID_PRESENTATION_LAYOUT -FormatGroupDraw SID_GROUP -FormatUngroupDraw SID_UNGROUP -FormatSlideDraw SID_PAGESETUP -FormatStandardDraw SID_SET_DEFAULT +FormatNumberingBulletsDraw .uno:OutlineBullet +FormatPage .uno:ModifyPage +FormatLayer .uno:ModifyLayer +FormatModifyLayout .uno:PresentationLayout +FormatGroupDraw .uno:FormatGroup +FormatUngroupDraw .uno:FormatUngroup +FormatSlideDraw .uno:PageSetup +FormatStandardDraw .uno:SetDefault FormatSlideDesign .uno:PresentationLayout FormatStylesFormatting .uno:DesignerDialog FormatTransform .uno:TransformDialog FormatTransliterate .uno:TransliterateMenu FormatText .uno:TextAttributes -FormatTextDraw SID_TEXTATTR_DLG +FormatTextDraw .uno:TextAttributes FormatCropPicture .uno:GrafAttrCrop ' **** Chart -'FormatStandardChart SID_SET_DEFAULT +'FormatStandardChart .uno:SetDefault FormatObjectProperties .uno:DiagramObjects FormatPositionAndSizeChart .uno:TransformDialog FormatArrangement .uno:ArrangeRow @@ -650,32 +650,32 @@ FormatDataRanges .uno:DataRanges Format3DView .uno:View3D FormatSelection .uno:FormatSelection ' **** Math -FormatFonts SID_FONT -FormatFontSize SID_FONTSIZE -FormatSpacing SID_DISTANCE -FormatAlignment SID_ALIGN -FormatTextMode SID_TEXTMODE +FormatFonts .uno:ChangeFont +FormatFontSize .uno:ChangeFontSize +FormatSpacing .uno:ChangeDistance +FormatAlignment .uno:ChangeAlignment +FormatTextMode .uno:Textmode ' *********** Table Menu / Writer ****************************** TableInsertTable .uno:InsertTable TableInsertRowDialog .uno:InsertRowDialog TableInsertColumnDialog .uno:InsertColumnDialog -TableCellSplit FN_TABLE_SPLIT_CELLS -TableCellTop FN_TABLE_VERT_NONE -TableCellCenter FN_TABLE_VERT_CENTER -TableCellBottom FN_TABLE_VERT_BOTTOM -TableCellProtect FN_TABLE_SET_READ_ONLY_CELLS -TableCellUnprotect FN_TABLE_UNSET_READ_ONLY_CELLS +TableCellSplit .uno:SplitCell +TableCellTop .uno:CellVertTop +TableCellCenter .uno:CellVertCenter +TableCellBottom .uno:CellVertBottom +TableCellProtect .uno:Protect +TableCellUnprotect .uno:UnsetCellsReadOnly TableDeleteTable .uno:DeleteTable TableDeleteRows .uno:DeleteRows -TableDeleteColumn FN_TABLE_DELETE_COL +TableDeleteColumn .uno:DeleteColumns TableDeleteColumns .uno:DeleteColumns -TableSelectColumn FN_TABLE_SELECT_COL +TableSelectColumn .uno:EntireColumn TableSelectTable .uno:SelectTable TableSelectEntireRow .uno:EntireRow TableSelectEntireColumn .uno:EntireColumn TableSelectEntireCell .uno:EntireCell -TableMergeCell FN_TABLE_MERGE_CELLS +TableMergeCell .uno:MergeCells TableMergeTable .uno:MergeTable TableMergeCells .uno:MergeCells TableSplitCell .uno:SplitCell @@ -702,13 +702,13 @@ TableProperties .uno:TableDialog ' **** ' **** All applications ToolsSpellcheck .uno:SpellDialog -ToolsSpellcheckAutoSpellcheck SID_AUTOSPELL_CHECK +ToolsSpellcheckAutoSpellcheck .uno:SpellOnline ToolsLanguageHangulHanjaConversion .uno:HangulHanjaConversion ToolsLanguageChineseTranslation .uno:ChineseConversion ToolsLanguageThesaurus .uno:ThesaurusDialog -ToolsLanguageHyphenate FN_HYPHENATE_OPT_DLG -ToolsAutocorrect SID_AUTO_CORRECT_DLG -ToolsXMLFilterSettings SID_OPEN_XML_FILTERSETTINGS +ToolsLanguageHyphenate .uno:Hyphenate +ToolsAutocorrect .uno:AutoCorrectDlg +ToolsXMLFilterSettings .uno:OpenXMLFilterSettings ToolsMacro .uno:MacroDialog ToolsMacroMacro .uno:MacroDialog ToolsMacrosRunMacro .uno:RunMacro @@ -717,186 +717,186 @@ ToolsMacrosOrganizeMacrosJavaScript .uno:ScriptOrganizer?ScriptOrganizer.Languag ToolsMacrosOrganizeMacrosPython .uno:ScriptOrganizer?ScriptOrganizer.Language:string=Python ToolsMacrosOrganizeDialogs .uno:MacroOrganizer?TabId:short=1 ToolsMacrosSignature .uno:MacroSignature -ToolsMacroRecordMacro SID_RECORDMACRO -ToolsCustomize SID_CONFIG -ToolsOptions SID_OPTIONS_TREEDIALOG +ToolsMacroRecordMacro .uno:MacroRecorder +ToolsCustomize .uno:ConfigureDialog +ToolsOptions .uno:OptionsTreeDialog ToolsPackagemanager service:com.sun.star.deployment.ui.PackageManagerDialog ToolsMailMergeWizard .uno:MailMergeWizard ' **** Writer ToolsSpellcheckWriter .uno:SpellingAndGrammarDialog -ToolsOutlineNumbering FN_NUMBERING_OUTLINE_DLG -ToolsLineNumbering FN_LINE_NUMBERING_DLG -ToolsPageNumber FN_CHANGE_PAGENUM -ToolsFootnote FN_FORMAT_FOOTNOTE_DLG -ToolsTextInTable FN_CONVERT_TEXT_TABLE -ToolsSort FN_SORTING_DLG -ToolsCalculate FN_CALCULATE -ToolsUpdateUpdateAll FN_UPDATE_ALL -ToolsUpdateFields FN_UPDATE_FIELDS -ToolsUpdateLinks FN_UPDATE_ALL_LINKS -ToolsUpdateCurrentIndex FN_UPDATE_CUR_TOX -ToolsUpdateAllIndexes FN_UPDATE_TOX -ToolsBibliographyDatabase SID_COMP_BIBLIOGRAPHY -ToolsWordCount FN_WORDCOUNT_DIALOG +ToolsOutlineNumbering .uno:ChapterNumberingDialog +ToolsLineNumbering .uno:LineNumberingDialog +ToolsPageNumber .uno:PageOffset +ToolsFootnote .uno:FootnoteDialog +ToolsTextInTable .uno:ConvertTableText +ToolsSort .uno:SortDialog +ToolsCalculate .uno:CalculateSel +ToolsUpdateUpdateAll .uno:UpdateAll +ToolsUpdateFields .uno:UpdateFields +ToolsUpdateLinks .uno:UpdateAllLinks +ToolsUpdateCurrentIndex .uno:UpdateCurIndex +ToolsUpdateAllIndexes .uno:UpdateAllIndexes +ToolsBibliographyDatabase .uno:BibliographyComponent +ToolsWordCount .uno:WordCountDialog TableTableProperties .uno:TableDialog -ToolsLanguageHyphenation FN_HYPHENATE_OPT_DLG +ToolsLanguageHyphenation .uno:Hyphenate ' **** WriterWeb -ToolsPageFormatting FN_REPAGINATE +ToolsPageFormatting .uno:Repaginate ' **** Calc -ToolsSpellcheckAutoCheckCalc SID_AUTOSPELL_CHECK +ToolsSpellcheckAutoCheckCalc .uno:SpellOnline ToolsLanguageHyphenateCalc .uno:Hyphenate -ToolsDetectiveRemoveAllTraces SID_DETECTIVE_DEL_ALL -ToolsDetectiveFillMode SID_DETECTIVE_FILLMODE -ToolsDetectiveTraceError SID_DETECTIVE_ADD_ERR -ToolsDetectiveTraceDependents SID_DETECTIVE_ADD_SUCC -ToolsDetectiveRemoveDependents SID_DETECTIVE_DEL_SUCC -ToolsDetectiveTracePrecedents SID_DETECTIVE_ADD_PRED -ToolsDetectiveRemovePrecedents SID_DETECTIVE_DEL_PRED -ToolsDetectiveMarkInvalidData SID_DETECTIVE_INVALID SID_FILL_SELECT +ToolsDetectiveRemoveAllTraces .uno:ClearArrows +ToolsDetectiveFillMode .uno:AuditingFillMode +ToolsDetectiveTraceError .uno:ShowErrors +ToolsDetectiveTraceDependents .uno:ShowDependents +ToolsDetectiveRemoveDependents .uno:ClearArrowDependents +ToolsDetectiveTracePrecedents .uno:ShowPrecedents +ToolsDetectiveRemovePrecedents .uno:ClearArrowPrecedents +ToolsDetectiveMarkInvalidData .uno:ShowInvalid .uno:FillModeSelect ToolsDetectiveRefreshTraces .uno:RefreshArrows -ToolsDetectiveAutoUpdate SID_DETECTIVE_AUTO +ToolsDetectiveAutoUpdate .uno:AutoRefreshArrows ToolsSolver .uno:SolverDialog -ToolsGoalSeek SID_OPENDLG_SOLVE -ToolsScenarios SID_SCENARIOS -ToolsProtectDocumentDocument FID_PROTECT_DOC -ToolsProtectDocumentSheet FID_PROTECT_TABLE -ToolsCellContentsRecalculate FID_RECALC -ToolsCellContentsAutoCalculate FID_AUTO_CALC -ToolsCellContentsAutoInput FID_AUTOCOMPLETE +ToolsGoalSeek .uno:GoalSeekDialog +ToolsScenarios .uno:ScenarioManager +ToolsProtectDocumentDocument .uno:ToolProtectionDocument +ToolsProtectDocumentSheet .uno:Protect +ToolsCellContentsRecalculate .uno:Calculate +ToolsCellContentsAutoCalculate .uno:AutomaticCalculation +ToolsCellContentsAutoInput .uno:AutoComplete ' **** Draw / Impress ToolsGallery .uno:Gallery -ToolsEyedropper SID_BMPMASK +ToolsEyedropper .uno:BmpMask ToolsMediaPlayer .uno:AVMediaPlayer ToolsChineseTranslation .uno:ChineseConversion -ToolsLanguageHyphenationDraw SID_HYPHENATION +ToolsLanguageHyphenationDraw .uno:Hyphenation ' **** Math -ToolsSymbolsCatalog SID_SYMBOLS_CATALOGUE -ToolsImportFormula SID_IMPORT_FORMULA +ToolsSymbolsCatalog .uno:SymbolCatalogue +ToolsImportFormula .uno:ImportFormula ' ****************************************** ' *********** Slide Show Menu ************ ' **** -SlideShowSlideshow SID_PRESENTATION -SlideShowPresentationSettings SID_PRESENTATION_DLG -SlideShowRehearseTimings SID_REHEARSE_TIMINGS +SlideShowSlideshow .uno:Presentation +SlideShowPresentationSettings .uno:PresentationDialog +SlideShowRehearseTimings .uno:RehearseTimings SlideShowInteraction .uno:AnimationEffects SlideShowAnimation .uno:CustomAnimation SlideShowSlideTransition .uno:SlideChangeWindow -SlideShowHideSlide SID_HIDE_SLIDE -SlideShowShowSlide SID_SHOW_SLIDE -SlideShowCustomSlideshow SID_CUSTOMSHOW_DLG +SlideShowHideSlide .uno:HideSlide +SlideShowShowSlide .uno:ShowSlide +SlideShowCustomSlideshow .uno:CustomShowDialog SlideShowCustomAnimation .uno:CustomAnimation ' *********************************** ' *********** Datamenu ************ ' **** ' **** Calc -DataSelectRange SID_SELECT_DB -DataDefineRange SID_DEFINE_DBNAME -DataSort SID_SORT -DataFilterAutoFilter SID_AUTO_FILTER -DataFilterHideAutoFilter SID_AUTOFILTER_HIDE -DataFilterRemoveFilter SID_UNFILTER -DataFilterAdvancedFilter SID_SPECIAL_FILTER -DataFilterStandardFilter SID_FILTER -DataSubtotals SID_SUBTOTALS -DataValidity FID_VALIDATION +DataSelectRange .uno:SelectDB +DataDefineRange .uno:DefineDBName +DataSort .uno:DataSort +DataFilterAutoFilter .uno:DataFilterAutoFilter +DataFilterHideAutoFilter .uno:DataFilterHideAutoFilter +DataFilterRemoveFilter .uno:DataFilterRemoveFilter +DataFilterAdvancedFilter .uno:DataFilterSpecialFilter +DataFilterStandardFilter .uno:DataFilterStandardFilter +DataSubtotals .uno:DataSubTotals +DataValidity .uno:Validation DataTextToColumns .uno:TextToColumns -DataDataPilotStart SID_OPENDLG_PIVOTTABLE -DataMultipleOperations SID_OPENDLG_TABOP -DataConsolidate SID_OPENDLG_CONSOLIDATE -DataOutlineAutoOutline SID_AUTO_OUTLINE -DataOutlineHideDetails SID_OUTLINE_HIDE -DataOutlineShowDetails SID_OUTLINE_SHOW -DataOutlineRemove SID_OUTLINE_DELETEALL -DataOutlineGroup SID_OUTLINE_MAKE -DataOutlineUngroup SID_OUTLINE_REMOVE -DataDataPilotRefresh SID_PIVOT_RECALC -DataDataPilotDelete SID_PIVOT_KILL -DataRefreshRange SID_REFRESH_DBAREA +DataDataPilotStart .uno:DataDataPilotRun +DataMultipleOperations .uno:TableOperationDialog +DataConsolidate .uno:DataConsolidate +DataOutlineAutoOutline .uno:AutoOutline +DataOutlineHideDetails .uno:HideDetail +DataOutlineShowDetails .uno:ShowDetail +DataOutlineRemove .uno:ClearOutline +DataOutlineGroup .uno:Group +DataOutlineUngroup .uno:Ungroup +DataDataPilotRefresh .uno:RecalcPivotTable +DataDataPilotDelete .uno:DeletePivotTable +DataRefreshRange .uno:DataAreaRefresh ' *********************************** ' ********** Modify Menu *********** ' **** ' **** Draw -ModifyRotate SID_OBJECT_ROTATE -ContextPositionAndSize SID_ATTR_TRANSFORM -ContextFlipVerticalDraw SID_VERTICAL -ContextFlipHorizontalDraw SID_HORIZONTAL -ContextConvertIntoCurve SID_CHANGEBEZIER -ContextConvertIntoPolygon SID_CHANGEPOLYGON -ContextConvertIntoContour SID_CONVERT_TO_CONTOUR -ContextConvertInto3D SID_CONVERT_TO_3D -ContextConvertInto3DRotationObject SID_CONVERT_TO_3D_LATHE_FAST -ContextConvertIntoMetafile SID_CONVERT_TO_METAFILE -ContextConvertIntoBitmap SID_CONVERT_TO_BITMAP -ContextArrangeBringToFront SID_FRAME_TO_TOP -ContextArrangeBringForward SID_MOREFRONT -ContextArrangeBringBackward SID_MOREBACK -ContextArrangeSendToBack SID_FRAME_TO_BOTTOM -ContextArrangeInFrontOfObject SID_BEFORE_OBJ -ContextArrangeBehindObject SID_BEHIND_OBJ -ContextArrangeReverse SID_REVERSE_ORDER -ContextDistribution SID_DISTRIBUTE_DLG -ContextAlignmentLeft SID_OBJECT_ALIGN_LEFT -ContextAlignmentCentered SID_OBJECT_ALIGN_CENTER -ContextAlignmentRight SID_OBJECT_ALIGN_RIGHT -ContextAlignmentTop SID_OBJECT_ALIGN_UP -ContextAlignmentCenter SID_OBJECT_ALIGN_MIDDLE -ContextAlignmentBottom SID_OBJECT_ALIGN_DOWN +ModifyRotate .uno:ToggleObjectRotateMode +ContextPositionAndSize .uno:TransformDialog +ContextFlipVerticalDraw .uno:MirrorVert +ContextFlipHorizontalDraw .uno:MirrorHorz +ContextConvertIntoCurve .uno:ChangeBezier +ContextConvertIntoPolygon .uno:ChangePolygon +ContextConvertIntoContour .uno:convert_to_contour +ContextConvertInto3D .uno:ConvertInto3D +ContextConvertInto3DRotationObject .uno:ConvertInto3DLatheFast +ContextConvertIntoMetafile .uno:ConvertIntoMetaFile +ContextConvertIntoBitmap .uno:ConvertIntoBitmap +ContextArrangeBringToFront .uno:BringToFront +ContextArrangeBringForward .uno:Forward +ContextArrangeBringBackward .uno:Backward +ContextArrangeSendToBack .uno:SendToBack +ContextArrangeInFrontOfObject .uno:BeforeObject +ContextArrangeBehindObject .uno:BehindObject +ContextArrangeReverse .uno:ReverseOrder +ContextDistribution .uno:DistributeSelection +ContextAlignmentLeft .uno:ObjectAlignLeft +ContextAlignmentCentered .uno:AlignCenter +ContextAlignmentRight .uno:ObjectAlignRight +ContextAlignmentTop .uno:AlignUp +ContextAlignmentCenter .uno:AlignMiddle +ContextAlignmentBottom .uno:AlignDown ContextDescriptionObject .uno:ObjectTitleDescription -ContextNameObject SID_NAME_GROUP -ContextFontwork SID_FONTWORK -ContextEyedropper SID_BMPMASK -ContextGroup SID_GROUP -ContextUngroup SID_UNGROUP -ContextEnterGroup SID_ENTER_GROUP -ContextExitGroup SID_LEAVE_GROUP -ContextCombine SID_COMBINE -ContextSplit SID_DISMANTLE -ContextConnect SID_CONNECT -ContextBreak SID_BREAK -ModifyShapesMerge SID_POLY_MERGE -ModifyShapesSubstract SID_POLY_SUBSTRACT -ModifyShapesIntersect SID_POLY_INTERSECT -ContextOpenHyperlink SID_OPEN_HYPERLINK +ContextNameObject .uno:NameGroup +ContextFontwork .uno:FontWork +ContextEyedropper .uno:BmpMask +ContextGroup .uno:FormatGroup +ContextUngroup .uno:FormatUngroup +ContextEnterGroup .uno:EnterGroup +ContextExitGroup .uno:LeaveGroup +ContextCombine .uno:Combine +ContextSplit .uno:Dismantle +ContextConnect .uno:Connect +ContextBreak .uno:Break +ModifyShapesMerge .uno:Merge +ModifyShapesSubstract .uno:Substract +ModifyShapesIntersect .uno:Intersect +ContextOpenHyperlink .uno:OpenHyperlinkOnCursor ' *********************************** ' ********** Windows *********** ' **** ' **** All applications -WindowNewWindow SID_NEWWINDOW +WindowNewWindow .uno:NewWindow WindowCloseWindow .uno:CloseWin ' **** Calc -WindowSplit SID_WINDOW_SPLIT -WindowFreeze SID_WINDOW_FIX +WindowSplit .uno:SplitWindow +WindowFreeze .uno:FreezePanes ' *********************************** ' *********** Help Menu ************ ' **** ' **** All applications -HelpContents SID_HELPINDEX +HelpContents .uno:HelpIndex HelpWhatsThis .uno:ExtendedHelp -HelpHelpAgent SID_HELP_PI -HelpTips SID_HELPTIPS -HelpExtendedTips SID_HELPBALLOONS -HelpEntendedHelp SID_HELPBALLOONS +HelpHelpAgent .uno:HelperDialog +HelpTips .uno:HelpTip +HelpExtendedTips .uno:ActiveHelp +HelpEntendedHelp .uno:ActiveHelp HelpCheckForUpdates sym:vnd.sun.star.job:alias=UpdateCheck -HelpAboutStarOffice SID_ABOUT +HelpAboutStarOffice .uno:About HelpPurchaseStarOffice service:com.sun.star.tab.tabreg?purchase ' **************************************** ' *** Special Slots for Spreadsheet component *** ' **** ' **** Spreadsheet component -SpreadsheetEuroConverter SID_EURO_CONVERTER -ContextNameObjectCalc SID_RENAME_OBJECT +SpreadsheetEuroConverter .uno:EuroConverter +ContextNameObjectCalc .uno:RenameObject ' **************************************** ' *** UNO Slots for Database component *** @@ -959,7 +959,7 @@ MigrateMacros .uno:DBMigrateScripts ' ******************************** ' *** UNO Slots for Basic IDE *** ' **** -ContextProperties SID_SHOW_PROPERTYBROWSER +ContextProperties .uno:ShowPropBrowser ' Crash the office, allows to provide an automated test for the crash reporter Crash .uno:Crash diff --git a/testautomation/global/sid/others.sid b/testautomation/global/sid/others.sid index 77bc4dc15283..99f9cb479ce2 100644..100755 --- a/testautomation/global/sid/others.sid +++ b/testautomation/global/sid/others.sid @@ -4,37 +4,36 @@ ' *************************************************** ' ** to create a new document -NeuDirekt SID_NEWDOCDIRECT -NewDirect SID_NEWDOCDIRECT +NeuDirekt .uno:AddDirect +NewDirect .uno:AddDirect ' ** slots for file import -FileName SID_FILE_NAME -FilterName SID_FILTER_NAME +FileName .uno:FileName ' ** slots for file printing -PrinterName SID_PRINTER_NAME +PrinterName .uno:Printer ' ** to jump to a new table in calc -GeheZuTabelle SID_CURRENTTAB -GeheZuZelle SID_CURRENTCELL -GeheZuDokument SID_CURRENTDOC -GeheZuObjekt SID_CURRENTOBJECT -GoToTable SID_CURRENTTAB -GoToCell SID_CURRENTCELL -GoToDocument SID_CURRENTDOC -GoToObject SID_CURRENTOBJECT +GeheZuTabelle .uno:JumpToTable +GeheZuZelle .uno:GoToCell +GeheZuDokument .uno:GotoDocument +GeheZuObjekt .uno:GoToObject +GoToTable .uno:JumpToTable +GoToCell .uno:GoToCell +GoToDocument .uno:GotoDocument +GoToObject .uno:GoToObject ' ** activate OLE-Object -CalcOLEAktivieren SID_OLE_ACTIVATE -CalcOLEDeaktivieren SID_OLE_DEACTIVATE -CalcActivateOLE SID_OLE_ACTIVATE -CalcDeactivateOLE SID_OLE_DEACTIVATE +CalcOLEAktivieren .uno:ActivateOLE +CalcOLEDeaktivieren .uno:Deactivate +CalcActivateOLE .uno:ActivateOLE +CalcDeactivateOLE .uno:Deactivate ' ** show office version -GetVersion SID_VERSION_VISIBLE +GetVersion .uno:VersionVisible ' ** Load / Save -IsDocImageLoading SID_IMG_LOADING -IsDocLoading SID_DOC_LOADING -IsDocSaving SID_DOC_SAVED +IsDocImageLoading .uno:IsLoadingImages +IsDocLoading .uno:IsLoading +IsDocSaving .uno:Saved diff --git a/testautomation/global/system/includes/gvariabl.inc b/testautomation/global/system/includes/gvariabl.inc index ca3764a1a51b..d9290ebb2c3c 100755..100644 --- a/testautomation/global/system/includes/gvariabl.inc +++ b/testautomation/global/system/includes/gvariabl.inc @@ -171,11 +171,14 @@ Global Const GC_MACRO_SECURITY_LEVEL_DEFAULT = 2 '///+ GC_MACRO_SECURITY_LEVEL '///* OOo Improvement Program Global gOOoImprovementIsEnabled as boolean -'///* Performance flags -Global GLOBAL_USE_NEW_SLEEP as boolean ' keep the old sleep() behavior +'///* Performance flags, set to true to eliminate wait/sleep statements, default is FALSE +Global global_use_new_sleep as boolean -'///* If set to TRUE in master.inc many functions become more talkative -Global GVERBOSE as boolean +'///* If set to TRUE many functions become more talkative, default is FALSE +Global gVerbose as boolean + +'///* When using hFileOpenLocally(...) we do not know the filename under which the file has been saved. +Global gLastWorkFile as string sub OnlyForDocuGVariables '///<b>System for the installed Office</b> diff --git a/testautomation/global/system/includes/master.inc b/testautomation/global/system/includes/master.inc index 880496e3dc42..40a1f504ed64 100755..100644 --- a/testautomation/global/system/includes/master.inc +++ b/testautomation/global/system/includes/master.inc @@ -84,7 +84,10 @@ sub GetUseFiles Call GetIniInformation '///+<li><b>GetIniInformation</b>: Get all information out of the <i>testtool.ini/.testtoolrc</i> and set it on global variables (iniinfo.inc)</li> Call GetOfficeInformation '///+<li><b>GetOfficeInformation</b>: Set <i>sAppExe</i> for startup (iniinfo.inc)</li> - Call prepareHidLst + gVersionsnummer = FindBuildID + ' split versionstring into its parts + call hSetBuildVersionInformation(False) + Call LoadDeclaration '///+<ul><li><b>LoadDeclaration</b>: Load all declaration files (master.inc)</li> Call FirstOfficeStart '///+<li><b>FirstOfficeStart</b>: Try to start the office for first time (master.inc)</li> @@ -133,97 +136,6 @@ sub GetUseFiles end sub '------------------------------------------------------------------------- -function checkWriteable() as boolean - '//// Check hid.lst destination for user writeability - dim sTestDir as string - dim bReturn as boolean - - bReturn = FALSE - try - sTestDir = "tbotest" ' nasty bug, if the path is with a path sign at the end; usually on windows root dirs :-( - if (right(ConvertPath(gtHidLstPath, gtPlatform), 1) <> hGetPathSigne(gtPlatform)) then - sTestDir = hgetPathSigne(gtPlatform) + sTestDir - end if - MkDir (ConvertPath(gtHidLstPath + sTestDir, gtPlatform)) - RmDir (ConvertPath(gtHidLstPath + sTestDir, gtPlatform)) - - bReturn = TRUE - catch - ' fail - bReturn = FALSE - endcatch - checkWriteable = bReturn -end function -'------------------------------------------------------------------------- - -sub prepareHidLst - '/// Determine and set OOo version information - '/// Check if hid.lst is at default location: testautomation/global/hid - '/// If not, check OOo basis path for hid.lst; check if default location from above is writeable for user - '/// Copy hid.lst from OOo basis path to the default location - '/// If something fails, give warnlog - dim sHidOOo as string - dim iShellReturn as integer - dim qHost as string - dim qPath as string - - gVersionsnummer = FindBuildID - ' split versionstring into its parts - call hSetBuildVersionInformation(False) - qHost = "quaste.services.openoffice.org" - qPath = "/index.php?option=com_quaste&task=tests_overview&download=2" + "&workspace=" + gMajor + "&milestone=" + gMinor - ' check for hid.lst in $HID_DIR_LOCATION! - if (fileExists(gtHidLstPath + "hid.lst")) then - printlog "Found hid.lst file; It is taken from: " + gtHidLstPath - else - ' check for hid.lst in OOo installation - sHidOOo = convertPath(gOfficeBasisPath + "program/" + "hid.lst") - if (fileExists(sHidOOo)) then - printlog "Found hid.lst file; It exists in OOo installation: " + sHidOOo - - ' make compatibility hint against version.txt - - ' check for writeable global/hid/ - if (checkWriteable()) then - ' copy hid.lst - fileCopy(sHidOOo, gtHidLstPath + "hid.lst") - printlog "File hid.lst successfull copied to location in VCL TestTool settings: " + gtHidLstPath - else - ' fail: make hint for hid.lst path - warnlog "File hid.lst could not be copied to default location, due to missing access rights" - warnlog "Please open the settings in VCL TestTool and change the path for HID directory to: " + sHidOOo - if MsgBox ("The test won't start! Further informations are in the result file below...", 16, "Error with hid.lst file") = 1 then end - end if - else - ' Disabled, because Joomla! can not provide plain text webpage - 'if (checkWriteable()) then - 'try to get from Quaste via http - 'httpSetProxy(Host, Port) - ' try - ' iShellReturn = httpSend(qHost, qPath, 80, gtHidLstPath + "hid.lst") - ' catch - ' iShellReturn = 99 - ' endcatch - ' when using internal httpSend, iShellReturn contains http status numbers: 200 means: ok - ' if (iShellReturn <> 200) then - ' warnlog "Fetching file hid.lst with internal httpsend command failed with error code: " + iShellReturn + chr(13) + qHost+qPath + chr(13) + gtHidLstPath + "hid.lst" - ' no hid.lst in OOo available and not available via http... - ' warnlog "No hid.lst file in OOo installation or on Quaste server found; Please read documentation at " + ConvertPath (gTestToolPath + "global\hid\readme.txt") + " or ask on mailing list: dev@qa.openoffice.org" - ' kill gtHidLstPath + "hid.lst" - ' else - ' printlog "File hid.lst successfull fetched from "+qHost+qPath+" and saved to location in VCL TestTool settings: " + gtHidLstPath - ' endif - 'else - ' warnlog "File hid.lst could not be saved to default location, due to missing access rights" - ' warnlog "Please download hid.lst file from: "+qHost+qPath+" and open the settings in VCL TestTool and change the path for HID directory to your download location." - warnlog "Please download hid.lst file from: "+ chr(13) +"http://"+qHost+qPath+ chr(13) + "and save it to: "+ chr(13) + gtHidLstPath+"hid.lst" - if MsgBox ("The test won't start! Further informations are in the result file below...", 16, "Error with hid.lst file") = 1 then end - 'end if - end if - end if -end sub -'------------------------------------------------------------------------- - sub LoadDeclaration '/// Include all .sid-declarations (all menu-items as SlotIDs) '///+<German names> (<u><b>DEPRECATED</u>, only fixes allowed!</b>) @@ -680,12 +592,7 @@ sub hFirstOutput Dim sDir as String Dim sDir1 as String Dim sMajor as String - Dim sHidVersion as String - sHidVersion = getBuildNumHidLst - if lCase(trim(sHidVersion)) <> lCase(gMajor + "." + gMinor) then - qaErrorLog "Version of file hid.lst differs from OOo version" - end if if gSamePC = TRUE then if (len(gMajor)>3) then sMajor = left(gMajor,3) @@ -722,7 +629,6 @@ sub hFirstOutput 'http://wiki.services.openoffice.org/wiki/QUASTe printlog "** Status feature (QUASTe) : Enabled " + gLocalStatusDatabase end if - printlog "** HID.LST based on milestone : " + sHidVersion printlog "----------------------------------------------------------------------------------------------------" printlog "** Application installation path : " + gNetzOfficePath printlog "** User configuration path : " + gOfficePath diff --git a/testautomation/global/tools/includes/optional/t_control_objects.inc b/testautomation/global/tools/includes/optional/t_control_objects.inc index b1da7d7e8d95..4ee8b908c93f 100755..100644 --- a/testautomation/global/tools/includes/optional/t_control_objects.inc +++ b/testautomation/global/tools/includes/optional/t_control_objects.inc @@ -115,7 +115,7 @@ function lb_test( oControl as object, items as integer, preset as integer, issue endif endif - for con_iterator = 1 to items + for con_iterator = 1 to con_items oControl.select( con_iterator ) next con_iterator diff --git a/testautomation/global/tools/includes/optional/t_filetools.inc b/testautomation/global/tools/includes/optional/t_filetools.inc index 070427ef3c5b..7189a8e01a43 100755..100644 --- a/testautomation/global/tools/includes/optional/t_filetools.inc +++ b/testautomation/global/tools/includes/optional/t_filetools.inc @@ -260,80 +260,6 @@ end function '******************************************************************************* -function hGetWorkPath() as string - - '///<h3>Retrieve the users work directory</h3> - '///<i>Uses: Call to UNO service</i><br> - '///<i>Errorhandling: Fixes "$(user)"-type path (uses fallback)</i><br> - '///<i>Errorhandling: Handles broken UNO connection (uses fallback)</i><br> - '///<u>Input</u>: - '///<ol> - '///+<li>Nothing</li> - '///</ol> - '///<u>Returns</u>: - '///<ol> - '///+<li>Path to local workdir (string)</li> - '///<ul> - '///+<li>Includes trailing slash/backslash</li> - '///</ul> - '///</ol> - '///<u>Description</u>: - '///<ul> - - dim sPath as string - dim sDefaultPath as string - sDefaultPath = convertpath( gOfficePath & "user/work" ) - dim oOfficeConnect as object - dim oOfficeConfig as object - dim bPathIsFromAPI as boolean - - const CFN = "hGetWorkPath::" - - '///+<li>Create an UNO service and ask it for the location of "Work"</li> - try - oOfficeConnect = hGetUnoService( true ) - oOfficeConfig = oOfficeConnect.createInstance( "com.sun.star.util.PathSettings" ) - sPath = convertFromURL( oOfficeConfig.Work ) - bPathIsFromAPI = true - catch - '///+<li>Handle broken UNO connection</li> - printlog( CFN & "Could not access service, connection broken?" ) - sPath = "" - bPathIsFromAPI = false - endcatch - - '///+<li>If the path differs from the default do a warnlog</li> - if ( sPath <> sDefaultPath ) then - printlog( CFN & "Default path is: " & sDefaultPath ) - printlog( CFN & "Workpath is not defaultpath: " & sPath ) - printlog( CFN & "Overriding UNO path" ) - sPath = convertpath( gOfficePath & "user\work" ) - bPathIsFromAPI = false - endif - - '///+<li>Apply fallback in case of broken connection or invalid path</li> - if ( instr( sPath , "$(user)" ) > 0 ) then - printlog( CFN & "sPath has $(user)-type string, using fallback" ) - sPath = sDefaultPath - bPathIsFromAPI = false - endif - - '///+<li>Add trailing pathseparator, do convertpath</li> - sPath = sPath & "/" - sPath = convertpath( sPath ) - - '///+<li>Print info to the log and return the path</li> - if ( GVERBOSE ) then - if ( bPathIsFromAPI ) then - printlog( CFN & "(From API): " & sPath ) - else - qaerrorlog( CFN & "(Junked API-Path): " & sPath ) - endif - endif - hGetWorkPath() = sPath - '///</ul> - -end function '******************************************************************************* @@ -389,24 +315,5 @@ end function '******************************************************************************* -function hGetWorkFile( cFileName as string ) as string - - '///<h3>Returns a fully qualified filename to a workfile</h3> - '///<u>Input</u>: - '///<ol> - '///+<li>Filename without path (string)</li> - '///</ol> - '///<u>Returns</u>: - '///<ol> - '///+<li>Filename including path to user work directory (string)</li> - '///</ol> - '///<u>Description</u>: - '///<ul> - - '///+<li>Concatenate workpath and filename, convertpath</li> - hGetWorkFile() = convertpath( hGetWorkPath() & cFileName ) - '///</ul> - -end function diff --git a/testautomation/global/tools/includes/optional/t_macro_tools.inc b/testautomation/global/tools/includes/optional/t_macro_tools.inc index 6c1fcc478e5a..733b28fa32f4 100755..100644 --- a/testautomation/global/tools/includes/optional/t_macro_tools.inc +++ b/testautomation/global/tools/includes/optional/t_macro_tools.inc @@ -172,4 +172,44 @@ function hBasicIDERunMacro( cIdentifier as string ) as boolean hBasicIDERunMacro() = false endif +end function + +'******************************************************************************* + +function hExecMacro( cMacro as string ) as boolean + + const CFN = "global::tools::includes::optional::t_macro_tools.inc::hExecMacro(): " + + dim iCurrentModule as integer + dim iCurrentMacro as integer + hEXECMacro() = FALSE + + ToolsMacro_uno + + kontext "Makro" + if ( Makro.exists( 2 ) ) then + ' Iterate through the left treelist + for iCurrentModule = hExpandAllNodes( MakroAus ) to 1 step -1 + MakroAus.select( iCurrentModule ) + ' Iterate through the Macros list (right pane) + for iCurrentMacro = 1 to MakroListe.getItemCount() + MakroListe.select( iCurrentMacro ) + ' Try to find the macro + if ( cMacro = MakroListe.getSelText() ) then + ' Run the macro + if ( Ausfuehren.isEnabled() ) then + Ausfuehren.click() + hExecMacro() = TRUE + exit function + else + warnlog( CFN & "Macro found but <Ausfuehren> is not enabled" ) + exit function + endif + endif + next iCurrentMacro + next iCurrentModule + else + warnlog( CFN & "Macro Organizer is not open within 2 seconds" ) + endif + end function
\ No newline at end of file diff --git a/testautomation/global/tools/includes/required/t_dir.inc b/testautomation/global/tools/includes/required/t_dir.inc index ee673e6b1c47..f5aa59e2d78b 100755..100644 --- a/testautomation/global/tools/includes/required/t_dir.inc +++ b/testautomation/global/tools/includes/required/t_dir.inc @@ -288,4 +288,55 @@ function GetExtention ( Datei as String ) as string next i% GetExtention = Datei end function +' +'------------------------------------------------------------------------------- +' +function hSplitString( sString as string, sSeparator as string, iIndex as integer ) as string + + ' This function wraps around the "split" command and returns one single + ' item by index. Index = 0 means the *LAST* item is returned as this is + ' probably the most commonly used item. If the index is invalid (out of + ' bounds) we print a warning and return an error string. + + const CFN = "global::tools::includes::required::t_dir.inc:hSplitString(): " + const ERROR_MESSAGE = "Array out of bounds for the requested index in string " + const ARRAY_INDEX_CORRECTION = 1 ' The array lower boundary is zero but + ' function starts to count with one. + + ' Split the string into its fragments into an array with dynamic boundaries + dim sArray() as string + dim sReturnString as string : sReturnString = "" + + if ( GVERBOSE ) then + printlog( CFN & "Separator is: " & sSeparator ) + printlog( CFN & "Original string is: " & sString ) + endif + + sArray() = split( sString, sSeparator ) + + if ( GVERBOSE ) then + printlog( CFN & "Number of items found: " & ubound( sArray() ) ) + endif + + ' Special case: Index out of bounds + if ( iIndex > ( ubound( sArray() ) + ARRAY_INDEX_CORRECTION ) or iIndex < 0 ) then + warnlog( CFN & ERROR_MESSAGE & sString ) + hSplitString() = ERROR_MESSAGE & sString + exit function + endif + + ' Special case: Last item requested (this usually is the filename from a path) + if ( iIndex = 0 ) then + sReturnString = sArray( ubound( sArray() ) + if ( GVERBOSE ) then printlog( CFN & sReturnString ) + hSplitString() = sReturnString + exit function + endif + + ' Default is to return the requested item. + sReturnString = sArray( iIndex - ARRAY_INDEX_CORRECTION ) + if ( GVERBOSE ) then printlog( CFN & sReturnString ) + hSplitString() = sReturnString + +end function diff --git a/testautomation/global/tools/includes/required/t_doc1.inc b/testautomation/global/tools/includes/required/t_doc1.inc index ff07554bca35..0ee504c5432e 100755 --- a/testautomation/global/tools/includes/required/t_doc1.inc +++ b/testautomation/global/tools/includes/required/t_doc1.inc @@ -243,20 +243,17 @@ end function ' function hCloseDocument() - '/// Trigger FileClose slot' hUseAsyncSlot( "FileClose") - '/// Accept to lose changes' Kontext "Active" if ( Active.Exists( 2 ) ) then try Active.No catch - Active.Click( 202 ) + Active.click( 202 ) endcatch end if - '/// Wait for FileClose to complete' WaitSlot( 2000 ) end function @@ -357,6 +354,8 @@ end sub ' sub hTypeKeys ( OutputText , optional _iLoop as Integer ) + const CFN = "global::tools::includes::required::t_doc1.inc::hTypeKeys(): " + dim iRepeat as integer dim iLoop as integer dim oDocument as object @@ -371,10 +370,14 @@ sub hTypeKeys ( OutputText , optional _iLoop as Integer ) hSetDocumentContext() ' set kontext to current document type oDocument = hSetDocumentObject() ' Get the document object we want to write to - for iRepeat = 1 to iLoop - oDocument.TypeKeys( OutputText ) - wait( 200 ) - next iRepeat + try + for iRepeat = 1 to iLoop + oDocument.TypeKeys( OutputText ) + wait( 200 ) + next iRepeat + catch + warnlog( CFN & "Failed to send keystroke to given context" ) + endcatch end sub diff --git a/testautomation/global/tools/includes/required/t_doc2.inc b/testautomation/global/tools/includes/required/t_doc2.inc index 4192563b0eba..0e9af93f287c 100755..100644 --- a/testautomation/global/tools/includes/required/t_doc2.inc +++ b/testautomation/global/tools/includes/required/t_doc2.inc @@ -113,135 +113,6 @@ end sub ' '------------------------------------------------------------------------------- ' -function hEnableDocumentEditMode() as boolean - - hEnableDocumentEditMode() = false - - dim iTry as integer - - printlog( "Try to switch document to edit mode" ) - for iTry = 1 to 20 - try - kontext "Standardbar" - if ( Bearbeiten.getState( 2 ) <> 1 ) then - Bearbeiten.click() - - kontext "Active" - if ( Active.exists( 1 ) ) then - printlog( "Handle <Use copy message>" ) - hCloseDialog( Active, "yes" ) - wait( 2000 ) - printlog( "Successfully switched to edit mode" ) - hEnableDocumentEditMode() = true - exit for - endif - endif - catch - wait( 200 ) - endcatch - next iTry - -end function - -'******************************************************************************* - -function sMakeReadOnlyDocumentEditable() as boolean - - sMakeReadOnlyDocumentEditable() = hEnableDocumentEditMode() - exit function - - ' Function returns TRUE if document has been made editable and FALSE if - ' no action was required (that is: Document was not read-only) - - dim iTry as integer - dim iWait as integer - dim rc as integer - const CFN = "sMakeReadOnlyDocumentEditable::" - - if ( GVERBOSE ) then printlog( CFN & "Making document editable (create a copy) if it is readonly" ) - - ' We still run into synchronization problems with the "Make document editable" feature - ' because we do not know when this button becomes available and ready for use: The - ' document has to be loaded, then we have to wait for the toolbar to get populated. - ' One thing appears to work though: Try to execute the slot using hUseAsyncSlot. - ' This is a little bit tricky because the state of the document is altered but if - ' the slot has been executed once we know for sure that the button on the toolbar is - ' available and can check its state and - if need be - chenge the document state back. - - ' ========== Workaround begin ========== - hUseAsyncSlot( "EditDoc" ) - kontext "Active" - if ( Active.exists() ) then - if ( GVERBOSE ) then printlog( "Handling create copy message" ) - Active.yes() - wait( 1000 ) - endif - ' ========== Workaround end ========== - Kontext "Standardbar" - iWait = 0 - Do - if ( Bearbeiten.IsEnabled() ) then - try - if Bearbeiten.getState( 2 ) = 0 then - exit do - endif - catch - if ( GVERBOSE ) then printlog "Attempt " & iWait & " to make document readable failed" - iWait = iWait + 1 - wait ( 1000 ) - endcatch - else - if ( GVERBOSE ) then printlog "Attempt " & iWait & " to make document readable failed" - iWait = iWait + 1 - wait ( 1000 ) - end if - if iWait >= 5 then exit do - Loop - - if ( Bearbeiten.IsEnabled() ) then - - if ( Bearbeiten.getState( 2 ) = 0 ) then - - rc = hUseAsyncSlot("editdoc") - - if ( rc >= 0 ) then - for iTry = 1 to 2 - - - Kontext "Active" - if ( Active.exists( 5 ) ) then - - printlog( CFN & "Messagebox: " & Active.getText() ) - - try - if ( GVERBOSE ) then printlog( CFN & "Document was read-only. A copy will be used." ) - Active.Yes() - if ( GVERBOSE ) then printlog( CFN & "Closed 'use copy' message" ) - catch - if ( GVERBOSE ) then printlog( CFN & "Probing for unexpected messagebox..." ) - active.ok() - qaerrorlog( "#i100701 - Object not found message" ) - endcatch - else - printlog( CFN & "No messagebox informing about a copy being used" ) - endif - sMakeReadOnlyDocumentEditable() = TRUE - next iTry - else - printlog( CFN & "Document appears to be editable" ) - endif - else - if ( GVERBOSE ) then printlog( CFN & "Button <Bearbeiten> is pressed, document is editable" ) - sMakeReadOnlyDocumentEditable() = FALSE - endif - else - if ( GVERBOSE ) then printlog( CFN & "Control <Bearbeiten> is not enabled" ) - endif - -end function -' -'------------------------------------------------------------------------------- -' function fSelectFirstOLE() as integer 'Select first visible OLE object using Navigator 'Returns error-code: diff --git a/testautomation/global/tools/includes/required/t_files.inc b/testautomation/global/tools/includes/required/t_files.inc index 4b0ddd09318b..d734cd3f05a7 100755..100644 --- a/testautomation/global/tools/includes/required/t_files.inc +++ b/testautomation/global/tools/includes/required/t_files.inc @@ -34,7 +34,6 @@ function hGrafikEinfuegen( cFile as string ) as Boolean hGrafikEinfuegen() = hInsertGraphic( cFile, "Static" ) - exit function end function @@ -43,7 +42,6 @@ end function function hGrafikVerknuepftEinfuegen( cFile as string ) as Boolean hGrafikVerknuepftEinfuegen() = hInsertGraphic( cFile, "Linked" ) - exit function end function @@ -103,7 +101,7 @@ end function function hIsNamedDocLoaded( cFileName as string ) as boolean ' Retrieve the current filename from the document properties - which in - ' comparision to the old approach to retrive the name from the file save + ' comparision to the old approach to retrieve the name from the file save ' dialog - gives us the file including its extension. So we only need ' to compare the last characters from a full path to be relatively ' certain that we work with the correct file. There is some small margin of @@ -501,6 +499,167 @@ end function ' '------------------------------------------------------------------------------- ' +function hGetWorkFile( cFileName as string ) as string + hGetWorkFile() = hGetWorkPath() & cFileName +end function +' +'------------------------------------------------------------------------------- +' +function hGetWorkPath() as string + + ' Retrieve the user's work directory using the API (or fallback) + + dim sPath as string : sPath = "" + dim oOfficeConnect as object + dim oOfficeConfig as object + dim bPathIsFromAPI as boolean + + const CFN = "global::tools::includes::required::t_files.inc:hGetWorkPath(): " + + ' Create an UNO service and ask it for the location of Work + try + oOfficeConnect = hGetUnoService( true ) + oOfficeConfig = oOfficeConnect.createInstance( "com.sun.star.util.PathSettings" ) + sPath = convertFromURL( oOfficeConfig.Work ) + bPathIsFromAPI = true + catch + printlog( CFN & "Could not access service, connection broken?" ) + sPath = convertpath( gOfficePath & "user/work" ) + bPathIsFromAPI = false + endcatch + + if ( GVERBOSE ) then + + printlog( CFN & "Path is: " & sPath ) + + ' Check path existence + if ( FileExists( sPath ) ) then + printlog( CFN & "Path exists." ) + else + warnlog( CFN & "Path does not exist." ) + endif + + ' Inform about the location from where the path was taken + if ( bPathIsFromAPI ) then + printlog( CFN & "Path was taken from API" ) + else + warnlog( CFN & "Path was taken from (hardcoded) fallback" ) + endif + + endif + + hGetWorkPath() = sPath & getPathSeparator + +end function +' +'------------------------------------------------------------------------------- +' +function hFileGetLocalPath( sSourcePath as string ) as string + + ' Isolate filename from path, prepend local work directory and return new file path + hFileGetLocalPath() = hGetWorkFile( hSplitString( sSourcePath, getPathSeparator, 0 ) ) + +end function +' +'------------------------------------------------------------------------------- +' +function hFileListCopyLocal( lsSourceList() as string ) as boolean + + ' Copy a list of files from testautomation to the local work directory + + const CFN = "global::tools::includes::required::t_files.inc:hFileListCopyLocal(): " + dim iCurrentPath as integer + dim cTargetPath as string + dim cSourcePath as string + + hFileListCopyLocal() = true + + for iCurrentPath = 1 to listcount( lsSourceList() ) + + cSourcePath = lsSourceList( iCurrentPath ) + cTargetPath = hFileGetLocalPath( cSourcePath ) + + FileCopy( cSourcePath, cTargetPath ) + + ' If any one copy operation fails we + if ( not FileExists( cTargetPath ) ) then + hFileListCopyLocal() = false + warnlog( CFN & "File was not copied: " & cSourcePath ) + endif + + next iCurrentPath + +end function +' +'------------------------------------------------------------------------------- +' +function hFileOpenLocally( byVal sSourcePath as string ) as boolean + + ' Issue #i112208# - implement a function that copies a file from testautomation + ' into the local work directory and opens it from there to avoid that the + ' document gets opened in read-only mode. See details of the implementation + ' in the issue description. + + ' Parameters + ' 1) Path as string, URLs are untested. + ' 2) Separator, usually "getPathSeparator" + ' 3) Item number, 0 = last item which usually is the file name from a path. + ' Begin counting with 1, while the function internally accesses item 0 + ' from the array. + + const CFN = "global::tools::includes::required::t_files.inc:hFileOpenLocally(): " + + dim sTargetPath as string + + sSourcePath = convertpath( sSourcePath ) + + ' If the source file does not exist we quit + if ( not FileExists( sSourcePath ) ) then + warnlog( CFN & "Source path/file does not exist: " & sSourcePath ) + hFileOpenLocally() = false + exit function + endif + + ' Find out what the name of the target file is going to be + sTargetPath = hFileGetLocalPath( sSourcePath ) ' The path + file + + ' For debugging purposes set global variable gVerbose to TRUE + if ( gVerbose ) then + printlog( CFN & "Copying file" ) + printlog( CFN & "From: " & sSourcePath ) + printlog( CFN & "To..: " & sTargetPath ) + endif + + ' Copy the file from anywhere to the local user directory if it does not + ' exist. This behavior was discussed on IRC + if ( FileExists( sTargetPath ) ) then + printlog( CFN & "Re-using existing local copy of workfile" ) + 'warnlog( CFN & "Target file exists, it has not been deleted by prior test" ) + endif + + FileCopy( sSourcePath, sTargetPath ) + + ' Verify that the file has been created. return an empty string and warn + if ( not FileExists( sTargetPath ) ) then + warnlog( CFN & "File was not copied: " & sTargetFile ) + hFileOpenLocally() = false + gLastWorkFile = "" + exit function + endif + + ' This is a hook that allows to access the filename under which the file + ' has been saved. Due to restrictive coding guidelines we cannot return + ' the new filename. + gLastWorkFile = sTargetPath + + ' Finally open the file from the local work directory. It should open + ' ready for editing + hFileOpenLocally() = hFileOpen( gLastWorkFile ) + +end function +' +'------------------------------------------------------------------------------- +' function hFileCloseAll() as integer dim iDocumentCount as integer : iDocumentCount = 0 diff --git a/testautomation/global/tools/includes/required/t_menu.inc b/testautomation/global/tools/includes/required/t_menu.inc index 830012cc7dae..b03062b39471 100755..100644 --- a/testautomation/global/tools/includes/required/t_menu.inc +++ b/testautomation/global/tools/includes/required/t_menu.inc @@ -270,6 +270,12 @@ function hMenuFindSelect(MenuID as variant, SelectSlot as Boolean, ExpectedNr as warnlog "The real Position (Separators included) was: " + i endif i = RealEnd + else + if ( i = ExpectedNr ) then + if nID = "" then + warnlog "#i115132#Missing .uno Slots in context menus" + endif + endif endif next i else diff --git a/testautomation/global/tools/includes/required/t_tools2.inc b/testautomation/global/tools/includes/required/t_tools2.inc index 76422a5e8108..13cf7d4af68e 100755..100644 --- a/testautomation/global/tools/includes/required/t_tools2.inc +++ b/testautomation/global/tools/includes/required/t_tools2.inc @@ -226,32 +226,6 @@ end function '------------------------------------------------------------------------- -function GetBuildNumHidLst as String -'/// Get the "BuildId" out of the <i>hid.lst</i>. - Dim FileNum as Integer - Dim xmlZeile as String - dim iIndex as integer - dim sTemp as string - - if Dir (gtHidLstPath + "hid.lst") <> "" then - FileNum = FreeFile - Open (gtHidLstPath + "hid.lst") For Input As #FileNum - do until EOF(#FileNum) = True - line input #FileNum, xmlZeile - iIndex = inStr (1, xmlZeile, "010101010101010", 1) - sTemp = Left (xmlZeile, abs(iIndex - 1)) - ' usually only the first line is read - if (sTemp <> "") then exit do - loop - Close #FileNum - GetBuildNumHidLst = sTemp - else - GetBuildNumHidLst = "" - end if -end function - -'------------------------------------------------------------------------- - function hGetUNOService(optional bSilent as boolean, optional byRef sUnoPortExternal as string) as object '/// Function enables the UNO communication inside the '///+ TestTool to the office application. diff --git a/testautomation/global/win/bars.win b/testautomation/global/win/bars.win index 964027cbc7b2..9bd0d252cd55 100755..100644 --- a/testautomation/global/win/bars.win +++ b/testautomation/global/win/bars.win @@ -57,16 +57,16 @@ Zentriert .uno:AlignCenter '------------------------------------------------------------------------- *Arrowsbar .HelpId:arrowsbar '------------------------------------------------------------------------- -LinieMitKreisPfeilende SID_LINE_CIRCLE_ARROW -LinieMitPfeilKreisende SID_LINE_ARROW_CIRCLE -LinieMitPfeilQuadratende SID_LINE_ARROW_SQUARE -LinieMitPfeilanfang SID_LINE_ARROW_START -LinieMitPfeilende SID_LINE_ARROW_END -LinieMitPfeilenden SID_LINE_ARROWS -LinieMitQuadratKreisende SID_LINE_SQUARE_ARROW -LinieWinkel SID_DRAW_XLINE -LinieZeichnen SID_DRAW_LINE -Masslinie SID_DRAW_MEASURELINE +LinieMitKreisPfeilende .uno:LineCircleArrow +LinieMitPfeilKreisende .uno:LineArrowCircle +LinieMitPfeilQuadratende .uno:LineArrowSquare +LinieMitPfeilanfang .uno:LineArrowStart +LinieMitPfeilende .uno:LineArrowEnd +LinieMitPfeilenden .uno:LineArrows +LinieMitQuadratKreisende .uno:LineSquareArrow +LinieWinkel .uno:Line_Diagonal +LinieZeichnen .uno:Line +Masslinie .uno:MeasureLine '------------------------------------------------------------------------- *Arrowshapes .HelpId:arrowshapes '------------------------------------------------------------------------- @@ -149,7 +149,7 @@ Line3 .uno:CalloutShapes.line-callout-3 *ChooseModebar .HelpId:choosemodebar '------------------------------------------------------------------------- Drehen .uno:ToggleObjectRotateMode -GluePoints SID_GLUE_EDITMODE +GluePoints .uno:GlueEditMode Rotationskoerper .uno:ConvertInto3DLathe SetzenAufKreisPerspektivisch .uno:CrookRotate SetzenAufKreisSchraeggestellt .uno:CrookSlant @@ -209,21 +209,21 @@ Vpfeile .uno:ConnectorArrows '------------------------------------------------------------------------- *DBQueryBrowsebar .HelpID:browserobjectbar '------------------------------------------------------------------------- -ApplyFilter SID_FM_FORM_FILTERED -Autofilter SID_FM_AUTOFILTER -CloseDoc SID_CLOSEWIN -DataToText SID_SBA_BRW_INSERT -DefaultFilter SID_FM_FILTERCRIT -Edit SID_EDITDOC -Explorer SID_DSBROWSER_EXPLORER -Refresh SID_FM_REFRESH -RemoveFilter SID_FM_REMOVE_FILTER_SORT -SaveNewDataEntry HID_BROWSER_SAVE_RECORD -Search SID_FM_SEARCH -SortAscending SID_FM_SORTUP -SortDescending SID_FM_SORTDOWN -SortOrder SID_FM_ORDERCRIT -Undo HID_BROWSER_UNDO_RECORD +ApplyFilter .uno:FormFiltered +Autofilter .uno:AutoFilter +CloseDoc .uno:CloseWin +DataToText .uno:SbaBrwInsert +DefaultFilter .uno:FilterCrit +Edit .uno:EditDoc +Explorer .uno:DSBrowserExplorer +Refresh .uno:Refresh +RemoveFilter .uno:RemoveFilterSort +SaveNewDataEntry sym:DBACCESS_HID_BROWSER_SAVE_RECORD +Search .uno:RecSearch +SortAscending .uno:Sortup +SortDescending .uno:SortDown +SortOrder .uno:OrderCrit +Undo sym:DBACCESS_HID_BROWSER_UNDO_RECORD '------------------------------------------------------------------------- *Designobjectbar .HelpId:designobjectbar '------------------------------------------------------------------------- @@ -248,7 +248,7 @@ Linie .uno:Line Polygon .uno:Polygon_Unfilled Rechteck .uno:Rect Textobjekt .uno:DrawText -Toolbox SID_DRAW_SELECT +Toolbox .uno:DrawSelect VerticalCallout .uno:VerticalCaption VerticalText .uno:VerticalText LineArrowEnd .uno:LineArrowEnd @@ -291,8 +291,8 @@ Absatzformat .uno:ParagraphDialog '------------------------------------------------------------------------- *DrawingObjectbar .HelpId:drawingobjectbar '------------------------------------------------------------------------- -AreaFilling HID_FILL_ATTR_LISTBOX -AreaStyle HID_FILL_TYPE_LISTBOX +AreaFilling sym:SVX_HID_FILL_ATTR_LISTBOX +AreaStyle sym:SVX_HID_FILL_TYPE_LISTBOX Ausrichtung .uno:ObjectAlign Drehen .uno:ToggleObjectRotateMode Flaeche .uno:FormatArea @@ -308,7 +308,7 @@ Linienbreite .uno:LineWidth Linienendenstil .uno:LineEndStyle Linienfarbe .uno:XLineColor Linienstil .uno:XLineStyle -PunkteBearbeiten SID_BEZIER_EDIT +PunkteBearbeiten .uno:ToggleObjectBezierMode Schatten .uno:FillShadow DesignerDialog .uno:DesignerDialog VerankerungWechseln .uno:ToggleAnchorType @@ -327,21 +327,21 @@ Group .uno:FormatGroup '------------------------------------------------------------------------- *Ellipsesbar .HelpId:ellipsesbar '------------------------------------------------------------------------- -EllipseLeer SID_DRAW_ELLIPSE_NOFILL -EllipseVoll SID_DRAW_ELLIPSE -Ellipsen SID_DRAWTBX_ELLIPSES -EllipsenabschnittLeer SID_DRAW_ELLIPSECUT_NOFILL -EllipsenabschnittVoll SID_DRAW_ELLIPSECUT -Ellipsenbogen SID_DRAW_ARC -EllipsensegmentLeer SID_DRAW_PIE_NOFILL -EllipsensegmentVoll SID_DRAW_PIE -KreisLeer SID_DRAW_CIRCLE_NOFILL -KreisVoll SID_DRAW_CIRCLE -KreisabschnittLeer SID_DRAW_CIRCLECUT_NOFILL -KreisabschnittVoll SID_DRAW_CIRCLECUT -Kreisbogen SID_DRAW_CIRCLEARC -KreissegmentLeer SID_DRAW_CIRCLEPIE_NOFILL -KreissegmentVoll SID_DRAW_CIRCLEPIE +EllipseLeer .uno:Ellipse_Unfilled +EllipseVoll .uno:Ellipse +Ellipsen .uno:EllipseToolbox +EllipsenabschnittLeer .uno:EllipseCut_Unfilled +EllipsenabschnittVoll .uno:EllipseCut +Ellipsenbogen .uno:Arc +EllipsensegmentLeer .uno:Pie_Unfilled +EllipsensegmentVoll .uno:Pie +KreisLeer .uno:Circle_Unfilled +KreisVoll .uno:Circle +KreisabschnittLeer .uno:CircleCut_Unfilled +KreisabschnittVoll .uno:CircleCut +Kreisbogen .uno:CircleArc +KreissegmentLeer .uno:CirclePie_Unfilled +KreissegmentVoll .uno:CirclePie '------------------------------------------------------------------------- *ExtrusionObjectBar .HelpId:extrusionobjectbar '------------------------------------------------------------------------- @@ -590,22 +590,22 @@ ObjectAlign .uno:ObjectAlign *FrameObjectbar .HelpId:frameobjectbar '------------------------------------------------------------------------- Durchlauf .uno:WrapThrough -EigenschaftenControls SID_SHOW_BROWSER +EigenschaftenControls .uno:ShowBrowser EigenschaftenObjekt .uno:FrameDialog GanzNachHinten .uno:SendToBack GanzNachVorn .uno:BringToFront Hintergrundfarbe .uno:BackgroundColor -Hintergrundmuster SID_BACKGROUND_PATTERN -HorizontalSpiegeln FN_FLIP_HORZ_GRAFIC -InDenHintergrund SID_OBJECT_HELL -InDenVordergrund SID_OBJECT_HEAVEN +Hintergrundmuster .uno:BackgroundPatternController +HorizontalSpiegeln .uno:FlipHorizontal +InDenHintergrund .uno:SetObjectToBackground +InDenVordergrund .uno:SetObjectToForeground LinienFarbe .uno:FrameLineColor Linienstil .uno:LineStyle Links .uno:AlignLeft Mitte .uno:AlignVerticalCenter NoWrap .uno:WrapOff Oben .uno:AlignTop -PositionUndGroesse SID_ATTR_TRANSFORM +PositionUndGroesse .uno:TransformDialog Rechts .uno:AlignRight UmlaufDynamisch .uno:WrapIdeal UmlaufLinks .uno:WrapLeft @@ -615,7 +615,7 @@ Unten .uno:AlignBottom Verankerungwechseln .uno:ToggleAnchorType Verketten .uno:ChainFrames VerkettungLoesen .uno:UnhainFrames -VertikalSpiegeln FN_FLIP_VERT_GRAFIC +VertikalSpiegeln .uno:FlipVertical Vorlage .uno:StyleApply Wrap .uno:WrapOn Zentriert .uno:AlignHorizontalCenter @@ -656,56 +656,56 @@ FrameDialog .uno:FrameDialog BringToFront .uno:BringToFront SendToBack .uno:SendToBack ToggleAnchorType .uno:ToggleAnchorType -AreaFilling HID_FILL_ATTR_LISTBOX -AreaStyle HID_FILL_TYPE_LISTBOX -Ausrichtung SID_OBJECT_ALIGN +AreaFilling sym:SVX_HID_FILL_ATTR_LISTBOX +AreaStyle sym:SVX_HID_FILL_TYPE_LISTBOX +Ausrichtung .uno:ObjectAlign Blauanteil .uno:GrafBlue ColorSettings .uno:ColorSettings Crop .uno:Crop -Drehen SID_OBJECT_ROTATE -Durchlauf FN_FRAME_WRAPTHRU -EigenschaftenControls SID_SHOW_BROWSER -EigenschaftenObjekt FN_FORMAT_FRAME_DLG +Drehen .uno:ToggleObjectRotateMode +Durchlauf .uno:WrapThrough +EigenschaftenControls .uno:ShowBrowser +EigenschaftenObjekt .uno:FrameDialog Filter .uno:GraphicFilterToolbox Flaeche .uno:FormatArea -Flaechenfarbe SID_ATTR_FILL_STYLE -Flaechenstil SID_ATTR_FILL_STYLE +Flaechenfarbe .uno:FillStyle +Flaechenstil .uno:FillStyle Gamma .uno:GrafGamma -GanzNachHinten SID_FRAME_TO_BOTTOM -GanzNachVorn SID_FRAME_TO_TOP -GrafikEigenschaften FN_FORMAT_GRAFIC_DLG +GanzNachHinten .uno:SendToBack +GanzNachVorn .uno:BringToFront +GrafikEigenschaften .uno:GraphicDialog Grafikmodus .uno:GrafMode Gruenanteil .uno:GrafGreen Helligkeit .uno:GrafLuminance -Hintergrundfarbe SID_BACKGROUND_COLOR -Hintergrundmuster SID_BACKGROUND_PATTERN +Hintergrundfarbe .uno:BackgroundColor +Hintergrundmuster .uno:BackgroundPatternController HorizontalSpiegeln .uno:FlipHorizontal -ImageMapEditor SID_IMAP -InDenHintergrund SID_OBJECT_HELL -InDenVordergrund SID_OBJECT_HEAVEN -KeinUmlauf FN_FRAME_NOWRAP +ImageMapEditor .uno:ImageMapDialog +InDenHintergrund .uno:SetObjectToBackground +InDenVordergrund .uno:SetObjectToForeground +KeinUmlauf .uno:WrapOff Kontrast .uno:GrafContrast Linie .uno:FormatLine -Linienbreite SID_ATTR_LINE_WIDTH -Linienendenstil SID_ATTR_LINEEND_STYLE -Linienfarbe SID_ATTR_LINE_COLOR -Linienstil SID_ATTR_LINE_STYLE -Links FN_FRAME_ALIGN_HORZ_LEFT -Mitte FN_FRAME_ALIGN_VERT_CENTER -Oben FN_FRAME_ALIGN_VERT_TOP -PositionUndGroesse SID_ATTR_TRANSFORM -PunkteBearbeiten SID_BEZIER_EDIT -Rechts FN_FRAME_ALIGN_HORZ_RIGHT +Linienbreite .uno:LineWidth +Linienendenstil .uno:LineEndStyle +Linienfarbe .uno:XLineColor +Linienstil .uno:XLineStyle +Links .uno:AlignLeft +Mitte .uno:AlignVerticalCenter +Oben .uno:AlignTop +PositionUndGroesse .uno:TransformDialog +PunkteBearbeiten .uno:ToggleObjectBezierMode +Rechts .uno:AlignRight Rotanteil .uno:GrafRed Schatten .uno:FillShadow Transparenz .uno:GrafTransparence -Umlauf FN_FRAME_WRAP -UmlaufLinks FN_FRAME_WRAP_LEFT -UmlaufRechts FN_FRAME_WRAP_RIGHT -Umrandung SID_ATTR_BORDER -Unten FN_FRAME_ALIGN_VERT_BOTTOM +Umlauf .uno:WrapOn +UmlaufLinks .uno:WrapLeft +UmlaufRechts .uno:WrapRight +Umrandung .uno:SetBorderStyle +Unten .uno:AlignBottom VertikalSpiegeln .uno:FlipVertical -Zentriert FN_FRAME_ALIGN_HORZ_CENTER +Zentriert .uno:AlignHorizontalCenter InsertGraphic .uno:InsertGraphic '------------------------------------------------------------------------- *GraphicFilterBar .HelpId:graffilterbar @@ -722,14 +722,14 @@ CharcoalSketch .uno:GraphicFilterSobel Relief .uno:GraphicFilterRelief Mosaic .uno:GraphicFilterMosaic '------------------------------------------------------------------------- -*Hyperlinkleiste HID_OFA_HYPERLINK_DLG +*Hyperlinkleiste sym:SVX_HID_OFA_HYPERLINK_DLG '------------------------------------------------------------------------- -Frame HID_OFA_HYPERLINK_TARGET -Link SID_HYPERLINK_SETLINK -Suchen HID_OFA_HYPERLINK_SEARCH -UrlAdresse HID_OFA_HYPERLINK_URL -UrlName HID_OFA_HYPERLINK_NAME -Verknuepfung SID_CREATELINK +Frame sym:SVX_HID_OFA_HYPERLINK_TARGET +Link .uno:SetHyperlink +Suchen sym:SVX_HID_OFA_HYPERLINK_SEARCH +UrlAdresse sym:SVX_HID_OFA_HYPERLINK_URL +UrlName sym:SVX_HID_OFA_HYPERLINK_NAME +Verknuepfung .uno:AddBookmark '------------------------------------------------------------------------- *Insertbar .HelpId:insertbar '------------------------------------------------------------------------- @@ -743,13 +743,13 @@ Frame .uno:InsertObjectFloatingFrame Fussnote .uno:InsertFootnote Grafik .uno:InsertGraphic InsertSpreadsheet .uno:InsertSpreadsheet -MehrspaltigeRahmen FN_INSERT_FRAME +MehrspaltigeRahmen .uno:InsertFrame OLEObjekt .uno:InsertObject Plugin .uno:InsertPlugin Rahmen .uno:InsertFrameInteract Seite .uno:InsertPage Sonderzeichen .uno:InsertSymbol -Spalten FN_INSERT_FRAME_INTERACT_NOCOL +Spalten .uno:InsertFrameInteractNoColumns Tabelle .uno:InsertTable Textmarke .uno:InsertBookmark Verzeichnis .uno:InsertIndexesEntry @@ -799,10 +799,10 @@ Controls .uno:ChooseControls FindParanthese .uno:MatchGroup InsertSourceText .uno:LoadBasic Library .uno:LibSelector -Macros SID_BASICIDE_CHOOSEMACRO +Macros .uno:ChooseMacro ManageBreakpoints .uno:ManageBreakPoints -Modules SID_BASICIDE_MODULEDLG -ObjectCatalog SID_BASICIDE_OBJCAT +Modules .uno:ModuleDialog +ObjectCatalog .uno:ObjectCatalog ProcedureStep .uno:BasicStepOver SaveSourceText .uno:SaveBasicAs SingleStep .uno:BasicStepInto @@ -831,24 +831,24 @@ Vorlage .uno:StyleApply NumberingOnOff .uno:DefaultNumbering BulletsOnOff .uno:DefaultBullet '------------------------------------------------------------------------- -*OB_DB_Tabledesign HID_TLB_TABLEDESIGN +*OB_DB_Tabledesign sym:DBACCESS_HID_TLB_TABLEDESIGN '------------------------------------------------------------------------- -Copy SID_COPY -Cut SID_CUT -Edit SID_EDITDOC -NoConnection HID_TABLE_DESIGN_NO_CONNECTION -Paste SID_PASTE -Redo SID_REDO -Save SID_SAVEDOC -SaveAs SID_SAVEASDOC -Undo SID_UNDO +Copy .uno:Copy +Cut .uno:Cut +Edit .uno:EditDoc +NoConnection sym:DBACCESS_HID_TABLE_DESIGN_NO_CONNECTION +Paste .uno:Paste +Redo .uno:Redo +Save .uno:Save +SaveAs .uno:SaveAs +Undo .uno:Undo '------------------------------------------------------------------------- -*OL_SW_Rechenleiste HID_CALC_TOOLBOX +*OL_SW_Rechenleiste sym:SW_HID_CALC_TOOLBOX '------------------------------------------------------------------------- -Eingabefeld HID_EDIT_FORMULA -Formel FN_FORMULA_CALC -Uebernehmen FN_FORMULA_APPLY -Verwerfen FN_FORMULA_CANCEL +Eingabefeld sym:SW_HID_EDIT_FORMULA +Formel sym:SW_HID_TBX_FORMULA_CALC +Uebernehmen sym:SW_HID_TBX_FORMULA_APPLY +Verwerfen sym:SW_HID_TBX_FORMULA_CANCEL '------------------------------------------------------------------------- *OLEObjectBar .HelpId:oleobjectbar '------------------------------------------------------------------------- @@ -886,7 +886,7 @@ ZeilenGleichmaessig .uno:DistributeRows *Optionsbar .HelpId:optionsbar '------------------------------------------------------------------------- AlleGruppenVerlassen .uno:LeaveAllGroups -AlleGruppierungenVerlassen SID_CONNECTOR_LINES_CIRCLES +AlleGruppierungenVerlassen .uno:ConnectorLinesCircles DrehmodusNachKlick .uno:ClickChangeRotation EinfacheHandles .uno:HandlesDraft FangenAnObjektRahmen .uno:SnapFrame @@ -901,8 +901,8 @@ KeineFuellungen .uno:FillDraft GluePoints .uno:GlueEditMode NurHaarlinien .uno:LineDraft NurTextbreichSelektieren .uno:PickThrough -ObjektMitAttributen SID_SOLID_CREATE -PunkteBearbeiten SID_BEZIER_EDIT +ObjektMitAttributen .uno:SolidCreate +PunkteBearbeiten .uno:ToggleObjectBezierMode RasterBenutzen .uno:GridUse RasterSichtbar .uno:GridVisible Schnellbearbeitung .uno:QuickEdit @@ -924,33 +924,33 @@ ZoomPlus .uno:ZoomPlus '------------------------------------------------------------------------- *Positionbar .HelpId:positionbar '------------------------------------------------------------------------- -GanzNachHinten SID_FRAME_TO_BOTTOM -GanzNachVorn SID_FRAME_TO_TOP -HinterDasObjekt SID_BEHIND_OBJ -Vertauschen SID_REVERSE_ORDER -VorDasObjekt SID_BEFORE_OBJ -WeiterNachHinten SID_MOREBACK -WeiterNachVorn SID_MOREFRONT +GanzNachHinten .uno:SendToBack +GanzNachVorn .uno:BringToFront +HinterDasObjekt .uno:BehindObject +Vertauschen .uno:ReverseOrder +VorDasObjekt .uno:BeforeObject +WeiterNachHinten .uno:Backward +WeiterNachVorn .uno:Forward '------------------------------------------------------------------------- *Previewbar .HelpId:previewbar '------------------------------------------------------------------------- -DruckenSeitenansicht FN_PRINT_PAGEPREVIEW +DruckenSeitenansicht .uno:PrintPagePreView ErsteSeite .uno:FirstPage GanzerBildschirm .uno:FullScreen KopfUndFusszeilen .uno:EditHeaderAndFooter LetzteSeite .uno:LastPage Margins .uno:Margins -Massstab SID_ATTR_ZOOM +Massstab .uno:Zoom MassstabVergroessern .uno:ZoomIn MassstabVerkleinern .uno:ZoomOut NaechsteSeite .uno:NextPage ScalingFactor .uno:ScalingFactor -Schliessen SID_CLOSEWIN +Schliessen .uno:CloseWin Seitenansicht .uno:ClosePreview Seitenlayout .uno:PageFormatDialog -VierSeiten FN_SHOW_MULTIPLE_PAGES +VierSeiten .uno:ShowMultiplePages VorherigeSeite .uno:PreviousPage -ZweiSeiten FN_SHOW_TWO_PAGES +ZweiSeiten .uno:ShowTwoPages '------------------------------------------------------------------------- *PreviewObjectbar .HelpId:previewobjectbar '------------------------------------------------------------------------- @@ -961,41 +961,41 @@ Groesser .uno:ZoomPlus Kleiner .uno:ZoomMinus LetzteSeite .uno:GoToEndOfDoc Massstab .uno:PreviewZoom -MassstabVergroessern SID_PREVIEW_ZOOMIN -MassstabVerkleinern SID_PREVIEW_ZOOMOUT +MassstabVergroessern .uno:ZoomIn +MassstabVerkleinern .uno:ZoomOut NaechsteSeite .uno:PageDown SeitenansichtSchliessen .uno:ClosePreview -Seitenlayout SID_FORMATPAGE +Seitenlayout .uno:PageFormatDialog Skalierung .uno:PreviewPrintOptions VierSeiten .uno:ShowMultiplePages VorherigeSeite .uno:PageUp ZweiSeiten .uno:ShowTwoPages '------------------------------------------------------------------------- -*RechenleisteCalc HID_SC_INPUTWIN +*RechenleisteCalc sym:SC_HID_SC_INPUTWIN '------------------------------------------------------------------------- -AktiverZellBereich HID_INSWIN_POS -Bereich HID_INSWIN_POS -EingabeZeileCalc HID_INSWIN_INPUT -Funktion HID_INSWIN_FUNC -Funktionsautopilot HID_INSWIN_CALC -Summe HID_INSWIN_SUMME -Uebernehmen HID_INSWIN_OK -Verwerfen HID_INSWIN_CANCEL +AktiverZellBereich sym:SC_HID_INSWIN_POS +Bereich sym:SC_HID_INSWIN_POS +EingabeZeileCalc sym:SC_HID_INSWIN_INPUT +Funktion sym:SC_HID_INSWIN_FUNC +Funktionsautopilot sym:SC_HID_INSWIN_CALC +Summe sym:SC_HID_INSWIN_SUMME +Uebernehmen sym:SC_HID_INSWIN_OK +Verwerfen sym:SC_HID_INSWIN_CANCEL '------------------------------------------------------------------------- *Rectanglesbar .HelpId:rectanglesbar '------------------------------------------------------------------------- -QuadratLeer SID_DRAW_SQUARE_NOFILL -QuadratRundLeer SID_DRAW_SQUARE_ROUND_NOFILL -QuadratRundVoll SID_DRAW_SQUARE_ROUND -QuadratVoll SID_DRAW_SQUARE -RechteckLeer SID_DRAW_RECT_NOFILL -RechteckRundLeer SID_DRAW_RECT_ROUND_NOFILL -RechteckRundVoll SID_DRAW_RECT_ROUND -RechteckVoll SID_DRAW_RECT +QuadratLeer .uno:Square_Unfilled +QuadratRundLeer .uno:Square_Rounded_Unfilled +QuadratRundVoll .uno:Square_Rounded +QuadratVoll .uno:Square +RechteckLeer .uno:Rect_Unfilled +RechteckRundLeer .uno:Rect_Rounded_Unfilled +RechteckRundVoll .uno:Rect_Rounded +RechteckVoll .uno:Rect '------------------------------------------------------------------------- -*SD_Farbleiste HID_CTRL_COLOR +*SD_Farbleiste sym:SVX_HID_CTRL_COLOR '------------------------------------------------------------------------- -Farben HID_COLOR_CTL_COLORS +Farben sym:SVX_HID_COLOR_CTL_COLORS '------------------------------------------------------------------------- *SlideViewObjectbar .HelpId:slideviewobjectbar '------------------------------------------------------------------------- @@ -1035,22 +1035,22 @@ NativeSql .uno:SbaNativeSql '------------------------------------------------------------------------- Ausschneiden .uno:Cut Bearbeiten .uno:EditDoc -DokSchliessen SID_CLOSEDOC +DokSchliessen .uno:CloseDoc Drucken .uno:PrintDefault Einfuegen .uno:Paste ExportAsPDF .uno:ExportDirectToPDF FaxDrucken .uno:SendFax GalleryButton .uno:Gallery -Gesamtbild SID_WIN_FULLSCREEN -GestalterButton SID_STYLE_DESIGNER +Gesamtbild .uno:FullScreen +GestalterButton .uno:DesignerDialog HyperlinkDialog .uno:HyperlinkDialog -HyperlinkLeisteButton SID_HYPERLINK_INSERT +HyperlinkLeisteButton .uno:InsertHyperlink Kopieren .uno:Copy NavigatorButton .uno:Navigator Neu .uno:AddDirect NeuDialog .uno:NewDoc Oeffnen .uno:Open -RecordMacroButton SID_RECORDMACRO +RecordMacroButton .uno:MacroRecorder Redo .uno:Redo SortAscending .uno:SortAscending SortDescending .uno:SortDescending @@ -1116,18 +1116,18 @@ Sortieren .uno:OrderCrit Hintergrundfarbe .uno:BackgroundColor LinienStil .uno:LineStyle Optimieren .uno:OptimizeTable -Schriftart SID_ATTR_CHAR_FONT -Schriftgroesse SID_ATTR_CHAR_FONTHEIGHT +Schriftart .uno:CharFontName +Schriftgroesse .uno:FontHeight SpalteAuswaehlen .uno:EntireColumn SpalteEinfuegen .uno:InsertColumns SpalteLoeschen .uno:DeleteColumns TabelleAuswaehlen .uno:SelectTable -TabellenmodeFix FN_TABLE_MODE_FIX -TabellenmodeProportional FN_TABLE_MODE_FIX_PROP -TabellenmodeVariabel FN_TABLE_MODE_VARIABLE +TabellenmodeFix .uno:TableModeFix +TabellenmodeProportional .uno:TableModeFixProp +TabellenmodeVariabel .uno:TableModeVariable Umrandung .uno:SetBorderStyle -Vorlage SID_STYLE_APPLY -Vorlage2 HID_STYLE_LISTBOX +Vorlage .uno:StyleApplyState +Vorlage2 sym:SVX_HID_STYLE_LISTBOX ZeileAuswaehlen .uno:EntireRow ZeileEinfuegen .uno:InsertRows ZeileLoeschen .uno:DeleteRows @@ -1143,12 +1143,12 @@ TableProperties .uno:TableDialog '------------------------------------------------------------------------- *Textbar .HelpId:textbar '------------------------------------------------------------------------- -FitVerticalTextToFrame SID_TEXT_FITTOSIZE_VERTICAL -Legende SID_DRAW_CAPTION -Rahmen SID_TEXT_FITTOSIZE -TextEinfuegen SID_ATTR_CHAR -VerticalCallout SID_DRAW_CAPTION_VERTICAL -VerticalText SID_DRAW_TEXT_VERTICAL +FitVerticalTextToFrame .uno:VerticalTextFitToSizeTool +Legende .uno:DrawCaption +Rahmen .uno:TextFitToSizeTool +TextEinfuegen .uno:Text +VerticalCallout .uno:VerticalCaption +VerticalText .uno:VerticalText '------------------------------------------------------------------------- *TextObjectbar .HelpId:textobjectbar '------------------------------------------------------------------------- @@ -1198,7 +1198,7 @@ BulletsOnOff2 .uno:Bullet '------------------------------------------------------------------------- *Toolbar .HelpId:toolbar '------------------------------------------------------------------------- -AlleEbenen SID_OUTLINE_EXPAND_ALL +AlleEbenen .uno:OutlineExpandAll Anordnung .uno:ObjectPosition ApplyFilter .uno:FormFiltered ArrowsToolbox .uno:ArrowsToolbox @@ -1215,7 +1215,7 @@ ChangeBezier .uno:ChangeBezier ChangePolygon .uno:ChangePolygon ClearQuery .uno:DBClearQuery ConvertInto3D .uno:ConvertInto3D -ConvertInto3Dnew SID_EXTRUSION_TOOGLE +ConvertInto3Dnew .uno:ExtrusionToggle ConvertInto3DLatheFast .uno:ConvertInto3DLatheFast Copy .uno:Copy CustomAnimation .uno:CustomAnimation @@ -1237,7 +1237,7 @@ Feldbefehle .uno:InsertFieldCtrl Filter .uno:DataFilterStandardFilter FlowChartShapes .uno:FlowChartShapes FontworkGalleryFloater .uno:FontworkGalleryFloater -FormatierungEinAus SID_OUTLINE_FORMAT +FormatierungEinAus .uno:OutlineFormat FormControls .uno:Config FormelAktualisieren .uno:Draw FormelSymbole .uno:SymbolCatalogue @@ -1247,11 +1247,11 @@ Grafikeffekte .uno:AdvancedMode GrafikenAusEin .uno:Graphic Gruppierung .uno:Group GruppierungAufheben .uno:Ungroup -HTMLQuelltext HID_SOURCEVIEW -Hinunterschieben SID_OUTLINE_DOWN -Hinunterstufen SID_OUTLINE_RIGHT -Hochschieben SID_OUTLINE_UP -Hochstufen SID_OUTLINE_LEFT +HTMLQuelltext sym:SW_HID_SOURCEVIEW +Hinunterschieben .uno:OutlineDown +Hinunterstufen .uno:OutlineRight +Hochschieben .uno:OutlineUp +Hochstufen .uno:OutlineLeft Hyperlink .uno:InsertHyperlink Insert .uno:InsertToolbox InsertGraphic .uno:InsertGraphic @@ -1263,7 +1263,7 @@ LineArrowEnd .uno:LineArrowEnd Mirror .uno:Mirror NamenDefinieren .uno:DefineName NewDoc .uno:NewDoc -NurErsteEbene SID_OUTLINE_COLLAPSE_ALL +NurErsteEbene .uno:OutlineCollapseAll ObjectAlign .uno:ObjectAlign ObjektEinfuegen .uno:InsertObjCtrl ObjekteEinfuegen .uno:InsObjCtrl @@ -1280,12 +1280,12 @@ Redo .uno:Redo Refresh .uno:Refresh RemoveFilter .uno:RemoveFilterSort Rotate .uno:ToggleObjectRotateMode -SchwarzweisDarstellung SID_COLORVIEW +SchwarzweisDarstellung .uno:ColorView ShowFormFunctions .uno:Config Save .uno:Save SaveAs .uno:SaveAs SortAscending .uno:Sortup -SortDescending .uno:Sortdown +SortDescending .uno:SortDown SortierenAb .uno:SortDescending SortierenAuf .uno:SortAscending SortOrder .uno:OrderCrit @@ -1300,8 +1300,8 @@ Thesaurus .uno:Thesaurus ToolsGallery .uno:Gallery Transform .uno:TransformDialog Undo .uno:Undo -UnterpunkteAnzeigen SID_OUTLINE_EXPAND -UnterpunkteAusblenden SID_OUTLINE_COLLAPSE +UnterpunkteAnzeigen .uno:OutlineExpand +UnterpunkteAusblenden .uno:OutlineCollapse Verbinder .uno:ConnectorToolbox Vergroessern .uno:ZoomIn Verkleinern .uno:ZoomOut diff --git a/testautomation/global/win/dial_a_c.win b/testautomation/global/win/dial_a_c.win index 18f695c91c41..f258efe6a70a 100755..100644 --- a/testautomation/global/win/dial_a_c.win +++ b/testautomation/global/win/dial_a_c.win @@ -1,284 +1,284 @@ -*Aehnlichkeitssuche HID_SEARCHSIMILARITY -ZeichenHinzufuegen cui:NumericField:RID_SVXDLG_SEARCHSIMILARITY:NF_LONGER -ZeichenTauschen cui:NumericField:RID_SVXDLG_SEARCHSIMILARITY:NF_OTHER -Kombinieren cui:CheckBox:RID_SVXDLG_SEARCHSIMILARITY:CB_RELAX -ZeichenEntfernen cui:NumericField:RID_SVXDLG_SEARCHSIMILARITY:NF_SHORTER +*Aehnlichkeitssuche sym:CUI_HID_SEARCHSIMILARITY +ZeichenHinzufuegen sym:cui:NumericField:RID_SVXDLG_SEARCHSIMILARITY:NF_LONGER +ZeichenTauschen sym:cui:NumericField:RID_SVXDLG_SEARCHSIMILARITY:NF_OTHER +Kombinieren sym:cui:CheckBox:RID_SVXDLG_SEARCHSIMILARITY:CB_RELAX +ZeichenEntfernen sym:cui:NumericField:RID_SVXDLG_SEARCHSIMILARITY:NF_SHORTER -*Aenderungenanzeigen FID_CHG_ACCEPT -TabControl HID_REDLINING_TABCONTROL -TabFilter HID_REDLINING_FILTER_PAGE SVX:TABPAGE:SID_REDLIN_FILTER_PAGE -Datum HID_REDLINING_FILTER_CB_DATE SVX:CHECKBOX:SID_REDLIN_FILTER_PAGE:CB_DATE -DatumListe HID_REDLINING_FILTER_LB_DATE SVX:LISTBOX:SID_REDLIN_FILTER_PAGE:LB_DATE -Datum1 HID_REDLINING_FILTER_DF_DATE SVX:DATEFIELD:SID_REDLIN_FILTER_PAGE:DF_DATE -Zeit1 HID_REDLINING_FILTER_TF_DATE SVX:TIMEFIELD:SID_REDLIN_FILTER_PAGE:TF_DATE -Aktuell1 HID_REDLINING_FILTER_IB_CLOCK SVX:IMAGEBUTTON:SID_REDLIN_FILTER_PAGE:IB_CLOCK -Datum2 HID_REDLINING_FILTER_DF_DATE2 SVX:DATEFIELD:SID_REDLIN_FILTER_PAGE:DF_DATE2 -Zeit2 HID_REDLINING_FILTER_TF_DATE2 SVX:TIMEFIELD:SID_REDLIN_FILTER_PAGE:TF_DATE2 -Aktuell2 HID_REDLINING_FILTER_IB_CLOCK2 SVX:IMAGEBUTTON:SID_REDLIN_FILTER_PAGE:IB_CLOCK2 -Autor HID_REDLINING_FILTER_CB_AUTOR SVX:CHECKBOX:SID_REDLIN_FILTER_PAGE:CB_AUTOR -AutoListe HID_REDLINING_FILTER_LB_AUTOR SVX:LISTBOX:SID_REDLIN_FILTER_PAGE:LB_AUTOR -Bereich HID_REDLINING_FILTER_CB_RANGE SVX:CHECKBOX:SID_REDLIN_FILTER_PAGE:CB_RANGE -BereichText HID_REDLINING_FILTER_ED_RANGE SVX:EDIT:SID_REDLIN_FILTER_PAGE:ED_RANGE -Button HID_REDLINING_FILTER_BTN_REF SVX:PUSHBUTTON:SID_REDLIN_FILTER_PAGE:BTN_REF -Aktion HID_REDLINING_FILTER_CB_RANGE -Aktionsliste HID_REDLINING_FILTER_LB_ACTION -TabListe HID_REDLINING_VIEW_PAGE SVX:TABPAGE:SID_REDLIN_VIEW_PAGE -Liste HID_REDLINING_VIEW_DG_VIEW -ListenInhalt HID_REDLINING_VIEW_DG_VIEW_TABLE -Listenkopf HID_REDLINING_VIEW_DG_VIEW_HEADER -Akzeptieren HID_REDLINING_VIEW_PB_ACCEPT SVX:PUSHBUTTON:SID_REDLIN_VIEW_PAGE:PB_ACCEPT -AlleAkzeptieren HID_REDLINING_VIEW_PB_ACCEPTALL SVX:PUSHBUTTON:SID_REDLIN_VIEW_PAGE:PB_ACCEPTALL -Ablehnen HID_REDLINING_VIEW_PB_REJECT SVX:PUSHBUTTON:SID_REDLIN_VIEW_PAGE:PB_REJECT -AlleAblehnen HID_REDLINING_VIEW_PB_REJECTALL SVX:PUSHBUTTON:SID_REDLIN_VIEW_PAGE:PB_REJECTALL -Rueckgaengig HID_REDLINING_VIEW_PB_UNDO +*Aenderungenanzeigen .uno:AcceptChanges +TabControl sym:SVX_HID_REDLINING_TABCONTROL +TabFilter sym:SVX_HID_REDLINING_FILTER_PAGE sym:svx:TabPage:SID_REDLIN_FILTER_PAGE +Datum sym:SVX_HID_REDLINING_FILTER_CB_DATE sym:svx:CheckBox:SID_REDLIN_FILTER_PAGE:CB_DATE +DatumListe sym:SVX_HID_REDLINING_FILTER_LB_DATE sym:svx:ListBox:SID_REDLIN_FILTER_PAGE:LB_DATE +Datum1 sym:SVX_HID_REDLINING_FILTER_DF_DATE sym:svx:DateField:SID_REDLIN_FILTER_PAGE:DF_DATE +Zeit1 sym:SVX_HID_REDLINING_FILTER_TF_DATE sym:svx:TimeField:SID_REDLIN_FILTER_PAGE:TF_DATE +Aktuell1 sym:SVX_HID_REDLINING_FILTER_IB_CLOCK sym:svx:ImageButton:SID_REDLIN_FILTER_PAGE:IB_CLOCK +Datum2 sym:SVX_HID_REDLINING_FILTER_DF_DATE2 sym:svx:DateField:SID_REDLIN_FILTER_PAGE:DF_DATE2 +Zeit2 sym:SVX_HID_REDLINING_FILTER_TF_DATE2 sym:svx:TimeField:SID_REDLIN_FILTER_PAGE:TF_DATE2 +Aktuell2 sym:SVX_HID_REDLINING_FILTER_IB_CLOCK2 sym:svx:ImageButton:SID_REDLIN_FILTER_PAGE:IB_CLOCK2 +Autor sym:SVX_HID_REDLINING_FILTER_CB_AUTOR sym:svx:CheckBox:SID_REDLIN_FILTER_PAGE:CB_AUTOR +AutoListe sym:SVX_HID_REDLINING_FILTER_LB_AUTOR sym:svx:ListBox:SID_REDLIN_FILTER_PAGE:LB_AUTOR +Bereich sym:SVX_HID_REDLINING_FILTER_CB_RANGE sym:svx:CheckBox:SID_REDLIN_FILTER_PAGE:CB_RANGE +BereichText sym:SVX_HID_REDLINING_FILTER_ED_RANGE sym:svx:Edit:SID_REDLIN_FILTER_PAGE:ED_RANGE +Button sym:SVX_HID_REDLINING_FILTER_BTN_REF sym:svx:PushButton:SID_REDLIN_FILTER_PAGE:BTN_REF +Aktion sym:SVX_HID_REDLINING_FILTER_CB_RANGE +Aktionsliste sym:SVX_HID_REDLINING_FILTER_LB_ACTION +TabListe sym:SVX_HID_REDLINING_VIEW_PAGE sym:svx:TabPage:SID_REDLIN_VIEW_PAGE +Liste sym:SVX_HID_REDLINING_VIEW_DG_VIEW +ListenInhalt sym:SVX_HID_REDLINING_VIEW_DG_VIEW_TABLE +Listenkopf sym:SVX_HID_REDLINING_VIEW_DG_VIEW_HEADER +Akzeptieren sym:SVX_HID_REDLINING_VIEW_PB_ACCEPT sym:svx:PushButton:SID_REDLIN_VIEW_PAGE:PB_ACCEPT +AlleAkzeptieren sym:SVX_HID_REDLINING_VIEW_PB_ACCEPTALL sym:svx:PushButton:SID_REDLIN_VIEW_PAGE:PB_ACCEPTALL +Ablehnen sym:SVX_HID_REDLINING_VIEW_PB_REJECT sym:svx:PushButton:SID_REDLIN_VIEW_PAGE:PB_REJECT +AlleAblehnen sym:SVX_HID_REDLINING_VIEW_PB_REJECTALL sym:svx:PushButton:SID_REDLIN_VIEW_PAGE:PB_REJECTALL +Rueckgaengig sym:SVX_HID_REDLINING_VIEW_PB_UNDO -*AktualisierenGallery HID_GALLERY_ACTUALIZE +*AktualisierenGallery sym:SVX_HID_GALLERY_ACTUALIZE -*Animation SID_ANIMATION_OBJECTS -BildAufnehmen sd:ImageButton:FLT_WIN_ANIMATION:BTN_GET_ONE_OBJECT -AlleAufnehmen sd:ImageButton:FLT_WIN_ANIMATION:BTN_GET_ALL_OBJECTS -BildLoeschen sd:ImageButton:FLT_WIN_ANIMATION:BTN_REMOVE_BITMAP -AlleLoeschen sd:ImageButton:FLT_WIN_ANIMATION:BTN_REMOVE_ALL -AnimationsgruppeGruppenobjekt sd:RadioButton:FLT_WIN_ANIMATION:RBT_GROUP -AnimationsgruppeBitmapobjekt sd:RadioButton:FLT_WIN_ANIMATION:RBT_BITMAP -'Transparenzfarbe sd:ListBox:FLT_WIN_ANIMATION:LB_COLOR ' TBO 18.07.2002 removed from dialog -Anpassung sd:ListBox:FLT_WIN_ANIMATION:LB_ADJUSTMENT -AnzahlBilder sd:NumericField:FLT_WIN_ANIMATION:NUM_FLD_BITMAP -AnzahlDurchlaeufe sd:ListBox:FLT_WIN_ANIMATION:LB_LOOP_COUNT -AnzeigedauerProBild sd:TimeField:FLT_WIN_ANIMATION:TIME_FIELD -Erstellen sd:PushButton:FLT_WIN_ANIMATION:BTN_CREATE_GROUP -ErstesBild sd:ImageButton:FLT_WIN_ANIMATION:BTN_FIRST -Rueckwaerts sd:ImageButton:FLT_WIN_ANIMATION:BTN_REVERSE -Stopp sd:ImageButton:FLT_WIN_ANIMATION:BTN_STOP -Abspielen sd:ImageButton:FLT_WIN_ANIMATION:BTN_PLAY -LetztesBild sd:ImageButton:FLT_WIN_ANIMATION:BTN_LAST +*Animation .uno:AnimationObjects +BildAufnehmen sym:sd:ImageButton:FLT_WIN_ANIMATION:BTN_GET_ONE_OBJECT +AlleAufnehmen sym:sd:ImageButton:FLT_WIN_ANIMATION:BTN_GET_ALL_OBJECTS +BildLoeschen sym:sd:ImageButton:FLT_WIN_ANIMATION:BTN_REMOVE_BITMAP +AlleLoeschen sym:sd:ImageButton:FLT_WIN_ANIMATION:BTN_REMOVE_ALL +AnimationsgruppeGruppenobjekt sym:sd:RadioButton:FLT_WIN_ANIMATION:RBT_GROUP +AnimationsgruppeBitmapobjekt sym:sd:RadioButton:FLT_WIN_ANIMATION:RBT_BITMAP +'Transparenzfarbe sym:sd:ListBox:FLT_WIN_ANIMATION:LB_COLOR ' TBO 18.07.2002 removed from dialog +Anpassung sym:sd:ListBox:FLT_WIN_ANIMATION:LB_ADJUSTMENT +AnzahlBilder sym:sd:NumericField:FLT_WIN_ANIMATION:NUM_FLD_BITMAP +AnzahlDurchlaeufe sym:sd:ListBox:FLT_WIN_ANIMATION:LB_LOOP_COUNT +AnzeigedauerProBild sym:sd:TimeField:FLT_WIN_ANIMATION:TIME_FIELD +Erstellen sym:sd:PushButton:FLT_WIN_ANIMATION:BTN_CREATE_GROUP +ErstesBild sym:sd:ImageButton:FLT_WIN_ANIMATION:BTN_FIRST +Rueckwaerts sym:sd:ImageButton:FLT_WIN_ANIMATION:BTN_REVERSE +Stopp sym:sd:ImageButton:FLT_WIN_ANIMATION:BTN_STOP +Abspielen sym:sd:ImageButton:FLT_WIN_ANIMATION:BTN_PLAY +LetztesBild sym:sd:ImageButton:FLT_WIN_ANIMATION:BTN_LAST -*AppletEinfuegen SID_INSERT_APPLET -Klasse cui:EDIT:MD_INSERT_OBJECT_APPLET:ED_CLASSFILE -ClassLocation cui:EDIT:MD_INSERT_OBJECT_APPLET:ED_CLASSLOCATION -Suchen cui:PUSHBUTTON:MD_INSERT_OBJECT_APPLET:BTN_CLASS -Optionen cui:MULTILINEEDIT:MD_INSERT_OBJECT_APPLET:ED_APPLET_OPTIONS +*AppletEinfuegen .uno:InsertApplet +Klasse sym:cui:Edit:MD_INSERT_OBJECT_APPLET:ED_CLASSFILE +ClassLocation sym:cui:Edit:MD_INSERT_OBJECT_APPLET:ED_CLASSLOCATION +Suchen sym:cui:PushButton:MD_INSERT_OBJECT_APPLET:BTN_CLASS +Optionen sym:cui:MultiLineEdit:MD_INSERT_OBJECT_APPLET:ED_APPLET_OPTIONS -*AsciiFilterOptionen HID_ASCII_FILTER -Zeichensatz sw:ListBox:DLG_ASCII_FILTER:LB_CHARSET -Schriftart sw:ListBox:DLG_ASCII_FILTER:LB_FONT -Sprache sw:ListBox:DLG_ASCII_FILTER:LB_LANGUAGE -CrLf sw:RadioButton:DLG_ASCII_FILTER:RB_CRLF -Cr sw:RadioButton:DLG_ASCII_FILTER:RB_CR -Lf sw:RadioButton:DLG_ASCII_FILTER:RB_LF +*AsciiFilterOptionen sym:SW_HID_ASCII_FILTER +Zeichensatz sym:sw:ListBox:DLG_ASCII_FILTER:LB_CHARSET +Schriftart sym:sw:ListBox:DLG_ASCII_FILTER:LB_FONT +Sprache sym:sw:ListBox:DLG_ASCII_FILTER:LB_LANGUAGE +CrLf sym:sw:RadioButton:DLG_ASCII_FILTER:RB_CRLF +Cr sym:sw:RadioButton:DLG_ASCII_FILTER:RB_CR +Lf sym:sw:RadioButton:DLG_ASCII_FILTER:RB_LF -*Attribute HID_SEARCHATTR -Auswahl HID_SEARCHATTR_CTL_ATTR +*Attribute sym:CUI_HID_SEARCHATTR +Auswahl sym:CUI_HID_SEARCHATTR_CTL_ATTR -*Ausrichtung SID_ALIGN -Links starmath:RadioButton:RID_ALIGNDIALOG:1 -Zentriert starmath:RadioButton:RID_ALIGNDIALOG:2 -Rechts starmath:RadioButton:RID_ALIGNDIALOG:3 -'Oben starmath:RadioButton:RID_ALIGNDIALOG:4 -'Mitte starmath:RadioButton:RID_ALIGNDIALOG:5 -'Unten starmath:RadioButton:RID_ALIGNDIALOG:6 -Standard starmath:PushButton:RID_ALIGNDIALOG:1 +*Ausrichtung .uno:ChangeAlignment +Links sym:starmath:RadioButton:RID_ALIGNDIALOG:1 +Zentriert sym:starmath:RadioButton:RID_ALIGNDIALOG:2 +Rechts sym:starmath:RadioButton:RID_ALIGNDIALOG:3 +'Oben sym:starmath:RadioButton:RID_ALIGNDIALOG:4 +'Mitte sym:starmath:RadioButton:RID_ALIGNDIALOG:5 +'Unten sym:starmath:RadioButton:RID_ALIGNDIALOG:6 +Standard sym:starmath:PushButton:RID_ALIGNDIALOG:1 -*AutoAbstractErzeugen HID_INSERT_ABSTRACT -Ebenen sw:NumericField:DLG_INSERT_ABSTRACT:NF_LEVEL -Kapitel sw:NumericField:DLG_INSERT_ABSTRACT:NF_PARA +*AutoAbstractErzeugen sym:SW_HID_INSERT_ABSTRACT +Ebenen sym:sw:NumericField:DLG_INSERT_ABSTRACT:NF_LEVEL +Kapitel sym:sw:NumericField:DLG_INSERT_ABSTRACT:NF_PARA -*Autokorrektur SID_AUTO_CORRECT_DLG +*Autokorrektur .uno:AutoCorrectDlg -*AutoText FN_GLOSSARY_DLG -RestDesNamens sw:CheckBox:DLG_GLOSSARY:CB_INSERT_TIP -NameText sw:Edit:DLG_GLOSSARY:ED_NAME -Liste HID_MD_GLOS_CATEGORY -Kuerzel sw:Edit:DLG_GLOSSARY:ED_SHORTNAME -ImDateisystem sw:CheckBox:DLG_GLOSSARY:CB_FILE_REL -ImInternet sw:CheckBox:DLG_GLOSSARY:CB_NET_REL -Menue sw:MenuButton:DLG_GLOSSARY:PB_EDIT -Bereiche sw:PushButton:DLG_GLOSSARY:PB_BIB -Pfade SW:PUSHBUTTON:DLG_GLOSSARY:PB_PATH -Vorschau_anzeigen sw:CheckBox:DLG_GLOSSARY:CB_SHOW_EXAMPLE +*AutoText .uno:EditGlossary +RestDesNamens sym:sw:CheckBox:DLG_GLOSSARY:CB_INSERT_TIP +NameText sym:sw:Edit:DLG_GLOSSARY:ED_NAME +Liste sym:SW_HID_MD_GLOS_CATEGORY +Kuerzel sym:sw:Edit:DLG_GLOSSARY:ED_SHORTNAME +ImDateisystem sym:sw:CheckBox:DLG_GLOSSARY:CB_FILE_REL +ImInternet sym:sw:CheckBox:DLG_GLOSSARY:CB_NET_REL +Menue sym:sw:MenuButton:DLG_GLOSSARY:PB_EDIT +Bereiche sym:sw:PushButton:DLG_GLOSSARY:PB_BIB +Pfade sym:sw:PushButton:DLG_GLOSSARY:PB_PATH +Vorschau_anzeigen sym:sw:CheckBox:DLG_GLOSSARY:CB_SHOW_EXAMPLE -*AutoFormatCalc SID_AUTOFORMAT -FormatListe sc:ListBox:RID_SCDLG_AUTOFORMAT:LB_FORMAT -Einfuegen sc:PushButton:RID_SCDLG_AUTOFORMAT:BTN_ADD -Loeschen sc:PushButton:RID_SCDLG_AUTOFORMAT:BTN_REMOVE -Zahlenformat sc:CheckBox:RID_SCDLG_AUTOFORMAT:BTN_NUMFORMAT -Umrandung sc:CheckBox:RID_SCDLG_AUTOFORMAT:BTN_BORDER -Schriftart sc:CheckBox:RID_SCDLG_AUTOFORMAT:BTN_FONT -Muster sc:CheckBox:RID_SCDLG_AUTOFORMAT:BTN_PATTERN -Ausrichtung sc:CheckBox:RID_SCDLG_AUTOFORMAT:BTN_ALIGNMENT -BreiteHoeheAnpassen sc:CheckBox:RID_SCDLG_AUTOFORMAT:BTN_ADJUST -Zusaetze sc:MoreButton:RID_SCDLG_AUTOFORMAT:BTN_MORE -Umbenennen HID_SC_RENAME_AUTOFMT +*AutoFormatCalc .uno:AutoFormat +FormatListe sym:sc:ListBox:RID_SCDLG_AUTOFORMAT:LB_FORMAT +Einfuegen sym:sc:PushButton:RID_SCDLG_AUTOFORMAT:BTN_ADD +Loeschen sym:sc:PushButton:RID_SCDLG_AUTOFORMAT:BTN_REMOVE +Zahlenformat sym:sc:CheckBox:RID_SCDLG_AUTOFORMAT:BTN_NUMFORMAT +Umrandung sym:sc:CheckBox:RID_SCDLG_AUTOFORMAT:BTN_BORDER +Schriftart sym:sc:CheckBox:RID_SCDLG_AUTOFORMAT:BTN_FONT +Muster sym:sc:CheckBox:RID_SCDLG_AUTOFORMAT:BTN_PATTERN +Ausrichtung sym:sc:CheckBox:RID_SCDLG_AUTOFORMAT:BTN_ALIGNMENT +BreiteHoeheAnpassen sym:sc:CheckBox:RID_SCDLG_AUTOFORMAT:BTN_ADJUST +Zusaetze sym:sc:MoreButton:RID_SCDLG_AUTOFORMAT:BTN_MORE +Umbenennen sym:SC_HID_SC_RENAME_AUTOFMT -*AutoFormatHinzufuegenWriter HID_SWDLG_STRINPUT -TabellenName sw:Edit:DLG_SWDLG_STRINPUT:ED_INPUT +*AutoFormatHinzufuegenWriter sym:SW_HID_SWDLG_STRINPUT +TabellenName sym:sw:Edit:DLG_SWDLG_STRINPUT:ED_INPUT -*AutoFormatHinzufuegenCalc HID_SC_ADD_AUTOFMT -TabellenName HID_SC_AUTOFMT_NAME +*AutoFormatHinzufuegenCalc sym:SC_HID_SC_ADD_AUTOFMT +TabellenName sym:SC_HID_SC_AUTOFMT_NAME -*AutoFormatTabelle HID_AUTOFMT_TABLE -Formatbox sw:ListBox:DLG_AUTOFMT_TABLE:LB_FORMAT -Einfuegen sw:PushButton:DLG_AUTOFMT_TABLE:BTN_ADD -Loeschen sw:PushButton:DLG_AUTOFMT_TABLE:BTN_REMOVE -Zusaetze sw:MoreButton:DLG_AUTOFMT_TABLE:BTN_MORE -Ausrichtung sw:CheckBox:DLG_AUTOFMT_TABLE:BTN_ALIGNMENT -Umrandung sw:CheckBox:DLG_AUTOFMT_TABLE:BTN_BORDER -Schriftart sw:CheckBox:DLG_AUTOFMT_TABLE:BTN_FONT -Muster sw:CheckBox:DLG_AUTOFMT_TABLE:BTN_PATTERN -Zahlenformat SW:CHECKBOX:DLG_AUTOFMT_TABLE:BTN_NUMFORMAT -Umbenennen SW:PUSHBUTTON:DLG_AUTOFMT_TABLE:BTN_RENAME +*AutoFormatTabelle sym:SW_HID_AUTOFMT_TABLE +Formatbox sym:sw:ListBox:DLG_AUTOFMT_TABLE:LB_FORMAT +Einfuegen sym:sw:PushButton:DLG_AUTOFMT_TABLE:BTN_ADD +Loeschen sym:sw:PushButton:DLG_AUTOFMT_TABLE:BTN_REMOVE +Zusaetze sym:sw:MoreButton:DLG_AUTOFMT_TABLE:BTN_MORE +Ausrichtung sym:sw:CheckBox:DLG_AUTOFMT_TABLE:BTN_ALIGNMENT +Umrandung sym:sw:CheckBox:DLG_AUTOFMT_TABLE:BTN_BORDER +Schriftart sym:sw:CheckBox:DLG_AUTOFMT_TABLE:BTN_FONT +Muster sym:sw:CheckBox:DLG_AUTOFMT_TABLE:BTN_PATTERN +Zahlenformat sym:sw:CheckBox:DLG_AUTOFMT_TABLE:BTN_NUMFORMAT +Umbenennen sym:sw:PushButton:DLG_AUTOFMT_TABLE:BTN_RENAME -*BedingteFormatierung HID_SCDLG_CONDFORMAT sc:ModelessDialog:RID_SCDLG_CONDFORMAT -Bedingung1 sc:CheckBox:RID_SCDLG_CONDFORMAT:CBX_COND1 -PopupList1 sc:ListBox:RID_SCDLG_CONDFORMAT:LB_COND1_1 -Vergleich1 sc:ListBox:RID_SCDLG_CONDFORMAT:LB_COND1_2 -TextField1 sc:Edit:RID_SCDLG_CONDFORMAT:EDT_COND1_1 -TextField12 SC:EDIT:RID_SCDLG_CONDFORMAT:EDT_COND1_2 -Zellvorlage1 sc:ListBox:RID_SCDLG_CONDFORMAT:LB_COND1_TEMPLATE -Minimieren1 sc:ImageButton:RID_SCDLG_CONDFORMAT:RB_COND1_1 -Minimieren12 SC:IMAGEBUTTON:RID_SCDLG_CONDFORMAT:RB_COND1_2 -NewStyle1 sc:PushButton:RID_SCDLG_CONDFORMAT:BTN_COND1_NEW -Bedingung2 sc:CheckBox:RID_SCDLG_CONDFORMAT:CBX_COND2 -PopupList2 sc:ListBox:RID_SCDLG_CONDFORMAT:LB_COND2_1 -Vergleich2 sc:ListBox:RID_SCDLG_CONDFORMAT:LB_COND2_2 -TextField2 sc:Edit:RID_SCDLG_CONDFORMAT:EDT_COND2_1 -TextField22 SC:EDIT:RID_SCDLG_CONDFORMAT:EDT_COND2_2 -Zellvorlage2 sc:ListBox:RID_SCDLG_CONDFORMAT:LB_COND2_TEMPLATE -Minimieren2 sc:ImageButton:RID_SCDLG_CONDFORMAT:RB_COND2_1 -Minimieren22 SC:IMAGEBUTTON:RID_SCDLG_CONDFORMAT:RB_COND2_2 -NewStyle2 sc:PushButton:RID_SCDLG_CONDFORMAT:BTN_COND2_NEW -Bedingung3 sc:CheckBox:RID_SCDLG_CONDFORMAT:CBX_COND3 -PopupList3 sc:ListBox:RID_SCDLG_CONDFORMAT:LB_COND3_1 -Vergleich3 sc:ListBox:RID_SCDLG_CONDFORMAT:LB_COND3_2 -TextField3 sc:Edit:RID_SCDLG_CONDFORMAT:EDT_COND3_1 -TextField32 SC:EDIT:RID_SCDLG_CONDFORMAT:EDT_COND3_2 -Zellvorlage3 sc:ListBox:RID_SCDLG_CONDFORMAT:LB_COND3_TEMPLATE -Minimieren3 sc:ImageButton:RID_SCDLG_CONDFORMAT:RB_COND3_1 -Minimieren32 SC:IMAGEBUTTON:RID_SCDLG_CONDFORMAT:RB_COND3_2 -NewStyle3 sc:PushButton:RID_SCDLG_CONDFORMAT:BTN_COND3_NEW +*BedingteFormatierung sym:SC_HID_SCDLG_CONDFORMAT sym:sc:ModelessDialog:RID_SCDLG_CONDFORMAT +Bedingung1 sym:sc:CheckBox:RID_SCDLG_CONDFORMAT:CBX_COND1 +PopupList1 sym:sc:ListBox:RID_SCDLG_CONDFORMAT:LB_COND1_1 +Vergleich1 sym:sc:ListBox:RID_SCDLG_CONDFORMAT:LB_COND1_2 +TextField1 sym:sc:Edit:RID_SCDLG_CONDFORMAT:EDT_COND1_1 +TextField12 sym:sc:Edit:RID_SCDLG_CONDFORMAT:EDT_COND1_2 +Zellvorlage1 sym:sc:ListBox:RID_SCDLG_CONDFORMAT:LB_COND1_TEMPLATE +Minimieren1 sym:sc:ImageButton:RID_SCDLG_CONDFORMAT:RB_COND1_1 +Minimieren12 sym:sc:ImageButton:RID_SCDLG_CONDFORMAT:RB_COND1_2 +NewStyle1 sym:sc:PushButton:RID_SCDLG_CONDFORMAT:BTN_COND1_NEW +Bedingung2 sym:sc:CheckBox:RID_SCDLG_CONDFORMAT:CBX_COND2 +PopupList2 sym:sc:ListBox:RID_SCDLG_CONDFORMAT:LB_COND2_1 +Vergleich2 sym:sc:ListBox:RID_SCDLG_CONDFORMAT:LB_COND2_2 +TextField2 sym:sc:Edit:RID_SCDLG_CONDFORMAT:EDT_COND2_1 +TextField22 sym:sc:Edit:RID_SCDLG_CONDFORMAT:EDT_COND2_2 +Zellvorlage2 sym:sc:ListBox:RID_SCDLG_CONDFORMAT:LB_COND2_TEMPLATE +Minimieren2 sym:sc:ImageButton:RID_SCDLG_CONDFORMAT:RB_COND2_1 +Minimieren22 sym:sc:ImageButton:RID_SCDLG_CONDFORMAT:RB_COND2_2 +NewStyle2 sym:sc:PushButton:RID_SCDLG_CONDFORMAT:BTN_COND2_NEW +Bedingung3 sym:sc:CheckBox:RID_SCDLG_CONDFORMAT:CBX_COND3 +PopupList3 sym:sc:ListBox:RID_SCDLG_CONDFORMAT:LB_COND3_1 +Vergleich3 sym:sc:ListBox:RID_SCDLG_CONDFORMAT:LB_COND3_2 +TextField3 sym:sc:Edit:RID_SCDLG_CONDFORMAT:EDT_COND3_1 +TextField32 sym:sc:Edit:RID_SCDLG_CONDFORMAT:EDT_COND3_2 +Zellvorlage3 sym:sc:ListBox:RID_SCDLG_CONDFORMAT:LB_COND3_TEMPLATE +Minimieren3 sym:sc:ImageButton:RID_SCDLG_CONDFORMAT:RB_COND3_1 +Minimieren32 sym:sc:ImageButton:RID_SCDLG_CONDFORMAT:RB_COND3_2 +NewStyle3 sym:sc:PushButton:RID_SCDLG_CONDFORMAT:BTN_COND3_NEW -*Bemassung HID_PAGE_MEASURE -Liniendistanz cui:MetricField:RID_SVXPAGE_MEASURE:MTR_LINE_DIST -HLUeberhang cui:MetricField:RID_SVXPAGE_MEASURE:MTR_FLD_HELPLINE_OVERHANG -HLDistanz cui:MetricField:RID_SVXPAGE_MEASURE:MTR_FLD_HELPLINE_DIST -LinkeHL cui:MetricField:RID_SVXPAGE_MEASURE:MTR_FLD_HELPLINE1_LEN -RechteHL cui:MetricField:RID_SVXPAGE_MEASURE:MTR_FLD_HELPLINE2_LEN -AnzeigeUnterhalb cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_BELOW_REF_EDGE -AnzeigeParallel cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_PARALLEL -MetrikAnzeigen cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_SHOW_UNIT -MetrikList cui:ListBox:RID_SVXPAGE_MEASURE:LB_UNIT -Textposition HID_MEASURE_CTL_POSITION -AutomatischVertikal cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_AUTOPOSV -AutomatischHorizontal cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_AUTOPOSH -Preview HID_MEASURE_CTL_PREVIEW -DecimalPlaces cui:MetricField:RID_SVXPAGE_MEASURE:MTR_FLD_DECIMALPLACES +*Bemassung sym:CUI_HID_PAGE_MEASURE +Liniendistanz sym:cui:MetricField:RID_SVXPAGE_MEASURE:MTR_LINE_DIST +HLUeberhang sym:cui:MetricField:RID_SVXPAGE_MEASURE:MTR_FLD_HELPLINE_OVERHANG +HLDistanz sym:cui:MetricField:RID_SVXPAGE_MEASURE:MTR_FLD_HELPLINE_DIST +LinkeHL sym:cui:MetricField:RID_SVXPAGE_MEASURE:MTR_FLD_HELPLINE1_LEN +RechteHL sym:cui:MetricField:RID_SVXPAGE_MEASURE:MTR_FLD_HELPLINE2_LEN +AnzeigeUnterhalb sym:cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_BELOW_REF_EDGE +AnzeigeParallel sym:cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_PARALLEL +MetrikAnzeigen sym:cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_SHOW_UNIT +MetrikList sym:cui:ListBox:RID_SVXPAGE_MEASURE:LB_UNIT +Textposition sym:CUI_HID_MEASURE_CTL_POSITION +AutomatischVertikal sym:cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_AUTOPOSV +AutomatischHorizontal sym:cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_AUTOPOSH +Preview sym:CUI_HID_MEASURE_CTL_PREVIEW +DecimalPlaces sym:cui:MetricField:RID_SVXPAGE_MEASURE:MTR_FLD_DECIMALPLACES -*BenutzerwoerterbuchAnlegen HID_OPTIONS_DICT_NEW -WoerterbuchName cui:Edit:RID_SFXDLG_NEWDICT:ED_DICTNAME -Sprache cui:ListBox:RID_SFXDLG_NEWDICT:LB_DICTLANG -Ausnahme cui:CheckBox:RID_SFXDLG_NEWDICT:BTN_EXCEPT +*BenutzerwoerterbuchAnlegen sym:CUI_HID_OPTIONS_DICT_NEW +WoerterbuchName sym:cui:Edit:RID_SFXDLG_NEWDICT:ED_DICTNAME +Sprache sym:cui:ListBox:RID_SFXDLG_NEWDICT:LB_DICTLANG +Ausnahme sym:cui:CheckBox:RID_SFXDLG_NEWDICT:BTN_EXCEPT -*BenutzerwoerterbuchBearbeiten HID_OPTIONS_DICT_EDIT -Buch cui:ListBox:RID_SFXDLG_EDITDICT:LB_ALLDICTS -Sprache cui:ListBox:RID_SFXDLG_EDITDICT:LB_DICTLANG -Inhalt cui:Edit:RID_SFXDLG_EDITDICT:ED_WORD -Wort cui:Edit:RID_SFXDLG_EDITDICT:ED_WORD -Aufnehmen cui:PushButton:RID_SFXDLG_EDITDICT:PB_NEW_REPLACE -Neu cui:PushButton:RID_SFXDLG_EDITDICT:PB_NEW_REPLACE -Entfernen cui:PushButton:RID_SFXDLG_EDITDICT:PB_DELETE_REPLACE -Loeschen cui:PushButton:RID_SFXDLG_EDITDICT:PB_DELETE_REPLACE -ReplaceBy cui:Edit:RID_SFXDLG_EDITDICT:ED_REPLACE -WordList HID_OPTIONS_DICT_EDIT_ENTRIES_LIST +*BenutzerwoerterbuchBearbeiten sym:CUI_HID_OPTIONS_DICT_EDIT +Buch sym:cui:ListBox:RID_SFXDLG_EDITDICT:LB_ALLDICTS +Sprache sym:cui:ListBox:RID_SFXDLG_EDITDICT:LB_DICTLANG +Inhalt sym:cui:Edit:RID_SFXDLG_EDITDICT:ED_WORD +Wort sym:cui:Edit:RID_SFXDLG_EDITDICT:ED_WORD +Aufnehmen sym:cui:PushButton:RID_SFXDLG_EDITDICT:PB_NEW_REPLACE +Neu sym:cui:PushButton:RID_SFXDLG_EDITDICT:PB_NEW_REPLACE +Entfernen sym:cui:PushButton:RID_SFXDLG_EDITDICT:PB_DELETE_REPLACE +Loeschen sym:cui:PushButton:RID_SFXDLG_EDITDICT:PB_DELETE_REPLACE +ReplaceBy sym:cui:Edit:RID_SFXDLG_EDITDICT:ED_REPLACE +WordList sym:CUI_HID_OPTIONS_DICT_EDIT_ENTRIES_LIST -*BenutzerverzeichnisDefinieren HID_DLG_NEW_USER_IDX -NameBenutzerverzeichnis sw:Edit:DLG_NEW_USER_IDX:ED_NAME +*BenutzerverzeichnisDefinieren sym:SW_HID_DLG_NEW_USER_IDX +NameBenutzerverzeichnis sym:sw:Edit:DLG_NEW_USER_IDX:ED_NAME -*BereicheBearbeiten FN_EDIT_REGION -Bereich HID_REGION_TREE -BereichsName SW:EDIT:MD_EDIT_REGION:ED_RANAME -Geschuetzt sw:TriStateBox:MD_EDIT_REGION:CB_PROTECT -Ausblenden sw:TriStateBox:MD_EDIT_REGION:CB_HIDE -Bedingung sw:Edit:MD_EDIT_REGION:ED_CONDITION -Verknuepfung sw:TriStateBox:MD_EDIT_REGION:CB_FILE -DDE sw:CheckBox:MD_EDIT_REGION:CB_DDE -Dateiname sw:Edit:MD_EDIT_REGION:ED_FILE -OptionenBereich sw:ComboBox:MD_EDIT_REGION:LB_SUBREG -Aufheben SW:PUSHBUTTON:MD_EDIT_REGION:CB_DISMISS -' Spalten sw:PushButton:MD_INS_REGION:PB_COLUMNS -Durchsuchen sw:PushButton:MD_EDIT_REGION:PB_FILE -Passwort sw:CheckBox:MD_EDIT_REGION:CB_PASSWD -Optionen sw:PushButton:MD_EDIT_REGION:PB_OPTIONS -EnterPasswort sw:PushButton:MD_EDIT_REGION:PB_PASSWD +*BereicheBearbeiten .uno:EditRegion +Bereich sym:SW_HID_REGION_TREE +BereichsName sym:sw:Edit:MD_EDIT_REGION:ED_RANAME +Geschuetzt sym:sw:TriStateBox:MD_EDIT_REGION:CB_PROTECT +Ausblenden sym:sw:TriStateBox:MD_EDIT_REGION:CB_HIDE +Bedingung sym:sw:Edit:MD_EDIT_REGION:ED_CONDITION +Verknuepfung sym:sw:TriStateBox:MD_EDIT_REGION:CB_FILE +DDE sym:sw:CheckBox:MD_EDIT_REGION:CB_DDE +Dateiname sym:sw:Edit:MD_EDIT_REGION:ED_FILE +OptionenBereich sym:sw:ComboBox:MD_EDIT_REGION:LB_SUBREG +Aufheben sym:sw:PushButton:MD_EDIT_REGION:CB_DISMISS +' Spalten sym:sw:PushButton:MD_INS_REGION:PB_COLUMNS +Durchsuchen sym:sw:PushButton:MD_EDIT_REGION:PB_FILE +Passwort sym:sw:CheckBox:MD_EDIT_REGION:CB_PASSWD +Optionen sym:sw:PushButton:MD_EDIT_REGION:PB_OPTIONS +EnterPasswort sym:sw:PushButton:MD_EDIT_REGION:PB_PASSWD -*BereicheBearbeitenAutoText HID_BIB_BASE -Bereich SW:EDIT:DLG_BIB_BASE:ED_NAME -Pfad SW:LISTBOX:DLG_BIB_BASE:LB_PATH -Liste HID_GLOS_GROUP_TREE -Neu SW:PUSHBUTTON:DLG_BIB_BASE:PB_NEW -Loeschen SW:PUSHBUTTON:DLG_BIB_BASE:PB_DELETE -Umbenennen SW:PUSHBUTTON:DLG_BIB_BASE:PB_RENAME +*BereicheBearbeitenAutoText sym:SW_HID_BIB_BASE +Bereich sym:sw:Edit:DLG_BIB_BASE:ED_NAME +Pfad sym:sw:ListBox:DLG_BIB_BASE:LB_PATH +Liste sym:SW_HID_GLOS_GROUP_TREE +Neu sym:sw:PushButton:DLG_BIB_BASE:PB_NEW +Loeschen sym:sw:PushButton:DLG_BIB_BASE:PB_DELETE +Umbenennen sym:sw:PushButton:DLG_BIB_BASE:PB_RENAME -*BereicheSchuetzen HID_DLG_PASSWD_SECTION -PasswortName sfx2:Edit:DLG_PASSWD:ED_PASSWD_PASSWORD -PasswortBestaetigen sfx2:Edit:DLG_PASSWD:ED_PASSWD_CONFIRM +*BereicheSchuetzen sym:SW_HID_DLG_PASSWD_SECTION +PasswortName sym:sfx2:Edit:DLG_PASSWD:ED_PASSWD_PASSWORD +PasswortBestaetigen sym:sfx2:Edit:DLG_PASSWD:ED_PASSWD_CONFIRM -*Beschriftung HID_DLG_CAPTION FN_INSERT_CAPTION -Kategorie SW:COMBOBOX:DLG_CAPTION:BOX_CATEGORY -Numerierung SW:LISTBOX:DLG_CAPTION:BOX_FORMAT -BeschriftungsText SW:EDIT:DLG_CAPTION:EDT_TEXT -Position SW:LISTBOX:DLG_CAPTION:BOX_POS -WeitereOptionen sw:PushButton:DLG_CAPTION:BTN_OPTION -Separator sw:Edit:DLG_CAPTION:EDT_SEP +*Beschriftung sym:SW_HID_DLG_CAPTION .uno:InsertCaptionDialog +Kategorie sym:sw:ComboBox:DLG_CAPTION:BOX_CATEGORY +Numerierung sym:sw:ListBox:DLG_CAPTION:BOX_FORMAT +BeschriftungsText sym:sw:Edit:DLG_CAPTION:EDT_TEXT +Position sym:sw:ListBox:DLG_CAPTION:BOX_POS +WeitereOptionen sym:sw:PushButton:DLG_CAPTION:BTN_OPTION +Separator sym:sw:Edit:DLG_CAPTION:EDT_SEP -*BeschriftungsbereichFestlegen HID_COLROWNAMERANGES sc:ModelessDialog:RID_SCDLG_COLROWNAMERANGES -Bereich sc:ListBox:RID_SCDLG_COLROWNAMERANGES:LB_RANGE -Zellbereich sc:Edit:RID_SCDLG_COLROWNAMERANGES:ED_AREA -ButtonZellbereich sc:ImageButton:RID_SCDLG_COLROWNAMERANGES:RB_AREA -Spaltenkoepfe sc:RadioButton:RID_SCDLG_COLROWNAMERANGES:BTN_COLHEAD -Zeilenkoepfe sc:RadioButton:RID_SCDLG_COLROWNAMERANGES:BTN_ROWHEAD -Hinzufuegen sc:PushButton:RID_SCDLG_COLROWNAMERANGES:BTN_ADD -Loeschen sc:PushButton:RID_SCDLG_COLROWNAMERANGES:BTN_REMOVE -Datenbereich SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_DATA -ButtonDatenbereich SC:IMAGEBUTTON:RID_SCDLG_COLROWNAMERANGES:RB_DATA +*BeschriftungsbereichFestlegen sym:SC_HID_COLROWNAMERANGES sym:sc:ModelessDialog:RID_SCDLG_COLROWNAMERANGES +Bereich sym:sc:ListBox:RID_SCDLG_COLROWNAMERANGES:LB_RANGE +Zellbereich sym:sc:Edit:RID_SCDLG_COLROWNAMERANGES:ED_AREA +ButtonZellbereich sym:sc:ImageButton:RID_SCDLG_COLROWNAMERANGES:RB_AREA +Spaltenkoepfe sym:sc:RadioButton:RID_SCDLG_COLROWNAMERANGES:BTN_COLHEAD +Zeilenkoepfe sym:sc:RadioButton:RID_SCDLG_COLROWNAMERANGES:BTN_ROWHEAD +Hinzufuegen sym:sc:PushButton:RID_SCDLG_COLROWNAMERANGES:BTN_ADD +Loeschen sym:sc:PushButton:RID_SCDLG_COLROWNAMERANGES:BTN_REMOVE +Datenbereich sym:sc:Edit:RID_SCDLG_COLROWNAMERANGES:ED_DATA +ButtonDatenbereich sym:sc:ImageButton:RID_SCDLG_COLROWNAMERANGES:RB_DATA -*Bildschirmpraesentation SID_PRESENTATION -AlleDias sd:RadioButton:DLG_START_PRESENTATION:RBT_ALL -AbDia SD:RADIOBUTTON:DLG_START_PRESENTATION:RBT_AT_DIA -AbDiaName sd:ListBox:DLG_START_PRESENTATION:LB_DIAS -RangeCustomSlideShow sd:RadioButton:DLG_START_PRESENTATION:RBT_CUSTOMSHOW -'IndividuellePraesentation sd:RadioButton:DLG_START_PRESENTATION:RBT_CUSTOMSHOW -IndividuellePraesentationName sd:ListBox:DLG_START_PRESENTATION:LB_CUSTOMSHOW -Standard sd:RadioButton:DLG_START_PRESENTATION:RBT_STANDARD -Fenster sd:RadioButton:DLG_START_PRESENTATION:RBT_WINDOW -Auto sd:RadioButton:DLG_START_PRESENTATION:RBT_AUTO -Zeit sd:TimeField:DLG_START_PRESENTATION:TMF_PAUSE -LogoAnzeigen sd:CheckBox:DLG_START_PRESENTATION:CBX_AUTOLOGO -DiawechselManuel SD:CHECKBOX:DLG_START_PRESENTATION:CBX_MANUEL -MauszeigerSichtbar sd:CheckBox:DLG_START_PRESENTATION:CBX_MOUSEPOINTER -MauszeigerAlsStift SD:CHECKBOX:DLG_START_PRESENTATION:CBX_PEN -NavigatorSichtbar sd:CheckBox:DLG_START_PRESENTATION:CBX_NAVIGATOR -AnimationenZulassen sd:CheckBox:DLG_START_PRESENTATION:CBX_ANIMATION_ALLOWED -DiawechselAufHintergrund SD:CHECKBOX:DLG_START_PRESENTATION:CBX_CHANGE_PAGE -PraesentationImmerImVordergrund sd:CheckBox:DLG_START_PRESENTATION:CBX_ALWAYS_ON_TOP +*Bildschirmpraesentation .uno:Presentation +AlleDias sym:sd:RadioButton:DLG_START_PRESENTATION:RBT_ALL +AbDia sym:sd:RadioButton:DLG_START_PRESENTATION:RBT_AT_DIA +AbDiaName sym:sd:ListBox:DLG_START_PRESENTATION:LB_DIAS +RangeCustomSlideShow sym:sd:RadioButton:DLG_START_PRESENTATION:RBT_CUSTOMSHOW +'IndividuellePraesentation sym:sd:RadioButton:DLG_START_PRESENTATION:RBT_CUSTOMSHOW +IndividuellePraesentationName sym:sd:ListBox:DLG_START_PRESENTATION:LB_CUSTOMSHOW +Standard sym:sd:RadioButton:DLG_START_PRESENTATION:RBT_STANDARD +Fenster sym:sd:RadioButton:DLG_START_PRESENTATION:RBT_WINDOW +Auto sym:sd:RadioButton:DLG_START_PRESENTATION:RBT_AUTO +Zeit sym:sd:TimeField:DLG_START_PRESENTATION:TMF_PAUSE +LogoAnzeigen sym:sd:CheckBox:DLG_START_PRESENTATION:CBX_AUTOLOGO +DiawechselManuel sym:sd:CheckBox:DLG_START_PRESENTATION:CBX_MANUEL +MauszeigerSichtbar sym:sd:CheckBox:DLG_START_PRESENTATION:CBX_MOUSEPOINTER +MauszeigerAlsStift sym:sd:CheckBox:DLG_START_PRESENTATION:CBX_PEN +NavigatorSichtbar sym:sd:CheckBox:DLG_START_PRESENTATION:CBX_NAVIGATOR +AnimationenZulassen sym:sd:CheckBox:DLG_START_PRESENTATION:CBX_ANIMATION_ALLOWED +DiawechselAufHintergrund sym:sd:CheckBox:DLG_START_PRESENTATION:CBX_CHANGE_PAGE +PraesentationImmerImVordergrund sym:sd:CheckBox:DLG_START_PRESENTATION:CBX_ALWAYS_ON_TOP -*Browser SID_BROWSER +*Browser .uno:Beamer -*ChineseTranslation svx:CB_USE_VARIANTS:DLG_CHINESETRANSLATION -TChineseToSChinese HID_SVX_CHINESE_TRANSLATION_RB_CONVERSION_TO_SIMPLIFIED -SChineseToTChinese HID_SVX_CHINESE_TRANSLATION_RB_CONVERSION_TO_TRADITIONAL -'UseSARCharacter HID_SVX_CHINESE_TRANSLATION_CB_USE_VARIANTS -TranslateCommonTerms svx:CheckBox:DLG_CHINESETRANSLATION:CB_TRANSLATE_COMMONTERMS -EditTerms svx:PushButton:DLG_CHINESETRANSLATION:PB_EDITTERMS +*ChineseTranslation sym:svx:ModalDialog:DLG_CHINESETRANSLATION +TChineseToSChinese sym:SVX_HID_SVX_CHINESE_TRANSLATION_RB_CONVERSION_TO_SIMPLIFIED +SChineseToTChinese sym:SVX_HID_SVX_CHINESE_TRANSLATION_RB_CONVERSION_TO_TRADITIONAL +'UseSARCharacter sym:SVX_HID_SVX_CHINESE_TRANSLATION_CB_USE_VARIANTS +TranslateCommonTerms sym:svx:CheckBox:DLG_CHINESETRANSLATION:CB_TRANSLATE_COMMONTERMS +EditTerms sym:svx:PushButton:DLG_CHINESETRANSLATION:PB_EDITTERMS -*ChineseDictionary svx:ModalDialog:DLG_CHINESEDICTIONARY -TChineseToSChinese HID_SVX_CHINESE_DICTIONARY_RB_CONVERSION_TO_SIMPLIFIED -SChineseToTChinese HID_SVX_CHINESE_DICTIONARY_RB_CONVERSION_TO_TRADITIONAL -ReverseMapping HID_SVX_CHINESE_DICTIONARY_CB_REVERSE -Term svx:Edit:DLG_CHINESEDICTIONARY:ED_TERM -Mapping svx:Edit:DLG_CHINESEDICTIONARY:ED_MAPPING -Property svx:ListBox:DLG_CHINESEDICTIONARY:LB_PROPERTY -SToTMappingContent HID_SVX_CHINESE_DICTIONARY_LB_TO_TRADITIONAL -TToSMappingContent HID_SVX_CHINESE_DICTIONARY_LB_TO_SIMPLIFIED -Add svx:PushButton:DLG_CHINESEDICTIONARY:PB_ADD -Modify svx:PushButton:DLG_CHINESEDICTIONARY:PB_MODIFY -Delete svx:PushButton:DLG_CHINESEDICTIONARY:PB_DELETE +*ChineseDictionary sym:svx:ModalDialog:DLG_CHINESEDICTIONARY +TChineseToSChinese sym:SVX_HID_SVX_CHINESE_DICTIONARY_RB_CONVERSION_TO_SIMPLIFIED +SChineseToTChinese sym:SVX_HID_SVX_CHINESE_DICTIONARY_RB_CONVERSION_TO_TRADITIONAL +ReverseMapping sym:SVX_HID_SVX_CHINESE_DICTIONARY_CB_REVERSE +Term sym:svx:Edit:DLG_CHINESEDICTIONARY:ED_TERM +Mapping sym:svx:Edit:DLG_CHINESEDICTIONARY:ED_MAPPING +Property sym:svx:ListBox:DLG_CHINESEDICTIONARY:LB_PROPERTY +SToTMappingContent sym:SVX_HID_SVX_CHINESE_DICTIONARY_LB_TO_TRADITIONAL +TToSMappingContent sym:SVX_HID_SVX_CHINESE_DICTIONARY_LB_TO_SIMPLIFIED +Add sym:svx:PushButton:DLG_CHINESEDICTIONARY:PB_ADD +Modify sym:svx:PushButton:DLG_CHINESEDICTIONARY:PB_MODIFY +Delete sym:svx:PushButton:DLG_CHINESEDICTIONARY:PB_DELETE diff --git a/testautomation/global/win/dial_d_h.win b/testautomation/global/win/dial_d_h.win index 7418c331472a..ba6673edb39d 100755..100644 --- a/testautomation/global/win/dial_d_h.win +++ b/testautomation/global/win/dial_d_h.win @@ -1,446 +1,446 @@ -*DataFieldsFunctionDlg HID_SC_DPDATAFIELD -FunctionList sc:MultiListBox:RID_SCDLG_DPDATAFIELD:LB_FUNC -More sc:MoreButton:RID_SCDLG_DPDATAFIELD:BTN_MORE -ValueType sc:ListBox:RID_SCDLG_DPDATAFIELD:LB_TYPE -BaseField sc:ListBox:RID_SCDLG_DPDATAFIELD:LB_BASEFIELD -BaseItem sc:ListBox:RID_SCDLG_DPDATAFIELD:LB_BASEITEM - -*DataFieldsOptionsDlg HID_SC_DPSUBT_OPT -Sortby sc:ListBox:RID_SCDLG_DPSUBTOTAL_OPT:LB_SORT_BY -Ascending sc:RadioButton:RID_SCDLG_DPSUBTOTAL_OPT:RB_SORT_ASC -Descending sc:RadioButton:RID_SCDLG_DPSUBTOTAL_OPT:RB_SORT_DESC -Manual sc:RadioButton:RID_SCDLG_DPSUBTOTAL_OPT:RB_SORT_MAN -Layout sc:ListBox:RID_SCDLG_DPSUBTOTAL_OPT:LB_LAYOUT -EmptyLine sc:CheckBox:RID_SCDLG_DPSUBTOTAL_OPT:CB_LAYOUT_EMPTY -Show sc:CheckBox:RID_SCDLG_DPSUBTOTAL_OPT:CB_SHOW -ShowItems sc:NumericField:RID_SCDLG_DPSUBTOTAL_OPT:NF_SHOW -ShowFrom sc:ListBox:RID_SCDLG_DPSUBTOTAL_OPT:LB_SHOW_FROM -UsingField sc:ListBox:RID_SCDLG_DPSUBTOTAL_OPT:LB_SHOW_USING -HideItems HID_SC_DPSUBT_HIDE -Hierarchy sc:ListBox:RID_SCDLG_DPSUBTOTAL_OPT:LB_HIERARCHY - -*DateienAuswaehlen HID_FILEDLG_MAILMRGE2 -Hinzufuegen cui:PushButton:RID_SVXDLG_MULTIPATH:BTN_ADD_MULTIPATH -Loeschen cui:PushButton:RID_SVXDLG_MULTIPATH:BTN_DEL_MULTIPATH -Pfade cui:ListBox:RID_SVXDLG_MULTIPATH:LB_MULTIPATH - -*Datenpilot SID_OPENDLG_PIVOTTABLE -Zusaetze sc:MoreButton:RID_SCDLG_PIVOT_LAYOUT:BTN_MORE -DataPilotRange sc:Edit:RID_SCDLG_PIVOT_LAYOUT:ED_INAREA -DataPilotRangeShrink sc:ImageButton:RID_SCDLG_PIVOT_LAYOUT:RB_INAREA -AusgabeAb SC:LISTBOX:RID_SCDLG_PIVOT_LAYOUT:LB_OUTAREA -Bereich SC:EDIT:RID_SCDLG_PIVOT_LAYOUT:ED_OUTAREA -Minimieren SC:IMAGEBUTTON:RID_SCDLG_PIVOT_LAYOUT:RB_OUTAREA -LeerzeilenIgnorieren SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_IGNEMPTYROWS -KategorieErkennung SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_DETECTCAT -GesamtSpalten SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALCOL -GesamtZeilen SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALROW -Entfernen sc:PushButton:RID_SCDLG_PIVOT_LAYOUT:BTN_REMOVE -Optionen sc:PushButton:RID_SCDLG_PIVOT_LAYOUT:BTN_OPTIONS -AddFilter sc:CheckBox:RID_SCDLG_PIVOT_LAYOUT:BTN_FILTER -EnableDrillToDetails sc:CheckBox:RID_SCDLG_PIVOT_LAYOUT:BTN_DRILLDOWN -DataPilotPage HID_SC_DPLAY_PAGE -DataPilotColumn HID_SC_DPLAY_COLUMN -DataPilotRow HID_SC_DPLAY_ROW -DataPilotData HID_SC_DPLAY_DATA -DataPilotSelection HID_SC_DPLAY_SELECT - -*DatenbankAustauschen sw:ModalDialog:DLG_CHANGE_DB -VerfuegbareDatenbanken HID_DB_SELECTION_TLB - -*Datenbankauswahl sw:ModalDialog:DLG_DBSELECTION - -*DatenbankbereichFestlegen SID_DEFINE_DBNAME -BereichsName sc:ComboBox:RID_SCDLG_DBNAMES:ED_NAME -EnthaeltSpaltenkoepfe sc:CheckBox:RID_SCDLG_DBNAMES:BTN_HEADER -Hinzufuegen sc:PushButton:RID_SCDLG_DBNAMES:BTN_ADD -Loeschen sc:PushButton:RID_SCDLG_DBNAMES:BTN_REMOVE -Aendern sc:PushButton:RID_SCDLG_DBNAMES:BTN_ADD -Bereich sc:Edit:RID_SCDLG_DBNAMES:ED_DBAREA -BereichMin sc:ImageButton:RID_SCDLG_DBNAMES:RB_DBAREA -Zusaetze sc:MoreButton:RID_SCDLG_DBNAMES:BTN_MORE -Spaltenkoepfe sc:CheckBox:RID_SCDLG_DBNAMES:BTN_HEADER -Zellen sc:CheckBox:RID_SCDLG_DBNAMES:BTN_SIZE -Formatierung sc:CheckBox:RID_SCDLG_DBNAMES:BTN_FORMAT -ImportierteDaten sc:CheckBox:RID_SCDLG_DBNAMES:BTN_STRIPDATA - -*DatenbankbereichWaehlen SID_SELECT_DB -Bereiche HID_SC_SELENTRY_LIST - -*Datenfeld HID_SC_PIVOTSUBT -Keine sc:RadioButton:RID_SCDLG_PIVOTSUBT:RB_NONE -Automatisch sc:RadioButton:RID_SCDLG_PIVOTSUBT:RB_AUTO -Benutzerdefiniert sc:RadioButton:RID_SCDLG_PIVOTSUBT:RB_USER -Funktionen sc:MultiListBox:RID_SCDLG_PIVOTSUBT:LB_FUNC -OhneDatenAnzeigen sc:CheckBox:RID_SCDLG_PIVOTSUBT:CB_SHOWALL -Options sc:PushButton:RID_SCDLG_PIVOTSUBT:BTN_OPTIONS - -*DatenquelleAuswaehlen HID_DATAPILOT_DATABASE -Datenbank sc:ListBox:RID_SCDLG_DAPIDATA:LB_DATABASE -Datenquelle sc:ComboBox:RID_SCDLG_DAPIDATA:CB_OBJECT -Art sc:ListBox:RID_SCDLG_DAPIDATA:LB_OBJTYPE - -*DatenquelleLiteraturdatenbank HID_DLG_DBCHANGE -Auswahl HID_SELECTION_TLB - - -*Dokumenteigenschaften SID_DOCINFO - -*DokumentSchuetzen FID_PROTECT_DOC -Passwort HID_PASSWD_DOC -Bestaetigung sfx2:Edit:DLG_PASSWD:ED_PASSWD_CONFIRM -IstVerdeckt sfx2:Edit:DLG_PASSWD:ED_PASSWD_USER - -*DokumentVorlagen SID_DOCTEMPLATE -NeueDokumentVorlage sfx2:Edit:DLG_DOC_TEMPLATE:ED_NAME -Bereiche sfx2:ListBox:DLG_DOC_TEMPLATE:LB_SECTION -Vorlagen sfx2:ListBox:DLG_DOC_TEMPLATE:LB_STYLESHEETS -Bearbeiten sfx2:PushButton:DLG_DOC_TEMPLATE:BT_EDIT -Verwalten sfx2:PushButton:DLG_DOC_TEMPLATE:BT_ORGANIZE - -*Drei_D_Effekte SID_3D_WIN -Geometrie SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_GEO -Darstellung SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_REPRESENTATION -Beleuchtung SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT -Texturen SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEXTURE -Material SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_MATERIAL -Aktualisieren SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_UPDATE -Zuweisen SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_ASSIGN -Perspektive SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_PERSPECTIVE -Rotationskoerper SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LATHE_OBJ -In_3D_Umwandeln SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_CHANGE_TO_3D -Objektspezifisch SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_OBJ -Flach SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_FLAT -Kugelfoermig SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_SPHERE -NormalenUmkehren SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_INVERT -ZweiSeitigeBeleuchtung SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TWO_SIDED_LIGHTING -Doppelseitig SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_DOUBLE_SIDED -Drei_DSchatten SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_SHADOW_3D -Lichquelle1 SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT_1 -Lichquelle2 SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT_2 -Lichquelle3 SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT_3 -Lichquelle4 SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT_4 -Lichquelle5 SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT_5 -Lichquelle6 SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT_6 -Lichquelle7 SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT_7 -Lichquelle8 SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT_8 -FarbeUeberDialogAmbient SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_AMBIENT_COLOR -FarbeUeberDialogSpecular SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_SPECULAR_COLOR -FarbeUeberDialogEmission SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_EMISSION_COLOR -FarbeUeberDialogLicht SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT_COLOR -Schwarzweiss SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_LUMINANCE -FarbeTextur SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_COLOR -Textur SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_REPLACE -Textur_Schattierung SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_MODULATE -Textur_Schattierung_Farbe SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_BLEND -ObjektspezifischX SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_OBJECT_X -ObjektspezifischY SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_OBJECT_Y -ParallelX SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_PARALLEL_X -KreisfoermigX SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_CIRCLE_X -ParallelY SVX:IMAGEBUTTON:RID_SVXFLOAt_3D:BTN_TEX_PARALLEL_Y -KreisfoermigY SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_CIRCLE_Y -Filtern SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_FILTER -MaterialFarbe SVX:LISTBOX:RID_SVXFLOAT_3D:LB_MAT_COLOR -EmissionsFarbe SVX:LISTBOX:RID_SVXFLOAT_3D:LB_MAT_EMISSION -SpecularFarbe SVX:LISTBOX:RID_SVXFLOAT_3D:LB_MAT_SPECULAR -MaterialFarbeUeberDialog SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_MAT_COLOR -Materialeditor SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_MATERIAL -UmwandelnIn3D SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_CHANGE_TO_3D -UmwandelnInRotationskoerper SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LATHE_OBJ -Umgebungslicht SVX:LISTBOX:RID_SVXFLOAT_3D:LB_AMBIENTLIGHT -Horizontale_Segmente SVX:NUMERICFIELD:RID_SVXFLOAT_3D:NUM_HORIZONTAL -Vertikale_Segmente SVX:NUMERICFIELD:RID_SVXFLOAT_3D:NUM_VERTICAL -Kantenrundung svx:MetricField:RID_SVXFLOAT_3D:MTR_PERCENT_DIAGONAL -Tiefenskalierung svx:MetricField:RID_SVXFLOAT_3D:MTR_BACKSCALE -Endwinkel svx:MetricField:RID_SVXFLOAT_3D:MTR_END_ANGLE -Tiefe svx:MetricField:RID_SVXFLOAT_3D:MTR_DEPTH -Modus svx:ListBox:RID_SVXFLOAT_3D:LB_SHADEMODE -Papierneigung svx:MetricField:RID_SVXFLOAT_3D:MTR_SLANT -Entfernung svx:MetricField:RID_SVXFLOAT_3D:MTR_DISTANCE -Brennweite svx:MetricField:RID_SVXFLOAT_3D:MTR_FOCAL_LENGTH - -*DruckbereicheBearbeiten HID_SCPAGE_AREAS -Druckbereich sc:Edit:RID_SCDLG_AREAS:ED_PRINTAREA -Wiederholungszeile sc:Edit:RID_SCDLG_AREAS:ED_REPEATROW -Wiederholungsspalte sc:Edit:RID_SCDLG_AREAS:ED_REPEATCOL -DruckbereichListe sc:ListBox:RID_SCDLG_AREAS:LB_PRINTAREA -WiederholungszeileListe sc:ListBox:RID_SCDLG_AREAS:LB_REPEATROW -WiederholungsspalteListe sc:ListBox:RID_SCDLG_AREAS:LB_REPEATCOL -DruckbereichButton sc:ImageButton:RID_SCDLG_AREAS:RB_PRINTAREA -WiederholungszeileButton sc:ImageButton:RID_SCDLG_AREAS:RB_REPEATROW -WiederholungsspalteButton sc:ImageButton:RID_SCDLG_AREAS:RB_REPEATCOL - -*Druckbestaetigung HID_PRINTMONITOR - -*DruckerZusaetzeDraw HID_SD_PRINT_OPTIONS -Zeichnung sd:CheckBox:TP_PRINT_OPTIONS:CBX_DRAW -Notizen sd:CheckBox:TP_PRINT_OPTIONS:CBX_NOTES -Handzettel sd:CheckBox:TP_PRINT_OPTIONS:CBX_HANDOUTS -Gliederung sd:CheckBox:TP_PRINT_OPTIONS:CBX_OUTLINE -Seitenname sd:CheckBox:TP_PRINT_OPTIONS:CBX_PAGENAME -Datum sd:CheckBox:TP_PRINT_OPTIONS:CBX_DATE -Zeit sd:CheckBox:TP_PRINT_OPTIONS:CBX_TIME -AusgeblendeteSeiten sd:CheckBox:TP_PRINT_OPTIONS:CBX_HIDDEN_PAGES -Standard sd:RadioButton:TP_PRINT_OPTIONS:RBT_DEFAULT -SeitengroesseAnpassen sd:RadioButton:TP_PRINT_OPTIONS:RBT_PAGESIZE -SeitenKacheln sd:RadioButton:TP_PRINT_OPTIONS:RBT_PAGETILE -Prospekt sd:RadioButton:TP_PRINT_OPTIONS:RBT_BOOKLET -Vorderseite sd:CheckBox:TP_PRINT_OPTIONS:CBX_FRONT -Rueckseite sd:CheckBox:TP_PRINT_OPTIONS:CBX_BACK -AusDruckereinstellung sd:CheckBox:TP_PRINT_OPTIONS:CBX_PAPERBIN - -*DruckerZusaetzeWriter HID_OPTPRINT_PAGE -Grafiken sw:CheckBox:TP_OPTPRINT_PAGE:CB_PGRF -Kontrollfelder sw:CheckBox:TP_OPTPRINT_PAGE:CB_CTRLFLD -Hintergrund sw:CheckBox:TP_OPTPRINT_PAGE:CB_BACKGROUND -HiddenText sw:CheckBox:TP_OPTPRINT_PAGE:CB_HIDDEN_TEXT -TextPlaceholder sw:CheckBox:TP_OPTPRINT_PAGE:CB_TEXT_PLACEHOLDER -RightToLeft sw:CheckBox:TP_OPTPRINT_PAGE:CB_PROSPECT_RTL -SchwarzDrucken sw:CheckBox:TP_OPTPRINT_PAGE:CB_BLACK_FONT -LinkeSeiten sw:CheckBox:TP_OPTPRINT_PAGE:CB_LEFTP -RechteSeiten sw:CheckBox:TP_OPTPRINT_PAGE:CB_RIGHTP -Prospekt sw:CheckBox:TP_OPTPRINT_PAGE:CB_PROSPECT -Keine sw:RadioButton:TP_OPTPRINT_PAGE:RB_NO -NurNotizen sw:RadioButton:TP_OPTPRINT_PAGE:RB_ONLY -Dokumentende sw:RadioButton:TP_OPTPRINT_PAGE:RB_END -Seitenende sw:RadioButton:TP_OPTPRINT_PAGE:RB_PAGEEND -Fax sw:ListBox:TP_OPTPRINT_PAGE:LB_FAX -AusDruckereinstellung sw:CheckBox:TP_OPTPRINT_PAGE:CB_PAPERFROMSETUP - -*Duplizieren SID_COPYOBJECTS -AnzahlAnKopien sd:NumericField:DLG_COPY:NUM_FLD_COPIES -XAchse sd:MetricField:DLG_COPY:MTR_FLD_MOVE_X -YAchse sd:MetricField:DLG_COPY:MTR_FLD_MOVE_Y -Drehwinkel sd:MetricField:DLG_COPY:MTR_FLD_ANGLE -Hoehe sd:MetricField:DLG_COPY:MTR_FLD_HEIGHT -Breite sd:MetricField:DLG_COPY:MTR_FLD_WIDTH -Anfang sd:ListBox:DLG_COPY:LB_START_COLOR -Ende sd:ListBox:DLG_COPY:LB_END_COLOR - -*DVVerwalten SID_ORGANIZER -Befehle sfx2:MenuButton:DLG_ORGANIZE:BTN_EDIT -WelcheDatei sfx2:PushButton:DLG_ORGANIZE:BTN_FILES -ListeLinks HID_CTL_ORGANIZER_LEFT -ListeRechts HID_CTL_ORGANIZER_RIGHT -PopuplisteLinks sfx2:ListBox:DLG_ORGANIZE:LB_LEFT_TYP -PopuplisteRechts sfx2:ListBox:DLG_ORGANIZE:LB_RIGHT_TYP -AddressBook sfx2:PushButton:DLG_ORGANIZE:BTN_ADDRESSTEMPLATE - -*EinfuegenSpalten FN_TABLE_INSERT_COL_DLG -Anzahl cui:NumericField:DLG_INS_ROW_COL:ED_COUNT -Davor cui:RadioButton:DLG_INS_ROW_COL:CB_POS_BEFORE -Dahinter cui:RadioButton:DLG_INS_ROW_COL:CB_POS_AFTER - -*EinfuegenZeilen FN_TABLE_INSERT_ROW_DLG -Anzahl cui:NumericField:DLG_INS_ROW_COL:ED_COUNT -Davor cui:RadioButton:DLG_INS_ROW_COL:CB_POS_BEFORE -Dahinter cui:RadioButton:DLG_INS_ROW_COL:CB_POS_AFTER - -*EbeneEinfuegenDlg SID_INSERTLAYER -EbenenName sd:Edit:DLG_INSERT_LAYER:EDT_NAME -LayerTitle sd:Edit:DLG_INSERT_LAYER:EDT_TITLE -LayerDescription sd:MultiLineEdit:DLG_INSERT_LAYER:EDT_DESCRIPTION -Sichtbar sd:CheckBox:DLG_INSERT_LAYER:CBX_VISIBLE -Druckbar sd:CheckBox:DLG_INSERT_LAYER:CBX_PRINTABLE -Gesperrt sd:CheckBox:DLG_INSERT_LAYER:CBX_LOCKED - -*EbeneAendernDlg SID_MODIFYLAYER -EbenenName sd:Edit:DLG_INSERT_LAYER:EDT_NAME -LayerTitle sd:Edit:DLG_INSERT_LAYER:EDT_TITLE -LayerDescription sd:MultiLineEdit:DLG_INSERT_LAYER:EDT_DESCRIPTION -Sichtbar sd:CheckBox:DLG_INSERT_LAYER:CBX_VISIBLE -Druckbar sd:CheckBox:DLG_INSERT_LAYER:CBX_PRINTABLE -Gesperrt sd:CheckBox:DLG_INSERT_LAYER:CBX_LOCKED - -*Eingabefeld HID_FLD_INPUT -Titel SW:EDIT:DLG_FLD_INPUT:ED_LABEL -EingabeText sw:MultiLineEdit:DLG_FLD_INPUT:ED_EDIT -Weiter SW:PUSHBUTTON:DLG_FLD_INPUT:PB_NEXT - -*EtikettenSynchronisieren HID_SYNC_BTN -Synchronisieren SW:PUSHBUTTON:DLG_SYNC_BTN:BTN_SYNC - -*ExportCalc HID_SC_INPORTOPT -Zeichensatzliste sc:ListBox:RID_SCDLG_IMPORTOPT:LB_FONT -Feldtrenner sc:ComboBox:RID_SCDLG_IMPORTOPT:ED_FIELDSEP -Texttrenner sc:ComboBox:RID_SCDLG_IMPORTOPT:ED_TEXTSEP -Zeichensatz sc:ListBox:RID_SCDLG_IMPORTOPT:DDLB_FONT -FixedWidth sc:CheckBox:RID_SCDLG_IMPORTOPT:CB_FIXEDWIDTH -SaveAsShown sc:CheckBox:RID_SCDLG_IMPORTOPT:CB_SAVESHOWN - -*ExterneDaten sc:ModalDialog:RID_SCDLG_LINKAREA -URLFeld HID_SCDLG_LINKAREAURL -DateiAuswahl sc:PushButton:RID_SCDLG_LINKAREA:BTN_BROWSE -TabellenListBox sc:MultiListBox:RID_SCDLG_LINKAREA:LB_RANGES -Aktualisieren sc:CheckBox:RID_SCDLG_LINKAREA:BTN_RELOAD -Zeit sc:NumericField:RID_SCDLG_LINKAREA:NF_DELAY - -*ExterneDatenquelle HID_DATAPILOT_SERVICE -Service sc:ListBox:RID_SCDLG_DAPISERVICE:LB_SERVICE -Quelle sc:Edit:RID_SCDLG_DAPISERVICE:ED_SOURCE -Quellname sc:Edit:RID_SCDLG_DAPISERVICE:ED_NAME -Benutzer sc:Edit:RID_SCDLG_DAPISERVICE:ED_USER -Kennwort sc:Edit:RID_SCDLG_DAPISERVICE:ED_PASSWD - -*ExtrasOptionenDlg HID_OFADLG_OPTIONS_TREE -Optionsliste HID_OFADLG_TREELISTBOX -Zurueck cui:PushButton:RID_OFADLG_OPTIONS_TREE:PB_BACK - -*FeldAuswahl HID_FIELD_SEL_WIN -Liste HID_FIELD_SEL - -*FeldbefehlBearbeitenDraw SD:MODALDIALOG:DLG_FIELD_MODIFY -FeldtypFix SD:RADIOBUTTON:DLG_FIELD_MODIFY:RBT_FIX -FeldtypVariabel SD:RADIOBUTTON:DLG_FIELD_MODIFY:RBT_VAR - -*FeldbefehlBearbeitenDatenbank HID_EDIT_FLD_DB -Bearbeiten HID_FLDEDT_ADDRESS -Feldtyp SW:LISTBOX:TP_FLD_DB:LB_DBTYPE -Datenbankauswahl HID_DB_SELECTION_TLB -Bedingung SW:EDIT:TP_FLD_DB:ED_DBCONDITION -Satznummer SW:EDIT:TP_FLD_DB:ED_DBSETNUMBER -AusDatenbank SW:RADIOBUTTON:TP_FLD_DB:RB_DBOWNFORMAT -Selbstdefiniert SW:RADIOBUTTON:TP_FLD_DB:RB_DBFORMAT -Formatliste SW:LISTBOX:TP_FLD_DB:LB_DBFORMAT -Zahlenformat SW:LISTBOX:TP_FLD_DB:LB_DBNUMFORMAT - -*FeldbefehlBearbeitenDokument HID_EDIT_FLD_DOK -Bearbeiten HID_FLDEDT_ADDRESS -Feldtyp SW:LISTBOX:TP_FLD_DOK:LB_DOKTYPE -Auswahl SW:LISTBOX:TP_FLD_DOK:LB_DOKSELECTION -Editfeld SW:EDIT:TP_FLD_DOK:ED_DOKVALUE -DokLevel SW:NUMERICFIELD:TP_FLD_DOK:ED_DOKLEVEL -Formatliste SW:LISTBOX:TP_FLD_DOK:LB_DOKFORMAT -Zahlenformat SW:LISTBOX:TP_FLD_DOK:LB_DOKNUMFORMAT -InhaltFix SW:CHECKBOX:TP_FLD_DOK:CB_DOKFIXEDCONTENT -VorigerFeldbefehl HID_DLG_FLDEDT_PREV -NaechsterFeldbefehl HID_DLG_FLDEDT_NEXT - -*FeldbefehlBearbeitenDokumentinfo HID_EDIT_FLD_DOKINF -Bearbeiten HID_FLDEDT_ADDRESS -Feldtyp HID_FIELD_DINF_TYPE -Auswahl SW:LISTBOX:TP_FLD_DOKINF:LB_DOKINFSELECTION -Zahlenformat SW:LISTBOX:TP_FLD_DOKINF:LB_DOKINFFORMAT -InhaltFix SW:CHECKBOX:TP_FLD_DOKINF:CB_DOKINFFIXEDCONTENT - -*FeldbefehlBearbeitenFunktionen HID_EDIT_FLD_FUNC -Bearbeiten HID_FLDEDT_ADDRESS -Feldtyp SW:LISTBOX:TP_FLD_FUNC:LB_FUNCTYPE -Auswahl SW:LISTBOX:TP_FLD_FUNC:LB_FUNCSELECTION -Formatliste SW:LISTBOX:TP_FLD_FUNC:LB_FUNCFORMAT -Bedingung SW:EDIT:TP_FLD_FUNC:ED_FUNCNAME -Dann SW:EDIT:TP_FLD_FUNC:ED_FUNCCOND1 -Sonst SW:EDIT:TP_FLD_FUNC:ED_FUNCCOND2 -Wert SW:EDIT:TP_FLD_FUNC:ED_FUNCVALUE -MakroButton SW:PUSHBUTTON:TP_FLD_FUNC:BT_FUNCMACRO -Namefeld SW:EDIT:TP_FLD_FUNC:ED_FUNCNAME -Hinweis SW:EDIT:TP_FLD_FUNC:ED_FUNCVALUE -Makroname SW:EDIT:TP_FLD_FUNC:ED_FUNCNAME -Platzhalter SW:EDIT:TP_FLD_FUNC:ED_FUNCNAME -Texteinfuegen SW:EDIT:TP_FLD_FUNC:ED_FUNCVALUE -AddListEntry sw:PushButton:TP_FLD_FUNC:PB_LISTADD -NewListEntry sw:Edit:TP_FLD_FUNC:ED_LISTITEM -EntrysList sw:ListBox:TP_FLD_FUNC:LB_LISTITEMS -RemoveEntry sw:PushButton:TP_FLD_FUNC:PB_LISTREMOVE -MoveUpEntry sw:PushButton:TP_FLD_FUNC:PB_LISTUP -MoveDownEntry sw:PushButton:TP_FLD_FUNC:PB_LISTDOWN -EntryName sw:Edit:TP_FLD_FUNC:ED_LISTNAME -VorigerFeldbefehl HID_DLG_FLDEDT_PREV -NaechsterFeldbefehl HID_DLG_FLDEDT_NEXT - -*FeldbefehlBearbeitenReferenz HID_EDIT_FLD_REF -Bearbeiten HID_FLDEDT_ADDRESS -Feldtyp SW:LISTBOX:TP_FLD_REF:LB_REFTYPE -Auswahl SW:LISTBOX:TP_FLD_REF:LB_REFSELECTION -Formatliste SW:LISTBOX:TP_FLD_REF:LB_REFFORMAT -Namefeld SW:EDIT:TP_FLD_REF:ED_REFNAME -Wert SW:EDIT:TP_FLD_REF:ED_REFVALUE - -*FeldbefehlBearbeitenVariable HID_EDIT_FLD_VAR -Bearbeiten HID_FLDEDT_ADDRESS -Feldtyp SW:LISTBOX:TP_FLD_VAR:LB_VARTYPE -Auswahl SW:LISTBOX:TP_FLD_VAR:LB_VARSELECTION -Formatliste SW:LISTBOX:TP_FLD_VAR:LB_VARFORMAT -Zahlenformat SW:LISTBOX:TP_FLD_VAR:LB_VARNUMFORMAT -NameText SW:EDIT:TP_FLD_VAR:ED_VARNAME -Wert SW:EDIT:TP_FLD_VAR:ED_VARVALUE -Hinweis SW:EDIT:TP_FLD_VAR:ED_VARVALUE -Korrektur SW:EDIT:TP_FLD_VAR:ED_VARVALUE -Formel SW:EDIT:TP_FLD_VAR:ED_VARVALUE -Unsichtbar SW:CHECKBOX:TP_FLD_VAR:CB_VARINVISIBLE -Uebernehmen HID_FLDVAR_APPLY -Loeschen HID_FLDVAR_DELETE - -*Filterauswahl HID_DLG_FILTER_SELECT -Filter uui:ListBox:DLG_FILTER_SELECT:LB_FILTERS - -*Fontwork SID_FONTWORK -KreisAuswahl HID_FONTWORK_CTL_FORMS -Aus HID_FONTWORK_TBI_STYLE_OFF -Drehen HID_FONTWORK_TBI_STYLE_ROTATE -Aufrecht HID_FONTWORK_TBI_STYLE_UPRIGHT -HorizontalKippen HID_FONTWORK_TBI_STYLE_SLANTX -VertikalKippen HID_FONTWORK_TBI_STYLE_SLANTY -Laufrichtgung HID_FONTWORK_TBI_ADJUST_MIRROR -Linksbuendig HID_FONTWORK_TBI_ADJUST_LEFT -Zentriert HID_FONTWORK_TBI_ADJUST_CENTER -Rechtsbuendig HID_FONTWORK_TBI_ADJUST_RIGHT -AutoTextgroesse HID_FONTWORK_TBI_ADJUST_AUTOSIZE -Abstand svx:MetricField:RID_SVXDLG_FONTWORK:MTR_FLD_DISTANCE -Einzug svx:MetricField:RID_SVXDLG_FONTWORK:MTR_FLD_TEXTSTART -Kontur HID_FONTWORK_TBI_SHOWFORM -Buchstabenumrandung HID_FONTWORK_TBI_OUTLINE -SchattenaAus HID_FONTWORK_TBI_SHADOW_OFF -Senkrecht HID_FONTWORK_TBI_SHADOW_NORMAL -Kippen HID_FONTWORK_TBI_SHADOW_SLANT -AbstandX svx:MetricField:RID_SVXDLG_FONTWORK:MTR_FLD_SHADOW_X -AbstandY svx:MetricField:RID_SVXDLG_FONTWORK:MTR_FLD_SHADOW_Y -Schattenfarbe svx:ListBox:RID_SVXDLG_FONTWORK:CLB_SHADOW_COLOR - -*FormSpeichernUnter HID_NUM_NAMES -FormName sw:Edit:DLG_NUM_NAMES:ED_FORM -FormListe sw:ListBox:DLG_NUM_NAMES:LB_FORM - -*FormularNavigator SID_FM_SHOW_FMEXPLORER -Liste HID_FORM_NAVIGATOR - -*FussnoteBearbeiten FN_EDIT_FOOTNOTE -Automatisch sw:RadioButton:DLG_INS_FOOTNOTE:RB_NUMBER_AUTO -Zeichen sw:RadioButton:DLG_INS_FOOTNOTE:RB_NUMBER_CHAR -ZeichenText sw:Edit:DLG_INS_FOOTNOTE:ED_NUMBER_CHAR -Durchsuchen SW:PUSHBUTTON:DLG_INS_FOOTNOTE:BT_NUMBER_CHAR -Fussnote SW:RADIOBUTTON:DLG_INS_FOOTNOTE:RB_TYPE_FTN -Endnote SW:RADIOBUTTON:DLG_INS_FOOTNOTE:RB_TYPE_ENDNOTE -VorherigeFussnote sw:ImageButton:DLG_INS_FOOTNOTE:BT_PREV -NachfolgendeFussnote sw:ImageButton:DLG_INS_FOOTNOTE:BT_NEXT - -*FussnoteEinfuegen FN_INSERT_FOOTNOTE_DLG -Automatisch sw:RadioButton:DLG_INS_FOOTNOTE:RB_NUMBER_AUTO -Zeichen sw:RadioButton:DLG_INS_FOOTNOTE:RB_NUMBER_CHAR -ZeichenText sw:Edit:DLG_INS_FOOTNOTE:ED_NUMBER_CHAR -Durchsuchen SW:PUSHBUTTON:DLG_INS_FOOTNOTE:BT_NUMBER_CHAR -Fussnote SW:RADIOBUTTON:DLG_INS_FOOTNOTE:RB_TYPE_FTN -Endnote SW:RADIOBUTTON:DLG_INS_FOOTNOTE:RB_TYPE_ENDNOTE - -*Gallerybeamer SID_BROWSER -Anzeige HID_GALLERY_WINDOW - -*Gestalter SID_STYLE_DESIGNER -TBGestalterRight HID_TEMPLDLG_TOOLBOX_RIGHT -TBGestalter HID_TEMPLDLG_TOOLBOX_LEFT -Absatzvorlagen SID_STYLE_FAMILY2 -Zeichenvorlagen SID_STYLE_FAMILY1 -Rahmenvorlagen SID_STYLE_FAMILY3 -Seitenvorlagen SID_STYLE_FAMILY4 -Grafikvorlagen SID_STYLE_FAMILY2 -Praesentationsvorlagen SID_STYLE_FAMILY5 -Numerierungsvorlagen SID_STYLE_FAMILY5 -Zellvorlagen SID_STYLE_FAMILY2 -Giesskanne HID_TEMPLDLG_WATERCAN -AusSelektion HID_TEMPLDLG_NEWBYEXAMPLE -Aktualisieren HID_TEMPLDLG_UPDATEBYEXAMPLE -Vorlagenliste HID_TEMPLATE_FMT -Gruppenliste HID_TEMPLATE_FILTER +*DataFieldsFunctionDlg sym:SC_HID_SC_DPDATAFIELD +FunctionList sym:sc:MultiListBox:RID_SCDLG_DPDATAFIELD:LB_FUNC +More sym:sc:MoreButton:RID_SCDLG_DPDATAFIELD:BTN_MORE +ValueType sym:sc:ListBox:RID_SCDLG_DPDATAFIELD:LB_TYPE +BaseField sym:sc:ListBox:RID_SCDLG_DPDATAFIELD:LB_BASEFIELD +BaseItem sym:sc:ListBox:RID_SCDLG_DPDATAFIELD:LB_BASEITEM + +*DataFieldsOptionsDlg sym:SC_HID_SC_DPSUBT_OPT +Sortby sym:sc:ListBox:RID_SCDLG_DPSUBTOTAL_OPT:LB_SORT_BY +Ascending sym:sc:RadioButton:RID_SCDLG_DPSUBTOTAL_OPT:RB_SORT_ASC +Descending sym:sc:RadioButton:RID_SCDLG_DPSUBTOTAL_OPT:RB_SORT_DESC +Manual sym:sc:RadioButton:RID_SCDLG_DPSUBTOTAL_OPT:RB_SORT_MAN +Layout sym:sc:ListBox:RID_SCDLG_DPSUBTOTAL_OPT:LB_LAYOUT +EmptyLine sym:sc:CheckBox:RID_SCDLG_DPSUBTOTAL_OPT:CB_LAYOUT_EMPTY +Show sym:sc:CheckBox:RID_SCDLG_DPSUBTOTAL_OPT:CB_SHOW +ShowItems sym:sc:NumericField:RID_SCDLG_DPSUBTOTAL_OPT:NF_SHOW +ShowFrom sym:sc:ListBox:RID_SCDLG_DPSUBTOTAL_OPT:LB_SHOW_FROM +UsingField sym:sc:ListBox:RID_SCDLG_DPSUBTOTAL_OPT:LB_SHOW_USING +HideItems sym:SC_HID_SC_DPSUBT_HIDE +Hierarchy sym:sc:ListBox:RID_SCDLG_DPSUBTOTAL_OPT:LB_HIERARCHY + +*DateienAuswaehlen sym:SW_HID_FILEDLG_MAILMRGE2 +Hinzufuegen sym:cui:PushButton:RID_SVXDLG_MULTIPATH:BTN_ADD_MULTIPATH +Loeschen sym:cui:PushButton:RID_SVXDLG_MULTIPATH:BTN_DEL_MULTIPATH +Pfade sym:cui:ListBox:RID_SVXDLG_MULTIPATH:LB_MULTIPATH + +*Datenpilot .uno:DataDataPilotRun +Zusaetze sym:sc:MoreButton:RID_SCDLG_PIVOT_LAYOUT:BTN_MORE +DataPilotRange sym:sc:Edit:RID_SCDLG_PIVOT_LAYOUT:ED_INAREA +DataPilotRangeShrink sym:sc:ImageButton:RID_SCDLG_PIVOT_LAYOUT:RB_INAREA +AusgabeAb sym:sc:ListBox:RID_SCDLG_PIVOT_LAYOUT:LB_OUTAREA +Bereich sym:sc:Edit:RID_SCDLG_PIVOT_LAYOUT:ED_OUTAREA +Minimieren sym:sc:ImageButton:RID_SCDLG_PIVOT_LAYOUT:RB_OUTAREA +LeerzeilenIgnorieren sym:sc:CheckBox:RID_SCDLG_PIVOT_LAYOUT:BTN_IGNEMPTYROWS +KategorieErkennung sym:sc:CheckBox:RID_SCDLG_PIVOT_LAYOUT:BTN_DETECTCAT +GesamtSpalten sym:sc:CheckBox:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALCOL +GesamtZeilen sym:sc:CheckBox:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALROW +Entfernen sym:sc:PushButton:RID_SCDLG_PIVOT_LAYOUT:BTN_REMOVE +Optionen sym:sc:PushButton:RID_SCDLG_PIVOT_LAYOUT:BTN_OPTIONS +AddFilter sym:sc:CheckBox:RID_SCDLG_PIVOT_LAYOUT:BTN_FILTER +EnableDrillToDetails sym:sc:CheckBox:RID_SCDLG_PIVOT_LAYOUT:BTN_DRILLDOWN +DataPilotPage sym:SC_HID_SC_DPLAY_PAGE +DataPilotColumn sym:SC_HID_SC_DPLAY_COLUMN +DataPilotRow sym:SC_HID_SC_DPLAY_ROW +DataPilotData sym:SC_HID_SC_DPLAY_DATA +DataPilotSelection sym:SC_HID_SC_DPLAY_SELECT + +*DatenbankAustauschen sym:sw:ModalDialog:DLG_CHANGE_DB +VerfuegbareDatenbanken sym:SW_HID_DB_SELECTION_TLB + +*Datenbankauswahl sym:sw:ModalDialog:DLG_DBSELECTION + +*DatenbankbereichFestlegen .uno:DefineDBName +BereichsName sym:sc:ComboBox:RID_SCDLG_DBNAMES:ED_NAME +EnthaeltSpaltenkoepfe sym:sc:CheckBox:RID_SCDLG_DBNAMES:BTN_HEADER +Hinzufuegen sym:sc:PushButton:RID_SCDLG_DBNAMES:BTN_ADD +Loeschen sym:sc:PushButton:RID_SCDLG_DBNAMES:BTN_REMOVE +Aendern sym:sc:PushButton:RID_SCDLG_DBNAMES:BTN_ADD +Bereich sym:sc:Edit:RID_SCDLG_DBNAMES:ED_DBAREA +BereichMin sym:sc:ImageButton:RID_SCDLG_DBNAMES:RB_DBAREA +Zusaetze sym:sc:MoreButton:RID_SCDLG_DBNAMES:BTN_MORE +Spaltenkoepfe sym:sc:CheckBox:RID_SCDLG_DBNAMES:BTN_HEADER +Zellen sym:sc:CheckBox:RID_SCDLG_DBNAMES:BTN_SIZE +Formatierung sym:sc:CheckBox:RID_SCDLG_DBNAMES:BTN_FORMAT +ImportierteDaten sym:sc:CheckBox:RID_SCDLG_DBNAMES:BTN_STRIPDATA + +*DatenbankbereichWaehlen .uno:SelectDB +Bereiche sym:SC_HID_SC_SELENTRY_LIST + +*Datenfeld sym:SC_HID_SC_PIVOTSUBT +Keine sym:sc:RadioButton:RID_SCDLG_PIVOTSUBT:RB_NONE +Automatisch sym:sc:RadioButton:RID_SCDLG_PIVOTSUBT:RB_AUTO +Benutzerdefiniert sym:sc:RadioButton:RID_SCDLG_PIVOTSUBT:RB_USER +Funktionen sym:sc:MultiListBox:RID_SCDLG_PIVOTSUBT:LB_FUNC +OhneDatenAnzeigen sym:sc:CheckBox:RID_SCDLG_PIVOTSUBT:CB_SHOWALL +Options sym:sc:PushButton:RID_SCDLG_PIVOTSUBT:BTN_OPTIONS + +*DatenquelleAuswaehlen sym:SC_HID_DATAPILOT_DATABASE +Datenbank sym:sc:ListBox:RID_SCDLG_DAPIDATA:LB_DATABASE +Datenquelle sym:sc:ComboBox:RID_SCDLG_DAPIDATA:CB_OBJECT +Art sym:sc:ListBox:RID_SCDLG_DAPIDATA:LB_OBJTYPE + +*DatenquelleLiteraturdatenbank sym:EXTENSIONS_HID_DLG_DBCHANGE +Auswahl sym:EXTENSIONS_HID_SELECTION_TLB + + +*Dokumenteigenschaften .uno:SetDocumentProperties + +*DokumentSchuetzen .uno:ToolProtectionDocument +Passwort sym:SC_HID_PASSWD_DOC +Bestaetigung sym:sfx2:Edit:DLG_PASSWD:ED_PASSWD_CONFIRM +IstVerdeckt sym:sfx2:Edit:DLG_PASSWD:ED_PASSWD_USER + +*DokumentVorlagen .uno:SaveAsTemplate +NeueDokumentVorlage sym:sfx2:Edit:DLG_DOC_TEMPLATE:ED_NAME +Bereiche sym:sfx2:ListBox:DLG_DOC_TEMPLATE:LB_SECTION +Vorlagen sym:sfx2:ListBox:DLG_DOC_TEMPLATE:LB_STYLESHEETS +Bearbeiten sym:sfx2:PushButton:DLG_DOC_TEMPLATE:BT_EDIT +Verwalten sym:sfx2:PushButton:DLG_DOC_TEMPLATE:BT_ORGANIZE + +*Drei_D_Effekte .uno:Window3D +Geometrie sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_GEO +Darstellung sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_REPRESENTATION +Beleuchtung sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_LIGHT +Texturen sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_TEXTURE +Material sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_MATERIAL +Aktualisieren sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_UPDATE +Zuweisen sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_ASSIGN +Perspektive sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_PERSPECTIVE +Rotationskoerper sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_LATHE_OBJ +In_3D_Umwandeln sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_CHANGE_TO_3D +Objektspezifisch sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_NORMALS_OBJ +Flach sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_NORMALS_FLAT +Kugelfoermig sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_NORMALS_SPHERE +NormalenUmkehren sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_NORMALS_INVERT +ZweiSeitigeBeleuchtung sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_TWO_SIDED_LIGHTING +Doppelseitig sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_DOUBLE_SIDED +Drei_DSchatten sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_SHADOW_3D +Lichquelle1 sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_LIGHT_1 +Lichquelle2 sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_LIGHT_2 +Lichquelle3 sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_LIGHT_3 +Lichquelle4 sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_LIGHT_4 +Lichquelle5 sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_LIGHT_5 +Lichquelle6 sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_LIGHT_6 +Lichquelle7 sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_LIGHT_7 +Lichquelle8 sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_LIGHT_8 +FarbeUeberDialogAmbient sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_AMBIENT_COLOR +FarbeUeberDialogSpecular sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_SPECULAR_COLOR +FarbeUeberDialogEmission sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_EMISSION_COLOR +FarbeUeberDialogLicht sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_LIGHT_COLOR +Schwarzweiss sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_TEX_LUMINANCE +FarbeTextur sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_TEX_COLOR +Textur sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_TEX_REPLACE +Textur_Schattierung sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_TEX_MODULATE +Textur_Schattierung_Farbe sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_TEX_BLEND +ObjektspezifischX sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_TEX_OBJECT_X +ObjektspezifischY sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_TEX_OBJECT_Y +ParallelX sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_TEX_PARALLEL_X +KreisfoermigX sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_TEX_CIRCLE_X +ParallelY sym:svx:ImageButton:RID_SVXFLOAt_3D:BTN_TEX_PARALLEL_Y +KreisfoermigY sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_TEX_CIRCLE_Y +Filtern sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_TEX_FILTER +MaterialFarbe sym:svx:ListBox:RID_SVXFLOAT_3D:LB_MAT_COLOR +EmissionsFarbe sym:svx:ListBox:RID_SVXFLOAT_3D:LB_MAT_EMISSION +SpecularFarbe sym:svx:ListBox:RID_SVXFLOAT_3D:LB_MAT_SPECULAR +MaterialFarbeUeberDialog sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_MAT_COLOR +Materialeditor sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_MATERIAL +UmwandelnIn3D sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_CHANGE_TO_3D +UmwandelnInRotationskoerper sym:svx:ImageButton:RID_SVXFLOAT_3D:BTN_LATHE_OBJ +Umgebungslicht sym:svx:ListBox:RID_SVXFLOAT_3D:LB_AMBIENTLIGHT +Horizontale_Segmente sym:svx:NumericField:RID_SVXFLOAT_3D:NUM_HORIZONTAL +Vertikale_Segmente sym:svx:NumericField:RID_SVXFLOAT_3D:NUM_VERTICAL +Kantenrundung sym:svx:MetricField:RID_SVXFLOAT_3D:MTR_PERCENT_DIAGONAL +Tiefenskalierung sym:svx:MetricField:RID_SVXFLOAT_3D:MTR_BACKSCALE +Endwinkel sym:svx:MetricField:RID_SVXFLOAT_3D:MTR_END_ANGLE +Tiefe sym:svx:MetricField:RID_SVXFLOAT_3D:MTR_DEPTH +Modus sym:svx:ListBox:RID_SVXFLOAT_3D:LB_SHADEMODE +Papierneigung sym:svx:MetricField:RID_SVXFLOAT_3D:MTR_SLANT +Entfernung sym:svx:MetricField:RID_SVXFLOAT_3D:MTR_DISTANCE +Brennweite sym:svx:MetricField:RID_SVXFLOAT_3D:MTR_FOCAL_LENGTH + +*DruckbereicheBearbeiten sym:SC_HID_SCPAGE_AREAS +Druckbereich sym:sc:Edit:RID_SCDLG_AREAS:ED_PRINTAREA +Wiederholungszeile sym:sc:Edit:RID_SCDLG_AREAS:ED_REPEATROW +Wiederholungsspalte sym:sc:Edit:RID_SCDLG_AREAS:ED_REPEATCOL +DruckbereichListe sym:sc:ListBox:RID_SCDLG_AREAS:LB_PRINTAREA +WiederholungszeileListe sym:sc:ListBox:RID_SCDLG_AREAS:LB_REPEATROW +WiederholungsspalteListe sym:sc:ListBox:RID_SCDLG_AREAS:LB_REPEATCOL +DruckbereichButton sym:sc:ImageButton:RID_SCDLG_AREAS:RB_PRINTAREA +WiederholungszeileButton sym:sc:ImageButton:RID_SCDLG_AREAS:RB_REPEATROW +WiederholungsspalteButton sym:sc:ImageButton:RID_SCDLG_AREAS:RB_REPEATCOL + +*Druckbestaetigung sym:SFX2_HID_PRINTMONITOR + +*DruckerZusaetzeDraw sym:SD_HID_SD_PRINT_OPTIONS +Zeichnung sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_DRAW +Notizen sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_NOTES +Handzettel sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_HANDOUTS +Gliederung sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_OUTLINE +Seitenname sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_PAGENAME +Datum sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_DATE +Zeit sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_TIME +AusgeblendeteSeiten sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_HIDDEN_PAGES +Standard sym:sd:RadioButton:TP_PRINT_OPTIONS:RBT_DEFAULT +SeitengroesseAnpassen sym:sd:RadioButton:TP_PRINT_OPTIONS:RBT_PAGESIZE +SeitenKacheln sym:sd:RadioButton:TP_PRINT_OPTIONS:RBT_PAGETILE +Prospekt sym:sd:RadioButton:TP_PRINT_OPTIONS:RBT_BOOKLET +Vorderseite sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_FRONT +Rueckseite sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_BACK +AusDruckereinstellung sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_PAPERBIN + +*DruckerZusaetzeWriter sym:SW_HID_OPTPRINT_PAGE +Grafiken sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_PGRF +Kontrollfelder sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_CTRLFLD +Hintergrund sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_BACKGROUND +HiddenText sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_HIDDEN_TEXT +TextPlaceholder sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_TEXT_PLACEHOLDER +RightToLeft sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_PROSPECT_RTL +SchwarzDrucken sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_BLACK_FONT +LinkeSeiten sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_LEFTP +RechteSeiten sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_RIGHTP +Prospekt sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_PROSPECT +Keine sym:sw:RadioButton:TP_OPTPRINT_PAGE:RB_NO +NurNotizen sym:sw:RadioButton:TP_OPTPRINT_PAGE:RB_ONLY +Dokumentende sym:sw:RadioButton:TP_OPTPRINT_PAGE:RB_END +Seitenende sym:sw:RadioButton:TP_OPTPRINT_PAGE:RB_PAGEEND +Fax sym:sw:ListBox:TP_OPTPRINT_PAGE:LB_FAX +AusDruckereinstellung sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_PAPERFROMSETUP + +*Duplizieren .uno:CopyObjects +AnzahlAnKopien sym:sd:NumericField:DLG_COPY:NUM_FLD_COPIES +XAchse sym:sd:MetricField:DLG_COPY:MTR_FLD_MOVE_X +YAchse sym:sd:MetricField:DLG_COPY:MTR_FLD_MOVE_Y +Drehwinkel sym:sd:MetricField:DLG_COPY:MTR_FLD_ANGLE +Hoehe sym:sd:MetricField:DLG_COPY:MTR_FLD_HEIGHT +Breite sym:sd:MetricField:DLG_COPY:MTR_FLD_WIDTH +Anfang sym:sd:ListBox:DLG_COPY:LB_START_COLOR +Ende sym:sd:ListBox:DLG_COPY:LB_END_COLOR + +*DVVerwalten .uno:Organizer +Befehle sym:sfx2:MenuButton:DLG_ORGANIZE:BTN_EDIT +WelcheDatei sym:sfx2:PushButton:DLG_ORGANIZE:BTN_FILES +ListeLinks sym:SFX2_HID_CTL_ORGANIZER_LEFT +ListeRechts sym:SFX2_HID_CTL_ORGANIZER_RIGHT +PopuplisteLinks sym:sfx2:ListBox:DLG_ORGANIZE:LB_LEFT_TYP +PopuplisteRechts sym:sfx2:ListBox:DLG_ORGANIZE:LB_RIGHT_TYP +AddressBook sym:sfx2:PushButton:DLG_ORGANIZE:BTN_ADDRESSTEMPLATE + +*EinfuegenSpalten .uno:InsertColumnDialog +Anzahl sym:cui:NumericField:DLG_INS_ROW_COL:ED_COUNT +Davor sym:cui:RadioButton:DLG_INS_ROW_COL:CB_POS_BEFORE +Dahinter sym:cui:RadioButton:DLG_INS_ROW_COL:CB_POS_AFTER + +*EinfuegenZeilen .uno:InsertRowDialog +Anzahl sym:cui:NumericField:DLG_INS_ROW_COL:ED_COUNT +Davor sym:cui:RadioButton:DLG_INS_ROW_COL:CB_POS_BEFORE +Dahinter sym:cui:RadioButton:DLG_INS_ROW_COL:CB_POS_AFTER + +*EbeneEinfuegenDlg .uno:InsertLayer +EbenenName sym:sd:Edit:DLG_INSERT_LAYER:EDT_NAME +LayerTitle sym:sd:Edit:DLG_INSERT_LAYER:EDT_TITLE +LayerDescription sym:sd:MultiLineEdit:DLG_INSERT_LAYER:EDT_DESCRIPTION +Sichtbar sym:sd:CheckBox:DLG_INSERT_LAYER:CBX_VISIBLE +Druckbar sym:sd:CheckBox:DLG_INSERT_LAYER:CBX_PRINTABLE +Gesperrt sym:sd:CheckBox:DLG_INSERT_LAYER:CBX_LOCKED + +*EbeneAendernDlg .uno:ModifyLayer +EbenenName sym:sd:Edit:DLG_INSERT_LAYER:EDT_NAME +LayerTitle sym:sd:Edit:DLG_INSERT_LAYER:EDT_TITLE +LayerDescription sym:sd:MultiLineEdit:DLG_INSERT_LAYER:EDT_DESCRIPTION +Sichtbar sym:sd:CheckBox:DLG_INSERT_LAYER:CBX_VISIBLE +Druckbar sym:sd:CheckBox:DLG_INSERT_LAYER:CBX_PRINTABLE +Gesperrt sym:sd:CheckBox:DLG_INSERT_LAYER:CBX_LOCKED + +*Eingabefeld sym:SW_HID_FLD_INPUT +Titel sym:sw:Edit:DLG_FLD_INPUT:ED_LABEL +EingabeText sym:sw:MultiLineEdit:DLG_FLD_INPUT:ED_EDIT +Weiter sym:sw:PushButton:DLG_FLD_INPUT:PB_NEXT + +*EtikettenSynchronisieren sym:SW_HID_SYNC_BTN +Synchronisieren sym:sw:PushButton:DLG_SYNC_BTN:BTN_SYNC + +*ExportCalc sym:SC_HID_SC_INPORTOPT +Zeichensatzliste sym:sc:ListBox:RID_SCDLG_IMPORTOPT:LB_FONT +Feldtrenner sym:sc:ComboBox:RID_SCDLG_IMPORTOPT:ED_FIELDSEP +Texttrenner sym:sc:ComboBox:RID_SCDLG_IMPORTOPT:ED_TEXTSEP +Zeichensatz sym:sc:ListBox:RID_SCDLG_IMPORTOPT:DDLB_FONT +FixedWidth sym:sc:CheckBox:RID_SCDLG_IMPORTOPT:CB_FIXEDWIDTH +SaveAsShown sym:sc:CheckBox:RID_SCDLG_IMPORTOPT:CB_SAVESHOWN + +*ExterneDaten sym:sc:ModalDialog:RID_SCDLG_LINKAREA +URLFeld sym:SC_HID_SCDLG_LINKAREAURL +DateiAuswahl sym:sc:PushButton:RID_SCDLG_LINKAREA:BTN_BROWSE +TabellenListBox sym:sc:MultiListBox:RID_SCDLG_LINKAREA:LB_RANGES +Aktualisieren sym:sc:CheckBox:RID_SCDLG_LINKAREA:BTN_RELOAD +Zeit sym:sc:NumericField:RID_SCDLG_LINKAREA:NF_DELAY + +*ExterneDatenquelle sym:SC_HID_DATAPILOT_SERVICE +Service sym:sc:ListBox:RID_SCDLG_DAPISERVICE:LB_SERVICE +Quelle sym:sc:Edit:RID_SCDLG_DAPISERVICE:ED_SOURCE +Quellname sym:sc:Edit:RID_SCDLG_DAPISERVICE:ED_NAME +Benutzer sym:sc:Edit:RID_SCDLG_DAPISERVICE:ED_USER +Kennwort sym:sc:Edit:RID_SCDLG_DAPISERVICE:ED_PASSWD + +*ExtrasOptionenDlg sym:CUI_HID_OFADLG_OPTIONS_TREE +Optionsliste sym:CUI_HID_OFADLG_TREELISTBOX +Zurueck sym:cui:PushButton:RID_OFADLG_OPTIONS_TREE:PB_BACK + +*FeldAuswahl sym:SVX_HID_FIELD_SEL_WIN +Liste sym:SVX_HID_FIELD_SEL + +*FeldbefehlBearbeitenDraw sym:sd:ModalDialog:DLG_FIELD_MODIFY +FeldtypFix sym:sd:RadioButton:DLG_FIELD_MODIFY:RBT_FIX +FeldtypVariabel sym:sd:RadioButton:DLG_FIELD_MODIFY:RBT_VAR + +*FeldbefehlBearbeitenDatenbank sym:SW_HID_EDIT_FLD_DB +Bearbeiten sym:SW_HID_FLDEDT_ADDRESS +Feldtyp sym:sw:ListBox:TP_FLD_DB:LB_DBTYPE +Datenbankauswahl sym:SW_HID_DB_SELECTION_TLB +Bedingung sym:sw:Edit:TP_FLD_DB:ED_DBCONDITION +Satznummer sym:sw:Edit:TP_FLD_DB:ED_DBSETNUMBER +AusDatenbank sym:sw:RadioButton:TP_FLD_DB:RB_DBOWNFORMAT +Selbstdefiniert sym:sw:RadioButton:TP_FLD_DB:RB_DBFORMAT +Formatliste sym:sw:ListBox:TP_FLD_DB:LB_DBFORMAT +Zahlenformat sym:sw:ListBox:TP_FLD_DB:LB_DBNUMFORMAT + +*FeldbefehlBearbeitenDokument sym:SW_HID_EDIT_FLD_DOK +Bearbeiten sym:SW_HID_FLDEDT_ADDRESS +Feldtyp sym:sw:ListBox:TP_FLD_DOK:LB_DOKTYPE +Auswahl sym:sw:ListBox:TP_FLD_DOK:LB_DOKSELECTION +Editfeld sym:sw:Edit:TP_FLD_DOK:ED_DOKVALUE +DokLevel sym:sw:NumericField:TP_FLD_DOK:ED_DOKLEVEL +Formatliste sym:sw:ListBox:TP_FLD_DOK:LB_DOKFORMAT +Zahlenformat sym:sw:ListBox:TP_FLD_DOK:LB_DOKNUMFORMAT +InhaltFix sym:sw:CheckBox:TP_FLD_DOK:CB_DOKFIXEDCONTENT +VorigerFeldbefehl sym:SW_HID_DLG_FLDEDT_PREV +NaechsterFeldbefehl sym:SW_HID_DLG_FLDEDT_NEXT + +*FeldbefehlBearbeitenDokumentinfo sym:SW_HID_EDIT_FLD_DOKINF +Bearbeiten sym:SW_HID_FLDEDT_ADDRESS +Feldtyp sym:SW_HID_FIELD_DINF_TYPE +Auswahl sym:sw:ListBox:TP_FLD_DOKINF:LB_DOKINFSELECTION +Zahlenformat sym:sw:ListBox:TP_FLD_DOKINF:LB_DOKINFFORMAT +InhaltFix sym:sw:CheckBox:TP_FLD_DOKINF:CB_DOKINFFIXEDCONTENT + +*FeldbefehlBearbeitenFunktionen sym:SW_HID_EDIT_FLD_FUNC +Bearbeiten sym:SW_HID_FLDEDT_ADDRESS +Feldtyp sym:sw:ListBox:TP_FLD_FUNC:LB_FUNCTYPE +Auswahl sym:sw:ListBox:TP_FLD_FUNC:LB_FUNCSELECTION +Formatliste sym:sw:ListBox:TP_FLD_FUNC:LB_FUNCFORMAT +Bedingung sym:sw:Edit:TP_FLD_FUNC:ED_FUNCNAME +Dann sym:sw:Edit:TP_FLD_FUNC:ED_FUNCCOND1 +Sonst sym:sw:Edit:TP_FLD_FUNC:ED_FUNCCOND2 +Wert sym:sw:Edit:TP_FLD_FUNC:ED_FUNCVALUE +MakroButton sym:sw:PushButton:TP_FLD_FUNC:BT_FUNCMACRO +Namefeld sym:sw:Edit:TP_FLD_FUNC:ED_FUNCNAME +Hinweis sym:sw:Edit:TP_FLD_FUNC:ED_FUNCVALUE +Makroname sym:sw:Edit:TP_FLD_FUNC:ED_FUNCNAME +Platzhalter sym:sw:Edit:TP_FLD_FUNC:ED_FUNCNAME +Texteinfuegen sym:sw:Edit:TP_FLD_FUNC:ED_FUNCVALUE +AddListEntry sym:sw:PushButton:TP_FLD_FUNC:PB_LISTADD +NewListEntry sym:sw:Edit:TP_FLD_FUNC:ED_LISTITEM +EntrysList sym:sw:ListBox:TP_FLD_FUNC:LB_LISTITEMS +RemoveEntry sym:sw:PushButton:TP_FLD_FUNC:PB_LISTREMOVE +MoveUpEntry sym:sw:PushButton:TP_FLD_FUNC:PB_LISTUP +MoveDownEntry sym:sw:PushButton:TP_FLD_FUNC:PB_LISTDOWN +EntryName sym:sw:Edit:TP_FLD_FUNC:ED_LISTNAME +VorigerFeldbefehl sym:SW_HID_DLG_FLDEDT_PREV +NaechsterFeldbefehl sym:SW_HID_DLG_FLDEDT_NEXT + +*FeldbefehlBearbeitenReferenz sym:SW_HID_EDIT_FLD_REF +Bearbeiten sym:SW_HID_FLDEDT_ADDRESS +Feldtyp sym:sw:ListBox:TP_FLD_REF:LB_REFTYPE +Auswahl sym:sw:ListBox:TP_FLD_REF:LB_REFSELECTION +Formatliste sym:sw:ListBox:TP_FLD_REF:LB_REFFORMAT +Namefeld sym:sw:Edit:TP_FLD_REF:ED_REFNAME +Wert sym:sw:Edit:TP_FLD_REF:ED_REFVALUE + +*FeldbefehlBearbeitenVariable sym:SW_HID_EDIT_FLD_VAR +Bearbeiten sym:SW_HID_FLDEDT_ADDRESS +Feldtyp sym:sw:ListBox:TP_FLD_VAR:LB_VARTYPE +Auswahl sym:sw:ListBox:TP_FLD_VAR:LB_VARSELECTION +Formatliste sym:sw:ListBox:TP_FLD_VAR:LB_VARFORMAT +Zahlenformat sym:sw:ListBox:TP_FLD_VAR:LB_VARNUMFORMAT +NameText sym:sw:Edit:TP_FLD_VAR:ED_VARNAME +Wert sym:sw:Edit:TP_FLD_VAR:ED_VARVALUE +Hinweis sym:sw:Edit:TP_FLD_VAR:ED_VARVALUE +Korrektur sym:sw:Edit:TP_FLD_VAR:ED_VARVALUE +Formel sym:sw:Edit:TP_FLD_VAR:ED_VARVALUE +Unsichtbar sym:sw:CheckBox:TP_FLD_VAR:CB_VARINVISIBLE +Uebernehmen sym:SW_HID_FLDVAR_APPLY +Loeschen sym:SW_HID_FLDVAR_DELETE + +*Filterauswahl sym:UUI_HID_DLG_FILTER_SELECT +Filter sym:uui:ListBox:DLG_FILTER_SELECT:LB_FILTERS + +*Fontwork .uno:FontWork +KreisAuswahl sym:SVX_HID_FONTWORK_CTL_FORMS +Aus sym:SVX_HID_FONTWORK_TBI_STYLE_OFF +Drehen sym:SVX_HID_FONTWORK_TBI_STYLE_ROTATE +Aufrecht sym:SVX_HID_FONTWORK_TBI_STYLE_UPRIGHT +HorizontalKippen sym:SVX_HID_FONTWORK_TBI_STYLE_SLANTX +VertikalKippen sym:SVX_HID_FONTWORK_TBI_STYLE_SLANTY +Laufrichtgung sym:SVX_HID_FONTWORK_TBI_ADJUST_MIRROR +Linksbuendig sym:SVX_HID_FONTWORK_TBI_ADJUST_LEFT +Zentriert sym:SVX_HID_FONTWORK_TBI_ADJUST_CENTER +Rechtsbuendig sym:SVX_HID_FONTWORK_TBI_ADJUST_RIGHT +AutoTextgroesse sym:SVX_HID_FONTWORK_TBI_ADJUST_AUTOSIZE +Abstand sym:svx:MetricField:RID_SVXDLG_FONTWORK:MTR_FLD_DISTANCE +Einzug sym:svx:MetricField:RID_SVXDLG_FONTWORK:MTR_FLD_TEXTSTART +Kontur sym:SVX_HID_FONTWORK_TBI_SHOWFORM +Buchstabenumrandung sym:SVX_HID_FONTWORK_TBI_OUTLINE +SchattenaAus sym:SVX_HID_FONTWORK_TBI_SHADOW_OFF +Senkrecht sym:SVX_HID_FONTWORK_TBI_SHADOW_NORMAL +Kippen sym:SVX_HID_FONTWORK_TBI_SHADOW_SLANT +AbstandX sym:svx:MetricField:RID_SVXDLG_FONTWORK:MTR_FLD_SHADOW_X +AbstandY sym:svx:MetricField:RID_SVXDLG_FONTWORK:MTR_FLD_SHADOW_Y +Schattenfarbe sym:svx:ListBox:RID_SVXDLG_FONTWORK:CLB_SHADOW_COLOR + +*FormSpeichernUnter sym:SW_HID_NUM_NAMES +FormName sym:sw:Edit:DLG_NUM_NAMES:ED_FORM +FormListe sym:sw:ListBox:DLG_NUM_NAMES:LB_FORM + +*FormularNavigator sym:SFXDOCKINGWINDOW_ShowFmExplorer +Liste sym:SVX_HID_FORM_NAVIGATOR + +*FussnoteBearbeiten .uno:EditFootnote +Automatisch sym:sw:RadioButton:DLG_INS_FOOTNOTE:RB_NUMBER_AUTO +Zeichen sym:sw:RadioButton:DLG_INS_FOOTNOTE:RB_NUMBER_CHAR +ZeichenText sym:sw:Edit:DLG_INS_FOOTNOTE:ED_NUMBER_CHAR +Durchsuchen sym:sw:PushButton:DLG_INS_FOOTNOTE:BT_NUMBER_CHAR +Fussnote sym:sw:RadioButton:DLG_INS_FOOTNOTE:RB_TYPE_FTN +Endnote sym:sw:RadioButton:DLG_INS_FOOTNOTE:RB_TYPE_ENDNOTE +VorherigeFussnote sym:sw:ImageButton:DLG_INS_FOOTNOTE:BT_PREV +NachfolgendeFussnote sym:sw:ImageButton:DLG_INS_FOOTNOTE:BT_NEXT + +*FussnoteEinfuegen .uno:InsertFootnoteDialog +Automatisch sym:sw:RadioButton:DLG_INS_FOOTNOTE:RB_NUMBER_AUTO +Zeichen sym:sw:RadioButton:DLG_INS_FOOTNOTE:RB_NUMBER_CHAR +ZeichenText sym:sw:Edit:DLG_INS_FOOTNOTE:ED_NUMBER_CHAR +Durchsuchen sym:sw:PushButton:DLG_INS_FOOTNOTE:BT_NUMBER_CHAR +Fussnote sym:sw:RadioButton:DLG_INS_FOOTNOTE:RB_TYPE_FTN +Endnote sym:sw:RadioButton:DLG_INS_FOOTNOTE:RB_TYPE_ENDNOTE + +*Gallerybeamer sym:SVX_HID_GALLERY_BROWSER +Anzeige sym:SVX_HID_GALLERY_WINDOW + +*Gestalter .uno:DesignerDialog +TBGestalterRight sym:SFX2_HID_TEMPLDLG_TOOLBOX_RIGHT +TBGestalter sym:SFX2_HID_TEMPLDLG_TOOLBOX_LEFT +Absatzvorlagen .uno:ParaStyle +Zeichenvorlagen .uno:CharStyle +Rahmenvorlagen .uno:FrameStyle +Seitenvorlagen .uno:PageStyle +Grafikvorlagen .uno:ParaStyle +Praesentationsvorlagen .uno:ListStyle +Numerierungsvorlagen .uno:ListStyle +Zellvorlagen .uno:ParaStyle +Giesskanne sym:SFX2_HID_TEMPLDLG_WATERCAN +AusSelektion sym:SFX2_HID_TEMPLDLG_NEWBYEXAMPLE +Aktualisieren sym:SFX2_HID_TEMPLDLG_UPDATEBYEXAMPLE +Vorlagenliste sym:SFX2_HID_TEMPLATE_FMT +Gruppenliste sym:SFX2_HID_TEMPLATE_FILTER *GridControlDialogStarter ACTIVE ShowGridcontrol sym:showGridcontrol @@ -448,99 +448,99 @@ ShowGridcontrol sym:showGridcontrol *GridControlDialog sym:gridcontroldialog gridcontrolcontrol sym:gridcontrolself -*GroupingDlg HID_SC_DPDATEGROUP -AutoStart sc:RadioButton:RID_SCDLG_DPNUMGROUP:RB_AUTOSTART -ManualStart sc:RadioButton:RID_SCDLG_DPNUMGROUP:RB_MANSTART -StartContent sc:Edit:RID_SCDLG_DPNUMGROUP:ED_START -AutoEnd sc:RadioButton:RID_SCDLG_DPNUMGROUP:RB_AUTOEND -ManualEnd sc:RadioButton:RID_SCDLG_DPNUMGROUP:RB_MANEND -EndContent sc:Edit:RID_SCDLG_DPNUMGROUP:ED_END -NumberOfDays sc:RadioButton:RID_SCDLG_DPDATEGROUP:RB_NUMDAYS -DaysNumber sc:NumericField:RID_SCDLG_DPDATEGROUP:ED_NUMDAYS -Intervals sc:RadioButton:RID_SCDLG_DPDATEGROUP:RB_UNITS -IntervalsList HID_SC_DPDATEGROUP_LB -GroupBy sc:Edit:RID_SCDLG_DPNUMGROUP:ED_BY - -*GroupingNumDlg HID_SC_DPNUMGROUP -AutoStart sc:RadioButton:RID_SCDLG_DPNUMGROUP:RB_AUTOSTART -ManualStart sc:RadioButton:RID_SCDLG_DPNUMGROUP:RB_MANSTART -StartContent sc:Edit:RID_SCDLG_DPNUMGROUP:ED_START -AutoEnd sc:RadioButton:RID_SCDLG_DPNUMGROUP:RB_AUTOEND -ManualEnd sc:RadioButton:RID_SCDLG_DPNUMGROUP:RB_MANEND -EndContent sc:Edit:RID_SCDLG_DPNUMGROUP:ED_END -GroupBy sc:Edit:RID_SCDLG_DPNUMGROUP:ED_BY - -*GruppierungAufheben SID_OUTLINE_REMOVE -Zeilen HID_SC_GROUP_ROWS -Spalten HID_SC_GROUP_COLS - -*GruppierungAktivieren SID_OUTLINE_MAKE -Zeilen HID_SC_GROUP_ROWS -Spalten HID_SC_GROUP_COLS - -*HorizontaleLinieEinfuegen HID_RULER_DIALOG -Auswahl HID_VS_RULER - -*HTMLExport1 HID_SD_HTMLEXPORT_PAGE1 -NeuesDesign sd:RadioButton:DLG_PUBLISHING:PAGE1_NEW_DESIGN -ExistierendesDesign sd:RadioButton:DLG_PUBLISHING:PAGE1_OLD_DESIGN -DesignLoeschen sd:PushButton:DLG_PUBLISHING:PAGE1_DEL_DESIGN -DesignListe sd:ListBox:DLG_PUBLISHING:PAGE1_DESIGNS -Weiter sd:PushButton:DLG_PUBLISHING:BUT_NEXT -Zurueck sd:PushButton:DLG_PUBLISHING:BUT_LAST - -*HTMLExport2 HID_SD_HTMLEXPORT_PAGE2 -Standard sd:RadioButton:DLG_PUBLISHING:PAGE2_STANDARD -Frames sd:RadioButton:DLG_PUBLISHING:PAGE2_FRAMES -Automatisch sd:RadioButton:DLG_PUBLISHING:PAGE2_KIOSK -WebCast sd:RadioButton:DLG_PUBLISHING:PAGE2_WEBCAST -ASP sd:RadioButton:DLG_PUBLISHING:PAGE2_ASP -PERL sd:RadioButton:DLG_PUBLISHING:PAGE2_PERL -BeamerURL sd:Edit:DLG_PUBLISHING:PAGE2_INDEX -PraesentationURL sd:Edit:DLG_PUBLISHING:PAGE2_URL -ScriptURL sd:Edit:DLG_PUBLISHING:PAGE2_CGI -TitelseiteErzeugen sd:CheckBox:DLG_PUBLISHING:PAGE2_CONTENT -NotizenAnzeigen sd:CheckBox:DLG_PUBLISHING:PAGE2_NOTES -Weiter sd:PushButton:DLG_PUBLISHING:BUT_NEXT -Zurueck sd:PushButton:DLG_PUBLISHING:BUT_LAST - -*HTMLExport3 HID_SD_HTMLEXPORT_PAGE3 -PNG sd:RadioButton:DLG_PUBLISHING:PAGE3_PNG -GIF sd:RadioButton:DLG_PUBLISHING:PAGE3_GIF -JPG sd:RadioButton:DLG_PUBLISHING:PAGE3_JPG -Kompressionswert sd:ComboBox:DLG_PUBLISHING:PAGE3_QUALITY -NiedrigeAufloesung sd:RadioButton:DLG_PUBLISHING:PAGE3_RESOLUTION_1 -MittlereAufloesung sd:RadioButton:DLG_PUBLISHING:PAGE3_RESOLUTION_2 -HoheAufloesung sd:RadioButton:DLG_PUBLISHING:PAGE3_RESOLUTION_3 -KlaengeExportieren sd:CheckBox:DLG_PUBLISHING:PAGE3_SLD_SOUND -Weiter sd:PushButton:DLG_PUBLISHING:BUT_NEXT -Zurueck sd:PushButton:DLG_PUBLISHING:BUT_LAST - -*HTMLExport4 HID_SD_HTMLEXPORT_PAGE4 -Autor sd:Edit:DLG_PUBLISHING:PAGE4_AUTHOR -EMail sd:Edit:DLG_PUBLISHING:PAGE4_EMAIL_EDIT -Homepage sd:Edit:DLG_PUBLISHING:PAGE4_WWW_EDIT -LinkAufKopie sd:CheckBox:DLG_PUBLISHING:PAGE4_DOWNLOAD -AdditionalInformation sd:MultiLineEdit:DLG_PUBLISHING:PAGE4_MISC -Weiter sd:PushButton:DLG_PUBLISHING:BUT_NEXT -Zurueck sd:PushButton:DLG_PUBLISHING:BUT_LAST - -*HTMLExport5 HID_SD_HTMLEXPORT_PAGE5 -NurText sd:CheckBox:DLG_PUBLISHING:PAGE5_TEXTONLY -Weiter sd:PushButton:DLG_PUBLISHING:BUT_NEXT -Zurueck sd:PushButton:DLG_PUBLISHING:BUT_LAST - -*HTMLExport6 HID_SD_HTMLEXPORT_PAGE6 -FarbenAusDok sd:RadioButton:DLG_PUBLISHING:PAGE6_DOCCOLORS -BrowserFarben sd:RadioButton:DLG_PUBLISHING:PAGE6_DEFAULT -EigeneFarben sd:RadioButton:DLG_PUBLISHING:PAGE6_USER -Hintergrund sd:PushButton:DLG_PUBLISHING:PAGE6_BACK -Text sd:PushButton:DLG_PUBLISHING:PAGE6_TEXT -Hyperlink sd:PushButton:DLG_PUBLISHING:PAGE6_LINK -GesichteterLink sd:PushButton:DLG_PUBLISHING:PAGE6_VLINK -AktiverLink sd:PushButton:DLG_PUBLISHING:PAGE6_ALINK -Weiter sd:PushButton:DLG_PUBLISHING:BUT_NEXT -Zurueck sd:PushButton:DLG_PUBLISHING:BUT_LAST - -*HTMLDesign HID_SD_HTMLEXPORT_DLG_DNAME -Designname sd:Edit:DLG_DESIGNNAME:EDT_NAME +*GroupingDlg sym:SC_HID_SC_DPDATEGROUP +AutoStart sym:sc:RadioButton:RID_SCDLG_DPNUMGROUP:RB_AUTOSTART +ManualStart sym:sc:RadioButton:RID_SCDLG_DPNUMGROUP:RB_MANSTART +StartContent sym:sc:Edit:RID_SCDLG_DPNUMGROUP:ED_START +AutoEnd sym:sc:RadioButton:RID_SCDLG_DPNUMGROUP:RB_AUTOEND +ManualEnd sym:sc:RadioButton:RID_SCDLG_DPNUMGROUP:RB_MANEND +EndContent sym:sc:Edit:RID_SCDLG_DPNUMGROUP:ED_END +NumberOfDays sym:sc:RadioButton:RID_SCDLG_DPDATEGROUP:RB_NUMDAYS +DaysNumber sym:sc:NumericField:RID_SCDLG_DPDATEGROUP:ED_NUMDAYS +Intervals sym:sc:RadioButton:RID_SCDLG_DPDATEGROUP:RB_UNITS +IntervalsList sym:SC_HID_SC_DPDATEGROUP_LB +GroupBy sym:sc:Edit:RID_SCDLG_DPNUMGROUP:ED_BY + +*GroupingNumDlg sym:SC_HID_SC_DPNUMGROUP +AutoStart sym:sc:RadioButton:RID_SCDLG_DPNUMGROUP:RB_AUTOSTART +ManualStart sym:sc:RadioButton:RID_SCDLG_DPNUMGROUP:RB_MANSTART +StartContent sym:sc:Edit:RID_SCDLG_DPNUMGROUP:ED_START +AutoEnd sym:sc:RadioButton:RID_SCDLG_DPNUMGROUP:RB_AUTOEND +ManualEnd sym:sc:RadioButton:RID_SCDLG_DPNUMGROUP:RB_MANEND +EndContent sym:sc:Edit:RID_SCDLG_DPNUMGROUP:ED_END +GroupBy sym:sc:Edit:RID_SCDLG_DPNUMGROUP:ED_BY + +*GruppierungAufheben .uno:Ungroup +Zeilen sym:SC_HID_SC_GROUP_ROWS +Spalten sym:SC_HID_SC_GROUP_COLS + +*GruppierungAktivieren .uno:Group +Zeilen sym:SC_HID_SC_GROUP_ROWS +Spalten sym:SC_HID_SC_GROUP_COLS + +*HorizontaleLinieEinfuegen sym:SW_HID_RULER_DIALOG +Auswahl sym:SW_HID_VS_RULER + +*HTMLExport1 sym:SD_HID_SD_HTMLEXPORT_PAGE1 +NeuesDesign sym:sd:RadioButton:DLG_PUBLISHING:PAGE1_NEW_DESIGN +ExistierendesDesign sym:sd:RadioButton:DLG_PUBLISHING:PAGE1_OLD_DESIGN +DesignLoeschen sym:sd:PushButton:DLG_PUBLISHING:PAGE1_DEL_DESIGN +DesignListe sym:sd:ListBox:DLG_PUBLISHING:PAGE1_DESIGNS +Weiter sym:sd:PushButton:DLG_PUBLISHING:BUT_NEXT +Zurueck sym:sd:PushButton:DLG_PUBLISHING:BUT_LAST + +*HTMLExport2 sym:SD_HID_SD_HTMLEXPORT_PAGE2 +Standard sym:sd:RadioButton:DLG_PUBLISHING:PAGE2_STANDARD +Frames sym:sd:RadioButton:DLG_PUBLISHING:PAGE2_FRAMES +Automatisch sym:sd:RadioButton:DLG_PUBLISHING:PAGE2_KIOSK +WebCast sym:sd:RadioButton:DLG_PUBLISHING:PAGE2_WEBCAST +ASP sym:sd:RadioButton:DLG_PUBLISHING:PAGE2_ASP +PERL sym:sd:RadioButton:DLG_PUBLISHING:PAGE2_PERL +BeamerURL sym:sd:Edit:DLG_PUBLISHING:PAGE2_INDEX +PraesentationURL sym:sd:Edit:DLG_PUBLISHING:PAGE2_URL +ScriptURL sym:sd:Edit:DLG_PUBLISHING:PAGE2_CGI +TitelseiteErzeugen sym:sd:CheckBox:DLG_PUBLISHING:PAGE2_CONTENT +NotizenAnzeigen sym:sd:CheckBox:DLG_PUBLISHING:PAGE2_NOTES +Weiter sym:sd:PushButton:DLG_PUBLISHING:BUT_NEXT +Zurueck sym:sd:PushButton:DLG_PUBLISHING:BUT_LAST + +*HTMLExport3 sym:SD_HID_SD_HTMLEXPORT_PAGE3 +PNG sym:sd:RadioButton:DLG_PUBLISHING:PAGE3_PNG +GIF sym:sd:RadioButton:DLG_PUBLISHING:PAGE3_GIF +JPG sym:sd:RadioButton:DLG_PUBLISHING:PAGE3_JPG +Kompressionswert sym:sd:ComboBox:DLG_PUBLISHING:PAGE3_QUALITY +NiedrigeAufloesung sym:sd:RadioButton:DLG_PUBLISHING:PAGE3_RESOLUTION_1 +MittlereAufloesung sym:sd:RadioButton:DLG_PUBLISHING:PAGE3_RESOLUTION_2 +HoheAufloesung sym:sd:RadioButton:DLG_PUBLISHING:PAGE3_RESOLUTION_3 +KlaengeExportieren sym:sd:CheckBox:DLG_PUBLISHING:PAGE3_SLD_SOUND +Weiter sym:sd:PushButton:DLG_PUBLISHING:BUT_NEXT +Zurueck sym:sd:PushButton:DLG_PUBLISHING:BUT_LAST + +*HTMLExport4 sym:SD_HID_SD_HTMLEXPORT_PAGE4 +Autor sym:sd:Edit:DLG_PUBLISHING:PAGE4_AUTHOR +EMail sym:sd:Edit:DLG_PUBLISHING:PAGE4_EMAIL_EDIT +Homepage sym:sd:Edit:DLG_PUBLISHING:PAGE4_WWW_EDIT +LinkAufKopie sym:sd:CheckBox:DLG_PUBLISHING:PAGE4_DOWNLOAD +AdditionalInformation sym:sd:MultiLineEdit:DLG_PUBLISHING:PAGE4_MISC +Weiter sym:sd:PushButton:DLG_PUBLISHING:BUT_NEXT +Zurueck sym:sd:PushButton:DLG_PUBLISHING:BUT_LAST + +*HTMLExport5 sym:SD_HID_SD_HTMLEXPORT_PAGE5 +NurText sym:sd:CheckBox:DLG_PUBLISHING:PAGE5_TEXTONLY +Weiter sym:sd:PushButton:DLG_PUBLISHING:BUT_NEXT +Zurueck sym:sd:PushButton:DLG_PUBLISHING:BUT_LAST + +*HTMLExport6 sym:SD_HID_SD_HTMLEXPORT_PAGE6 +FarbenAusDok sym:sd:RadioButton:DLG_PUBLISHING:PAGE6_DOCCOLORS +BrowserFarben sym:sd:RadioButton:DLG_PUBLISHING:PAGE6_DEFAULT +EigeneFarben sym:sd:RadioButton:DLG_PUBLISHING:PAGE6_USER +Hintergrund sym:sd:PushButton:DLG_PUBLISHING:PAGE6_BACK +Text sym:sd:PushButton:DLG_PUBLISHING:PAGE6_TEXT +Hyperlink sym:sd:PushButton:DLG_PUBLISHING:PAGE6_LINK +GesichteterLink sym:sd:PushButton:DLG_PUBLISHING:PAGE6_VLINK +AktiverLink sym:sd:PushButton:DLG_PUBLISHING:PAGE6_ALINK +Weiter sym:sd:PushButton:DLG_PUBLISHING:BUT_NEXT +Zurueck sym:sd:PushButton:DLG_PUBLISHING:BUT_LAST + +*HTMLDesign sym:SD_HID_SD_HTMLEXPORT_DLG_DNAME +Designname sym:sd:Edit:DLG_DESIGNNAME:EDT_NAME diff --git a/testautomation/global/win/dial_i_o.win b/testautomation/global/win/dial_i_o.win index 9b100efecbea..7e2611bec19d 100755..100644 --- a/testautomation/global/win/dial_i_o.win +++ b/testautomation/global/win/dial_i_o.win @@ -1,444 +1,444 @@ -*ImageMapEditor svx:ModelessDialog:RID_SVXDLG_IMAP -TB_ImagemapEditor HID_IMAPDLG_TOOLBOX -Zuweisen HID_IMAPDLG_APPLY -Oeffnen HID_IMAPDLG_OPEN -Speichern HID_IMAPDLG_SAVEAS -Auswahl HID_IMAPDLG_SELECT -Rechteck HID_IMAPDLG_RECT -Ellipse HID_IMAPDLG_CIRCLE -Polygon HID_IMAPDLG_POLY -Freihandpolygon HID_IMAPDLG_FREEPOLY -Punktebearbeiten HID_IMAPDLG_POLYEDIT -Punkteverschieben HID_IMAPDLG_POLYMOVE -Punkteeinfuegen HID_IMAPDLG_POLYINSERT -Punkteloeschen HID_IMAPDLG_POLYDELETE -Rueckgaengig HID_IMAPDLG_UNDO -Wiederholen HID_IMAPDLG_REDO -Aktiv HID_IMAPDLG_ACTIVE -Makro HID_IMAPDLG_MACRO -Eigenschaften HID_IMAPDLG_PROPERTY -BearbeitenImageMap SID_IMAP -Beschreibung svx:Edit:RID_SVXDLG_IMAP:EDT_TEXT -Dokument HID_IMAPDLG_GRAPHWND -Adresse SID_OPENURL -BearbeitenText svx:Edit:RID_SVXDLG_IMAP:EDT_TEXT - -*ImageMapHyperlink cui:ModalDialog:RID_SVXDLG_IMAPURL -URL cui:Edit:RID_SVXDLG_IMAPURL:EDT_URL -Alternativetext cui:Edit:RID_SVXDLG_IMAPURL:EDT_URLDESCRIPTION -Frame cui:ComboBox:RID_SVXDLG_IMAPURL:CBB_TARGETS -Name cui:Edit:RID_SVXDLG_IMAPURL:EDT_NAME -Description cui:MultiLineEdit:RID_SVXDLG_IMAPURL:EDT_DESCRIPTION - -*IndividuellePraesentation SID_CUSTOMSHOW_DLG -Neu SD:PUSHBUTTON:DLG_CUSTOMSHOW:BTN_NEW -Bearbeiten SD:PUSHBUTTON:DLG_CUSTOMSHOW:BTN_EDIT -Loeschen SD:PUSHBUTTON:DLG_CUSTOMSHOW:BTN_REMOVE -Kopieren SD:PUSHBUTTON:DLG_CUSTOMSHOW:BTN_COPY -Starten SD:PUSHBUTTON:DLG_CUSTOMSHOW:BTN_STARTSHOW -IndividuellePraesentationBenutzen SD:CHECKBOX:DLG_CUSTOMSHOW:CBX_USE_CUSTOMSHOW -CustomSlideShowList sd:ListBox:DLG_CUSTOMSHOW:LB_CUSTOMSHOWS - -*IndividuellePraesentationDefinieren HID_DLG_DEFINE_CUSTOMSHOW -PraesentationName SD:EDIT:DLG_DEFINE_CUSTOMSHOW:EDT_NAME -SeitenPraesentation SD:MULTILISTBOX:DLG_DEFINE_CUSTOMSHOW:LB_PAGES -SelectedSlides HID_DLG_DEFINE_CUSTOMSHOW_CTL -Hinzufuegen SD:PUSHBUTTON:DLG_DEFINE_CUSTOMSHOW:BTN_ADD -Entfernen SD:PUSHBUTTON:DLG_DEFINE_CUSTOMSHOW:BTN_REMOVE - -*InfofelderBearbeiten HID_DOCINFO_EDT -Name0 sfx2:Edit:DLG_DOCINFO_EDT:ED_INFO1 -Name1 sfx2:Edit:DLG_DOCINFO_EDT:ED_INFO2 -Name2 sfx2:Edit:DLG_DOCINFO_EDT:ED_INFO3 -Name3 sfx2:Edit:DLG_DOCINFO_EDT:ED_INFO4 - -*InfonamenBearbeiten HID_DOCINFO_EDT -Namen1 sfx2:Edit:DLG_DOCINFO_EDT:ED_INFO1 -Namen2 sfx2:Edit:DLG_DOCINFO_EDT:ED_INFO2 -Namen3 sfx2:Edit:DLG_DOCINFO_EDT:ED_INFO3 -Namen4 sfx2:Edit:DLG_DOCINFO_EDT:ED_INFO4 - -*InhaltEinfuegen HID_PASTE_DLG -AlsSymbol cui:CHECKBOX:MD_PASTE_OBJECT:CB_DISPLAY_AS_ICON -AndersSymbol cui:PUSHBUTTON:MD_PASTE_OBJECT:PB_CHANGE_ICON -VerknuepfungMit cui:RADIOBUTTON:MD_PASTE_OBJECT:RB_PASTE_LINK -Auswahl cui:ListBox:MD_PASTE_OBJECT:LB_INSERT_LIST -EinfuegenAls cui:RadioButton:MD_PASTE_OBJECT:RB_PASTE - -*InhalteEinfuegenCalc FID_INS_CELL_CONTENTS -AllesEinfuegen sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSALL -Zeichenketten sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSSTRINGS -Zahlen sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSNUMBERS -DatumZeit sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSDATETIME -Formeln sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSFORMULAS -Notizen sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSNOTES -Formate sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSATTRS -Objects sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSOBJECTS -LeerzellenUeberspringen sc:CheckBox:RID_SCDLG_INSCONT:BTN_SKIP_EMPTY -Transponieren sc:CheckBox:RID_SCDLG_INSCONT:BTN_TRANSPOSE -Verknuepfen sc:CheckBox:RID_SCDLG_INSCONT:BTN_LINK -Keine sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_NOOP -Addieren sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_ADD -Subtrahieren sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_SUB -Multiplizieren sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_MUL -Dividieren sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_DIV -NichtVerschieben SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_NONE -NachUnten SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_DOWN -NachRechts SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_RIGHT - -*InhalteLoeschen SID_DELETE -Alles sc:CheckBox:RID_SCDLG_DELCONT:BTN_DELALL -Zeichenketten sc:CheckBox:RID_SCDLG_DELCONT:BTN_DELSTRINGS -Zahlen sc:CheckBox:RID_SCDLG_DELCONT:BTN_DELNUMBERS -DatumZeit sc:CheckBox:RID_SCDLG_DELCONT:BTN_DELDATETIME -Formeln sc:CheckBox:RID_SCDLG_DELCONT:BTN_DELFORMULAS -Notizen sc:CheckBox:RID_SCDLG_DELCONT:BTN_DELNOTES -Formate sc:CheckBox:RID_SCDLG_DELCONT:BTN_DELATTRS -Objekte sc:CheckBox:RID_SCDLG_DELCONT:BTN_DELOBJECTS - -*InPolygonUmwandeln SID_VECTORIZE -Farbanzahl sd:NumericField:DLG_VECTORIZE:NM_LAYERS -Punktreduktion sd:MetricField:DLG_VECTORIZE:MT_REDUCE -LoecherFuellen sd:CheckBox:DLG_VECTORIZE:CB_FILLHOLES -Kachelgroesse sd:MetricField:DLG_VECTORIZE:MT_FILLHOLES -Vorschau sd:PushButton:DLG_VECTORIZE:BTN_PREVIEW +*ImageMapEditor sym:svx:ModelessDialog:RID_SVXDLG_IMAP +TB_ImagemapEditor sym:SVX_HID_IMAPDLG_TOOLBOX +Zuweisen sym:SVX_HID_IMAPDLG_APPLY +Oeffnen sym:SVX_HID_IMAPDLG_OPEN +Speichern sym:SVX_HID_IMAPDLG_SAVEAS +Auswahl sym:SVX_HID_IMAPDLG_SELECT +Rechteck sym:SVX_HID_IMAPDLG_RECT +Ellipse sym:SVX_HID_IMAPDLG_CIRCLE +Polygon sym:SVX_HID_IMAPDLG_POLY +Freihandpolygon sym:SVX_HID_IMAPDLG_FREEPOLY +Punktebearbeiten sym:SVX_HID_IMAPDLG_POLYEDIT +Punkteverschieben sym:SVX_HID_IMAPDLG_POLYMOVE +Punkteeinfuegen sym:SVX_HID_IMAPDLG_POLYINSERT +Punkteloeschen sym:SVX_HID_IMAPDLG_POLYDELETE +Rueckgaengig sym:SVX_HID_IMAPDLG_UNDO +Wiederholen sym:SVX_HID_IMAPDLG_REDO +Aktiv sym:SVX_HID_IMAPDLG_ACTIVE +Makro sym:SVX_HID_IMAPDLG_MACRO +Eigenschaften sym:SVX_HID_IMAPDLG_PROPERTY +BearbeitenImageMap .uno:ImageMapDialog +Beschreibung sym:svx:Edit:RID_SVXDLG_IMAP:EDT_TEXT +Dokument sym:SVX_HID_IMAPDLG_GRAPHWND +Adresse .uno:OpenUrl +BearbeitenText sym:svx:Edit:RID_SVXDLG_IMAP:EDT_TEXT + +*ImageMapHyperlink sym:cui:ModalDialog:RID_SVXDLG_IMAPURL +URL sym:cui:Edit:RID_SVXDLG_IMAPURL:EDT_URL +Alternativetext sym:cui:Edit:RID_SVXDLG_IMAPURL:EDT_URLDESCRIPTION +Frame sym:cui:ComboBox:RID_SVXDLG_IMAPURL:CBB_TARGETS +Name sym:cui:Edit:RID_SVXDLG_IMAPURL:EDT_NAME +Description sym:cui:MultiLineEdit:RID_SVXDLG_IMAPURL:EDT_DESCRIPTION + +*IndividuellePraesentation .uno:CustomShowDialog +Neu sym:sd:PushButton:DLG_CUSTOMSHOW:BTN_NEW +Bearbeiten sym:sd:PushButton:DLG_CUSTOMSHOW:BTN_EDIT +Loeschen sym:sd:PushButton:DLG_CUSTOMSHOW:BTN_REMOVE +Kopieren sym:sd:PushButton:DLG_CUSTOMSHOW:BTN_COPY +Starten sym:sd:PushButton:DLG_CUSTOMSHOW:BTN_STARTSHOW +IndividuellePraesentationBenutzen sym:sd:CheckBox:DLG_CUSTOMSHOW:CBX_USE_CUSTOMSHOW +CustomSlideShowList sym:sd:ListBox:DLG_CUSTOMSHOW:LB_CUSTOMSHOWS + +*IndividuellePraesentationDefinieren sym:SD_HID_DLG_DEFINE_CUSTOMSHOW +PraesentationName sym:sd:Edit:DLG_DEFINE_CUSTOMSHOW:EDT_NAME +SeitenPraesentation sym:sd:MultiListBox:DLG_DEFINE_CUSTOMSHOW:LB_PAGES +SelectedSlides sym:SD_HID_DLG_DEFINE_CUSTOMSHOW_CTL +Hinzufuegen sym:sd:PushButton:DLG_DEFINE_CUSTOMSHOW:BTN_ADD +Entfernen sym:sd:PushButton:DLG_DEFINE_CUSTOMSHOW:BTN_REMOVE + +*InfofelderBearbeiten sym:SFX2_HID_DOCINFO_EDT +Name0 sym:sfx2:Edit:DLG_DOCINFO_EDT:ED_INFO1 +Name1 sym:sfx2:Edit:DLG_DOCINFO_EDT:ED_INFO2 +Name2 sym:sfx2:Edit:DLG_DOCINFO_EDT:ED_INFO3 +Name3 sym:sfx2:Edit:DLG_DOCINFO_EDT:ED_INFO4 + +*InfonamenBearbeiten sym:SFX2_HID_DOCINFO_EDT +Namen1 sym:sfx2:Edit:DLG_DOCINFO_EDT:ED_INFO1 +Namen2 sym:sfx2:Edit:DLG_DOCINFO_EDT:ED_INFO2 +Namen3 sym:sfx2:Edit:DLG_DOCINFO_EDT:ED_INFO3 +Namen4 sym:sfx2:Edit:DLG_DOCINFO_EDT:ED_INFO4 + +*InhaltEinfuegen sym:CUI_HID_PASTE_DLG +AlsSymbol sym:cui:CheckBox:MD_PASTE_OBJECT:CB_DISPLAY_AS_ICON +AndersSymbol sym:cui:PushButton:MD_PASTE_OBJECT:PB_CHANGE_ICON +VerknuepfungMit sym:cui:RadioButton:MD_PASTE_OBJECT:RB_PASTE_LINK +Auswahl sym:cui:ListBox:MD_PASTE_OBJECT:LB_INSERT_LIST +EinfuegenAls sym:cui:RadioButton:MD_PASTE_OBJECT:RB_PASTE + +*InhalteEinfuegenCalc .uno:InsertContents +AllesEinfuegen sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSALL +Zeichenketten sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSSTRINGS +Zahlen sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSNUMBERS +DatumZeit sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSDATETIME +Formeln sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSFORMULAS +Notizen sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSNOTES +Formate sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSATTRS +Objects sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSOBJECTS +LeerzellenUeberspringen sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_SKIP_EMPTY +Transponieren sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_TRANSPOSE +Verknuepfen sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_LINK +Keine sym:sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_NOOP +Addieren sym:sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_ADD +Subtrahieren sym:sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_SUB +Multiplizieren sym:sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_MUL +Dividieren sym:sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_DIV +NichtVerschieben sym:sc:RadioButton:RID_SCDLG_INSCONT:BTN_MV_NONE +NachUnten sym:sc:RadioButton:RID_SCDLG_INSCONT:BTN_MV_DOWN +NachRechts sym:sc:RadioButton:RID_SCDLG_INSCONT:BTN_MV_RIGHT + +*InhalteLoeschen .uno:Delete +Alles sym:sc:CheckBox:RID_SCDLG_DELCONT:BTN_DELALL +Zeichenketten sym:sc:CheckBox:RID_SCDLG_DELCONT:BTN_DELSTRINGS +Zahlen sym:sc:CheckBox:RID_SCDLG_DELCONT:BTN_DELNUMBERS +DatumZeit sym:sc:CheckBox:RID_SCDLG_DELCONT:BTN_DELDATETIME +Formeln sym:sc:CheckBox:RID_SCDLG_DELCONT:BTN_DELFORMULAS +Notizen sym:sc:CheckBox:RID_SCDLG_DELCONT:BTN_DELNOTES +Formate sym:sc:CheckBox:RID_SCDLG_DELCONT:BTN_DELATTRS +Objekte sym:sc:CheckBox:RID_SCDLG_DELCONT:BTN_DELOBJECTS + +*InPolygonUmwandeln sym:SD_HID_VECTORIZE_DLG +Farbanzahl sym:sd:NumericField:DLG_VECTORIZE:NM_LAYERS +Punktreduktion sym:sd:MetricField:DLG_VECTORIZE:MT_REDUCE +LoecherFuellen sym:sd:CheckBox:DLG_VECTORIZE:CB_FILLHOLES +Kachelgroesse sym:sd:MetricField:DLG_VECTORIZE:MT_FILLHOLES +Vorschau sym:sd:PushButton:DLG_VECTORIZE:BTN_PREVIEW +Interaktion TabInteraktion -*Kommentar HID_REDLINING_DLG -KommentarText HID_REDLINING_EDIT -Zurueck HID_REDLINING_PREV -Vor HID_REDLINING_NEXT - -*Konsolidieren SID_OPENDLG_CONSOLIDATE -Berechnungsvorschrift SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_FUNC -Konsolidierungsbereiche SC:MULTILISTBOX:RID_SCDLG_CONSOLIDATE:LB_CONSAREAS -Quelldatenbereich SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_DATA_AREA -Quelldaten SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DATA_AREA -ButtonQuelldaten SC:IMAGEBUTTON:RID_SCDLG_CONSOLIDATE:RB_DATA_AREA -AusgebenBereich SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_DEST_AREA -Ausgeben SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DEST_AREA -ButtonAusgeben SC:IMAGEBUTTON:RID_SCDLG_CONSOLIDATE:RB_DEST_AREA -Zeilenbeschriftung SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYROW -Spaltenkoepfen SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYCOL -MitQuelldatenVerbinden SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_REFS -Loeschen SC:PUSHBUTTON:RID_SCDLG_CONSOLIDATE:BTN_REMOVE -Hinzufuegen SC:PUSHBUTTON:RID_SCDLG_CONSOLIDATE:BTN_ADD -Zusaetze SC:MOREBUTTON:RID_SCDLG_CONSOLIDATE:BTN_MORE - -*KonturEditor svx:FloatingWindow:RID_SVXDLG_CONTOUR -Zuweisen HID_CONTDLG_APPLY -Arbeitsbereich HID_CONTDLG_WORKPLACE -Auswahl HID_CONTDLG_SELECT -Rechteck HID_CONTDLG_RECT -Ellipse HID_CONTDLG_CIRCLE -Polygon HID_CONTDLG_POLY -PunkteBearbeiten HID_CONTDLG_POLYEDIT -PunkteVerschieben HID_CONTDLG_POLYMOVE -PunkteEinfuegen HID_CONTDLG_POLYINSERT -PunkteLoeschen HID_CONTDLG_POLYDELETE -Autokontur HID_CONTDLG_AUTOCONTOUR -Widerrufen HID_CONTDLG_UNDO -Wiederholen HID_CONTDLG_REDO -Pipette HID_CONTDLG_PIPETTE -Toleranz svx:MetricField:RID_SVXDLG_CONTOUR:MTF_TOLERANCE - -*KopfFusszeilenSeitenvorlageStandard SID_HFEDIT - -*Linienenden HID_POPUP_LINEEND -Auswahl HID_POPUP_LINEEND_CTRL - -*Linienstil HID_DLG_MESSBOX -Aendern cui:PushButton:RID_SVXDLG_MESSBOX:BTN_1 -Hinzufuegen cui:PushButton:RID_SVXDLG_MESSBOX:BTN_2 - -*LinksFuellen FID_FILL_TO_LEFT - -*LiteratureintragEinfuegen FN_INSERT_AUTH_ENTRY_DLG -EintragErzeugen HID_INSERT_AUTH_MRK_CREATE_ENTRY -EintragEinfuegen HID_INSERT_AUTH_MRK_OK -EintragSchliessen HID_INSERT_AUTH_MRK_CLOSE -EintragBearbeiten HID_INSERT_AUTH_MRK_EDIT_ENTRY -AusLiteraturdatenbank HID_AUTH_MARK_DLG_FROM_COMP_RB -AusDokumentinhalt HID_AUTH_MARK_DLG_FROM_DOC_RB -Kurzbezeichnung HID_AUTH_MARK_DLG_ID_LISTBOX - -*LiteratureintragDefinieren HID_DLG_CREATE_AUTH_ENTRY -Kurzbezeichnung HID_AUTH_FIELD_IDENTIFIER -Typ HID_AUTH_FIELD_AUTHORITY_TYPE -Autor HID_AUTH_FIELD_AUTHOR -Titel HID_AUTH_FIELD_TITLE -Erscheinungsjahr HID_AUTH_FIELD_YEAR -Verlag HID_AUTH_FIELD_PUBLISHER -Verlagsadresse HID_AUTH_FIELD_ADDRESS -ISBN HID_AUTH_FIELD_ISBN -Kapitel HID_AUTH_FIELD_CHAPTER -Seiten HID_AUTH_FIELD_PAGES -Herausgeber HID_AUTH_FIELD_EDITOR -Ausgabe HID_AUTH_FIELD_EDITION -Buchtitel HID_AUTH_FIELD_BOOKTITLE -NummerDesBandes HID_AUTH_FIELD_VOLUME -Ausgabeart HID_AUTH_FIELD_HOWPUBLISHED -Organisation HID_AUTH_FIELD_ORGANIZATIONS -Institution HID_AUTH_FIELD_INSTITUTION -Hochschule HID_AUTH_FIELD_SCHOOL -ArtDesBerichts HID_AUTH_FIELD_REPORT_TYPE -Monat HID_AUTH_FIELD_MONTH -Zeitschrift HID_AUTH_FIELD_JOURNAL -Nummer HID_AUTH_FIELD_NUMBER -NameDerSerie HID_AUTH_FIELD_SERIES -Anmerkung HID_AUTH_FIELD_ANNOTE -Notiz HID_AUTH_FIELD_NOTE -URL HID_AUTH_FIELD_URL -Benutzerfeld1 HID_AUTH_FIELD_CUSTOM1 -Benutzerfeld2 HID_AUTH_FIELD_CUSTOM2 -Benutzerfeld3 HID_AUTH_FIELD_CUSTOM3 -Benutzerfeld4 HID_AUTH_FIELD_CUSTOM4 -Benutzerfeld5 HID_AUTH_FIELD_CUSTOM5 - -*Loeschbestaetigung svtools:ModalDialog:DLG_SVT_QUERYDELETE -Ja svtools:PushButton:DLG_SVT_QUERYDELETE:BTN_YES -Alle svtools:PushButton:DLG_SVT_QUERYDELETE:BTN_ALL -Nein svtools:PushButton:DLG_SVT_QUERYDELETE:BTN_NO - -*Makro basctl:ModalDialog:RID_MACROCHOOSER -Makroname basctl:Edit:RID_MACROCHOOSER:RID_ED_MACRONAME -Makroliste HID_BASICIDE_MACROS -MakroAus HID_BASICIDE_LIBS -Beschreibung basctl:MultiLineEdit:RID_MACROCHOOSER:RID_ML_DESCRIPTION -Ausfuehren basctl:PushButton:RID_MACROCHOOSER:RID_PB_RUN -Speichern basctl:PushButton:RID_MACROCHOOSER:RID_PB_RUN -Zuordnen basctl:PushButton:RID_MACROCHOOSER:RID_PB_ASSIGN -Bearbeiten basctl:PushButton:RID_MACROCHOOSER:RID_PB_EDIT -Loeschen basctl:PushButton:RID_MACROCHOOSER:RID_PB_DEL -Neu basctl:PushButton:RID_MACROCHOOSER:RID_PB_DEL -Verwalten basctl:PushButton:RID_MACROCHOOSER:RID_PB_ORG -NewLibrary basctl:PushButton:RID_MACROCHOOSER:RID_PB_NEWLIB -NewModule basctl:PushButton:RID_MACROCHOOSER:RID_PB_NEWMOD - -*MakroOptionen basctl:ModalDialog:RID_MACROOPTIONS -Beschreibung basctl:MultiLineEdit:RID_MACROOPTIONS:RID_ME_DESCR -HilfeIdentifikation basctl:NumericField:RID_MACROOPTIONS:RID_NF_HELPID -HilfeDateiname basctl:Edit:RID_MACROOPTIONS:RID_ED_HELPNAME - -*MakroZuweisen cui:TabPage:RID_SVXPAGE_EVENTASSIGN -Ereignis HID_MACRO_LB_EVENT -Bereich HID_MACRO_GROUP SFX2:LISTBOX:RID_SFX_TP_MACROASSIGN:LB_GROUP -Makroname HID_MACRO_MACROS SFX2:LISTBOX:RID_SFX_TP_MACROASSIGN:LB_MACROS -Zuweisen cui:PushButton:RID_SVXPAGE_EVENTASSIGN:PB_ASSIGN -Aufheben cui:PushButton:RID_SVXPAGE_EVENTASSIGN:PB_DELETE -Scripttyp cui:ListBox:RID_SVXPAGE_EVENTASSIGN:LB_SCRIPTTYPE - -*Massstab SID_ATTR_ZOOM -Optimal cui:RadioButton:RID_SVXDLG_ZOOM:BTN_OPTIMAL -GanzeSeite cui:RadioButton:RID_SVXDLG_ZOOM:BTN_WHOLE_PAGE -Seitenbreite cui:RadioButton:RID_SVXDLG_ZOOM:BTN_PAGE_WIDTH -Vergroesserung100 cui:RadioButton:RID_SVXDLG_ZOOM:BTN_100 -VergroesserungStufenlos cui:RadioButton:RID_SVXDLG_ZOOM:BTN_USER -Stufenlos cui:MetricField:RID_SVXDLG_ZOOM:ED_USER -Automatic cui:RadioButton:RID_SVXDLG_ZOOM:BTN_AUTOMATIC -Singlepage cui:RadioButton:RID_SVXDLG_ZOOM:BTN_SINGLE -Columns cui:RadioButton:RID_SVXDLG_ZOOM:BTN_COLUMNS -Columnsfield cui:MetricField:RID_SVXDLG_ZOOM:ED_COLUMNS -Bookmode cui:CheckBox:RID_SVXDLG_ZOOM:CHK_BOOK - -*MassstabSeitenansicht HID_PPREV_ZOOM -Spalten sw:NumericField:DLG_PAGEPREVIEW_ZOOM:ED_COL -Zeilen sw:NumericField:DLG_PAGEPREVIEW_ZOOM:ED_ROW - -*Mehrfachoperationen SID_OPENDLG_TABOP -Formeln sc:Edit:RID_SCDLG_TABOP:ED_FORMULARANGE -Zeile sc:Edit:RID_SCDLG_TABOP:ED_ROWCELL -Spalte sc:Edit:RID_SCDLG_TABOP:ED_COLCELL -Vorgaben1 sc:ImageButton:RID_SCDLG_TABOP:RB_FORMULARANGE -Vorgaben2 sc:ImageButton:RID_SCDLG_TABOP:RB_ROWCELL -Vorgaben3 sc:ImageButton:RID_SCDLG_TABOP:RB_COLCELL - -*ModuleBearbeiten HID_EDIT_MODULES -Sprache cui:ListBox:RID_SVXDLG_EDIT_MODULES:LB_EDIT_MODULES_LANGUAGE -Module HID_CLB_EDIT_MODULES_MODULES -PrioPLus cui:PushButton:RID_SVXDLG_EDIT_MODULES:PB_EDIT_MODULES_PRIO_UP -PrioMinus cui:PushButton:RID_SVXDLG_EDIT_MODULES:PB_EDIT_MODULES_PRIO_DOWN -Zurueck cui:PushButton:RID_SVXDLG_EDIT_MODULES:PB_EDIT_MODULES_PRIO_BACK -Benutzerwoerterbuch HID_CLB_EDIT_MODULES_DICS - -*DescriptionObject HID_DLG_OBJECT_TITLE_DESC -DescriptionTitle cui:Edit:RID_SVXDLG_OBJECT_TITLE_DESC:NTD_EDT_TITLE -DescriptionText cui:MultiLineEdit:RID_SVXDLG_OBJECT_TITLE_DESC:NTD_EDT_DESC - -*NameDlg HID_DLG_NAME -Eingabefeld cui:Edit:RID_SVXDLG_NAME:EDT_STRING +*Kommentar sym:CUI_HID_REDLINING_DLG +KommentarText sym:CUI_HID_REDLINING_EDIT +Zurueck sym:CUI_HID_REDLINING_PREV +Vor sym:CUI_HID_REDLINING_NEXT + +*Konsolidieren .uno:DataConsolidate +Berechnungsvorschrift sym:sc:ListBox:RID_SCDLG_CONSOLIDATE:LB_FUNC +Konsolidierungsbereiche sym:sc:MultiListBox:RID_SCDLG_CONSOLIDATE:LB_CONSAREAS +Quelldatenbereich sym:sc:ListBox:RID_SCDLG_CONSOLIDATE:LB_DATA_AREA +Quelldaten sym:sc:Edit:RID_SCDLG_CONSOLIDATE:ED_DATA_AREA +ButtonQuelldaten sym:sc:ImageButton:RID_SCDLG_CONSOLIDATE:RB_DATA_AREA +AusgebenBereich sym:sc:ListBox:RID_SCDLG_CONSOLIDATE:LB_DEST_AREA +Ausgeben sym:sc:Edit:RID_SCDLG_CONSOLIDATE:ED_DEST_AREA +ButtonAusgeben sym:sc:ImageButton:RID_SCDLG_CONSOLIDATE:RB_DEST_AREA +Zeilenbeschriftung sym:sc:CheckBox:RID_SCDLG_CONSOLIDATE:BTN_BYROW +Spaltenkoepfen sym:sc:CheckBox:RID_SCDLG_CONSOLIDATE:BTN_BYCOL +MitQuelldatenVerbinden sym:sc:CheckBox:RID_SCDLG_CONSOLIDATE:BTN_REFS +Loeschen sym:sc:PushButton:RID_SCDLG_CONSOLIDATE:BTN_REMOVE +Hinzufuegen sym:sc:PushButton:RID_SCDLG_CONSOLIDATE:BTN_ADD +Zusaetze sym:sc:MoreButton:RID_SCDLG_CONSOLIDATE:BTN_MORE + +*KonturEditor sym:svx:FloatingWindow:RID_SVXDLG_CONTOUR +Zuweisen sym:SVX_HID_CONTDLG_APPLY +Arbeitsbereich sym:SVX_HID_CONTDLG_WORKPLACE +Auswahl sym:SVX_HID_CONTDLG_SELECT +Rechteck sym:SVX_HID_CONTDLG_RECT +Ellipse sym:SVX_HID_CONTDLG_CIRCLE +Polygon sym:SVX_HID_CONTDLG_POLY +PunkteBearbeiten sym:SVX_HID_CONTDLG_POLYEDIT +PunkteVerschieben sym:SVX_HID_CONTDLG_POLYMOVE +PunkteEinfuegen sym:SVX_HID_CONTDLG_POLYINSERT +PunkteLoeschen sym:SVX_HID_CONTDLG_POLYDELETE +Autokontur sym:SVX_HID_CONTDLG_AUTOCONTOUR +Widerrufen sym:SVX_HID_CONTDLG_UNDO +Wiederholen sym:SVX_HID_CONTDLG_REDO +Pipette sym:SVX_HID_CONTDLG_PIPETTE +Toleranz sym:svx:MetricField:RID_SVXDLG_CONTOUR:MTF_TOLERANCE + +*KopfFusszeilenSeitenvorlageStandard .uno:EditHeaderAndFooter + +*Linienenden sym:SVX_HID_POPUP_LINEEND +Auswahl sym:SVX_HID_POPUP_LINEEND_CTRL + +*Linienstil sym:CUI_HID_DLG_MESSBOX +Aendern sym:cui:PushButton:RID_SVXDLG_MESSBOX:BTN_1 +Hinzufuegen sym:cui:PushButton:RID_SVXDLG_MESSBOX:BTN_2 + +*LinksFuellen .uno:FillLeft + +*LiteratureintragEinfuegen .uno:InsertAuthoritiesEntry +EintragErzeugen sym:SW_HID_INSERT_AUTH_MRK_CREATE_ENTRY +EintragEinfuegen sym:SW_HID_INSERT_AUTH_MRK_OK +EintragSchliessen sym:SW_HID_INSERT_AUTH_MRK_CLOSE +EintragBearbeiten sym:SW_HID_INSERT_AUTH_MRK_EDIT_ENTRY +AusLiteraturdatenbank sym:SW_HID_AUTH_MARK_DLG_FROM_COMP_RB +AusDokumentinhalt sym:SW_HID_AUTH_MARK_DLG_FROM_DOC_RB +Kurzbezeichnung sym:SW_HID_AUTH_MARK_DLG_ID_LISTBOX + +*LiteratureintragDefinieren sym:SW_HID_DLG_CREATE_AUTH_ENTRY +Kurzbezeichnung sym:SW_HID_AUTH_FIELD_IDENTIFIER +Typ sym:SW_HID_AUTH_FIELD_AUTHORITY_TYPE +Autor sym:SW_HID_AUTH_FIELD_AUTHOR +Titel sym:SW_HID_AUTH_FIELD_TITLE +Erscheinungsjahr sym:SW_HID_AUTH_FIELD_YEAR +Verlag sym:SW_HID_AUTH_FIELD_PUBLISHER +Verlagsadresse sym:SW_HID_AUTH_FIELD_ADDRESS +ISBN sym:SW_HID_AUTH_FIELD_ISBN +Kapitel sym:SW_HID_AUTH_FIELD_CHAPTER +Seiten sym:SW_HID_AUTH_FIELD_PAGES +Herausgeber sym:SW_HID_AUTH_FIELD_EDITOR +Ausgabe sym:SW_HID_AUTH_FIELD_EDITION +Buchtitel sym:SW_HID_AUTH_FIELD_BOOKTITLE +NummerDesBandes sym:SW_HID_AUTH_FIELD_VOLUME +Ausgabeart sym:SW_HID_AUTH_FIELD_HOWPUBLISHED +Organisation sym:SW_HID_AUTH_FIELD_ORGANIZATIONS +Institution sym:SW_HID_AUTH_FIELD_INSTITUTION +Hochschule sym:SW_HID_AUTH_FIELD_SCHOOL +ArtDesBerichts sym:SW_HID_AUTH_FIELD_REPORT_TYPE +Monat sym:SW_HID_AUTH_FIELD_MONTH +Zeitschrift sym:SW_HID_AUTH_FIELD_JOURNAL +Nummer sym:SW_HID_AUTH_FIELD_NUMBER +NameDerSerie sym:SW_HID_AUTH_FIELD_SERIES +Anmerkung sym:SW_HID_AUTH_FIELD_ANNOTE +Notiz sym:SW_HID_AUTH_FIELD_NOTE +URL sym:SW_HID_AUTH_FIELD_URL +Benutzerfeld1 sym:SW_HID_AUTH_FIELD_CUSTOM1 +Benutzerfeld2 sym:SW_HID_AUTH_FIELD_CUSTOM2 +Benutzerfeld3 sym:SW_HID_AUTH_FIELD_CUSTOM3 +Benutzerfeld4 sym:SW_HID_AUTH_FIELD_CUSTOM4 +Benutzerfeld5 sym:SW_HID_AUTH_FIELD_CUSTOM5 + +*Loeschbestaetigung sym:svtools:ModalDialog:DLG_SVT_QUERYDELETE +Ja sym:svtools:PushButton:DLG_SVT_QUERYDELETE:BTN_YES +Alle sym:svtools:PushButton:DLG_SVT_QUERYDELETE:BTN_ALL +Nein sym:svtools:PushButton:DLG_SVT_QUERYDELETE:BTN_NO + +*Makro sym:basctl:ModalDialog:RID_MACROCHOOSER +Makroname sym:basctl:Edit:RID_MACROCHOOSER:RID_ED_MACRONAME +Makroliste sym:BASCTL_HID_BASICIDE_MACROS +MakroAus sym:BASCTL_HID_BASICIDE_LIBS +Beschreibung sym:basctl:MultiLineEdit:RID_MACROCHOOSER:RID_ML_DESCRIPTION +Ausfuehren sym:basctl:PushButton:RID_MACROCHOOSER:RID_PB_RUN +Speichern sym:basctl:PushButton:RID_MACROCHOOSER:RID_PB_RUN +Zuordnen sym:basctl:PushButton:RID_MACROCHOOSER:RID_PB_ASSIGN +Bearbeiten sym:basctl:PushButton:RID_MACROCHOOSER:RID_PB_EDIT +Loeschen sym:basctl:PushButton:RID_MACROCHOOSER:RID_PB_DEL +Neu sym:basctl:PushButton:RID_MACROCHOOSER:RID_PB_DEL +Verwalten sym:basctl:PushButton:RID_MACROCHOOSER:RID_PB_ORG +NewLibrary sym:basctl:PushButton:RID_MACROCHOOSER:RID_PB_NEWLIB +NewModule sym:basctl:PushButton:RID_MACROCHOOSER:RID_PB_NEWMOD + +*MakroOptionen sym:basctl:ModalDialog:RID_MACROOPTIONS +Beschreibung sym:basctl:MultiLineEdit:RID_MACROOPTIONS:RID_ME_DESCR +HilfeIdentifikation sym:basctl:NumericField:RID_MACROOPTIONS:RID_NF_HELPID +HilfeDateiname sym:basctl:Edit:RID_MACROOPTIONS:RID_ED_HELPNAME + +*MakroZuweisen sym:cui:TabPage:RID_SVXPAGE_EVENTASSIGN +Ereignis sym:CUI_HID_MACRO_LB_EVENT +Bereich sym:CUI_HID_MACRO_GROUP sym:sfx2:ListBox:RID_SFX_TP_MACROASSIGN:LB_GROUP +Makroname sym:CUI_HID_MACRO_MACROS sym:sfx2:ListBox:RID_SFX_TP_MACROASSIGN:LB_MACROS +Zuweisen sym:cui:PushButton:RID_SVXPAGE_EVENTASSIGN:PB_ASSIGN +Aufheben sym:cui:PushButton:RID_SVXPAGE_EVENTASSIGN:PB_DELETE +Scripttyp sym:cui:ListBox:RID_SVXPAGE_EVENTASSIGN:LB_SCRIPTTYPE + +*Massstab .uno:Zoom +Optimal sym:cui:RadioButton:RID_SVXDLG_ZOOM:BTN_OPTIMAL +GanzeSeite sym:cui:RadioButton:RID_SVXDLG_ZOOM:BTN_WHOLE_PAGE +Seitenbreite sym:cui:RadioButton:RID_SVXDLG_ZOOM:BTN_PAGE_WIDTH +Vergroesserung100 sym:cui:RadioButton:RID_SVXDLG_ZOOM:BTN_100 +VergroesserungStufenlos sym:cui:RadioButton:RID_SVXDLG_ZOOM:BTN_USER +Stufenlos sym:cui:MetricField:RID_SVXDLG_ZOOM:ED_USER +Automatic sym:cui:RadioButton:RID_SVXDLG_ZOOM:BTN_AUTOMATIC +Singlepage sym:cui:RadioButton:RID_SVXDLG_ZOOM:BTN_SINGLE +Columns sym:cui:RadioButton:RID_SVXDLG_ZOOM:BTN_COLUMNS +Columnsfield sym:cui:MetricField:RID_SVXDLG_ZOOM:ED_COLUMNS +Bookmode sym:cui:CheckBox:RID_SVXDLG_ZOOM:CHK_BOOK + +*MassstabSeitenansicht sym:SW_HID_PPREV_ZOOM +Spalten sym:sw:NumericField:DLG_PAGEPREVIEW_ZOOM:ED_COL +Zeilen sym:sw:NumericField:DLG_PAGEPREVIEW_ZOOM:ED_ROW + +*Mehrfachoperationen .uno:TableOperationDialog +Formeln sym:sc:Edit:RID_SCDLG_TABOP:ED_FORMULARANGE +Zeile sym:sc:Edit:RID_SCDLG_TABOP:ED_ROWCELL +Spalte sym:sc:Edit:RID_SCDLG_TABOP:ED_COLCELL +Vorgaben1 sym:sc:ImageButton:RID_SCDLG_TABOP:RB_FORMULARANGE +Vorgaben2 sym:sc:ImageButton:RID_SCDLG_TABOP:RB_ROWCELL +Vorgaben3 sym:sc:ImageButton:RID_SCDLG_TABOP:RB_COLCELL + +*ModuleBearbeiten sym:CUI_HID_EDIT_MODULES +Sprache sym:cui:ListBox:RID_SVXDLG_EDIT_MODULES:LB_EDIT_MODULES_LANGUAGE +Module sym:CUI_HID_CLB_EDIT_MODULES_MODULES +PrioPLus sym:cui:PushButton:RID_SVXDLG_EDIT_MODULES:PB_EDIT_MODULES_PRIO_UP +PrioMinus sym:cui:PushButton:RID_SVXDLG_EDIT_MODULES:PB_EDIT_MODULES_PRIO_DOWN +Zurueck sym:cui:PushButton:RID_SVXDLG_EDIT_MODULES:PB_EDIT_MODULES_PRIO_BACK +Benutzerwoerterbuch sym:CUI_HID_CLB_EDIT_MODULES_DICS + +*DescriptionObject sym:CUI_HID_DLG_OBJECT_TITLE_DESC +DescriptionTitle sym:cui:Edit:RID_SVXDLG_OBJECT_TITLE_DESC:NTD_EDT_TITLE +DescriptionText sym:cui:MultiLineEdit:RID_SVXDLG_OBJECT_TITLE_DESC:NTD_EDT_DESC + +*NameDlg sym:CUI_HID_DLG_NAME +Eingabefeld sym:cui:Edit:RID_SVXDLG_NAME:EDT_STRING +LinieName NameDlg -*NameDlgObject HID_DLG_OBJECT_NAME -NameField cui:Edit:RID_SVXDLG_OBJECT_NAME:NTD_EDT_NAME +*NameDlgObject sym:CUI_HID_DLG_OBJECT_NAME +NameField sym:cui:Edit:RID_SVXDLG_OBJECT_NAME:NTD_EDT_NAME +NameDlgGroup NameDlg -NameField HID_FORMAT_NAME_OBJECT_NAME +NameField sym:SW_HID_FORMAT_NAME_OBJECT_NAME +NameDlgPage NameDlg -NameField HID_SD_NAMEDIALOG_PAGE +NameField sym:SD_HID_SD_NAMEDIALOG_PAGE +NameDlgLineEnd NameDlg -NameField HID_SD_NAMEDIALOG_LINEEND +NameField sym:SD_HID_SD_NAMEDIALOG_LINEEND +NameDlgGroupCalc NameDlg -NameField HID_SC_DRAW_RENAME - -*NamenEinfuegen FID_INSERT_NAME -NamenAuswahl sc:ListBox:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST -Liste sc:PushButton:RID_SCDLG_NAMES_PASTE:BTN_ADD - -*NamenErzeugen FID_USE_NAME -Kopfzeile sc:CheckBox:RID_SCDLG_NAMES_CREATE:BTN_TOP -LinkerSpalte sc:CheckBox:RID_SCDLG_NAMES_CREATE:BTN_LEFT -Fusszeile sc:CheckBox:RID_SCDLG_NAMES_CREATE:BTN_BOTTOM -RechterSpalte sc:CheckBox:RID_SCDLG_NAMES_CREATE:BTN_RIGHT - -*NamenFestlegen FID_DEFINE_NAME -BereichsName sc:ComboBox:RID_SCDLG_NAMES:ED_NAME -ZugeordnetZu sc:Edit:RID_SCDLG_NAMES:ED_ASSIGN -Filter sc:CheckBox:RID_SCDLG_NAMES:BTN_CRITERIA -Druckbereich sc:CheckBox:RID_SCDLG_NAMES:BTN_PRINTAREA -Wiederholungsspalte sc:CheckBox:RID_SCDLG_NAMES:BTN_COLHEADER -Wiederholungszeile sc:CheckBox:RID_SCDLG_NAMES:BTN_ROWHEADER -Hinzufuegen sc:PushButton:RID_SCDLG_NAMES:BTN_ADD -Aendern sc:PushButton:RID_SCDLG_NAMES:BTN_ADD -Loeschen sc:PushButton:RID_SCDLG_NAMES:BTN_REMOVE -Zusaetze sc:MoreButton:RID_SCDLG_NAMES:BTN_MORE -ZugeordnetZuButton sc:ImageButton:RID_SCDLG_NAMES:RB_ASSIGN - -*NavigationsFenster HID_INSERT_CTRL -Auswahl HID_NAVI_VS - -*Navigator SID_NAVIGATOR - -*NavigatorCalc HID_SC_NAVIGATOR -NavigatorToolboxCalc HID_SC_NAVIPI_TOOLBOX -Spalte HID_SC_NAVIPI_COL -Zeile HID_SC_NAVIPI_ROW -Liste HID_SC_NAVIPI_ENTRIES -Dokumente HID_SC_NAVIPI_DOC -Datenbereich HID_SC_NAVIPI_DATA -Anfang HID_SC_NAVIPI_UP -Ende HID_SC_NAVIPI_DOWN -Inhalte HID_SC_NAVIPI_ZOOM -Umschalten HID_SC_NAVIPI_ROOT -Szenarien HID_SC_NAVIPI_SCEN -Dragmodus HID_SC_NAVIPI_DROP -SzenarioEdit HID_SC_SCENWIN_TOP -SzenarioListe HID_SC_SCENWIN_BOTTOM - -*NavigatorDraw HID_SD_NAVIGATOR -NavigatorToolboxDraw HID_SD_NAVIGATOR_TBX -Stift HID_SD_NAVIGATOR_TBI_PEN -Erste HID_SD_NAVIGATOR_TBI_FIRST -Vorherige HID_SD_NAVIGATOR_TBI_PREV -Naechste HID_SD_NAVIGATOR_TBI_NEXT -Letzte HID_SD_NAVIGATOR_TBI_LAST -Dragmodus HID_SD_NAVIGATOR_TBI_DRAGTYPE -Liste HID_SD_NAVIGATOR_TLB -Dokumentliste HID_SD_NAVIGATOR_LB - -*NavigatorWriter HID_NAVIGATION_PI -Auswahlliste HID_NAVIGATOR_TREELIST -Dokumentliste HID_NAVIGATOR_LISTBOX -Toolbox HID_NAVIGATOR_TOOLBOX -Umschalten HID_NAVI_TBX17 -Navigation HID_NAVI_TBX24 -Seitennummer HID_NAVI_TBX16 -VorherigeSeite HID_NAVI_TBX2 -NaechsteSeite HID_NAVI_TBX3 -Dragmodus HID_NAVI_TBX4 -KapitelHoch HID_NAVI_TBX5 -KapitelRunter HID_NAVI_TBX6 -Auswahlbox HID_NAVI_TBX7 -Inhaltsansicht HID_NAVI_TBX8 -Merker HID_NAVI_TBX9 -Kopfzeile HID_NAVI_TBX10 -Fusszeile HID_NAVI_TBX11 -AnkerText HID_NAVI_TBX12 -Ebenen HID_NAVI_TBX13 -Hoch HID_NAVI_TBX14 -Senken HID_NAVI_TBX15 - -*NavigatorGlobaldoc HID_NAVIGATION_PI -Auswahlliste HID_NAVIGATOR_TREELIST -Liste HID_NAVIGATOR_GLOB_TREELIST -Umschalten HID_NAVI_TBX17 -Bearbeiten HID_NAVI_TBX18 -Aktualisieren HID_NAVI_TBX19 -Einfuegen HID_NAVI_TBX20 -InhalteMitspeichern HID_NAVI_TBX21 -GlobaldokumentToolbox HID_NAVIGATOR_GLOBAL_TOOLBOX -NachUntenVerschieben HID_NAVI_TBX22 -NachObenVerschieben HID_NAVI_TBX23 -Inhaltsansicht HID_NAVI_TBX8 - -*Neu SID_NEWDOC -Bereiche sfx2:ListBox:DLG_NEW_FILE:LB_REGION -Vorlagen sfx2:ListBox:DLG_NEW_FILE:LB_TEMPLATE -Zusaetze sfx2:MoreButton:DLG_NEW_FILE:BT_MORE -Vorschau sfx2:CheckBox:DLG_NEW_FILE:BTN_PREVIEW -Titel sfx2:Edit:DLG_NEW_FILE:ED_TITLE -Thema sfx2:Edit:DLG_NEW_FILE:ED_THEMA -Schluesselworte sfx2:Edit:DLG_NEW_FILE:ED_KEYWORDS -Beschreibung sfx2:MultiLineEdit:DLG_NEW_FILE:ED_DESC -Text sfx2:CheckBox:DLG_NEW_FILE:CB_TEXT_STYLE -Frame sfx2:CheckBox:DLG_NEW_FILE:CB_FRAME_STYLE -Pages sfx2:CheckBox:DLG_NEW_FILE:CB_PAGE_STYLE -Numbering sfx2:CheckBox:DLG_NEW_FILE:CB_NUM_STYLE -Overwrite sfx2:CheckBox:DLG_NEW_FILE:CB_MERGE_STYLE -Fromfile sfx2:PushButton:DLG_NEW_FILE:PB_LOAD_FILE - -*NeueBibliothek basctl:ModalDialog:RID_DLG_NEWLIB -Bibliotheksname basctl:Edit:RID_DLG_NEWLIB:RID_ED_LIBNAME - -*NeuerDialog basctl:ModalDialog:RID_DLG_NEWLIB -Dialogname basctl:Edit:RID_DLG_NEWLIB:RID_ED_LIBNAME - -*NeuesFangobjekt SID_CAPTUREPOINT -Horizontal SD:IMAGERADIOBUTTON:DLG_SNAPLINE:RB_HORIZONTAL -Vertikal SD:IMAGERADIOBUTTON:DLG_SNAPLINE:RB_VERTICAL -Punkt SD:IMAGERADIOBUTTON:DLG_SNAPLINE:RB_POINT -X sd:MetricField:DLG_SNAPLINE:MTR_FLD_X -Y sd:MetricField:DLG_SNAPLINE:MTR_FLD_Y - -*NeuesModul basctl:ModalDialog:RID_DLG_NEWLIB -Modulname basctl:Edit:RID_DLG_NEWLIB:RID_ED_LIBNAME - -*NotizBearbeiten SID_POSTIT -Texteingabe cui:MultiLineEdit:RID_SVXDLG_POSTIT:ED_EDIT sw:MultiLineEdit:DLG_POSTIT:ED_EDIT -Autor cui:PushButton:RID_SVXDLG_POSTIT:BTN_AUTHOR sw:PushButton:DLG_POSTIT:BTN_AUTHOR -Vor cui:IMAGEBUTTON:RID_SVXDLG_POSTIT:BTN_NEXT -Zurueck cui:IMAGEBUTTON:RID_SVXDLG_POSTIT:BTN_PREV - -*NummernkreisOptionen HID_DLG_SEQUENCE_OPTION -Ebene sw:ListBox:DLG_SEQUENCE_OPTION:LB_LEVEL -Trenner sw:Edit:DLG_SEQUENCE_OPTION:ED_SEPARATOR +NameField sym:SC_HID_SC_DRAW_RENAME + +*NamenEinfuegen .uno:InsertName +NamenAuswahl sym:sc:ListBox:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST +Liste sym:sc:PushButton:RID_SCDLG_NAMES_PASTE:BTN_ADD + +*NamenErzeugen .uno:CreateNames +Kopfzeile sym:sc:CheckBox:RID_SCDLG_NAMES_CREATE:BTN_TOP +LinkerSpalte sym:sc:CheckBox:RID_SCDLG_NAMES_CREATE:BTN_LEFT +Fusszeile sym:sc:CheckBox:RID_SCDLG_NAMES_CREATE:BTN_BOTTOM +RechterSpalte sym:sc:CheckBox:RID_SCDLG_NAMES_CREATE:BTN_RIGHT + +*NamenFestlegen .uno:DefineName +BereichsName sym:sc:ComboBox:RID_SCDLG_NAMES:ED_NAME +ZugeordnetZu sym:sc:Edit:RID_SCDLG_NAMES:ED_ASSIGN +Filter sym:sc:CheckBox:RID_SCDLG_NAMES:BTN_CRITERIA +Druckbereich sym:sc:CheckBox:RID_SCDLG_NAMES:BTN_PRINTAREA +Wiederholungsspalte sym:sc:CheckBox:RID_SCDLG_NAMES:BTN_COLHEADER +Wiederholungszeile sym:sc:CheckBox:RID_SCDLG_NAMES:BTN_ROWHEADER +Hinzufuegen sym:sc:PushButton:RID_SCDLG_NAMES:BTN_ADD +Aendern sym:sc:PushButton:RID_SCDLG_NAMES:BTN_ADD +Loeschen sym:sc:PushButton:RID_SCDLG_NAMES:BTN_REMOVE +Zusaetze sym:sc:MoreButton:RID_SCDLG_NAMES:BTN_MORE +ZugeordnetZuButton sym:sc:ImageButton:RID_SCDLG_NAMES:RB_ASSIGN + +*NavigationsFenster sym:SW_HID_INSERT_CTRL +Auswahl sym:SW_HID_NAVI_VS + +*Navigator sym:SFXDOCKINGWINDOW_Navigator + +*NavigatorCalc sym:SC_HID_SC_NAVIGATOR +NavigatorToolboxCalc sym:SC_HID_SC_NAVIPI_TOOLBOX +Spalte sym:SC_HID_SC_NAVIPI_COL +Zeile sym:SC_HID_SC_NAVIPI_ROW +Liste sym:SC_HID_SC_NAVIPI_ENTRIES +Dokumente sym:SC_HID_SC_NAVIPI_DOC +Datenbereich sym:SC_HID_SC_NAVIPI_DATA +Anfang sym:SC_HID_SC_NAVIPI_UP +Ende sym:SC_HID_SC_NAVIPI_DOWN +Inhalte sym:SC_HID_SC_NAVIPI_ZOOM +Umschalten sym:SC_HID_SC_NAVIPI_ROOT +Szenarien sym:SC_HID_SC_NAVIPI_SCEN +Dragmodus sym:SC_HID_SC_NAVIPI_DROP +SzenarioEdit sym:SC_HID_SC_SCENWIN_TOP +SzenarioListe sym:SC_HID_SC_SCENWIN_BOTTOM + +*NavigatorDraw sym:SD_HID_SD_NAVIGATOR +NavigatorToolboxDraw sym:SD_HID_SD_NAVIGATOR_TBX +Stift sym:SD_HID_SD_NAVIGATOR_TBI_PEN +Erste sym:SD_HID_SD_NAVIGATOR_TBI_FIRST +Vorherige sym:SD_HID_SD_NAVIGATOR_TBI_PREV +Naechste sym:SD_HID_SD_NAVIGATOR_TBI_NEXT +Letzte sym:SD_HID_SD_NAVIGATOR_TBI_LAST +Dragmodus sym:SD_HID_SD_NAVIGATOR_TBI_DRAGTYPE +Liste sym:SD_HID_SD_NAVIGATOR_TLB +Dokumentliste sym:SD_HID_SD_NAVIGATOR_LB + +*NavigatorWriter sym:SW_HID_NAVIGATION_PI +Auswahlliste sym:SW_HID_NAVIGATOR_TREELIST +Dokumentliste sym:SW_HID_NAVIGATOR_LISTBOX +Toolbox sym:SW_HID_NAVIGATOR_TOOLBOX +Umschalten sym:SW_HID_NAVI_TBX17 +Navigation sym:SW_HID_NAVI_TBX24 +Seitennummer sym:SW_HID_NAVI_TBX16 +VorherigeSeite sym:SW_HID_NAVI_TBX2 +NaechsteSeite sym:SW_HID_NAVI_TBX3 +Dragmodus sym:SW_HID_NAVI_TBX4 +KapitelHoch sym:SW_HID_NAVI_TBX5 +KapitelRunter sym:SW_HID_NAVI_TBX6 +Auswahlbox sym:SW_HID_NAVI_TBX7 +Inhaltsansicht sym:SW_HID_NAVI_TBX8 +Merker sym:SW_HID_NAVI_TBX9 +Kopfzeile sym:SW_HID_NAVI_TBX10 +Fusszeile sym:SW_HID_NAVI_TBX11 +AnkerText sym:SW_HID_NAVI_TBX12 +Ebenen sym:SW_HID_NAVI_TBX13 +Hoch sym:SW_HID_NAVI_TBX14 +Senken sym:SW_HID_NAVI_TBX15 + +*NavigatorGlobaldoc sym:SW_HID_NAVIGATION_PI +Auswahlliste sym:SW_HID_NAVIGATOR_TREELIST +Liste sym:SW_HID_NAVIGATOR_GLOB_TREELIST +Umschalten sym:SW_HID_NAVI_TBX17 +Bearbeiten sym:SW_HID_NAVI_TBX18 +Aktualisieren sym:SW_HID_NAVI_TBX19 +Einfuegen sym:SW_HID_NAVI_TBX20 +InhalteMitspeichern sym:SW_HID_NAVI_TBX21 +GlobaldokumentToolbox sym:SW_HID_NAVIGATOR_GLOBAL_TOOLBOX +NachUntenVerschieben sym:SW_HID_NAVI_TBX22 +NachObenVerschieben sym:SW_HID_NAVI_TBX23 +Inhaltsansicht sym:SW_HID_NAVI_TBX8 + +*Neu .uno:NewDoc +Bereiche sym:sfx2:ListBox:DLG_NEW_FILE:LB_REGION +Vorlagen sym:sfx2:ListBox:DLG_NEW_FILE:LB_TEMPLATE +Zusaetze sym:sfx2:MoreButton:DLG_NEW_FILE:BT_MORE +Vorschau sym:sfx2:CheckBox:DLG_NEW_FILE:BTN_PREVIEW +Titel sym:sfx2:Edit:DLG_NEW_FILE:ED_TITLE +Thema sym:sfx2:Edit:DLG_NEW_FILE:ED_THEMA +Schluesselworte sym:sfx2:Edit:DLG_NEW_FILE:ED_KEYWORDS +Beschreibung sym:sfx2:MultiLineEdit:DLG_NEW_FILE:ED_DESC +Text sym:sfx2:CheckBox:DLG_NEW_FILE:CB_TEXT_STYLE +Frame sym:sfx2:CheckBox:DLG_NEW_FILE:CB_FRAME_STYLE +Pages sym:sfx2:CheckBox:DLG_NEW_FILE:CB_PAGE_STYLE +Numbering sym:sfx2:CheckBox:DLG_NEW_FILE:CB_NUM_STYLE +Overwrite sym:sfx2:CheckBox:DLG_NEW_FILE:CB_MERGE_STYLE +Fromfile sym:sfx2:PushButton:DLG_NEW_FILE:PB_LOAD_FILE + +*NeueBibliothek sym:basctl:ModalDialog:RID_DLG_NEWLIB +Bibliotheksname sym:basctl:Edit:RID_DLG_NEWLIB:RID_ED_LIBNAME + +*NeuerDialog sym:basctl:ModalDialog:RID_DLG_NEWLIB +Dialogname sym:basctl:Edit:RID_DLG_NEWLIB:RID_ED_LIBNAME + +*NeuesFangobjekt .uno:CapturePoint +Horizontal sym:sd:ImageRadioButton:DLG_SNAPLINE:RB_HORIZONTAL +Vertikal sym:sd:ImageRadioButton:DLG_SNAPLINE:RB_VERTICAL +Punkt sym:sd:ImageRadioButton:DLG_SNAPLINE:RB_POINT +X sym:sd:MetricField:DLG_SNAPLINE:MTR_FLD_X +Y sym:sd:MetricField:DLG_SNAPLINE:MTR_FLD_Y + +*NeuesModul sym:basctl:ModalDialog:RID_DLG_NEWLIB +Modulname sym:basctl:Edit:RID_DLG_NEWLIB:RID_ED_LIBNAME + +*NotizBearbeiten sym:CUI_HID_POSTIT_DIALOG +Texteingabe sym:cui:MultiLineEdit:RID_SVXDLG_POSTIT:ED_EDIT sym:sw:MultiLineEdit:DLG_POSTIT:ED_EDIT +Autor sym:cui:PushButton:RID_SVXDLG_POSTIT:BTN_AUTHOR sym:sw:PushButton:DLG_POSTIT:BTN_AUTHOR +Vor sym:cui:ImageButton:RID_SVXDLG_POSTIT:BTN_NEXT +Zurueck sym:cui:ImageButton:RID_SVXDLG_POSTIT:BTN_PREV + +*NummernkreisOptionen sym:SW_HID_DLG_SEQUENCE_OPTION +Ebene sym:sw:ListBox:DLG_SEQUENCE_OPTION:LB_LEVEL +Trenner sym:sw:Edit:DLG_SEQUENCE_OPTION:ED_SEPARATOR +NotizEinfuegen NotizBearbeiten +NotizEinfuegenCalc NotizBearbeiten -Text cui:MultiLineEdit:RID_SVXDLG_POSTIT:ED_EDIT +Text sym:cui:MultiLineEdit:RID_SVXDLG_POSTIT:ED_EDIT -*ObenFuellen FID_FILL_TO_TOP +*ObenFuellen .uno:FillUp -*Objekte basctl:FloatingWindow:RID_BASICIDE_OBJCAT -Toolbox HID_BASICIDE_OBJECTS -Zeigen HID_BASICIDE_OBJCAT_SHOW -ObjektListe HID_BASICIDE_OBJECTCAT +*Objekte sym:basctl:FloatingWindow:RID_BASICIDE_OBJCAT +Toolbox sym:BASCTL_HID_BASICIDE_OBJECTS +Zeigen sym:BASCTL_HID_BASICIDE_OBJCAT_SHOW +ObjektListe sym:BASCTL_HID_BASICIDE_OBJECTCAT -*ObjekteUmbenennen HID_RENAME_XNAMED -Objektname sw:Edit:DLG_RENAME_XNAMED:ED_NEW_NAME +*ObjekteUmbenennen sym:SW_HID_RENAME_XNAMED +Objektname sym:sw:Edit:DLG_RENAME_XNAMED:ED_NEW_NAME -*OLEObjektEinfuegen SID_INSERT_OBJECT -NeuErstellen cui:RADIOBUTTON:MD_INSERT_OLEOBJECT:RB_NEW_OBJECT -AusDateiErstellen cui:RADIOBUTTON:MD_INSERT_OLEOBJECT:RB_OBJECT_FROMFILE -Objekttyp cui:LISTBOX:MD_INSERT_OLEOBJECT:LB_OBJECTTYPE -OleDatei cui:EDIT:MD_INSERT_OLEOBJECT:ED_FILEPATH -Verknuepfen cui:CHECKBOX:MD_INSERT_OLEOBJECT:CB_FILELINK -Durchsuchen cui:PUSHBUTTON:MD_INSERT_OLEOBJECT:BTN_FILEPATH +*OLEObjektEinfuegen .uno:InsertObject +NeuErstellen sym:cui:RadioButton:MD_INSERT_OLEOBJECT:RB_NEW_OBJECT +AusDateiErstellen sym:cui:RadioButton:MD_INSERT_OLEOBJECT:RB_OBJECT_FROMFILE +Objekttyp sym:cui:ListBox:MD_INSERT_OLEOBJECT:LB_OBJECTTYPE +OleDatei sym:cui:Edit:MD_INSERT_OLEOBJECT:ED_FILEPATH +Verknuepfen sym:cui:CheckBox:MD_INSERT_OLEOBJECT:CB_FILELINK +Durchsuchen sym:cui:PushButton:MD_INSERT_OLEOBJECT:BTN_FILEPATH +OptionenDlg ExtrasOptionenDlg diff --git a/testautomation/global/win/dial_p_s.win b/testautomation/global/win/dial_p_s.win index 3aebf3710902..17f1cd06b2c0 100755..100644 --- a/testautomation/global/win/dial_p_s.win +++ b/testautomation/global/win/dial_p_s.win @@ -1,368 +1,368 @@ -*Passwort HID_PASSWD -UserName sfx2:Edit:DLG_PASSWD:ED_PASSWD_USER -PasswortName sfx2:Edit:DLG_PASSWD:ED_PASSWD_PASSWORD -PasswortBestaetigen sfx2:Edit:DLG_PASSWD:ED_PASSWD_CONFIRM - -*PasswordFileOpen HID_DLG_PASSWORD_UUI -PasswortName uui:Edit:DLG_UUI_PASSWORD:ED_PASSWORD - -*PasswordFileSave HID_DLG_PASSWORD_TO_OPEN_MODIFY -Password HID_DLG_PASSWORD_TO_OPEN_MODIFY_PASSWORD_TO_OPEN -PasswordConfirm HID_DLG_PASSWORD_TO_OPEN_MODIFY_CONFIRM_PASSWORD_TO_OPEN -PasswordMoreOptions HID_DLG_PASSWORD_TO_OPEN_MODIFY_MORE -PasswordFileReadonly HID_DLG_PASSWORD_TO_OPEN_MODIFY_FILE_READONLY -PasswordToModify HID_DLG_PASSWORD_TO_OPEN_MODIFY_PASSWORD_TO_MODIFY -PasswordToModifyConfirm HID_DLG_PASSWORD_TO_OPEN_MODIFY_CONFIRM_PASSWORD_TO_MODIFY - -*PasswortEingeben SID_CHG_PROTECT -SchutzAufheben HID_CHG_PROTECT -PasswortEingabe sfx2:Edit:DLG_PASSWD:ED_PASSWD_USER -PasswortBestaetigen sfx2:Edit:DLG_PASSWD:ED_PASSWD_CONFIRM - -*PfadeAuswaehlen HID_MULTIPATH -Pfade HID_OPTIONS_MULTIPATH_LIST -Hinzufuegen cui:PUSHBUTTON:RID_SVXDLG_MULTIPATH:BTN_ADD_MULTIPATH -Loeschen cui:PUSHBUTTON:RID_SVXDLG_MULTIPATH:BTN_DEL_MULTIPATH - -*Pipette SID_BMPMASK svx:DockingWindow:RID_SVXDLG_BMPMASK -PipetteKnopf HID_BMPMASK_TBI_PIPETTE -Farbfeld HID_BMPMASK_CTL_PIPETTE -Ersetzen svx:PushButton:RID_SVXDLG_BMPMASK:BTN_EXEC -Quellfarbe1 svx:CheckBox:RID_SVXDLG_BMPMASK:CBX_1 -Quellfarbe2 svx:CheckBox:RID_SVXDLG_BMPMASK:CBX_2 -Quellfarbe3 svx:CheckBox:RID_SVXDLG_BMPMASK:CBX_3 -Quellfarbe4 svx:CheckBox:RID_SVXDLG_BMPMASK:CBX_4 -Toleranz1 svx:MetricField:RID_SVXDLG_BMPMASK:SP_1 -Toleranz2 svx:MetricField:RID_SVXDLG_BMPMASK:SP_2 -Toleranz3 svx:MetricField:RID_SVXDLG_BMPMASK:SP_3 -Toleranz4 svx:MetricField:RID_SVXDLG_BMPMASK:SP_4 -ErsetzenDurch1 svx:ListBox:RID_SVXDLG_BMPMASK:LB_1 -ErsetzenDurch2 svx:ListBox:RID_SVXDLG_BMPMASK:LB_2 -ErsetzenDurch3 svx:ListBox:RID_SVXDLG_BMPMASK:LB_3 -ErsetzenDurch4 svx:ListBox:RID_SVXDLG_BMPMASK:LB_4 -ErsetzenDurch5 svx:ListBox:RID_SVXDLG_BMPMASK:LB_TRANS -Tranzparenz svx:CheckBox:RID_SVXDLG_BMPMASK:CBX_TRANS - -*PivotFilter HID_SC_PIVOTFILTER -Operator1 sc:ListBox:RID_SCDLG_PIVOTFILTER:LB_OP1 -Operator2 sc:ListBox:RID_SCDLG_PIVOTFILTER:LB_OP2 -FieldName1 sc:ListBox:RID_SCDLG_PIVOTFILTER:LB_FIELD1 -FieldName2 sc:ListBox:RID_SCDLG_PIVOTFILTER:LB_FIELD2 -FieldName3 sc:ListBox:RID_SCDLG_PIVOTFILTER:LB_FIELD3 -Condition1 sc:ListBox:RID_SCDLG_PIVOTFILTER:LB_COND1 -Condition2 sc:ListBox:RID_SCDLG_PIVOTFILTER:LB_COND2 -Condition3 sc:ListBox:RID_SCDLG_PIVOTFILTER:LB_COND3 -Value1 sc:ComboBox:RID_SCDLG_PIVOTFILTER:ED_VAL1 -Value2 sc:ComboBox:RID_SCDLG_PIVOTFILTER:ED_VAL2 -Value3 sc:ComboBox:RID_SCDLG_PIVOTFILTER:ED_VAL3 -More sc:MoreButton:RID_SCDLG_PIVOTFILTER:BTN_MORE -CaseSensitive sc:CheckBox:RID_SCDLG_PIVOTFILTER:BTN_CASE -RegularExpression sc:CheckBox:RID_SCDLG_PIVOTFILTER:BTN_REGEXP -NoDuplication sc:CheckBox:RID_SCDLG_PIVOTFILTER:BTN_UNIQUE - -*PlugInEinfuegen SID_INSERT_PLUGIN -DateiUrl cui:EDIT:MD_INSERT_OBJECT_PLUGIN:ED_FILEURL -Durchsuchen cui:PUSHBUTTON:MD_INSERT_OBJECT_PLUGIN:BTN_FILEURL -Optionen cui:MULTILINEEDIT:MD_INSERT_OBJECT_PLUGIN:ED_PLUGINS_OPTIONS - -*QuelleAuswaehlen HID_DATAPILOT_TYPE -AktuelleSelektion sc:RadioButton:RID_SCDLG_DAPITYPE:BTN_SELECTION -AngemeldeteDatenquelle sc:RadioButton:RID_SCDLG_DAPITYPE:BTN_DATABASE -ExterneQuelle sc:RadioButton:RID_SCDLG_DAPITYPE:BTN_EXTERNAL - -*Rechtschreibung HID_SPELLCHECK -Original HID_SPELLDLG_SETWORD -Ersetzen HID_SPLDLG_BUTTON_CHANGE -AlleErsetzen HID_SPLDLG_BUTTON_CHANGEALL -Ignorieren HID_SPLDLG_BUTTON_IGNORE -AlleIgnorieren HID_SPLDLG_BUTTON_IGNOREALL -Sprache cui:ListBox:RID_SVXDLG_SPELLCHECK:LB_LANGUAGE -RechtschreibungSchliessen HID_SPLDLG_BUTTON_CLOSE - -*Redlining HID_REDLINE_ACCEPT -TabControl HID_REDLINING_TABCONTROL -TabListe HID_REDLINING_VIEW_PAGE -Liste HID_REDLINING_VIEW_DG_VIEW -ListItem HID_REDLINING_VIEW_DG_VIEW_TABLE -Akzeptieren HID_REDLINING_VIEW_PB_ACCEPT -AlleAkzeptieren HID_REDLINING_VIEW_PB_ACCEPTALL -Ablehnen HID_REDLINING_VIEW_PB_REJECT -AlleAblehnen HID_REDLINING_VIEW_PB_REJECTALL -Undo HID_REDLINING_VIEW_PB_UNDO - -TabFilter HID_REDLINING_FILTER_PAGE cui:TABPAGE:SID_REDLIN_FILTER_PAGE -Datum HID_REDLINING_FILTER_CB_DATE cui:CHECKBOX:SID_REDLIN_FILTER_PAGE:CB_DATE -DatumListe HID_REDLINING_FILTER_LB_DATE cui:LISTBOX:SID_REDLIN_FILTER_PAGE:LB_DATE -Datum1 HID_REDLINING_FILTER_DF_DATE cui:DATEFIELD:SID_REDLIN_FILTER_PAGE:DF_DATE -Zeit1 HID_REDLINING_FILTER_TF_DATE cui:TIMEFIELD:SID_REDLIN_FILTER_PAGE:TF_DATE -Aktuell1 HID_REDLINING_FILTER_IB_CLOCK SVX:IMAGEBUTTON:SID_REDLIN_FILTER_PAGE:IB_CLOCK -Datum2 HID_REDLINING_FILTER_DF_DATE2 SVX:DATEFIELD:SID_REDLIN_FILTER_PAGE:DF_DATE2 -Zeit2 HID_REDLINING_FILTER_TF_DATE2 SVX:TIMEFIELD:SID_REDLIN_FILTER_PAGE:TF_DATE2 -Aktuell2 HID_REDLINING_FILTER_IB_CLOCK2 SVX:IMAGEBUTTON:SID_REDLIN_FILTER_PAGE:IB_CLOCK2 -Autor HID_REDLINING_FILTER_CB_AUTOR SVX:CHECKBOX:SID_REDLIN_FILTER_PAGE:CB_AUTOR -AutoListe HID_REDLINING_FILTER_LB_AUTOR SVX:LISTBOX:SID_REDLIN_FILTER_PAGE:LB_AUTOR -Bereich HID_REDLINING_FILTER_CB_RANGE SVX:CHECKBOX:SID_REDLIN_FILTER_PAGE:CB_RANGE -BereichText HID_REDLINING_FILTER_ED_RANGE SVX:EDIT:SID_REDLIN_FILTER_PAGE:ED_RANGE -Button HID_REDLINING_FILTER_BTN_REF SVX:PUSHBUTTON:SID_REDLIN_FILTER_PAGE:BTN_REF -Aktion HID_REDLINING_FILTER_CB_ACTION SVX:CHECKBOX:SID_REDLIN_FILTER_PAGE:CB_ACTION -Aktionsliste HID_REDLINING_FILTER_LB_ACTION SVX:LISTBOX:SID_REDLIN_FILTER_PAGE:LB_ACTION -Comment HID_REDLINING_FILTER_CB_COMMENT SVX:CHECKBOX:SID_REDLIN_FILTER_PAGE:CB_COMMENT -CommentText HID_REDLINING_FILTER_ED_COMMENT SVX:LISTBOX:SID_REDLIN_FILTER_PAGE:ED_COMMENT - -*ReiheFuellen FID_FILL_SERIES -Oben sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_TOP -Unten sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_BOTTOM -Rechts sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_RIGHT -Links sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_LEFT -Arithmetisch sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_ARITHMETIC -Geometrisch sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_GEOMETRIC -Datum sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_DATE -AutoAusfuellen sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_AUTOFILL -Tag sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_DAY -WochenTag sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_DAY_OF_WEEK -Monat sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_MONTH -Jahr sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_YEAR -StartWert sc:Edit:RID_SCDLG_FILLSERIES:ED_START_VALUES -EndWert sc:Edit:RID_SCDLG_FILLSERIES:ED_END_VALUES -Inkrement sc:Edit:RID_SCDLG_FILLSERIES:ED_INCREMENT - -*Schriften STARMATH:MODALDIALOG:RID_FONTDIALOG -Schriftart STARMATH:COMBOBOX:RID_FONTDIALOG:1 -Fett STARMATH:CHECKBOX:RID_FONTDIALOG:1 -Kursiv STARMATH:CHECKBOX:RID_FONTDIALOG:2 - -*Schriftarten SID_FONT -Variablen starmath:ListBox:RID_FONTTYPEDIALOG:1 -Funktionen starmath:ListBox:RID_FONTTYPEDIALOG:2 -Zahlen starmath:ListBox:RID_FONTTYPEDIALOG:3 -Text starmath:ListBox:RID_FONTTYPEDIALOG:4 -Serif starmath:ListBox:RID_FONTTYPEDIALOG:5 -Sans starmath:ListBox:RID_FONTTYPEDIALOG:6 -Fixed starmath:ListBox:RID_FONTTYPEDIALOG:7 -Aendern starmath:MenuButton:RID_FONTTYPEDIALOG:1 -Standard starmath:PushButton:RID_FONTTYPEDIALOG:2 - -*Schriftgroessen SID_FONTSIZE -BasisGroesse STARMATH:METRICFIELD:RID_FONTSIZEDIALOG:1 -TextGroesse STARMATH:METRICFIELD:RID_FONTSIZEDIALOG:4 -Indizes STARMATH:METRICFIELD:RID_FONTSIZEDIALOG:5 -Funktionen STARMATH:METRICFIELD:RID_FONTSIZEDIALOG:6 -Operatoren STARMATH:METRICFIELD:RID_FONTSIZEDIALOG:7 -Grenzen STARMATH:METRICFIELD:RID_FONTSIZEDIALOG:8 -Standard STARMATH:PUSHBUTTON:RID_FONTSIZEDIALOG:1 - -*ScriptEinfuegen SW:MODALDIALOG:DLG_JAVAEDIT -Scripttyp SW:EDIT:DLG_JAVAEDIT:ED_TYPE -HierDerText SW:MULTILINEEDIT:DLG_JAVAEDIT:ED_EDIT -ScriptURL sw:RadioButton:DLG_JAVAEDIT:RB_URL -ScriptURLText sw:Edit:DLG_JAVAEDIT:ED_URL -ScriptURLWaehlen sw:PushButton:DLG_JAVAEDIT:PB_URL -ScriptText sw:RadioButton:DLG_JAVAEDIT:RB_EDIT -NaechstesScript sw:ImageButton:DLG_JAVAEDIT:BTN_NEXT -VorherigesScript sw:ImageButton:DLG_JAVAEDIT:BTN_PREV - -*SeiteEinfuegen SID_INSERTPAGE -AutoLayout HID_SD_CTL_NEWFOIL -Hintergrund HID_SD_CHGFOIL_BACKGROUND -ObjekteAufDemHintergund HID_SD_CHGFOIL_OBJECTS - -*SeitenLayout SID_MODIFYPAGE -AutoLayout HID_SD_CHGFOIL_LAYOUT -Hintergrund HID_SD_CHGFOIL_BACKGROUND -SeitenName HID_SD_CHGFOIL_NAME -ObjekteAufDemHintergrund HID_SD_CHGFOIL_OBJECTS - -*SeitenObjekteEinfuegen DLG_INSERT_PAGES_OBJS -Verknuepfung sd:CheckBox:DLG_INSERT_PAGES_OBJS:CBX_LINK -DeleteUnusedBackgrounds sd:CheckBox:DLG_INSERT_PAGES_OBJS:CBX_CHECK_MASTERS -InsertObjectsList HID_SD_PAGEOBJSTLB - -*Seitenvorlage SID_PRESENTATION_LAYOUT -Laden sd:PushButton:DLG_PRESLT:BTN_LOAD -HintergrundseiteAustauschen sd:CheckBox:DLG_PRESLT:CBX_MASTER_PAGE -DeleteUnusedBackgrounds sd:CheckBox:DLG_PRESLT:CBX_CHECK_MASTERS - -*SeitenvorlageLaden HID_FILEDLG_LOADTEMPLATE -Bereiche sfx2:ListBox:DLG_NEW_FILE:LB_REGION -Beschreibung sfx2:MultiLineEdit:DLG_NEW_FILE:ED_DESC -Schluesselworte sfx2:Edit:DLG_NEW_FILE:ED_KEYWORDS -Thema sfx2:Edit:DLG_NEW_FILE:ED_THEMA -Titel sfx2:Edit:DLG_NEW_FILE:ED_TITLE -Vorlagen sfx2:ListBox:DLG_NEW_FILE:LB_TEMPLATE -Vorschau sfx2:CheckBox:DLG_NEW_FILE:BTN_PREVIEW -Zusaetze sfx2:MoreButton:DLG_NEW_FILE:BT_MORE - -*Serienbrief FN_QRY_MERGE -DatensaetzeAlle sw:RadioButton:DLG_MAILMERGE:RB_ALL -DatensaetzeMarkiert sw:RadioButton:DLG_MAILMERGE:RB_MARKED -DatensaetzeVonBis sw:RadioButton:DLG_MAILMERGE:RB_FROM -Von sw:NumericField:DLG_MAILMERGE:NF_FROM -Bis sw:NumericField:DLG_MAILMERGE:NF_TO -Drucker sw:RadioButton:DLG_MAILMERGE:RB_PRINTER -Mailing sw:RadioButton:DLG_MAILMERGE:RB_MAILING -AlsDatei sw:RadioButton:DLG_MAILMERGE:RB_FILE -DateiButton sw:PushButton:DLG_MAILMERGE:PB_PATH -Pfadeingabe sw:Edit:DLG_MAILMERGE:ED_PATH -EinzelneDruckjobserzeugen sw:CheckBox:DLG_MAILMERGE:CB_SINGLE_JOBS -Adressfeld sw:ListBox:DLG_MAILMERGE:LB_ADDRESSFLD -Anhaenge sw:Edit:DLG_MAILMERGE:ED_ATTACH -AnhaengeAuswahl sw:PushButton:DLG_MAILMERGE:PB_ATTACH -Betreff sw:Edit:DLG_MAILMERGE:ED_SUBJECT -FormatHTML sw:CheckBox:DLG_MAILMERGE:CB_FORMAT_HTML -FormatRTF sw:CheckBox:DLG_MAILMERGE:CB_FORMAT_RTF -FormatStarWriter sw:CheckBox:DLG_MAILMERGE:CB_FORMAT_SW -Datenbankfeldliste sw:ListBox:DLG_MAILMERGE:LB_COLUMN - -*Sonderzeichen SID_CHARMAP -Schrift cui:ListBox:RID_SVXDLG_CHARMAP:LB_FONT -SchriftListe HID_CHARMAP_CTL_SHOWSET -Loeschen cui:PushButton:RID_SVXDLG_CHARMAP:BTN_DELETE -Zeichenanzeige HID_CHARMAP_CTL_SHOWCHAR -Textanzeige HID_CHARMAP_CTL_SHOWTEXT -Subset cui:ListBox:RID_SVXDLG_CHARMAP:LB_SUBSET - -*SonstigesJavaabschaltung cui:ModalDialog:RID_SVXDLG_OPT_JAVASCRIPT_DISABLE -NichtMehrAnzeigen cui:CheckBox:RID_SVXDLG_OPT_JAVASCRIPT_DISABLE:CB_JSCPT_DISABLE - -*Sortieren FN_SORTING_DLG -Schluessel1 sw:CheckBox:DLG_SORTING:CB_KEY1 -Spalte1 sw:NumericField:DLG_SORTING:ED_KEY1 -Schluesseltyp1 sw:ListBox:DLG_SORTING:DLB_KEY1 -Aufsteigend1 sw:RadioButton:DLG_SORTING:RB_UP -Absteigend1 sw:RadioButton:DLG_SORTING:RB_DN -Schluessel2 sw:CheckBox:DLG_SORTING:CB_KEY2 -Spalte2 sw:NumericField:DLG_SORTING:ED_KEY2 -Schluesseltyp2 sw:ListBox:DLG_SORTING:DLB_KEY2 -Aufsteigend2 sw:RadioButton:DLG_SORTING:RB_UP2 -Absteigend2 sw:RadioButton:DLG_SORTING:RB_DN2 -Schluessel3 sw:CheckBox:DLG_SORTING:CB_KEY3 -Spalte3 sw:NumericField:DLG_SORTING:ED_KEY3 -Aufsteigend3 sw:RadioButton:DLG_SORTING:RB_UP3 -Absteigend3 sw:RadioButton:DLG_SORTING:RB_DN3 -Schluesseltyp3 sw:ListBox:DLG_SORTING:DLB_KEY3 -Spalten sw:RadioButton:DLG_SORTING:RB_COL -Zeilen sw:RadioButton:DLG_SORTING:RB_ROW -Tabulator sw:RadioButton:DLG_SORTING:RB_TAB -Zeichen sw:RadioButton:DLG_SORTING:RB_TABCH -Zeichentext sw:Edit:DLG_SORTING:ED_TABCH -Sonderzeichen sw:PushButton:DLG_SORTING:PB_DELIM -Sprache sw:ListBox:DLG_SORTING:LB_LANG -ExakterVergleich sw:CheckBox:DLG_SORTING:CB_CASE - -*SpalteAusblenden FID_COL_HIDE - -*SpalteEinblenden FID_COL_SHOW - -*SpaltenbreiteCalc FID_COL_WIDTH -Breite sc:MetricField:RID_SCDLG_COL_MAN:ED_VALUE HID_SC_MTRIN_VAL -Standardwert sc:CheckBox:RID_SCDLG_COL_MAN:BTN_DEFVAL HID_SC_MTRIN_DEF - -*SpaltenBreite FN_TABLE_SET_COL_WIDTH -Spalte sw:NumericField:DLG_COL_WIDTH:ED_COL -Breite sw:MetricField:DLG_COL_WIDTH:ED_WIDTH - -*Spaltenzuordnung HID_DLG_MAPPING -Kuerzel extensions:ListBox:RID_DLG_MAPPING:LB_IDENTIFIER -Literaturart extensions:ListBox:RID_DLG_MAPPING:LB_AUTHORITYTYPE -Autor extensions:ListBox:RID_DLG_MAPPING:LB_AUTHOR -Titel extensions:ListBox:RID_DLG_MAPPING:LB_TITLE -Jahr extensions:ListBox:RID_DLG_MAPPING:LB_YEAR -ISBN extensions:ListBox:RID_DLG_MAPPING:LB_ISBN -Buchtitel extensions:ListBox:RID_DLG_MAPPING:LB_BOOKTITLE -Kapitel extensions:ListBox:RID_DLG_MAPPING:LB_CHAPTER -Ausgabe extensions:ListBox:RID_DLG_MAPPING:LB_EDITION -Herausgeber extensions:ListBox:RID_DLG_MAPPING:LB_EDITOR -Ausgabeart extensions:ListBox:RID_DLG_MAPPING:LB_HOWPUBLISHED -Institution extensions:ListBox:RID_DLG_MAPPING:LB_INSTITUTION -Zeitschrift extensions:ListBox:RID_DLG_MAPPING:LB_JOURNAL -Monat extensions:ListBox:RID_DLG_MAPPING:LB_MONTH -Notiz extensions:ListBox:RID_DLG_MAPPING:LB_NOTE -Anmerkung extensions:ListBox:RID_DLG_MAPPING:LB_ANNOTE -Nummer extensions:ListBox:RID_DLG_MAPPING:LB_NUMBER -Organisation extensions:ListBox:RID_DLG_MAPPING:LB_ORGANIZATIONS -Seiten extensions:ListBox:RID_DLG_MAPPING:LB_PAGES -Verlag extensions:ListBox:RID_DLG_MAPPING:LB_PUBLISHER -Adresse extensions:ListBox:RID_DLG_MAPPING:LB_ADDRESS -Hochschule extensions:ListBox:RID_DLG_MAPPING:LB_SCHOOL -Serie extensions:ListBox:RID_DLG_MAPPING:LB_SERIES -ArtDesReport extensions:ListBox:RID_DLG_MAPPING:LB_REPORTTYPE -Band extensions:ListBox:RID_DLG_MAPPING:LB_VOLUME -URL extensions:ListBox:RID_DLG_MAPPING:LB_URL -Benutzerfeld1 extensions:ListBox:RID_DLG_MAPPING:LB_CUSTOM1 -Benutzerfeld2 extensions:ListBox:RID_DLG_MAPPING:LB_CUSTOM2 -Benutzerfeld3 extensions:ListBox:RID_DLG_MAPPING:LB_CUSTOM3 -Benutzerfeld4 extensions:ListBox:RID_DLG_MAPPING:LB_CUSTOM4 -Benutzerfeld5 extensions:ListBox:RID_DLG_MAPPING:LB_CUSTOM5 - -*SpalteOptimaleBreite FID_COL_OPT_WIDTH -Extra sc:MetricField:RID_SCDLG_COL_OPT:ED_VALUE HID_SC_MTRIN_VAL -Standardwert sc:CheckBox:RID_SCDLG_COL_OPT:BTN_DEFVAL HID_SC_MTRIN_DEF - -*Spezialfilter SID_SPECIAL_FILTER -BefindenBereich sc:ListBox:RID_SCDLG_SPEC_FILTER:LB_CRITERIA_AREA -Befinden sc:Edit:RID_SCDLG_SPEC_FILTER:ED_CRITERIA_AREA -GrossKleinschreibung sc:CheckBox:RID_SCDLG_SPEC_FILTER:BTN_CASE -RegulaererAusdruck sc:CheckBox:RID_SCDLG_SPEC_FILTER:BTN_REGEXP -BereichEnthaeltSpaltenkoepfe sc:CheckBox:RID_SCDLG_SPEC_FILTER:BTN_HEADER -KeineDuplikate sc:CheckBox:RID_SCDLG_SPEC_FILTER:BTN_UNIQUE -Persistent sc:CheckBox:RID_SCDLG_SPEC_FILTER:BTN_DEST_PERS -FilterergebnisAusgeben sc:CheckBox:RID_SCDLG_SPEC_FILTER:BTN_COPY_RESULT -AusgebenBereich sc:ListBox:RID_SCDLG_SPEC_FILTER:LB_COPY_AREA -Ausgeben sc:Edit:RID_SCDLG_SPEC_FILTER:ED_COPY_AREA -Zusaetze sc:MoreButton:RID_SCDLG_SPEC_FILTER:BTN_MORE -FilterkriterienMin sc:ImageButton:RID_SCDLG_SPEC_FILTER:RB_CRITERIA_AREA -FilterergebnisMin sc:ImageButton:RID_SCDLG_SPEC_FILTER:RB_COPY_AREA - -*StandardFilter SID_FILTER -FeldName1 sc:ListBox:RID_SCDLG_FILTER:LB_FIELD1 -Feldname2 sc:ListBox:RID_SCDLG_FILTER:LB_FIELD2 -Feldname3 sc:ListBox:RID_SCDLG_FILTER:LB_FIELD3 -Feldname4 sc:ListBox:RID_SCDLG_FILTER:LB_FIELD4 -Bedingung1 sc:ListBox:RID_SCDLG_FILTER:LB_COND1 -Bedingung2 sc:ListBox:RID_SCDLG_FILTER:LB_COND2 -Bedingung3 sc:ListBox:RID_SCDLG_FILTER:LB_COND3 -Bedingung4 sc:ListBox:RID_SCDLG_FILTER:LB_COND4 -Wert1 sc:ComboBox:RID_SCDLG_FILTER:ED_VAL1 -Wert2 sc:ComboBox:RID_SCDLG_FILTER:ED_VAL2 -Wert3 sc:ComboBox:RID_SCDLG_FILTER:ED_VAL3 -Wert4 sc:ComboBox:RID_SCDLG_FILTER:ED_VAL4 -Verknuepfung1 sc:ListBox:RID_SCDLG_FILTER:LB_OP1 -Verknuepfung2 sc:ListBox:RID_SCDLG_FILTER:LB_OP2 -Verknuepfung3 sc:ListBox:RID_SCDLG_FILTER:LB_OP3 -Verknuepfung4 sc:ListBox:RID_SCDLG_FILTER:LB_OP4 -Zusaetze sc:MoreButton:RID_SCDLG_FILTER:BTN_MORE -GrossKleinschreibung sc:CheckBox:RID_SCDLG_FILTER:BTN_CASE -BereicheEnthaeltSpaltenkoepfe sc:CheckBox:RID_SCDLG_FILTER:BTN_HEADER -RegulaererAusdruck sc:CheckBox:RID_SCDLG_FILTER:BTN_REGEXP -KeineDuplikate sc:CheckBox:RID_SCDLG_FILTER:BTN_UNIQUE -FilterergebnisNach sc:CheckBox:RID_SCDLG_FILTER:BTN_COPY_RESULT -AusgebenBereich sc:ListBox:RID_SCDLG_FILTER:LB_COPY_AREA -Ausgeben sc:Edit:RID_SCDLG_FILTER:ED_COPY_AREA -DialogMin sc:ImageButton:RID_SCDLG_FILTER:RB_COPY_AREA -Persistent sc:CheckBox:RID_SCDLG_FILTER:BTN_DEST_PERS - -*Statusbar HID_STATUSBAR - -'*Standardbrowser extensions:ModalDialog:MD_PROTCHK_DIALOG -'StarOfficeVerwenden extensions:RadioButton:MD_PROTCHK_DIALOG:RB_STAROFFICE -'KeineAenderungen extensions:RadioButton:MD_PROTCHK_DIALOG:RB_OTHER -'ImmerUeberpruefen extensions:CheckBox:MD_PROTCHK_DIALOG:CB_PERFORM -'Zusaetze extensions:PushButton:MD_PROTCHK_DIALOG:BT_DETAILS +*Passwort sym:SFX2_HID_PASSWD +UserName sym:sfx2:Edit:DLG_PASSWD:ED_PASSWD_USER +PasswortName sym:sfx2:Edit:DLG_PASSWD:ED_PASSWD_PASSWORD +PasswortBestaetigen sym:sfx2:Edit:DLG_PASSWD:ED_PASSWD_CONFIRM + +*PasswordFileOpen sym:UUI_HID_DLG_PASSWORD_UUI +PasswortName sym:uui:Edit:DLG_UUI_PASSWORD:ED_PASSWORD + +*PasswordFileSave sym:CUI_HID_DLG_PASSWORD_TO_OPEN_MODIFY +Password sym:CUI_HID_DLG_PASSWORD_TO_OPEN_MODIFY_PASSWORD_TO_OPEN +PasswordConfirm sym:CUI_HID_DLG_PASSWORD_TO_OPEN_MODIFY_CONFIRM_PASSWORD_TO_OPEN +PasswordMoreOptions sym:CUI_HID_DLG_PASSWORD_TO_OPEN_MODIFY_MORE +PasswordFileReadonly sym:CUI_HID_DLG_PASSWORD_TO_OPEN_MODIFY_FILE_READONLY +PasswordToModify sym:CUI_HID_DLG_PASSWORD_TO_OPEN_MODIFY_PASSWORD_TO_MODIFY +PasswordToModifyConfirm sym:CUI_HID_DLG_PASSWORD_TO_OPEN_MODIFY_CONFIRM_PASSWORD_TO_MODIFY + +*PasswortEingeben .uno:ProtectTraceChangeMode +SchutzAufheben sym:SC_HID_CHG_PROTECT +PasswortEingabe sym:sfx2:Edit:DLG_PASSWD:ED_PASSWD_USER +PasswortBestaetigen sym:sfx2:Edit:DLG_PASSWD:ED_PASSWD_CONFIRM + +*PfadeAuswaehlen sym:CUI_HID_MULTIPATH +Pfade sym:CUI_HID_OPTIONS_MULTIPATH_LIST +Hinzufuegen sym:cui:PushButton:RID_SVXDLG_MULTIPATH:BTN_ADD_MULTIPATH +Loeschen sym:cui:PushButton:RID_SVXDLG_MULTIPATH:BTN_DEL_MULTIPATH + +*Pipette .uno:BmpMask sym:svx:DockingWindow:RID_SVXDLG_BMPMASK +PipetteKnopf sym:SVX_HID_BMPMASK_TBI_PIPETTE +Farbfeld sym:SVX_HID_BMPMASK_CTL_PIPETTE +Ersetzen sym:svx:PushButton:RID_SVXDLG_BMPMASK:BTN_EXEC +Quellfarbe1 sym:svx:CheckBox:RID_SVXDLG_BMPMASK:CBX_1 +Quellfarbe2 sym:svx:CheckBox:RID_SVXDLG_BMPMASK:CBX_2 +Quellfarbe3 sym:svx:CheckBox:RID_SVXDLG_BMPMASK:CBX_3 +Quellfarbe4 sym:svx:CheckBox:RID_SVXDLG_BMPMASK:CBX_4 +Toleranz1 sym:svx:MetricField:RID_SVXDLG_BMPMASK:SP_1 +Toleranz2 sym:svx:MetricField:RID_SVXDLG_BMPMASK:SP_2 +Toleranz3 sym:svx:MetricField:RID_SVXDLG_BMPMASK:SP_3 +Toleranz4 sym:svx:MetricField:RID_SVXDLG_BMPMASK:SP_4 +ErsetzenDurch1 sym:svx:ListBox:RID_SVXDLG_BMPMASK:LB_1 +ErsetzenDurch2 sym:svx:ListBox:RID_SVXDLG_BMPMASK:LB_2 +ErsetzenDurch3 sym:svx:ListBox:RID_SVXDLG_BMPMASK:LB_3 +ErsetzenDurch4 sym:svx:ListBox:RID_SVXDLG_BMPMASK:LB_4 +ErsetzenDurch5 sym:svx:ListBox:RID_SVXDLG_BMPMASK:LB_TRANS +Tranzparenz sym:svx:CheckBox:RID_SVXDLG_BMPMASK:CBX_TRANS + +*PivotFilter sym:SC_HID_SC_PIVOTFILTER +Operator1 sym:sc:ListBox:RID_SCDLG_PIVOTFILTER:LB_OP1 +Operator2 sym:sc:ListBox:RID_SCDLG_PIVOTFILTER:LB_OP2 +FieldName1 sym:sc:ListBox:RID_SCDLG_PIVOTFILTER:LB_FIELD1 +FieldName2 sym:sc:ListBox:RID_SCDLG_PIVOTFILTER:LB_FIELD2 +FieldName3 sym:sc:ListBox:RID_SCDLG_PIVOTFILTER:LB_FIELD3 +Condition1 sym:sc:ListBox:RID_SCDLG_PIVOTFILTER:LB_COND1 +Condition2 sym:sc:ListBox:RID_SCDLG_PIVOTFILTER:LB_COND2 +Condition3 sym:sc:ListBox:RID_SCDLG_PIVOTFILTER:LB_COND3 +Value1 sym:sc:ComboBox:RID_SCDLG_PIVOTFILTER:ED_VAL1 +Value2 sym:sc:ComboBox:RID_SCDLG_PIVOTFILTER:ED_VAL2 +Value3 sym:sc:ComboBox:RID_SCDLG_PIVOTFILTER:ED_VAL3 +More sym:sc:MoreButton:RID_SCDLG_PIVOTFILTER:BTN_MORE +CaseSensitive sym:sc:CheckBox:RID_SCDLG_PIVOTFILTER:BTN_CASE +RegularExpression sym:sc:CheckBox:RID_SCDLG_PIVOTFILTER:BTN_REGEXP +NoDuplication sym:sc:CheckBox:RID_SCDLG_PIVOTFILTER:BTN_UNIQUE + +*PlugInEinfuegen .uno:InsertPlugin +DateiUrl sym:cui:Edit:MD_INSERT_OBJECT_PLUGIN:ED_FILEURL +Durchsuchen sym:cui:PushButton:MD_INSERT_OBJECT_PLUGIN:BTN_FILEURL +Optionen sym:cui:MultiLineEdit:MD_INSERT_OBJECT_PLUGIN:ED_PLUGINS_OPTIONS + +*QuelleAuswaehlen sym:SC_HID_DATAPILOT_TYPE +AktuelleSelektion sym:sc:RadioButton:RID_SCDLG_DAPITYPE:BTN_SELECTION +AngemeldeteDatenquelle sym:sc:RadioButton:RID_SCDLG_DAPITYPE:BTN_DATABASE +ExterneQuelle sym:sc:RadioButton:RID_SCDLG_DAPITYPE:BTN_EXTERNAL + +*Rechtschreibung sym:CUI_HID_SPELLCHECK +Original sym:CUI_HID_SPELLDLG_SETWORD +Ersetzen sym:CUI_HID_SPLDLG_BUTTON_CHANGE +AlleErsetzen sym:CUI_HID_SPLDLG_BUTTON_CHANGEALL +Ignorieren sym:CUI_HID_SPLDLG_BUTTON_IGNORE +AlleIgnorieren sym:CUI_HID_SPLDLG_BUTTON_IGNOREALL +Sprache sym:cui:ListBox:RID_SVXDLG_SPELLCHECK:LB_LANGUAGE +RechtschreibungSchliessen sym:CUI_HID_SPLDLG_BUTTON_CLOSE + +*Redlining sym:SW_HID_REDLINE_ACCEPT +TabControl sym:SVX_HID_REDLINING_TABCONTROL +TabListe sym:SVX_HID_REDLINING_VIEW_PAGE +Liste sym:SVX_HID_REDLINING_VIEW_DG_VIEW +ListItem sym:SVX_HID_REDLINING_VIEW_DG_VIEW_TABLE +Akzeptieren sym:SVX_HID_REDLINING_VIEW_PB_ACCEPT +AlleAkzeptieren sym:SVX_HID_REDLINING_VIEW_PB_ACCEPTALL +Ablehnen sym:SVX_HID_REDLINING_VIEW_PB_REJECT +AlleAblehnen sym:SVX_HID_REDLINING_VIEW_PB_REJECTALL +Undo sym:SVX_HID_REDLINING_VIEW_PB_UNDO + +TabFilter sym:SVX_HID_REDLINING_FILTER_PAGE sym:cui:TabPage:SID_REDLIN_FILTER_PAGE +Datum sym:SVX_HID_REDLINING_FILTER_CB_DATE sym:cui:CheckBox:SID_REDLIN_FILTER_PAGE:CB_DATE +DatumListe sym:SVX_HID_REDLINING_FILTER_LB_DATE sym:cui:ListBox:SID_REDLIN_FILTER_PAGE:LB_DATE +Datum1 sym:SVX_HID_REDLINING_FILTER_DF_DATE sym:cui:DateField:SID_REDLIN_FILTER_PAGE:DF_DATE +Zeit1 sym:SVX_HID_REDLINING_FILTER_TF_DATE sym:cui:TimeField:SID_REDLIN_FILTER_PAGE:TF_DATE +Aktuell1 sym:SVX_HID_REDLINING_FILTER_IB_CLOCK sym:svx:ImageButton:SID_REDLIN_FILTER_PAGE:IB_CLOCK +Datum2 sym:SVX_HID_REDLINING_FILTER_DF_DATE2 sym:svx:DateField:SID_REDLIN_FILTER_PAGE:DF_DATE2 +Zeit2 sym:SVX_HID_REDLINING_FILTER_TF_DATE2 sym:svx:TimeField:SID_REDLIN_FILTER_PAGE:TF_DATE2 +Aktuell2 sym:SVX_HID_REDLINING_FILTER_IB_CLOCK2 sym:svx:ImageButton:SID_REDLIN_FILTER_PAGE:IB_CLOCK2 +Autor sym:SVX_HID_REDLINING_FILTER_CB_AUTOR sym:svx:CheckBox:SID_REDLIN_FILTER_PAGE:CB_AUTOR +AutoListe sym:SVX_HID_REDLINING_FILTER_LB_AUTOR sym:svx:ListBox:SID_REDLIN_FILTER_PAGE:LB_AUTOR +Bereich sym:SVX_HID_REDLINING_FILTER_CB_RANGE sym:svx:CheckBox:SID_REDLIN_FILTER_PAGE:CB_RANGE +BereichText sym:SVX_HID_REDLINING_FILTER_ED_RANGE sym:svx:Edit:SID_REDLIN_FILTER_PAGE:ED_RANGE +Button sym:SVX_HID_REDLINING_FILTER_BTN_REF sym:svx:PushButton:SID_REDLIN_FILTER_PAGE:BTN_REF +Aktion sym:SVX_HID_REDLINING_FILTER_CB_ACTION sym:svx:CheckBox:SID_REDLIN_FILTER_PAGE:CB_ACTION +Aktionsliste sym:SVX_HID_REDLINING_FILTER_LB_ACTION sym:svx:ListBox:SID_REDLIN_FILTER_PAGE:LB_ACTION +Comment sym:SVX_HID_REDLINING_FILTER_CB_COMMENT sym:svx:CheckBox:SID_REDLIN_FILTER_PAGE:CB_COMMENT +CommentText sym:SVX_HID_REDLINING_FILTER_ED_COMMENT sym:svx:ListBox:SID_REDLIN_FILTER_PAGE:ED_COMMENT + +*ReiheFuellen .uno:FillSeries +Oben sym:sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_TOP +Unten sym:sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_BOTTOM +Rechts sym:sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_RIGHT +Links sym:sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_LEFT +Arithmetisch sym:sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_ARITHMETIC +Geometrisch sym:sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_GEOMETRIC +Datum sym:sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_DATE +AutoAusfuellen sym:sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_AUTOFILL +Tag sym:sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_DAY +WochenTag sym:sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_DAY_OF_WEEK +Monat sym:sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_MONTH +Jahr sym:sc:RadioButton:RID_SCDLG_FILLSERIES:BTN_YEAR +StartWert sym:sc:Edit:RID_SCDLG_FILLSERIES:ED_START_VALUES +EndWert sym:sc:Edit:RID_SCDLG_FILLSERIES:ED_END_VALUES +Inkrement sym:sc:Edit:RID_SCDLG_FILLSERIES:ED_INCREMENT + +*Schriften sym:starmath:ModalDialog:RID_FONTDIALOG +Schriftart sym:starmath:ComboBox:RID_FONTDIALOG:1 +Fett sym:starmath:CheckBox:RID_FONTDIALOG:1 +Kursiv sym:starmath:CheckBox:RID_FONTDIALOG:2 + +*Schriftarten .uno:ChangeFont +Variablen sym:starmath:ListBox:RID_FONTTYPEDIALOG:1 +Funktionen sym:starmath:ListBox:RID_FONTTYPEDIALOG:2 +Zahlen sym:starmath:ListBox:RID_FONTTYPEDIALOG:3 +Text sym:starmath:ListBox:RID_FONTTYPEDIALOG:4 +Serif sym:starmath:ListBox:RID_FONTTYPEDIALOG:5 +Sans sym:starmath:ListBox:RID_FONTTYPEDIALOG:6 +Fixed sym:starmath:ListBox:RID_FONTTYPEDIALOG:7 +Aendern sym:starmath:MenuButton:RID_FONTTYPEDIALOG:1 +Standard sym:starmath:PushButton:RID_FONTTYPEDIALOG:2 + +*Schriftgroessen .uno:ChangeFontSize +BasisGroesse sym:starmath:MetricField:RID_FONTSIZEDIALOG:1 +TextGroesse sym:starmath:MetricField:RID_FONTSIZEDIALOG:4 +Indizes sym:starmath:MetricField:RID_FONTSIZEDIALOG:5 +Funktionen sym:starmath:MetricField:RID_FONTSIZEDIALOG:6 +Operatoren sym:starmath:MetricField:RID_FONTSIZEDIALOG:7 +Grenzen sym:starmath:MetricField:RID_FONTSIZEDIALOG:8 +Standard sym:starmath:PushButton:RID_FONTSIZEDIALOG:1 + +*ScriptEinfuegen sym:sw:ModalDialog:DLG_JAVAEDIT +Scripttyp sym:sw:Edit:DLG_JAVAEDIT:ED_TYPE +HierDerText sym:sw:MultiLineEdit:DLG_JAVAEDIT:ED_EDIT +ScriptURL sym:sw:RadioButton:DLG_JAVAEDIT:RB_URL +ScriptURLText sym:sw:Edit:DLG_JAVAEDIT:ED_URL +ScriptURLWaehlen sym:sw:PushButton:DLG_JAVAEDIT:PB_URL +ScriptText sym:sw:RadioButton:DLG_JAVAEDIT:RB_EDIT +NaechstesScript sym:sw:ImageButton:DLG_JAVAEDIT:BTN_NEXT +VorherigesScript sym:sw:ImageButton:DLG_JAVAEDIT:BTN_PREV + +*SeiteEinfuegen .uno:InsertPage +AutoLayout sym:SD_HID_SD_CTL_NEWFOIL +Hintergrund sym:SD_HID_SD_CHGFOIL_BACKGROUND +ObjekteAufDemHintergund sym:SD_HID_SD_CHGFOIL_OBJECTS + +*SeitenLayout .uno:ModifyPage +AutoLayout sym:SD_HID_SD_CHGFOIL_LAYOUT +Hintergrund sym:SD_HID_SD_CHGFOIL_BACKGROUND +SeitenName sym:SD_HID_SD_CHGFOIL_NAME +ObjekteAufDemHintergrund sym:SD_HID_SD_CHGFOIL_OBJECTS + +*SeitenObjekteEinfuegen sym:SD_HID_DLG_INSERT_PAGES_OBJS +Verknuepfung sym:sd:CheckBox:DLG_INSERT_PAGES_OBJS:CBX_LINK +DeleteUnusedBackgrounds sym:sd:CheckBox:DLG_INSERT_PAGES_OBJS:CBX_CHECK_MASTERS +InsertObjectsList sym:SD_HID_SD_PAGEOBJSTLB + +*Seitenvorlage .uno:PresentationLayout +Laden sym:sd:PushButton:DLG_PRESLT:BTN_LOAD +HintergrundseiteAustauschen sym:sd:CheckBox:DLG_PRESLT:CBX_MASTER_PAGE +DeleteUnusedBackgrounds sym:sd:CheckBox:DLG_PRESLT:CBX_CHECK_MASTERS + +*SeitenvorlageLaden sym:SW_HID_FILEDLG_LOADTEMPLATE +Bereiche sym:sfx2:ListBox:DLG_NEW_FILE:LB_REGION +Beschreibung sym:sfx2:MultiLineEdit:DLG_NEW_FILE:ED_DESC +Schluesselworte sym:sfx2:Edit:DLG_NEW_FILE:ED_KEYWORDS +Thema sym:sfx2:Edit:DLG_NEW_FILE:ED_THEMA +Titel sym:sfx2:Edit:DLG_NEW_FILE:ED_TITLE +Vorlagen sym:sfx2:ListBox:DLG_NEW_FILE:LB_TEMPLATE +Vorschau sym:sfx2:CheckBox:DLG_NEW_FILE:BTN_PREVIEW +Zusaetze sym:sfx2:MoreButton:DLG_NEW_FILE:BT_MORE + +*Serienbrief .uno:MergeDialog +DatensaetzeAlle sym:sw:RadioButton:DLG_MAILMERGE:RB_ALL +DatensaetzeMarkiert sym:sw:RadioButton:DLG_MAILMERGE:RB_MARKED +DatensaetzeVonBis sym:sw:RadioButton:DLG_MAILMERGE:RB_FROM +Von sym:sw:NumericField:DLG_MAILMERGE:NF_FROM +Bis sym:sw:NumericField:DLG_MAILMERGE:NF_TO +Drucker sym:sw:RadioButton:DLG_MAILMERGE:RB_PRINTER +Mailing sym:sw:RadioButton:DLG_MAILMERGE:RB_MAILING +AlsDatei sym:sw:RadioButton:DLG_MAILMERGE:RB_FILE +DateiButton sym:sw:PushButton:DLG_MAILMERGE:PB_PATH +Pfadeingabe sym:sw:Edit:DLG_MAILMERGE:ED_PATH +EinzelneDruckjobserzeugen sym:sw:CheckBox:DLG_MAILMERGE:CB_SINGLE_JOBS +Adressfeld sym:sw:ListBox:DLG_MAILMERGE:LB_ADDRESSFLD +Anhaenge sym:sw:Edit:DLG_MAILMERGE:ED_ATTACH +AnhaengeAuswahl sym:sw:PushButton:DLG_MAILMERGE:PB_ATTACH +Betreff sym:sw:Edit:DLG_MAILMERGE:ED_SUBJECT +FormatHTML sym:sw:CheckBox:DLG_MAILMERGE:CB_FORMAT_HTML +FormatRTF sym:sw:CheckBox:DLG_MAILMERGE:CB_FORMAT_RTF +FormatStarWriter sym:sw:CheckBox:DLG_MAILMERGE:CB_FORMAT_SW +Datenbankfeldliste sym:sw:ListBox:DLG_MAILMERGE:LB_COLUMN + +*Sonderzeichen .uno:InsertSymbol +Schrift sym:cui:ListBox:RID_SVXDLG_CHARMAP:LB_FONT +SchriftListe sym:CUI_HID_CHARMAP_CTL_SHOWSET +Loeschen sym:cui:PushButton:RID_SVXDLG_CHARMAP:BTN_DELETE +Zeichenanzeige sym:CUI_HID_CHARMAP_CTL_SHOWCHAR +Textanzeige sym:CUI_HID_CHARMAP_CTL_SHOWTEXT +Subset sym:cui:ListBox:RID_SVXDLG_CHARMAP:LB_SUBSET + +*SonstigesJavaabschaltung sym:cui:ModalDialog:RID_SVXDLG_OPT_JAVASCRIPT_DISABLE +NichtMehrAnzeigen sym:cui:CheckBox:RID_SVXDLG_OPT_JAVASCRIPT_DISABLE:CB_JSCPT_DISABLE + +*Sortieren .uno:SortDialog +Schluessel1 sym:sw:CheckBox:DLG_SORTING:CB_KEY1 +Spalte1 sym:sw:NumericField:DLG_SORTING:ED_KEY1 +Schluesseltyp1 sym:sw:ListBox:DLG_SORTING:DLB_KEY1 +Aufsteigend1 sym:sw:RadioButton:DLG_SORTING:RB_UP +Absteigend1 sym:sw:RadioButton:DLG_SORTING:RB_DN +Schluessel2 sym:sw:CheckBox:DLG_SORTING:CB_KEY2 +Spalte2 sym:sw:NumericField:DLG_SORTING:ED_KEY2 +Schluesseltyp2 sym:sw:ListBox:DLG_SORTING:DLB_KEY2 +Aufsteigend2 sym:sw:RadioButton:DLG_SORTING:RB_UP2 +Absteigend2 sym:sw:RadioButton:DLG_SORTING:RB_DN2 +Schluessel3 sym:sw:CheckBox:DLG_SORTING:CB_KEY3 +Spalte3 sym:sw:NumericField:DLG_SORTING:ED_KEY3 +Aufsteigend3 sym:sw:RadioButton:DLG_SORTING:RB_UP3 +Absteigend3 sym:sw:RadioButton:DLG_SORTING:RB_DN3 +Schluesseltyp3 sym:sw:ListBox:DLG_SORTING:DLB_KEY3 +Spalten sym:sw:RadioButton:DLG_SORTING:RB_COL +Zeilen sym:sw:RadioButton:DLG_SORTING:RB_ROW +Tabulator sym:sw:RadioButton:DLG_SORTING:RB_TAB +Zeichen sym:sw:RadioButton:DLG_SORTING:RB_TABCH +Zeichentext sym:sw:Edit:DLG_SORTING:ED_TABCH +Sonderzeichen sym:sw:PushButton:DLG_SORTING:PB_DELIM +Sprache sym:sw:ListBox:DLG_SORTING:LB_LANG +ExakterVergleich sym:sw:CheckBox:DLG_SORTING:CB_CASE + +*SpalteAusblenden .uno:HideColumn + +*SpalteEinblenden .uno:ShowColumn + +*SpaltenbreiteCalc .uno:ColumnWidth +Breite sym:sc:MetricField:RID_SCDLG_COL_MAN:ED_VALUE HID_SC_MTRIN_VAL +Standardwert sym:sc:CheckBox:RID_SCDLG_COL_MAN:BTN_DEFVAL HID_SC_MTRIN_DEF + +*SpaltenBreite .uno:SetColumnWidth +Spalte sym:sw:NumericField:DLG_COL_WIDTH:ED_COL +Breite sym:sw:MetricField:DLG_COL_WIDTH:ED_WIDTH + +*Spaltenzuordnung sym:EXTENSIONS_HID_DLG_MAPPING +Kuerzel sym:extensions:ListBox:RID_DLG_MAPPING:LB_IDENTIFIER +Literaturart sym:extensions:ListBox:RID_DLG_MAPPING:LB_AUTHORITYTYPE +Autor sym:extensions:ListBox:RID_DLG_MAPPING:LB_AUTHOR +Titel sym:extensions:ListBox:RID_DLG_MAPPING:LB_TITLE +Jahr sym:extensions:ListBox:RID_DLG_MAPPING:LB_YEAR +ISBN sym:extensions:ListBox:RID_DLG_MAPPING:LB_ISBN +Buchtitel sym:extensions:ListBox:RID_DLG_MAPPING:LB_BOOKTITLE +Kapitel sym:extensions:ListBox:RID_DLG_MAPPING:LB_CHAPTER +Ausgabe sym:extensions:ListBox:RID_DLG_MAPPING:LB_EDITION +Herausgeber sym:extensions:ListBox:RID_DLG_MAPPING:LB_EDITOR +Ausgabeart sym:extensions:ListBox:RID_DLG_MAPPING:LB_HOWPUBLISHED +Institution sym:extensions:ListBox:RID_DLG_MAPPING:LB_INSTITUTION +Zeitschrift sym:extensions:ListBox:RID_DLG_MAPPING:LB_JOURNAL +Monat sym:extensions:ListBox:RID_DLG_MAPPING:LB_MONTH +Notiz sym:extensions:ListBox:RID_DLG_MAPPING:LB_NOTE +Anmerkung sym:extensions:ListBox:RID_DLG_MAPPING:LB_ANNOTE +Nummer sym:extensions:ListBox:RID_DLG_MAPPING:LB_NUMBER +Organisation sym:extensions:ListBox:RID_DLG_MAPPING:LB_ORGANIZATIONS +Seiten sym:extensions:ListBox:RID_DLG_MAPPING:LB_PAGES +Verlag sym:extensions:ListBox:RID_DLG_MAPPING:LB_PUBLISHER +Adresse sym:extensions:ListBox:RID_DLG_MAPPING:LB_ADDRESS +Hochschule sym:extensions:ListBox:RID_DLG_MAPPING:LB_SCHOOL +Serie sym:extensions:ListBox:RID_DLG_MAPPING:LB_SERIES +ArtDesReport sym:extensions:ListBox:RID_DLG_MAPPING:LB_REPORTTYPE +Band sym:extensions:ListBox:RID_DLG_MAPPING:LB_VOLUME +URL sym:extensions:ListBox:RID_DLG_MAPPING:LB_URL +Benutzerfeld1 sym:extensions:ListBox:RID_DLG_MAPPING:LB_CUSTOM1 +Benutzerfeld2 sym:extensions:ListBox:RID_DLG_MAPPING:LB_CUSTOM2 +Benutzerfeld3 sym:extensions:ListBox:RID_DLG_MAPPING:LB_CUSTOM3 +Benutzerfeld4 sym:extensions:ListBox:RID_DLG_MAPPING:LB_CUSTOM4 +Benutzerfeld5 sym:extensions:ListBox:RID_DLG_MAPPING:LB_CUSTOM5 + +*SpalteOptimaleBreite .uno:SetOptimalColumnWidth +Extra sym:sc:MetricField:RID_SCDLG_COL_OPT:ED_VALUE HID_SC_MTRIN_VAL +Standardwert sym:sc:CheckBox:RID_SCDLG_COL_OPT:BTN_DEFVAL HID_SC_MTRIN_DEF + +*Spezialfilter .uno:DataFilterSpecialFilter +BefindenBereich sym:sc:ListBox:RID_SCDLG_SPEC_FILTER:LB_CRITERIA_AREA +Befinden sym:sc:Edit:RID_SCDLG_SPEC_FILTER:ED_CRITERIA_AREA +GrossKleinschreibung sym:sc:CheckBox:RID_SCDLG_SPEC_FILTER:BTN_CASE +RegulaererAusdruck sym:sc:CheckBox:RID_SCDLG_SPEC_FILTER:BTN_REGEXP +BereichEnthaeltSpaltenkoepfe sym:sc:CheckBox:RID_SCDLG_SPEC_FILTER:BTN_HEADER +KeineDuplikate sym:sc:CheckBox:RID_SCDLG_SPEC_FILTER:BTN_UNIQUE +Persistent sym:sc:CheckBox:RID_SCDLG_SPEC_FILTER:BTN_DEST_PERS +FilterergebnisAusgeben sym:sc:CheckBox:RID_SCDLG_SPEC_FILTER:BTN_COPY_RESULT +AusgebenBereich sym:sc:ListBox:RID_SCDLG_SPEC_FILTER:LB_COPY_AREA +Ausgeben sym:sc:Edit:RID_SCDLG_SPEC_FILTER:ED_COPY_AREA +Zusaetze sym:sc:MoreButton:RID_SCDLG_SPEC_FILTER:BTN_MORE +FilterkriterienMin sym:sc:ImageButton:RID_SCDLG_SPEC_FILTER:RB_CRITERIA_AREA +FilterergebnisMin sym:sc:ImageButton:RID_SCDLG_SPEC_FILTER:RB_COPY_AREA + +*StandardFilter .uno:DataFilterStandardFilter +FeldName1 sym:sc:ListBox:RID_SCDLG_FILTER:LB_FIELD1 +Feldname2 sym:sc:ListBox:RID_SCDLG_FILTER:LB_FIELD2 +Feldname3 sym:sc:ListBox:RID_SCDLG_FILTER:LB_FIELD3 +Feldname4 sym:sc:ListBox:RID_SCDLG_FILTER:LB_FIELD4 +Bedingung1 sym:sc:ListBox:RID_SCDLG_FILTER:LB_COND1 +Bedingung2 sym:sc:ListBox:RID_SCDLG_FILTER:LB_COND2 +Bedingung3 sym:sc:ListBox:RID_SCDLG_FILTER:LB_COND3 +Bedingung4 sym:sc:ListBox:RID_SCDLG_FILTER:LB_COND4 +Wert1 sym:sc:ComboBox:RID_SCDLG_FILTER:ED_VAL1 +Wert2 sym:sc:ComboBox:RID_SCDLG_FILTER:ED_VAL2 +Wert3 sym:sc:ComboBox:RID_SCDLG_FILTER:ED_VAL3 +Wert4 sym:sc:ComboBox:RID_SCDLG_FILTER:ED_VAL4 +Verknuepfung1 sym:sc:ListBox:RID_SCDLG_FILTER:LB_OP1 +Verknuepfung2 sym:sc:ListBox:RID_SCDLG_FILTER:LB_OP2 +Verknuepfung3 sym:sc:ListBox:RID_SCDLG_FILTER:LB_OP3 +Verknuepfung4 sym:sc:ListBox:RID_SCDLG_FILTER:LB_OP4 +Zusaetze sym:sc:MoreButton:RID_SCDLG_FILTER:BTN_MORE +GrossKleinschreibung sym:sc:CheckBox:RID_SCDLG_FILTER:BTN_CASE +BereicheEnthaeltSpaltenkoepfe sym:sc:CheckBox:RID_SCDLG_FILTER:BTN_HEADER +RegulaererAusdruck sym:sc:CheckBox:RID_SCDLG_FILTER:BTN_REGEXP +KeineDuplikate sym:sc:CheckBox:RID_SCDLG_FILTER:BTN_UNIQUE +FilterergebnisNach sym:sc:CheckBox:RID_SCDLG_FILTER:BTN_COPY_RESULT +AusgebenBereich sym:sc:ListBox:RID_SCDLG_FILTER:LB_COPY_AREA +Ausgeben sym:sc:Edit:RID_SCDLG_FILTER:ED_COPY_AREA +DialogMin sym:sc:ImageButton:RID_SCDLG_FILTER:RB_COPY_AREA +Persistent sym:sc:CheckBox:RID_SCDLG_FILTER:BTN_DEST_PERS + +*Statusbar sym:FWK_HID_STATUSBAR + +'*Standardbrowser sym:extensions:ModalDialog:MD_PROTCHK_DIALOG +'StarOfficeVerwenden sym:extensions:RadioButton:MD_PROTCHK_DIALOG:RB_STAROFFICE +'KeineAenderungen sym:extensions:RadioButton:MD_PROTCHK_DIALOG:RB_OTHER +'ImmerUeberpruefen sym:extensions:CheckBox:MD_PROTCHK_DIALOG:CB_PERFORM +'Zusaetze sym:extensions:PushButton:MD_PROTCHK_DIALOG:BT_DETAILS 'Protokollauswahl HID_PROTOCOLS +Stylist Gestalter -*SymboleMath starmath:ModalDialog:RID_SYMBOLDIALOG -Symbolset starmath:ListBox:RID_SYMBOLDIALOG:1 -Bearbeiten starmath:PushButton:RID_SYMBOLDIALOG:1 -Uebernehmen starmath:PushButton:RID_SYMBOLDIALOG:2 -Symbols HID_SMA_CONTROL_SYMBOLSET_VIEW - -*SzenarioAnlegen SC:MODALDIALOG:RID_SCDLG_NEWSCENARIO SID_SCENARIOS -SzenarioName sc:Edit:RID_SCDLG_NEWSCENARIO:ED_NAME -Kommentar sc:MultiLineEdit:RID_SCDLG_NEWSCENARIO:ED_COMMENT -RahmenAnzeigen SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_SHOWFRAME -Rahmenfarbe SC:LISTBOX:RID_SCDLG_NEWSCENARIO:LB_COLOR -Zurueckkopieren SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_TWOWAY -GanzeTabelle SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_COPYALL -PreventChanges sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_PROTECT +*SymboleMath sym:starmath:ModalDialog:RID_SYMBOLDIALOG +Symbolset sym:starmath:ListBox:RID_SYMBOLDIALOG:1 +Bearbeiten sym:starmath:PushButton:RID_SYMBOLDIALOG:1 +Uebernehmen sym:starmath:PushButton:RID_SYMBOLDIALOG:2 +Symbols sym:STARMATH_HID_SMA_CONTROL_SYMBOLSET_VIEW + +*SzenarioAnlegen sym:sc:ModalDialog:RID_SCDLG_NEWSCENARIO .uno:ScenarioManager +SzenarioName sym:sc:Edit:RID_SCDLG_NEWSCENARIO:ED_NAME +Kommentar sym:sc:MultiLineEdit:RID_SCDLG_NEWSCENARIO:ED_COMMENT +RahmenAnzeigen sym:sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_SHOWFRAME +Rahmenfarbe sym:sc:ListBox:RID_SCDLG_NEWSCENARIO:LB_COLOR +Zurueckkopieren sym:sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_TWOWAY +GanzeTabelle sym:sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_COPYALL +PreventChanges sym:sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_PROTECT diff --git a/testautomation/global/win/dial_t_z.win b/testautomation/global/win/dial_t_z.win index 4cec83ed566b..3c2516068f37 100755..100644 --- a/testautomation/global/win/dial_t_z.win +++ b/testautomation/global/win/dial_t_z.win @@ -1,326 +1,326 @@ -*TabelleAuftrennen FN_TABLE_SPLIT_TABLE -UeberschriftKopieren SW:RADIOBUTTON:DLG_SPLIT_TABLE:RB_CNTNT -EigeneMitVorlage SW:RADIOBUTTON:DLG_SPLIT_TABLE:RB_BOX_PARA -Eigene SW:RADIOBUTTON:DLG_SPLIT_TABLE:RB_BOX_NOPARA -Keine SW:RADIOBUTTON:DLG_SPLIT_TABLE:RB_BORDER - -*TabelleAusblenden FID_TABLE_HIDE - -*TabellenFormat HID_FORMAT_TABLE - -*TabelleEinblenden FID_TABLE_SHOW -AusgeblendeteTabelle SC:MULTILISTBOX:RID_SCDLG_SHOW_TAB:LB_ENTRYLIST HID_SC_SELENTRY_LIST - -*TabelleEinfuegenCalc sc:ModalDialog:RID_SCDLG_INSERT_TABLE -Vor sc:RadioButton:RID_SCDLG_INSERT_TABLE:RB_BEFORE -Nach sc:RadioButton:RID_SCDLG_INSERT_TABLE:RB_BEHIND -Anzahl sc:NumericField:RID_SCDLG_INSERT_TABLE:NF_COUNT -NeuErstellen sc:RadioButton:RID_SCDLG_INSERT_TABLE:RB_NEW -AusDateiErstellen sc:RadioButton:RID_SCDLG_INSERT_TABLE:RB_FROMFILE -TabellenName sc:Edit:RID_SCDLG_INSERT_TABLE:ED_TABNAME -Auswahl sc:MultiListBox:RID_SCDLG_INSERT_TABLE:LB_TABLES -Verknuepfen sc:CheckBox:RID_SCDLG_INSERT_TABLE:CB_LINK -Durchsuchen sc:PushButton:RID_SCDLG_INSERT_TABLE:BTN_BROWSE -Tabellen sc:PushButton:RID_SCDLG_INSERT_TABLE:BTN_BROWSE - -*TabelleEinfuegenWriter FN_INSERT_TABLE -TabellenName sw:Edit:DLG_INSERT_TABLE:ED_NAME -Spalten sw:NumericField:DLG_INSERT_TABLE:ED_COL -Zeilen sw:NumericField:DLG_INSERT_TABLE:ED_ROW -UeberschriftWiederholen sw:CheckBox:DLG_INSERT_TABLE:CB_REPEAT_HEADER -TabelleNichtTrennen sw:CheckBox:DLG_INSERT_TABLE:CB_DONT_SPLIT -Umrandung sw:CheckBox:DLG_INSERT_TABLE:CB_BORDER -Autoformat SW:PUSHBUTTON:DLG_INSERT_TABLE:BT_AUTOFORMAT -Ueberschrift sw:CheckBox:DLG_INSERT_TABLE:CB_HEADER - -*TabellenFuellen FID_INS_CELL_CONTENTS -AuswahlAllesEinfuegen sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSALL -AuswahlZeichenketten sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSSTRINGS -AuswahlZahlen sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSNUMBERS -AuswahlDatumZeit sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSDATETIME -AuswahlFormeln sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSFORMULAS -AuswahlNotizen sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSNOTES -AuswahlFormate sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSATTRS -Objects sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSOBJECTS -RechenopperationenKeine sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_NOOP -RechenopperationenAddieren sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_ADD -RechenopperationenSubtrahieren sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_SUB -RechenopperationenMultiplizieren sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_MUL -RechenopperationenDividieren sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_DIV -LeerzeilenUeberspringen sc:CheckBox:RID_SCDLG_INSCONT:BTN_SKIP_EMPTY -Verknuepfen sc:CheckBox:RID_SCDLG_INSCONT:BTN_LINK -Transponieren sc:CheckBox:RID_SCDLG_INSCONT:BTN_TRANSPOSE -NichtVerschieben SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_NONE -NachUnten SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_DOWN -NachRechts SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_RIGHT - -*TabelleSchuetzen FID_PROTECT_TABLE -Passwort HID_PASSWD_TABLE -Bestaetigung sfx2:Edit:DLG_PASSWD:ED_PASSWD_CONFIRM -IstVerdeckt sfx2:Edit:DLG_PASSWD:ED_PASSWD_USER - -*TabelleUmbenennen FID_TAB_RENAME -TabellenName HID_SC_RENAME_NAME sc:Edit:RID_SCDLG_STRINPUT:ED_INPUT - -*TabellenVerbinden FN_TABLE_MERGE_TABLE -MitVorherigerTabelleVerbinden sw:RadioButton:DLG_MERGE_TABLE:RB_MERGE_PREV -MitNachfolgenderTabelleVerbinden sw:RadioButton:DLG_MERGE_TABLE:RB_MERGE_NEXT - -*TabelleVerschiebenKopieren FID_TAB_MOVE -InsDokument sc:ListBox:RID_SCDLG_MOVETAB:LB_DEST -EinfuegenVor sc:ListBox:RID_SCDLG_MOVETAB:LB_INSERT -Kopieren sc:CheckBox:RID_SCDLG_MOVETAB:BTN_COPY - -*TB_SC_Themenauswahl HID_DLGSTYLES_DIALOG -ThemenListe HID_DLGSTYLES_LISTBOX -Schliessen HID_DLGSTYLES_CANCEL -Uebernehmen HID_DLGSTYLES_OKAY - -*TB_Farbe HID_POPUP_COLOR -Automatic HID_POPUP_COLOR_CTRL - -*TB_ImagemapEditor HID_IMAPDLG_TOOLBOX -Zuweisen HID_IMAPDLG_APPLY -Oeffnen HID_IMAPDLG_OPEN -Speichern HID_IMAPDLG_SAVEAS -Auswahl HID_IMAPDLG_SELECT -Rechteck HID_IMAPDLG_RECT -Ellipse HID_IMAPDLG_CIRCLE -Polygon HID_IMAPDLG_POLY -Freihandpolygon HID_IMAPDLG_FREEPOLY -Punktebearbeiten HID_IMAPDLG_POLYEDIT -Punkteverschieben HID_IMAPDLG_POLYMOVE -Punkteeinfuegen HID_IMAPDLG_POLYINSERT -Punkteloeschen HID_IMAPDLG_POLYDELETE -Rueckgaengig HID_IMAPDLG_UNDO -Wiederholen HID_IMAPDLG_REDO -Aktiv HID_IMAPDLG_ACTIVE -Makro HID_IMAPDLG_MACRO -Eigenschaften HID_IMAPDLG_PROPERTY - -*TB_Umrandung HID_POPUP_FRAME - -*TB_Umrandungsstil HID_POPUP_LINE - -*TextbausteineUmbenennen HID_RENAME_GLOSSARY -Name SW:EDIT:DLG_RENAME_GLOS:ED_ON -Neu SW:EDIT:DLG_RENAME_GLOS:ED_NN -KuerzelAlt SW:EDIT:DLG_RENAME_GLOS:ED_OS -KuerzelNeu SW:EDIT:DLG_RENAME_GLOS:ED_NS - -*TextInTabelleUmwandeln FN_CONVERT_TEXT_TABLE sw:ModalDialog:DLG_CONV_TEXT_TABLE -Tabulator sw:RadioButton:DLG_CONV_TEXT_TABLE:CB_TAB -Semikolon sw:RadioButton:DLG_CONV_TEXT_TABLE:CB_SEMI -Absatz sw:RadioButton:DLG_CONV_TEXT_TABLE:CB_PARA -Andere SW:RADIOBUTTON:DLG_CONV_TEXT_TABLE:RB_OTHER -AndereText SW:EDIT:DLG_CONV_TEXT_TABLE:ED_OTHER -GleicheBreite SW:CHECKBOX:DLG_CONV_TEXT_TABLE:CB_KEEPCOLUMN -Autoformat SW:PUSHBUTTON:DLG_CONV_TEXT_TABLE:BT_AUTOFORMAT -Ueberschrift sw:CheckBox:DLG_CONV_TEXT_TABLE:CB_HEADER -Wiederholen sw:CheckBox:DLG_CONV_TEXT_TABLE:CB_REPEAT_HEADER -NichtTrennen sw:CheckBox:DLG_CONV_TEXT_TABLE:CB_DONT_SPLIT -Umrandung sw:CheckBox:DLG_CONV_TEXT_TABLE:CB_BORDER - -*TextmarkeEinfuegen FN_INSERT_BOOKMARK -Textmarken sw:ComboBox:DLG_INSERT_BOOKMARK:CB_BOOKMARK -Loeschen sw:PushButton:DLG_INSERT_BOOKMARK:BT_DELETE - -*Ueberblenden SID_POLYGON_MORPHING -Attributierung sd:CheckBox:DLG_MORPH:CBX_ATTRIBUTES -GleicheOrientierung sd:CheckBox:DLG_MORPH:CBX_ORIENTATION -Schritte sd:MetricField:DLG_MORPH:MTF_STEPS - -*UeberStarCalc SID_ABOUT - -*UeberStarChart SID_ABOUT - -*UeberStarDraw SID_ABOUT - -*UeberStarImage SID_ABOUT - -*UeberStarMath SID_ABOUT - -*UeberStarWriter SID_ABOUT - -*UmbruchEinfuegen FN_INSERT_BREAK_DLG -Zeilenumbruch SW:RADIOBUTTON:DLG_BREAK:RB_LINE -Spaltenumbruch SW:RADIOBUTTON:DLG_BREAK:RB_COL -Seitenumbruch SW:RADIOBUTTON:DLG_BREAK:RB_PAGE -Vorlage SW:LISTBOX:DLG_BREAK:LB_COLL -SeitennummerAendern SW:CHECKBOX:DLG_BREAK:CB_PAGENUM -Seitennummer SW:NUMERICFIELD:DLG_BREAK:ED_PAGENUM - -*UmwandelnInPolygon SID_VECTORIZE -Farbanzahl sd:NumericField:DLG_VECTORIZE:NM_LAYERS -Punktreduktion sd:MetricField:DLG_VECTORIZE:MT_REDUCE -LoecherFuellen sd:CheckBox:DLG_VECTORIZE:CB_FILLHOLES -Kachelgroesse sd:MetricField:DLG_VECTORIZE:MT_FILLHOLES -Vorschau sd:PushButton:DLG_VECTORIZE:BTN_PREVIEW - -*UntenFuellen FID_FILL_TO_BOTTOM - -*UndoRedoBox HID_SVXTBX_UNDO_REDO_CTRL -UndoRedoList svx:ListBox:RID_SVXTBX_UNDO_REDO_CTRL:LB_SVXTBX_UNDO_REDO_CTRL - -*Verbinder HID_PAGE_CONNECTION SVX:TABPAGE:RID_SVXPAGE_CONNECTION -Linie1 cui:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_1 -Linie2 cui:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_2 -Linie3 cui:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_3 -Typ cui:LISTBOX:RID_SVXPAGE_CONNECTION:LB_TYPE -AnfangHorizontal cui:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_HORZ_1 -AnfangVertikal cui:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_VERT_1 -EndeHorizontal cui:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_HORZ_2 -EndeVertikal cui:METRICFIELD:RID_SVXPAGE_CONNECTION:MTR_FLD_VERT_2 -Vorschau HID_PAGE_CONNECTION_CTL_PREVIEW - -*VerknuepfungenBearbeiten cui:ModalDialog:MD_UPDATE_BASELINKS -Liste HID_LINKDLG_TABLB -VerknuepfungBearbeiten cui:PushButton:MD_UPDATE_BASELINKS:PB_OPEN_SOURCE -Automatisch cui:RadioButton:MD_UPDATE_BASELINKS:RB_AUTOMATIC -Manuell cui:RadioButton:MD_UPDATE_BASELINKS:RB_MANUAL -Aktualisieren cui:PushButton:MD_UPDATE_BASELINKS:PB_UPDATE_NOW -Aendern cui:PushButton:MD_UPDATE_BASELINKS:PB_CHANGE_SOURCE -Loesen cui:PushButton:MD_UPDATE_BASELINKS:PB_BREAK_LINK - -*VersendenMonitor HID_MERGE_PRINTMONITOR - -*Versionen SFX2:MODALDIALOG:DLG_VERSIONS -Speichern SFX2:PUSHBUTTON:DLG_VERSIONS:PB_SAVE -ImmerVersionSpeichern SFX2:CHECKBOX:DLG_VERSIONS:CB_SAVEONCLOSE -Anzeigen SFX2:PUSHBUTTON:DLG_VERSIONS:PB_VIEW -Loeschen SFX2:PUSHBUTTON:DLG_VERSIONS:PB_DELETE -Oeffnen SFX2:PUSHBUTTON:DLG_VERSIONS:PB_OPEN -Vergleichen sfx2:PushButton:DLG_VERSIONS:PB_COMPARE - -*VersionskommentarEingeben SFX2:MODALDIALOG:DLG_COMMENTS -Kommentar SFX2:MULTILINEEDIT:DLG_COMMENTS:ME_VERSIONS -Schliessen SFX2:PUSHBUTTON:DLG_COMMENTS:PB_CLOSE - -*VerteilenDlg HID_PAGE_DISTRIBUTE -KeineHorizontal cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_NONE -Links cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_LEFT -MitteHorizontal cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_CENTER -AbstandHorizontal cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_DISTANCE -Rechts cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_RIGHT -KeineVertikal cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_VER_NONE -Oben cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_VER_TOP -MitteVertikal cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_VER_CENTER -AbstandVertikal cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_VER_DISTANCE -Unten cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_VER_BOTTOM - -*VerzeichniseintragEinfuegen FN_INSERT_IDX_ENTRY_DLG -EintragOk HID_INSERT_IDX_MRK_OK -EinfuegenSchliessen HID_INSERT_IDX_MRK_CLOSE -Verzeichniseintrag HID_INSERT_IDX_MRK_ENTRY -Verzeichnis HID_INSERT_IDX_MRK_TYPE -Schluessel1 HID_INSERT_IDX_MRK_PRIM_KEY -Schluessel2 HID_INSERT_IDX_MRK_SEC_KEY -Stufe HID_INSERT_IDX_MRK_LEVEL -EintragLoeschen HID_INSERT_IDX_MRK_DELETE -EintragNeu HID_INSERT_IDX_MRK_NEW -Haupteintrag HID_INSERT_IDX_MRK_MAIN_ENTRY -AufAlleGleichenAnwenden HID_INSERT_IDX_MRK_APPLY_ALL -EntryPhoneticReading HID_INSERT_IDX_MRK_PHONETIC_READING - -*VerzeichniseintragBearbeiten FN_EDIT_IDX_ENTRY_DLG -EintragOk HID_INSERT_IDX_MRK_OK -BearbeitenSchliessen HID_INSERT_IDX_MRK_CLOSE -Verzeichnis HID_INSERT_IDX_MRK_TYPE -Verzeichniseintrag HID_INSERT_IDX_MRK_ENTRY -Schluessel1 HID_INSERT_IDX_MRK_PRIM_KEY -Schluessel2 HID_INSERT_IDX_MRK_SEC_KEY -Stufe HID_INSERT_IDX_MRK_LEVEL -EintragLoeschen HID_INSERT_IDX_MRK_DELETE -EintragNeu HID_INSERT_IDX_MRK_NEW -Naechster HID_INSERT_IDX_MRK_NEXT -Vorheriger HID_INSERT_IDX_MRK_PREV - -*VorlageErzeugen SID_STYLE_NEW_BY_EXAMPLE SID_TEMPLATE_NEW_BY_EXAMPLE -Vorlagenname sfx2:ComboBox:DLG_NEW_STYLE_BY_EXAMPLE:LB_COL - -*Vorlagenkatalog SID_STYLE_CATALOG -Vorlagen sfx2:ListBox:RID_STYLECATALOG:BT_TOOL -Ansicht HID_TEMPLATE_FMT -Bereich sfx2:ListBox:RID_STYLECATALOG:BT_FLIST -Neu sfx2:PushButton:RID_STYLECATALOG:BT_NEW -Aendern sfx2:PushButton:RID_STYLECATALOG:BT_EDIT -Loeschen sfx2:PushButton:RID_STYLECATALOG:BT_DEL -Verwalten sfx2:PushButton:RID_STYLECATALOG:BT_ORG - -*Vorschau SID_PREVIEW_WIN - -*VorlageZuweisen HID_DLG_ADD_IDX_STYLES -ZuweisenLinks sw:ImageButton:DLG_ADD_IDX_STYLES:PB_LEFT -ZuweisenRechts sw:ImageButton:DLG_ADD_IDX_STYLES:PB_RIGHT - -*WBereicheBearbeiten HID_BIB_BASE -Bereichname SW:EDIT:DLG_BIB_BASE:ED_NAME -Bereich SW:LISTBOX:DLG_BIB_BASE:LB_PATH -Liste HID_GLOS_GROUP_TREE -Neu sw:PushButton:DLG_BIB_BASE:PB_NEW -Loeschen sw:PushButton:DLG_BIB_BASE:PB_DELETE -Umbenennen sw:PushButton:DLG_BIB_BASE:PB_RENAME - -*Zahlenformat HID_NUMBERFORMAT -Kategorie cui:ListBox:RID_SVXPAGE_NUMBERFORMAT:LB_CATEGORY -KategorieFormat HID_NUMBERFORMAT_LB_FORMAT +*TabelleAuftrennen .uno:SplitTable +UeberschriftKopieren sym:sw:RadioButton:DLG_SPLIT_TABLE:RB_CNTNT +EigeneMitVorlage sym:sw:RadioButton:DLG_SPLIT_TABLE:RB_BOX_PARA +Eigene sym:sw:RadioButton:DLG_SPLIT_TABLE:RB_BOX_NOPARA +Keine sym:sw:RadioButton:DLG_SPLIT_TABLE:RB_BORDER + +*TabelleAusblenden .uno:Hide + +*TabellenFormat sym:SW_HID_FORMAT_TABLE + +*TabelleEinblenden .uno:Show +AusgeblendeteTabelle sym:sc:MultiListBox:RID_SCDLG_SHOW_TAB:LB_ENTRYLIST sym:SC_HID_SC_SELENTRY_LIST + +*TabelleEinfuegenCalc sym:sc:ModalDialog:RID_SCDLG_INSERT_TABLE +Vor sym:sc:RadioButton:RID_SCDLG_INSERT_TABLE:RB_BEFORE +Nach sym:sc:RadioButton:RID_SCDLG_INSERT_TABLE:RB_BEHIND +Anzahl sym:sc:NumericField:RID_SCDLG_INSERT_TABLE:NF_COUNT +NeuErstellen sym:sc:RadioButton:RID_SCDLG_INSERT_TABLE:RB_NEW +AusDateiErstellen sym:sc:RadioButton:RID_SCDLG_INSERT_TABLE:RB_FROMFILE +TabellenName sym:sc:Edit:RID_SCDLG_INSERT_TABLE:ED_TABNAME +Auswahl sym:sc:MultiListBox:RID_SCDLG_INSERT_TABLE:LB_TABLES +Verknuepfen sym:sc:CheckBox:RID_SCDLG_INSERT_TABLE:CB_LINK +Durchsuchen sym:sc:PushButton:RID_SCDLG_INSERT_TABLE:BTN_BROWSE +Tabellen sym:sc:PushButton:RID_SCDLG_INSERT_TABLE:BTN_BROWSE + +*TabelleEinfuegenWriter .uno:InsertTable +TabellenName sym:sw:Edit:DLG_INSERT_TABLE:ED_NAME +Spalten sym:sw:NumericField:DLG_INSERT_TABLE:ED_COL +Zeilen sym:sw:NumericField:DLG_INSERT_TABLE:ED_ROW +UeberschriftWiederholen sym:sw:CheckBox:DLG_INSERT_TABLE:CB_REPEAT_HEADER +TabelleNichtTrennen sym:sw:CheckBox:DLG_INSERT_TABLE:CB_DONT_SPLIT +Umrandung sym:sw:CheckBox:DLG_INSERT_TABLE:CB_BORDER +Autoformat sym:sw:PushButton:DLG_INSERT_TABLE:BT_AUTOFORMAT +Ueberschrift sym:sw:CheckBox:DLG_INSERT_TABLE:CB_HEADER + +*TabellenFuellen .uno:InsertContents +AuswahlAllesEinfuegen sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSALL +AuswahlZeichenketten sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSSTRINGS +AuswahlZahlen sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSNUMBERS +AuswahlDatumZeit sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSDATETIME +AuswahlFormeln sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSFORMULAS +AuswahlNotizen sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSNOTES +AuswahlFormate sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSATTRS +Objects sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_INSOBJECTS +RechenopperationenKeine sym:sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_NOOP +RechenopperationenAddieren sym:sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_ADD +RechenopperationenSubtrahieren sym:sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_SUB +RechenopperationenMultiplizieren sym:sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_MUL +RechenopperationenDividieren sym:sc:RadioButton:RID_SCDLG_INSCONT:BTN_OP_DIV +LeerzeilenUeberspringen sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_SKIP_EMPTY +Verknuepfen sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_LINK +Transponieren sym:sc:CheckBox:RID_SCDLG_INSCONT:BTN_TRANSPOSE +NichtVerschieben sym:sc:RadioButton:RID_SCDLG_INSCONT:BTN_MV_NONE +NachUnten sym:sc:RadioButton:RID_SCDLG_INSCONT:BTN_MV_DOWN +NachRechts sym:sc:RadioButton:RID_SCDLG_INSCONT:BTN_MV_RIGHT + +*TabelleSchuetzen .uno:Protect +Passwort sym:SC_HID_PASSWD_TABLE +Bestaetigung sym:sfx2:Edit:DLG_PASSWD:ED_PASSWD_CONFIRM +IstVerdeckt sym:sfx2:Edit:DLG_PASSWD:ED_PASSWD_USER + +*TabelleUmbenennen .uno:Name +TabellenName sym:SC_HID_SC_RENAME_NAME sym:sc:Edit:RID_SCDLG_STRINPUT:ED_INPUT + +*TabellenVerbinden .uno:MergeTable +MitVorherigerTabelleVerbinden sym:sw:RadioButton:DLG_MERGE_TABLE:RB_MERGE_PREV +MitNachfolgenderTabelleVerbinden sym:sw:RadioButton:DLG_MERGE_TABLE:RB_MERGE_NEXT + +*TabelleVerschiebenKopieren .uno:Move +InsDokument sym:sc:ListBox:RID_SCDLG_MOVETAB:LB_DEST +EinfuegenVor sym:sc:ListBox:RID_SCDLG_MOVETAB:LB_INSERT +Kopieren sym:sc:CheckBox:RID_SCDLG_MOVETAB:BTN_COPY + +*TB_SC_Themenauswahl sym:WIZARDS_HID_DLGSTYLES_DIALOG +ThemenListe sym:WIZARDS_HID_DLGSTYLES_LISTBOX +Schliessen sym:WIZARDS_HID_DLGSTYLES_CANCEL +Uebernehmen sym:WIZARDS_HID_DLGSTYLES_OKAY + +*TB_Farbe sym:SVX_HID_POPUP_COLOR +Automatic sym:SVX_HID_POPUP_COLOR_CTRL + +*TB_ImagemapEditor sym:SVX_HID_IMAPDLG_TOOLBOX +Zuweisen sym:SVX_HID_IMAPDLG_APPLY +Oeffnen sym:SVX_HID_IMAPDLG_OPEN +Speichern sym:SVX_HID_IMAPDLG_SAVEAS +Auswahl sym:SVX_HID_IMAPDLG_SELECT +Rechteck sym:SVX_HID_IMAPDLG_RECT +Ellipse sym:SVX_HID_IMAPDLG_CIRCLE +Polygon sym:SVX_HID_IMAPDLG_POLY +Freihandpolygon sym:SVX_HID_IMAPDLG_FREEPOLY +Punktebearbeiten sym:SVX_HID_IMAPDLG_POLYEDIT +Punkteverschieben sym:SVX_HID_IMAPDLG_POLYMOVE +Punkteeinfuegen sym:SVX_HID_IMAPDLG_POLYINSERT +Punkteloeschen sym:SVX_HID_IMAPDLG_POLYDELETE +Rueckgaengig sym:SVX_HID_IMAPDLG_UNDO +Wiederholen sym:SVX_HID_IMAPDLG_REDO +Aktiv sym:SVX_HID_IMAPDLG_ACTIVE +Makro sym:SVX_HID_IMAPDLG_MACRO +Eigenschaften sym:SVX_HID_IMAPDLG_PROPERTY + +*TB_Umrandung sym:SVX_HID_POPUP_FRAME + +*TB_Umrandungsstil sym:SVX_HID_POPUP_LINE + +*TextbausteineUmbenennen sym:SW_HID_RENAME_GLOSSARY +Name sym:sw:Edit:DLG_RENAME_GLOS:ED_ON +Neu sym:sw:Edit:DLG_RENAME_GLOS:ED_NN +KuerzelAlt sym:sw:Edit:DLG_RENAME_GLOS:ED_OS +KuerzelNeu sym:sw:Edit:DLG_RENAME_GLOS:ED_NS + +*TextInTabelleUmwandeln .uno:ConvertTableText sym:sw:ModalDialog:DLG_CONV_TEXT_TABLE +Tabulator sym:sw:RadioButton:DLG_CONV_TEXT_TABLE:CB_TAB +Semikolon sym:sw:RadioButton:DLG_CONV_TEXT_TABLE:CB_SEMI +Absatz sym:sw:RadioButton:DLG_CONV_TEXT_TABLE:CB_PARA +Andere sym:sw:RadioButton:DLG_CONV_TEXT_TABLE:RB_OTHER +AndereText sym:sw:Edit:DLG_CONV_TEXT_TABLE:ED_OTHER +GleicheBreite sym:sw:CheckBox:DLG_CONV_TEXT_TABLE:CB_KEEPCOLUMN +Autoformat sym:sw:PushButton:DLG_CONV_TEXT_TABLE:BT_AUTOFORMAT +Ueberschrift sym:sw:CheckBox:DLG_CONV_TEXT_TABLE:CB_HEADER +Wiederholen sym:sw:CheckBox:DLG_CONV_TEXT_TABLE:CB_REPEAT_HEADER +NichtTrennen sym:sw:CheckBox:DLG_CONV_TEXT_TABLE:CB_DONT_SPLIT +Umrandung sym:sw:CheckBox:DLG_CONV_TEXT_TABLE:CB_BORDER + +*TextmarkeEinfuegen .uno:InsertBookmark +Textmarken sym:sw:ComboBox:DLG_INSERT_BOOKMARK:CB_BOOKMARK +Loeschen sym:sw:PushButton:DLG_INSERT_BOOKMARK:BT_DELETE + +*Ueberblenden .uno:Morphing +Attributierung sym:sd:CheckBox:DLG_MORPH:CBX_ATTRIBUTES +GleicheOrientierung sym:sd:CheckBox:DLG_MORPH:CBX_ORIENTATION +Schritte sym:sd:MetricField:DLG_MORPH:MTF_STEPS + +*UeberStarCalc .uno:About + +*UeberStarChart .uno:About + +*UeberStarDraw .uno:About + +*UeberStarImage .uno:About + +*UeberStarMath .uno:About + +*UeberStarWriter .uno:About + +*UmbruchEinfuegen .uno:InsertBreak +Zeilenumbruch sym:sw:RadioButton:DLG_BREAK:RB_LINE +Spaltenumbruch sym:sw:RadioButton:DLG_BREAK:RB_COL +Seitenumbruch sym:sw:RadioButton:DLG_BREAK:RB_PAGE +Vorlage sym:sw:ListBox:DLG_BREAK:LB_COLL +SeitennummerAendern sym:sw:CheckBox:DLG_BREAK:CB_PAGENUM +Seitennummer sym:sw:NumericField:DLG_BREAK:ED_PAGENUM + +*UmwandelnInPolygon sym:SD_HID_VECTORIZE_DLG +Farbanzahl sym:sd:NumericField:DLG_VECTORIZE:NM_LAYERS +Punktreduktion sym:sd:MetricField:DLG_VECTORIZE:MT_REDUCE +LoecherFuellen sym:sd:CheckBox:DLG_VECTORIZE:CB_FILLHOLES +Kachelgroesse sym:sd:MetricField:DLG_VECTORIZE:MT_FILLHOLES +Vorschau sym:sd:PushButton:DLG_VECTORIZE:BTN_PREVIEW + +*UntenFuellen .uno:FillDown + +*UndoRedoBox sym:SVX_HID_SVXTBX_UNDO_REDO_CTRL +UndoRedoList sym:svx:ListBox:RID_SVXTBX_UNDO_REDO_CTRL:LB_SVXTBX_UNDO_REDO_CTRL + +*Verbinder sym:CUI_HID_PAGE_CONNECTION sym:svx:TabPage:RID_SVXPAGE_CONNECTION +Linie1 sym:cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_1 +Linie2 sym:cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_2 +Linie3 sym:cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_3 +Typ sym:cui:ListBox:RID_SVXPAGE_CONNECTION:LB_TYPE +AnfangHorizontal sym:cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_HORZ_1 +AnfangVertikal sym:cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_VERT_1 +EndeHorizontal sym:cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_HORZ_2 +EndeVertikal sym:cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_VERT_2 +Vorschau sym:CUI_HID_PAGE_CONNECTION_CTL_PREVIEW + +*VerknuepfungenBearbeiten sym:cui:ModalDialog:MD_UPDATE_BASELINKS +Liste sym:CUI_HID_LINKDLG_TABLB +VerknuepfungBearbeiten sym:cui:PushButton:MD_UPDATE_BASELINKS:PB_OPEN_SOURCE +Automatisch sym:cui:RadioButton:MD_UPDATE_BASELINKS:RB_AUTOMATIC +Manuell sym:cui:RadioButton:MD_UPDATE_BASELINKS:RB_MANUAL +Aktualisieren sym:cui:PushButton:MD_UPDATE_BASELINKS:PB_UPDATE_NOW +Aendern sym:cui:PushButton:MD_UPDATE_BASELINKS:PB_CHANGE_SOURCE +Loesen sym:cui:PushButton:MD_UPDATE_BASELINKS:PB_BREAK_LINK + +*VersendenMonitor sym:SW_HID_MERGE_PRINTMONITOR + +*Versionen sym:sfx2:ModalDialog:DLG_VERSIONS +Speichern sym:sfx2:PushButton:DLG_VERSIONS:PB_SAVE +ImmerVersionSpeichern sym:sfx2:CheckBox:DLG_VERSIONS:CB_SAVEONCLOSE +Anzeigen sym:sfx2:PushButton:DLG_VERSIONS:PB_VIEW +Loeschen sym:sfx2:PushButton:DLG_VERSIONS:PB_DELETE +Oeffnen sym:sfx2:PushButton:DLG_VERSIONS:PB_OPEN +Vergleichen sym:sfx2:PushButton:DLG_VERSIONS:PB_COMPARE + +*VersionskommentarEingeben sym:sfx2:ModalDialog:DLG_COMMENTS +Kommentar sym:sfx2:MultiLineEdit:DLG_COMMENTS:ME_VERSIONS +Schliessen sym:sfx2:PushButton:DLG_COMMENTS:PB_CLOSE + +*VerteilenDlg sym:CUI_HID_PAGE_DISTRIBUTE +KeineHorizontal sym:cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_NONE +Links sym:cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_LEFT +MitteHorizontal sym:cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_CENTER +AbstandHorizontal sym:cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_DISTANCE +Rechts sym:cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_RIGHT +KeineVertikal sym:cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_VER_NONE +Oben sym:cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_VER_TOP +MitteVertikal sym:cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_VER_CENTER +AbstandVertikal sym:cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_VER_DISTANCE +Unten sym:cui:RadioButton:RID_SVXPAGE_DISTRIBUTE:BTN_VER_BOTTOM + +*VerzeichniseintragEinfuegen .uno:InsertIndexesEntry +EintragOk sym:SW_HID_INSERT_IDX_MRK_OK +EinfuegenSchliessen sym:SW_HID_INSERT_IDX_MRK_CLOSE +Verzeichniseintrag sym:SW_HID_INSERT_IDX_MRK_ENTRY +Verzeichnis sym:SW_HID_INSERT_IDX_MRK_TYPE +Schluessel1 sym:SW_HID_INSERT_IDX_MRK_PRIM_KEY +Schluessel2 sym:SW_HID_INSERT_IDX_MRK_SEC_KEY +Stufe sym:SW_HID_INSERT_IDX_MRK_LEVEL +EintragLoeschen sym:SW_HID_INSERT_IDX_MRK_DELETE +EintragNeu sym:SW_HID_INSERT_IDX_MRK_NEW +Haupteintrag sym:SW_HID_INSERT_IDX_MRK_MAIN_ENTRY +AufAlleGleichenAnwenden sym:SW_HID_INSERT_IDX_MRK_APPLY_ALL +EntryPhoneticReading sym:SW_HID_INSERT_IDX_MRK_PHONETIC_READING + +*VerzeichniseintragBearbeiten .uno:IndexEntryDialog +EintragOk sym:SW_HID_INSERT_IDX_MRK_OK +BearbeitenSchliessen sym:SW_HID_INSERT_IDX_MRK_CLOSE +Verzeichnis sym:SW_HID_INSERT_IDX_MRK_TYPE +Verzeichniseintrag sym:SW_HID_INSERT_IDX_MRK_ENTRY +Schluessel1 sym:SW_HID_INSERT_IDX_MRK_PRIM_KEY +Schluessel2 sym:SW_HID_INSERT_IDX_MRK_SEC_KEY +Stufe sym:SW_HID_INSERT_IDX_MRK_LEVEL +EintragLoeschen sym:SW_HID_INSERT_IDX_MRK_DELETE +EintragNeu sym:SW_HID_INSERT_IDX_MRK_NEW +Naechster sym:SW_HID_INSERT_IDX_MRK_NEXT +Vorheriger sym:SW_HID_INSERT_IDX_MRK_PREV + +*VorlageErzeugen .uno:StyleNewByExample SID_TEMPLATE_NEW_BY_EXAMPLE +Vorlagenname sym:sfx2:ComboBox:DLG_NEW_STYLE_BY_EXAMPLE:LB_COL + +*Vorlagenkatalog .uno:StyleCatalog +Vorlagen sym:sfx2:ListBox:RID_STYLECATALOG:BT_TOOL +Ansicht sym:SFX2_HID_TEMPLATE_FMT +Bereich sym:sfx2:ListBox:RID_STYLECATALOG:BT_FLIST +Neu sym:sfx2:PushButton:RID_STYLECATALOG:BT_NEW +Aendern sym:sfx2:PushButton:RID_STYLECATALOG:BT_EDIT +Loeschen sym:sfx2:PushButton:RID_STYLECATALOG:BT_DEL +Verwalten sym:sfx2:PushButton:RID_STYLECATALOG:BT_ORG + +*Vorschau .uno:PreviewWindow + +*VorlageZuweisen sym:SW_HID_DLG_ADD_IDX_STYLES +ZuweisenLinks sym:sw:ImageButton:DLG_ADD_IDX_STYLES:PB_LEFT +ZuweisenRechts sym:sw:ImageButton:DLG_ADD_IDX_STYLES:PB_RIGHT + +*WBereicheBearbeiten sym:SW_HID_BIB_BASE +Bereichname sym:sw:Edit:DLG_BIB_BASE:ED_NAME +Bereich sym:sw:ListBox:DLG_BIB_BASE:LB_PATH +Liste sym:SW_HID_GLOS_GROUP_TREE +Neu sym:sw:PushButton:DLG_BIB_BASE:PB_NEW +Loeschen sym:sw:PushButton:DLG_BIB_BASE:PB_DELETE +Umbenennen sym:sw:PushButton:DLG_BIB_BASE:PB_RENAME + +*Zahlenformat sym:CUI_HID_NUMBERFORMAT +Kategorie sym:cui:ListBox:RID_SVXPAGE_NUMBERFORMAT:LB_CATEGORY +KategorieFormat sym:CUI_HID_NUMBERFORMAT_LB_FORMAT 'FormatZahl -FormatCode cui:Edit:RID_SVXPAGE_NUMBERFORMAT:ED_FORMAT -Hinzufuegen HID_NUMBERFORMAT_TBI_ADD -Entfernen HID_NUMBERFORMAT_TBI_REMOVE -Sprache cui:ListBox:RID_SVXPAGE_NUMBERFORMAT:LB_LANGUAGE -Nachkommastellen cui:NumericField:RID_SVXPAGE_NUMBERFORMAT:ED_DECIMALS -FuehrendeNullen cui:NumericField:RID_SVXPAGE_NUMBERFORMAT:ED_LEADZEROES -NegativInRot cui:CheckBox:RID_SVXPAGE_NUMBERFORMAT:BTN_NEGRED -Tausenderpunkt cui:CheckBox:RID_SVXPAGE_NUMBERFORMAT:BTN_THOUSAND - -*ZeileAusblenden FID_ROW_HIDE - -*Zeilenhoehe FID_ROW_HEIGHT -Hoehe sc:MetricField:RID_SCDLG_ROW_MAN:ED_VALUE HID_SC_MTRIN_VAL -Standwardwert sc:CheckBox:RID_SCDLG_ROW_MAN:BTN_DEFVAL HID_SC_MTRIN_DEF - -*ZeileOptimaleHoehe FID_ROW_OPT_HEIGHT -Extra sc:MetricField:RID_SCDLG_ROW_OPT:ED_VALUE HID_SC_MTRIN_VAL -Standardwert sc:CheckBox:RID_SCDLG_ROW_OPT:BTN_DEFVAL HID_SC_MTRIN_DEF - -*ZellvorlageCalc HID_MANAGE_STYLES - -*ZeileEinblenden FID_ROW_SHOW - -*ZellenEinfuegen FID_INS_CELL -ZellenNachUnten sc:RadioButton:RID_SCDLG_INSCELL:BTN_CELLSDOWN -ZellenNachRechts sc:RadioButton:RID_SCDLG_INSCELL:BTN_CELLSRIGHT -GanzeZeile sc:RadioButton:RID_SCDLG_INSCELL:BTN_INSROWS -GanzeSpalte sc:RadioButton:RID_SCDLG_INSCELL:BTN_INSCOLS - -*ZellenLoeschen FID_DELETE_CELL -Auswahl sc:RadioButton:RID_SCDLG_DELCELL:BTN_CELLSUP -Zellennachoben sc:RadioButton:RID_SCDLG_DELCELL:BTN_CELLSUP -Zellennachlinks sc:RadioButton:RID_SCDLG_DELCELL:BTN_CELLSLEFT -GanzeZeilen sc:RadioButton:RID_SCDLG_DELCELL:BTN_DELROWS -GanzeSpalten sc:RadioButton:RID_SCDLG_DELCELL:BTN_DELCOLS - -*ZellenHoehe FN_TABLE_SET_ROW_HEIGHT -Hoehe sw:MetricField:DLG_ROW_HEIGHT:ED_HEIGHT -Dynamisch sw:CheckBox:DLG_ROW_HEIGHT:CB_AUTOHEIGHT - -*ZellenTeilen cui:ModalDialog:RID_SVX_SPLITCELLDLG -Anzahl cui:NumericField:RID_SVX_SPLITCELLDLG:ED_COUNT -Horizontal cui:ImageRadioButton:RID_SVX_SPLITCELLDLG:RB_HORZ -Vertikal cui:ImageRadioButton:RID_SVX_SPLITCELLDLG:RB_VERT -GleichmaessigTeilen cui:CheckBox:RID_SVX_SPLITCELLDLG:CB_PROP - -*ZielImDokument HID_HYPERLINK_MARKWND +FormatCode sym:cui:Edit:RID_SVXPAGE_NUMBERFORMAT:ED_FORMAT +Hinzufuegen sym:CUI_HID_NUMBERFORMAT_TBI_ADD +Entfernen sym:CUI_HID_NUMBERFORMAT_TBI_REMOVE +Sprache sym:cui:ListBox:RID_SVXPAGE_NUMBERFORMAT:LB_LANGUAGE +Nachkommastellen sym:cui:NumericField:RID_SVXPAGE_NUMBERFORMAT:ED_DECIMALS +FuehrendeNullen sym:cui:NumericField:RID_SVXPAGE_NUMBERFORMAT:ED_LEADZEROES +NegativInRot sym:cui:CheckBox:RID_SVXPAGE_NUMBERFORMAT:BTN_NEGRED +Tausenderpunkt sym:cui:CheckBox:RID_SVXPAGE_NUMBERFORMAT:BTN_THOUSAND + +*ZeileAusblenden .uno:HideRow + +*Zeilenhoehe .uno:RowHeight +Hoehe sym:sc:MetricField:RID_SCDLG_ROW_MAN:ED_VALUE HID_SC_MTRIN_VAL +Standwardwert sym:sc:CheckBox:RID_SCDLG_ROW_MAN:BTN_DEFVAL HID_SC_MTRIN_DEF + +*ZeileOptimaleHoehe .uno:SetOptimalRowHeight +Extra sym:sc:MetricField:RID_SCDLG_ROW_OPT:ED_VALUE HID_SC_MTRIN_VAL +Standardwert sym:sc:CheckBox:RID_SCDLG_ROW_OPT:BTN_DEFVAL HID_SC_MTRIN_DEF + +*ZellvorlageCalc sym:SFX2_HID_MANAGE_STYLES + +*ZeileEinblenden .uno:ShowRow + +*ZellenEinfuegen .uno:InsertCell +ZellenNachUnten sym:sc:RadioButton:RID_SCDLG_INSCELL:BTN_CELLSDOWN +ZellenNachRechts sym:sc:RadioButton:RID_SCDLG_INSCELL:BTN_CELLSRIGHT +GanzeZeile sym:sc:RadioButton:RID_SCDLG_INSCELL:BTN_INSROWS +GanzeSpalte sym:sc:RadioButton:RID_SCDLG_INSCELL:BTN_INSCOLS + +*ZellenLoeschen .uno:DeleteCell +Auswahl sym:sc:RadioButton:RID_SCDLG_DELCELL:BTN_CELLSUP +Zellennachoben sym:sc:RadioButton:RID_SCDLG_DELCELL:BTN_CELLSUP +Zellennachlinks sym:sc:RadioButton:RID_SCDLG_DELCELL:BTN_CELLSLEFT +GanzeZeilen sym:sc:RadioButton:RID_SCDLG_DELCELL:BTN_DELROWS +GanzeSpalten sym:sc:RadioButton:RID_SCDLG_DELCELL:BTN_DELCOLS + +*ZellenHoehe .uno:SetRowHeight +Hoehe sym:sw:MetricField:DLG_ROW_HEIGHT:ED_HEIGHT +Dynamisch sym:sw:CheckBox:DLG_ROW_HEIGHT:CB_AUTOHEIGHT + +*ZellenTeilen sym:cui:ModalDialog:RID_SVX_SPLITCELLDLG +Anzahl sym:cui:NumericField:RID_SVX_SPLITCELLDLG:ED_COUNT +Horizontal sym:cui:ImageRadioButton:RID_SVX_SPLITCELLDLG:RB_HORZ +Vertikal sym:cui:ImageRadioButton:RID_SVX_SPLITCELLDLG:RB_VERT +GleichmaessigTeilen sym:cui:CheckBox:RID_SVX_SPLITCELLDLG:CB_PROP + +*ZielImDokument sym:CUI_HID_HYPERLINK_MARKWND 'Uebernehmen Kein Eintrag in Hid.Lst 'Schliessen Kein Eintrag in Hid.Lst -*Zielwertsuche SID_OPENDLG_SOLVE -Formelzelle sc:Edit:RID_SCDLG_SOLVER:ED_FORMULACELL -Vorgaben1 sc:ImageButton:RID_SCDLG_SOLVER:RB_FORMULACELL -Zielwert sc:Edit:RID_SCDLG_SOLVER:ED_TARGETVAL -VariableZelle sc:Edit:RID_SCDLG_SOLVER:ED_VARCELL -Vorgaben2 sc:ImageButton:RID_SCDLG_SOLVER:RB_VARCELL +*Zielwertsuche .uno:GoalSeekDialog +Formelzelle sym:sc:Edit:RID_SCDLG_SOLVER:ED_FORMULACELL +Vorgaben1 sym:sc:ImageButton:RID_SCDLG_SOLVER:RB_FORMULACELL +Zielwert sym:sc:Edit:RID_SCDLG_SOLVER:ED_TARGETVAL +VariableZelle sym:sc:Edit:RID_SCDLG_SOLVER:ED_VARCELL +Vorgaben2 sym:sc:ImageButton:RID_SCDLG_SOLVER:RB_VARCELL -*Zusammenfassen SID_AUTOFORMAT -Mindestgroesse cui:METRICFIELD:RID_OFADLG_PRCNT_SET:ED_RIGHT_MARGIN +*Zusammenfassen .uno:AutoFormat +Mindestgroesse sym:cui:MetricField:RID_OFADLG_PRCNT_SET:ED_RIGHT_MARGIN diff --git a/testautomation/global/win/dokument.win b/testautomation/global/win/dokument.win index ff31dfdbcf3b..81b8775a085f 100755..100644 --- a/testautomation/global/win/dokument.win +++ b/testautomation/global/win/dokument.win @@ -1,45 +1,43 @@ ' german Part -*DokumentWriter HID_EDIT_WIN -*DokumentWriterWeb HID_EDIT_WIN -*DokumentCalc HID_SC_WIN_GRIDWIN -*DokumentDraw SD_IF_SDGRAPHICVIEWSHELL HID_SD_WIN_DOCUMENT -*DokumentImpress SD_IF_SDDRAWVIEWSHELL HID_SD_WIN_DOCUMENT -*DokumentImpressDiatisch SD_IF_SDSLIDEVIEWSHELL -*DokumentImpressGliederungsmodus SD_IF_SDOUTLINEVIEWSHELL -*DokumentImpressNotizen SID_NOTESMODE -*DokumentImpressHandzettel SID_HANDOUTMODE -*DokumentChart HID_SCH_WIN_DOCUMENT -*DokumentGlobalDoc HID_EDIT_WIN +*DokumentWriter sym:SW_HID_EDIT_WIN +*DokumentWriterWeb sym:SW_HID_EDIT_WIN +*DokumentCalc sym:SC_HID_SC_WIN_GRIDWIN +*DokumentDraw sym:SD_HID_SDGRAPHICVIEWSHELL sym:SD_HID_SD_WIN_DOCUMENT +*DokumentImpress sym:SD_HID_SDDRAWVIEWSHELL sym:SD_HID_SD_WIN_DOCUMENT +*DokumentImpressGliederungsmodus sym:SD_HID_SDOUTLINEVIEWSHELL +*DokumentImpressNotizen .uno:NotesMode +*DokumentImpressHandzettel .uno:HandoutMode +*DokumentChart sym:CHART2_HID_SCH_WIN_DOCUMENT +*DokumentGlobalDoc sym:SW_HID_EDIT_WIN -*DokumentMath HID_SMA_WIN_DOCUMENT -*DokumentImageMap HID_IMAPDLG_GRAPHWND -*DokumentPraesentation HID_SD_WIN_PRESENTATION +*DokumentMath sym:STARMATH_HID_SMA_WIN_DOCUMENT +*DokumentImageMap sym:SVX_HID_IMAPDLG_GRAPHWND +*DokumentPraesentation sym:SD_HID_SD_WIN_PRESENTATION -*KommandosMath HID_SMA_COMMAND_WIN -Kommandos HID_SMA_COMMAND_WIN_EDIT +*KommandosMath sym:STARMATH_HID_SMA_COMMAND_WIN +Kommandos sym:STARMATH_HID_SMA_COMMAND_WIN_EDIT -*DokSeitenansichtWriter HID_PagePreview -*DokSeitenansichtCalc HID_SC_Win_Preview +*DokSeitenansichtWriter sym:SW_HID_PAGEPREVIEW +*DokSeitenansichtCalc sym:SC_HID_SC_WIN_PREVIEW ' english Part -*DocumentWriter HID_EDIT_WIN -*DocumentWriterWeb HID_EDIT_WIN -*DocumentHTMLSourceView HID_SOURCE_EDITWIN -*DocumentCalc HID_SC_WIN_GRIDWIN -*DocumentDraw SD_IF_SDGRAPHICVIEWSHELL HID_SD_WIN_DOCUMENT -*DocumentImpress SD_IF_SDDRAWVIEWSHELL HID_SD_WIN_DOCUMENT -*DocumentImpressSlideView SD_IF_SDSLIDEVIEWSHELL -*DocumentImpressOutlineView SD_IF_SDOUTLINEVIEWSHELL -*DocumentImpressNotesView SID_NOTESMODE -*DocumentImpressHandoutView SID_HANDOUTMODE -*DocumentChart HID_SCH_WIN_DOCUMENT -*DocumentMasterDoc HID_EDIT_WIN -*DocumentMath HID_SMA_WIN_DOCUMENT -*DocumentImageMap HID_IMAPDLG_GRAPHWND -*DocumentPresentation HID_SD_WIN_PRESENTATION -*DocumentBackground HID_BACKINGWINDOW +*DocumentWriter sym:SW_HID_EDIT_WIN +*DocumentWriterWeb sym:SW_HID_EDIT_WIN +*DocumentHTMLSourceView sym:SW_HID_SOURCE_EDITWIN +*DocumentCalc sym:SC_HID_SC_WIN_GRIDWIN +*DocumentDraw sym:SD_HID_SDGRAPHICVIEWSHELL sym:SD_HID_SD_WIN_DOCUMENT +*DocumentImpress sym:SD_HID_SDDRAWVIEWSHELL sym:SD_HID_SD_WIN_DOCUMENT +*DocumentImpressOutlineView sym:SD_HID_SDOUTLINEVIEWSHELL +*DocumentImpressNotesView .uno:NotesMode +*DocumentImpressHandoutView .uno:HandoutMode +*DocumentChart sym:CHART2_HID_SCH_WIN_DOCUMENT +*DocumentMasterDoc sym:SW_HID_EDIT_WIN +*DocumentMath sym:STARMATH_HID_SMA_WIN_DOCUMENT +*DocumentImageMap sym:SVX_HID_IMAPDLG_GRAPHWND +*DocumentPresentation sym:SD_HID_SD_WIN_PRESENTATION +*DocumentBackground sym:FWK_HID_BACKINGWINDOW TextDocument .HelpId:StartCenter:WriterButton Spreadsheet .HelpId:StartCenter:CalcButton Presentation .HelpId:StartCenter:ImpressButton @@ -52,24 +50,24 @@ Extensions .HelpId:StartCenter:Extensions Register .HelpId:StartCenter:Register Info .HelpId:StartCenter:Info -*CommandsMath HID_SMA_COMMAND_WIN -Commands HID_SMA_COMMAND_WIN_EDIT +*CommandsMath sym:STARMATH_HID_SMA_COMMAND_WIN +Commands sym:STARMATH_HID_SMA_COMMAND_WIN_EDIT -*DocPageViewWriter HID_PagePreview -*DocPageViewCalc HID_SC_Win_Preview +*DocPageViewWriter sym:SW_HID_PAGEPREVIEW +*DocPageViewCalc sym:SC_HID_SC_WIN_PREVIEW ' to access the buttons in the lower left corner -*DocumentDrawImpress SD_IF_SDGRAPHICVIEWSHELL -ViewSlideButton HID_SD_BTN_PAGE -ViewLayerButton HID_SD_BTN_LAYER -ViewMasterButton HID_SD_BTN_MASTERPAGE -TabBar HID_SD_TABBAR_PAGES -LayerTabBar HID_SD_TABBAR_LAYERS +*DocumentDrawImpress sym:SD_HID_SDGRAPHICVIEWSHELL +ViewSlideButton sym:SD_HID_SD_BTN_PAGE +ViewLayerButton sym:SD_HID_SD_BTN_LAYER +ViewMasterButton sym:SD_HID_SD_BTN_MASTERPAGE +TabBar sym:SD_HID_SD_TABBAR_PAGES +LayerTabBar sym:SD_HID_SD_TABBAR_LAYERS ' these are the buttons on the right side -ButtonDrawingView HID_SD_BTN_DRAW -ButtonOutlineView HID_SD_BTN_OUTLINE -ButtonSlideView HID_SD_BTN_SLIDE -ButtonNotesView HID_SD_BTN_NOTES -ButtonHandoutView HID_SD_BTN_HANDOUT -ButtonStartSlideShow HID_SD_BTN_PRESENTATION +ButtonDrawingView sym:SD_HID_SD_BTN_DRAW +ButtonOutlineView sym:SD_HID_SD_BTN_OUTLINE +ButtonSlideView sym:SD_HID_SD_BTN_SLIDE +ButtonNotesView sym:SD_HID_SD_BTN_NOTES +ButtonHandoutView sym:SD_HID_SD_BTN_HANDOUT +ButtonStartSlideShow sym:SD_HID_SD_BTN_PRESENTATION diff --git a/testautomation/global/win/e_mathop.win b/testautomation/global/win/e_mathop.win index 88bed2b93789..9beb74b31ebc 100755..100644 --- a/testautomation/global/win/e_mathop.win +++ b/testautomation/global/win/e_mathop.win @@ -1,202 +1,202 @@ -*SelectionMath HID_SMA_OPERATOR_WIN -TB_Group HID_SMA_SELECTION_TBX -UnaryBinary HID_SMA_UNBINOPS_CAT -Relations HID_SMA_RELATIONS_CAT -SetOperations HID_SMA_SETOPERATIONS_CAT -Functions HID_SMA_FUNCTIONS_CAT -Operators HID_SMA_OPERATORS_CAT -Attributes HID_SMA_ATTRIBUTES_CAT -Others HID_SMA_MISC_CAT -Brackets HID_SMA_BRACKETS_CAT -Format HID_SMA_FORMAT_CAT +*SelectionMath sym:STARMATH_HID_SMA_OPERATOR_WIN +TB_Group sym:STARMATH_HID_SMA_SELECTION_TBX +UnaryBinary sym:STARMATH_HID_SMA_UNBINOPS_CAT +Relations sym:STARMATH_HID_SMA_RELATIONS_CAT +SetOperations sym:STARMATH_HID_SMA_SETOPERATIONS_CAT +Functions sym:STARMATH_HID_SMA_FUNCTIONS_CAT +Operators sym:STARMATH_HID_SMA_OPERATORS_CAT +Attributes sym:STARMATH_HID_SMA_ATTRIBUTES_CAT +Others sym:STARMATH_HID_SMA_MISC_CAT +Brackets sym:STARMATH_HID_SMA_BRACKETS_CAT +Format sym:STARMATH_HID_SMA_FORMAT_CAT -TB_UnaryBinary HID_SMA_UNBINOPS_TBX -Plus HID_SMA_PLUSX -Minus HID_SMA_MINUSX -PlusMinus HID_SMA_PLUSMINUSX -MinusPlus HID_SMA_MINUSPLUSX -BooleanNot HID_SMA_NEGX -Addition HID_SMA_XPLUSY -Multiplication HID_SMA_XCDOTY -MultiplicationX HID_SMA_XTIMESY -MultiplicationStar HID_SMA_XSYMTIMESY -BooleanAND HID_SMA_XANDY -Subtraction HID_SMA_XMINUSY -DivisionFraction HID_SMA_XOVERY -Division HID_SMA_XDIVY -DivisionSlash HID_SMA_XSYMDIVIDEY -BooleanOR HID_SMA_XORY -Catenate HID_SMA_XCIRCY +TB_UnaryBinary sym:STARMATH_HID_SMA_UNBINOPS_TBX +Plus sym:STARMATH_HID_SMA_PLUSX +Minus sym:STARMATH_HID_SMA_MINUSX +PlusMinus sym:STARMATH_HID_SMA_PLUSMINUSX +MinusPlus sym:STARMATH_HID_SMA_MINUSPLUSX +BooleanNot sym:STARMATH_HID_SMA_NEGX +Addition sym:STARMATH_HID_SMA_XPLUSY +Multiplication sym:STARMATH_HID_SMA_XCDOTY +MultiplicationX sym:STARMATH_HID_SMA_XTIMESY +MultiplicationStar sym:STARMATH_HID_SMA_XSYMTIMESY +BooleanAND sym:STARMATH_HID_SMA_XANDY +Subtraction sym:STARMATH_HID_SMA_XMINUSY +DivisionFraction sym:STARMATH_HID_SMA_XOVERY +Division sym:STARMATH_HID_SMA_XDIVY +DivisionSlash sym:STARMATH_HID_SMA_XSYMDIVIDEY +BooleanOR sym:STARMATH_HID_SMA_XORY +Catenate sym:STARMATH_HID_SMA_XCIRCY -TB_Relations HID_SMA_RELATIONS_TBX -IsEqual HID_SMA_XEQY -IsNotEqual HID_SMA_XNEQY -IsApprocimatelyEqual HID_SMA_XAPPROXY -Divides HID_SMA_XDIVIDESY -DoesNotDivide HID_SMA_XNDIVIDESY -IsLessThan HID_SMA_XLTY -IsGreaterThan HID_SMA_XGTY -IsSimilarOrEqual HID_SMA_XSIMEQY -IsParallelTo HID_SMA_XPARALLELY -IsOrthogonalTo HID_SMA_XORTHOY -IsLessThanOrEqualTo HID_SMA_XLESLANTY -IsGreaterThanOrEqualTo HID_SMA_XGESLANTY -IsSimilarTo HID_SMA_XSIMY -IsCongruentTo HID_SMA_XEQUIVY -IsLessThanOrEqualTo2 HID_SMA_XLEY -IsGreaterThanOrEqualTo2 HID_SMA_XGEY -IsProportionalTo HID_SMA_XPROPY -Toward HID_SMA_XTOWARDY -DoubleArrowLeft HID_SMA_DLARROW -DoubleArrowLeftAndRight HID_SMA_DLRARROW -DoubleArrowRight HID_SMA_DRARROW +TB_Relations sym:STARMATH_HID_SMA_RELATIONS_TBX +IsEqual sym:STARMATH_HID_SMA_XEQY +IsNotEqual sym:STARMATH_HID_SMA_XNEQY +IsApprocimatelyEqual sym:STARMATH_HID_SMA_XAPPROXY +Divides sym:STARMATH_HID_SMA_XDIVIDESY +DoesNotDivide sym:STARMATH_HID_SMA_XNDIVIDESY +IsLessThan sym:STARMATH_HID_SMA_XLTY +IsGreaterThan sym:STARMATH_HID_SMA_XGTY +IsSimilarOrEqual sym:STARMATH_HID_SMA_XSIMEQY +IsParallelTo sym:STARMATH_HID_SMA_XPARALLELY +IsOrthogonalTo sym:STARMATH_HID_SMA_XORTHOY +IsLessThanOrEqualTo sym:STARMATH_HID_SMA_XLESLANTY +IsGreaterThanOrEqualTo sym:STARMATH_HID_SMA_XGESLANTY +IsSimilarTo sym:STARMATH_HID_SMA_XSIMY +IsCongruentTo sym:STARMATH_HID_SMA_XEQUIVY +IsLessThanOrEqualTo2 sym:STARMATH_HID_SMA_XLEY +IsGreaterThanOrEqualTo2 sym:STARMATH_HID_SMA_XGEY +IsProportionalTo sym:STARMATH_HID_SMA_XPROPY +Toward sym:STARMATH_HID_SMA_XTOWARDY +DoubleArrowLeft sym:STARMATH_HID_SMA_DLARROW +DoubleArrowLeftAndRight sym:STARMATH_HID_SMA_DLRARROW +DoubleArrowRight sym:STARMATH_HID_SMA_DRARROW -TB_SetOperators HID_SMA_SETOPERATIONS_TBX -IsIn HID_SMA_XINY -IsNotIn HID_SMA_XNOTINY -Owns HID_SMA_XOWNSY -EmptySet HID_SMA_EMPTYSET -Intersection HID_SMA_XINTERSECTIONY -Union HID_SMA_XUNIONY -Difference HID_SMA_XSETMINUSY -QuotientSet HID_SMA_XSLASHY -Aleph HID_SMA_ALEPH -Subset HID_SMA_XSUBSETY -SubsetOrEqualTo HID_SMA_XSUBSETEQY -Superset HID_SMA_XSUPSETY -SupersetOrEqualTo HID_SMA_XSUPSETEQY -NotSubset HID_SMA_XNSUBSETY -NotSubsetOrEqual HID_SMA_XNSUBSETEQY -NotSuperset HID_SMA_XNSUPSETY -NotSupersetOrEqual HID_SMA_XNSUPSETEQY -NaturalNumbersSet HID_SMA_SETN -IntegersSet HID_SMA_SETZ -RelationalNumbersSet HID_SMA_SETQ -RealNumbersSet HID_SMA_SETR -ComplexNumbersSet HID_SMA_SETC +TB_SetOperators sym:STARMATH_HID_SMA_SETOPERATIONS_TBX +IsIn sym:STARMATH_HID_SMA_XINY +IsNotIn sym:STARMATH_HID_SMA_XNOTINY +Owns sym:STARMATH_HID_SMA_XOWNSY +EmptySet sym:STARMATH_HID_SMA_EMPTYSET +Intersection sym:STARMATH_HID_SMA_XINTERSECTIONY +Union sym:STARMATH_HID_SMA_XUNIONY +Difference sym:STARMATH_HID_SMA_XSETMINUSY +QuotientSet sym:STARMATH_HID_SMA_XSLASHY +Aleph sym:STARMATH_HID_SMA_ALEPH +Subset sym:STARMATH_HID_SMA_XSUBSETY +SubsetOrEqualTo sym:STARMATH_HID_SMA_XSUBSETEQY +Superset sym:STARMATH_HID_SMA_XSUPSETY +SupersetOrEqualTo sym:STARMATH_HID_SMA_XSUPSETEQY +NotSubset sym:STARMATH_HID_SMA_XNSUBSETY +NotSubsetOrEqual sym:STARMATH_HID_SMA_XNSUBSETEQY +NotSuperset sym:STARMATH_HID_SMA_XNSUPSETY +NotSupersetOrEqual sym:STARMATH_HID_SMA_XNSUPSETEQY +NaturalNumbersSet sym:STARMATH_HID_SMA_SETN +IntegersSet sym:STARMATH_HID_SMA_SETZ +RelationalNumbersSet sym:STARMATH_HID_SMA_SETQ +RealNumbersSet sym:STARMATH_HID_SMA_SETR +ComplexNumbersSet sym:STARMATH_HID_SMA_SETC -TB_Functions HID_SMA_FUNCTIONS_TBX -ExponentialFunction HID_SMA_EX -NaturalLogarithm HID_SMA_LNX -ExponentialFunction2 HID_SMA_EXPX -Logarithm HID_SMA_LOGX -Power HID_SMA_RSUPX -Sine HID_SMA_SINX -Cosine HID_SMA_COSX -Tangent HID_SMA_TANX -Cotangent HID_SMA_COTX -SquareRoot HID_SMA_SQRTX -Arcsine HID_SMA_ARCSINX -Arccosine HID_SMA_ARCCOSX -Arctangent HID_SMA_ARCTANX -Arccotangent HID_SMA_ARCCOTX -NthRoot HID_SMA_NROOTXY -HyperbolicSine HID_SMA_SINHX -HyperbolicCosine HID_SMA_COSHX -HyperbolicTangent HID_SMA_TANHX -HyperbolicCotangent HID_SMA_COTHX -AbsoluteValue HID_SMA_ABSX -AreaHyperbolicSine HID_SMA_ARSINHX -AreaHyperbolicCosine HID_SMA_ARCOSHX -AreaHyperbolicTangent HID_SMA_ARTANHX -AreaHyperbolicCotangent HID_SMA_ARCOTHX -Factorial HID_SMA_FACTX +TB_Functions sym:STARMATH_HID_SMA_FUNCTIONS_TBX +ExponentialFunction sym:STARMATH_HID_SMA_EX +NaturalLogarithm sym:STARMATH_HID_SMA_LNX +ExponentialFunction2 sym:STARMATH_HID_SMA_EXPX +Logarithm sym:STARMATH_HID_SMA_LOGX +Power sym:STARMATH_HID_SMA_RSUPX +Sine sym:STARMATH_HID_SMA_SINX +Cosine sym:STARMATH_HID_SMA_COSX +Tangent sym:STARMATH_HID_SMA_TANX +Cotangent sym:STARMATH_HID_SMA_COTX +SquareRoot sym:STARMATH_HID_SMA_SQRTX +Arcsine sym:STARMATH_HID_SMA_ARCSINX +Arccosine sym:STARMATH_HID_SMA_ARCCOSX +Arctangent sym:STARMATH_HID_SMA_ARCTANX +Arccotangent sym:STARMATH_HID_SMA_ARCCOTX +NthRoot sym:STARMATH_HID_SMA_NROOTXY +HyperbolicSine sym:STARMATH_HID_SMA_SINHX +HyperbolicCosine sym:STARMATH_HID_SMA_COSHX +HyperbolicTangent sym:STARMATH_HID_SMA_TANHX +HyperbolicCotangent sym:STARMATH_HID_SMA_COTHX +AbsoluteValue sym:STARMATH_HID_SMA_ABSX +AreaHyperbolicSine sym:STARMATH_HID_SMA_ARSINHX +AreaHyperbolicCosine sym:STARMATH_HID_SMA_ARCOSHX +AreaHyperbolicTangent sym:STARMATH_HID_SMA_ARTANHX +AreaHyperbolicCotangent sym:STARMATH_HID_SMA_ARCOTHX +Factorial sym:STARMATH_HID_SMA_FACTX -TB_Operators HID_SMA_OPERATORS_TBX -Limes HID_SMA_LIMX -Sum HID_SMA_SUMX -Product HID_SMA_PRODX -Coproduct HID_SMA_COPRODX -UpperAndLowerLimit HID_SMA_FROMXTOY -Integral HID_SMA_INTX -DoubleIntegral HID_SMA_IINTX -TripleIntegral HID_SMA_IIINTX -LowerLimit HID_SMA_FROMX -CurveIntegral HID_SMA_LINTX -DoubleCurveIntegral HID_SMA_LLINTX -TripleCurveIntegral HID_SMA_LLLINTX -UpperLimit HID_SMA_TOX +TB_Operators sym:STARMATH_HID_SMA_OPERATORS_TBX +Limes sym:STARMATH_HID_SMA_LIMX +Sum sym:STARMATH_HID_SMA_SUMX +Product sym:STARMATH_HID_SMA_PRODX +Coproduct sym:STARMATH_HID_SMA_COPRODX +UpperAndLowerLimit sym:STARMATH_HID_SMA_FROMXTOY +Integral sym:STARMATH_HID_SMA_INTX +DoubleIntegral sym:STARMATH_HID_SMA_IINTX +TripleIntegral sym:STARMATH_HID_SMA_IIINTX +LowerLimit sym:STARMATH_HID_SMA_FROMX +CurveIntegral sym:STARMATH_HID_SMA_LINTX +DoubleCurveIntegral sym:STARMATH_HID_SMA_LLINTX +TripleCurveIntegral sym:STARMATH_HID_SMA_LLLINTX +UpperLimit sym:STARMATH_HID_SMA_TOX -TB_Attributes HID_SMA_ATTRIBUTES_TBX -AccentToTheRight HID_SMA_ACUTEX -AccentToTheLeft HID_SMA_GRAVEX -ReverseCircumflex HID_SMA_CHECKX -Breve HID_SMA_BREVEX -Circle HID_SMA_CIRCLEX -VectorArrow HID_SMA_VECX -Tilde HID_SMA_TILDEX -Circumflex HID_SMA_HATX -LineAbove HID_SMA_BARX -Dot HID_SMA_DOTX -LargeVectorArrow HID_SMA_WIDEVECX -LargeTilde HID_SMA_WIDETILDEX -LargeCircumflex HID_SMA_WIDEHATX -DoubleDot HID_SMA_DDOTX -LineOver HID_SMA_OVERLINEX -LineBelow HID_SMA_UNDERLINEX -LineThrough HID_SMA_OVERSTRIKEX -TripleDot HID_SMA_DDDOTX -Transparent HID_SMA_PHANTOMX -BoldFont HID_SMA_BOLDX -ItalicFont HID_SMA_ITALX -Resize HID_SMA_SIZEXY -ChangeFont HID_SMA_FONTXY +TB_Attributes sym:STARMATH_HID_SMA_ATTRIBUTES_TBX +AccentToTheRight sym:STARMATH_HID_SMA_ACUTEX +AccentToTheLeft sym:STARMATH_HID_SMA_GRAVEX +ReverseCircumflex sym:STARMATH_HID_SMA_CHECKX +Breve sym:STARMATH_HID_SMA_BREVEX +Circle sym:STARMATH_HID_SMA_CIRCLEX +VectorArrow sym:STARMATH_HID_SMA_VECX +Tilde sym:STARMATH_HID_SMA_TILDEX +Circumflex sym:STARMATH_HID_SMA_HATX +LineAbove sym:STARMATH_HID_SMA_BARX +Dot sym:STARMATH_HID_SMA_DOTX +LargeVectorArrow sym:STARMATH_HID_SMA_WIDEVECX +LargeTilde sym:STARMATH_HID_SMA_WIDETILDEX +LargeCircumflex sym:STARMATH_HID_SMA_WIDEHATX +DoubleDot sym:STARMATH_HID_SMA_DDOTX +LineOver sym:STARMATH_HID_SMA_OVERLINEX +LineBelow sym:STARMATH_HID_SMA_UNDERLINEX +LineThrough sym:STARMATH_HID_SMA_OVERSTRIKEX +TripleDot sym:STARMATH_HID_SMA_DDDOTX +Transparent sym:STARMATH_HID_SMA_PHANTOMX +BoldFont sym:STARMATH_HID_SMA_BOLDX +ItalicFont sym:STARMATH_HID_SMA_ITALX +Resize sym:STARMATH_HID_SMA_SIZEXY +ChangeFont sym:STARMATH_HID_SMA_FONTXY -TB_Others HID_SMA_FORMAT_TBX -Infinity HID_SMA_INFINITY -Partial HID_SMA_PARTIAL -Nabla HID_SMA_NABLA -ThereExists HID_SMA_EXISTS -ForAll HID_SMA_FORALL -HBar HID_SMA_HBAR -LambdaBar HID_SMA_LAMBDABAR -RealPart HID_SMA_RE -ImaginaryPart HID_SMA_IM -WeierstrassP HID_SMA_WP -LeftArrow HID_SMA_LEFTARROW -RightArrow HID_SMA_RIGHTARROW -UpArrow HID_SMA_UPARROW -DownArrow HID_SMA_DOWNARROW -DotsBottom HID_SMA_DOTSLOW -CenterDots HID_SMA_DOTSAXIS -DotsVertically HID_SMA_DOTSVERT -DotsToTop HID_SMA_DOTSUP -AlignDotsDown HID_SMA_DOTSDOWN +TB_Others sym:STARMATH_HID_SMA_FORMAT_TBX +Infinity sym:STARMATH_HID_SMA_INFINITY +Partial sym:STARMATH_HID_SMA_PARTIAL +Nabla sym:STARMATH_HID_SMA_NABLA +ThereExists sym:STARMATH_HID_SMA_EXISTS +ForAll sym:STARMATH_HID_SMA_FORALL +HBar sym:STARMATH_HID_SMA_HBAR +LambdaBar sym:STARMATH_HID_SMA_LAMBDABAR +RealPart sym:STARMATH_HID_SMA_RE +ImaginaryPart sym:STARMATH_HID_SMA_IM +WeierstrassP sym:STARMATH_HID_SMA_WP +LeftArrow sym:STARMATH_HID_SMA_LEFTARROW +RightArrow sym:STARMATH_HID_SMA_RIGHTARROW +UpArrow sym:STARMATH_HID_SMA_UPARROW +DownArrow sym:STARMATH_HID_SMA_DOWNARROW +DotsBottom sym:STARMATH_HID_SMA_DOTSLOW +CenterDots sym:STARMATH_HID_SMA_DOTSAXIS +DotsVertically sym:STARMATH_HID_SMA_DOTSVERT +DotsToTop sym:STARMATH_HID_SMA_DOTSUP +AlignDotsDown sym:STARMATH_HID_SMA_DOTSDOWN -TB_Brackets HID_SMA_BRACKETS_TBX -RoundBrackets HID_SMA_LRPARENTX -SquareBrackets HID_SMA_LRBRACKETX -DoubleSquareBrackets HID_SMA_LRDBRACKETX -SingleLines HID_SMA_LRLINEX -DoubleLines HID_SMA_LRDLINEX -Braces HID_SMA_LRBRACEX -PointedBrackets HID_SMA_LRANGLEX -OperatorBrackets HID_SMA_LMRANGLEXY -GroupBrackets HID_SMA_LRGROUPX -RoundBracketsScaleable HID_SMA_SLRPARENTX -SquareBracketsScaleable HID_SMA_SLRBRACKETX -SquareBracketsScaleable2 HID_SMA_SLRDBRACKETX -SingleLinesScaleable HID_SMA_SLRLINEX -DoubleLinesScaleable HID_SMA_SLRDLINEX -BracesScaleable HID_SMA_SLRBRACEX -PointedBracketsScaleable HID_SMA_SLRANGLEX -OperatorBrackets2 HID_SMA_SLMRANGLEXY -BracesTopScalable HID_SMA_XOVERBRACEY -BracesBottomScalable HID_SMA_XUNDERBRACEY +TB_Brackets sym:STARMATH_HID_SMA_BRACKETS_TBX +RoundBrackets sym:STARMATH_HID_SMA_LRPARENTX +SquareBrackets sym:STARMATH_HID_SMA_LRBRACKETX +DoubleSquareBrackets sym:STARMATH_HID_SMA_LRDBRACKETX +SingleLines sym:STARMATH_HID_SMA_LRLINEX +DoubleLines sym:STARMATH_HID_SMA_LRDLINEX +Braces sym:STARMATH_HID_SMA_LRBRACEX +PointedBrackets sym:STARMATH_HID_SMA_LRANGLEX +OperatorBrackets sym:STARMATH_HID_SMA_LMRANGLEXY +GroupBrackets sym:STARMATH_HID_SMA_LRGROUPX +RoundBracketsScaleable sym:STARMATH_HID_SMA_SLRPARENTX +SquareBracketsScaleable sym:STARMATH_HID_SMA_SLRBRACKETX +SquareBracketsScaleable2 sym:STARMATH_HID_SMA_SLRDBRACKETX +SingleLinesScaleable sym:STARMATH_HID_SMA_SLRLINEX +DoubleLinesScaleable sym:STARMATH_HID_SMA_SLRDLINEX +BracesScaleable sym:STARMATH_HID_SMA_SLRBRACEX +PointedBracketsScaleable sym:STARMATH_HID_SMA_SLRANGLEX +OperatorBrackets2 sym:STARMATH_HID_SMA_SLMRANGLEXY +BracesTopScalable sym:STARMATH_HID_SMA_XOVERBRACEY +BracesBottomScalable sym:STARMATH_HID_SMA_XUNDERBRACEY -TB_Format HID_SMA_FORMAT_TBX -SuperscriptLeft HID_SMA_LSUPX -SuperscriptTop HID_SMA_CSUPX -SuperscriptRight HID_SMA_RSUPX -VerticalStack2Elements HID_SMA_BINOMXY -NewLine HID_SMA_NEWLINE -SubscriptLeft HID_SMA_LSUBX -SubscriptBottom HID_SMA_CSUBX -SubscriptRight HID_SMA_RSUBX -VerticalStack HID_SMA_STACK -SmallGap HID_SMA_SBLANK -AlignLeft HID_SMA_ALIGNLX -AlignCenter HID_SMA_ALIGNCX -AlignRight HID_SMA_ALIGNRX -MatrixStack HID_SMA_MATRIX -Gap HID_SMA_BLANK +TB_Format sym:STARMATH_HID_SMA_FORMAT_TBX +SuperscriptLeft sym:STARMATH_HID_SMA_LSUPX +SuperscriptTop sym:STARMATH_HID_SMA_CSUPX +SuperscriptRight sym:STARMATH_HID_SMA_RSUPX +VerticalStack2Elements sym:STARMATH_HID_SMA_BINOMXY +NewLine sym:STARMATH_HID_SMA_NEWLINE +SubscriptLeft sym:STARMATH_HID_SMA_LSUBX +SubscriptBottom sym:STARMATH_HID_SMA_CSUBX +SubscriptRight sym:STARMATH_HID_SMA_RSUBX +VerticalStack sym:STARMATH_HID_SMA_STACK +SmallGap sym:STARMATH_HID_SMA_SBLANK +AlignLeft sym:STARMATH_HID_SMA_ALIGNLX +AlignCenter sym:STARMATH_HID_SMA_ALIGNCX +AlignRight sym:STARMATH_HID_SMA_ALIGNRX +MatrixStack sym:STARMATH_HID_SMA_MATRIX +Gap sym:STARMATH_HID_SMA_BLANK diff --git a/testautomation/global/win/edia_a_c.win b/testautomation/global/win/edia_a_c.win index 717bf83edb4e..7371d9d629fb 100755..100644 --- a/testautomation/global/win/edia_a_c.win +++ b/testautomation/global/win/edia_a_c.win @@ -1,399 +1,391 @@ -*AcceptOrRejectChangesArea sc:ModelessDialog:RID_SCDLG_SIMPLEREF -AreaEditField sc:Edit:RID_SCDLG_SIMPLEREF:ED_ASSIGN -ShrinkButton sc:ImageButton:RID_SCDLG_SIMPLEREF:RB_ASSIGN - -*ActivationOrder extensions:ModalDialog:RID_DLG_TABORDER -ControlList HID_PROP_TABORDER_CONTROLS -MoveUp extensions:PushButton:RID_DLG_TABORDER:PB_MOVE_UP -MoveDown extensions:PushButton:RID_DLG_TABORDER:PB_MOVE_DOWN -AutoOrder extensions:PushButton:RID_DLG_TABORDER:PB_AUTO_ORDER - -*AddBookmark sfx2:ModalDialog:DLG_HELP_ADDBOOKMARK -Bookmarkname sfx2:Edit:DLG_HELP_ADDBOOKMARK:ED_BOOKMARK_TITLE - -*AddConditionDLG HID_XFORMS_ADDCONDITION_DLG -Condition svx:MultiLineEdit:RID_SVXDLG_ADD_CONDITION:ED_CONDITION -EditNamespaces svx:PushButton:RID_SVXDLG_ADD_CONDITION:PB_EDIT_NAMESPACES - -*AddingPackages HID_PACKAGE_MANAGER_PROGRESS -Cancel HID_PACKAGE_MANAGER_PROGRESS_CANCEL - -*AddUserInterface HID_BASICIDE_ADDNEW_LANGUAGE -AvailableLanguagesListbox basctl:ListBox:RID_DLG_SETDEF_LANGUAGE:LB_DEF_LANGUAGE -AddNewControl HID_BASICIDE_ADDNEW_CONTROL - -*AddTables DLG_JOIN_TABADD -TableName HID_JOINSH_ADDTAB_TABLELIST -AddTable dbaccess:PushButton:DLG_JOIN_TABADD:PB_ADDTABLE -Tables dbaccess:RadioButton:DLG_JOIN_TABADD:RB_CASE_TABLES -Queries dbaccess:RadioButton:DLG_JOIN_TABADD:RB_CASE_QUERIES -QueryName HID_JOINSH_ADDTAB_QUERYLIST -CloseDlg HID_JOINSH_ADDTAB_CLOSE - -*AddressBookSource svtools:ModalDialog:DLG_ADDRESSBOOKSOURCE -DataSource svtools:ComboBox:DLG_ADDRESSBOOKSOURCE:CB_DATASOURCE -Administrate svtools:PushButton:DLG_ADDRESSBOOKSOURCE:PB_ADMINISTATE_DATASOURCES -Table svtools:ComboBox:DLG_ADDRESSBOOKSOURCE:CB_TABLE - -*AddressSourceAutopilot HID_ABSPILOT -TabAdditionalSettings extensions:TabPage:RID_PAGE_ADMININVOKATION -TabAddressDataSourceAutoPilot extensions:TabPage:RID_PAGE_SELECTABTYPE -TabDataSourceName extensions:TabPage:RID_PAGE_FINAL -TabSelectTable extensions:TabPage:RID_PAGE_TABLESELECTION -CancelButton HID_ABSPILOT_CANCEL -BackButton HID_ABSPILOT_PREVIOUS -NextButton HID_ABSPILOT_NEXT -CreateButton HID_ABSPILOT_FINISH - -*Advanced HID_DSADMIN_ADVANCED -SQL92Check HID_DSADMIN_SQL92CHECK -BooleanComparison HID_DSADMIN_BOOLEANCOMPARISON -AppendAlias HID_DSADMIN_APPENDTABLEALIAS -ParameterSubstiti HID_DSADMIN_PARAMETERNAMESUBST -Ignoreprivileges HID_DSADMIN_IGNOREDRIVER_PRIV -HostName HID_DSADMIN_HOSTNAME -PortNumber HID_DSADMIN_PORTNUMBER -TabControl HID_DSADMIN_TABCONTROL -'TabPage2 dbaccess:TabPage:PAGE_DS_ADABAS_SETTINGS -TabGeneratedValues dbaccess:TabPage:PAGE_GENERATED_VALUES -RetrieveGeneratedValues HID_DSADMIN_AUTORETRIEVEENABLED -AutoIncrementStatement HID_DSADMIN_AUTOINCREMENTVALUE -QueryGeneratedValues HID_DSADMIN_RETRIEVE_AUTO -AdvancedSettingsSpecial dbaccess:TabPage:PAGE_ADVANCED_SETTINGS_SPECIAL -DisplayVersionColumns HID_DSADMIN_SUPPRESS_VERSIONCL -EnableOuterJoin HID_DSADMIN_ENABLEOUTERJOIN -CheckRequiredFields HID_DSADMIN_CHECK_REQUIRED_FIELDS - - -*Aging SID_GRFFILTER_SEPIA -AgingDegree cui:MetricField:RID_SVX_GRFFILTER_DLG_SEPIA:DLG_FILTERSEPIA_MTR_SEPIA - -*AlienWarning HID_WARNING_ALIENFORMAT -DoNotShowAgain sfx2:CheckBox:RID_DLG_ALIEN_WARNING:CB_WARNING_OFF - -*AppendLibraries basctl:ModalDialog:RID_DLG_LIBS -Libraries HID_BASICIDE_LIBSDLG_TREE -InsertAsReference basctl:CheckBox:RID_DLG_LIBS:RID_CB_REF -ReplaceExistingLibraries basctl:CheckBox:RID_DLG_LIBS:RID_CB_REPL - -*ApplyGallery HID_GALLERY_APPLY - -*AssingComponent cui:ModalDialog:RID_SVXDLG_ASSIGNCOMPONENT -ComponentMethodName cui:Edit:RID_SVXDLG_ASSIGNCOMPONENT:EDIT_METHOD - -*AssignMacro cui:TabPage:RID_SVXPAGE_MACROASSIGN -EventListBox HID_SVX_MACRO_LB_EVENT -AssignButton cui:PushButton:RID_SVXPAGE_MACROASSIGN:PB_ASSIGN -Component cui:PushButton:RID_SVXPAGE_MACROASSIGN:PB_ASSIGN_COMPONENT -RemoveButton cui:PushButton:RID_SVXPAGE_MACROASSIGN:PB_DELETE - -*AutopilotAgenda HID_AGWIZ -ItemScrollbar HID_AGWIZ_5_SCROLL_BAR -TopicText1 HID_AGWIZ_5_TXT_TOPIC_1 -ResposibleText1 HID_AGWIZ_5_TXT_RESPONSIBLE_1 -MinutesText1 HID_AGWIZ_5_TXT_MINUTES_1 -TopicText2 HID_AGWIZ_5_TXT_TOPIC_2 -ResposibleText2 HID_AGWIZ_5_TXT_RESPONSIBLE_2 -MinutesText2 HID_AGWIZ_5_TXT_MINUTES_2 -TopicText3 HID_AGWIZ_5_TXT_TOPIC_3 -ResposibleText3 HID_AGWIZ_5_TXT_RESPONSIBLE_3 -MinutesText3 HID_AGWIZ_5_TXT_MINUTES_3 -TopicText4 HID_AGWIZ_5_TXT_TOPIC_4 -ResposibleText4 HID_AGWIZ_5_TXT_RESPONSIBLE_4 -MinutesText4 HID_AGWIZ_5_TXT_MINUTES_4 -TopicText5 HID_AGWIZ_5_TXT_TOPIC_5 -ResponsibleText5 HID_AGWIZ_5_TXT_RESPONSIBLE_5 -MinutesText5 HID_AGWIZ_5_TXT_MINUTES_5 -PagedesignList HID_AGWIZ_1_LIST_PAGEDESIGN -CBMinutes HID_AGWIZ_1_CHK_MINUTES -DateText HID_AGWIZ_2_TXT_DATE -TimeText HID_AGWIZ_2_TXT_TIME -TitleText HID_AGWIZ_2_TXT_TITLE -LocationText HID_AGWIZ_2_TXT_LOCATION -CBMeetingType HID_AGWIZ_3_CHK_MEETING_TYPE -CBRead HID_AGWIZ_3_CHK_READ -CBBring HID_AGWIZ_3_CHK_BRING -CBNotes HID_AGWIZ_3_CHK_NOTES -CBCalledBy HID_AGWIZ_4_CHK_CALLED_BY -CBFacilitator HID_AGWIZ_4_CHK_FACILITATOR -CBNotetaker HID_AGWIZ_4_CHK_NOTETAKER -CBTimeKeeper HID_AGWIZ_4_CHK_TIMEKEEPER -CBAttendees HID_AGWIZ_4_CHK_ATTENDEES -CBObservers HID_AGWIZ_4_CHK_OBSERVERS -CBRessourcePersons HID_AGWIZ_4_CHK_RESOURCEPERSONS -InsertButton HID_AGWIZ_5_BTN_INSERT -RemoveButton HID_AGWIZ_5_BTN_REMOVE -UpButton HID_AGWIZ_5_BTN_UP -DownButton HID_AGWIZ_5_BTN_DOWN -TemplateName HID_AGWIZ_6_TXT_TEMPLATENAME -TemplatePath HID_AGWIZ_6_TXT_TEMPLATEPATH -SaveAsButton HID_AGWIZ_6_BTN_TEMPLATEPATH -CreateAgenda HID_AGWIZ_6_OPT_CREATEAGENDA -MakeChanges HID_AGWIZ_6_OPT_MAKECHANGES -BackButton HID_AGWIZ_NEXT -NextButton HID_AGWIZ_PREV -CreateButton HID_AGWIZ_CREATE -CancelButton HID_AGWIZ_CANCEL - -*AutopilotFax HID_FAXWIZARD -Business HID_FAXWIZ_OPTBUSINESSFAX -Personal HID_FAXWIZ_OPTPRIVATEFAX -BusinessStyle HID_FAXWIZ_LSTBUSINESSSTYLE -PersonalStyle HID_LSTPRIVATESTYLE -Logo HID_CHKUSELOGO -Date HID_CHKUSEDATE -CommForm HID_CHKUSECOMMUNICATIONTYPE -ListCommForm HID_LSTCOMMUNICATIONTYPE -Subject HID_CHKUSESUBJECT -Salutation HID_CHKUSESALUTATION -ListSalutation HID_LSTSALUTATION -ComplimentaryClose HID_CHKUSEGREETING -ListGreetings HID_LSTGREETING -Footer HID_CHKUSEFOOTER -UseReturnAddress HID_OPTSENDERPLACEHOLDER -NewSenderAddress HID_OPTSENDERDEFINE -SenderName HID_TXTSENDERNAME -SenderStreet HID_TXTSENDERSTREET -SenderPostcode HID_TXTSENDERPOSTCODE -SenderState HID_TXTSENDERSTATE -SenderCity HID_TXTSENDERCITY -SenderFax HID_TXTSENDERFAX -RecipientUsePlaceholder HID_OPTRECEIVERPLACEHOLDER -RecipientUseDatabase HID_OPTRECEIVERDATABASE -FooterText HID_TXTFOOTER -FooterOnNextPages HID_CHKFOOTERNEXTPAGES -FooterPageNumbers HID_CHKFOOTERPAGENUMBERS -TemplateName HID_TXTTEMPLATENAME -TextPath HID_FAXWIZ_TXTPATH -CreateFax HID_OPTCREATEFAX -MakeChanges HID_OPTMAKECHANGES -UseAddressDatabase HID_FILETEMPLATEPATH -BusinessFax RID_TOOLBOX_INSERT -PageDesignBusiness RID_TOOLBOX_INSCELLS -PersonalFax RID_TOOLBOX_INSOBJ -MailView HID_INTERFACE_SFXMAILVIEW -ReturnAddressUseUserData HID_INTERFACE_SFXFRAMESETVIEW -NewReturnAddress HID_INTERFACE_SFXFRAMESETSOURCEVIEW -Street HID_INTERFACE_SFXHELP_VIEWSH -SaveAsButton HID_FAXWIZ_CMDPATH -BackButton HID_FAXWIZARD_BACK -NextButton HID_FAXWIZARD_NEXT -FinishButton HID_FAXWIZARD_CREATE -CancelButton HID_FAXWIZARD_CANCEL - -*AutopilotGroupElement extensions:ModalDialog:RID_DLG_GROUPBOXWIZARD -BackButton HID_GROUPWIZARD_PREVIOUS -NextButton HID_GROUPWIZARD_NEXT -CancelButton HID_GROUPWIZARD_CANCEL -CreateButton HID_GROUPWIZARD_FINISH -TabGroupBoxData extensions:TabPage:RID_PAGE_GROUPRADIOSELECTION -TabDefaultFieldSelection extensions:TabPage:RID_PAGE_DEFAULTFIELDSELECTION -TabDatabaseValues extensions:TabPage:RID_PAGE_OPTIONVALUES -TabCreateOptionGroup extensions:TabPage:RID_PAGE_OPTIONS_FINAL - -*AutopilotLetter HID_LTRWIZARD -Business HID_LTRWIZ_OPTBUSINESSLETTER -BusinessStyle HID_LTRWIZ_LSTBUSINESSSTYLE -LetterHead HID_LTRWIZ_CHKBUSINESSPAPER -Formal HID_LTRWIZ_OPTPRIVOFFICIALLETTER -FormalStyle HID_LTRWIZ_LSTPRIVOFFICIALSTYLE -Personal HID_LTRWIZ_OPTPRIVATELETTER -PersonalStyle HID_LTRWIZ_LSTPRIVATESTYLE -Logo HID_LTRWIZ_CHKPAPERCOMPANYLOGO -LogoHeight HID_LTRWIZ_NUMLOGOHEIGHT -LogoXpos HID_LTRWIZ_NUMLOGOX -LogoWidth HID_LTRWIZ_NUMLOGOWIDTH -LogoYpos HID_LTRWIZ_NUMLOGOY -ReturnAddress HID_LTRWIZ_CHKPAPERCOMPANYADDRESS -AddressHeight HID_LTRWIZ_NUMADDRESSHEIGHT -AddressXpos HID_LTRWIZ_NUMADDRESSX -AddressWidth HID_LTRWIZ_NUMADDRESSWIDTH -AddressYpos HID_LTRWIZ_NUMADDRESSY -ReturnAddressCompany HID_LTRWIZ_CHKCOMPANYRECEIVER -IncludeFooter HID_LTRWIZ_CHKPAPERFOOTER -FooterHeight HID_LTRWIZ_NUMFOOTERHEIGHT -LetterPageNorm HID_LTRWIZ_LSTLETTERNORM -LetterUseLogo HID_LTRWIZ_CHKUSELOGO -ReturnAddressUse HID_LTRWIZ_CHKUSEADDRESSRECEIVER -LetterSigns HID_LTRWIZ_CHKUSESIGNS -SubjectLine HID_LTRWIZ_CHKUSESUBJECT -Salutation HID_LTRWIZ_CHKUSESALUTATION -ListSalutation HID_LTRWIZ_LSTSALUTATION -UseFoldMarks HID_LTRWIZ_CHKUSEBENDMARKS -ComplimantaryClose HID_LTRWIZ_CHKUSEGREETING -ListGreetings HID_LTRWIZ_LSTGREETING -UseFooter HID_LTRWIZ_CHKUSEFOOTER -UseReturnAddress HID_LTRWIZ_OPTSENDERPLACEHOLDER -NewSenderAddress HID_LTRWIZ_OPTSENDERDEFINE -SenderName HID_LTRWIZ_TXTSENDERNAME -SenderStreet HID_LTRWIZ_TXTSENDERSTREET -SenderPostcode HID_LTRWIZ_TXTSENDERPOSTCODE -SenderState HID_LTRWIZ_TXTSENDERSTATE_TEXT -SenderCity HID_LTRWIZ_TXTSENDERCITY -UsePlaceholder HID_LTRWIZ_OPTRECEIVERPLACEHOLDER -UseAddressDatabase HID_LTRWIZ_OPTRECEIVERDATABASE -TextFooter HID_LTRWIZ_TXTFOOTER -IncludeFromPage2 HID_LTRWIZ_CHKFOOTERNEXTPAGES -IncludePageNumbers HID_LTRWIZ_CHKFOOTERPAGENUMBERS -TemplateName HID_LTRWIZ_TXTTEMPLATENAME -TemplatePath HID_LTRWIZ_TXTPATH -SaveAsButton HID_LTRWIZ_CMDPATH -CreateLetter HID_LTRWIZ_OPTCREATELETTER -ModifyLetter HID_LTRWIZ_OPTMAKECHANGES -BackButton HID_LTRWIZARD_BACK -NextButton HID_LTRWIZARD_NEXT -FinishButton HID_LTRWIZARD_CREATE -CancelButton HID_LTRWIZARD_CANCEL - - - - -*AutoPilotListComboBox extensions:ModalDialog:RID_DLG_LISTCOMBOWIZARD -TabListBoxData extensions:TabPage:RID_PAGE_TABLESELECTION -TabTableSelection extensions:TabPage:RID_PAGE_LCW_CONTENTSELECTION_TABLE -TabFieldLink extensions:TabPage:RID_PAGE_LCW_FIELDLINK -TabDatabaseField extensions:TabPage:RID_PAGE_OPTION_DBFIELD -BackButton HID_LISTWIZARD_PREVIOUS -NextButton HID_LISTWIZARD_NEXT -CancelButton HID_LISTWIZARD_CANCEL -CreateButton HID_LISTWIZARD_FINISH - -*AutopilotTableElement extensions:ModalDialog:RID_DLG_GRIDWIZARD -TabTableFieldSelection extensions:TabPage:RID_PAGE_GW_FIELDSELECTION -BackButton HID_GRIDWIZARD_PREVIOUS -NextButton HID_GRIDWIZARD_NEXT -CancelButton HID_GRIDWIZARD_CANCEL -CreateButton HID_GRIDWIZARD_FINISH - -*BackgroundImages HID_BG -Image1 HID_BG_BTN_IMG1 -Image2 HID_BG_BTN_IMG2 -Image3 HID_BG_BTN_IMG3 -Image4 HID_BG_BTN_IMG14 -Image5 HID_BG_BTN_IMG5 -Image6 HID_BG_BTN_IMG6 -Image7 HID_BG_BTN_IMG7 -Image8 HID_BG_BTN_IMG8 -Image9 HID_BG_BTN_IMG9 -Image10 HID_BG_BTN_IMG10 -Image11 HID_BG_BTN_IMG11 -Image12 HID_BG_BTN_IMG12 -Back HID_BG_BTN_BACK -Forward HID_BG_BTN_FW -None HID_BG_BTN_NONE -Other HID_BG_BTN_OTHER -CancelB HID_BG_BTN_CANCEL - -*BasicIDE HID_BASICIDE_MODULWINDOW -EditWindow HID_BASICIDE_EDITORWINDOW -BreakPointsWindow HID_BASICIDE_BREAKPOINTWINDOW -DialogWindow HID_BASICIDE_DIALOGWINDOW -Tabbar HID_BASICIDE_TABBAR -Watch HID_BASICIDE_WATCHWINDOW -WatchEdit HID_BASICIDE_WATCHWINDOW_EDIT -WatchList HID_BASICIDE_WATCHWINDOW_LIST -Remove HID_BASICIDE_REMOVEWATCH -Calls HID_BASICIDE_STACKWINDOW -CallsList HID_BASICIDE_STACKWINDOW_LIST -GotoAll HID_BASICIDE_GOTOALL - -*Bibliography HID_BIB_CONTROL_PARENT -ShortName HID_BIB_IDENTIFIER_POS -Type HID_BIB_AUTHORITYTYPE_POS -Year HID_BIB_YEAR_POS -Author HID_BIB_AUTHOR_POS -Title HID_BIB_TITLE_POS -Publisher HID_BIB_PUBLISHER_POS -Address HID_BIB_ADDRESS_POS -ISBN HID_BIB_ISBN_POS -Chapter HID_BIB_CHAPTER_POS -Pages HID_BIB_PAGES_POS -Editor HID_BIB_EDITOR_POS -Edition HID_BIB_EDITION_POS -Booktitle HID_BIB_BOOKTITLE_POS -Volume HID_BIB_VOLUME_POS -HowPublished HID_BIB_HOWPUBLISHED_POS -Organization HID_BIB_ORGANIZATIONS_POS -Institution HID_BIB_INSTITUTION_POS -School HID_BIB_SCHOOL_POS -Report HID_BIB_REPORTTYPE_POS -Month HID_BIB_MONTH_POS -Journal HID_BIB_JOURNAL_POS -Number HID_BIB_NUMBER_POS -Series HID_BIB_SERIES_POS -Annote HID_BIB_ANNOTE_POS -Note HID_BIB_NOTE_POS -URL HID_BIB_URL_POS -Custom1 HID_BIB_CUSTOM1_POS -Custom2 HID_BIB_CUSTOM2_POS -Custom3 HID_BIB_CUSTOM3_POS -Custom4 HID_BIB_CUSTOM4_POS -Custom5 HID_BIB_CUSTOM5_POS - -*BMPOptions svtools:ModalDialog:DLG_EXPORT -Exportwidth svtools:MetricField:DLG_EXPORT:MF_SIZEX -Exportmeasurement svtools:ListBox:DLG_EXPORT:LB_SIZEX -Exportheight svtools:MetricField:DLG_EXPORT:MF_SIZEY -Resolution svtools:NumericField:DLG_EXPORT:NF_RESOLUTION -Resolutionmeasurement svtools:ListBox:DLG_EXPORT:LB_RESOLUTION -Colordepth svtools:ListBox:DLG_EXPORT:LB_COLOR_DEPTH -Compression svtools:CheckBox:DLG_EXPORT:CB_RLE_ENCODING - - -*Breakpoints basctl:ModalDialog:RID_BASICIDE_BREAKPOINTDLG -BreakpointsList basctl:ComboBox:RID_BASICIDE_BREAKPOINTDLG:RID_CB_BRKPOINTS -NewButton basctl:PushButton:RID_BASICIDE_BREAKPOINTDLG:RID_PB_NEW -Remove basctl:PushButton:RID_BASICIDE_BREAKPOINTDLG:RID_PB_DEL -ActiveBox basctl:CheckBox:RID_BASICIDE_BREAKPOINTDLG:RID_CHKB_ACTIVE -Pass basctl:NumericField:RID_BASICIDE_BREAKPOINTDLG:RID_FLD_PASS - -*CellWarning HID_SC_REPLCELLSWARN - -*ChangeIcon HID_SVX_CONFIG_ICON_SELECTOR -Import cui:PushButton:MD_ICONSELECTOR:BTN_IMPORT - -*ChangePassword HID_DLG_PASSWORD -OldPassword dbaccess:Edit:DLG_PASSWORD:ED_OLDPASSWORD -Password dbaccess:Edit:DLG_PASSWORD:ED_PASSWORD -ConfirmPassword dbaccess:Edit:DLG_PASSWORD:ED_PASSWORD_REPEAT - -*ChartType SID_DIAGRAM_TYPE -ChooseType HID_SCH_CTL_TYPE -Variant HID_SCH_CTL_VARIANT -XAxisWithCategories chart2:CheckBox:TP_CHARTTYPE:CB_X_AXIS_CATEGORIES -Look3D chart2:CheckBox:TP_CHARTTYPE:CB_3D_LOOK -Scheme3D chart2:ListBox:TP_CHARTTYPE:LB_3D_SCHEME -BarColumnShape HID_SCH_LB_BAR_GEOMETRY -StackSeries chart2:CheckBox:TP_CHARTTYPE:CB_STACKED -Ontop chart2:RadioButton:TP_CHARTTYPE:RB_STACK_Y -Percent chart2:RadioButton:TP_CHARTTYPE:RB_STACK_Y_PERCENT -Deep chart2:RadioButton:TP_CHARTTYPE:RB_STACK_Z -SmoothLines chart2:CheckBox:TP_CHARTTYPE:CB_SPLINES -SmoothLineProperties chart2:PushButton:TP_CHARTTYPE:PB_SPLINE_DIALOG -NumberOfLines HID_SCH_NUM_OF_LINES - -*ChartWizard HID_SCH_CHART_AUTO_FORMAT -RoadMap HID_SCH_WIZARD_ROADMAP -GoNext HID_WIZARD_NEXT -GoBack HID_WIZARD_PREVIOUS - -*CheckForUpdates HID_CHECK_FOR_UPD_DLG -CloseBtn HID_CHECK_FOR_UPD_CLOSE -Cancel HID_CHECK_FOR_UPD_CANCEL -Pause HID_CHECK_FOR_UPD_PAUSE -Resume HID_CHECK_FOR_UPD_RESUME -Download HID_CHECK_FOR_UPD_DOWNLOAD -Download2 HID_CHECK_FOR_UPD_DOWNLOAD2 -Install HID_CHECK_FOR_UPD_INSTALL -Status HID_CHECK_FOR_UPD_STATUS -Description HID_CHECK_FOR_UPD_DESCRIPTION - -'*ChooseDatabase HID_DLGFORM_DIALOG +*AcceptOrRejectChangesArea sym:sc:ModelessDialog:RID_SCDLG_SIMPLEREF +AreaEditField sym:sc:Edit:RID_SCDLG_SIMPLEREF:ED_ASSIGN +ShrinkButton sym:sc:ImageButton:RID_SCDLG_SIMPLEREF:RB_ASSIGN + +*ActivationOrder sym:extensions:ModalDialog:RID_DLG_TABORDER +ControlList sym:EXTENSIONS_HID_PROP_TABORDER_CONTROLS +MoveUp sym:extensions:PushButton:RID_DLG_TABORDER:PB_MOVE_UP +MoveDown sym:extensions:PushButton:RID_DLG_TABORDER:PB_MOVE_DOWN +AutoOrder sym:extensions:PushButton:RID_DLG_TABORDER:PB_AUTO_ORDER + +*AddBookmark sym:sfx2:ModalDialog:DLG_HELP_ADDBOOKMARK +Bookmarkname sym:sfx2:Edit:DLG_HELP_ADDBOOKMARK:ED_BOOKMARK_TITLE + +*AddConditionDLG sym:SVX_HID_XFORMS_ADDCONDITION_DLG +Condition sym:svx:MultiLineEdit:RID_SVXDLG_ADD_CONDITION:ED_CONDITION +EditNamespaces sym:svx:PushButton:RID_SVXDLG_ADD_CONDITION:PB_EDIT_NAMESPACES + +*AddingPackages sym:DESKTOP_HID_PACKAGE_MANAGER_PROGRESS +Cancel sym:DESKTOP_HID_PACKAGE_MANAGER_PROGRESS_CANCEL + +*AddUserInterface sym:BASCTL_HID_BASICIDE_ADDNEW_LANGUAGE +AvailableLanguagesListbox sym:basctl:ListBox:RID_DLG_SETDEF_LANGUAGE:LB_DEF_LANGUAGE +AddNewControl sym:BASCTL_HID_BASICIDE_ADDNEW_CONTROL + +*AddTables sym:DBACCESS_HID_DLG_JOIN_TABADD +TableName sym:DBACCESS_HID_JOINSH_ADDTAB_TABLELIST +AddTable sym:dbaccess:PushButton:DLG_JOIN_TABADD:PB_ADDTABLE +Tables sym:dbaccess:RadioButton:DLG_JOIN_TABADD:RB_CASE_TABLES +Queries sym:dbaccess:RadioButton:DLG_JOIN_TABADD:RB_CASE_QUERIES +QueryName sym:DBACCESS_HID_JOINSH_ADDTAB_QUERYLIST +CloseDlg sym:DBACCESS_HID_JOINSH_ADDTAB_CLOSE + +*AddressBookSource sym:svtools:ModalDialog:DLG_ADDRESSBOOKSOURCE +DataSource sym:svtools:ComboBox:DLG_ADDRESSBOOKSOURCE:CB_DATASOURCE +Administrate sym:svtools:PushButton:DLG_ADDRESSBOOKSOURCE:PB_ADMINISTATE_DATASOURCES +Table sym:svtools:ComboBox:DLG_ADDRESSBOOKSOURCE:CB_TABLE + +*AddressSourceAutopilot sym:EXTENSIONS_HID_ABSPILOT +TabAdditionalSettings sym:extensions:TabPage:RID_PAGE_ADMININVOKATION +TabAddressDataSourceAutoPilot sym:extensions:TabPage:RID_PAGE_SELECTABTYPE +TabDataSourceName sym:extensions:TabPage:RID_PAGE_FINAL +TabSelectTable sym:extensions:TabPage:RID_PAGE_TABLESELECTION +CancelButton sym:EXTENSIONS_HID_ABSPILOT_CANCEL +BackButton sym:EXTENSIONS_HID_ABSPILOT_PREVIOUS +NextButton sym:EXTENSIONS_HID_ABSPILOT_NEXT +CreateButton sym:EXTENSIONS_HID_ABSPILOT_FINISH + +*Advanced sym:DBACCESS_HID_DSADMIN_ADVANCED +SQL92Check sym:DBACCESS_HID_DSADMIN_SQL92CHECK +BooleanComparison sym:DBACCESS_HID_DSADMIN_BOOLEANCOMPARISON +AppendAlias sym:DBACCESS_HID_DSADMIN_APPENDTABLEALIAS +ParameterSubstiti sym:DBACCESS_HID_DSADMIN_PARAMETERNAMESUBST +Ignoreprivileges sym:DBACCESS_HID_DSADMIN_IGNOREDRIVER_PRIV +HostName sym:DBACCESS_HID_DSADMIN_HOSTNAME +PortNumber sym:DBACCESS_HID_DSADMIN_PORTNUMBER +TabControl sym:DBACCESS_HID_DSADMIN_TABCONTROL +'TabPage2 sym:dbaccess:TabPage:PAGE_DS_ADABAS_SETTINGS +TabGeneratedValues sym:dbaccess:TabPage:PAGE_GENERATED_VALUES +RetrieveGeneratedValues sym:DBACCESS_HID_DSADMIN_AUTORETRIEVEENABLED +AutoIncrementStatement sym:DBACCESS_HID_DSADMIN_AUTOINCREMENTVALUE +QueryGeneratedValues sym:DBACCESS_HID_DSADMIN_RETRIEVE_AUTO +AdvancedSettingsSpecial sym:dbaccess:TabPage:PAGE_ADVANCED_SETTINGS_SPECIAL +DisplayVersionColumns sym:DBACCESS_HID_DSADMIN_SUPPRESS_VERSIONCL +EnableOuterJoin sym:DBACCESS_HID_DSADMIN_ENABLEOUTERJOIN +CheckRequiredFields sym:DBACCESS_HID_DSADMIN_CHECK_REQUIRED_FIELDS + + +*Aging .uno:GraphicFilterSepia +AgingDegree sym:cui:MetricField:RID_SVX_GRFFILTER_DLG_SEPIA:DLG_FILTERSEPIA_MTR_SEPIA + +*AlienWarning sym:SFX2_HID_WARNING_ALIENFORMAT +DoNotShowAgain sym:sfx2:CheckBox:RID_DLG_ALIEN_WARNING:CB_WARNING_OFF + +*AppendLibraries sym:basctl:ModalDialog:RID_DLG_LIBS +Libraries sym:BASCTL_HID_BASICIDE_LIBSDLG_TREE +InsertAsReference sym:basctl:CheckBox:RID_DLG_LIBS:RID_CB_REF +ReplaceExistingLibraries sym:basctl:CheckBox:RID_DLG_LIBS:RID_CB_REPL + +*ApplyGallery sym:CUI_HID_GALLERY_APPLY + +*AssingComponent sym:cui:ModalDialog:RID_SVXDLG_ASSIGNCOMPONENT +ComponentMethodName sym:cui:Edit:RID_SVXDLG_ASSIGNCOMPONENT:EDIT_METHOD + +*AssignMacro sym:cui:TabPage:RID_SVXPAGE_MACROASSIGN +EventListBox sym:CUI_HID_SVX_MACRO_LB_EVENT +AssignButton sym:cui:PushButton:RID_SVXPAGE_MACROASSIGN:PB_ASSIGN +Component sym:cui:PushButton:RID_SVXPAGE_MACROASSIGN:PB_ASSIGN_COMPONENT +RemoveButton sym:cui:PushButton:RID_SVXPAGE_MACROASSIGN:PB_DELETE + +*AutopilotAgenda sym:WIZARDS_HID_AGWIZ +ItemScrollbar sym:WIZARDS_HID_AGWIZ_5_SCROLL_BAR +TopicText1 sym:WIZARDS_HID_AGWIZ_5_TXT_TOPIC_1 +ResposibleText1 sym:WIZARDS_HID_AGWIZ_5_TXT_RESPONSIBLE_1 +MinutesText1 sym:WIZARDS_HID_AGWIZ_5_TXT_MINUTES_1 +TopicText2 sym:WIZARDS_HID_AGWIZ_5_TXT_TOPIC_2 +ResposibleText2 sym:WIZARDS_HID_AGWIZ_5_TXT_RESPONSIBLE_2 +MinutesText2 sym:WIZARDS_HID_AGWIZ_5_TXT_MINUTES_2 +TopicText3 sym:WIZARDS_HID_AGWIZ_5_TXT_TOPIC_3 +ResposibleText3 sym:WIZARDS_HID_AGWIZ_5_TXT_RESPONSIBLE_3 +MinutesText3 sym:WIZARDS_HID_AGWIZ_5_TXT_MINUTES_3 +TopicText4 sym:WIZARDS_HID_AGWIZ_5_TXT_TOPIC_4 +ResposibleText4 sym:WIZARDS_HID_AGWIZ_5_TXT_RESPONSIBLE_4 +MinutesText4 sym:WIZARDS_HID_AGWIZ_5_TXT_MINUTES_4 +TopicText5 sym:WIZARDS_HID_AGWIZ_5_TXT_TOPIC_5 +ResponsibleText5 sym:WIZARDS_HID_AGWIZ_5_TXT_RESPONSIBLE_5 +MinutesText5 sym:WIZARDS_HID_AGWIZ_5_TXT_MINUTES_5 +PagedesignList sym:WIZARDS_HID_AGWIZ_1_LIST_PAGEDESIGN +CBMinutes sym:WIZARDS_HID_AGWIZ_1_CHK_MINUTES +DateText sym:WIZARDS_HID_AGWIZ_2_TXT_DATE +TimeText sym:WIZARDS_HID_AGWIZ_2_TXT_TIME +TitleText sym:WIZARDS_HID_AGWIZ_2_TXT_TITLE +LocationText sym:WIZARDS_HID_AGWIZ_2_TXT_LOCATION +CBMeetingType sym:WIZARDS_HID_AGWIZ_3_CHK_MEETING_TYPE +CBRead sym:WIZARDS_HID_AGWIZ_3_CHK_READ +CBBring sym:WIZARDS_HID_AGWIZ_3_CHK_BRING +CBNotes sym:WIZARDS_HID_AGWIZ_3_CHK_NOTES +CBCalledBy sym:WIZARDS_HID_AGWIZ_4_CHK_CALLED_BY +CBFacilitator sym:WIZARDS_HID_AGWIZ_4_CHK_FACILITATOR +CBNotetaker sym:WIZARDS_HID_AGWIZ_4_CHK_NOTETAKER +CBTimeKeeper sym:WIZARDS_HID_AGWIZ_4_CHK_TIMEKEEPER +CBAttendees sym:WIZARDS_HID_AGWIZ_4_CHK_ATTENDEES +CBObservers sym:WIZARDS_HID_AGWIZ_4_CHK_OBSERVERS +CBRessourcePersons sym:WIZARDS_HID_AGWIZ_4_CHK_RESOURCEPERSONS +InsertButton sym:WIZARDS_HID_AGWIZ_5_BTN_INSERT +RemoveButton sym:WIZARDS_HID_AGWIZ_5_BTN_REMOVE +UpButton sym:WIZARDS_HID_AGWIZ_5_BTN_UP +DownButton sym:WIZARDS_HID_AGWIZ_5_BTN_DOWN +TemplateName sym:WIZARDS_HID_AGWIZ_6_TXT_TEMPLATENAME +TemplatePath sym:WIZARDS_HID_AGWIZ_6_TXT_TEMPLATEPATH +SaveAsButton sym:WIZARDS_HID_AGWIZ_6_BTN_TEMPLATEPATH +CreateAgenda sym:WIZARDS_HID_AGWIZ_6_OPT_CREATEAGENDA +MakeChanges sym:WIZARDS_HID_AGWIZ_6_OPT_MAKECHANGES +BackButton sym:WIZARDS_HID_AGWIZ_NEXT +NextButton sym:WIZARDS_HID_AGWIZ_PREV +CreateButton sym:WIZARDS_HID_AGWIZ_CREATE +CancelButton sym:WIZARDS_HID_AGWIZ_CANCEL + +*AutopilotFax sym:WIZARDS_HID_FAXWIZARD +Business sym:WIZARDS_HID_FAXWIZ_OPTBUSINESSFAX +Personal sym:WIZARDS_HID_FAXWIZ_OPTPRIVATEFAX +BusinessStyle sym:WIZARDS_HID_FAXWIZ_LSTBUSINESSSTYLE +PersonalStyle sym:WIZARDS_HID_LSTPRIVATESTYLE +Logo sym:WIZARDS_HID_CHKUSELOGO +Date sym:WIZARDS_HID_CHKUSEDATE +CommForm sym:WIZARDS_HID_CHKUSECOMMUNICATIONTYPE +ListCommForm sym:WIZARDS_HID_LSTCOMMUNICATIONTYPE +Subject sym:WIZARDS_HID_CHKUSESUBJECT +Salutation sym:WIZARDS_HID_CHKUSESALUTATION +ListSalutation sym:WIZARDS_HID_LSTSALUTATION +ComplimentaryClose sym:WIZARDS_HID_CHKUSEGREETING +ListGreetings sym:WIZARDS_HID_LSTGREETING +Footer sym:WIZARDS_HID_CHKUSEFOOTER +UseReturnAddress sym:WIZARDS_HID_OPTSENDERPLACEHOLDER +NewSenderAddress sym:WIZARDS_HID_OPTSENDERDEFINE +SenderName sym:WIZARDS_HID_TXTSENDERNAME +SenderStreet sym:WIZARDS_HID_TXTSENDERSTREET +SenderPostcode sym:WIZARDS_HID_TXTSENDERPOSTCODE +SenderState sym:WIZARDS_HID_TXTSENDERSTATE +SenderCity sym:WIZARDS_HID_TXTSENDERCITY +SenderFax sym:WIZARDS_HID_TXTSENDERFAX +RecipientUsePlaceholder sym:WIZARDS_HID_OPTRECEIVERPLACEHOLDER +RecipientUseDatabase sym:WIZARDS_HID_OPTRECEIVERDATABASE +FooterText sym:WIZARDS_HID_TXTFOOTER +FooterOnNextPages sym:WIZARDS_HID_CHKFOOTERNEXTPAGES +FooterPageNumbers sym:WIZARDS_HID_CHKFOOTERPAGENUMBERS +TemplateName sym:WIZARDS_HID_TXTTEMPLATENAME +TextPath sym:WIZARDS_HID_FAXWIZ_TXTPATH +CreateFax sym:WIZARDS_HID_OPTCREATEFAX +MakeChanges sym:WIZARDS_HID_OPTMAKECHANGES +UseAddressDatabase sym:WIZARDS_HID_FILETEMPLATEPATH +SaveAsButton sym:WIZARDS_HID_FAXWIZ_CMDPATH +BackButton sym:WIZARDS_HID_FAXWIZARD_BACK +NextButton sym:WIZARDS_HID_FAXWIZARD_NEXT +FinishButton sym:WIZARDS_HID_FAXWIZARD_CREATE +CancelButton sym:WIZARDS_HID_FAXWIZARD_CANCEL + +*AutopilotGroupElement sym:extensions:ModalDialog:RID_DLG_GROUPBOXWIZARD +BackButton sym:EXTENSIONS_HID_GROUPWIZARD_PREVIOUS +NextButton sym:EXTENSIONS_HID_GROUPWIZARD_NEXT +CancelButton sym:EXTENSIONS_HID_GROUPWIZARD_CANCEL +CreateButton sym:EXTENSIONS_HID_GROUPWIZARD_FINISH +TabGroupBoxData sym:extensions:TabPage:RID_PAGE_GROUPRADIOSELECTION +TabDefaultFieldSelection sym:extensions:TabPage:RID_PAGE_DEFAULTFIELDSELECTION +TabDatabaseValues sym:extensions:TabPage:RID_PAGE_OPTIONVALUES +TabCreateOptionGroup sym:extensions:TabPage:RID_PAGE_OPTIONS_FINAL + +*AutopilotLetter sym:WIZARDS_HID_LTRWIZARD +Business sym:WIZARDS_HID_LTRWIZ_OPTBUSINESSLETTER +BusinessStyle sym:WIZARDS_HID_LTRWIZ_LSTBUSINESSSTYLE +LetterHead sym:WIZARDS_HID_LTRWIZ_CHKBUSINESSPAPER +Formal sym:WIZARDS_HID_LTRWIZ_OPTPRIVOFFICIALLETTER +FormalStyle sym:WIZARDS_HID_LTRWIZ_LSTPRIVOFFICIALSTYLE +Personal sym:WIZARDS_HID_LTRWIZ_OPTPRIVATELETTER +PersonalStyle sym:WIZARDS_HID_LTRWIZ_LSTPRIVATESTYLE +Logo sym:WIZARDS_HID_LTRWIZ_CHKPAPERCOMPANYLOGO +LogoHeight sym:WIZARDS_HID_LTRWIZ_NUMLOGOHEIGHT +LogoXpos sym:WIZARDS_HID_LTRWIZ_NUMLOGOX +LogoWidth sym:WIZARDS_HID_LTRWIZ_NUMLOGOWIDTH +LogoYpos sym:WIZARDS_HID_LTRWIZ_NUMLOGOY +ReturnAddress sym:WIZARDS_HID_LTRWIZ_CHKPAPERCOMPANYADDRESS +AddressHeight sym:WIZARDS_HID_LTRWIZ_NUMADDRESSHEIGHT +AddressXpos sym:WIZARDS_HID_LTRWIZ_NUMADDRESSX +AddressWidth sym:WIZARDS_HID_LTRWIZ_NUMADDRESSWIDTH +AddressYpos sym:WIZARDS_HID_LTRWIZ_NUMADDRESSY +ReturnAddressCompany sym:WIZARDS_HID_LTRWIZ_CHKCOMPANYRECEIVER +IncludeFooter sym:WIZARDS_HID_LTRWIZ_CHKPAPERFOOTER +FooterHeight sym:WIZARDS_HID_LTRWIZ_NUMFOOTERHEIGHT +LetterPageNorm sym:WIZARDS_HID_LTRWIZ_LSTLETTERNORM +LetterUseLogo sym:WIZARDS_HID_LTRWIZ_CHKUSELOGO +ReturnAddressUse sym:WIZARDS_HID_LTRWIZ_CHKUSEADDRESSRECEIVER +LetterSigns sym:WIZARDS_HID_LTRWIZ_CHKUSESIGNS +SubjectLine sym:WIZARDS_HID_LTRWIZ_CHKUSESUBJECT +Salutation sym:WIZARDS_HID_LTRWIZ_CHKUSESALUTATION +ListSalutation sym:WIZARDS_HID_LTRWIZ_LSTSALUTATION +UseFoldMarks sym:WIZARDS_HID_LTRWIZ_CHKUSEBENDMARKS +ComplimantaryClose sym:WIZARDS_HID_LTRWIZ_CHKUSEGREETING +ListGreetings sym:WIZARDS_HID_LTRWIZ_LSTGREETING +UseFooter sym:WIZARDS_HID_LTRWIZ_CHKUSEFOOTER +UseReturnAddress sym:WIZARDS_HID_LTRWIZ_OPTSENDERPLACEHOLDER +NewSenderAddress sym:WIZARDS_HID_LTRWIZ_OPTSENDERDEFINE +SenderName sym:WIZARDS_HID_LTRWIZ_TXTSENDERNAME +SenderStreet sym:WIZARDS_HID_LTRWIZ_TXTSENDERSTREET +SenderPostcode sym:WIZARDS_HID_LTRWIZ_TXTSENDERPOSTCODE +SenderState sym:WIZARDS_HID_LTRWIZ_TXTSENDERSTATE_TEXT +SenderCity sym:WIZARDS_HID_LTRWIZ_TXTSENDERCITY +UsePlaceholder sym:WIZARDS_HID_LTRWIZ_OPTRECEIVERPLACEHOLDER +UseAddressDatabase sym:WIZARDS_HID_LTRWIZ_OPTRECEIVERDATABASE +TextFooter sym:WIZARDS_HID_LTRWIZ_TXTFOOTER +IncludeFromPage2 sym:WIZARDS_HID_LTRWIZ_CHKFOOTERNEXTPAGES +IncludePageNumbers sym:WIZARDS_HID_LTRWIZ_CHKFOOTERPAGENUMBERS +TemplateName sym:WIZARDS_HID_LTRWIZ_TXTTEMPLATENAME +TemplatePath sym:WIZARDS_HID_LTRWIZ_TXTPATH +SaveAsButton sym:WIZARDS_HID_LTRWIZ_CMDPATH +CreateLetter sym:WIZARDS_HID_LTRWIZ_OPTCREATELETTER +ModifyLetter sym:WIZARDS_HID_LTRWIZ_OPTMAKECHANGES +BackButton sym:WIZARDS_HID_LTRWIZARD_BACK +NextButton sym:WIZARDS_HID_LTRWIZARD_NEXT +FinishButton sym:WIZARDS_HID_LTRWIZARD_CREATE +CancelButton sym:WIZARDS_HID_LTRWIZARD_CANCEL + + + + +*AutoPilotListComboBox sym:extensions:ModalDialog:RID_DLG_LISTCOMBOWIZARD +TabListBoxData sym:extensions:TabPage:RID_PAGE_TABLESELECTION +TabTableSelection sym:extensions:TabPage:RID_PAGE_LCW_CONTENTSELECTION_TABLE +TabFieldLink sym:extensions:TabPage:RID_PAGE_LCW_FIELDLINK +TabDatabaseField sym:extensions:TabPage:RID_PAGE_OPTION_DBFIELD +BackButton sym:EXTENSIONS_HID_LISTWIZARD_PREVIOUS +NextButton sym:EXTENSIONS_HID_LISTWIZARD_NEXT +CancelButton sym:EXTENSIONS_HID_LISTWIZARD_CANCEL +CreateButton sym:EXTENSIONS_HID_LISTWIZARD_FINISH + +*AutopilotTableElement sym:extensions:ModalDialog:RID_DLG_GRIDWIZARD +TabTableFieldSelection sym:extensions:TabPage:RID_PAGE_GW_FIELDSELECTION +BackButton sym:EXTENSIONS_HID_GRIDWIZARD_PREVIOUS +NextButton sym:EXTENSIONS_HID_GRIDWIZARD_NEXT +CancelButton sym:EXTENSIONS_HID_GRIDWIZARD_CANCEL +CreateButton sym:EXTENSIONS_HID_GRIDWIZARD_FINISH + +*BackgroundImages sym:WIZARDS_HID_BG +Image1 sym:WIZARDS_HID_BG_BTN_IMG1 +Image2 sym:WIZARDS_HID_BG_BTN_IMG2 +Image3 sym:WIZARDS_HID_BG_BTN_IMG3 +Image4 sym:WIZARDS_HID_BG_BTN_IMG14 +Image5 sym:WIZARDS_HID_BG_BTN_IMG5 +Image6 sym:WIZARDS_HID_BG_BTN_IMG6 +Image7 sym:WIZARDS_HID_BG_BTN_IMG7 +Image8 sym:WIZARDS_HID_BG_BTN_IMG8 +Image9 sym:WIZARDS_HID_BG_BTN_IMG9 +Image10 sym:WIZARDS_HID_BG_BTN_IMG10 +Image11 sym:WIZARDS_HID_BG_BTN_IMG11 +Image12 sym:WIZARDS_HID_BG_BTN_IMG12 +Back sym:WIZARDS_HID_BG_BTN_BACK +Forward sym:WIZARDS_HID_BG_BTN_FW +None sym:WIZARDS_HID_BG_BTN_NONE +Other sym:WIZARDS_HID_BG_BTN_OTHER +CancelB sym:WIZARDS_HID_BG_BTN_CANCEL + +*BasicIDE sym:BASCTL_HID_BASICIDE_MODULWINDOW +EditWindow sym:BASCTL_HID_BASICIDE_EDITORWINDOW +BreakPointsWindow sym:BASCTL_HID_BASICIDE_BREAKPOINTWINDOW +DialogWindow sym:BASCTL_HID_BASICIDE_DIALOGWINDOW +Tabbar sym:BASCTL_HID_BASICIDE_TABBAR +Watch sym:BASCTL_HID_BASICIDE_WATCHWINDOW +WatchEdit sym:BASCTL_HID_BASICIDE_WATCHWINDOW_EDIT +WatchList sym:BASCTL_HID_BASICIDE_WATCHWINDOW_LIST +Remove sym:BASCTL_HID_BASICIDE_REMOVEWATCH +Calls sym:BASCTL_HID_BASICIDE_STACKWINDOW +CallsList sym:BASCTL_HID_BASICIDE_STACKWINDOW_LIST +GotoAll sym:BASCTL_HID_BASICIDE_GOTOALL + +*Bibliography sym:EXTENSIONS_HID_BIB_CONTROL_PARENT +ShortName sym:EXTENSIONS_HID_BIB_IDENTIFIER_POS +Type sym:EXTENSIONS_HID_BIB_AUTHORITYTYPE_POS +Year sym:EXTENSIONS_HID_BIB_YEAR_POS +Author sym:EXTENSIONS_HID_BIB_AUTHOR_POS +Title sym:EXTENSIONS_HID_BIB_TITLE_POS +Publisher sym:EXTENSIONS_HID_BIB_PUBLISHER_POS +Address sym:EXTENSIONS_HID_BIB_ADDRESS_POS +ISBN sym:EXTENSIONS_HID_BIB_ISBN_POS +Chapter sym:EXTENSIONS_HID_BIB_CHAPTER_POS +Pages sym:EXTENSIONS_HID_BIB_PAGES_POS +Editor sym:EXTENSIONS_HID_BIB_EDITOR_POS +Edition sym:EXTENSIONS_HID_BIB_EDITION_POS +Booktitle sym:EXTENSIONS_HID_BIB_BOOKTITLE_POS +Volume sym:EXTENSIONS_HID_BIB_VOLUME_POS +HowPublished sym:EXTENSIONS_HID_BIB_HOWPUBLISHED_POS +Organization sym:EXTENSIONS_HID_BIB_ORGANIZATIONS_POS +Institution sym:EXTENSIONS_HID_BIB_INSTITUTION_POS +School sym:EXTENSIONS_HID_BIB_SCHOOL_POS +Report sym:EXTENSIONS_HID_BIB_REPORTTYPE_POS +Month sym:EXTENSIONS_HID_BIB_MONTH_POS +Journal sym:EXTENSIONS_HID_BIB_JOURNAL_POS +Number sym:EXTENSIONS_HID_BIB_NUMBER_POS +Series sym:EXTENSIONS_HID_BIB_SERIES_POS +Annote sym:EXTENSIONS_HID_BIB_ANNOTE_POS +Note sym:EXTENSIONS_HID_BIB_NOTE_POS +URL sym:EXTENSIONS_HID_BIB_URL_POS +Custom1 sym:EXTENSIONS_HID_BIB_CUSTOM1_POS +Custom2 sym:EXTENSIONS_HID_BIB_CUSTOM2_POS +Custom3 sym:EXTENSIONS_HID_BIB_CUSTOM3_POS +Custom4 sym:EXTENSIONS_HID_BIB_CUSTOM4_POS +Custom5 sym:EXTENSIONS_HID_BIB_CUSTOM5_POS + +*Breakpoints sym:basctl:ModalDialog:RID_BASICIDE_BREAKPOINTDLG +BreakpointsList sym:basctl:ComboBox:RID_BASICIDE_BREAKPOINTDLG:RID_CB_BRKPOINTS +NewButton sym:basctl:PushButton:RID_BASICIDE_BREAKPOINTDLG:RID_PB_NEW +Remove sym:basctl:PushButton:RID_BASICIDE_BREAKPOINTDLG:RID_PB_DEL +ActiveBox sym:basctl:CheckBox:RID_BASICIDE_BREAKPOINTDLG:RID_CHKB_ACTIVE +Pass sym:basctl:NumericField:RID_BASICIDE_BREAKPOINTDLG:RID_FLD_PASS + +*BMPOptions sym:svtools:ModalDialog:DLG_EXPORT +Exportwidth sym:svtools:MetricField:DLG_EXPORT:MF_SIZEX +Exportmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_SIZEX +Exportheight sym:svtools:MetricField:DLG_EXPORT:MF_SIZEY +Resolution sym:svtools:NumericField:DLG_EXPORT:NF_RESOLUTION +Resolutionmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_RESOLUTION +Colordepth sym:svtools:ListBox:DLG_EXPORT:LB_COLOR_DEPTH +Compression sym:svtools:CheckBox:DLG_EXPORT:CB_RLE_ENCODING + +*CellWarning sym:SC_HID_SC_REPLCELLSWARN + +*ChangeIcon sym:CUI_HID_SVX_CONFIG_ICON_SELECTOR +Import sym:cui:PushButton:MD_ICONSELECTOR:BTN_IMPORT + +*ChangePassword sym:DBACCESS_HID_DLG_PASSWORD +OldPassword sym:dbaccess:Edit:DLG_PASSWORD:ED_OLDPASSWORD +Password sym:dbaccess:Edit:DLG_PASSWORD:ED_PASSWORD +ConfirmPassword sym:dbaccess:Edit:DLG_PASSWORD:ED_PASSWORD_REPEAT + +*ChartType sym:CHART2_HID_DIAGRAM_TYPE +ChooseType sym:CHART2_HID_SCH_CTL_TYPE +Variant sym:CHART2_HID_SCH_CTL_VARIANT +XAxisWithCategories sym:chart2:CheckBox:TP_CHARTTYPE:CB_X_AXIS_CATEGORIES +Look3D sym:chart2:CheckBox:TP_CHARTTYPE:CB_3D_LOOK +Scheme3D sym:chart2:ListBox:TP_CHARTTYPE:LB_3D_SCHEME +BarColumnShape sym:CHART2_HID_SCH_LB_BAR_GEOMETRY +StackSeries sym:chart2:CheckBox:TP_CHARTTYPE:CB_STACKED +Ontop sym:chart2:RadioButton:TP_CHARTTYPE:RB_STACK_Y +Percent sym:chart2:RadioButton:TP_CHARTTYPE:RB_STACK_Y_PERCENT +Deep sym:chart2:RadioButton:TP_CHARTTYPE:RB_STACK_Z +SmoothLines sym:chart2:CheckBox:TP_CHARTTYPE:CB_SPLINES +SmoothLineProperties sym:chart2:PushButton:TP_CHARTTYPE:PB_SPLINE_DIALOG +NumberOfLines sym:CHART2_HID_SCH_NUM_OF_LINES + +*ChartWizard sym:CHART2_HID_SCH_CHART_AUTO_FORMAT +RoadMap sym:CHART2_HID_SCH_WIZARD_ROADMAP +GoNext sym:SVT_HID_WIZARD_NEXT +GoBack sym:SVT_HID_WIZARD_PREVIOUS + +*CheckForUpdates sym:EXTENSIONS_HID_CHECK_FOR_UPD_DLG +CloseBtn sym:EXTENSIONS_HID_CHECK_FOR_UPD_CLOSE +Cancel sym:EXTENSIONS_HID_CHECK_FOR_UPD_CANCEL +Pause sym:EXTENSIONS_HID_CHECK_FOR_UPD_PAUSE +Resume sym:EXTENSIONS_HID_CHECK_FOR_UPD_RESUME +Download sym:EXTENSIONS_HID_CHECK_FOR_UPD_DOWNLOAD +Download2 sym:EXTENSIONS_HID_CHECK_FOR_UPD_DOWNLOAD2 +Install sym:EXTENSIONS_HID_CHECK_FOR_UPD_INSTALL +Status sym:EXTENSIONS_HID_CHECK_FOR_UPD_STATUS +Description sym:EXTENSIONS_HID_CHECK_FOR_UPD_DESCRIPTION + +'*ChooseDatabase sym:WIZARDS_HID_DLGFORM_DIALOG 'DataSource HID_DLGFORM_CMBAVAILDATABASE 'TablesOrQueries HID_DLGFORM_LBTABLES -'CancelBtn HID_DLGFORM_CMDCANCEL -'BackBtn HID_DLGFORM_CMDPREV -'NextBtn HID_DLGFORM_CMDNEXT +'CancelBtn sym:WIZARDS_HID_DLGFORM_CMDCANCEL +'BackBtn sym:WIZARDS_HID_DLGFORM_CMDPREV +'NextBtn sym:WIZARDS_HID_DLGFORM_CMDNEXT 'MoveSelected HID_DLGFORM_CMDMOVESELECTED 'MoveAll HID_DLGFORM_CMDMOVEALL 'RemoveSelected HID_DLGFORM_CMDREMOVESELECTED @@ -402,87 +394,87 @@ Description HID_CHECK_FOR_UPD_DESCRIPTION 'BinaryFieldsAsImages HID_DLGFORM_OPTBINARIESASGRAPHICS 'ExistingFields HID_DLGFORM_FIELDSAVAILABLE 'FieldsInForm HID_DLGFORM_FIELDSSELECTED -'ColumnarLabelsLeft HID_DLGFORM_CMDLEFTLABELED -'ColumnarLabelsOnTop HID_DLGFORM_CMDTOPLABELED -'AsDataSheet HID_DLGFORM_CMDTABLESTYLE +'ColumnarLabelsLeft sym:WIZARDS_HID_DLGFORM_CMDLEFTLABELED +'ColumnarLabelsOnTop sym:WIZARDS_HID_DLGFORM_CMDTOPLABELED +'AsDataSheet sym:WIZARDS_HID_DLGFORM_CMDTABLESTYLE 'InBlocksLabelsLeft HID_DLGFORM_CMDLEFTJUSTIFIED -'InBlocksLabelsAbove HID_DLGFORM_CMDTOPJUSTIFIED -'PageStyles HID_DLGFORM_LSTSTYLES -'NoBorder HID_DLGFORM_CMDNOBORDER -'ThreeDLook HID_DLGFORM_CMD3DBORDER -'FlatLook HID_DLGFORM_CMDSIMPLEBORDER +'InBlocksLabelsAbove sym:WIZARDS_HID_DLGFORM_CMDTOPJUSTIFIED +'PageStyles sym:WIZARDS_HID_DLGFORM_LSTSTYLES +'NoBorder sym:WIZARDS_HID_DLGFORM_CMDNOBORDER +'ThreeDLook sym:WIZARDS_HID_DLGFORM_CMD3DBORDER +'FlatLook sym:WIZARDS_HID_DLGFORM_CMDSIMPLEBORDER 'TiledLook HID_DLGFORM_OPTBACKGRAPHICTILED 'ScaledLook HID_DLGFORM_OPTBACKGRAPHICAREA -'AlignLeft HID_DLGFORM_CMDALIGNLEFT -'AlignRight HID_DLGFORM_CMDALIGNRIGHT - -*ContainerView UID_APP_CONTAINER_VIEW -'PreviewButton HID_APP_VIEW_PREVIEW_CB -'PreviewWindow HID_APP_VIEW_PREVIEW_1 -QueriesTree HID_APP_QUERY_TREE -TableTree HID_APP_TABLE_TREE -TablePreview HID_APP_VIEW_PREVIEW_2 -FormTree HID_APP_FORM_TREE - -*ControlPropertiesDialog UID_FORMPROPBROWSER_FRAME - -*ControlPropertiesTabControl HID_FM_PROPDLG_TABCTR -TabGeneralControl HID_FM_PROPDLG_TAB_GENERAL -TabDataControl HID_FM_PROPDLG_TAB_DATA -TabEventsControl HID_FM_PROPDLG_TAB_EVT - -*CreateNewAdabasDatabase HID_DLG_ADABAS_NEWDB -DatabaseName HID_DLG_ADABAS_DBNAME -Administrator HID_DLG_ADABAS_SYSUSR -AdminPasswordBtn HID_DLG_ADABAS_SYSPWD -ControlUser HID_DLG_ADABAS_CONUSR -ControlPasswordBtn HID_DLG_ADABAS_CONPWD -DomainUser HID_DLG_ADABAS_USR -DomainPasswordBtn HID_DLG_ADABAS_DOMAINPWD -Restore HID_DLG_ADABAS_RESTORE -RestoreBtn HID_DLG_ADABAS_PBRESTORE -SysDevSpace HID_DLG_ADABAS_SYSDEVSPACE -SysDevSpaceBtn HID_DLG_ADABAS_PBSYSDEVSPACE -Transactionlog HID_DLG_ADABAS_TRANSACTIONLOG -TransactionlogBtn HID_DLG_ADABAS_PBTRANSACTIONLOG -DataDevSpace HID_DLG_ADABAS_DATADEVSPACE -DataDevSpaceBtn HID_DLG_ADABAS_PBDATADEVSPACE -TransactionFilesize HID_DLG_ADABAS_TRANSACTIONLOG_SIZE -DatabaseSize HID_DLG_ADABAS_DATADEVSPACE_SIZE -DataBuffersize HID_DLG_ADABAS_CACHE_SIZE - -*ConnectionType HID_DSADMIN_TYPE_DIALOG -BackBtn HID_DBWIZ_PREVIOUS -CreateBtn HID_DBWIZ_FINISH -NextBtn HID_DBWIZ_NEXT - -*CopyDatabaseTable dbaccess:ModalDialog:WIZ_RTFCOPYTABLE -Back dbaccess:PushButton:WIZ_RTFCOPYTABLE:PB_PREV -NextBt dbaccess:PushButton:WIZ_RTFCOPYTABLE:PB_NEXT - -*ConfirmDelete svtools:ModalDialog:DLG_SVT_QUERYDELETE -Delete svtools:PushButton:DLG_SVT_QUERYDELETE:BTN_YES -DeleteAll svtools:PushButton:DLG_SVT_QUERYDELETE:BTN_ALL -DoNotDelete svtools:PushButton:DLG_SVT_QUERYDELETE:BTN_NO - -*CopyToDialog HID_MM_COPYTO -CC sw:Edit:DLG_MM_COPYTO:ED_CC -BCC sw:Edit:DLG_MM_COPYTO:ED_BCC - -*CustomizeAddressList HID_MM_CUSTOMIZE_ADDRESS_LIST -AddressListElements sw:ListBox:DLG_MM_CUSTOMIZE_ADDRESS_LIST:LB_FIELDS -Add sw:PushButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_ADD -Delete sw:PushButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_DELETE -Rename sw:PushButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_RENAME -MoveUp sw:ImageButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_UP -MoveDown sw:ImageButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_DOWN - -*CustomizeMenuName HID_SVX_CONFIG_NAME_SUBMENU -Eingabefeld cui:Edit:RID_SVXDLG_NAME:EDT_STRING - -*CustomizeMenuReName HID_SVX_CONFIG_RENAME_MENU_ITEM -Eingabefeld cui:Edit:RID_SVXDLG_NAME:EDT_STRING - -*CustomizeToolbarsReName HID_SVX_CONFIG_RENAME_TOOLBAR_ITEM -Eingabefeld cui:Edit:RID_SVXDLG_NAME:EDT_STRING +'AlignLeft sym:WIZARDS_HID_DLGFORM_CMDALIGNLEFT +'AlignRight sym:WIZARDS_HID_DLGFORM_CMDALIGNRIGHT + +*ContainerView sym:DBACCESS_UID_APP_CONTAINER_VIEW +'PreviewButton sym:DBACCESS_HID_APP_VIEW_PREVIEW_CB +'PreviewWindow sym:DBACCESS_HID_APP_VIEW_PREVIEW_1 +QueriesTree sym:DBACCESS_HID_APP_QUERY_TREE +TableTree sym:DBACCESS_HID_APP_TABLE_TREE +TablePreview sym:DBACCESS_HID_APP_VIEW_PREVIEW_2 +FormTree sym:DBACCESS_HID_APP_FORM_TREE + +*ControlPropertiesDialog sym:SVX_UID_FORMPROPBROWSER_FRAME + +*ControlPropertiesTabControl sym:EXTENSIONS_HID_FM_PROPDLG_TABCTR +TabGeneralControl sym:EXTENSIONS_HID_FM_PROPDLG_TAB_GENERAL +TabDataControl sym:EXTENSIONS_HID_FM_PROPDLG_TAB_DATA +TabEventsControl sym:EXTENSIONS_HID_FM_PROPDLG_TAB_EVT + +*CreateNewAdabasDatabase sym:DBACCESS_HID_DLG_ADABAS_NEWDB +DatabaseName sym:DBACCESS_HID_DLG_ADABAS_DBNAME +Administrator sym:DBACCESS_HID_DLG_ADABAS_SYSUSR +AdminPasswordBtn sym:DBACCESS_HID_DLG_ADABAS_SYSPWD +ControlUser sym:DBACCESS_HID_DLG_ADABAS_CONUSR +ControlPasswordBtn sym:DBACCESS_HID_DLG_ADABAS_CONPWD +DomainUser sym:DBACCESS_HID_DLG_ADABAS_USR +DomainPasswordBtn sym:DBACCESS_HID_DLG_ADABAS_DOMAINPWD +Restore sym:DBACCESS_HID_DLG_ADABAS_RESTORE +RestoreBtn sym:DBACCESS_HID_DLG_ADABAS_PBRESTORE +SysDevSpace sym:DBACCESS_HID_DLG_ADABAS_SYSDEVSPACE +SysDevSpaceBtn sym:DBACCESS_HID_DLG_ADABAS_PBSYSDEVSPACE +Transactionlog sym:DBACCESS_HID_DLG_ADABAS_TRANSACTIONLOG +TransactionlogBtn sym:DBACCESS_HID_DLG_ADABAS_PBTRANSACTIONLOG +DataDevSpace sym:DBACCESS_HID_DLG_ADABAS_DATADEVSPACE +DataDevSpaceBtn sym:DBACCESS_HID_DLG_ADABAS_PBDATADEVSPACE +TransactionFilesize sym:DBACCESS_HID_DLG_ADABAS_TRANSACTIONLOG_SIZE +DatabaseSize sym:DBACCESS_HID_DLG_ADABAS_DATADEVSPACE_SIZE +DataBuffersize sym:DBACCESS_HID_DLG_ADABAS_CACHE_SIZE + +*ConnectionType sym:DBACCESS_HID_DSADMIN_TYPE_DIALOG +BackBtn sym:DBACCESS_HID_DBWIZ_PREVIOUS +CreateBtn sym:DBACCESS_HID_DBWIZ_FINISH +NextBtn sym:DBACCESS_HID_DBWIZ_NEXT + +*CopyDatabaseTable sym:dbaccess:ModalDialog:WIZ_RTFCOPYTABLE +Back sym:dbaccess:PushButton:WIZ_RTFCOPYTABLE:PB_PREV +NextBt sym:dbaccess:PushButton:WIZ_RTFCOPYTABLE:PB_NEXT + +*ConfirmDelete sym:svtools:ModalDialog:DLG_SVT_QUERYDELETE +Delete sym:svtools:PushButton:DLG_SVT_QUERYDELETE:BTN_YES +DeleteAll sym:svtools:PushButton:DLG_SVT_QUERYDELETE:BTN_ALL +DoNotDelete sym:svtools:PushButton:DLG_SVT_QUERYDELETE:BTN_NO + +*CopyToDialog sym:SW_HID_MM_COPYTO +CC sym:sw:Edit:DLG_MM_COPYTO:ED_CC +BCC sym:sw:Edit:DLG_MM_COPYTO:ED_BCC + +*CustomizeAddressList sym:SW_HID_MM_CUSTOMIZE_ADDRESS_LIST +AddressListElements sym:sw:ListBox:DLG_MM_CUSTOMIZE_ADDRESS_LIST:LB_FIELDS +Add sym:sw:PushButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_ADD +Delete sym:sw:PushButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_DELETE +Rename sym:sw:PushButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_RENAME +MoveUp sym:sw:ImageButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_UP +MoveDown sym:sw:ImageButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_DOWN + +*CustomizeMenuName sym:CUI_HID_SVX_CONFIG_NAME_SUBMENU +Eingabefeld sym:cui:Edit:RID_SVXDLG_NAME:EDT_STRING + +*CustomizeMenuReName sym:CUI_HID_SVX_CONFIG_RENAME_MENU_ITEM +Eingabefeld sym:cui:Edit:RID_SVXDLG_NAME:EDT_STRING + +*CustomizeToolbarsReName sym:CUI_HID_SVX_CONFIG_RENAME_TOOLBAR_ITEM +Eingabefeld sym:cui:Edit:RID_SVXDLG_NAME:EDT_STRING diff --git a/testautomation/global/win/edia_d_h.win b/testautomation/global/win/edia_d_h.win index 6b4f2f41c3b8..b781c636da3a 100755..100644 --- a/testautomation/global/win/edia_d_h.win +++ b/testautomation/global/win/edia_d_h.win @@ -1,535 +1,531 @@ -*Database UID_APP_VIEW +*Database sym:DBACCESS_UID_APP_VIEW 'UID_APP_VIEW_BORDER_WIN -DatabaseSplitter UID_APP_VIEW_VERT_SPLIT -DatabaseDetailView UID_APP_DETAIL_VIEW -CreationList HID_APP_CREATION_LIST -DatabaseSwapView UID_APP_SWAP_VIEW -DatabaseSwapIconView HID_APP_SWAP_ICONCONTROL -DatabaseQueriesView HID_APP_QUERY_TREE -DatabaseReportsView HID_APP_REPORT_TREE -DatabaseTablesView HID_APP_TABLE_TREE - -*DatabaseBeamer UID_CTL_CONTENT - -*DatabaseProperties HID_DSADMIN_DIALOG -TabControl HID_DSADMIN_TABCONTROL -TabConnection dbaccess:TabPage:PAGE_CONNECTION -'URL dbaccess:Edit:PAGE_CONNECTION:ET_CONNECTURL -Browse HID_DSADMIN_BROWSECONN -Username dbaccess:Edit:PAGE_CONNECTION:ET_USERNAME -PasswordRequired dbaccess:CheckBox:PAGE_CONNECTION:CB_PASSWORD_REQUIRED -DriverClass HID_DSADMIN_DRIVERCLASS -TestDriverClass dbaccess:PushButton:PAGE_CONNECTION:PB_TESTDRIVERCLASS -TestConnection dbaccess:PushButton:PAGE_CONNECTION:PB_TESTCONNECTION -Reset HID_TABDLG_RESET_BTN -TabdBase HID_DSADMIN_PAGE_DBASE -TabTextBase HID_DSADMIN_PAGE_TEXT - -*DatabaseWizard HID_DLG_DATABASE_WIZARD -AdabasDBName HID_PAGE_DBWIZARD_ADABAS_ET_ADABASNAME -BackBtn HID_DBWIZ_PREVIOUS -CancelBtn HID_DBWIZ_CANCEL -ConnectToDatabase HID_PAGE_DBWIZARD_GENERAL_RB_GETEXISTINGDATABASE -FinishBtn HID_DBWIZ_FINISH -CreateNewDatabase HID_PAGE_DBWIZARD_GENERAL_RB_CREATEDBDATABASE -DatabaseType HID_DSADMIN_DSTYPE -dBasePath HID_PAGE_DBWIZARD_DBASE_ET_DBASELOCATION -DocumentList dbaccess:ListBox:PAGE_GENERAL:LB_DOCUMENTLIST -LDAPHostName HID_PAGE_DBWIZARD_LDAP_ET_HOSTSERVER -BaseDN HID_PAGE_DBWIZARD_LDAP_ET_BASEDN -NextBtn HID_DBWIZ_NEXT -OpenBtn dbaccess:PushButton:PAGE_GENERAL:PB_OPENDOCUMENT -OpenExistingDoc dbaccess:RadioButton:PAGE_GENERAL:RB_OPENEXISTINGDOC -PasswordRequired HID_PAGE_DBWIZARD_AUTHENTIFICATION_CB_GENERALPASSWORDREQUIRED -SpreadsheetPath HID_PAGE_DBWIZARD_SPREADSHEET_ET_SPREADSHEETPATH -TextPath HID_PAGE_DBWIZARD_TEXT_ET_LOCATIONTEXTFILE -UserName HID_PAGE_DBWIZARD_AUTHENTIFICATION_ET_GENERALUSERNAME -AdabasBrowse HID_PAGE_DBWIZARD_ADABAS_PB_ADABASNAME -MySQLODBC HID_PAGE_DBWIZARD_MYSQL_RB_CONNECTVIAODBC -MySQLJDBC HID_PAGE_DBWIZARD_MYSQL_RB_CONNECTVIAJDBC -MySQLDatabaseName HID_PAGE_DBWIZARD_JDBC_ET_MYSQLDBNAME -MySQLODBCDSName HID_PAGE_DBWIZARD_ODBC_ET_NAMEOFODBCDATASOURCE -MySQLHostName HID_PAGE_DBWIZARD_JDBC_ET_MYSQLHOSTSERVER -MySQLPort HID_PAGE_DBWIZARD_JDBC_ET_MYSQLPORT -AdoURL HID_PAGE_DBWIZARD_ADO_ET_ADOURL -StartTableWizard HID_PAGE_DBWIZARD_FINAL_CB_STARTTABLEWIZARD - -*CreateDatabaseLink cui:ModalDialog:DLG_DOCUMENTLINK -DatabaseFile SID_OPENURL -Browse cui:PushButton:DLG_DOCUMENTLINK:PB_BROWSEFILE -RegisteredName cui:Edit:DLG_DOCUMENTLINK:ET_NAME - -*Diagramdata SID_DIAGRAM_DATA -Toolbox2 HID_SCH_TBX_DATA -InsertRow HID_SCH_TBI_DATA_INSERT_ROW -InsertColumn HID_SCH_TBI_DATA_INSERT_COL -InsertTextColumn HID_SCH_TBI_DATA_INSERT_TEXT_COL -DeleteRow HID_SCH_TBI_DATA_DELETE_ROW -DeleteColumn HID_SCH_TBI_DATA_DELETE_COL -SwapColumns HID_SCH_TBI_DATA_SWAP_COL -SwapRows HID_SCH_TBI_DATA_SWAP_ROW -Tables HID_SCH_CTL_DATA -DataSeriesLabel HID_SCH_DATA_SERIES_LABEL - -*DigitalSignature HID_XMLSEC_DLG_DIGSIG -ViewCertificate xmlsecurity:PushButton:RID_XMLSECDLG_DIGSIG:BTN_VIEWCERT -CertificateList HID_XMLSEC_CTRL_SIGNATURESDLG -Add xmlsecurity:PushButton:RID_XMLSECDLG_DIGSIG:BTN_ADDCERT -Remove xmlsecurity:PushButton:RID_XMLSECDLG_DIGSIG:BTN_REMOVECERT - -*DuplicateNameWarning HID_WARN_NAME_DUPLICATE - -*EditInputList HID_FLD_DROPDOWN -AllListEntrys sw:ListBox:DLG_FLD_DROPDOWN:LB_LISTITEMS -NextListEntry sw:PushButton:DLG_FLD_DROPDOWN:PB_NEXT -EditListEntry sw:PushButton:DLG_FLD_DROPDOWN:PB_EDIT - -*EditSymbols starmath:ModalDialog:RID_SYMDEFINEDIALOG -OldSymbol starmath:ComboBox:RID_SYMDEFINEDIALOG:1 -OldSymbolSet starmath:ComboBox:RID_SYMDEFINEDIALOG:2 -Symbol starmath:ComboBox:RID_SYMDEFINEDIALOG:4 -SymbolSet starmath:ComboBox:RID_SYMDEFINEDIALOG:5 -Font starmath:ListBox:RID_SYMDEFINEDIALOG:1 -Subset starmath:ListBox:RID_SYMDEFINEDIALOG:LB_FONTS_SUBSET -Typeface starmath:ComboBox:RID_SYMDEFINEDIALOG:3 -Add starmath:PushButton:RID_SYMDEFINEDIALOG:1 -Modify starmath:PushButton:RID_SYMDEFINEDIALOG:2 -Delete starmath:PushButton:RID_SYMDEFINEDIALOG:3 -Symbols HID_SMA_CONTROL_FONTCHAR_VIEW - -*EMFOptions svtools:ModalDialog:DLG_EXPORT -Exportwidth svtools:MetricField:DLG_EXPORT:MF_SIZEX -Exportmeasurement svtools:ListBox:DLG_EXPORT:LB_SIZEX -Exportheight svtools:MetricField:DLG_EXPORT:MF_SIZEY - -*EPSOptions svtools:ModalDialog:DLG_EXPORT -Exportwidth svtools:MetricField:DLG_EXPORT:MF_SIZEX -Exportmeasurement svtools:ListBox:DLG_EXPORT:LB_SIZEX -Exportheight svtools:MetricField:DLG_EXPORT:MF_SIZEY -Preview svtools:CheckBox:DLG_EXPORT:CB_EPS_PREVIEW_TIFF -Epsi svtools:CheckBox:DLG_EXPORT:CB_EPS_PREVIEW_EPSI -Color svtools:RadioButton:DLG_EXPORT:RB_EPS_COLOR_FORMAT1 -Greyscale svtools:RadioButton:DLG_EXPORT:RB_EPS_COLOR_FORMAT2 -Level1 svtools:RadioButton:DLG_EXPORT:RB_EPS_LEVEL1 -Level2 svtools:RadioButton:DLG_EXPORT:RB_EPS_LEVEL2 -LZWEncoding svtools:RadioButton:DLG_EXPORT:RB_EPS_COMPRESSION_LZW -NoneCompression svtools:RadioButton:DLG_EXPORT:RB_EPS_COMPRESSION_NONE - -*ExecuteSQLCommand dbaccess:ModalDialog:DLG_DIRECTSQL -CommandToExecute dbaccess:MultiLineEdit:DLG_DIRECTSQL:ME_SQL -ExecuteBtn dbaccess:PushButton:DLG_DIRECTSQL:PB_EXECUTE -PreviousCommands dbaccess:ListBox:DLG_DIRECTSQL:LB_HISTORY -Status dbaccess:MultiLineEdit:DLG_DIRECTSQL:ME_STATUS -CloseBtn dbaccess:PushButton:DLG_DIRECTSQL:PB_CLOSE - -*ExportBasicLibraryDlg basctl:ModalDialog:RID_DLG_EXPORT -ExportAsPackage basctl:RadioButton:RID_DLG_EXPORT:RB_EXPORTASPACKAGE -ExportAsLibrary basctl:RadioButton:RID_DLG_EXPORT:RB_EXPORTASBASIC - -*ExtensionSoftwareLicenseAgreement desktop:ModalDialog:RID_DLG_LICENSE -LicenseText desktop:MultiLineEdit:RID_DLG_LICENSE:ML_LICENSE -ScrollDown desktop:PushButton:RID_DLG_LICENSE:PB_LICENSE_DOWN -Accept UID_BTN_LICENSE_ACCEPT - -*ExtensionUpdate HID_DEPLOYMENT_GUI_UPDATE -ShowAllUpdates desktop:CheckBox:RID_DLG_UPDATE:RID_DLG_UPDATE_ALL -UpdateDescriptions desktop:MultiLineEdit:RID_DLG_UPDATE:RID_DLG_UPDATE_DESCRIPTIONS -DownloadAndInstall desktop:PushButton:RID_DLG_UPDATE:RID_DLG_UPDATE_OK -AvailableUpdatesList HID_DEPLOYMENT_GUI_UPDATE_AVAILABLE_UPDATES -UpdatePublisherText HID_DEPLOYMENT_GUI_UPDATE_PUBLISHER -ReleaseNotesText HID_DEPLOYMENT_GUI_UPDATE_RELEASENOTES - - -*FilterDialog HID_DLG_FILTERCRIT -Fieldname1 dbaccess:ListBox:DLG_FILTERCRIT:LB_WHEREFIELD1 -Condition1 dbaccess:ListBox:DLG_FILTERCRIT:LB_WHERECOMP1 -Value1 dbaccess:Edit:DLG_FILTERCRIT:ET_WHEREVALUE1 -Operator2 dbaccess:ListBox:DLG_FILTERCRIT:LB_WHERECOND2 -Fieldname2 dbaccess:ListBox:DLG_FILTERCRIT:LB_WHEREFIELD2 -Condition2 dbaccess:ListBox:DLG_FILTERCRIT:LB_WHERECOMP2 -Value2 dbaccess:Edit:DLG_FILTERCRIT:ET_WHEREVALUE2 -Operator3 dbaccess:ListBox:DLG_FILTERCRIT:LB_WHERECOND3 -Fieldname3 dbaccess:ListBox:DLG_FILTERCRIT:LB_WHEREFIELD3 -Condition3 dbaccess:ListBox:DLG_FILTERCRIT:LB_WHERECOMP3 -Value3 dbaccess:Edit:DLG_FILTERCRIT:ET_WHEREVALUE3 - -*FilterNavigator HID_FILTER_NAVIGATOR - -*FilterWarning HID_SVXDLG_FILTER_WARNING - -*FindEntry HID_MM_FIND_ENTRY -FindString sw:Edit:DLG_MM_FIND_ENTRY:ED_FIND -FindOnlyIn sw:CheckBox:DLG_MM_FIND_ENTRY:CB_FINDONLY -FindOnlyInWhat sw:ListBox:DLG_MM_FIND_ENTRY:LB_FINDONLY -FindNow sw:PushButton:DLG_MM_FIND_ENTRY:PB_FIND - -*FontworkGallery svx:ModalDialog:RID_SVX_MDLG_FONTWORK_GALLERY -SelectAFontworkStyle HID_CTL_FONTWORK_FAVORITES - -*FontworkCharacterSpacingCustom svx:ModalDialog:RID_SVX_MDLG_FONTWORK_CHARSPACING -Value svx:MetricField:RID_SVX_MDLG_FONTWORK_CHARSPACING:MF_VALUE - -*FontWorkAlignment FontWork1TBO - -*FontWorkCharacterSpacing FontWork2TBO - -*FormatColumn HID_FORMAT_COLUMN -ApplyTo sw:ListBox:DLG_COLUMN:LB_APPLY_TO -Columns sw:NumericField:TP_COLUMN:ED_NUMBER -ColumnValueset HID_COLUMN_VALUESET -BalanceColumns sw:CheckBox:TP_COLUMN:CB_BALANCECOLS -Width1 sw:MetricField:TP_COLUMN:ED_1 -Width2 sw:MetricField:TP_COLUMN:ED_2 -Width3 sw:MetricField:TP_COLUMN:ED_3 -ColumnRight sw:ImageButton:TP_COLUMN:BTN_DOWN -ColumnLeft sw:ImageButton:TP_COLUMN:BTN_UP -Space12 sw:MetricField:TP_COLUMN:ED_DIST1 -Space23 sw:MetricField:TP_COLUMN:ED_DIST2 -AutoWidth sw:CheckBox:TP_COLUMN:CB_AUTO_WIDTH -Line sw:ListBox:TP_COLUMN:LB_STYLE -Height sw:MetricField:TP_COLUMN:ED_HEIGHT -Position sw:ListBox:TP_COLUMN:LB_POSITION -TextDirection sw:ListBox:TP_COLUMN:LB_TEXTDIRECTION - -*NamespaceDLG HID_XFORMS_NAMESPACEITEM_DLG -Namespaces HID_XFORMS_NAMESPACEITEM_LIST -Add svx:PushButton:RID_SVXDLG_NAMESPACE_ITEM:PB_ADD_NAMESPACE -Edit svx:PushButton:RID_SVXDLG_NAMESPACE_ITEM:PB_EDIT_NAMESPACE -Delete svx:PushButton:RID_SVXDLG_NAMESPACE_ITEM:PB_DELETE_NAMESPACE - -*DatabaseTableSaveAs HID_DLG_SAVE_AS -Catalog dbaccess:ComboBox:DLG_SAVE_AS:ET_CATALOG -Schema dbaccess:ComboBox:DLG_SAVE_AS:ET_SCHEMA -TableName dbaccess:Edit:DLG_SAVE_AS:ET_TITLE - -*DatabaseSelection HID_TLB_TREELISTBOX - -*TableView HID_CTL_TABBROWSER -DataWindow UID_DATABROWSE_DATAWINDOW -CurrentRecord HID_GRID_TRAVEL_ABSOLUTE -AllRecords HID_GRID_NUMBEROFRECORDS -FirstRecord HID_GRID_TRAVEL_FIRST -PreviousRecord HID_GRID_TRAVEL_PREV -NextRecord HID_GRID_TRAVEL_NEXT -LastRecord HID_GRID_TRAVEL_LAST -NewRecord HID_GRID_TRAVEL_NEW -TableHeader HID_DATABROWSE_HEADER - -'*DataSourceAdministration HID_DSADMIN_DIALOG -'TabControl HID_DSADMIN_TABCONTROL +DatabaseSplitter sym:DBACCESS_UID_APP_VIEW_VERT_SPLIT +DatabaseDetailView sym:DBACCESS_UID_APP_DETAIL_VIEW +CreationList sym:DBACCESS_HID_APP_CREATION_LIST +DatabaseSwapView sym:DBACCESS_UID_APP_SWAP_VIEW +DatabaseSwapIconView sym:DBACCESS_HID_APP_SWAP_ICONCONTROL +DatabaseQueriesView sym:DBACCESS_HID_APP_QUERY_TREE +DatabaseReportsView sym:DBACCESS_HID_APP_REPORT_TREE +DatabaseTablesView sym:DBACCESS_HID_APP_TABLE_TREE + +*DatabaseBeamer sym:DBACCESS_UID_CTL_CONTENT + +*DatabaseProperties sym:DBACCESS_HID_DSADMIN_DIALOG +TabControl sym:DBACCESS_HID_DSADMIN_TABCONTROL +TabConnection sym:dbaccess:TabPage:PAGE_CONNECTION +'URL sym:dbaccess:Edit:PAGE_CONNECTION:ET_CONNECTURL +Browse sym:DBACCESS_HID_DSADMIN_BROWSECONN +Username sym:dbaccess:Edit:PAGE_CONNECTION:ET_USERNAME +PasswordRequired sym:dbaccess:CheckBox:PAGE_CONNECTION:CB_PASSWORD_REQUIRED +DriverClass sym:DBACCESS_HID_DSADMIN_DRIVERCLASS +TestDriverClass sym:dbaccess:PushButton:PAGE_CONNECTION:PB_TESTDRIVERCLASS +TestConnection sym:dbaccess:PushButton:PAGE_CONNECTION:PB_TESTCONNECTION +Reset sym:SFX2_HID_TABDLG_RESET_BTN +TabdBase sym:DBACCESS_HID_DSADMIN_PAGE_DBASE +TabTextBase sym:DBACCESS_HID_DSADMIN_PAGE_TEXT + +*DatabaseWizard sym:DBACCESS_HID_DLG_DATABASE_WIZARD +AdabasDBName sym:DBACCESS_HID_PAGE_DBWIZARD_ADABAS_ET_ADABASNAME +BackBtn sym:DBACCESS_HID_DBWIZ_PREVIOUS +CancelBtn sym:DBACCESS_HID_DBWIZ_CANCEL +ConnectToDatabase sym:DBACCESS_HID_PAGE_DBWIZARD_GENERAL_RB_GETEXISTINGDATABASE +FinishBtn sym:DBACCESS_HID_DBWIZ_FINISH +CreateNewDatabase sym:DBACCESS_HID_PAGE_DBWIZARD_GENERAL_RB_CREATEDBDATABASE +DatabaseType sym:DBACCESS_HID_DSADMIN_DSTYPE +dBasePath sym:DBACCESS_HID_PAGE_DBWIZARD_DBASE_ET_DBASELOCATION +DocumentList sym:dbaccess:ListBox:PAGE_GENERAL:LB_DOCUMENTLIST +LDAPHostName sym:DBACCESS_HID_PAGE_DBWIZARD_LDAP_ET_HOSTSERVER +BaseDN sym:DBACCESS_HID_PAGE_DBWIZARD_LDAP_ET_BASEDN +NextBtn sym:DBACCESS_HID_DBWIZ_NEXT +OpenBtn sym:dbaccess:PushButton:PAGE_GENERAL:PB_OPENDOCUMENT +OpenExistingDoc sym:dbaccess:RadioButton:PAGE_GENERAL:RB_OPENEXISTINGDOC +PasswordRequired sym:DBACCESS_HID_PAGE_DBWIZARD_AUTHENTIFICATION_CB_GENERALPASSWORDREQUIRED +SpreadsheetPath sym:DBACCESS_HID_PAGE_DBWIZARD_SPREADSHEET_ET_SPREADSHEETPATH +TextPath sym:DBACCESS_HID_PAGE_DBWIZARD_TEXT_ET_LOCATIONTEXTFILE +UserName sym:DBACCESS_HID_PAGE_DBWIZARD_AUTHENTIFICATION_ET_GENERALUSERNAME +AdabasBrowse sym:DBACCESS_HID_PAGE_DBWIZARD_ADABAS_PB_ADABASNAME +MySQLODBC sym:DBACCESS_HID_PAGE_DBWIZARD_MYSQL_RB_CONNECTVIAODBC +MySQLJDBC sym:DBACCESS_HID_PAGE_DBWIZARD_MYSQL_RB_CONNECTVIAJDBC +MySQLDatabaseName sym:DBACCESS_HID_PAGE_DBWIZARD_JDBC_ET_MYSQLDBNAME +MySQLODBCDSName sym:DBACCESS_HID_PAGE_DBWIZARD_ODBC_ET_NAMEOFODBCDATASOURCE +MySQLHostName sym:DBACCESS_HID_PAGE_DBWIZARD_JDBC_ET_MYSQLHOSTSERVER +MySQLPort sym:DBACCESS_HID_PAGE_DBWIZARD_JDBC_ET_MYSQLPORT +AdoURL sym:DBACCESS_HID_PAGE_DBWIZARD_ADO_ET_ADOURL +StartTableWizard sym:DBACCESS_HID_PAGE_DBWIZARD_FINAL_CB_STARTTABLEWIZARD + +*CreateDatabaseLink sym:cui:ModalDialog:DLG_DOCUMENTLINK +DatabaseFile .uno:OpenUrl +Browse sym:cui:PushButton:DLG_DOCUMENTLINK:PB_BROWSEFILE +RegisteredName sym:cui:Edit:DLG_DOCUMENTLINK:ET_NAME + +*Diagramdata sym:CHART2_HID_DIAGRAM_DATA +Toolbox2 sym:CHART2_HID_SCH_TBX_DATA +InsertRow sym:CHART2_HID_SCH_TBI_DATA_INSERT_ROW +InsertColumn sym:CHART2_HID_SCH_TBI_DATA_INSERT_COL +InsertTextColumn sym:CHART2_HID_SCH_TBI_DATA_INSERT_TEXT_COL +DeleteRow sym:CHART2_HID_SCH_TBI_DATA_DELETE_ROW +DeleteColumn sym:CHART2_HID_SCH_TBI_DATA_DELETE_COL +SwapColumns sym:CHART2_HID_SCH_TBI_DATA_SWAP_COL +SwapRows sym:CHART2_HID_SCH_TBI_DATA_SWAP_ROW +Tables sym:CHART2_HID_SCH_CTL_DATA +DataSeriesLabel sym:CHART2_HID_SCH_DATA_SERIES_LABEL + +*DigitalSignature sym:XMLSECURITY_HID_XMLSEC_DLG_DIGSIG +ViewCertificate sym:xmlsecurity:PushButton:RID_XMLSECDLG_DIGSIG:BTN_VIEWCERT +CertificateList sym:XMLSECURITY_HID_XMLSEC_CTRL_SIGNATURESDLG +Add sym:xmlsecurity:PushButton:RID_XMLSECDLG_DIGSIG:BTN_ADDCERT +Remove sym:xmlsecurity:PushButton:RID_XMLSECDLG_DIGSIG:BTN_REMOVECERT + +*DuplicateNameWarning sym:CUI_HID_WARN_NAME_DUPLICATE + +*EditInputList sym:SW_HID_FLD_DROPDOWN +AllListEntrys sym:sw:ListBox:DLG_FLD_DROPDOWN:LB_LISTITEMS +NextListEntry sym:sw:PushButton:DLG_FLD_DROPDOWN:PB_NEXT +EditListEntry sym:sw:PushButton:DLG_FLD_DROPDOWN:PB_EDIT + +*EditSymbols sym:starmath:ModalDialog:RID_SYMDEFINEDIALOG +OldSymbol sym:starmath:ComboBox:RID_SYMDEFINEDIALOG:1 +OldSymbolSet sym:starmath:ComboBox:RID_SYMDEFINEDIALOG:2 +Symbol sym:starmath:ComboBox:RID_SYMDEFINEDIALOG:4 +SymbolSet sym:starmath:ComboBox:RID_SYMDEFINEDIALOG:5 +Font sym:starmath:ListBox:RID_SYMDEFINEDIALOG:1 +Subset sym:starmath:ListBox:RID_SYMDEFINEDIALOG:LB_FONTS_SUBSET +Typeface sym:starmath:ComboBox:RID_SYMDEFINEDIALOG:3 +Add sym:starmath:PushButton:RID_SYMDEFINEDIALOG:1 +Modify sym:starmath:PushButton:RID_SYMDEFINEDIALOG:2 +Delete sym:starmath:PushButton:RID_SYMDEFINEDIALOG:3 +Symbols sym:STARMATH_HID_SMA_CONTROL_FONTCHAR_VIEW + +*ExecuteSQLCommand sym:dbaccess:ModalDialog:DLG_DIRECTSQL +CommandToExecute sym:dbaccess:MultiLineEdit:DLG_DIRECTSQL:ME_SQL +ExecuteBtn sym:dbaccess:PushButton:DLG_DIRECTSQL:PB_EXECUTE +PreviousCommands sym:dbaccess:ListBox:DLG_DIRECTSQL:LB_HISTORY +Status sym:dbaccess:MultiLineEdit:DLG_DIRECTSQL:ME_STATUS +CloseBtn sym:dbaccess:PushButton:DLG_DIRECTSQL:PB_CLOSE + +*EMFOptions sym:svtools:ModalDialog:DLG_EXPORT +Exportwidth sym:svtools:MetricField:DLG_EXPORT:MF_SIZEX +Exportmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_SIZEX +Exportheight sym:svtools:MetricField:DLG_EXPORT:MF_SIZEY + +*EPSOptions sym:svtools:ModalDialog:DLG_EXPORT +Exportwidth sym:svtools:MetricField:DLG_EXPORT:MF_SIZEX +Exportmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_SIZEX +Exportheight sym:svtools:MetricField:DLG_EXPORT:MF_SIZEY +Preview sym:svtools:CheckBox:DLG_EXPORT:CB_EPS_PREVIEW_TIFF +Epsi sym:svtools:CheckBox:DLG_EXPORT:CB_EPS_PREVIEW_EPSI +Color sym:svtools:RadioButton:DLG_EXPORT:RB_EPS_COLOR_FORMAT1 +Greyscale sym:svtools:RadioButton:DLG_EXPORT:RB_EPS_COLOR_FORMAT2 +Level1 sym:svtools:RadioButton:DLG_EXPORT:RB_EPS_LEVEL1 +Level2 sym:svtools:RadioButton:DLG_EXPORT:RB_EPS_LEVEL2 +LZWEncoding sym:svtools:RadioButton:DLG_EXPORT:RB_EPS_COMPRESSION_LZW +NoneCompression sym:svtools:RadioButton:DLG_EXPORT:RB_EPS_COMPRESSION_NONE + +*ExportBasicLibraryDlg sym:basctl:ModalDialog:RID_DLG_EXPORT +ExportAsPackage sym:basctl:RadioButton:RID_DLG_EXPORT:RB_EXPORTASPACKAGE +ExportAsLibrary sym:basctl:RadioButton:RID_DLG_EXPORT:RB_EXPORTASBASIC + +*ExtensionSoftwareLicenseAgreement sym:desktop:ModalDialog:RID_DLG_LICENSE +LicenseText sym:desktop:MultiLineEdit:RID_DLG_LICENSE:ML_LICENSE +ScrollDown sym:desktop:PushButton:RID_DLG_LICENSE:PB_LICENSE_DOWN +Accept sym:DESKTOP_UID_BTN_LICENSE_ACCEPT + +*ExtensionUpdate sym:DESKTOP_HID_DEPLOYMENT_GUI_UPDATE +ShowAllUpdates sym:desktop:CheckBox:RID_DLG_UPDATE:RID_DLG_UPDATE_ALL +UpdateDescriptions sym:desktop:MultiLineEdit:RID_DLG_UPDATE:RID_DLG_UPDATE_DESCRIPTIONS +DownloadAndInstall sym:desktop:PushButton:RID_DLG_UPDATE:RID_DLG_UPDATE_OK +AvailableUpdatesList sym:DESKTOP_HID_DEPLOYMENT_GUI_UPDATE_AVAILABLE_UPDATES +UpdatePublisherText sym:DESKTOP_HID_DEPLOYMENT_GUI_UPDATE_PUBLISHER +ReleaseNotesText sym:DESKTOP_HID_DEPLOYMENT_GUI_UPDATE_RELEASENOTES + + +*FilterDialog sym:DBACCESS_HID_DLG_FILTERCRIT +Fieldname1 sym:dbaccess:ListBox:DLG_FILTERCRIT:LB_WHEREFIELD1 +Condition1 sym:dbaccess:ListBox:DLG_FILTERCRIT:LB_WHERECOMP1 +Value1 sym:dbaccess:Edit:DLG_FILTERCRIT:ET_WHEREVALUE1 +Operator2 sym:dbaccess:ListBox:DLG_FILTERCRIT:LB_WHERECOND2 +Fieldname2 sym:dbaccess:ListBox:DLG_FILTERCRIT:LB_WHEREFIELD2 +Condition2 sym:dbaccess:ListBox:DLG_FILTERCRIT:LB_WHERECOMP2 +Value2 sym:dbaccess:Edit:DLG_FILTERCRIT:ET_WHEREVALUE2 +Operator3 sym:dbaccess:ListBox:DLG_FILTERCRIT:LB_WHERECOND3 +Fieldname3 sym:dbaccess:ListBox:DLG_FILTERCRIT:LB_WHEREFIELD3 +Condition3 sym:dbaccess:ListBox:DLG_FILTERCRIT:LB_WHERECOMP3 +Value3 sym:dbaccess:Edit:DLG_FILTERCRIT:ET_WHEREVALUE3 + +*FilterNavigator sym:SVX_HID_FILTER_NAVIGATOR + +*FilterWarning sym:CUI_HID_SVXDLG_FILTER_WARNING + +*FindEntry sym:SW_HID_MM_FIND_ENTRY +FindString sym:sw:Edit:DLG_MM_FIND_ENTRY:ED_FIND +FindOnlyIn sym:sw:CheckBox:DLG_MM_FIND_ENTRY:CB_FINDONLY +FindOnlyInWhat sym:sw:ListBox:DLG_MM_FIND_ENTRY:LB_FINDONLY +FindNow sym:sw:PushButton:DLG_MM_FIND_ENTRY:PB_FIND + +*FontworkGallery sym:svx:ModalDialog:RID_SVX_MDLG_FONTWORK_GALLERY +SelectAFontworkStyle sym:SVX_HID_CTL_FONTWORK_FAVORITES + +*FontworkCharacterSpacingCustom sym:svx:ModalDialog:RID_SVX_MDLG_FONTWORK_CHARSPACING +Value sym:svx:MetricField:RID_SVX_MDLG_FONTWORK_CHARSPACING:MF_VALUE + +*FormatColumn sym:SW_HID_FORMAT_COLUMN +ApplyTo sym:sw:ListBox:DLG_COLUMN:LB_APPLY_TO +Columns sym:sw:NumericField:TP_COLUMN:ED_NUMBER +ColumnValueset sym:SW_HID_COLUMN_VALUESET +BalanceColumns sym:sw:CheckBox:TP_COLUMN:CB_BALANCECOLS +Width1 sym:sw:MetricField:TP_COLUMN:ED_1 +Width2 sym:sw:MetricField:TP_COLUMN:ED_2 +Width3 sym:sw:MetricField:TP_COLUMN:ED_3 +ColumnRight sym:sw:ImageButton:TP_COLUMN:BTN_DOWN +ColumnLeft sym:sw:ImageButton:TP_COLUMN:BTN_UP +Space12 sym:sw:MetricField:TP_COLUMN:ED_DIST1 +Space23 sym:sw:MetricField:TP_COLUMN:ED_DIST2 +AutoWidth sym:sw:CheckBox:TP_COLUMN:CB_AUTO_WIDTH +Line sym:sw:ListBox:TP_COLUMN:LB_STYLE +Height sym:sw:MetricField:TP_COLUMN:ED_HEIGHT +Position sym:sw:ListBox:TP_COLUMN:LB_POSITION +TextDirection sym:sw:ListBox:TP_COLUMN:LB_TEXTDIRECTION + +*NamespaceDLG sym:SVX_HID_XFORMS_NAMESPACEITEM_DLG +Namespaces sym:SVX_HID_XFORMS_NAMESPACEITEM_LIST +Add sym:svx:PushButton:RID_SVXDLG_NAMESPACE_ITEM:PB_ADD_NAMESPACE +Edit sym:svx:PushButton:RID_SVXDLG_NAMESPACE_ITEM:PB_EDIT_NAMESPACE +Delete sym:svx:PushButton:RID_SVXDLG_NAMESPACE_ITEM:PB_DELETE_NAMESPACE + +*DatabaseTableSaveAs sym:DBACCESS_HID_DLG_SAVE_AS +Catalog sym:dbaccess:ComboBox:DLG_SAVE_AS:ET_CATALOG +Schema sym:dbaccess:ComboBox:DLG_SAVE_AS:ET_SCHEMA +TableName sym:dbaccess:Edit:DLG_SAVE_AS:ET_TITLE + +*DatabaseSelection sym:DBACCESS_HID_TLB_TREELISTBOX + +*TableView sym:DBACCESS_HID_CTL_TABBROWSER +DataWindow sym:DBACCESS_UID_DATABROWSE_DATAWINDOW +CurrentRecord sym:SVX_HID_GRID_TRAVEL_ABSOLUTE +AllRecords sym:SVX_HID_GRID_NUMBEROFRECORDS +FirstRecord sym:SVX_HID_GRID_TRAVEL_FIRST +PreviousRecord sym:SVX_HID_GRID_TRAVEL_PREV +NextRecord sym:SVX_HID_GRID_TRAVEL_NEXT +LastRecord sym:SVX_HID_GRID_TRAVEL_LAST +NewRecord sym:SVX_HID_GRID_TRAVEL_NEW +TableHeader sym:DBACCESS_HID_DATABROWSE_HEADER + +'*DataSourceAdministration sym:DBACCESS_HID_DSADMIN_DIALOG +'TabControl sym:DBACCESS_HID_DSADMIN_TABCONTROL 'NewDataSource HID_DSADMIN_DATASOURCE_NEWDS 'DatabaseSourceList HID_DSADMIN_DATASOURCE_DSLIST -'TabGeneral HID_DSADMIN_PAGE_GENERAL -'TabADO HID_DSADMIN_PAGE_ADO -'TabdBase HID_DSADMIN_PAGE_DBASE -'TabODBC HID_DSADMIN_PAGE_ODBC -'TabAdabasStatistics dbaccess:TabPage:TAB_PAG_ADABAS_SETTINGS -'TabAdabasUserSettings HID_TAB_PAGE_USERADMIN -'TabJDBC HID_DSADMIN_PAGE_JDBC -'TabLDAP HID_DSADMIN_PAGE_LDAP -'TabTextBase HID_DSADMIN_PAGE_TEXT -'TabTables HID_DSADMIN_TABLE_SUBSCRIPTION -'TabQueries HID_DSADMIN_QUERYADMINISTRATION -'TabBaseBookmarks HID_DSADMIN_DOCUMENTLINKS -'Apply HID_TABDLG_APPLY_BTN -'Reset HID_TABDLG_RESET_BTN - -*DatabaseIndexes dbaccess:ModalDialog:DLG_INDEXDESIGN -NewIndex HID_DLGIDX_NEWINDEX -DropIndex HID_DLGIDX_DROPINDEX -RenameIndex HID_DLGIDX_RENAMEINDEX -SaveIndex HID_DLGIDX_SAVEINDEX -ResetIndex HID_DLGIDX_RESETINDEX -IndexList HID_DLGIDX_INDEXLIST -Unique dbaccess:CheckBox:DLG_INDEXDESIGN:CB_UNIQUE -'IndexDetails UID_DLGINDEX_INDEXDETAILS_BACK -IndexDetails UID_DLGINDEX_INDEXDETAILS_MAIN +'TabGeneral sym:DBACCESS_HID_DSADMIN_PAGE_GENERAL +'TabADO sym:DBACCESS_HID_DSADMIN_PAGE_ADO +'TabdBase sym:DBACCESS_HID_DSADMIN_PAGE_DBASE +'TabODBC sym:DBACCESS_HID_DSADMIN_PAGE_ODBC +'TabAdabasStatistics sym:dbaccess:TabPage:TAB_PAG_ADABAS_SETTINGS +'TabAdabasUserSettings sym:DBACCESS_HID_TAB_PAGE_USERADMIN +'TabJDBC sym:DBACCESS_HID_DSADMIN_PAGE_JDBC +'TabLDAP sym:DBACCESS_HID_DSADMIN_PAGE_LDAP +'TabTextBase sym:DBACCESS_HID_DSADMIN_PAGE_TEXT +'TabTables sym:DBACCESS_HID_DSADMIN_TABLE_SUBSCRIPTION +'TabQueries sym:DBACCESS_HID_DSADMIN_QUERYADMINISTRATION +'TabBaseBookmarks sym:DBACCESS_HID_DSADMIN_DOCUMENTLINKS +'Apply sym:SFX2_HID_TABDLG_APPLY_BTN +'Reset sym:SFX2_HID_TABDLG_RESET_BTN + +*DatabaseIndexes sym:dbaccess:ModalDialog:DLG_INDEXDESIGN +NewIndex sym:DBACCESS_HID_DLGIDX_NEWINDEX +DropIndex sym:DBACCESS_HID_DLGIDX_DROPINDEX +RenameIndex sym:DBACCESS_HID_DLGIDX_RENAMEINDEX +SaveIndex sym:DBACCESS_HID_DLGIDX_SAVEINDEX +ResetIndex sym:DBACCESS_HID_DLGIDX_RESETINDEX +IndexList sym:DBACCESS_HID_DLGIDX_INDEXLIST +Unique sym:dbaccess:CheckBox:DLG_INDEXDESIGN:CB_UNIQUE +'IndexDetails sym:DBACCESS_UID_DLGINDEX_INDEXDETAILS_BACK +IndexDetails sym:DBACCESS_UID_DLGINDEX_INDEXDETAILS_MAIN '--0: CONTROL: No entries in Hid.Lst '--0: CHECKBOX: No entries in Hid.Lst -'--38973: LISTBOX: Select one or more fields. HID_DLGINDEX_INDEXDETAILS_FIELD -IndexFields HID_DLGINDEX_INDEXDETAILS_FIELD +'--38973: LISTBOX: Select one or more fields. sym:DBACCESS_HID_DLGINDEX_INDEXDETAILS_FIELD +IndexFields sym:DBACCESS_HID_DLGINDEX_INDEXDETAILS_FIELD '--0: CONTROL: No entries in Hid.Lst '--0: PUSHBUTTON: No entries in Hid.Lst -'--38974: LISTBOX: Select the sort order. HID_DLGINDEX_INDEXDETAILS_SORTORDER +'--38974: LISTBOX: Select the sort order. sym:DBACCESS_HID_DLGINDEX_INDEXDETAILS_SORTORDER '--0: CONTROL: No entries in Hid.Lst '--0: PUSHBUTTON: No entries in Hid.Lst -DatabaseIndexesClose dbaccess:PushButton:DLG_INDEXDESIGN:PB_CLOSE - -*RecordSearch HID_FM_DLG_SEARCH -SearchForText cui:RadioButton:RID_SVXDLG_SEARCHFORM:RB_SEARCHFORTEXT -SearchForNull cui:RadioButton:RID_SVXDLG_SEARCHFORM:RB_SEARCHFORNULL -SearchForNotNull cui:RadioButton:RID_SVXDLG_SEARCHFORM:RB_SEARCHFORNOTNULL -SearchText HID_SEARCH_TEXT -Formular cui:ListBox:RID_SVXDLG_SEARCHFORM:LB_FORM -AllFields HID_SEARCH_ALLFIELDS -FieldSelection HID_SEARCH_FIELDSELECTION -Position HID_SEARCH_POSITION -FieldFormat HID_SEARCH_FORMATTER -MatchCase HID_SEARCH_CASE -Backwards HID_SEARCH_BACKWARD -FromTop HID_SEARCH_STARTOVER -Wildcard HID_SEARCH_WILDCARD -Regular HID_SEARCH_REGULAR -SimilaritySearch HID_SEARCH_APPROX -More HID_SEARCH_APPROXSETTINGS -Search HID_SEARCH_BTN_SEARCH -CloseBtn HID_SEARCH_BTN_CLOSE -RecordCount UID_SEARCH_RECORDSTATUS - -*DataSourceSelection dbaccess:Modaldialog:DLG_DATASOURCE_SELECTION -SourceList dbaccess:ListBox:DLG_DATASOURCE_SELECTION:LB_DATASOURCE -Organize dbaccess:PushButton:DLG_DATASOURCE_SELECTION:PB_MANAGE -Create dbaccess:PushButton:DLG_DATASOURCE_SELECTION:PB_CREATE - -*DataSourcesNotAvailable HID_DATA_SOURCES_UNAVAILABLE - -*DocumentConverter HID_DLGIMPORT_DIALOG +DatabaseIndexesClose sym:dbaccess:PushButton:DLG_INDEXDESIGN:PB_CLOSE + +*RecordSearch sym:CUI_HID_FM_DLG_SEARCH +SearchForText sym:cui:RadioButton:RID_SVXDLG_SEARCHFORM:RB_SEARCHFORTEXT +SearchForNull sym:cui:RadioButton:RID_SVXDLG_SEARCHFORM:RB_SEARCHFORNULL +SearchForNotNull sym:cui:RadioButton:RID_SVXDLG_SEARCHFORM:RB_SEARCHFORNOTNULL +SearchText sym:CUI_HID_SEARCH_TEXT +Formular sym:cui:ListBox:RID_SVXDLG_SEARCHFORM:LB_FORM +AllFields sym:CUI_HID_SEARCH_ALLFIELDS +FieldSelection sym:CUI_HID_SEARCH_FIELDSELECTION +Position sym:CUI_HID_SEARCH_POSITION +FieldFormat sym:CUI_HID_SEARCH_FORMATTER +MatchCase sym:CUI_HID_SEARCH_CASE +Backwards sym:CUI_HID_SEARCH_BACKWARD +FromTop sym:CUI_HID_SEARCH_STARTOVER +Wildcard sym:CUI_HID_SEARCH_WILDCARD +Regular sym:CUI_HID_SEARCH_REGULAR +SimilaritySearch sym:CUI_HID_SEARCH_APPROX +More sym:CUI_HID_SEARCH_APPROXSETTINGS +Search sym:CUI_HID_SEARCH_BTN_SEARCH +CloseBtn sym:CUI_HID_SEARCH_BTN_CLOSE +RecordCount sym:CUI_UID_SEARCH_RECORDSTATUS + +*DataSourceSelection sym:dbaccess:ModalDialog:DLG_DATASOURCE_SELECTION +SourceList sym:dbaccess:ListBox:DLG_DATASOURCE_SELECTION:LB_DATASOURCE +Organize sym:dbaccess:PushButton:DLG_DATASOURCE_SELECTION:PB_MANAGE +Create sym:dbaccess:PushButton:DLG_DATASOURCE_SELECTION:PB_CREATE + +*DataSourcesNotAvailable sym:SW_HID_DATA_SOURCES_UNAVAILABLE + +*DocumentConverter sym:WIZARDS_HID_DLGIMPORT_DIALOG 'first page -StarOffice HID_DLGIMPORT_0_OPTSODOCUMENTS -TextDoc HID_DLGIMPORT_0_CHKWRITER -Spreadsheet HID_DLGIMPORT_0_CHKCALC -Drawing HID_DLGIMPORT_0_CHKIMPRESS -Master HID_DLGIMPORT_0_CHKMATHGLOBAL -MicrosoftOffice HID_DLGIMPORT_0_OPTMSDOCUMENTS -Word HID_DLGIMPORT_2_CHKWORD -Excel HID_DLGIMPORT_2_CHKEXCEL -PowerPoint HID_DLGIMPORT_2_CHKPOWERPOINT -CreateLogFile HID_DLGIMPORT_0_CHKLOGFILE +StarOffice sym:WIZARDS_HID_DLGIMPORT_0_OPTSODOCUMENTS +TextDoc sym:WIZARDS_HID_DLGIMPORT_0_CHKWRITER +Spreadsheet sym:WIZARDS_HID_DLGIMPORT_0_CHKCALC +Drawing sym:WIZARDS_HID_DLGIMPORT_0_CHKIMPRESS +Master sym:WIZARDS_HID_DLGIMPORT_0_CHKMATHGLOBAL +MicrosoftOffice sym:WIZARDS_HID_DLGIMPORT_0_OPTMSDOCUMENTS +Word sym:WIZARDS_HID_DLGIMPORT_2_CHKWORD +Excel sym:WIZARDS_HID_DLGIMPORT_2_CHKEXCEL +PowerPoint sym:WIZARDS_HID_DLGIMPORT_2_CHKPOWERPOINT +CreateLogFile sym:WIZARDS_HID_DLGIMPORT_0_CHKLOGFILE 'second page -Template HID_DLGIMPORT_2_CBTEMPLATE -IncludingSubdirectoriesTemplate HID_DLGIMPORT_2_CBTEMPLATERECURSE -ImportFormTemplates HID_DLGIMPORT_2_LBTEMPLATEPATH -ImportFormTemplatesSearch HID_DLGIMPORT_2_CMDTEMPLATEPATHSELECT -SaveToTemplates HID_DLGIMPORT_2_EDTEMPLATEPATH -SaveToTemplatesSearch HID_DLGIMPORT_2_CMDTEMPLATEPATHSELECT2 - -Document HID_DLGIMPORT_2_CBDOCUMENT -IncludingSubdirectoriesDocument HID_DLGIMPORT_2_CBDOCUMENTRECURSE -ImportFormDocument HID_DLGIMPORT_2_LBDOCUMENTPATH -ImportFormDocumentSearch HID_DLGIMPORT_2_CMDDOCUMENTPATHSELECT -SaveToDocument HID_DLGIMPORT_2_EDDOCUMENTPATH -SaveToDocumentSearch HID_DLGIMPORT_2_CMDDOCUMENTPATHSELECT2 +Template sym:WIZARDS_HID_DLGIMPORT_2_CBTEMPLATE +IncludingSubdirectoriesTemplate sym:WIZARDS_HID_DLGIMPORT_2_CBTEMPLATERECURSE +ImportFormTemplates sym:WIZARDS_HID_DLGIMPORT_2_LBTEMPLATEPATH +ImportFormTemplatesSearch sym:WIZARDS_HID_DLGIMPORT_2_CMDTEMPLATEPATHSELECT +SaveToTemplates sym:WIZARDS_HID_DLGIMPORT_2_EDTEMPLATEPATH +SaveToTemplatesSearch sym:WIZARDS_HID_DLGIMPORT_2_CMDTEMPLATEPATHSELECT2 + +Document sym:WIZARDS_HID_DLGIMPORT_2_CBDOCUMENT +IncludingSubdirectoriesDocument sym:WIZARDS_HID_DLGIMPORT_2_CBDOCUMENTRECURSE +ImportFormDocument sym:WIZARDS_HID_DLGIMPORT_2_LBDOCUMENTPATH +ImportFormDocumentSearch sym:WIZARDS_HID_DLGIMPORT_2_CMDDOCUMENTPATHSELECT +SaveToDocument sym:WIZARDS_HID_DLGIMPORT_2_EDDOCUMENTPATH +SaveToDocumentSearch sym:WIZARDS_HID_DLGIMPORT_2_CMDDOCUMENTPATHSELECT2 'third page -Summary HID_DLGIMPORT_3_TBSUMMARY +Summary sym:WIZARDS_HID_DLGIMPORT_3_TBSUMMARY 'all pages -BackButton HID_DLGIMPORT_0_CMDPREV -CancelButton HID_DLGIMPORT_0_CMDCANCEL -HelpButton HID_DLGIMPORT_0_CMDHELP -ContinueButton HID_DLGIMPORT_0_CMDNEXT - -*ExternalData sc:ModalDialog:RID_SCDLG_LINKAREA -URLField HID_SCDLG_LINKAREAURL -FileChoose sc:PushButton:RID_SCDLG_LINKAREA:BTN_BROWSE -TableListBox sc:MultiListBox:RID_SCDLG_LINKAREA:LB_RANGES -Update sc:CheckBox:RID_SCDLG_LINKAREA:BTN_RELOAD -UpdateTime sc:NumericField:RID_SCDLG_LINKAREA:NF_DELAY - -*FindAndReplace SID_SEARCH_DLG -SearchFor svx:ComboBox:RID_SVXDLG_SEARCH:ED_SEARCH -SearchForStyle svx:ListBox:RID_SVXDLG_SEARCH:LB_SEARCH -ReplaceWith svx:ComboBox:RID_SVXDLG_SEARCH:ED_REPLACE -ReplaceWithStyle svx:ListBox:RID_SVXDLG_SEARCH:LB_REPLACE -SearchNow svx:PushButton:RID_SVXDLG_SEARCH:BTN_SEARCH -SearchAll svx:PushButton:RID_SVXDLG_SEARCH:BTN_SEARCH_ALL -ReplaceBtn svx:PushButton:RID_SVXDLG_SEARCH:BTN_REPLACE -ReplaceAll svx:PushButton:RID_SVXDLG_SEARCH:BTN_REPLACE_ALL -MatchCase svx:CheckBox:RID_SVXDLG_SEARCH:CB_MATCH_CASE -WholeWordsOnly svx:CheckBox:RID_SVXDLG_SEARCH:CB_WHOLE_WORDS -More svx:MoreButton:RID_SVXDLG_SEARCH:BTN_MORE -CurrentSelectionOnly svx:CheckBox:RID_SVXDLG_SEARCH:CB_SELECTIONS -Backwards svx:CheckBox:RID_SVXDLG_SEARCH:CB_BACKWARDS -RegularExpressions svx:CheckBox:RID_SVXDLG_SEARCH:CB_REGEXP -SimilaritySearch svx:CheckBox:RID_SVXDLG_SEARCH:CB_SIMILARITY -SimilaritySearchFor svx:PushButton:RID_SVXDLG_SEARCH:PB_SIMILARITY -SearchForStyles svx:CheckBox:RID_SVXDLG_SEARCH:CB_LAYOUTS -MatchFullHalfWidth svx:CheckBox:RID_SVXDLG_SEARCH:CB_JAP_MATCH_FULL_HALF_WIDTH -SoundsLike svx:CheckBox:RID_SVXDLG_SEARCH:CB_JAP_SOUNDS_LIKE -SoundsLikeOptions svx:PushButton:RID_SVXDLG_SEARCH:PB_JAP_OPTIONS -Attributes svx:PushButton:RID_SVXDLG_SEARCH:BTN_ATTRIBUTE -Formats svx:PushButton:RID_SVXDLG_SEARCH:BTN_FORMAT -NoFormat svx:PushButton:RID_SVXDLG_SEARCH:BTN_NOFORMAT -SearchIn svx:ListBox:RID_SVXDLG_SEARCH:LB_CALC_SEARCHIN -Rows svx:RadioButton:RID_SVXDLG_SEARCH:RB_CALC_ROWS -Columns svx:RadioButton:RID_SVXDLG_SEARCH:RB_CALC_COLUMNS -SearchInAllSheets svx:CheckBox:RID_SVXDLG_SEARCH:CB_ALL_SHEETS -Notes svx:CheckBox:RID_SVXDLG_SEARCH:CB_NOTES - -*FormFolderNameDialog HID_DLG_SAVE_AS -FolderName dbaccess:Edit:DLG_SAVE_AS:ET_TITLE -FolderReName HID_DLG_RENAME - -*FormPropertiesDialog UID_FORMPROPBROWSER_FRAME -FormPropertiesTabControl HID_FM_PROPDLG_TABCTR -TabGeneralForm HID_FM_PROPDLG_TAB_GENERAL -TabDataForm HID_FM_PROPDLG_TAB_DATA -TabEventsForm HID_FM_PROPDLG_TAB_EVT - -*FormSaveDialog HID_EXPLORERDLG_COLLECTION -NewFolder dbaccess:ImageButton:DLG_COLLECTION_VIEW:BTN_EXPLORERFILE_NEWFOLDER -OneLevelUp dbaccess:ImageButton:DLG_COLLECTION_VIEW:BTN_EXPLORERFILE_UP -FormName dbaccess:Edit:DLG_COLLECTION_VIEW:ED_EXPLORERFILE_FILENAME -SaveBtn dbaccess:PushButton:DLG_COLLECTION_VIEW:BTN_EXPLORERFILE_SAVE - -*FormWizard HID_DLGFORM_DIALOG -TablesOrQueriesMaster HID_DLGFORM_MASTER_LBTABLES -CancelBtn HID_DLGFORM_CMDCANCEL -BackBtn HID_DLGFORM_CMDPREV -NextBtn HID_DLGFORM_CMDNEXT -MasterMoveSelected HID_DLGFORM_MASTER_CMDMOVESELECTED -MasterMoveAll HID_DLGFORM_MASTER_CMDMOVEALL -MasterRemoveSelected HID_DLGFORM_MASTER_CMDREMOVESELECTED -MasterRemoveAll HID_DLGFORM_MASTER_CMDREMOVEALL -AvailableMasterFields HID_DLGFORM_MASTER_FIELDSAVAILABLE -FieldsInForm HID_DLGFORM_MASTER_FIELDSSELECTED -ColumnarLabelsLeft HID_DLGFORM_CMDLEFTLABELED -ColumnarLabelsOnTop HID_DLGFORM_CMDTOPLABELED -AsDataSheet HID_DLGFORM_CMDTABLESTYLE -InBlocksLabelsAbove HID_DLGFORM_CMDTOPJUSTIFIED -PageStyles HID_DLGFORM_LSTSTYLES -NoBorder HID_DLGFORM_CMDNOBORDER -ThreeDLook HID_DLGFORM_CMD3DBORDER -FlatLook HID_DLGFORM_CMDSIMPLEBORDER -AlignLeft HID_DLGFORM_CMDALIGNLEFT -AlignRight HID_DLGFORM_CMDALIGNRIGHT -FinishBtn HID_DLGFORM_CMDFINISH - -*FunctionsCalc HID_FUNCTION_BOX -FunctionInsert sc:ImageButton:FID_FUNCTION_BOX:IMB_INSERT -Category sc:ListBox:FID_FUNCTION_BOX:CB_CAT -FunctionList sc:ListBox:FID_FUNCTION_BOX:LB_FUNC - -*FunctionWizard HID_FORMULADLG_FORMULA -FunctionWizardTabControl formula:TabControl:RID_FORMULADLG_FORMULA:TC_FUNCTION -TabFunctionWizardFormula HID_FORMULA_FAP_FORMULA -CategoryLB HID_FORMULA_LB_CATEGORY -FunctionLB HID_FORMULA_LB_FUNCTION -TabFunktion HID_FORMULATAB_FUNCTION -Functionsbutton1 HID_FORMULA_FAP_BTN_FX1 -Editfield1 HID_FORMULA_FAP_EDIT1 -Shrink1 HID_FORMULA_FAP_BTN_REF1 -Maximize formula:ImageButton:RID_FORMULADLG_FORMULA:RB_REF -Functionsbutton2 HID_FORMULA_FAP_BTN_FX2 -Editfield2 HID_FORMULA_FAP_EDIT2 -Shrink2 HID_FORMULA_FAP_BTN_REF2 -Functionsbutton3 HID_FORMULA_FAP_BTN_FX3 -Editfield3 HID_FORMULA_FAP_EDIT3 -Shrink3 HID_FORMULA_FAP_BTN_REF3 -Functionsbutton4 HID_FORMULA_FAP_BTN_FX4 -Editfield4 HID_FORMULA_FAP_EDIT4 -Shrink4 HID_FORMULA_FAP_BTN_REF4 -TabFunctionWizardStructure HID_FORMULATAB_STRUCT -Structure HID_FORMULA_FAP_STRUCT -Formel HID_FORMULA_FAP_FORMULA -Matrix formula:CheckBox:RID_FORMULADLG_FORMULA:BTN_MATRIX -Backward formula:PushButton:RID_FORMULADLG_FORMULA:BTN_BACKWARD -Forward formula:PushButton:RID_FORMULADLG_FORMULA:BTN_FORWARD -NextBt formula:PushButton:RID_FORMULADLG_FORMULA_MODAL:BTN_FORWARD - -*FTPConnection HID_FTP -ServerName HID_FTP_SERVER -UserName HID_FTP_USERNAME -Password HID_FTP_PASS -Connect HID_FTP_TEST -ChooseARemoteDirectory HID_FTP_TXT_PATH -ChooseARemoteDirectoryB HID_FTP_BTN_PATH -CancelB HID_FTP_CANCEL - -*LoginDialog HID_DLG_LOGIN -LoginName HID_LOGIN_DLG_USER_NAME -LoginPassword HID_LOGIN_DLG_PASSWORD -LoginSavePassword HID_LOGIN_DLG_REMEMBER_PASSWORD -Path HID_LOGIN_DLG_PATH -Browse HID_LOGIN_DLG_BROWSE -Account HID_LOGIN_DLG_ACCOUNT -UseSystemCredentials HID_LOGIN_DLG_USE_SYSTEM_CREDENTIALS - -*Gallery SID_GALLERY -NewTheme HID_GALLERY_NEWTHEME +BackButton sym:WIZARDS_HID_DLGIMPORT_0_CMDPREV +CancelButton sym:WIZARDS_HID_DLGIMPORT_0_CMDCANCEL +HelpButton sym:WIZARDS_HID_DLGIMPORT_0_CMDHELP +ContinueButton sym:WIZARDS_HID_DLGIMPORT_0_CMDNEXT + +*ExternalData sym:sc:ModalDialog:RID_SCDLG_LINKAREA +URLField sym:SC_HID_SCDLG_LINKAREAURL +FileChoose sym:sc:PushButton:RID_SCDLG_LINKAREA:BTN_BROWSE +TableListBox sym:sc:MultiListBox:RID_SCDLG_LINKAREA:LB_RANGES +Update sym:sc:CheckBox:RID_SCDLG_LINKAREA:BTN_RELOAD +UpdateTime sym:sc:NumericField:RID_SCDLG_LINKAREA:NF_DELAY + +*FindAndReplace .uno:SearchDialog +SearchFor sym:svx:ComboBox:RID_SVXDLG_SEARCH:ED_SEARCH +SearchForStyle sym:svx:ListBox:RID_SVXDLG_SEARCH:LB_SEARCH +ReplaceWith sym:svx:ComboBox:RID_SVXDLG_SEARCH:ED_REPLACE +ReplaceWithStyle sym:svx:ListBox:RID_SVXDLG_SEARCH:LB_REPLACE +SearchNow sym:svx:PushButton:RID_SVXDLG_SEARCH:BTN_SEARCH +SearchAll sym:svx:PushButton:RID_SVXDLG_SEARCH:BTN_SEARCH_ALL +ReplaceBtn sym:svx:PushButton:RID_SVXDLG_SEARCH:BTN_REPLACE +ReplaceAll sym:svx:PushButton:RID_SVXDLG_SEARCH:BTN_REPLACE_ALL +MatchCase sym:svx:CheckBox:RID_SVXDLG_SEARCH:CB_MATCH_CASE +WholeWordsOnly sym:svx:CheckBox:RID_SVXDLG_SEARCH:CB_WHOLE_WORDS +More sym:svx:MoreButton:RID_SVXDLG_SEARCH:BTN_MORE +CurrentSelectionOnly sym:svx:CheckBox:RID_SVXDLG_SEARCH:CB_SELECTIONS +Backwards sym:svx:CheckBox:RID_SVXDLG_SEARCH:CB_BACKWARDS +RegularExpressions sym:svx:CheckBox:RID_SVXDLG_SEARCH:CB_REGEXP +SimilaritySearch sym:svx:CheckBox:RID_SVXDLG_SEARCH:CB_SIMILARITY +SimilaritySearchFor sym:svx:PushButton:RID_SVXDLG_SEARCH:PB_SIMILARITY +SearchForStyles sym:svx:CheckBox:RID_SVXDLG_SEARCH:CB_LAYOUTS +MatchFullHalfWidth sym:svx:CheckBox:RID_SVXDLG_SEARCH:CB_JAP_MATCH_FULL_HALF_WIDTH +SoundsLike sym:svx:CheckBox:RID_SVXDLG_SEARCH:CB_JAP_SOUNDS_LIKE +SoundsLikeOptions sym:svx:PushButton:RID_SVXDLG_SEARCH:PB_JAP_OPTIONS +Attributes sym:svx:PushButton:RID_SVXDLG_SEARCH:BTN_ATTRIBUTE +Formats sym:svx:PushButton:RID_SVXDLG_SEARCH:BTN_FORMAT +NoFormat sym:svx:PushButton:RID_SVXDLG_SEARCH:BTN_NOFORMAT +SearchIn sym:svx:ListBox:RID_SVXDLG_SEARCH:LB_CALC_SEARCHIN +Rows sym:svx:RadioButton:RID_SVXDLG_SEARCH:RB_CALC_ROWS +Columns sym:svx:RadioButton:RID_SVXDLG_SEARCH:RB_CALC_COLUMNS +SearchInAllSheets sym:svx:CheckBox:RID_SVXDLG_SEARCH:CB_ALL_SHEETS +Notes sym:svx:CheckBox:RID_SVXDLG_SEARCH:CB_NOTES + +*FormFolderNameDialog sym:DBACCESS_HID_DLG_SAVE_AS +FolderName sym:dbaccess:Edit:DLG_SAVE_AS:ET_TITLE +FolderReName sym:DBACCESS_HID_DLG_RENAME + +*FormPropertiesDialog sym:SVX_UID_FORMPROPBROWSER_FRAME +FormPropertiesTabControl sym:EXTENSIONS_HID_FM_PROPDLG_TABCTR +TabGeneralForm sym:EXTENSIONS_HID_FM_PROPDLG_TAB_GENERAL +TabDataForm sym:EXTENSIONS_HID_FM_PROPDLG_TAB_DATA +TabEventsForm sym:EXTENSIONS_HID_FM_PROPDLG_TAB_EVT + +*FormSaveDialog sym:DBACCESS_HID_EXPLORERDLG_COLLECTION +NewFolder sym:dbaccess:ImageButton:DLG_COLLECTION_VIEW:BTN_EXPLORERFILE_NEWFOLDER +OneLevelUp sym:dbaccess:ImageButton:DLG_COLLECTION_VIEW:BTN_EXPLORERFILE_UP +FormName sym:dbaccess:Edit:DLG_COLLECTION_VIEW:ED_EXPLORERFILE_FILENAME +SaveBtn sym:dbaccess:PushButton:DLG_COLLECTION_VIEW:BTN_EXPLORERFILE_SAVE + +*FormWizard sym:WIZARDS_HID_DLGFORM_DIALOG +TablesOrQueriesMaster sym:WIZARDS_HID_DLGFORM_MASTER_LBTABLES +CancelBtn sym:WIZARDS_HID_DLGFORM_CMDCANCEL +BackBtn sym:WIZARDS_HID_DLGFORM_CMDPREV +NextBtn sym:WIZARDS_HID_DLGFORM_CMDNEXT +MasterMoveSelected sym:WIZARDS_HID_DLGFORM_MASTER_CMDMOVESELECTED +MasterMoveAll sym:WIZARDS_HID_DLGFORM_MASTER_CMDMOVEALL +MasterRemoveSelected sym:WIZARDS_HID_DLGFORM_MASTER_CMDREMOVESELECTED +MasterRemoveAll sym:WIZARDS_HID_DLGFORM_MASTER_CMDREMOVEALL +AvailableMasterFields sym:WIZARDS_HID_DLGFORM_MASTER_FIELDSAVAILABLE +FieldsInForm sym:WIZARDS_HID_DLGFORM_MASTER_FIELDSSELECTED +ColumnarLabelsLeft sym:WIZARDS_HID_DLGFORM_CMDLEFTLABELED +ColumnarLabelsOnTop sym:WIZARDS_HID_DLGFORM_CMDTOPLABELED +AsDataSheet sym:WIZARDS_HID_DLGFORM_CMDTABLESTYLE +InBlocksLabelsAbove sym:WIZARDS_HID_DLGFORM_CMDTOPJUSTIFIED +PageStyles sym:WIZARDS_HID_DLGFORM_LSTSTYLES +NoBorder sym:WIZARDS_HID_DLGFORM_CMDNOBORDER +ThreeDLook sym:WIZARDS_HID_DLGFORM_CMD3DBORDER +FlatLook sym:WIZARDS_HID_DLGFORM_CMDSIMPLEBORDER +AlignLeft sym:WIZARDS_HID_DLGFORM_CMDALIGNLEFT +AlignRight sym:WIZARDS_HID_DLGFORM_CMDALIGNRIGHT +FinishBtn sym:WIZARDS_HID_DLGFORM_CMDFINISH + +*FunctionsCalc sym:SC_HID_FUNCTION_BOX +FunctionInsert sym:sc:ImageButton:FID_FUNCTION_BOX:IMB_INSERT +Category sym:sc:ListBox:FID_FUNCTION_BOX:CB_CAT +FunctionList sym:sc:ListBox:FID_FUNCTION_BOX:LB_FUNC + +*FunctionWizard sym:FORMULA_HID_FORMULADLG_FORMULA +FunctionWizardTabControl sym:formula:TabControl:RID_FORMULADLG_FORMULA:TC_FUNCTION +TabFunctionWizardFormula sym:FORMULA_HID_FORMULA_FAP_FORMULA +CategoryLB sym:FORMULA_HID_FORMULA_LB_CATEGORY +FunctionLB sym:FORMULA_HID_FORMULA_LB_FUNCTION +TabFunktion sym:FORMULA_HID_FORMULATAB_FUNCTION +Functionsbutton1 sym:FORMULA_HID_FORMULA_FAP_BTN_FX1 +Editfield1 sym:FORMULA_HID_FORMULA_FAP_EDIT1 +Shrink1 sym:FORMULA_HID_FORMULA_FAP_BTN_REF1 +Maximize sym:formula:ImageButton:RID_FORMULADLG_FORMULA:RB_REF +Functionsbutton2 sym:FORMULA_HID_FORMULA_FAP_BTN_FX2 +Editfield2 sym:FORMULA_HID_FORMULA_FAP_EDIT2 +Shrink2 sym:FORMULA_HID_FORMULA_FAP_BTN_REF2 +Functionsbutton3 sym:FORMULA_HID_FORMULA_FAP_BTN_FX3 +Editfield3 sym:FORMULA_HID_FORMULA_FAP_EDIT3 +Shrink3 sym:FORMULA_HID_FORMULA_FAP_BTN_REF3 +Functionsbutton4 sym:FORMULA_HID_FORMULA_FAP_BTN_FX4 +Editfield4 sym:FORMULA_HID_FORMULA_FAP_EDIT4 +Shrink4 sym:FORMULA_HID_FORMULA_FAP_BTN_REF4 +TabFunctionWizardStructure sym:FORMULA_HID_FORMULATAB_STRUCT +Structure sym:FORMULA_HID_FORMULA_FAP_STRUCT +Formel sym:FORMULA_HID_FORMULA_FAP_FORMULA +Matrix sym:formula:CheckBox:RID_FORMULADLG_FORMULA:BTN_MATRIX +Backward sym:formula:PushButton:RID_FORMULADLG_FORMULA:BTN_BACKWARD +Forward sym:formula:PushButton:RID_FORMULADLG_FORMULA:BTN_FORWARD +NextBt sym:formula:PushButton:RID_FORMULADLG_FORMULA_MODAL:BTN_FORWARD + +*FTPConnection sym:WIZARDS_HID_FTP +ServerName sym:WIZARDS_HID_FTP_SERVER +UserName sym:WIZARDS_HID_FTP_USERNAME +Password sym:WIZARDS_HID_FTP_PASS +Connect sym:WIZARDS_HID_FTP_TEST +ChooseARemoteDirectory sym:WIZARDS_HID_FTP_TXT_PATH +ChooseARemoteDirectoryB sym:WIZARDS_HID_FTP_BTN_PATH +CancelB sym:WIZARDS_HID_FTP_CANCEL + +*LoginDialog sym:UUI_HID_DLG_LOGIN +LoginName sym:UUI_HID_LOGIN_DLG_USER_NAME +LoginPassword sym:UUI_HID_LOGIN_DLG_PASSWORD +LoginSavePassword sym:UUI_HID_LOGIN_DLG_REMEMBER_PASSWORD +Path sym:UUI_HID_LOGIN_DLG_PATH +Browse sym:UUI_HID_LOGIN_DLG_BROWSE +Account sym:UUI_HID_LOGIN_DLG_ACCOUNT +UseSystemCredentials sym:UUI_HID_LOGIN_DLG_USE_SYSTEM_CREDENTIALS + +*Gallery sym:SVX_HID_GALLERY_BROWSER +NewTheme sym:SVX_HID_GALLERY_NEWTHEME 'NewThemeName NEW_TITLE_FOR_GALLERY_THEME_EDITFIELD -Gallerys HID_GALLERY_THEMELIST -ListView HID_GALLERY_LISTVIEW -IconView HID_GALLERY_ICONVIEW -View HID_GALLERY_WINDOW - -*GalleryNewTitle HID_GALLERY_TITLE -Title HID_GALLERY_TITLE_EDIT - -*GIFOptions svtools:ModalDialog:DLG_EXPORT -Exportwidth svtools:MetricField:DLG_EXPORT:MF_SIZEX -Exportmeasurement svtools:ListBox:DLG_EXPORT:LB_SIZEX -Exportheight svtools:MetricField:DLG_EXPORT:MF_SIZEY -Resolution svtools:NumericField:DLG_EXPORT:NF_RESOLUTION -Resolutionmeasurement svtools:ListBox:DLG_EXPORT:LB_RESOLUTION -Interlaced svtools:CheckBox:DLG_EXPORT:CB_INTERLACED -Transparency svtools:CheckBox:DLG_EXPORT:CB_SAVE_TRANSPARENCY - -*HelpAgent HID_HELPAGENT_WINDOW - -*HangulHanjaConversion HID_DIALOG_HANGULHANJA -Original HID_SPELLDLG_SETWORD -Word HID_HANGULDLG_EDIT_NEWWORD -Find cui:PushButton:RID_SVX_MDLG_HANGULHANJA:PB_FIND -Suggestions HID_HANGULDLG_SUGGESTIONS_LIST -HangulAndHanja cui:RadioButton:RID_SVX_MDLG_HANGULHANJA:RB_SIMPLE_CONVERSION -HanjaHangul cui:RadioButton:RID_SVX_MDLG_HANGULHANJA:RB_HANJA_HANGUL_BRACKETED -HangulHanja cui:RadioButton:RID_SVX_MDLG_HANGULHANJA:RB_HANGUL_HANJA_BRACKETED -HanjaAsRubyAbove cui:RadioButton:RID_SVX_MDLG_HANGULHANJA:RB_HANGUL_HANJA_ABOVE -HanjaAsRubyBelow cui:RadioButton:RID_SVX_MDLG_HANGULHANJA:RB_HANGUL_HANJA_BELOW -HangulAsRubyAbove cui:RadioButton:RID_SVX_MDLG_HANGULHANJA:RB_HANJA_HANGUL_ABOVE -HangulAsRubyBelow cui:RadioButton:RID_SVX_MDLG_HANGULHANJA:RB_HANJA_HANGUL_BELOW -HangulOnly cui:CheckBox:RID_SVX_MDLG_HANGULHANJA:CB_HANGUL_ONLY -HanjaOnly cui:CheckBox:RID_SVX_MDLG_HANGULHANJA:CB_HANJA_ONLY -ReplaceByCharacter cui:CheckBox:RID_SVX_MDLG_HANGULHANJA:CB_REPLACE_BY_CHARACTER -Ignore HID_HANGULDLG_BUTTON_IGNORE -AlwaysIgnore HID_HANGULDLG_BUTTON_IGNOREALL -ReplaceBtn HID_HANGULDLG_BUTTON_CHANGE -AlwaysReplace HID_HANGULDLG_BUTTON_CHANGEALL -Options HID_HANGULDLG_BUTTON_OPTIONS -Grid HID_HANGULDLG_SUGGESTIONS_GRID - -*HangulHanjaOptions HID_HANGULHANJA_OPT_DLG -NewDictionary cui:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_NEW -EditDictionary cui:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_EDIT -DeleteDictionary cui:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_DELETE -UserDefineDictionary HID_HANGULHANJA_OPT_DICTS_LB -IgnorePostPositionalWord cui:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_IGNOREPOST -ShowEntries cui:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_SHOWRECENTLYFIRST -ReplaceUniqueEntries cui:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_AUTOREPLACEUNIQUE - -*HangulHanjaNewDictionary HID_HANGULHANJA_NEWDICT_DLG -DictionaryName cui:Edit:RID_SVX_MDLG_HANGULHANJA_NEWDICT:ED_DICTNAME - -*HangulHanjaEditDictionary HID_HANGULHANJA_EDIT_DLG -Book cui:ListBox:RID_SVX_MDLG_HANGULHANJA_EDIT:LB_BOOK -Original cui:ComboBox:RID_SVX_MDLG_HANGULHANJA_EDIT:LB_ORIGINAL -Suggestion1 cui:Edit:RID_SVX_MDLG_HANGULHANJA_EDIT:ED_1 -Suggestion2 cui:Edit:RID_SVX_MDLG_HANGULHANJA_EDIT:ED_2 -Suggestion3 cui:Edit:RID_SVX_MDLG_HANGULHANJA_EDIT:ED_3 -Suggestion4 cui:Edit:RID_SVX_MDLG_HANGULHANJA_EDIT:ED_4 -NewEntry cui:PushButton:RID_SVX_MDLG_HANGULHANJA_EDIT:PB_HHE_NEW -DeleteEntry cui:PushButton:RID_SVX_MDLG_HANGULHANJA_EDIT:PB_HHE_DELETE - -*Hyphenation HID_HYPHENATE svx:ModalDialog:RID_SVXDLG_HYPHENATE -Wort cui:Edit:RID_SVXDLG_HYPHENATE:ED_WORD -Vor cui:ImageButton:RID_SVXDLG_HYPHENATE:BTN_LEFT -Zurueck cui:ImageButton:RID_SVXDLG_HYPHENATE:BTN_RIGHT -Weiter cui:PushButton:RID_SVXDLG_HYPHENATE:BTN_HYPH_CONTINUE -Entfernen cui:PushButton:RID_SVXDLG_HYPHENATE:BTN_HYPH_DELETE -HyphenateAll cui:PushButton:RID_SVXDLG_HYPHENATE:BTN_HYPH_ALL - -*HyphenationOptions HID_LNGDLG_NUM_PREBREAK -ZeichenVorUmbruch cui:NumericField:RID_SVXDLG_LNG_ED_NUM_PREBREAK:ED_PREBREAK - -*HTMLImportOptions sc:ModalDialog:RID_SCDLG_TEXT_IMPORT_OPTIONS -Automatic sc:RadioButton:RID_SCDLG_TEXT_IMPORT_OPTIONS:RB_AUTOMATIC -Custom sc:RadioButton:RID_SCDLG_TEXT_IMPORT_OPTIONS:RB_CUSTOM -CustomLanguage sc:ListBox:RID_SCDLG_TEXT_IMPORT_OPTIONS:LB_CUSTOM_LANG -DetectSpecialNumbers sc:CheckBox:RID_SCDLG_TEXT_IMPORT_OPTIONS:BTN_CONVERT_DATE - -*HyperlinkDialog HID_HYPERLINK_DIALOG -CloseButton HID_ICCDIALOG_CANCEL_BTN -ApplyButton HID_ICCDIALOG_OK_BTN -BackButton HID_ICCDIALOG_RESET_BTN +Gallerys sym:SVX_HID_GALLERY_THEMELIST +ListView sym:SVX_HID_GALLERY_LISTVIEW +IconView sym:SVX_HID_GALLERY_ICONVIEW +View sym:SVX_HID_GALLERY_WINDOW + +*GalleryNewTitle sym:SVX_HID_GALLERY_TITLE +Title sym:CUI_HID_GALLERY_TITLE_EDIT + +*HelpAgent sym:SVT_HID_HELPAGENT_WINDOW + +*GIFOptions sym:svtools:ModalDialog:DLG_EXPORT +Exportwidth sym:svtools:MetricField:DLG_EXPORT:MF_SIZEX +Exportmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_SIZEX +Exportheight sym:svtools:MetricField:DLG_EXPORT:MF_SIZEY +Resolution sym:svtools:NumericField:DLG_EXPORT:NF_RESOLUTION +Resolutionmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_RESOLUTION +Interlaced sym:svtools:CheckBox:DLG_EXPORT:CB_INTERLACED +Transparency sym:svtools:CheckBox:DLG_EXPORT:CB_SAVE_TRANSPARENCY + +*HangulHanjaConversion sym:CUI_HID_DIALOG_HANGULHANJA +Original sym:CUI_HID_SPELLDLG_SETWORD +Word sym:CUI_HID_HANGULDLG_EDIT_NEWWORD +Find sym:cui:PushButton:RID_SVX_MDLG_HANGULHANJA:PB_FIND +Suggestions sym:CUI_HID_HANGULDLG_SUGGESTIONS_LIST +HangulAndHanja sym:cui:RadioButton:RID_SVX_MDLG_HANGULHANJA:RB_SIMPLE_CONVERSION +HanjaHangul sym:cui:RadioButton:RID_SVX_MDLG_HANGULHANJA:RB_HANJA_HANGUL_BRACKETED +HangulHanja sym:cui:RadioButton:RID_SVX_MDLG_HANGULHANJA:RB_HANGUL_HANJA_BRACKETED +HanjaAsRubyAbove sym:cui:RadioButton:RID_SVX_MDLG_HANGULHANJA:RB_HANGUL_HANJA_ABOVE +HanjaAsRubyBelow sym:cui:RadioButton:RID_SVX_MDLG_HANGULHANJA:RB_HANGUL_HANJA_BELOW +HangulAsRubyAbove sym:cui:RadioButton:RID_SVX_MDLG_HANGULHANJA:RB_HANJA_HANGUL_ABOVE +HangulAsRubyBelow sym:cui:RadioButton:RID_SVX_MDLG_HANGULHANJA:RB_HANJA_HANGUL_BELOW +HangulOnly sym:cui:CheckBox:RID_SVX_MDLG_HANGULHANJA:CB_HANGUL_ONLY +HanjaOnly sym:cui:CheckBox:RID_SVX_MDLG_HANGULHANJA:CB_HANJA_ONLY +ReplaceByCharacter sym:cui:CheckBox:RID_SVX_MDLG_HANGULHANJA:CB_REPLACE_BY_CHARACTER +Ignore sym:CUI_HID_HANGULDLG_BUTTON_IGNORE +AlwaysIgnore sym:CUI_HID_HANGULDLG_BUTTON_IGNOREALL +ReplaceBtn sym:CUI_HID_HANGULDLG_BUTTON_CHANGE +AlwaysReplace sym:CUI_HID_HANGULDLG_BUTTON_CHANGEALL +Options sym:CUI_HID_HANGULDLG_BUTTON_OPTIONS +Grid sym:CUI_HID_HANGULDLG_SUGGESTIONS_GRID + +*HangulHanjaOptions sym:CUI_HID_HANGULHANJA_OPT_DLG +NewDictionary sym:cui:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_NEW +EditDictionary sym:cui:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_EDIT +DeleteDictionary sym:cui:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_DELETE +UserDefineDictionary sym:CUI_HID_HANGULHANJA_OPT_DICTS_LB +IgnorePostPositionalWord sym:cui:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_IGNOREPOST +ShowEntries sym:cui:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_SHOWRECENTLYFIRST +ReplaceUniqueEntries sym:cui:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_AUTOREPLACEUNIQUE + +*HangulHanjaNewDictionary sym:CUI_HID_HANGULHANJA_NEWDICT_DLG +DictionaryName sym:cui:Edit:RID_SVX_MDLG_HANGULHANJA_NEWDICT:ED_DICTNAME + +*HangulHanjaEditDictionary sym:CUI_HID_HANGULHANJA_EDIT_DLG +Book sym:cui:ListBox:RID_SVX_MDLG_HANGULHANJA_EDIT:LB_BOOK +Original sym:cui:ComboBox:RID_SVX_MDLG_HANGULHANJA_EDIT:LB_ORIGINAL +Suggestion1 sym:cui:Edit:RID_SVX_MDLG_HANGULHANJA_EDIT:ED_1 +Suggestion2 sym:cui:Edit:RID_SVX_MDLG_HANGULHANJA_EDIT:ED_2 +Suggestion3 sym:cui:Edit:RID_SVX_MDLG_HANGULHANJA_EDIT:ED_3 +Suggestion4 sym:cui:Edit:RID_SVX_MDLG_HANGULHANJA_EDIT:ED_4 +NewEntry sym:cui:PushButton:RID_SVX_MDLG_HANGULHANJA_EDIT:PB_HHE_NEW +DeleteEntry sym:cui:PushButton:RID_SVX_MDLG_HANGULHANJA_EDIT:PB_HHE_DELETE + +*Hyphenation sym:CUI_HID_HYPHENATE sym:svx:ModalDialog:RID_SVXDLG_HYPHENATE +Wort sym:cui:Edit:RID_SVXDLG_HYPHENATE:ED_WORD +Vor sym:cui:ImageButton:RID_SVXDLG_HYPHENATE:BTN_LEFT +Zurueck sym:cui:ImageButton:RID_SVXDLG_HYPHENATE:BTN_RIGHT +Weiter sym:cui:PushButton:RID_SVXDLG_HYPHENATE:BTN_HYPH_CONTINUE +Entfernen sym:cui:PushButton:RID_SVXDLG_HYPHENATE:BTN_HYPH_DELETE +HyphenateAll sym:cui:PushButton:RID_SVXDLG_HYPHENATE:BTN_HYPH_ALL + +*HyphenationOptions sym:CUI_HID_LNGDLG_NUM_PREBREAK +ZeichenVorUmbruch sym:cui:NumericField:RID_SVXDLG_LNG_ED_NUM_PREBREAK:ED_PREBREAK + +*HTMLImportOptions sym:sc:ModalDialog:RID_SCDLG_TEXT_IMPORT_OPTIONS +Automatic sym:sc:RadioButton:RID_SCDLG_TEXT_IMPORT_OPTIONS:RB_AUTOMATIC +Custom sym:sc:RadioButton:RID_SCDLG_TEXT_IMPORT_OPTIONS:RB_CUSTOM +CustomLanguage sym:sc:ListBox:RID_SCDLG_TEXT_IMPORT_OPTIONS:LB_CUSTOM_LANG +DetectSpecialNumbers sym:sc:CheckBox:RID_SCDLG_TEXT_IMPORT_OPTIONS:BTN_CONVERT_DATE + +*HyperlinkDialog sym:CUI_HID_HYPERLINK_DIALOG +CloseButton sym:CUI_HID_ICCDIALOG_CANCEL_BTN +ApplyButton sym:CUI_HID_ICCDIALOG_OK_BTN +BackButton sym:CUI_HID_ICCDIALOG_RESET_BTN diff --git a/testautomation/global/win/edia_i_o.win b/testautomation/global/win/edia_i_o.win index 61cea83b3a36..39d90d8d1c97 100755..100644 --- a/testautomation/global/win/edia_i_o.win +++ b/testautomation/global/win/edia_i_o.win @@ -1,317 +1,320 @@ -*IconSets HID_IS -Image1 HID_IS_BTN_IMG1 -Image2 HID_IS_BTN_IMG2 -Image3 HID_IS_BTN_IMG3 -Image4 HID_IS_BTN_IMG4 -Image5 HID_IS_BTN_IMG5 -Image6 HID_IS_BTN_IMG6 -Image7 HID_IS_BTN_IMG7 -Image8 HID_IS_BTN_IMG8 -Image9 HID_IS_BTN_IMG9 -Image10 HID_IS_BTN_IMG10 -Image11 HID_IS_BTN_IMG11 -Image12 HID_IS_BTN_IMG12 -Image13 HID_IS_BTN_IMG13 -Image14 HID_IS_BTN_IMG14 -Image15 HID_IS_BTN_IMG15 -Image16 HID_IS_BTN_IMG16 -Image17 HID_IS_BTN_IMG17 -Image18 HID_IS_BTN_IMG18 -Image19 HID_IS_BTN_IMG19 -Image20 HID_IS_BTN_IMG20 -Image21 HID_IS_BTN_IMG21 -Image22 HID_IS_BTN_IMG22 -Image23 HID_IS_BTN_IMG23 -Image24 HID_IS_BTN_IMG24 -Image25 HID_IS_BTN_IMG25 -Image26 HID_IS_BTN_IMG26 -Image27 HID_IS_BTN_IMG27 -Image28 HID_IS_BTN_IMG28 -Image29 HID_IS_BTN_IMG29 -Image30 HID_IS_BTN_IMG30 -Image31 HID_IS_BTN_IMG31 -Image32 HID_IS_BTN_IMG32 -None HID_IS_BTN_NONE -CancelB HID_IS_BTN_CANCEL - -*Indexes dbaccess:ModalDialog:DLG_DBASE_INDEXES -Table dbaccess:ComboBox:DLG_DBASE_INDEXES:CB_TABLES -TableIndexes dbaccess:ListBox:DLG_DBASE_INDEXES:LB_TABLEINDEXES -FreeIndexes dbaccess:ListBox:DLG_DBASE_INDEXES:LB_FREEINDEXES -Add dbaccess:ImageButton:DLG_DBASE_INDEXES:IB_ADD -Remove dbaccess:ImageButton:DLG_DBASE_INDEXES:IB_REMOVE -AddAll dbaccess:ImageButton:DLG_DBASE_INDEXES:IB_ADDALL -RemoveAll dbaccess:ImageButton:DLG_DBASE_INDEXES:IB_REMOVEALL - -*InsertAxesDialog SID_INSERT_AXIS -MajorXaxis HID_SCH_CB_XAXIS -MajorYaxis HID_SCH_CB_YAXIS -MajorZaxis HID_SCH_CB_ZAXIS -SecondaryXaxis HID_SCH_CB_SECONDARY_XAXIS -SecondaryYaxis HID_SCH_CB_SECONDARY_YAXIS -SecondaryZaxis HID_SCH_CB_SECONDARY_ZAXIS - -*InsertDataColumns HID_AP_INSERT_DB_SEL -TableBtn sw:RadioButton:DLG_AP_INSERT_DB_SEL:RB_AS_TABLE -FieldsBtn sw:RadioButton:DLG_AP_INSERT_DB_SEL:RB_AS_FIELD -TextBtn sw:RadioButton:DLG_AP_INSERT_DB_SEL:RB_AS_TEXT -DatabaseColumnsTable sw:ListBox:DLG_AP_INSERT_DB_SEL:LB_TBL_DB_COLUMN -DatabaseColumns sw:ListBox:DLG_AP_INSERT_DB_SEL:LB_TXT_DB_COLUMN -FromDatabase sw:RadioButton:DLG_AP_INSERT_DB_SEL:RB_DBFMT_FROM_DB -FromUser sw:RadioButton:DLG_AP_INSERT_DB_SEL:RB_DBFMT_FROM_USR -FromUserList sw:ListBox:DLG_AP_INSERT_DB_SEL:LB_DBFMT_FROM_USR -ToEditButton sw:ImageButton:DLG_AP_INSERT_DB_SEL:IB_DBCOL_TOEDIT -FieldsInList sw:MultiLineEdit:DLG_AP_INSERT_DB_SEL:ED_DB_TEXT -ParagraphStyle sw:ListBox:DLG_AP_INSERT_DB_SEL:LB_DB_PARA_COLL -AllToButton sw:ImageButton:DLG_AP_INSERT_DB_SEL:IB_DBCOL_ALL_TO -OneToButton sw:ImageButton:DLG_AP_INSERT_DB_SEL:IB_DBCOL_ONE_TO -OneFromButton sw:ImageButton:DLG_AP_INSERT_DB_SEL:IB_DBCOL_ONE_FROM -AllFromButton sw:ImageButton:DLG_AP_INSERT_DB_SEL:IB_DBCOL_ALL_FROM -TableColumns sw:ListBox:DLG_AP_INSERT_DB_SEL:LB_TABLE_COL -InsertTableHeading sw:CheckBox:DLG_AP_INSERT_DB_SEL:CB_TABLE_HEADON -ApplyColumnName sw:RadioButton:DLG_AP_INSERT_DB_SEL:RB_HEADL_COLNMS -CreateRowOnly sw:RadioButton:DLG_AP_INSERT_DB_SEL:RB_HEADL_EMPTY -Properties sw:PushButton:DLG_AP_INSERT_DB_SEL:PB_TBL_FORMAT -AutoFormat sw:PushButton:DLG_AP_INSERT_DB_SEL:PB_TBL_AUTOFMT - -*InsertLabelsDialog SID_INSERT_DESCRIPTION -ShowValue HID_SCH_DATALABEL_VALUE -AsNumber HID_SCH_DATALABEL_NUMBER -AsPercentage HID_SCH_DATALABEL_PERCENT -ShowLabelText HID_SCH_DATALABEL_TEXT -ShowLegendIconWithLabel HID_SCH_DATALABEL_SYMBOL - -*InsertGridsDialog SID_INSERT_GRIDS -MainGridXaxis HID_SCH_CB_XGRID -MainGridYaxis HID_SCH_CB_YGRID -MainGridZaxis HID_SCH_CB_ZGRID -MinorGridXaxis HID_SCH_CB_SECONDARY_XGRID -MinorGridYaxis HID_SCH_CB_SECONDARY_YGRID -MinorGridZaxis HID_SCH_CB_SECONDARY_ZGRID +*IconSets sym:WIZARDS_HID_IS +Image1 sym:WIZARDS_HID_IS_BTN_IMG1 +Image2 sym:WIZARDS_HID_IS_BTN_IMG2 +Image3 sym:WIZARDS_HID_IS_BTN_IMG3 +Image4 sym:WIZARDS_HID_IS_BTN_IMG4 +Image5 sym:WIZARDS_HID_IS_BTN_IMG5 +Image6 sym:WIZARDS_HID_IS_BTN_IMG6 +Image7 sym:WIZARDS_HID_IS_BTN_IMG7 +Image8 sym:WIZARDS_HID_IS_BTN_IMG8 +Image9 sym:WIZARDS_HID_IS_BTN_IMG9 +Image10 sym:WIZARDS_HID_IS_BTN_IMG10 +Image11 sym:WIZARDS_HID_IS_BTN_IMG11 +Image12 sym:WIZARDS_HID_IS_BTN_IMG12 +Image13 sym:WIZARDS_HID_IS_BTN_IMG13 +Image14 sym:WIZARDS_HID_IS_BTN_IMG14 +Image15 sym:WIZARDS_HID_IS_BTN_IMG15 +Image16 sym:WIZARDS_HID_IS_BTN_IMG16 +Image17 sym:WIZARDS_HID_IS_BTN_IMG17 +Image18 sym:WIZARDS_HID_IS_BTN_IMG18 +Image19 sym:WIZARDS_HID_IS_BTN_IMG19 +Image20 sym:WIZARDS_HID_IS_BTN_IMG20 +Image21 sym:WIZARDS_HID_IS_BTN_IMG21 +Image22 sym:WIZARDS_HID_IS_BTN_IMG22 +Image23 sym:WIZARDS_HID_IS_BTN_IMG23 +Image24 sym:WIZARDS_HID_IS_BTN_IMG24 +Image25 sym:WIZARDS_HID_IS_BTN_IMG25 +Image26 sym:WIZARDS_HID_IS_BTN_IMG26 +Image27 sym:WIZARDS_HID_IS_BTN_IMG27 +Image28 sym:WIZARDS_HID_IS_BTN_IMG28 +Image29 sym:WIZARDS_HID_IS_BTN_IMG29 +Image30 sym:WIZARDS_HID_IS_BTN_IMG30 +Image31 sym:WIZARDS_HID_IS_BTN_IMG31 +Image32 sym:WIZARDS_HID_IS_BTN_IMG32 +None sym:WIZARDS_HID_IS_BTN_NONE +CancelB sym:WIZARDS_HID_IS_BTN_CANCEL + +*Indexes sym:dbaccess:ModalDialog:DLG_DBASE_INDEXES +Table sym:dbaccess:ComboBox:DLG_DBASE_INDEXES:CB_TABLES +TableIndexes sym:dbaccess:ListBox:DLG_DBASE_INDEXES:LB_TABLEINDEXES +FreeIndexes sym:dbaccess:ListBox:DLG_DBASE_INDEXES:LB_FREEINDEXES +Add sym:dbaccess:ImageButton:DLG_DBASE_INDEXES:IB_ADD +Remove sym:dbaccess:ImageButton:DLG_DBASE_INDEXES:IB_REMOVE +AddAll sym:dbaccess:ImageButton:DLG_DBASE_INDEXES:IB_ADDALL +RemoveAll sym:dbaccess:ImageButton:DLG_DBASE_INDEXES:IB_REMOVEALL + +*InsertAxesDialog sym:CHART2_HID_INSERT_AXIS +MajorXaxis sym:CHART2_HID_SCH_CB_XAXIS +MajorYaxis sym:CHART2_HID_SCH_CB_YAXIS +MajorZaxis sym:CHART2_HID_SCH_CB_ZAXIS +SecondaryXaxis sym:CHART2_HID_SCH_CB_SECONDARY_XAXIS +SecondaryYaxis sym:CHART2_HID_SCH_CB_SECONDARY_YAXIS +SecondaryZaxis sym:CHART2_HID_SCH_CB_SECONDARY_ZAXIS + +*InsertDataColumns sym:SW_HID_AP_INSERT_DB_SEL +TableBtn sym:sw:RadioButton:DLG_AP_INSERT_DB_SEL:RB_AS_TABLE +FieldsBtn sym:sw:RadioButton:DLG_AP_INSERT_DB_SEL:RB_AS_FIELD +TextBtn sym:sw:RadioButton:DLG_AP_INSERT_DB_SEL:RB_AS_TEXT +DatabaseColumnsTable sym:sw:ListBox:DLG_AP_INSERT_DB_SEL:LB_TBL_DB_COLUMN +DatabaseColumns sym:sw:ListBox:DLG_AP_INSERT_DB_SEL:LB_TXT_DB_COLUMN +FromDatabase sym:sw:RadioButton:DLG_AP_INSERT_DB_SEL:RB_DBFMT_FROM_DB +FromUser sym:sw:RadioButton:DLG_AP_INSERT_DB_SEL:RB_DBFMT_FROM_USR +FromUserList sym:sw:ListBox:DLG_AP_INSERT_DB_SEL:LB_DBFMT_FROM_USR +ToEditButton sym:sw:ImageButton:DLG_AP_INSERT_DB_SEL:IB_DBCOL_TOEDIT +FieldsInList sym:sw:MultiLineEdit:DLG_AP_INSERT_DB_SEL:ED_DB_TEXT +ParagraphStyle sym:sw:ListBox:DLG_AP_INSERT_DB_SEL:LB_DB_PARA_COLL +AllToButton sym:sw:ImageButton:DLG_AP_INSERT_DB_SEL:IB_DBCOL_ALL_TO +OneToButton sym:sw:ImageButton:DLG_AP_INSERT_DB_SEL:IB_DBCOL_ONE_TO +OneFromButton sym:sw:ImageButton:DLG_AP_INSERT_DB_SEL:IB_DBCOL_ONE_FROM +AllFromButton sym:sw:ImageButton:DLG_AP_INSERT_DB_SEL:IB_DBCOL_ALL_FROM +TableColumns sym:sw:ListBox:DLG_AP_INSERT_DB_SEL:LB_TABLE_COL +InsertTableHeading sym:sw:CheckBox:DLG_AP_INSERT_DB_SEL:CB_TABLE_HEADON +ApplyColumnName sym:sw:RadioButton:DLG_AP_INSERT_DB_SEL:RB_HEADL_COLNMS +CreateRowOnly sym:sw:RadioButton:DLG_AP_INSERT_DB_SEL:RB_HEADL_EMPTY +Properties sym:sw:PushButton:DLG_AP_INSERT_DB_SEL:PB_TBL_FORMAT +AutoFormat sym:sw:PushButton:DLG_AP_INSERT_DB_SEL:PB_TBL_AUTOFMT + +*InsertLabelsDialog sym:CHART2_HID_INSERT_DESCRIPTION +ShowValue sym:CHART2_HID_SCH_DATALABEL_VALUE +AsNumber sym:CHART2_HID_SCH_DATALABEL_NUMBER +AsPercentage sym:CHART2_HID_SCH_DATALABEL_PERCENT +ShowLabelText sym:CHART2_HID_SCH_DATALABEL_TEXT +ShowLegendIconWithLabel sym:CHART2_HID_SCH_DATALABEL_SYMBOL + +*InsertGridsDialog sym:CHART2_HID_INSERT_GRIDS +MainGridXaxis sym:CHART2_HID_SCH_CB_XGRID +MainGridYaxis sym:CHART2_HID_SCH_CB_YGRID +MainGridZaxis sym:CHART2_HID_SCH_CB_ZGRID +MinorGridXaxis sym:CHART2_HID_SCH_CB_SECONDARY_XGRID +MinorGridYaxis sym:CHART2_HID_SCH_CB_SECONDARY_YGRID +MinorGridZaxis sym:CHART2_HID_SCH_CB_SECONDARY_ZGRID -*InsertLegendDialog SID_INSERT_CHART_LEGEND -Display HID_SCH_LEGEND_SHOW -PositionLeft HID_SCH_LEGEND_POS_LEFT -PositionTop HID_SCH_LEGEND_POS_TOP -PositionRight HID_SCH_LEGEND_POS_RIGHT -PositionBottom HID_SCH_LEGEND_POS_BOTTOM - -*InsertPaste sd:ModalDialog:DLG_INSERT_PASTE -Before sd:RadioButton:DLG_INSERT_PASTE:RB_BEFORE -After sd:RadioButton:DLG_INSERT_PASTE:RB_AFTER +*InsertLegendDialog sym:CHART2_HID_INSERT_CHART_LEGEND +Display sym:CHART2_HID_SCH_LEGEND_SHOW +PositionLeft sym:CHART2_HID_SCH_LEGEND_POS_LEFT +PositionTop sym:CHART2_HID_SCH_LEGEND_POS_TOP +PositionRight sym:CHART2_HID_SCH_LEGEND_POS_RIGHT +PositionBottom sym:CHART2_HID_SCH_LEGEND_POS_BOTTOM + +*InsertPaste sym:sd:ModalDialog:DLG_INSERT_PASTE +Before sym:sd:RadioButton:DLG_INSERT_PASTE:RB_BEFORE +After sym:sd:RadioButton:DLG_INSERT_PASTE:RB_AFTER -*InsertTrendlinesDialog SID_INSERT_STATISTICS -None HID_SCH_TRENDLINE_RB_NONE -Linear HID_SCH_TRENDLINE_RB_LINEAR -Logarithmic HID_SCH_TRENDLINE_RB_LOGARITHMIC -Exponential HID_SCH_TRENDLINE_RB_EXPONENTIAL -Power HID_SCH_TRENDLINE_RB_POWER -ShowEquation HID_SCH_TRENDLINE_SHOW_EQUATION -ShowCorrelationCoefficient HID_SCH_TRENDLINE_SHOW_R_SQUARED - -*InsertTitleDialog SID_INSERT_TITLE -MainTitle HID_SCH_TITLE_MAIN -SubTitle HID_SCH_TITLE_SUB -TitleXaxis HID_SCH_TITLE_X -TitleYaxis HID_SCH_TITLE_Y -TitleZaxis HID_SCH_TITLE_Z -SecondTitleXaxis HID_SCH_TITLE_SECONDARY_X -SecondTitleYaxis HID_SCH_TITLE_SECONDARY_Y - - -*InsertYErrorBarsDLG chart2:ModalDialog:DLG_DATA_YERRORBAR -MeanValue HID_SCH_STATISTIK_MEANVALUE -NoFunction HID_SCH_STATISTIK_NO_ERROR -Variance HID_SCH_STATISTIK_VARIANT -StandardDeviation HID_SCH_STATISTIK_SIGMA -Percentage HID_SCH_STATISTIK_PERCENT -ErrorMargin HID_SCH_STATISTIK_BIGERROR -ConstantValue HID_SCH_STATISTIK_CONSTERROR -PercentageValue HID_SCH_STATISTIK_PERCENT_VALUE -ErrorMarginValue HID_SCH_STATISTIK_BIGERROR_VALUE -ConstantValuePlus HID_SCH_STATISTIK_PLUS_VALUE -ConstantValueMinus HID_SCH_STATISTIK_MINUS_VALUE -ErrorIndicator HID_SCH_CT_INDICATE +*InsertTrendlinesDialog sym:CHART2_HID_INSERT_STATISTICS +None sym:CHART2_HID_SCH_TRENDLINE_RB_NONE +Linear sym:CHART2_HID_SCH_TRENDLINE_RB_LINEAR +Logarithmic sym:CHART2_HID_SCH_TRENDLINE_RB_LOGARITHMIC +Exponential sym:CHART2_HID_SCH_TRENDLINE_RB_EXPONENTIAL +Power sym:CHART2_HID_SCH_TRENDLINE_RB_POWER +ShowEquation sym:CHART2_HID_SCH_TRENDLINE_SHOW_EQUATION +ShowCorrelationCoefficient sym:CHART2_HID_SCH_TRENDLINE_SHOW_R_SQUARED + +*InsertTitleDialog sym:CHART2_HID_INSERT_TITLE +MainTitle sym:CHART2_HID_SCH_TITLE_MAIN +SubTitle sym:CHART2_HID_SCH_TITLE_SUB +TitleXaxis sym:CHART2_HID_SCH_TITLE_X +TitleYaxis sym:CHART2_HID_SCH_TITLE_Y +TitleZaxis sym:CHART2_HID_SCH_TITLE_Z +SecondTitleXaxis sym:CHART2_HID_SCH_TITLE_SECONDARY_X +SecondTitleYaxis sym:CHART2_HID_SCH_TITLE_SECONDARY_Y + + +*InsertYErrorBarsDLG sym:chart2:ModalDialog:DLG_DATA_YERRORBAR +MeanValue sym:CHART2_HID_SCH_STATISTIK_MEANVALUE +NoFunction sym:CHART2_HID_SCH_STATISTIK_NO_ERROR +Variance sym:CHART2_HID_SCH_STATISTIK_VARIANT +StandardDeviation sym:CHART2_HID_SCH_STATISTIK_SIGMA +Percentage sym:CHART2_HID_SCH_STATISTIK_PERCENT +ErrorMargin sym:CHART2_HID_SCH_STATISTIK_BIGERROR +ConstantValue sym:CHART2_HID_SCH_STATISTIK_CONSTERROR +PercentageValue sym:CHART2_HID_SCH_STATISTIK_PERCENT_VALUE +ErrorMarginValue sym:CHART2_HID_SCH_STATISTIK_BIGERROR_VALUE +ConstantValuePlus sym:CHART2_HID_SCH_STATISTIK_PLUS_VALUE +ConstantValueMinus sym:CHART2_HID_SCH_STATISTIK_MINUS_VALUE +ErrorIndicator sym:CHART2_HID_SCH_CT_INDICATE -*JavaClassPath HID_OPTIONS_JAVA_CLASSPATH -ClassPath cui:ListBox:RID_SVXDLG_JAVA_CLASSPATH:LB_PATH -AddArchive cui:PushButton:RID_SVXDLG_JAVA_CLASSPATH:PB_ADDARCHIVE -AddFolder cui:PushButton:RID_SVXDLG_JAVA_CLASSPATH:PB_ADDPATH -Remove cui:PushButton:RID_SVXDLG_JAVA_CLASSPATH:PB_REMOVE_PATH - -*JavaStartParameter HID_OPTIONS_JAVA_PARAMETER -StartParameter cui:Edit:RID_SVXDLG_JAVA_PARAMETER:ED_PARAMETER -Assign cui:PushButton:RID_SVXDLG_JAVA_PARAMETER:PB_ASSIGN -AssignedStartParameters cui:ListBox:RID_SVXDLG_JAVA_PARAMETER:LB_ASSIGNED -Remove cui:PushButton:RID_SVXDLG_JAVA_PARAMETER:PB_REMOVE - -*JoinProperties HID_DLG_QRY_JOIN -Type HID_DLG_QRY_JOINTYPE -QueryHelpText HID_DLG_QRY_HELPTEXT -FielsInvolved HID_RELDLG_KEYFIELDS -LeftFieldCell HID_RELATIONDIALOG_LEFTFIELDCELL -RightFieldCell HID_RELATIONDIALOG_RIGHTFIELDCELL - -*JPGOptions svtools:ModalDialog:DLG_EXPORT -Exportwidth svtools:MetricField:DLG_EXPORT:MF_SIZEX -Exportmeasurement svtools:ListBox:DLG_EXPORT:LB_SIZEX -Exportheight svtools:MetricField:DLG_EXPORT:MF_SIZEY -Resolution svtools:NumericField:DLG_EXPORT:NF_RESOLUTION -Resolutionmeasurement svtools:ListBox:DLG_EXPORT:LB_RESOLUTION -Colordepth svtools:ListBox:DLG_EXPORT:LB_COLOR_DEPTH -Quality svtools:NumericField:DLG_EXPORT:NF_COMPRESSION - -*LabelFieldSelection extensions:ModalDialog:RID_DLG_SELECTLABELCONTROL - -*LicenseAgreementDialog HID_LICENSEDIALOG -LicenseText framework:MultiLineEdit:DLG_LICENSE:ML_LICENSE -ScrollBtn framework:PushButton:DLG_LICENSE:PB_PAGEDOWN -DeclineBtn framework:PushButton:DLG_LICENSE:PB_DECLINE -AcceptBtn framework:PushButton:DLG_LICENSE:PB_ACCEPT - -*FormLinkDialog extensions:ModalDialog:RID_DLG_FORMLINKS -LinkDetail1 UID_FIELDLINK_DETAIL1 -LinkMaster1 UID_FIELDLINK_MASTER1 -LinkDetail2 UID_FIELDLINK_DETAIL2 -LinkMaster2 UID_FIELDLINK_MASTER2 -LinkDetail3 UID_FIELDLINK_DETAIL3 -LinkMaster3 UID_FIELDLINK_MASTER3 -LinkDetail4 UID_FIELDLINK_DETAIL4 -LinkMaster4 UID_FIELDLINK_MASTER4 -SuggestBtn extensions:PushButton:RID_DLG_FORMLINKS:PB_SUGGEST - -*MacroMigration dbaccess:ModalDialog:DLG_MACRO_MIGRATION -DatabaseFile SID_OPENURL -Browse dbaccess:PushButton:TP_SAVE_DBDOC_AS:PB_BROWSE_SAVE_AS_LOCATION -BackButton HID_WIZARD_PREVIOUS -NextButton HID_WIZARD_NEXT -BackupLocation HID_MACRO_MIGRATION_BACKUP_LOCATION - -*MailMerge HID_MAIL_MERGE_CREATE_FROM -ThisDocument sw:RadioButton:DLG_MERGE_CREATE:RB_THISDOC -UseTemplate sw:RadioButton:DLG_MERGE_CREATE:RB_TEMPLATE +*JavaClassPath sym:CUI_HID_OPTIONS_JAVA_CLASSPATH +ClassPath sym:cui:ListBox:RID_SVXDLG_JAVA_CLASSPATH:LB_PATH +AddArchive sym:cui:PushButton:RID_SVXDLG_JAVA_CLASSPATH:PB_ADDARCHIVE +AddFolder sym:cui:PushButton:RID_SVXDLG_JAVA_CLASSPATH:PB_ADDPATH +Remove sym:cui:PushButton:RID_SVXDLG_JAVA_CLASSPATH:PB_REMOVE_PATH + +*JavaStartParameter sym:CUI_HID_OPTIONS_JAVA_PARAMETER +StartParameter sym:cui:Edit:RID_SVXDLG_JAVA_PARAMETER:ED_PARAMETER +Assign sym:cui:PushButton:RID_SVXDLG_JAVA_PARAMETER:PB_ASSIGN +AssignedStartParameters sym:cui:ListBox:RID_SVXDLG_JAVA_PARAMETER:LB_ASSIGNED +Remove sym:cui:PushButton:RID_SVXDLG_JAVA_PARAMETER:PB_REMOVE + +*JoinProperties sym:DBACCESS_HID_DLG_QRY_JOIN +Type sym:DBACCESS_HID_DLG_QRY_JOINTYPE +QueryHelpText sym:DBACCESS_HID_DLG_QRY_HELPTEXT +FielsInvolved sym:DBACCESS_HID_RELDLG_KEYFIELDS +LeftFieldCell sym:DBACCESS_HID_RELATIONDIALOG_LEFTFIELDCELL +RightFieldCell sym:DBACCESS_HID_RELATIONDIALOG_RIGHTFIELDCELL + + +*LabelFieldSelection sym:extensions:ModalDialog:RID_DLG_SELECTLABELCONTROL +CBNoAssignment sym:extensions:CheckBox:RID_DLG_SELECTLABELCONTROL:1 + +*JPGOptions sym:svtools:ModalDialog:DLG_EXPORT +Exportwidth sym:svtools:MetricField:DLG_EXPORT:MF_SIZEX +Exportmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_SIZEX +Exportheight sym:svtools:MetricField:DLG_EXPORT:MF_SIZEY +Resolution sym:svtools:NumericField:DLG_EXPORT:NF_RESOLUTION +Resolutionmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_RESOLUTION +Colordepth sym:svtools:ListBox:DLG_EXPORT:LB_COLOR_DEPTH +Quality sym:svtools:NumericField:DLG_EXPORT:NF_COMPRESSION + +*LicenseAgreementDialog sym:FWK_HID_LICENSEDIALOG +LicenseText sym:framework:MultiLineEdit:DLG_LICENSE:ML_LICENSE +ScrollBtn sym:framework:PushButton:DLG_LICENSE:PB_PAGEDOWN +DeclineBtn sym:framework:PushButton:DLG_LICENSE:PB_DECLINE +AcceptBtn sym:framework:PushButton:DLG_LICENSE:PB_ACCEPT + +*FormLinkDialog sym:extensions:ModalDialog:RID_DLG_FORMLINKS +LinkDetail1 sym:EXTENSIONS_UID_FIELDLINK_DETAIL1 +LinkMaster1 sym:EXTENSIONS_UID_FIELDLINK_MASTER1 +LinkDetail2 sym:EXTENSIONS_UID_FIELDLINK_DETAIL2 +LinkMaster2 sym:EXTENSIONS_UID_FIELDLINK_MASTER2 +LinkDetail3 sym:EXTENSIONS_UID_FIELDLINK_DETAIL3 +LinkMaster3 sym:EXTENSIONS_UID_FIELDLINK_MASTER3 +LinkDetail4 sym:EXTENSIONS_UID_FIELDLINK_DETAIL4 +LinkMaster4 sym:EXTENSIONS_UID_FIELDLINK_MASTER4 +SuggestBtn sym:extensions:PushButton:RID_DLG_FORMLINKS:PB_SUGGEST + +*MacroMigration sym:dbaccess:ModalDialog:DLG_MACRO_MIGRATION +DatabaseFile .uno:OpenUrl +Browse sym:dbaccess:PushButton:TP_SAVE_DBDOC_AS:PB_BROWSE_SAVE_AS_LOCATION +BackButton sym:SVT_HID_WIZARD_PREVIOUS +NextButton sym:SVT_HID_WIZARD_NEXT +BackupLocation sym:DBACCESS_HID_MACRO_MIGRATION_BACKUP_LOCATION + +*MailMerge sym:SW_HID_MAIL_MERGE_CREATE_FROM +ThisDocument sym:sw:RadioButton:DLG_MERGE_CREATE:RB_THISDOC +UseTemplate sym:sw:RadioButton:DLG_MERGE_CREATE:RB_TEMPLATE *MailMergeFloat active -ReturnToMailMergeWizard HID_RETURN_TO_MAILMERGE - -*MailMergeInsertFields HID_MAIL_MERGE_INSERT_FIELDS -UseExisting sw:RadioButton:DLG_MERGE_FIELD_CONNECTIONS:RB_USEEXISTING -CreateNewConnection sw:RadioButton:DLG_MERGE_FIELD_CONNECTIONS:RB_CREATENEW - -*ManageNamespaceDLG HID_XFORMS_MANAGENAMESPACE_DLG -Prefix svx:Edit:RID_SVXDLG_MANAGE_NAMESPACE:ED_PREFIX -URL svx:Edit:RID_SVXDLG_MANAGE_NAMESPACE:ED_URL - -*MailMergeWizard sw:ModalDialog:DLG_MAILMERGEWIZARD -BackButton HID_MM_PREV_PAGE -NextButton HID_MM_NEXT_PAGE - -*ManageUILanguages HID_BASICIDE_MANAGE_LANGUAGE -PresentLanguages basctl:ListBox:RID_DLG_MANAGE_LANGUAGE:LB_LANGUAGE -Add basctl:PushButton:RID_DLG_MANAGE_LANGUAGE:PB_ADD_LANG -Delete basctl:PushButton:RID_DLG_MANAGE_LANGUAGE:PB_DEL_LANG -Default basctl:PushButton:RID_DLG_MANAGE_LANGUAGE:PB_MAKE_DEFAULT - -*MasterPasswordDefine HID_DLG_MASTERPASSWORD_CRT -Password1 uui:Edit:DLG_UUI_MASTERPASSWORD_CRT:ED_MASTERPASSWORD_CRT -Password2 uui:Edit:DLG_UUI_MASTERPASSWORD_CRT:ED_MASTERPASSWORD_REPEAT - -*MasterPasswordEnter HID_DLG_MASTERPASSWORD_UUI -Password uui:Edit:DLG_UUI_MASTERPASSWORD:ED_MASTERPASSWORD - -*MatchFields HID_MM_ASSIGNFIELDS -Title HID_MM_HEADER_0 -FirstName HID_MM_HEADER_1 -LastName HID_MM_HEADER_2 -Company HID_MM_HEADER_3 -Address1 HID_MM_HEADER_4 -Address2 HID_MM_HEADER_5 -City HID_MM_HEADER_6 -State HID_MM_HEADER_7 -ZIP HID_MM_HEADER_8 -Country HID_MM_HEADER_9 -PhonePrivate HID_MM_HEADER_10 -PhoneBusiness HID_MM_HEADER_11 -Email HID_MM_HEADER_12 -Gender HID_MM_HEADER_13 - -*METOptions svtools:ModalDialog:DLG_EXPORT -Exportwidth svtools:MetricField:DLG_EXPORT:MF_SIZEX -Exportmeasurement svtools:ListBox:DLG_EXPORT:LB_SIZEX -Exportheight svtools:MetricField:DLG_EXPORT:MF_SIZEY - -*Mplayer HID_AVMEDIA_PLAYERWINDOW -Mopen HID_AVMEDIA_TOOLBOXITEM_OPEN -mInsert HID_AVMEDIA_TOOLBOXITEM_INSERT -mPlay HID_AVMEDIA_TOOLBOXITEM_PLAY -mPause HID_AVMEDIA_TOOLBOXITEM_PAUSE -mStop HID_AVMEDIA_TOOLBOXITEM_STOP -mLoop HID_AVMEDIA_TOOLBOXITEM_LOOP -mTimeslider HID_AVMEDIA_TIMESLIDER -mMute HID_AVMEDIA_TOOLBOXITEM_MUTE -mVolume HID_AVMEDIA_VOLUMESLIDER -mZoomlistbox HID_AVMEDIA_ZOOMLISTBOX -mTimeedit HID_AVMEDIA_TIMEEDIT - -*MenuOrganiser HID_SVX_CONFIG_MENU_ORGANIZER -MenuName cui:Edit:MD_MENU_ORGANISER:EDIT_MENU_NAME -ButtonUp cui:ImageButton:MD_MENU_ORGANISER:BTN_MENU_UP -ButtonDown cui:ImageButton:MD_MENU_ORGANISER:BTN_MENU_DOWN - -*ModifyLink sfx2:ModalDialog:MD_DDE_LINKEDIT -ModifyDDEApplication sfx2:Edit:MD_DDE_LINKEDIT:ED_DDE_APP -ModifyDDEFile sfx2:Edit:MD_DDE_LINKEDIT:ED_DDE_TOPIC -ModifyDDECategory sfx2:Edit:MD_DDE_LINKEDIT:ED_DDE_ITEM - -*Mosaic SID_GRFFILTER_MOSAIC -Width cui:MetricField:RID_SVX_GRFFILTER_DLG_MOSAIC:DLG_FILTERMOSAIC_MTR_WIDTH -Height cui:MetricField:RID_SVX_GRFFILTER_DLG_MOSAIC:DLG_FILTERMOSAIC_MTR_HEIGHT -EnhanceEdges cui:CheckBox:RID_SVX_GRFFILTER_DLG_MOSAIC:DLG_FILTERMOSAIC_CBX_EDGES - -*NewAddressList HID_MM_CREATEADDRESSLIST -New sw:PushButton:DLG_MM_CREATEADDRESSLIST:PB_NEW -Delete sw:PushButton:DLG_MM_CREATEADDRESSLIST:PB_DELETE -Find sw:PushButton:DLG_MM_CREATEADDRESSLIST:PB_FIND -Customize sw:PushButton:DLG_MM_CREATEADDRESSLIST:PB_CUSTOMIZE -ShowFirst sw:PushButton:DLG_MM_CREATEADDRESSLIST:PB_START -ShowPrevious sw:PushButton:DLG_MM_CREATEADDRESSLIST:PB_PREV -ShowNumber sw:NumericField:DLG_MM_CREATEADDRESSLIST:NF_SETNO -ShowNext sw:PushButton:DLG_MM_CREATEADDRESSLIST:PB_NEXT -ShowLast sw:PushButton:DLG_MM_CREATEADDRESSLIST:PB_END - -*NewAddressBlock HID_MM_CUSTOMIZEADDRESSBLOCK -SelectField HID_MM_CUSTOMFIELDS -Add sw:ImageButton:DLG_MM_CUSTOMIZEADDRESSBLOCK:IB_INSERTFIELD -Remove sw:ImageButton:DLG_MM_CUSTOMIZEADDRESSBLOCK:IB_REMOVEFIELD -Arrange sw:MultiLineEdit:DLG_MM_CUSTOMIZEADDRESSBLOCK:ED_DRAG -MoveUp sw:ImageButton:DLG_MM_CUSTOMIZEADDRESSBLOCK:IB_UP -MoveLeft sw:ImageButton:DLG_MM_CUSTOMIZEADDRESSBLOCK:IB_LEFT -MoveRight sw:ImageButton:DLG_MM_CUSTOMIZEADDRESSBLOCK:IB_RIGHT -MoveDown sw:ImageButton:DLG_MM_CUSTOMIZEADDRESSBLOCK:IB_DOWN -Select sw:ComboBox:DLG_MM_CUSTOMIZEADDRESSBLOCK:CB_FIELD - -*NewToolbar cui:ModalDialog:MD_NEW_TOOLBAR -ToolbarName cui:Edit:MD_NEW_TOOLBAR:EDT_STRING -SaveIn cui:ListBox:MD_NEW_TOOLBAR:LB_SAVEIN - -*NewsletterLayout HID_DLGNEWSLTR_DIALOG -Newsletter HID_DLGNEWSLTR_OPTSTANDARDLAYOUT -CommemorativePublication HID_DLGNEWSLTR_OPTPARTYLAYOUT -Brochure HID_DLGNEWSLTR_OPTBROCHURELAYOUT -Single HID_DLGNEWSLTR_OPTSINGLESIDED -Duplex HID_DLGNEWSLTR_OPTDOUBLESIDED -OKButton HID_DLGNEWSLTR_CMDGOON - -*OLEObjektInsert SID_INSERT_OBJECT -NeuErstellen cui:RADIOBUTTON:MD_INSERT_OLEOBJECT:RB_NEW_OBJECT -AusDateiErstellen cui:RADIOBUTTON:MD_INSERT_OLEOBJECT:RB_OBJECT_FROMFILE -Objekttyp cui:LISTBOX:MD_INSERT_OLEOBJECT:LB_OBJECTTYPE -OleDatei cui:EDIT:MD_INSERT_OLEOBJECT:ED_FILEPATH -Verknuepfen cui:CHECKBOX:MD_INSERT_OLEOBJECT:CB_FILELINK -Durchsuchen cui:PUSHBUTTON:MD_INSERT_OLEOBJECT:BTN_FILEPATH - -*InsertTableImpress cui:ModalDialog:RID_SVX_NEWTABLE_DLG -NumberOfColumns cui:NumericField:RID_SVX_NEWTABLE_DLG:NF_COLUMNS -NumberOfRows cui:NumericField:RID_SVX_NEWTABLE_DLG:NF_ROWS - -*TableDesign sd:ModalDialog:DLG_TABLEDESIGNPANE +ReturnToMailMergeWizard sym:SW_HID_RETURN_TO_MAILMERGE + +*MailMergeInsertFields sym:SW_HID_MAIL_MERGE_INSERT_FIELDS +UseExisting sym:sw:RadioButton:DLG_MERGE_FIELD_CONNECTIONS:RB_USEEXISTING +CreateNewConnection sym:sw:RadioButton:DLG_MERGE_FIELD_CONNECTIONS:RB_CREATENEW + +*ManageNamespaceDLG sym:SVX_HID_XFORMS_MANAGENAMESPACE_DLG +Prefix sym:svx:Edit:RID_SVXDLG_MANAGE_NAMESPACE:ED_PREFIX +URL sym:svx:Edit:RID_SVXDLG_MANAGE_NAMESPACE:ED_URL + +*MailMergeWizard sym:sw:ModalDialog:DLG_MAILMERGEWIZARD +BackButton sym:SW_HID_MM_PREV_PAGE +NextButton sym:SW_HID_MM_NEXT_PAGE + +*ManageUILanguages sym:BASCTL_HID_BASICIDE_MANAGE_LANGUAGE +PresentLanguages sym:basctl:ListBox:RID_DLG_MANAGE_LANGUAGE:LB_LANGUAGE +Add sym:basctl:PushButton:RID_DLG_MANAGE_LANGUAGE:PB_ADD_LANG +Delete sym:basctl:PushButton:RID_DLG_MANAGE_LANGUAGE:PB_DEL_LANG +Default sym:basctl:PushButton:RID_DLG_MANAGE_LANGUAGE:PB_MAKE_DEFAULT + +*MasterPasswordDefine sym:UUI_HID_DLG_MASTERPASSWORD_CRT +Password1 sym:uui:Edit:DLG_UUI_MASTERPASSWORD_CRT:ED_MASTERPASSWORD_CRT +Password2 sym:uui:Edit:DLG_UUI_MASTERPASSWORD_CRT:ED_MASTERPASSWORD_REPEAT + +*MasterPasswordEnter sym:UUI_HID_DLG_MASTERPASSWORD_UUI +Password sym:uui:Edit:DLG_UUI_MASTERPASSWORD:ED_MASTERPASSWORD + +*MatchFields sym:SW_HID_MM_ASSIGNFIELDS +Title sym:SW_HID_MM_HEADER_0 +FirstName sym:SW_HID_MM_HEADER_1 +LastName sym:SW_HID_MM_HEADER_2 +Company sym:SW_HID_MM_HEADER_3 +Address1 sym:SW_HID_MM_HEADER_4 +Address2 sym:SW_HID_MM_HEADER_5 +City sym:SW_HID_MM_HEADER_6 +State sym:SW_HID_MM_HEADER_7 +ZIP sym:SW_HID_MM_HEADER_8 +Country sym:SW_HID_MM_HEADER_9 +PhonePrivate sym:SW_HID_MM_HEADER_10 +PhoneBusiness sym:SW_HID_MM_HEADER_11 +Email sym:SW_HID_MM_HEADER_12 +Gender sym:SW_HID_MM_HEADER_13 + + +*Mplayer sym:AVMEDIA_HID_AVMEDIA_PLAYERWINDOW +Mopen sym:AVMEDIA_HID_AVMEDIA_TOOLBOXITEM_OPEN +mInsert sym:AVMEDIA_HID_AVMEDIA_TOOLBOXITEM_INSERT +mPlay sym:AVMEDIA_HID_AVMEDIA_TOOLBOXITEM_PLAY +mPause sym:AVMEDIA_HID_AVMEDIA_TOOLBOXITEM_PAUSE +mStop sym:AVMEDIA_HID_AVMEDIA_TOOLBOXITEM_STOP +mLoop sym:AVMEDIA_HID_AVMEDIA_TOOLBOXITEM_LOOP +mTimeslider sym:AVMEDIA_HID_AVMEDIA_TIMESLIDER +mMute sym:AVMEDIA_HID_AVMEDIA_TOOLBOXITEM_MUTE +mVolume sym:AVMEDIA_HID_AVMEDIA_VOLUMESLIDER +mZoomlistbox sym:AVMEDIA_HID_AVMEDIA_ZOOMLISTBOX +mTimeedit sym:AVMEDIA_HID_AVMEDIA_TIMEEDIT + +*METOptions sym:svtools:ModalDialog:DLG_EXPORT +Exportwidth sym:svtools:MetricField:DLG_EXPORT:MF_SIZEX +Exportmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_SIZEX +Exportheight sym:svtools:MetricField:DLG_EXPORT:MF_SIZEY + +*MenuOrganiser sym:CUI_HID_SVX_CONFIG_MENU_ORGANIZER +MenuName sym:cui:Edit:MD_MENU_ORGANISER:EDIT_MENU_NAME +ButtonUp sym:cui:ImageButton:MD_MENU_ORGANISER:BTN_MENU_UP +ButtonDown sym:cui:ImageButton:MD_MENU_ORGANISER:BTN_MENU_DOWN + +*ModifyLink sym:sfx2:ModalDialog:MD_DDE_LINKEDIT +ModifyDDEApplication sym:sfx2:Edit:MD_DDE_LINKEDIT:ED_DDE_APP +ModifyDDEFile sym:sfx2:Edit:MD_DDE_LINKEDIT:ED_DDE_TOPIC +ModifyDDECategory sym:sfx2:Edit:MD_DDE_LINKEDIT:ED_DDE_ITEM + +*Mosaic .uno:GraphicFilterMosaic +Width sym:cui:MetricField:RID_SVX_GRFFILTER_DLG_MOSAIC:DLG_FILTERMOSAIC_MTR_WIDTH +Height sym:cui:MetricField:RID_SVX_GRFFILTER_DLG_MOSAIC:DLG_FILTERMOSAIC_MTR_HEIGHT +EnhanceEdges sym:cui:CheckBox:RID_SVX_GRFFILTER_DLG_MOSAIC:DLG_FILTERMOSAIC_CBX_EDGES + +*NewAddressList sym:SW_HID_MM_CREATEADDRESSLIST +New sym:sw:PushButton:DLG_MM_CREATEADDRESSLIST:PB_NEW +Delete sym:sw:PushButton:DLG_MM_CREATEADDRESSLIST:PB_DELETE +Find sym:sw:PushButton:DLG_MM_CREATEADDRESSLIST:PB_FIND +Customize sym:sw:PushButton:DLG_MM_CREATEADDRESSLIST:PB_CUSTOMIZE +ShowFirst sym:sw:PushButton:DLG_MM_CREATEADDRESSLIST:PB_START +ShowPrevious sym:sw:PushButton:DLG_MM_CREATEADDRESSLIST:PB_PREV +ShowNumber sym:sw:NumericField:DLG_MM_CREATEADDRESSLIST:NF_SETNO +ShowNext sym:sw:PushButton:DLG_MM_CREATEADDRESSLIST:PB_NEXT +ShowLast sym:sw:PushButton:DLG_MM_CREATEADDRESSLIST:PB_END + +*NewAddressBlock sym:SW_HID_MM_CUSTOMIZEADDRESSBLOCK +SelectField sym:SW_HID_MM_CUSTOMFIELDS +Add sym:sw:ImageButton:DLG_MM_CUSTOMIZEADDRESSBLOCK:IB_INSERTFIELD +Remove sym:sw:ImageButton:DLG_MM_CUSTOMIZEADDRESSBLOCK:IB_REMOVEFIELD +Arrange sym:sw:MultiLineEdit:DLG_MM_CUSTOMIZEADDRESSBLOCK:ED_DRAG +MoveUp sym:sw:ImageButton:DLG_MM_CUSTOMIZEADDRESSBLOCK:IB_UP +MoveLeft sym:sw:ImageButton:DLG_MM_CUSTOMIZEADDRESSBLOCK:IB_LEFT +MoveRight sym:sw:ImageButton:DLG_MM_CUSTOMIZEADDRESSBLOCK:IB_RIGHT +MoveDown sym:sw:ImageButton:DLG_MM_CUSTOMIZEADDRESSBLOCK:IB_DOWN +Select sym:sw:ComboBox:DLG_MM_CUSTOMIZEADDRESSBLOCK:CB_FIELD + +*NewToolbar sym:cui:ModalDialog:MD_NEW_TOOLBAR +ToolbarName sym:cui:Edit:MD_NEW_TOOLBAR:EDT_STRING +SaveIn sym:cui:ListBox:MD_NEW_TOOLBAR:LB_SAVEIN + +*NewsletterLayout sym:WIZARDS_HID_DLGNEWSLTR_DIALOG +Newsletter sym:WIZARDS_HID_DLGNEWSLTR_OPTSTANDARDLAYOUT +CommemorativePublication sym:WIZARDS_HID_DLGNEWSLTR_OPTPARTYLAYOUT +Brochure sym:WIZARDS_HID_DLGNEWSLTR_OPTBROCHURELAYOUT +Single sym:WIZARDS_HID_DLGNEWSLTR_OPTSINGLESIDED +Duplex sym:WIZARDS_HID_DLGNEWSLTR_OPTDOUBLESIDED +OKButton sym:WIZARDS_HID_DLGNEWSLTR_CMDGOON + +*OLEObjektInsert .uno:InsertObject +NeuErstellen sym:cui:RadioButton:MD_INSERT_OLEOBJECT:RB_NEW_OBJECT +AusDateiErstellen sym:cui:RadioButton:MD_INSERT_OLEOBJECT:RB_OBJECT_FROMFILE +Objekttyp sym:cui:ListBox:MD_INSERT_OLEOBJECT:LB_OBJECTTYPE +OleDatei sym:cui:Edit:MD_INSERT_OLEOBJECT:ED_FILEPATH +Verknuepfen sym:cui:CheckBox:MD_INSERT_OLEOBJECT:CB_FILELINK +Durchsuchen sym:cui:PushButton:MD_INSERT_OLEOBJECT:BTN_FILEPATH + +*InsertTableImpress sym:cui:ModalDialog:RID_SVX_NEWTABLE_DLG +NumberOfColumns sym:cui:NumericField:RID_SVX_NEWTABLE_DLG:NF_COLUMNS +NumberOfRows sym:cui:NumericField:RID_SVX_NEWTABLE_DLG:NF_ROWS + +*TableDesign sym:sd:ModalDialog:DLG_TABLEDESIGNPANE diff --git a/testautomation/global/win/edia_p_s.win b/testautomation/global/win/edia_p_s.win index dfba150f0800..da1f30a7f696 100755 --- a/testautomation/global/win/edia_p_s.win +++ b/testautomation/global/win/edia_p_s.win @@ -1,117 +1,118 @@ -*PackageManager HID_PACKAGE_MANAGER -Add desktop:PushButton:RID_DLG_EXTENSION_MANAGER:RID_EM_BTN_ADD -Updates desktop:PushButton:RID_DLG_EXTENSION_MANAGER:RID_EM_BTN_CHECK_UPDATES -BrowsePackages HID_EXTENSION_MANAGER_LISTBOX -Options HID_EXTENSION_MANAGER_LISTBOX_OPTIONS -Enable HID_EXTENSION_MANAGER_LISTBOX_ENABLE -Disable HID_EXTENSION_MANAGER_LISTBOX_DISABLE -Remove HID_EXTENSION_MANAGER_LISTBOX_REMOVE - -*Pagelayout_UndoDeleteWarning HID_SD_UNDODELETEWARNING_DLG -DontShowAgain HID_SD_UNDODELETEWARNING_CBX - -*ParameterInput dbaccess:ModalDialog:DLG_PARAMETERS -Parameters dbaccess:ListBox:DLG_PARAMETERS:LB_ALLPARAMS -Value dbaccess:Edit:DLG_PARAMETERS:ET_PARAM -NextParameter dbaccess:PushButton:DLG_PARAMETERS:BT_TRAVELNEXT - -*PasswordDLG HID_PASSWD -UserName sfx2:Edit:DLG_PASSWD:ED_PASSWD_USER -Password sfx2:Edit:DLG_PASSWD:ED_PASSWD_PASSWORD -PasswordConfirm sfx2:Edit:DLG_PASSWD:ED_PASSWD_CONFIRM - -*PasswdDLG HID_PASSWORD -OldPassword svx:Edit:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD -NewPassword svx:Edit:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD -Confirm svx:Edit:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD - -*PBMOptions svtools:ModalDialog:DLG_EXPORT -Exportwidth svtools:MetricField:DLG_EXPORT:MF_SIZEX -Exportmeasurement svtools:ListBox:DLG_EXPORT:LB_SIZEX -Exportheight svtools:MetricField:DLG_EXPORT:MF_SIZEY -Resolution svtools:NumericField:DLG_EXPORT:NF_RESOLUTION -Resolutionmeasurement svtools:ListBox:DLG_EXPORT:LB_RESOLUTION -QualityBinary svtools:RadioButton:DLG_EXPORT:RB_BINARY -QualityText svtools:RadioButton:DLG_EXPORT:RB_TEXT - -*PCTOptions svtools:ModalDialog:DLG_EXPORT - Exportwidth svtools:MetricField:DLG_EXPORT:MF_SIZEX - Exportmeasurement svtools:ListBox:DLG_EXPORT:LB_SIZEX - Exportheight svtools:MetricField:DLG_EXPORT:MF_SIZEY - -*PDFOptions HID_FILTER_PDF_OPTIONS -RangeAll filter:RadioButton:RID_PDF_TAB_GENER:RB_ALL -RangePages filter:RadioButton:RID_PDF_TAB_GENER:RB_RANGE -RangeSelection filter:RadioButton:RID_PDF_TAB_GENER:RB_SELECTION -RangePagesEdit filter:Edit:RID_PDF_TAB_GENER:ED_PAGES -LosslessCompression filter:RadioButton:RID_PDF_TAB_GENER:RB_LOSSLESSCOMPRESSION -JpegCompression filter:RadioButton:RID_PDF_TAB_GENER:RB_JPEGCOMPRESSION -ImagesQuality filter:MetricField:RID_PDF_TAB_GENER:NF_QUALITY -ReduceImageResolution filter:CheckBox:RID_PDF_TAB_GENER:CB_REDUCEIMAGERESOLUTION -ReduceImageResolutionDPI filter:ComboBox:RID_PDF_TAB_GENER:CO_REDUCEIMAGERESOLUTION -TaggedPDF filter:CheckBox:RID_PDF_TAB_GENER:CB_TAGGEDPDF -ExportNotes filter:CheckBox:RID_PDF_TAB_GENER:CB_EXPORTNOTES -TransitionEffects filter:CheckBox:RID_PDF_TAB_GENER:CB_EXPORTBOOKMARKS -FormsFormat filter:ListBox:RID_PDF_TAB_GENER:LB_FORMSFORMAT -ExportBlankPages filter:CheckBox:RID_PDF_TAB_GENER:CB_EXPORTEMPTYPAGES - -*PDFOptionsInitialView HID_FILTER_PDF_INITIAL_VIEW -PageOnly filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_OPNMODE_PAGEONLY -BookmarksAndPage filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_OPNMODE_OUTLINE -ThumbnailsAndPage filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_OPNMODE_THUMBS -MagnificationDefault filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_MAGNF_DEFAULT -FitInWindow filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_MAGNF_WIND -FitWidth filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_MAGNF_WIDTH -FitVisible filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_MAGNF_VISIBLE -PageLayoutDefault filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_PGLY_DEFAULT -SinglePage filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_PGLY_SINGPG -Continuous filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_PGLY_CONT -ContinuousFacing filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_PGLY_CONTFAC - -*PDFOptionsUserInterface HID_FILTER_PDF_USER_INTERFACE -ResizeWindow filter:CheckBox:RID_PDF_TAB_VPREFER:CB_WNDOPT_RESINIT -CenterWindow filter:CheckBox:RID_PDF_TAB_VPREFER:CB_WNDOPT_CNTRWIN -OpenInFullscreen filter:CheckBox:RID_PDF_TAB_VPREFER:CB_WNDOPT_OPNFULL -DisplayDocumentTitle filter:CheckBox:RID_PDF_TAB_VPREFER:CB_DISPDOCTITLE -HideMenubar filter:CheckBox:RID_PDF_TAB_VPREFER:CB_UOP_HIDEVMENUBAR -HideToolbar filter:CheckBox:RID_PDF_TAB_VPREFER:CB_UOP_HIDEVTOOLBAR -HideWindowControls filter:CheckBox:RID_PDF_TAB_VPREFER:CB_UOP_HIDEVWINCTRL - -*PGMOptions svtools:ModalDialog:DLG_EXPORT -Exportwidth svtools:MetricField:DLG_EXPORT:MF_SIZEX -Exportmeasurement svtools:ListBox:DLG_EXPORT:LB_SIZEX -Exportheight svtools:MetricField:DLG_EXPORT:MF_SIZEY -Resolution svtools:NumericField:DLG_EXPORT:NF_RESOLUTION -Resolutionmeasurement svtools:ListBox:DLG_EXPORT:LB_RESOLUTION -QualityBinary svtools:RadioButton:DLG_EXPORT:RB_BINARY -QualityText svtools:RadioButton:DLG_EXPORT:RB_TEXT - -*PNGOptions svtools:ModalDialog:DLG_EXPORT -Exportwidth svtools:MetricField:DLG_EXPORT:MF_SIZEX -Exportmeasurement svtools:ListBox:DLG_EXPORT:LB_SIZEX -Exportheight svtools:MetricField:DLG_EXPORT:MF_SIZEY -Resolution svtools:NumericField:DLG_EXPORT:NF_RESOLUTION -Resolutionmeasurement svtools:ListBox:DLG_EXPORT:LB_RESOLUTION -Compression svtools:NumericField:DLG_EXPORT:NF_COMPRESSION -Interlaced svtools:CheckBox:DLG_EXPORT:CB_INTERLACED - - -*PPMOptions svtools:ModalDialog:DLG_EXPORT -Exportwidth svtools:MetricField:DLG_EXPORT:MF_SIZEX -Exportmeasurement svtools:ListBox:DLG_EXPORT:LB_SIZEX -Exportheight svtools:MetricField:DLG_EXPORT:MF_SIZEY -Resolution svtools:NumericField:DLG_EXPORT:NF_RESOLUTION -Resolutionmeasurement svtools:ListBox:DLG_EXPORT:LB_RESOLUTION -QualityBinary svtools:RadioButton:DLG_EXPORT:RB_BINARY -QualityText svtools:RadioButton:DLG_EXPORT:RB_TEXT - -*Posterize SID_GRFFILTER_POSTER -PosterColors cui:NumericField:RID_SVX_GRFFILTER_DLG_POSTER:DLG_FILTERPOSTER_NUM_POSTER - -*PortfolioCurrency HID_DLGDEPOT_DIALOG_HISTORY -Currency HID_DLGDEPOT_LSTMARKETS -OKButton HID_DLGDEPOT_0_CMDGOON_HISTORY -CancelButton HID_DLGDEPOT_0_CMDCANCEL_HISTORY +*PackageManager sym:DESKTOP_HID_PACKAGE_MANAGER +Add sym:desktop:PushButton:RID_DLG_EXTENSION_MANAGER:RID_EM_BTN_ADD +Updates sym:desktop:PushButton:RID_DLG_EXTENSION_MANAGER:RID_EM_BTN_CHECK_UPDATES +BrowsePackages sym:DESKTOP_HID_EXTENSION_MANAGER_LISTBOX +Options sym:DESKTOP_HID_EXTENSION_MANAGER_LISTBOX_OPTIONS +Enable sym:DESKTOP_HID_EXTENSION_MANAGER_LISTBOX_ENABLE +Disable sym:DESKTOP_HID_EXTENSION_MANAGER_LISTBOX_DISABLE +Remove sym:DESKTOP_HID_EXTENSION_MANAGER_LISTBOX_REMOVE + +*Pagelayout_UndoDeleteWarning sym:SD_HID_SD_UNDODELETEWARNING_DLG +DontShowAgain sym:SD_HID_SD_UNDODELETEWARNING_CBX + +*ParameterInput sym:dbaccess:ModalDialog:DLG_PARAMETERS +Parameters sym:dbaccess:ListBox:DLG_PARAMETERS:LB_ALLPARAMS +Value sym:dbaccess:Edit:DLG_PARAMETERS:ET_PARAM +NextParameter sym:dbaccess:PushButton:DLG_PARAMETERS:BT_TRAVELNEXT + +*PasswordDLG sym:SFX2_HID_PASSWD +UserName sym:sfx2:Edit:DLG_PASSWD:ED_PASSWD_USER +Password sym:sfx2:Edit:DLG_PASSWD:ED_PASSWD_PASSWORD +PasswordConfirm sym:sfx2:Edit:DLG_PASSWD:ED_PASSWD_CONFIRM + +*PasswdDLG sym:SVX_HID_PASSWORD +OldPassword sym:svx:Edit:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD +NewPassword sym:svx:Edit:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD +Confirm sym:svx:Edit:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD + + +*PDFOptions sym:HID_FILTER_PDF_OPTIONS +RangeAll sym:filter:RadioButton:RID_PDF_TAB_GENER:RB_ALL +RangePages sym:filter:RadioButton:RID_PDF_TAB_GENER:RB_RANGE +RangeSelection sym:filter:RadioButton:RID_PDF_TAB_GENER:RB_SELECTION +RangePagesEdit sym:filter:Edit:RID_PDF_TAB_GENER:ED_PAGES +LosslessCompression sym:filter:RadioButton:RID_PDF_TAB_GENER:RB_LOSSLESSCOMPRESSION +JpegCompression sym:filter:RadioButton:RID_PDF_TAB_GENER:RB_JPEGCOMPRESSION +ImagesQuality sym:filter:MetricField:RID_PDF_TAB_GENER:NF_QUALITY +ReduceImageResolution sym:filter:CheckBox:RID_PDF_TAB_GENER:CB_REDUCEIMAGERESOLUTION +ReduceImageResolutionDPI sym:filter:ComboBox:RID_PDF_TAB_GENER:CO_REDUCEIMAGERESOLUTION +TaggedPDF sym:filter:CheckBox:RID_PDF_TAB_GENER:CB_TAGGEDPDF +ExportNotes sym:filter:CheckBox:RID_PDF_TAB_GENER:CB_EXPORTNOTES +TransitionEffects sym:filter:CheckBox:RID_PDF_TAB_GENER:CB_EXPORTBOOKMARKS +FormsFormat sym:filter:ListBox:RID_PDF_TAB_GENER:LB_FORMSFORMAT +ExportBlankPages sym:filter:CheckBox:RID_PDF_TAB_GENER:CB_EXPORTEMPTYPAGES + +*PBMOptions sym:svtools:ModalDialog:DLG_EXPORT +Exportwidth sym:svtools:MetricField:DLG_EXPORT:MF_SIZEX +Exportmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_SIZEX +Exportheight sym:svtools:MetricField:DLG_EXPORT:MF_SIZEY +Resolution sym:svtools:NumericField:DLG_EXPORT:NF_RESOLUTION +Resolutionmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_RESOLUTION +QualityBinary sym:svtools:RadioButton:DLG_EXPORT:RB_BINARY +QualityText sym:svtools:RadioButton:DLG_EXPORT:RB_TEXT + +*PCTOptions sym:svtools:ModalDialog:DLG_EXPORT + Exportwidth sym:svtools:MetricField:DLG_EXPORT:MF_SIZEX + Exportmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_SIZEX + Exportheight sym:svtools:MetricField:DLG_EXPORT:MF_SIZEY + +*PDFOptionsInitialView sym:HID_FILTER_PDF_INITIAL_VIEW +PageOnly sym:filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_OPNMODE_PAGEONLY +BookmarksAndPage sym:filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_OPNMODE_OUTLINE +ThumbnailsAndPage sym:filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_OPNMODE_THUMBS +MagnificationDefault sym:filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_MAGNF_DEFAULT +FitInWindow sym:filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_MAGNF_WIND +FitWidth sym:filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_MAGNF_WIDTH +FitVisible sym:filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_MAGNF_VISIBLE +PageLayoutDefault sym:filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_PGLY_DEFAULT +SinglePage sym:filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_PGLY_SINGPG +Continuous sym:filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_PGLY_CONT +ContinuousFacing sym:filter:RadioButton:RID_PDF_TAB_OPNFTR:RB_PGLY_CONTFAC + +*PDFOptionsUserInterface sym:HID_FILTER_PDF_USER_INTERFACE +ResizeWindow sym:filter:CheckBox:RID_PDF_TAB_VPREFER:CB_WNDOPT_RESINIT +CenterWindow sym:filter:CheckBox:RID_PDF_TAB_VPREFER:CB_WNDOPT_CNTRWIN +OpenInFullscreen sym:filter:CheckBox:RID_PDF_TAB_VPREFER:CB_WNDOPT_OPNFULL +DisplayDocumentTitle sym:filter:CheckBox:RID_PDF_TAB_VPREFER:CB_DISPDOCTITLE +HideMenubar sym:filter:CheckBox:RID_PDF_TAB_VPREFER:CB_UOP_HIDEVMENUBAR +HideToolbar sym:filter:CheckBox:RID_PDF_TAB_VPREFER:CB_UOP_HIDEVTOOLBAR +HideWindowControls sym:filter:CheckBox:RID_PDF_TAB_VPREFER:CB_UOP_HIDEVWINCTRL + + +*Posterize .uno:GraphicFilterPoster +PosterColors sym:cui:NumericField:RID_SVX_GRFFILTER_DLG_POSTER:DLG_FILTERPOSTER_NUM_POSTER + +*PGMOptions sym:svtools:ModalDialog:DLG_EXPORT +Exportwidth sym:svtools:MetricField:DLG_EXPORT:MF_SIZEX +Exportmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_SIZEX +Exportheight sym:svtools:MetricField:DLG_EXPORT:MF_SIZEY +Resolution sym:svtools:NumericField:DLG_EXPORT:NF_RESOLUTION +Resolutionmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_RESOLUTION +QualityBinary sym:svtools:RadioButton:DLG_EXPORT:RB_BINARY +QualityText sym:svtools:RadioButton:DLG_EXPORT:RB_TEXT + +*PNGOptions sym:svtools:ModalDialog:DLG_EXPORT +Exportwidth sym:svtools:MetricField:DLG_EXPORT:MF_SIZEX +Exportmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_SIZEX +Exportheight sym:svtools:MetricField:DLG_EXPORT:MF_SIZEY +Resolution sym:svtools:NumericField:DLG_EXPORT:NF_RESOLUTION +Resolutionmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_RESOLUTION +Compression sym:svtools:NumericField:DLG_EXPORT:NF_COMPRESSION +Interlaced sym:svtools:CheckBox:DLG_EXPORT:CB_INTERLACED + +*PPMOptions sym:svtools:ModalDialog:DLG_EXPORT +Exportwidth sym:svtools:MetricField:DLG_EXPORT:MF_SIZEX +Exportmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_SIZEX +Exportheight sym:svtools:MetricField:DLG_EXPORT:MF_SIZEY +Resolution sym:svtools:NumericField:DLG_EXPORT:NF_RESOLUTION +Resolutionmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_RESOLUTION +QualityBinary sym:svtools:RadioButton:DLG_EXPORT:RB_BINARY +QualityText sym:svtools:RadioButton:DLG_EXPORT:RB_TEXT + +*PortfolioCurrency sym:WIZARDS_HID_DLGDEPOT_DIALOG_HISTORY +Currency sym:WIZARDS_HID_DLGDEPOT_LSTMARKETS +OKButton sym:WIZARDS_HID_DLGDEPOT_0_CMDGOON_HISTORY +CancelButton sym:WIZARDS_HID_DLGDEPOT_0_CMDCANCEL_HISTORY *Printing .HelpId:vcl:PrintDialog:Dialog PreviewWindow .HelpId:vcl:PrintDialog:Preview @@ -199,475 +200,475 @@ PrintAsSingleJobs .HelpId:vcl:PrintDialog:OptPage:SingleJobs PrintReverse .HelpId:vcl:PrintDialog:OptPage:Reverse PaperTrayFromPrefs .HelpId:vcl:PrintDialog:PrintPaperFromSetup:CheckBox -*PurchaseStarOffice HID_LICENSING_DIALOG -TabPurchase HID_TP_PURCHASE -getSerialNumber tab:PushButton:TP_PURCHASE:PB_PURCHASE_GET -TabUnlockStarOffice HID_TP_UNLOCK -SerialNumberA tab:Edit:TP_UNLOCK:ED_UNLOCK_A -SerialNumberB tab:Edit:TP_UNLOCK:ED_UNLOCK_B -SerialNumberC tab:Edit:TP_UNLOCK:ED_UNLOCK_C -TabSummary HID_TP_SUMMARY - -*QueryEditWindow HID_CTL_QRYSQLEDIT - -*QueryDesignTable HID_CTL_QRYDGNTAB - -*QueryDesignCriterion HID_CTL_QRYDGNCRIT -Visible HID_QRYDGN_ROW_VISIBLE -Table HID_QRYDGN_ROW_TABLE -Field HID_QRYDGN_ROW_FIELD -Sort HID_QRYDGN_ROW_ORDER -Functions HID_QRYDGN_ROW_FUNCTION -AliasName HID_QRYDGN_ROW_ALIAS -Criterion HID_QRYDGN_ROW_CRIT - -*QueryWizard HID_QUERYWIZARD -Summary HID_QUERYWIZARD_TXTSUMMARY -Tables HID_QUERYWIZARD_LSTTABLES -AvailableFields HID_QUERYWIZARD_LSTFIELDS -Add HID_QUERYWIZARD_CMDMOVESELECTED -AddAll HID_QUERYWIZARD_CMDMOVEALL -Remove HID_QUERYWIZARD_CMDREMOVESELECTED -RemoveAll HID_QUERYWIZARD_CMDREMOVEALL -FieldsInQuery HID_QUERYWIZARD_LSTSELFIELDS -Up HID_QUERYWIZARD_CMDMOVEUP -Down HID_QUERYWIZARD_CMDMOVEDOWN -Sort1 HID_QUERYWIZARD_SORT1 -Ascending1 HID_QUERYWIZARD_OPTASCEND1 -Descending1 HID_QUERYWIZARD_OPTDESCEND1 -Sort2 HID_QUERYWIZARD_SORT2 -Ascending2 HID_QUERYWIZARD_OPTASCEND2 -Descending2 HID_QUERYWIZARD_OPTDESCEND2 -Sort3 HID_QUERYWIZARD_SORT3 -Ascending3 HID_QUERYWIZARD_OPTASCEND3 -Descending3 HID_QUERYWIZARD_OPTDESCEND3 -Sort4 HID_QUERYWIZARD_SORT4 -Ascending4 HID_QUERYWIZARD_OPTASCEND4 -Descending4 HID_QUERYWIZARD_OPTDESCEND4 -FieldName1 HID_QUERYWIZARD_LSTFIELDNAME_1 -Condition1 HID_QUERYWIZARD_LSTOPERATOR_1 -Value1 HID_QUERYWIZARD_TXTVALUE_1 -FieldName2 HID_QUERYWIZARD_LSTFIELDNAME_2 -Condition2 HID_QUERYWIZARD_LSTOPERATOR_2 -Value2 HID_QUERYWIZARD_TXTVALUE_2 -FieldName3 HID_QUERYWIZARD_LSTFIELDNAME_3 -Condition3 HID_QUERYWIZARD_LSTOPERATOR_3 -Value3 HID_QUERYWIZARD_TXTVALUE_3 -Alias1 HID_QUERYWIZARD_TXTTITLE_1 -QueryTitle HID_QUERYWIZARD_TXTQUERYTITLE -DisplayQuery HID_QUERYWIZARD_OPTDISPLAYQUERY -ModifyQuery HID_QUERYWIZARD_OPTMODIFYQUERY -BackBtn HID_QUERYWIZARD_BACK -NextBtn HID_QUERYWIZARD_NEXT -FinishBtn HID_QUERYWIZARD_CREATE -CancelBtn HID_QUERYWIZARD_CANCEL - -MatchAll HID_QUERYWIZARD_OPTMATCHALL -MatchAny HID_QUERYWIZARD_OPTMATCHANY -AggregatFunction1 HID_QUERYWIZARD_LSTAGGREGATEFUNCTION_1 -AggregatField1 HID_QUERYWIZARD_LSTAGGREGATEFIELDS_1 -AggregatFunction2 HID_QUERYWIZARD_LSTAGGREGATEFUNCTION_2 -AggregatField2 HID_QUERYWIZARD_LSTAGGREGATEFIELDS_2 -AggregatFunction3 HID_QUERYWIZARD_LSTAGGREGATEFUNCTION_3 -AggregatField3 HID_QUERYWIZARD_LSTAGGREGATEFIELDS_3 -AggregatFunction4 HID_QUERYWIZARD_LSTAGGREGATEFUNCTION_4 -AggregatField4 HID_QUERYWIZARD_LSTAGGREGATEFIELDS_4 -AggregatFunction5 HID_QUERYWIZARD_LSTAGGREGATEFUNCTION_5 -AggregatField5 HID_QUERYWIZARD_LSTAGGREGATEFIELDS_5 -DetailQuery HID_QUERYWIZARD_OPTAGGREGATEDETAILQUERY -SummaryQuery HID_QUERYWIZARD_OPTAGGREGATESUMMARYQUERY -PlusBtn HID_QUERYWIZARD_BTNAGGREGATEPLUS -MinusBtn HID_QUERYWIZARD_BTNAGGREGATEMINUS - -*RelationDesign HID_CTL_RELATIONTAB - -*RelationProperties dbaccess:ModalDialog:DLG_REL_PROPERTIES -UpdateNoAction HID_DLG_REL_NO_CASC_UPD -UpdateCascade HID_DLG_REL_CASC_UPD -UpdateSetNull HID_DLG_REL_CASC_UPD_NULL -UpdateSetDefault HID_DLG_REL_CASC_UPD_DEFAULT -DeleteNoAction HID_DLG_REL_NO_CASC_DEL -DeleteCascade HID_DLG_REL_CASC_DEL -DeleteSetNull HID_DLG_REL_CASC_DEL_NULL -DeleteSetDefault HID_DLG_REL_CASC_DEL_DEFAULT - -LeftTable HID_DLG_QRY_LEFT_TABLE -RightTable HID_DLG_QRY_RIGHT_TABLE -FielsInvolved HID_RELDLG_KEYFIELDS -RightFieldCell HID_RELATIONDIALOG_RIGHTFIELDCELL - -*Relief SID_GRFFILTER_EMBOSS -LightSource HID_GRFFILTER_EMBOSS_LIGHT - -*RenameAutoFormat HID_SC_REN_AFMT_DLG -RenameAutoFormatName HID_SC_REN_AFMT_NAME - -*RenameElement HID_MM_ADD_RENAME_ENTRY -FieldTitle sw:Edit:DLG_MM_ADD_RENAME_ENTRY:ED_FIELDNAME - -*RenameMenu HID_SVX_CONFIG_RENAME_MENU -NewName cui:Edit:RID_SVXDLG_NAME:EDT_STRING - -*RenameToolbar HID_SVX_CONFIG_RENAME_TOOLBAR -NewName cui:Edit:RID_SVXDLG_NAME:EDT_STRING - -*Registration HID_REGISTRATION_DIALOG -Now svtools:RadioButton:DLG_REGISTRATION_REQUEST:RB_NOW -Later svtools:RadioButton:DLG_REGISTRATION_REQUEST:RB_LATER -Never svtools:RadioButton:DLG_REGISTRATION_REQUEST:RB_NEVER -AlreadyRegistered svtools:RadioButton:DLG_REGISTRATION_REQUEST:RB_DONE - -*ReportWizard HID_DLGREPORT_DIALOG -CancelBtn HID_DLGREPORT_0_CMDCANCEL -BackBtn HID_DLGREPORT_0_CMDPREV -NextBtn HID_DLGREPORT_0_CMDNEXT -FinishBtn HID_DLGREPORT_0_CMDFINISH -Add HID_DLGREPORT_1_CMDMOVESELECTED -AddAll HID_DLGREPORT_1_CMDMOVEALL -RemoveSelected HID_DLGREPORT_1_CMDREMOVESELECTED -RemoveAll HID_DLGREPORT_1_CMDREMOVEALL -Tables HID_DLGREPORT_1_LBTABLES -AvailableFields HID_DLGREPORT_1_FIELDSAVAILABLE -SelectedFields HID_DLGREPORT_1_FIELDSSELECTED -AvailGrouping HID_DLGREPORT_2_GROUPING -SelectedGrouping HID_DLGREPORT_2_PREGROUPINGDEST -AddSelected2 HID_DLGREPORT_2_CMDGROUP -RemoveSelected2 HID_DLGREPORT_2_CMDUNGROUP -SortBy1 HID_DLGREPORT_3_SORT1 -Ascending1 HID_DLGREPORT_3_OPTASCEND1 -Descending1 HID_DLGREPORT_3_OPTDESCEND1 -SortBy2 HID_DLGREPORT_3_SORT3 -Ascending2 HID_DLGREPORT_3_OPTASCEND2 -Descending2 HID_DLGREPORT_3_OPTDESCEND2 -SortBy3 HID_DLGREPORT_3_SORT4 -Ascending3 HID_DLGREPORT_3_OPTASCEND3 -Descending3 HID_DLGREPORT_3_OPTDESCEND3 -SortBy4 HID_DLGREPORT_3_SORT4 -Ascending4 HID_DLGREPORT_3_OPTASCEND4 -Descending4 HID_DLGREPORT_3_OPTDESCEND4 -ReportTitle HID_DLGREPORT_4_TITLE -DataLqayout HID_DLGREPORT_4_DATALAYOUT -PageLayout HID_DLGREPORT_4_PAGELAYOUT -Landscape HID_DLGREPORT_4_LANDSCAPE -Portrait HID_DLGREPORT_4_PORTRAIT -DynamicReportTemplate HID_DLGREPORT_5_OPTDYNTEMPLATE -StaticReport HID_DLGREPORT_5_OPTSTATDOCUMENT -TemplatePath HID_DLGREPORT_5_TXTTEMPLATEPATH -TemplatePathBtn HID_DLGREPORT_5_CMDTEMPLATEPATH -ModifyReportTemplate HID_DLGREPORT_5_OPTEDITTEMPLATE -UseReportTemplateImmediately HID_DLGREPORT_5_OPTUSETEMPLATE -StaticPath HID_DLGREPORT_5_TXTDOCUMENTPATH -StaticPathBtn HID_DLGREPORT_5_CMDDOCUMENTPATH -CreateLinkToDatabase HID_DLGREPORT_5_CHKLINKTODB - -*ResolveConflicts HID_SCDLG_CONFLICTS -KeepMine sc:PushButton:RID_SCDLG_CONFLICTS:BTN_KEEPMINE -KeepOther sc:PushButton:RID_SCDLG_CONFLICTS:BTN_KEEPOTHER -KeepAllMine sc:PushButton:RID_SCDLG_CONFLICTS:BTN_KEEPALLMINE -KeepAllOthers sc:PushButton:RID_SCDLG_CONFLICTS:BTN_KEEPALLOTHERS - -*RubyDialog HID_RUBY_DIALOG -BasisText1 svx:Edit:RID_SVXDLG_RUBY:ED_LEFT_1 -RubyText1 svx:Edit:RID_SVXDLG_RUBY:ED_RIGHT_1 -BasisText2 svx:Edit:RID_SVXDLG_RUBY:ED_LEFT_2 -RubyText2 svx:Edit:RID_SVXDLG_RUBY:ED_RIGHT_2 -BasisText3 svx:Edit:RID_SVXDLG_RUBY:ED_LEFT_3 -RubyText3 svx:Edit:RID_SVXDLG_RUBY:ED_RIGHT_3 -BasisText4 svx:Edit:RID_SVXDLG_RUBY:ED_LEFT_4 -RubyText4 svx:Edit:RID_SVXDLG_RUBY:ED_RIGHT_4 -AutoDetection svx:CheckBox:RID_SVXDLG_RUBY:CB_AUTO_DETECT -Adjust svx:ListBox:RID_SVXDLG_RUBY:LB_ADJUST -CharacterStyle svx:ListBox:RID_SVXDLG_RUBY:LB_CHAR_STYLE -CallStylist svx:PushButton:RID_SVXDLG_RUBY:PB_STYLIST -DialogClose svx:PushButton:RID_SVXDLG_RUBY:PB_CLOSE -RubyPosition svx:ListBox:RID_SVXDLG_RUBY:LB_POSITION - -*SaveLabelFormat HID_SAVE_LABEL_DLG -Label sw:ComboBox:DLG_SAVE_LABEL:CB_MAKE -Type sw:Edit:DLG_SAVE_LABEL:ED_TYPE - -*ScriptOrganizer HID_SCRIPTORG_DIALOG -ScriptTreeList HID_SCRIPTSBOX -PBRun cui:PushButton:RID_DLG_SCRIPTORGANIZER:SF_PB_RUN -PBCreate cui:PushButton:RID_DLG_SCRIPTORGANIZER:SF_PB_CREATE -PBEdit cui:PushButton:RID_DLG_SCRIPTORGANIZER:SF_PB_EDIT -PBRename cui:PushButton:RID_DLG_SCRIPTORGANIZER:SF_PB_RENAME -PBDelete cui:PushButton:RID_DLG_SCRIPTORGANIZER:SF_PB_DEL - -*ScriptNameDlg cui:ModalDialog:RID_DLG_NEWLIB -EFObjectName cui:Edit:RID_DLG_NEWLIB:ED_LIBNAME - -*ScriptSelector HID_SELECTOR_DIALOG -LibraryTreeList HID_SELECTOR_CATEGORIES -ScriptList HID_SELECTOR_COMMANDS - -*SelectAddressList HID_MM_ADDRESSLISTDIALOG -Addresses HID_MM_ADDRESSLIST_HB -AddressList HID_MM_ADDRESSLIST_TLB -Add sw:PushButton:DLG_MM_ADDRESSLISTDIALOG:PB_LOADLIST -Create sw:PushButton:DLG_MM_ADDRESSLISTDIALOG:PB_CREATELIST -Filter sw:PushButton:DLG_MM_ADDRESSLISTDIALOG:PB_FILTER -Edit sw:PushButton:DLG_MM_ADDRESSLISTDIALOG:PB_EDIT -ChangeTable sw:PushButton:DLG_MM_ADDRESSLISTDIALOG:PB_TABLE - -*SelectAddressBlock HID_MM_SELECTADDRESSBLOCK -NewBtn sw:PushButton:DLG_MM_SELECTADDRESSBLOCK:PB_NEW -Customize sw:PushButton:DLG_MM_SELECTADDRESSBLOCK:PB_CUSTOMIZE -Delete sw:PushButton:DLG_MM_SELECTADDRESSBLOCK:PB_DELETE -NeverInclude sw:RadioButton:DLG_MM_SELECTADDRESSBLOCK:RB_NEVER -AlwaysInclude sw:RadioButton:DLG_MM_SELECTADDRESSBLOCK:RB_ALWAYS -ConditionalInclude sw:RadioButton:DLG_MM_SELECTADDRESSBLOCK:RB_DEPENDENT -Filter sw:Edit:DLG_MM_SELECTADDRESSBLOCK:ED_COUNTRY - -*SelectCertificate HID_XMLSEC_DLG_CERTCHOOSER -ChooseCertificate HID_XMLSEC_CTRL_CHOOSESIGNATURES -ViewCertificate xmlsecurity:PushButton:RID_XMLSECDLG_CERTCHOOSER:BTN_VIEWCERT - -*SelectSheets SID_SELECT_TABLES -SheetSelectionBox HID_SELECTTABLES - -*ServerAuthentication HID_MM_SERVERAUTHENTICATION -SMTPauthentication sw:CheckBox:DLG_MM_SERVERAUTHENTICATION:CB_AUTHENTICATION -SMTPoutgoing sw:RadioButton:DLG_MM_SERVERAUTHENTICATION:RB_SEP_AUTHENTICATION -IncomingMailServer sw:RadioButton:DLG_MM_SERVERAUTHENTICATION:RB_SMPTAFTERPOP -OutgoingUserName sw:Edit:DLG_MM_SERVERAUTHENTICATION:ED_USERNAME -OutgoingPassword sw:Edit:DLG_MM_SERVERAUTHENTICATION:ED_OUTPASSWORD -Server sw:Edit:DLG_MM_SERVERAUTHENTICATION:ED_SERVER -Port sw:NumericField:DLG_MM_SERVERAUTHENTICATION:NF_PORT -POP3 sw:RadioButton:DLG_MM_SERVERAUTHENTICATION:RB_POP3 -IMAP sw:RadioButton:DLG_MM_SERVERAUTHENTICATION:RB_IMAP -User sw:Edit:DLG_MM_SERVERAUTHENTICATION:ED_INUSERNAME -Password sw:Edit:DLG_MM_SERVERAUTHENTICATION:ED_INPASSWORD - -*SetDefaultLanguage HID_BASICIDE_SETDEFAULT_LANGUAGE -DefaultLanguageListbox basctl:ListBox:RID_DLG_SETDEF_LANGUAGE:LB_DEF_LANGUAGE - -*ShareDocument SID_SHARE_DOC -ShareCalc sc:CheckBox:RID_SCDLG_SHAREDOCUMENT:CB_SHARE +*PurchaseStarOffice sym:TAB_HID_LICENSING_DIALOG +TabPurchase sym:TAB_HID_TP_PURCHASE +getSerialNumber sym:tab:PushButton:TP_PURCHASE:PB_PURCHASE_GET +TabUnlockStarOffice sym:TAB_HID_TP_UNLOCK +SerialNumberA sym:tab:Edit:TP_UNLOCK:ED_UNLOCK_A +SerialNumberB sym:tab:Edit:TP_UNLOCK:ED_UNLOCK_B +SerialNumberC sym:tab:Edit:TP_UNLOCK:ED_UNLOCK_C +TabSummary sym:TAB_HID_TP_SUMMARY + +*QueryEditWindow sym:DBACCESS_HID_CTL_QRYSQLEDIT + +*QueryDesignTable sym:DBACCESS_HID_CTL_QRYDGNTAB + +*QueryDesignCriterion sym:DBACCESS_HID_CTL_QRYDGNCRIT +Visible sym:DBACCESS_HID_QRYDGN_ROW_VISIBLE +Table sym:DBACCESS_HID_QRYDGN_ROW_TABLE +Field sym:DBACCESS_HID_QRYDGN_ROW_FIELD +Sort sym:DBACCESS_HID_QRYDGN_ROW_ORDER +Functions sym:DBACCESS_HID_QRYDGN_ROW_FUNCTION +AliasName sym:DBACCESS_HID_QRYDGN_ROW_ALIAS +Criterion sym:DBACCESS_HID_QRYDGN_ROW_CRIT + +*QueryWizard sym:WIZARDS_HID_QUERYWIZARD +Summary sym:WIZARDS_HID_QUERYWIZARD_TXTSUMMARY +Tables sym:WIZARDS_HID_QUERYWIZARD_LSTTABLES +AvailableFields sym:WIZARDS_HID_QUERYWIZARD_LSTFIELDS +Add sym:WIZARDS_HID_QUERYWIZARD_CMDMOVESELECTED +AddAll sym:WIZARDS_HID_QUERYWIZARD_CMDMOVEALL +Remove sym:WIZARDS_HID_QUERYWIZARD_CMDREMOVESELECTED +RemoveAll sym:WIZARDS_HID_QUERYWIZARD_CMDREMOVEALL +FieldsInQuery sym:WIZARDS_HID_QUERYWIZARD_LSTSELFIELDS +Up sym:WIZARDS_HID_QUERYWIZARD_CMDMOVEUP +Down sym:WIZARDS_HID_QUERYWIZARD_CMDMOVEDOWN +Sort1 sym:WIZARDS_HID_QUERYWIZARD_SORT1 +Ascending1 sym:WIZARDS_HID_QUERYWIZARD_OPTASCEND1 +Descending1 sym:WIZARDS_HID_QUERYWIZARD_OPTDESCEND1 +Sort2 sym:WIZARDS_HID_QUERYWIZARD_SORT2 +Ascending2 sym:WIZARDS_HID_QUERYWIZARD_OPTASCEND2 +Descending2 sym:WIZARDS_HID_QUERYWIZARD_OPTDESCEND2 +Sort3 sym:WIZARDS_HID_QUERYWIZARD_SORT3 +Ascending3 sym:WIZARDS_HID_QUERYWIZARD_OPTASCEND3 +Descending3 sym:WIZARDS_HID_QUERYWIZARD_OPTDESCEND3 +Sort4 sym:WIZARDS_HID_QUERYWIZARD_SORT4 +Ascending4 sym:WIZARDS_HID_QUERYWIZARD_OPTASCEND4 +Descending4 sym:WIZARDS_HID_QUERYWIZARD_OPTDESCEND4 +FieldName1 sym:WIZARDS_HID_QUERYWIZARD_LSTFIELDNAME_1 +Condition1 sym:WIZARDS_HID_QUERYWIZARD_LSTOPERATOR_1 +Value1 sym:WIZARDS_HID_QUERYWIZARD_TXTVALUE_1 +FieldName2 sym:WIZARDS_HID_QUERYWIZARD_LSTFIELDNAME_2 +Condition2 sym:WIZARDS_HID_QUERYWIZARD_LSTOPERATOR_2 +Value2 sym:WIZARDS_HID_QUERYWIZARD_TXTVALUE_2 +FieldName3 sym:WIZARDS_HID_QUERYWIZARD_LSTFIELDNAME_3 +Condition3 sym:WIZARDS_HID_QUERYWIZARD_LSTOPERATOR_3 +Value3 sym:WIZARDS_HID_QUERYWIZARD_TXTVALUE_3 +Alias1 sym:WIZARDS_HID_QUERYWIZARD_TXTTITLE_1 +QueryTitle sym:WIZARDS_HID_QUERYWIZARD_TXTQUERYTITLE +DisplayQuery sym:WIZARDS_HID_QUERYWIZARD_OPTDISPLAYQUERY +ModifyQuery sym:WIZARDS_HID_QUERYWIZARD_OPTMODIFYQUERY +BackBtn sym:WIZARDS_HID_QUERYWIZARD_BACK +NextBtn sym:WIZARDS_HID_QUERYWIZARD_NEXT +FinishBtn sym:WIZARDS_HID_QUERYWIZARD_CREATE +CancelBtn sym:WIZARDS_HID_QUERYWIZARD_CANCEL + +MatchAll sym:WIZARDS_HID_QUERYWIZARD_OPTMATCHALL +MatchAny sym:WIZARDS_HID_QUERYWIZARD_OPTMATCHANY +AggregatFunction1 sym:WIZARDS_HID_QUERYWIZARD_LSTAGGREGATEFUNCTION_1 +AggregatField1 sym:WIZARDS_HID_QUERYWIZARD_LSTAGGREGATEFIELDS_1 +AggregatFunction2 sym:WIZARDS_HID_QUERYWIZARD_LSTAGGREGATEFUNCTION_2 +AggregatField2 sym:WIZARDS_HID_QUERYWIZARD_LSTAGGREGATEFIELDS_2 +AggregatFunction3 sym:WIZARDS_HID_QUERYWIZARD_LSTAGGREGATEFUNCTION_3 +AggregatField3 sym:WIZARDS_HID_QUERYWIZARD_LSTAGGREGATEFIELDS_3 +AggregatFunction4 sym:WIZARDS_HID_QUERYWIZARD_LSTAGGREGATEFUNCTION_4 +AggregatField4 sym:WIZARDS_HID_QUERYWIZARD_LSTAGGREGATEFIELDS_4 +AggregatFunction5 sym:WIZARDS_HID_QUERYWIZARD_LSTAGGREGATEFUNCTION_5 +AggregatField5 sym:WIZARDS_HID_QUERYWIZARD_LSTAGGREGATEFIELDS_5 +DetailQuery sym:WIZARDS_HID_QUERYWIZARD_OPTAGGREGATEDETAILQUERY +SummaryQuery sym:WIZARDS_HID_QUERYWIZARD_OPTAGGREGATESUMMARYQUERY +PlusBtn sym:WIZARDS_HID_QUERYWIZARD_BTNAGGREGATEPLUS +MinusBtn sym:WIZARDS_HID_QUERYWIZARD_BTNAGGREGATEMINUS + +*RelationDesign sym:DBACCESS_HID_CTL_RELATIONTAB + +*RelationProperties sym:dbaccess:ModalDialog:DLG_REL_PROPERTIES +UpdateNoAction sym:DBACCESS_HID_DLG_REL_NO_CASC_UPD +UpdateCascade sym:DBACCESS_HID_DLG_REL_CASC_UPD +UpdateSetNull sym:DBACCESS_HID_DLG_REL_CASC_UPD_NULL +UpdateSetDefault sym:DBACCESS_HID_DLG_REL_CASC_UPD_DEFAULT +DeleteNoAction sym:DBACCESS_HID_DLG_REL_NO_CASC_DEL +DeleteCascade sym:DBACCESS_HID_DLG_REL_CASC_DEL +DeleteSetNull sym:DBACCESS_HID_DLG_REL_CASC_DEL_NULL +DeleteSetDefault sym:DBACCESS_HID_DLG_REL_CASC_DEL_DEFAULT + +LeftTable sym:DBACCESS_HID_DLG_QRY_LEFT_TABLE +RightTable sym:DBACCESS_HID_DLG_QRY_RIGHT_TABLE +FielsInvolved sym:DBACCESS_HID_RELDLG_KEYFIELDS +RightFieldCell sym:DBACCESS_HID_RELATIONDIALOG_RIGHTFIELDCELL + +*Relief .uno:GraphicFilterRelief +LightSource sym:CUI_HID_GRFFILTER_EMBOSS_LIGHT + +*RenameAutoFormat sym:SC_HID_SC_REN_AFMT_DLG +RenameAutoFormatName sym:SC_HID_SC_REN_AFMT_NAME + +*RenameElement sym:SW_HID_MM_ADD_RENAME_ENTRY +FieldTitle sym:sw:Edit:DLG_MM_ADD_RENAME_ENTRY:ED_FIELDNAME + +*RenameMenu sym:CUI_HID_SVX_CONFIG_RENAME_MENU +NewName sym:cui:Edit:RID_SVXDLG_NAME:EDT_STRING + +*RenameToolbar sym:CUI_HID_SVX_CONFIG_RENAME_TOOLBAR +NewName sym:cui:Edit:RID_SVXDLG_NAME:EDT_STRING + +*Registration sym:SVT_HID_REGISTRATION_DIALOG +Now sym:svtools:RadioButton:DLG_REGISTRATION_REQUEST:RB_NOW +Later sym:svtools:RadioButton:DLG_REGISTRATION_REQUEST:RB_LATER +Never sym:svtools:RadioButton:DLG_REGISTRATION_REQUEST:RB_NEVER +AlreadyRegistered sym:svtools:RadioButton:DLG_REGISTRATION_REQUEST:RB_DONE + +*ReportWizard sym:WIZARDS_HID_DLGREPORT_DIALOG +CancelBtn sym:WIZARDS_HID_DLGREPORT_0_CMDCANCEL +BackBtn sym:WIZARDS_HID_DLGREPORT_0_CMDPREV +NextBtn sym:WIZARDS_HID_DLGREPORT_0_CMDNEXT +FinishBtn sym:WIZARDS_HID_DLGREPORT_0_CMDFINISH +Add sym:WIZARDS_HID_DLGREPORT_1_CMDMOVESELECTED +AddAll sym:WIZARDS_HID_DLGREPORT_1_CMDMOVEALL +RemoveSelected sym:WIZARDS_HID_DLGREPORT_1_CMDREMOVESELECTED +RemoveAll sym:WIZARDS_HID_DLGREPORT_1_CMDREMOVEALL +Tables sym:WIZARDS_HID_DLGREPORT_1_LBTABLES +AvailableFields sym:WIZARDS_HID_DLGREPORT_1_FIELDSAVAILABLE +SelectedFields sym:WIZARDS_HID_DLGREPORT_1_FIELDSSELECTED +AvailGrouping sym:WIZARDS_HID_DLGREPORT_2_GROUPING +SelectedGrouping sym:WIZARDS_HID_DLGREPORT_2_PREGROUPINGDEST +AddSelected2 sym:WIZARDS_HID_DLGREPORT_2_CMDGROUP +RemoveSelected2 sym:WIZARDS_HID_DLGREPORT_2_CMDUNGROUP +SortBy1 sym:WIZARDS_HID_DLGREPORT_3_SORT1 +Ascending1 sym:WIZARDS_HID_DLGREPORT_3_OPTASCEND1 +Descending1 sym:WIZARDS_HID_DLGREPORT_3_OPTDESCEND1 +SortBy2 sym:WIZARDS_HID_DLGREPORT_3_SORT3 +Ascending2 sym:WIZARDS_HID_DLGREPORT_3_OPTASCEND2 +Descending2 sym:WIZARDS_HID_DLGREPORT_3_OPTDESCEND2 +SortBy3 sym:WIZARDS_HID_DLGREPORT_3_SORT4 +Ascending3 sym:WIZARDS_HID_DLGREPORT_3_OPTASCEND3 +Descending3 sym:WIZARDS_HID_DLGREPORT_3_OPTDESCEND3 +SortBy4 sym:WIZARDS_HID_DLGREPORT_3_SORT4 +Ascending4 sym:WIZARDS_HID_DLGREPORT_3_OPTASCEND4 +Descending4 sym:WIZARDS_HID_DLGREPORT_3_OPTDESCEND4 +ReportTitle sym:WIZARDS_HID_DLGREPORT_4_TITLE +DataLqayout sym:WIZARDS_HID_DLGREPORT_4_DATALAYOUT +PageLayout sym:WIZARDS_HID_DLGREPORT_4_PAGELAYOUT +Landscape sym:WIZARDS_HID_DLGREPORT_4_LANDSCAPE +Portrait sym:WIZARDS_HID_DLGREPORT_4_PORTRAIT +DynamicReportTemplate sym:WIZARDS_HID_DLGREPORT_5_OPTDYNTEMPLATE +StaticReport sym:WIZARDS_HID_DLGREPORT_5_OPTSTATDOCUMENT +TemplatePath sym:WIZARDS_HID_DLGREPORT_5_TXTTEMPLATEPATH +TemplatePathBtn sym:WIZARDS_HID_DLGREPORT_5_CMDTEMPLATEPATH +ModifyReportTemplate sym:WIZARDS_HID_DLGREPORT_5_OPTEDITTEMPLATE +UseReportTemplateImmediately sym:WIZARDS_HID_DLGREPORT_5_OPTUSETEMPLATE +StaticPath sym:WIZARDS_HID_DLGREPORT_5_TXTDOCUMENTPATH +StaticPathBtn sym:WIZARDS_HID_DLGREPORT_5_CMDDOCUMENTPATH +CreateLinkToDatabase sym:WIZARDS_HID_DLGREPORT_5_CHKLINKTODB + +*ResolveConflicts sym:SC_HID_SCDLG_CONFLICTS +KeepMine sym:sc:PushButton:RID_SCDLG_CONFLICTS:BTN_KEEPMINE +KeepOther sym:sc:PushButton:RID_SCDLG_CONFLICTS:BTN_KEEPOTHER +KeepAllMine sym:sc:PushButton:RID_SCDLG_CONFLICTS:BTN_KEEPALLMINE +KeepAllOthers sym:sc:PushButton:RID_SCDLG_CONFLICTS:BTN_KEEPALLOTHERS + +*RubyDialog sym:SVX_HID_RUBY_DIALOG +BasisText1 sym:svx:Edit:RID_SVXDLG_RUBY:ED_LEFT_1 +RubyText1 sym:svx:Edit:RID_SVXDLG_RUBY:ED_RIGHT_1 +BasisText2 sym:svx:Edit:RID_SVXDLG_RUBY:ED_LEFT_2 +RubyText2 sym:svx:Edit:RID_SVXDLG_RUBY:ED_RIGHT_2 +BasisText3 sym:svx:Edit:RID_SVXDLG_RUBY:ED_LEFT_3 +RubyText3 sym:svx:Edit:RID_SVXDLG_RUBY:ED_RIGHT_3 +BasisText4 sym:svx:Edit:RID_SVXDLG_RUBY:ED_LEFT_4 +RubyText4 sym:svx:Edit:RID_SVXDLG_RUBY:ED_RIGHT_4 +AutoDetection sym:svx:CheckBox:RID_SVXDLG_RUBY:CB_AUTO_DETECT +Adjust sym:svx:ListBox:RID_SVXDLG_RUBY:LB_ADJUST +CharacterStyle sym:svx:ListBox:RID_SVXDLG_RUBY:LB_CHAR_STYLE +CallStylist sym:svx:PushButton:RID_SVXDLG_RUBY:PB_STYLIST +DialogClose sym:svx:PushButton:RID_SVXDLG_RUBY:PB_CLOSE +RubyPosition sym:svx:ListBox:RID_SVXDLG_RUBY:LB_POSITION + +*SaveLabelFormat sym:SW_HID_SAVE_LABEL_DLG +Label sym:sw:ComboBox:DLG_SAVE_LABEL:CB_MAKE +Type sym:sw:Edit:DLG_SAVE_LABEL:ED_TYPE + +*ScriptOrganizer sym:CUI_HID_SCRIPTORG_DIALOG +ScriptTreeList sym:CUI_HID_SCRIPTSBOX +PBRun sym:cui:PushButton:RID_DLG_SCRIPTORGANIZER:SF_PB_RUN +PBCreate sym:cui:PushButton:RID_DLG_SCRIPTORGANIZER:SF_PB_CREATE +PBEdit sym:cui:PushButton:RID_DLG_SCRIPTORGANIZER:SF_PB_EDIT +PBRename sym:cui:PushButton:RID_DLG_SCRIPTORGANIZER:SF_PB_RENAME +PBDelete sym:cui:PushButton:RID_DLG_SCRIPTORGANIZER:SF_PB_DEL + +*ScriptNameDlg sym:cui:ModalDialog:RID_DLG_NEWLIB +EFObjectName sym:cui:Edit:RID_DLG_NEWLIB:ED_LIBNAME + +*ScriptSelector sym:CUI_HID_SELECTOR_DIALOG +LibraryTreeList sym:CUI_HID_SELECTOR_CATEGORIES +ScriptList sym:CUI_HID_SELECTOR_COMMANDS + +*SelectAddressList sym:SW_HID_MM_ADDRESSLISTDIALOG +Addresses sym:SW_HID_MM_ADDRESSLIST_HB +AddressList sym:SW_HID_MM_ADDRESSLIST_TLB +Add sym:sw:PushButton:DLG_MM_ADDRESSLISTDIALOG:PB_LOADLIST +Create sym:sw:PushButton:DLG_MM_ADDRESSLISTDIALOG:PB_CREATELIST +Filter sym:sw:PushButton:DLG_MM_ADDRESSLISTDIALOG:PB_FILTER +Edit sym:sw:PushButton:DLG_MM_ADDRESSLISTDIALOG:PB_EDIT +ChangeTable sym:sw:PushButton:DLG_MM_ADDRESSLISTDIALOG:PB_TABLE + +*SelectAddressBlock sym:SW_HID_MM_SELECTADDRESSBLOCK +NewBtn sym:sw:PushButton:DLG_MM_SELECTADDRESSBLOCK:PB_NEW +Customize sym:sw:PushButton:DLG_MM_SELECTADDRESSBLOCK:PB_CUSTOMIZE +Delete sym:sw:PushButton:DLG_MM_SELECTADDRESSBLOCK:PB_DELETE +NeverInclude sym:sw:RadioButton:DLG_MM_SELECTADDRESSBLOCK:RB_NEVER +AlwaysInclude sym:sw:RadioButton:DLG_MM_SELECTADDRESSBLOCK:RB_ALWAYS +ConditionalInclude sym:sw:RadioButton:DLG_MM_SELECTADDRESSBLOCK:RB_DEPENDENT +Filter sym:sw:Edit:DLG_MM_SELECTADDRESSBLOCK:ED_COUNTRY + +*SelectCertificate sym:XMLSECURITY_HID_XMLSEC_DLG_CERTCHOOSER +ChooseCertificate sym:XMLSECURITY_HID_XMLSEC_CTRL_CHOOSESIGNATURES +ViewCertificate sym:xmlsecurity:PushButton:RID_XMLSECDLG_CERTCHOOSER:BTN_VIEWCERT + +*SelectSheets .uno:SelectTables +SheetSelectionBox sym:SC_HID_SELECTTABLES + +*ServerAuthentication sym:SW_HID_MM_SERVERAUTHENTICATION +SMTPauthentication sym:sw:CheckBox:DLG_MM_SERVERAUTHENTICATION:CB_AUTHENTICATION +SMTPoutgoing sym:sw:RadioButton:DLG_MM_SERVERAUTHENTICATION:RB_SEP_AUTHENTICATION +IncomingMailServer sym:sw:RadioButton:DLG_MM_SERVERAUTHENTICATION:RB_SMPTAFTERPOP +OutgoingUserName sym:sw:Edit:DLG_MM_SERVERAUTHENTICATION:ED_USERNAME +OutgoingPassword sym:sw:Edit:DLG_MM_SERVERAUTHENTICATION:ED_OUTPASSWORD +Server sym:sw:Edit:DLG_MM_SERVERAUTHENTICATION:ED_SERVER +Port sym:sw:NumericField:DLG_MM_SERVERAUTHENTICATION:NF_PORT +POP3 sym:sw:RadioButton:DLG_MM_SERVERAUTHENTICATION:RB_POP3 +IMAP sym:sw:RadioButton:DLG_MM_SERVERAUTHENTICATION:RB_IMAP +User sym:sw:Edit:DLG_MM_SERVERAUTHENTICATION:ED_INUSERNAME +Password sym:sw:Edit:DLG_MM_SERVERAUTHENTICATION:ED_INPASSWORD + +*SetDefaultLanguage sym:BASCTL_HID_BASICIDE_SETDEFAULT_LANGUAGE +DefaultLanguageListbox sym:basctl:ListBox:RID_DLG_SETDEF_LANGUAGE:LB_DEF_LANGUAGE + +*ShareDocument .uno:ShareDocument +ShareCalc sym:sc:CheckBox:RID_SCDLG_SHAREDOCUMENT:CB_SHARE +ShowChanges Aenderungenanzeigen -TabFilterPage HID_REDLINING_FILTER_PAGE -ShowDate HID_REDLINING_FILTER_CB_DATE -DateList HID_REDLINING_FILTER_LB_DATE -Date1 HID_REDLINING_FILTER_DF_DATE -Time1 HID_REDLINING_FILTER_TF_DATE -Now1 HID_REDLINING_FILTER_IB_CLOCK -Date2 HID_REDLINING_FILTER_DF_DATE2 -Time2 HID_REDLINING_FILTER_TF_DATE2 -Now2 HID_REDLINING_FILTER_IB_CLOCK2 -ShowAuthor HID_REDLINING_FILTER_CB_AUTOR -AuthorList HID_REDLINING_FILTER_LB_AUTOR -ShowRange HID_REDLINING_FILTER_CB_RANGE -RangeText HID_REDLINING_FILTER_ED_RANGE -ShrinkRange HID_REDLINING_FILTER_BTN_REF -AktionList HID_REDLINING_FILTER_LB_ACTION -ShowChangesCalc sc:CheckBox:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT -ShowAcceptedChanges sc:CheckBox:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_ACCEPT -ShowRejectedChanges sc:CheckBox:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_REJECT -ShowComment HID_REDLINING_FILTER_CB_COMMENT -EditComment HID_REDLINING_FILTER_ED_COMMENT -RangeCalc sc:Edit:RID_SCDLG_HIGHLIGHT_CHANGES:ED_ASSIGN -Shrink sc:ImageButton:RID_SCDLG_HIGHLIGHT_CHANGES:RB_ASSIGN - -*SmoothLineProperties HID_SCH_DLG_SPLINE_PROPERTIES -CubicSpline chart2:RadioButton:DLG_SPLINE_PROPERTIES:RB_SPLINES_CUBIC -BSpline chart2:RadioButton:DLG_SPLINE_PROPERTIES:RB_SPLINES_B -Resolution chart2:MetricField:DLG_SPLINE_PROPERTIES:MF_SPLINE_RESOLUTION -DataPointsOrder chart2:MetricField:DLG_SPLINE_PROPERTIES:MF_SPLINE_ORDER - -*Solarization SID_GRFFILTER_SOLARIZE -Value cui:MetricField:RID_SVX_GRFFILTER_DLG_SOLARIZE:DLG_FILTERSOLARIZE_MTR_THRESHOLD -Invert cui:CheckBox:RID_SVX_GRFFILTER_DLG_SOLARIZE:DLG_FILTERSOLARIZE_CBX_INVERT - -*Solver SID_OPENDLG_OPTSOLVER -TargetCell sc:Edit:RID_SCDLG_OPTSOLVER:ED_OBJECTIVECELL -Shrink sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_OBJECTIVECELL -OptimizeMaximum sc:RadioButton:RID_SCDLG_OPTSOLVER:RB_MAX -OptimizeMinimum sc:RadioButton:RID_SCDLG_OPTSOLVER:RB_MIN -OptimizeValueOf sc:RadioButton:RID_SCDLG_OPTSOLVER:RB_VALUE -OptimizeValueEdit sc:Edit:RID_SCDLG_OPTSOLVER:ED_TARGET -OptimizeValueEditShrink sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_TARGET -ChangingCells sc:Edit:RID_SCDLG_OPTSOLVER:ED_VARIABLECELLS -ChangingCellsShrink sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_VARIABLECELLS -CellReference1 sc:Edit:RID_SCDLG_OPTSOLVER:ED_LEFT1 -CellReferenceShrink1 sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_LEFT1 -Operator1 sc:ListBox:RID_SCDLG_OPTSOLVER:LB_OP1 -Value1 sc:Edit:RID_SCDLG_OPTSOLVER:ED_RIGHT1 -ValueShrink1 sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_RIGHT1 -Remove1 sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_DELETE1 -CellReference2 sc:Edit:RID_SCDLG_OPTSOLVER:ED_LEFT2 -CellReferenceShrink2 sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_LEFT2 -Operator2 sc:ListBox:RID_SCDLG_OPTSOLVER:LB_OP2 -Value2 sc:Edit:RID_SCDLG_OPTSOLVER:ED_RIGHT2 -ValueShrink2 sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_RIGHT2 -Remove2 sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_DELETE2 -CellReference3 sc:Edit:RID_SCDLG_OPTSOLVER:ED_LEFT3 -CellReferenceShrink3 sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_LEFT3 -Operator3 sc:ListBox:RID_SCDLG_OPTSOLVER:LB_OP3 -Value3 sc:Edit:RID_SCDLG_OPTSOLVER:ED_RIGHT3 -ValueShrink3 sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_RIGHT3 -Remove3 sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_DELETE3 -CellReference4 sc:Edit:RID_SCDLG_OPTSOLVER:ED_LEFT4 -CellReferenceShrink4 sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_LEFT4 -Operator4 sc:ListBox:RID_SCDLG_OPTSOLVER:LB_OP4 -Value4 sc:Edit:RID_SCDLG_OPTSOLVER:ED_RIGHT4 -ValueShrink4 sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_RIGHT4 -Remove4 sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_DELETE4 -Options sc:PushButton:RID_SCDLG_OPTSOLVER:BTN_OPTIONS -Solve sc:PushButton:RID_SCDLG_OPTSOLVER:BTN_SOLVE - -*SolverOptions HID_SC_SOLVEROPTIONS -SolverEngine sc:ListBox:RID_SCDLG_SOLVEROPTIONS:LB_ENGINE -SolverSettings HID_SC_SOLVEROPTIONS_LB -SolverSettingsEdit sc:PushButton:RID_SCDLG_SOLVEROPTIONS:BTN_EDIT - -*SolverEditSetting HID_SC_SOLVER_INTEGER -SolverNumeric sc:NumericField:RID_SCDLG_SOLVER_INTEGER:NF_VALUE - -*SolvingResult HID_SC_SOLVER_SUCCESS - -*NoSolution HID_SC_SOLVER_NOSOLUTION - -*SortOrder HID_DLG_ORDERCRIT -Fieldname1 dbaccess:ListBox:DLG_ORDERCRIT:LB_ORDERFIELD1 -Order1 dbaccess:ListBox:DLG_ORDERCRIT:LB_ORDERVALUE1 -Fieldname2 dbaccess:ListBox:DLG_ORDERCRIT:LB_ORDERFIELD2 -Order2 dbaccess:ListBox:DLG_ORDERCRIT:LB_ORDERVALUE2 -Fieldname3 dbaccess:ListBox:DLG_ORDERCRIT:LB_ORDERFIELD3 -Order3 dbaccess:ListBox:DLG_ORDERCRIT:LB_ORDERVALUE3 - -*SortRange sc:ModalDialog:RID_SCDLG_SORT_WARNING -ExtendSelection sc:PushButton:RID_SCDLG_SORT_WARNING:BTN_EXTSORT -CurrentSelection sc:PushButton:RID_SCDLG_SORT_WARNING:BTN_CURSORT - -*Spellcheck HID_SPELLCHECK -NotInDictionary cui:MultiLineEdit:RID_SVXDLG_SPELLCHECK:ED_NEWWORD -Suggestions cui:ListBox:RID_SVXDLG_SPELLCHECK:LB_SUGGESTION -DictionaryLanguage cui:ListBox:RID_SVXDLG_SPELLCHECK:LB_LANGUAGE -IgnoreOnce HID_SPLDLG_BUTTON_IGNORE -IgnoreAll HID_SPLDLG_BUTTON_IGNOREALL -AddToDictionary cui:MenuButton:RID_SVXDLG_SPELLCHECK:MB_ADDTODICT -Change HID_SPLDLG_BUTTON_CHANGE -ChangeAll HID_SPLDLG_BUTTON_CHANGEALL -AutoCorrect cui:PushButton:RID_SVXDLG_SPELLCHECK:PB_AUTOCORR -SpellcheckOptions cui:PushButton:RID_SVXDLG_SPELLCHECK:PB_OPTIONS -SpellcheckUndo cui:PushButton:RID_SVXDLG_SPELLCHECK:PB_UNDO -SpellcheckClose HID_SPLDLG_BUTTON_CLOSE - -*SQLException dbaccess:ModalDialog:DLG_SQLEXCEPTIONCHAIN -Errors HID_SQLERROR_EXCHAIN_ERRORS -Errortext HID_SQLERROR_EXCHAIN_TEXT - -*HelpContent HID_HELP_ONHELP -HelpContentUP HID_SCRL_PAGEUP -HelpContentDOWN HID_SCRL_PAGEDOWN -HelpContentNAVIGATION HID_SCRL_NAVI - -*StarOfficeHelp HID_HELP_WINDOW -HelpAbout HID_HELP_LISTBOX -TABCONTROL HID_HELP_TABCONTROL - -ContentPage HID_HELP_TABPAGE_CONTENTS -SearchContent HID_HELP_TREELISTBOX_CONTENTS - -IndexPage HID_HELP_TABPAGE_INDEX -SearchIndex sfx2:ComboBox:TP_HELP_INDEX:CB_INDEX -DisplayIndex sfx2:PushButton:TP_HELP_INDEX:PB_OPEN_INDEX - -FindPage HID_HELP_TABPAGE_SEARCH -SearchFind sfx2:ComboBox:TP_HELP_SEARCH:ED_SEARCH -FindButton sfx2:PushButton:TP_HELP_SEARCH:PB_SEARCH -Result sfx2:ListBox:TP_HELP_SEARCH:LB_RESULT -FindInHeadingsOnly sfx2:CheckBox:TP_HELP_SEARCH:CB_SCOPE -FindFullWords sfx2:CheckBox:TP_HELP_SEARCH:CB_FULLWORDS -DisplayFind sfx2:PushButton:TP_HELP_SEARCH:PB_OPEN_SEARCH - -BookmarksPage HID_HELP_TABPAGE_BOOKMARKS -Bookmarks sfx2:ListBox:TP_HELP_BOOKMARKS:LB_BOOKMARKS -DisplayBookmarks sfx2:PushButton:TP_HELP_BOOKMARKS:PB_BOOKMARKS - -HelpWindow HID_EDIT_WIN - -Index HID_HELP_TOOLBOXITEM_INDEX -GoToStart HID_HELP_TOOLBOXITEM_START -Backward HID_HELP_TOOLBOXITEM_BACKWARD -Forward HID_HELP_TOOLBOXITEM_FORWARD -PrintButton HID_HELP_TOOLBOXITEM_PRINT -SetBookmarks HID_HELP_TOOLBOXITEM_BOOKMARKS - -*SaveScheme HID_OPTIONS_COLORCONFIG_SAVE_SCHEME - -SchemeName HID_OPTIONS_COLORCONFIG_NAME_SCHEME - -*SecurityWarning HID_XMLSECDLG_MACROWARN -ViewSignature uui:PushButton:RID_XMLSECDLG_MACROWARN:PB_VIEWSIGNS -TrustAlways uui:CheckBox:RID_XMLSECDLG_MACROWARN:CB_ALWAYSTRUST - -*Slides sd:DockingWindow:FLT_LEFT_PANE_IMPRESS_DOCKING_WINDOW -SlidesControl HID_SD_WIN_DOCUMENT - -*Pagepane sd:DockingWindow:FLT_LEFT_PANE_DRAW_DOCKING_WINDOW -Pagecontrol HID_SD_WIN_DOCUMENT - -*Spacing SID_DISTANCE -Category starmath:MenuButton:RID_DISTANCEDIALOG:1 -Default starmath:PushButton:RID_DISTANCEDIALOG:1 -SpacingSpacing HID_SMA_DEFAULT_DIST -LineSpacing HID_SMA_LINE_DIST -RootSpacing HID_SMA_ROOT_DIST -Superscript HID_SMA_SUP_DIST -Subscript HID_SMA_SUB_DIST -Numerator HID_SMA_NUMERATOR_DIST -Denominator HID_SMA_DENOMINATOR_DIST -ExcessLength HID_SMA_FRACLINE_EXCWIDTH -Weight HID_SMA_FRACLINE_LINEWIDTH -UpperLimit HID_SMA_UPPERLIMIT_DIST -LowerLimit HID_SMA_LOWERLIMIT_DIST -ExcessSize HID_SMA_BRACKET_EXCHEIGHT -BracketSpacing HID_SMA_BRACKET_DIST -ExcessSizeAll HID_SMA_BRACKET_EXCHEIGHT2 -ScaleAllBrackets starmath:CheckBox:RID_DISTANCEDIALOG:1 -MatrixLineSpacing HID_SMA_MATRIXROW_DIST -ColumnSpacing HID_SMA_MATRIXCOL_DIST -PrimaryHeight HID_SMA_ATTRIBUT_DIST -MinimunSpacing HID_SMA_INTERATTRIBUT_DIST -OperatorsExcessSize HID_SMA_OPERATOR_EXCHEIGHT -OperatorsSpacing HID_SMA_OPERATOR_DIST -BordersLeft HID_SMA_LEFTBORDER_DIST -BordersRight HID_SMA_RIGHTBORDER_DIST -BordersTop HID_SMA_UPPERBORDER_DIST -BordersBottom HID_SMA_LOWERBORDER_DIST - -*StarOfficeCalendar1 HID_DLGHOLIDAYCAL_DIALOG -Area HID_DLGHOLIDAYCAL_1_CMBSTATE -YearOverview HID_DLGHOLIDAYCAL_1_OPYEAR -MonthOverview HID_DLGHOLIDAYCAL_1_OPMONTH -Year HID_DLGHOLIDAYCAL_1_EDYEAR -Month HID_DLGHOLIDAYCAL_1_EDMONTH -Preview HID_DLGHOLIDAYCAL_1_PREVIEW -Cancel HID_DLGHOLIDAYCAL_0_CMDCANCEL -PersonalData HID_DLGHOLIDAYCAL_0_CMDOWNDATA -Create HID_DLGHOLIDAYCAL_0_CMDOK - -*StarOfficeCalendar2 HID_DLGHOLIDAYCAL_DIALOG -Event HID_DLGHOLIDAYCAL_2_EDEVENT -OneTime HID_DLGHOLIDAYCAL_2_CHKEVENT -Day HID_DLGHOLIDAYCAL_2_EDEVENTDAY -Month HID_DLGHOLIDAYCAL_2_EDEVENTMONTH -Year HID_DLGHOLIDAYCAL_2_EDEVENTYEAR -Insert HID_DLGHOLIDAYCAL_2_CMDINSERT -Delete HID_DLGHOLIDAYCAL_2_CMDDELETE -List HID_DLGHOLIDAYCAL_2_LBOWNDATA -Cancel HID_DLGHOLIDAYCAL_0_CMDCANCEL -Back HID_DLGHOLIDAYCAL_0_CMDOWNDATA -Create HID_DLGHOLIDAYCAL_0_CMDOK - -*StoredPasswordsDialog HID_DLG_WEBCONNECTION_INFO -Remove cui:PushButton:RID_SVXDLG_WEBCONNECTION_INFO:PB_REMOVE -RemoveAll cui:PushButton:RID_SVXDLG_WEBCONNECTION_INFO:PB_REMOVEALL -changePassword cui:PushButton:RID_SVXDLG_WEBCONNECTION_INFO:PB_CHANGE - -*SVMOptions svtools:ModalDialog:DLG_EXPORT -Exportwidth svtools:MetricField:DLG_EXPORT:MF_SIZEX -Exportmeasurement svtools:ListBox:DLG_EXPORT:LB_SIZEX -Exportheight svtools:MetricField:DLG_EXPORT:MF_SIZEY
\ No newline at end of file +TabFilterPage sym:SVX_HID_REDLINING_FILTER_PAGE +ShowDate sym:SVX_HID_REDLINING_FILTER_CB_DATE +DateList sym:SVX_HID_REDLINING_FILTER_LB_DATE +Date1 sym:SVX_HID_REDLINING_FILTER_DF_DATE +Time1 sym:SVX_HID_REDLINING_FILTER_TF_DATE +Now1 sym:SVX_HID_REDLINING_FILTER_IB_CLOCK +Date2 sym:SVX_HID_REDLINING_FILTER_DF_DATE2 +Time2 sym:SVX_HID_REDLINING_FILTER_TF_DATE2 +Now2 sym:SVX_HID_REDLINING_FILTER_IB_CLOCK2 +ShowAuthor sym:SVX_HID_REDLINING_FILTER_CB_AUTOR +AuthorList sym:SVX_HID_REDLINING_FILTER_LB_AUTOR +ShowRange sym:SVX_HID_REDLINING_FILTER_CB_RANGE +RangeText sym:SVX_HID_REDLINING_FILTER_ED_RANGE +ShrinkRange sym:SVX_HID_REDLINING_FILTER_BTN_REF +AktionList sym:SVX_HID_REDLINING_FILTER_LB_ACTION +ShowChangesCalc sym:sc:CheckBox:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT +ShowAcceptedChanges sym:sc:CheckBox:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_ACCEPT +ShowRejectedChanges sym:sc:CheckBox:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_REJECT +ShowComment sym:SVX_HID_REDLINING_FILTER_CB_COMMENT +EditComment sym:SVX_HID_REDLINING_FILTER_ED_COMMENT +RangeCalc sym:sc:Edit:RID_SCDLG_HIGHLIGHT_CHANGES:ED_ASSIGN +Shrink sym:sc:ImageButton:RID_SCDLG_HIGHLIGHT_CHANGES:RB_ASSIGN + +*SmoothLineProperties sym:CHART2_HID_SCH_DLG_SPLINE_PROPERTIES +CubicSpline sym:chart2:RadioButton:DLG_SPLINE_PROPERTIES:RB_SPLINES_CUBIC +BSpline sym:chart2:RadioButton:DLG_SPLINE_PROPERTIES:RB_SPLINES_B +Resolution sym:chart2:MetricField:DLG_SPLINE_PROPERTIES:MF_SPLINE_RESOLUTION +DataPointsOrder sym:chart2:MetricField:DLG_SPLINE_PROPERTIES:MF_SPLINE_ORDER + +*Solarization .uno:GraphicFilterSolarize +Value sym:cui:MetricField:RID_SVX_GRFFILTER_DLG_SOLARIZE:DLG_FILTERSOLARIZE_MTR_THRESHOLD +Invert sym:cui:CheckBox:RID_SVX_GRFFILTER_DLG_SOLARIZE:DLG_FILTERSOLARIZE_CBX_INVERT + +*Solver .uno:SolverDialog +TargetCell sym:sc:Edit:RID_SCDLG_OPTSOLVER:ED_OBJECTIVECELL +Shrink sym:sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_OBJECTIVECELL +OptimizeMaximum sym:sc:RadioButton:RID_SCDLG_OPTSOLVER:RB_MAX +OptimizeMinimum sym:sc:RadioButton:RID_SCDLG_OPTSOLVER:RB_MIN +OptimizeValueOf sym:sc:RadioButton:RID_SCDLG_OPTSOLVER:RB_VALUE +OptimizeValueEdit sym:sc:Edit:RID_SCDLG_OPTSOLVER:ED_TARGET +OptimizeValueEditShrink sym:sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_TARGET +ChangingCells sym:sc:Edit:RID_SCDLG_OPTSOLVER:ED_VARIABLECELLS +ChangingCellsShrink sym:sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_VARIABLECELLS +CellReference1 sym:sc:Edit:RID_SCDLG_OPTSOLVER:ED_LEFT1 +CellReferenceShrink1 sym:sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_LEFT1 +Operator1 sym:sc:ListBox:RID_SCDLG_OPTSOLVER:LB_OP1 +Value1 sym:sc:Edit:RID_SCDLG_OPTSOLVER:ED_RIGHT1 +ValueShrink1 sym:sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_RIGHT1 +Remove1 sym:sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_DELETE1 +CellReference2 sym:sc:Edit:RID_SCDLG_OPTSOLVER:ED_LEFT2 +CellReferenceShrink2 sym:sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_LEFT2 +Operator2 sym:sc:ListBox:RID_SCDLG_OPTSOLVER:LB_OP2 +Value2 sym:sc:Edit:RID_SCDLG_OPTSOLVER:ED_RIGHT2 +ValueShrink2 sym:sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_RIGHT2 +Remove2 sym:sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_DELETE2 +CellReference3 sym:sc:Edit:RID_SCDLG_OPTSOLVER:ED_LEFT3 +CellReferenceShrink3 sym:sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_LEFT3 +Operator3 sym:sc:ListBox:RID_SCDLG_OPTSOLVER:LB_OP3 +Value3 sym:sc:Edit:RID_SCDLG_OPTSOLVER:ED_RIGHT3 +ValueShrink3 sym:sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_RIGHT3 +Remove3 sym:sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_DELETE3 +CellReference4 sym:sc:Edit:RID_SCDLG_OPTSOLVER:ED_LEFT4 +CellReferenceShrink4 sym:sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_LEFT4 +Operator4 sym:sc:ListBox:RID_SCDLG_OPTSOLVER:LB_OP4 +Value4 sym:sc:Edit:RID_SCDLG_OPTSOLVER:ED_RIGHT4 +ValueShrink4 sym:sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_RIGHT4 +Remove4 sym:sc:ImageButton:RID_SCDLG_OPTSOLVER:IB_DELETE4 +Options sym:sc:PushButton:RID_SCDLG_OPTSOLVER:BTN_OPTIONS +Solve sym:sc:PushButton:RID_SCDLG_OPTSOLVER:BTN_SOLVE + +*SolverOptions sym:SC_HID_SC_SOLVEROPTIONS +SolverEngine sym:sc:ListBox:RID_SCDLG_SOLVEROPTIONS:LB_ENGINE +SolverSettings sym:SC_HID_SC_SOLVEROPTIONS_LB +SolverSettingsEdit sym:sc:PushButton:RID_SCDLG_SOLVEROPTIONS:BTN_EDIT + +*SolverEditSetting sym:SC_HID_SC_SOLVER_INTEGER +SolverNumeric sym:sc:NumericField:RID_SCDLG_SOLVER_INTEGER:NF_VALUE + +*SolvingResult sym:SC_HID_SC_SOLVER_SUCCESS + +*NoSolution sym:SC_HID_SC_SOLVER_NOSOLUTION + +*SortOrder sym:DBACCESS_HID_DLG_ORDERCRIT +Fieldname1 sym:dbaccess:ListBox:DLG_ORDERCRIT:LB_ORDERFIELD1 +Order1 sym:dbaccess:ListBox:DLG_ORDERCRIT:LB_ORDERVALUE1 +Fieldname2 sym:dbaccess:ListBox:DLG_ORDERCRIT:LB_ORDERFIELD2 +Order2 sym:dbaccess:ListBox:DLG_ORDERCRIT:LB_ORDERVALUE2 +Fieldname3 sym:dbaccess:ListBox:DLG_ORDERCRIT:LB_ORDERFIELD3 +Order3 sym:dbaccess:ListBox:DLG_ORDERCRIT:LB_ORDERVALUE3 + +*SortRange sym:sc:ModalDialog:RID_SCDLG_SORT_WARNING +ExtendSelection sym:sc:PushButton:RID_SCDLG_SORT_WARNING:BTN_EXTSORT +CurrentSelection sym:sc:PushButton:RID_SCDLG_SORT_WARNING:BTN_CURSORT + +*Spellcheck sym:CUI_HID_SPELLCHECK +NotInDictionary sym:cui:MultiLineEdit:RID_SVXDLG_SPELLCHECK:ED_NEWWORD +Suggestions sym:cui:ListBox:RID_SVXDLG_SPELLCHECK:LB_SUGGESTION +DictionaryLanguage sym:cui:ListBox:RID_SVXDLG_SPELLCHECK:LB_LANGUAGE +IgnoreOnce sym:CUI_HID_SPLDLG_BUTTON_IGNORE +IgnoreAll sym:CUI_HID_SPLDLG_BUTTON_IGNOREALL +AddToDictionary sym:cui:MenuButton:RID_SVXDLG_SPELLCHECK:MB_ADDTODICT +Change sym:CUI_HID_SPLDLG_BUTTON_CHANGE +ChangeAll sym:CUI_HID_SPLDLG_BUTTON_CHANGEALL +AutoCorrect sym:cui:PushButton:RID_SVXDLG_SPELLCHECK:PB_AUTOCORR +SpellcheckOptions sym:cui:PushButton:RID_SVXDLG_SPELLCHECK:PB_OPTIONS +SpellcheckUndo sym:cui:PushButton:RID_SVXDLG_SPELLCHECK:PB_UNDO +SpellcheckClose sym:CUI_HID_SPLDLG_BUTTON_CLOSE + +*SQLException sym:dbaccess:ModalDialog:DLG_SQLEXCEPTIONCHAIN +Errors sym:DBACCESS_HID_SQLERROR_EXCHAIN_ERRORS +Errortext sym:DBACCESS_HID_SQLERROR_EXCHAIN_TEXT + +*HelpContent sym:SFX2_HID_HELP_ONHELP +HelpContentUP sym:SW_HID_SCRL_PAGEUP +HelpContentDOWN sym:SW_HID_SCRL_PAGEDOWN +HelpContentNAVIGATION sym:SW_HID_SCRL_NAVI + +*StarOfficeHelp sym:SFX2_HID_HELP_WINDOW +HelpAbout sym:SFX2_HID_HELP_LISTBOX +TABCONTROL sym:SFX2_HID_HELP_TABCONTROL + +ContentPage sym:SFX2_HID_HELP_TABPAGE_CONTENTS +SearchContent sym:SFX2_HID_HELP_TREELISTBOX_CONTENTS + +IndexPage sym:SFX2_HID_HELP_TABPAGE_INDEX +SearchIndex sym:sfx2:ComboBox:TP_HELP_INDEX:CB_INDEX +DisplayIndex sym:sfx2:PushButton:TP_HELP_INDEX:PB_OPEN_INDEX + +FindPage sym:SFX2_HID_HELP_TABPAGE_SEARCH +SearchFind sym:sfx2:ComboBox:TP_HELP_SEARCH:ED_SEARCH +FindButton sym:sfx2:PushButton:TP_HELP_SEARCH:PB_SEARCH +Result sym:sfx2:ListBox:TP_HELP_SEARCH:LB_RESULT +FindInHeadingsOnly sym:sfx2:CheckBox:TP_HELP_SEARCH:CB_SCOPE +FindFullWords sym:sfx2:CheckBox:TP_HELP_SEARCH:CB_FULLWORDS +DisplayFind sym:sfx2:PushButton:TP_HELP_SEARCH:PB_OPEN_SEARCH + +BookmarksPage sym:SFX2_HID_HELP_TABPAGE_BOOKMARKS +Bookmarks sym:sfx2:ListBox:TP_HELP_BOOKMARKS:LB_BOOKMARKS +DisplayBookmarks sym:sfx2:PushButton:TP_HELP_BOOKMARKS:PB_BOOKMARKS + +HelpWindow sym:SW_HID_EDIT_WIN + +Index sym:SFX2_HID_HELP_TOOLBOXITEM_INDEX +GoToStart sym:SFX2_HID_HELP_TOOLBOXITEM_START +Backward sym:SFX2_HID_HELP_TOOLBOXITEM_BACKWARD +Forward sym:SFX2_HID_HELP_TOOLBOXITEM_FORWARD +PrintButton sym:SFX2_HID_HELP_TOOLBOXITEM_PRINT +SetBookmarks sym:SFX2_HID_HELP_TOOLBOXITEM_BOOKMARKS + +*SaveScheme sym:CUI_HID_OPTIONS_COLORCONFIG_SAVE_SCHEME + +SchemeName sym:CUI_HID_OPTIONS_COLORCONFIG_NAME_SCHEME + +*SecurityWarning sym:UUI_HID_XMLSECDLG_MACROWARN +ViewSignature sym:uui:PushButton:RID_XMLSECDLG_MACROWARN:PB_VIEWSIGNS +TrustAlways sym:uui:CheckBox:RID_XMLSECDLG_MACROWARN:CB_ALWAYSTRUST + +*Slides sym:sd:DockingWindow:FLT_LEFT_PANE_IMPRESS_DOCKING_WINDOW +SlidesControl sym:SD_HID_SD_WIN_DOCUMENT + +*Pagepane sym:sd:DockingWindow:FLT_LEFT_PANE_DRAW_DOCKING_WINDOW +Pagecontrol sym:SD_HID_SD_WIN_DOCUMENT + +*Spacing .uno:ChangeDistance +Category sym:starmath:MenuButton:RID_DISTANCEDIALOG:1 +Default sym:starmath:PushButton:RID_DISTANCEDIALOG:1 +SpacingSpacing sym:STARMATH_HID_SMA_DEFAULT_DIST +LineSpacing sym:STARMATH_HID_SMA_LINE_DIST +RootSpacing sym:STARMATH_HID_SMA_ROOT_DIST +Superscript sym:STARMATH_HID_SMA_SUP_DIST +Subscript sym:STARMATH_HID_SMA_SUB_DIST +Numerator sym:STARMATH_HID_SMA_NUMERATOR_DIST +Denominator sym:STARMATH_HID_SMA_DENOMINATOR_DIST +ExcessLength sym:STARMATH_HID_SMA_FRACLINE_EXCWIDTH +Weight sym:STARMATH_HID_SMA_FRACLINE_LINEWIDTH +UpperLimit sym:STARMATH_HID_SMA_UPPERLIMIT_DIST +LowerLimit sym:STARMATH_HID_SMA_LOWERLIMIT_DIST +ExcessSize sym:STARMATH_HID_SMA_BRACKET_EXCHEIGHT +BracketSpacing sym:STARMATH_HID_SMA_BRACKET_DIST +ExcessSizeAll sym:STARMATH_HID_SMA_BRACKET_EXCHEIGHT2 +ScaleAllBrackets sym:starmath:CheckBox:RID_DISTANCEDIALOG:1 +MatrixLineSpacing sym:STARMATH_HID_SMA_MATRIXROW_DIST +ColumnSpacing sym:STARMATH_HID_SMA_MATRIXCOL_DIST +PrimaryHeight sym:STARMATH_HID_SMA_ATTRIBUT_DIST +MinimunSpacing sym:STARMATH_HID_SMA_INTERATTRIBUT_DIST +OperatorsExcessSize sym:STARMATH_HID_SMA_OPERATOR_EXCHEIGHT +OperatorsSpacing sym:STARMATH_HID_SMA_OPERATOR_DIST +BordersLeft sym:STARMATH_HID_SMA_LEFTBORDER_DIST +BordersRight sym:STARMATH_HID_SMA_RIGHTBORDER_DIST +BordersTop sym:STARMATH_HID_SMA_UPPERBORDER_DIST +BordersBottom sym:STARMATH_HID_SMA_LOWERBORDER_DIST + +*StarOfficeCalendar1 sym:WIZARDS_HID_DLGHOLIDAYCAL_DIALOG +Area sym:WIZARDS_HID_DLGHOLIDAYCAL_1_CMBSTATE +YearOverview sym:WIZARDS_HID_DLGHOLIDAYCAL_1_OPYEAR +MonthOverview sym:WIZARDS_HID_DLGHOLIDAYCAL_1_OPMONTH +Year sym:WIZARDS_HID_DLGHOLIDAYCAL_1_EDYEAR +Month sym:WIZARDS_HID_DLGHOLIDAYCAL_1_EDMONTH +Preview sym:WIZARDS_HID_DLGHOLIDAYCAL_1_PREVIEW +Cancel sym:WIZARDS_HID_DLGHOLIDAYCAL_0_CMDCANCEL +PersonalData sym:WIZARDS_HID_DLGHOLIDAYCAL_0_CMDOWNDATA +Create sym:WIZARDS_HID_DLGHOLIDAYCAL_0_CMDOK + +*StarOfficeCalendar2 sym:WIZARDS_HID_DLGHOLIDAYCAL_DIALOG +Event sym:WIZARDS_HID_DLGHOLIDAYCAL_2_EDEVENT +OneTime sym:WIZARDS_HID_DLGHOLIDAYCAL_2_CHKEVENT +Day sym:WIZARDS_HID_DLGHOLIDAYCAL_2_EDEVENTDAY +Month sym:WIZARDS_HID_DLGHOLIDAYCAL_2_EDEVENTMONTH +Year sym:WIZARDS_HID_DLGHOLIDAYCAL_2_EDEVENTYEAR +Insert sym:WIZARDS_HID_DLGHOLIDAYCAL_2_CMDINSERT +Delete sym:WIZARDS_HID_DLGHOLIDAYCAL_2_CMDDELETE +List sym:WIZARDS_HID_DLGHOLIDAYCAL_2_LBOWNDATA +Cancel sym:WIZARDS_HID_DLGHOLIDAYCAL_0_CMDCANCEL +Back sym:WIZARDS_HID_DLGHOLIDAYCAL_0_CMDOWNDATA +Create sym:WIZARDS_HID_DLGHOLIDAYCAL_0_CMDOK + +*StoredPasswordsDialog sym:CUI_HID_DLG_WEBCONNECTION_INFO +Remove sym:cui:PushButton:RID_SVXDLG_WEBCONNECTION_INFO:PB_REMOVE +RemoveAll sym:cui:PushButton:RID_SVXDLG_WEBCONNECTION_INFO:PB_REMOVEALL +changePassword sym:cui:PushButton:RID_SVXDLG_WEBCONNECTION_INFO:PB_CHANGE + +*SVMOptions sym:svtools:ModalDialog:DLG_EXPORT +Exportwidth sym:svtools:MetricField:DLG_EXPORT:MF_SIZEX +Exportmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_SIZEX +Exportheight sym:svtools:MetricField:DLG_EXPORT:MF_SIZEY diff --git a/testautomation/global/win/edia_t_z.win b/testautomation/global/win/edia_t_z.win index 79297769c7d2..5acdef31038b 100755..100644 --- a/testautomation/global/win/edia_t_z.win +++ b/testautomation/global/win/edia_t_z.win @@ -1,313 +1,314 @@ -*TabColor FID_TAB_SET_TAB_BG_COLOR +*TabColor .uno:TabBgColor -*TableDesignTable HID_TABDESIGN_BACKGROUND -TableWindow HID_CTL_TABLEEDIT -Fieldname HID_TABDESIGN_NAMECELL -FieldType HID_TABDESIGN_TYPECELL -Description HID_TABDESIGN_HELPTEXT +*TableDesignTable sym:DBACCESS_HID_TABDESIGN_BACKGROUND +TableWindow sym:DBACCESS_HID_CTL_TABLEEDIT +Fieldname sym:DBACCESS_HID_TABDESIGN_NAMECELL +FieldType sym:DBACCESS_HID_TABDESIGN_TYPECELL +Description sym:DBACCESS_HID_TABDESIGN_HELPTEXT -*TablesFilter HID_DSADMIN_TABLE_SUBSCRIPTION -Tables HID_DSADMIN_TABLE_SELECTOR +*TablesFilter sym:DBACCESS_HID_DSADMIN_TABLE_SUBSCRIPTION +Tables sym:DBACCESS_HID_DSADMIN_TABLE_SELECTOR -*TableToolbox HID_DSADMIN_TABLE_TOOLBOX -CreateDesign HID_BROWSER_TABLE_CREATE_DESIGN -EditTable HID_BROWSER_TABLE_EDIT -DeleteTable HID_BROWSER_TABLE_DELETE +*TableToolbox sym:DBACCESS_HID_DSADMIN_TABLE_TOOLBOX +CreateDesign sym:DBACCESS_HID_BROWSER_TABLE_CREATE_DESIGN +EditTable sym:DBACCESS_HID_BROWSER_TABLE_EDIT +DeleteTable sym:DBACCESS_HID_BROWSER_TABLE_DELETE -*TableWizard HID_DLGTABLE_DIALOG -Business HID_DLGTABLE_OPTBUSINESS -Personal HID_DLGTABLE_OPTPRIVATE -Tables HID_DLGTABLE_LBTABLES -Fields HID_DLGTABLE_FIELDSAVAILABLE -SelectedFields HID_DLGTABLE_FIELDSSELECTED -Add HID_DLGTABLE_CMDMOVESELECTED -AddAll HID_DLGTABLE_CMDMOVEALL -Remove HID_DLGTABLE_CMDREMOVESELECTED -RemoveAll HID_DLGTABLE_CMDREMOVEALL -Up HID_DLGTABLE_CMDMOVEUP -Down HID_DLGTABLE_CMDMOVEDOWN -FieldNames HID_DLGTABLE_LB_SELFIELDNAMES -FieldsUp HID_DLGTABLE_CMDMOVEFIELDUP -FieldsDown HID_DLGTABLE_CMDMOVEFIELDDOWN -FieldsRemove HID_DLGTABLE_CMDMINUS -FieldsAdd HID_DLGTABLE_CMDPLUS -FieldName HID_DLGTABLE_COLNAME -TableName HID_DLGTABLE_TXT_NAME -InsertData HID_DLGTABLE_OPT_WORKWITHTABLE -ModifyDesing HID_DLGTABLE_OPT_MODIFYTABLE -CreateForm HID_DLGTABLE_OPT_STARTFORMWIZARD -BackBtn HID_DLGTABLE_CMDPREV -NextBtn HID_DLGTABLE_CMDNEXT -FinishBtn HID_DLGTABLE_CMDFINISH -CancelBtn HID_DLGTABLE_CMDCANCEL +*TableWizard sym:WIZARDS_HID_DLGTABLE_DIALOG +Business sym:WIZARDS_HID_DLGTABLE_OPTBUSINESS +Personal sym:WIZARDS_HID_DLGTABLE_OPTPRIVATE +Tables sym:WIZARDS_HID_DLGTABLE_LBTABLES +Fields sym:WIZARDS_HID_DLGTABLE_FIELDSAVAILABLE +SelectedFields sym:WIZARDS_HID_DLGTABLE_FIELDSSELECTED +Add sym:WIZARDS_HID_DLGTABLE_CMDMOVESELECTED +AddAll sym:WIZARDS_HID_DLGTABLE_CMDMOVEALL +Remove sym:WIZARDS_HID_DLGTABLE_CMDREMOVESELECTED +RemoveAll sym:WIZARDS_HID_DLGTABLE_CMDREMOVEALL +Up sym:WIZARDS_HID_DLGTABLE_CMDMOVEUP +Down sym:WIZARDS_HID_DLGTABLE_CMDMOVEDOWN +FieldNames sym:WIZARDS_HID_DLGTABLE_LB_SELFIELDNAMES +FieldsUp sym:WIZARDS_HID_DLGTABLE_CMDMOVEFIELDUP +FieldsDown sym:WIZARDS_HID_DLGTABLE_CMDMOVEFIELDDOWN +FieldsRemove sym:WIZARDS_HID_DLGTABLE_CMDMINUS +FieldsAdd sym:WIZARDS_HID_DLGTABLE_CMDPLUS +FieldName sym:WIZARDS_HID_DLGTABLE_COLNAME +TableName sym:WIZARDS_HID_DLGTABLE_TXT_NAME +InsertData sym:WIZARDS_HID_DLGTABLE_OPT_WORKWITHTABLE +ModifyDesing sym:WIZARDS_HID_DLGTABLE_OPT_MODIFYTABLE +CreateForm sym:WIZARDS_HID_DLGTABLE_OPT_STARTFORMWIZARD +BackBtn sym:WIZARDS_HID_DLGTABLE_CMDPREV +NextBtn sym:WIZARDS_HID_DLGTABLE_CMDNEXT +FinishBtn sym:WIZARDS_HID_DLGTABLE_CMDFINISH +CancelBtn sym:WIZARDS_HID_DLGTABLE_CMDCANCEL ' not nice solved, but can't do better right now; complains -> TBO -*Tasks sd:DockingWindow:FLT_TOOL_PANEL_DOCKING_WINDOW -View HID_TASKPANE_VIEW_MENU -'? HID_SD_WIN_DOCUMENT +*Tasks sym:sd:DockingWindow:FLT_TOOL_PANEL_DOCKING_WINDOW +View sym:SFX2_HID_TASKPANE_VIEW_MENU +'? sym:SD_HID_SD_WIN_DOCUMENT ' Master Pages -UsedInThisPresentationPreview HID_SD_TASK_PANE_PREVIEW_CURRENT -RecentlyUsedPreview HID_SD_TASK_PANE_PREVIEW_RECENT -AvailableForUsePreview HID_SD_TASK_PANE_PREVIEW_ALL +UsedInThisPresentationPreview sym:SD_HID_SD_TASK_PANE_PREVIEW_CURRENT +RecentlyUsedPreview sym:SD_HID_SD_TASK_PANE_PREVIEW_RECENT +AvailableForUsePreview sym:SD_HID_SD_TASK_PANE_PREVIEW_ALL ' Layouts -LayoutsPreview HID_SD_TASK_PANE_PREVIEW_LAYOUTS +LayoutsPreview sym:SD_HID_SD_TASK_PANE_PREVIEW_LAYOUTS ' Custom Animation -EffectAdd HID_SD_CUSTOMANIMATIONPANE_PB_ADD_EFFECT -EffectChange HID_SD_CUSTOMANIMATIONPANE_PB_CHANGE_EFFECT -EffectRemove HID_SD_CUSTOMANIMATIONPANE_PB_REMOVE_EFFECT -EffectStart HID_SD_CUSTOMANIMATIONPANE_LB_START -EffectProperty HID_SD_CUSTOMANIMATIONPANE_LB_PROPERTY -EffectDirection HID_SD_CUSTOMANIMATIONPANE_PRESETPROPERTYBOX -EffectOptions HID_SD_CUSTOMANIMATIONPANE_PB_PROPERTY_MORE -EffectSpeed HID_SD_CUSTOMANIMATIONPANE_CB_SPEED -EffectList HID_SD_CUSTOMANIMATIONPANE_CT_CUSTOM_ANIMATION_LIST -EffectUp HID_SD_CUSTOMANIMATIONPANE_PB_MOVE_UP -EffectDown HID_SD_CUSTOMANIMATIONPANE_PB_MOVE_DOWN -EffectPlay HID_SD_CUSTOMANIMATIONPANE_PB_PLAY -EffectSlideShow HID_SD_CUSTOMANIMATIONPANE_PB_SLIDE_SHOW -EffectAutomaticPreview HID_SD_CUSTOMANIMATIONPANE_CB_AUTOPREVIEW +EffectAdd sym:SD_HID_SD_CUSTOMANIMATIONPANE_PB_ADD_EFFECT +EffectChange sym:SD_HID_SD_CUSTOMANIMATIONPANE_PB_CHANGE_EFFECT +EffectRemove sym:SD_HID_SD_CUSTOMANIMATIONPANE_PB_REMOVE_EFFECT +EffectStart sym:SD_HID_SD_CUSTOMANIMATIONPANE_LB_START +EffectProperty sym:SD_HID_SD_CUSTOMANIMATIONPANE_LB_PROPERTY +EffectDirection sym:SD_HID_SD_CUSTOMANIMATIONPANE_PRESETPROPERTYBOX +EffectOptions sym:SD_HID_SD_CUSTOMANIMATIONPANE_PB_PROPERTY_MORE +EffectSpeed sym:SD_HID_SD_CUSTOMANIMATIONPANE_CB_SPEED +EffectList sym:SD_HID_SD_CUSTOMANIMATIONPANE_CT_CUSTOM_ANIMATION_LIST +EffectUp sym:SD_HID_SD_CUSTOMANIMATIONPANE_PB_MOVE_UP +EffectDown sym:SD_HID_SD_CUSTOMANIMATIONPANE_PB_MOVE_DOWN +EffectPlay sym:SD_HID_SD_CUSTOMANIMATIONPANE_PB_PLAY +EffectSlideShow sym:SD_HID_SD_CUSTOMANIMATIONPANE_PB_SLIDE_SHOW +EffectAutomaticPreview sym:SD_HID_SD_CUSTOMANIMATIONPANE_CB_AUTOPREVIEW ' Slide Transition -TransitionApplyToSelectedSlide HID_SD_SLIDETRANSITIONPANE_LB_SLIDE_TRANSITIONS -TransitionSpeed HID_SD_SLIDETRANSITIONPANE_LB_SPEED -TransitionSound HID_SD_SLIDETRANSITIONPANE_LB_SOUND -TransitionLoopUntilNextSound HID_SD_SLIDETRANSITIONPANE_CB_LOOP_SOUND -TransitionOnMouseClick HID_SD_SLIDETRANSITIONPANE_RB_ADVANCE_ON_MOUSE -TransitionAutomaticallyAfter HID_SD_SLIDETRANSITIONPANE_RB_ADVANCE_AUTO -TransitionAutomaticallyAfterTime HID_SD_SLIDETRANSITIONPANE_MF_ADVANCE_AUTO_AFTER -TransitionApplyToAllSlides HID_SD_SLIDETRANSITIONPANE_PB_APPLY_TO_ALL -TransitionPlay HID_SD_SLIDETRANSITIONPANE_PB_PLAY -TransitionSlideShow HID_SD_SLIDETRANSITIONPANE_PB_SLIDE_SHOW -TransitionAutomaticPreview HID_SD_SLIDETRANSITIONPANE_CB_AUTO_PREVIEW +TransitionApplyToSelectedSlide sym:SD_HID_SD_SLIDETRANSITIONPANE_LB_SLIDE_TRANSITIONS +TransitionSpeed sym:SD_HID_SD_SLIDETRANSITIONPANE_LB_SPEED +TransitionSound sym:SD_HID_SD_SLIDETRANSITIONPANE_LB_SOUND +TransitionLoopUntilNextSound sym:SD_HID_SD_SLIDETRANSITIONPANE_CB_LOOP_SOUND +TransitionOnMouseClick sym:SD_HID_SD_SLIDETRANSITIONPANE_RB_ADVANCE_ON_MOUSE +TransitionAutomaticallyAfter sym:SD_HID_SD_SLIDETRANSITIONPANE_RB_ADVANCE_AUTO +TransitionAutomaticallyAfterTime sym:SD_HID_SD_SLIDETRANSITIONPANE_MF_ADVANCE_AUTO_AFTER +TransitionApplyToAllSlides sym:SD_HID_SD_SLIDETRANSITIONPANE_PB_APPLY_TO_ALL +TransitionPlay sym:SD_HID_SD_SLIDETRANSITIONPANE_PB_PLAY +TransitionSlideShow sym:SD_HID_SD_SLIDETRANSITIONPANE_PB_SLIDE_SHOW +TransitionAutomaticPreview sym:SD_HID_SD_SLIDETRANSITIONPANE_CB_AUTO_PREVIEW -*MasterPages HID_SD_SLIDE_DESIGNS -*UsedInThisPresentation HID_SD_CURRENT_MASTERS -*RecentlyUsed HID_SD_RECENT_MASTERS -*AvailableForUse HID_SD_ALL_MASTERS -*Layouts HID_SD_SLIDE_LAYOUTS -*CustomAnimation HID_SD_CUSTOM_ANIMATIONS -*SlideTransition HID_SD_SLIDE_TRANSITIONS +*MasterPages sym:SD_HID_SD_SLIDE_DESIGNS +*UsedInThisPresentation sym:SD_HID_SD_CURRENT_MASTERS +*RecentlyUsed sym:SD_HID_SD_RECENT_MASTERS +*AvailableForUse sym:SD_HID_SD_ALL_MASTERS +*Layouts sym:SD_HID_SD_SLIDE_LAYOUTS +*CustomAnimation sym:SD_HID_SD_CUSTOM_ANIMATIONS +*SlideTransition sym:SD_HID_SD_SLIDE_TRANSITIONS -*TemplateAndDocuments HID_TEMPLATEDLG_DIALOG -Organize svtools:PushButton:DLG_DOCTEMPLATE:BTN_DOCTEMPLATE_MANAGE -Edit svtools:PushButton:DLG_DOCTEMPLATE:BTN_DOCTEMPLATE_EDIT -Backward HID_TEMPLATEDLG_TB_BACK -UpOneLevel HID_TEMPLATEDLG_TB_PREV -Print HID_TEMPLATEDLG_TB_PRINT -Docinfo HID_TEMPLATEDLG_TB_DOCINFO -Preview HID_TEMPLATEDLG_TB_PREVIEW -Category HID_TEMPLATEDLG_ICONCTRL -Filelist HID_TEMPLATEDLG_FILEVIEW +*TemplateAndDocuments sym:SVT_HID_TEMPLATEDLG_DIALOG +Organize sym:svtools:PushButton:DLG_DOCTEMPLATE:BTN_DOCTEMPLATE_MANAGE +Edit sym:svtools:PushButton:DLG_DOCTEMPLATE:BTN_DOCTEMPLATE_EDIT +Backward sym:SVT_HID_TEMPLATEDLG_TB_BACK +UpOneLevel sym:SVT_HID_TEMPLATEDLG_TB_PREV +Print sym:SVT_HID_TEMPLATEDLG_TB_PRINT +Docinfo sym:SVT_HID_TEMPLATEDLG_TB_DOCINFO +Preview sym:SVT_HID_TEMPLATEDLG_TB_PREVIEW +Category sym:SVT_HID_TEMPLATEDLG_ICONCTRL +Filelist sym:SVT_HID_TEMPLATEDLG_FILEVIEW -*TemplatesBasicMessage HID_DLGCORRESPONDENCE_DIALOG -OptAgenda1 HID_DLGCORRESPONDENCE_OPTIONAGENDA1 -OptAgenda2 HID_DLGCORRESPONDENCE_OPTIONAGENDA2 -OneRecepient HID_DLGCORRESPONDENCE_OPTIONLETTER1 -AdressDatabase HID_DLGCORRESPONDENCE_OPTIONLETTER2 -CmdAgdGoOn HID_DLGCORRESPONDENCE_AGENDAOKAY -OKButton HID_DLGCORRESPONDENCE_LETTEROKAY -CancelButton HID_DLGCORRESPONDENCE_CANCEL +*TemplatesBasicMessage sym:WIZARDS_HID_DLGCORRESPONDENCE_DIALOG +OptAgenda1 sym:WIZARDS_HID_DLGCORRESPONDENCE_OPTIONAGENDA1 +OptAgenda2 sym:WIZARDS_HID_DLGCORRESPONDENCE_OPTIONAGENDA2 +OneRecepient sym:WIZARDS_HID_DLGCORRESPONDENCE_OPTIONLETTER1 +AdressDatabase sym:WIZARDS_HID_DLGCORRESPONDENCE_OPTIONLETTER2 +CmdAgdGoOn sym:WIZARDS_HID_DLGCORRESPONDENCE_AGENDAOKAY +OKButton sym:WIZARDS_HID_DLGCORRESPONDENCE_LETTEROKAY +CancelButton sym:WIZARDS_HID_DLGCORRESPONDENCE_CANCEL +ToolsOptionsDlg ExtrasOptionenDlg +UseOfThisTemplate TemplatesBasicMessage -*TestAccountSettings HID_MM_TESTACCOUNTSETTINGS -IDontKnow HID_MM_TESTACCOUNTSETTINGS_HB -TaskStatusListBox HID_MM_TESTACCOUNTSETTINGS_TLB -Errors sw:MultiLineEdit:DLG_MM_TESTACCOUNTSETTINGS:ED_ERROR -Stop sw:PushButton:DLG_MM_TESTACCOUNTSETTINGS:PB_STOP +*TestAccountSettings sym:SW_HID_MM_TESTACCOUNTSETTINGS +IDontKnow sym:SW_HID_MM_TESTACCOUNTSETTINGS_HB +TaskStatusListBox sym:SW_HID_MM_TESTACCOUNTSETTINGS_TLB +Errors sym:sw:MultiLineEdit:DLG_MM_TESTACCOUNTSETTINGS:ED_ERROR +Stop sym:sw:PushButton:DLG_MM_TESTACCOUNTSETTINGS:PB_STOP -*TestXMLFilter HID_XML_FILTER_TEST_DIALOG -XSLTForExport HID_XML_FILTER_TEST_EXPORT_XSLT_FILE -ExportBrowseBtn HID_XML_FILTER_TEST_EXPORT_BROWSE -CurrentDocument HID_XML_FILTER_TEST_EXPORT_CURRENT -FixedCurrentFile HID_XML_FILTER_TEST_EXPORT_CURRENT_FILE -XSLTForImport HID_XML_FILTER_TEST_IMPORT_XSLT_FILE -TemplateForImport HID_XML_FILTER_TEST_IMPORT_TEMPLATE_FILE -DisplaySource HID_XML_FILTER_TEST_IMPORT_DISPLAY_SOURCE -ImportBrowseBtn HID_XML_FILTER_TEST_IMPORT_BROWSE -RecentFile HID_XML_FILTER_TEST_IMPORT_RECENT -FixedRecentFile HID_XML_FILTER_TEST_IMPORT_RECENT_FILE -CloseBtn HID_XML_FILTER_TEST_CLOSE +*TestXMLFilter sym:FILTER_HID_XML_FILTER_TEST_DIALOG +XSLTForExport sym:FILTER_HID_XML_FILTER_TEST_EXPORT_XSLT_FILE +ExportBrowseBtn sym:FILTER_HID_XML_FILTER_TEST_EXPORT_BROWSE +CurrentDocument sym:FILTER_HID_XML_FILTER_TEST_EXPORT_CURRENT +FixedCurrentFile sym:FILTER_HID_XML_FILTER_TEST_EXPORT_CURRENT_FILE +XSLTForImport sym:FILTER_HID_XML_FILTER_TEST_IMPORT_XSLT_FILE +TemplateForImport sym:FILTER_HID_XML_FILTER_TEST_IMPORT_TEMPLATE_FILE +DisplaySource sym:FILTER_HID_XML_FILTER_TEST_IMPORT_DISPLAY_SOURCE +ImportBrowseBtn sym:FILTER_HID_XML_FILTER_TEST_IMPORT_BROWSE +RecentFile sym:FILTER_HID_XML_FILTER_TEST_IMPORT_RECENT +FixedRecentFile sym:FILTER_HID_XML_FILTER_TEST_IMPORT_RECENT_FILE +CloseBtn sym:FILTER_HID_XML_FILTER_TEST_CLOSE -*Thesaurus SID_THESAURUS -CurrentWord cui:ComboBox:RID_SVXDLG_THESAURUS:CB_WORD -RecallCurrentWord cui:ImageButton:RID_SVXDLG_THESAURUS:BTN_LEFT -Alternatives HID_CT_THES_ALTERNATIVES -ReplaceWith cui:Edit:RID_SVXDLG_THESAURUS:ED_REPL -Language cui:MenuButton:RID_SVXDLG_THESAURUS:MB_LANGUAGE +*Thesaurus .uno:ThesaurusDialog +CurrentWord sym:cui:ComboBox:RID_SVXDLG_THESAURUS:CB_WORD +RecallCurrentWord sym:cui:ImageButton:RID_SVXDLG_THESAURUS:BTN_LEFT +Alternatives sym:CUI_HID_CT_THES_ALTERNATIVES +ReplaceWith sym:cui:Edit:RID_SVXDLG_THESAURUS:ED_REPL +Language sym:cui:MenuButton:RID_SVXDLG_THESAURUS:MB_LANGUAGE -*TextImport SC:MODALDIALOG:RID_SCDLG_ASCII -CharacterSet SC:LISTBOX:RID_SCDLG_ASCII:LB_CHARSET -Language sc:ListBox:RID_SCDLG_ASCII:LB_CUSTOMLANG -FromRow SC:NUMERICFIELD:RID_SCDLG_ASCII:NF_AT_ROW -FixedWidth SC:RADIOBUTTON:RID_SCDLG_ASCII:RB_FIXED -Separated SC:RADIOBUTTON:RID_SCDLG_ASCII:RB_SEPARATED -Tab SC:CHECKBOX:RID_SCDLG_ASCII:CKB_TAB -Semicolon SC:CHECKBOX:RID_SCDLG_ASCII:CKB_SEMICOLON -Comma SC:CHECKBOX:RID_SCDLG_ASCII:CKB_COMMA -SpaceCB SC:CHECKBOX:RID_SCDLG_ASCII:CKB_SPACE -Other SC:CHECKBOX:RID_SCDLG_ASCII:CKB_OTHER -OtherText SC:EDIT:RID_SCDLG_ASCII:ED_OTHER -MergeDelimiter SC:CHECKBOX:RID_SCDLG_ASCII:CB_ASONCE -TextDelimiter SC:COMBOBOX:RID_SCDLG_ASCII:CB_TEXTSEP -QuotedAsText sc:CheckBox:RID_SCDLG_ASCII:CB_QUOTED_AS_TEXT -DetectSpecialNumbers sc:CheckBox:RID_SCDLG_ASCII:CB_DETECT_SPECIAL_NUMBER -Type SC:LISTBOX:RID_SCDLG_ASCII:LB_TYPE1 -Preview HID_SC_ASCII_TABCTR +*TextImport sym:sc:ModalDialog:RID_SCDLG_ASCII +CharacterSet sym:sc:ListBox:RID_SCDLG_ASCII:LB_CHARSET +Language sym:sc:ListBox:RID_SCDLG_ASCII:LB_CUSTOMLANG +FromRow sym:sc:NumericField:RID_SCDLG_ASCII:NF_AT_ROW +FixedWidth sym:sc:RadioButton:RID_SCDLG_ASCII:RB_FIXED +Separated sym:sc:RadioButton:RID_SCDLG_ASCII:RB_SEPARATED +Tab sym:sc:CheckBox:RID_SCDLG_ASCII:CKB_TAB +Semicolon sym:sc:CheckBox:RID_SCDLG_ASCII:CKB_SEMICOLON +Comma sym:sc:CheckBox:RID_SCDLG_ASCII:CKB_COMMA +SpaceCB sym:sc:CheckBox:RID_SCDLG_ASCII:CKB_SPACE +Other sym:sc:CheckBox:RID_SCDLG_ASCII:CKB_OTHER +OtherText sym:sc:Edit:RID_SCDLG_ASCII:ED_OTHER +MergeDelimiter sym:sc:CheckBox:RID_SCDLG_ASCII:CB_ASONCE +TextDelimiter sym:sc:ComboBox:RID_SCDLG_ASCII:CB_TEXTSEP +QuotedAsText sym:sc:CheckBox:RID_SCDLG_ASCII:CB_QUOTED_AS_TEXT +DetectSpecialNumbers sym:sc:CheckBox:RID_SCDLG_ASCII:CB_DETECT_SPECIAL_NUMBER +Type sym:sc:ListBox:RID_SCDLG_ASCII:LB_TYPE1 +Preview sym:SC_HID_SC_ASCII_TABCTR -*UnsatisfiedDependencies desktop:ModalDialog:RID_DLG_DEPENDENCIES -UnsatisfiedDependencyList desktop:ListBox:RID_DLG_DEPENDENCIES:RID_DLG_DEPENDENCIES_LIST +*UnsatisfiedDependencies sym:desktop:ModalDialog:RID_DLG_DEPENDENCIES +UnsatisfiedDependencyList sym:desktop:ListBox:RID_DLG_DEPENDENCIES:RID_DLG_DEPENDENCIES_LIST -*WarningPrintTransparency sfx2:ModalDialog:RID_WARN_PRINTTRANSPARENCY -NoButton sfx2:PushButton:RID_WARN_PRINTTRANSPARENCY:BTN_PRINTTRANS_NO -DoNotShowAgain sfx2:CheckBox:RID_WARN_PRINTTRANSPARENCY:CBX_NOPRINTTRANSWARN +*WarningPrintTransparency sym:sfx2:ModalDialog:RID_WARN_PRINTTRANSPARENCY +NoButton sym:sfx2:PushButton:RID_WARN_PRINTTRANSPARENCY:BTN_PRINTTRANS_NO +DoNotShowAgain sym:sfx2:CheckBox:RID_WARN_PRINTTRANSPARENCY:CBX_NOPRINTTRANSWARN -*WebWizard HID0_WEBWIZARD -IntroductionChooseSettings HID1_LST_SESSIONS -IntroductionDelete HID1_BTN_DEL_SES -Back HID0_NEXT -NextButton HID0_PREV -Finish HID0_CREATE -CancelB HID0_CANCEL -DocumentsWebSiteContent HID2_LST_DOCS -DocumentsAdd HID2_BTN_ADD_DOC -DocumentsRemove HID2_BTN_REM_DOC -DocumentsUp HID2_BTN_DOC_UP -DocumentsDown HID2_BTN_DOC_DOWN -DocumentsExportFileFormat HID2_LST_DOC_EXPORT -DocumentsInformationTitle HID2_TXT_DOC_TITLE -DocumentsInformationsummary HID2_TXT_DOC_DESC -DocumentsInformationAuthor HID2_TXT_DOC_AUTHOR -MainLayoutLayout1 HID3_IL_LAYOUTS_IMG1 -MainLayoutLayout2 HID3_IL_LAYOUTS_IMG2 -MainLayoutLayout3 HID3_IL_LAYOUTS_IMG3 -MainLayoutLayout4 HID3_IL_LAYOUTS_IMG4 -MainLayoutLayout5 HID3_IL_LAYOUTS_IMG5 -MainLayoutLayout6 HID3_IL_LAYOUTS_IMG6 -MainLayoutLayout7 HID3_IL_LAYOUTS_IMG7 -MainLayoutLayout8 HID3_IL_LAYOUTS_IMG8 -MainLayoutLayout9 HID3_IL_LAYOUTS_IMG9 -MainLayoutLayout10 HID3_IL_LAYOUTS_IMG10 -MainLayoutLayout11 HID3_IL_LAYOUTS_IMG11 -MainLayoutLayout12 HID3_IL_LAYOUTS_IMG12 -MainLayoutLayout13 HID3_IL_LAYOUTS_IMG13 -MainLayoutLayout14 HID3_IL_LAYOUTS_IMG14 -MainLayoutLayout15 HID3_IL_LAYOUTS_IMG15 -LayoutDetailsFileName HID4_CHK_DISPLAY_FILENAME -LayoutDetailsDescription HID4_CHK_DISPLAY_DESCRIPTION -LayoutDetailsAuthor HID4_CHK_DISPLAY_AUTHOR -LayoutDetailsCreationDate HID4_CHK_DISPLAY_CR_DATE -LayoutDetailsLastChangeDate HID4_CHK_DISPLAY_UP_DATE -LayoutDetailsFileFormat HID4_CHK_DISPLAY_FORMAT -LayoutDetailsFileFormatIcon HID4_CHK_DISPLAY_F_ICON -LayoutDetailsNumberOfPages HID4_CHK_DISPLAY_PAGES -LayoutDetailsSizeInKB HID4_CHK_DISPLAY_SIZE -LayoutDetails640x480 HID4_GRP_OPTIMAIZE_640 -LayoutDetails800x600 HID4_GRP_OPTIMAIZE_800 -LayoutDetails1024x768 HID4_GRP_OPTIMAIZE_1024 -StyleStyle HID5_LST_STYLES -StyleBackgroundImage HID5_BTN_BACKGND -StyleIconSet HID5_BTN_ICONS -WebSiteInformationTitle HID6_TXT_SITE_TITLE -WebSiteInformationDescription HID6_TXT_SITE_DESC -WebSiteInformationEmail HID6_TXT_SITE_EMAIL -WebSiteInformationCopyrightNotice HID6_TXT_SITE_COPYRIGHT -WebSiteInformationCreated HID6_DATE_SITE_CREATED -WebSiteInformationModified HID6_DATE_SITE_UPDATED -PreviewPreciew HID7_BTN_PREVIEW -PreviewToALocalFolderCB HID7_CHK_PUBLISH_LOCAL -PreviewToALocalFolderTF HID7_TXT_LOCAL -PublishToALocalFolderB HID7_BTN_LOCAL -PublishToAZIPArchiveCB HID7_CHK_PUBLISH_ZIP -PublishToAZIPArchiveTF HID7_TXT_ZIP -PublishToAZIPArchiveB HID7_BTN_ZIP -PublishToAWebServer HID7_CHK_PUBLISH_FTP -PublishFTPConfigure HID7_BTN_FTP -PublishSaveSettings HID7_CHK_SAVE -PublishSaveAs HID7_TXT_SAVE +*WebWizard sym:WIZARDS_HID0_WEBWIZARD +IntroductionChooseSettings sym:WIZARDS_HID1_LST_SESSIONS +IntroductionDelete sym:WIZARDS_HID1_BTN_DEL_SES +Back sym:WIZARDS_HID0_NEXT +NextButton sym:WIZARDS_HID0_PREV +Finish sym:WIZARDS_HID0_CREATE +CancelB sym:WIZARDS_HID0_CANCEL +DocumentsWebSiteContent sym:WIZARDS_HID2_LST_DOCS +DocumentsAdd sym:WIZARDS_HID2_BTN_ADD_DOC +DocumentsRemove sym:WIZARDS_HID2_BTN_REM_DOC +DocumentsUp sym:WIZARDS_HID2_BTN_DOC_UP +DocumentsDown sym:WIZARDS_HID2_BTN_DOC_DOWN +DocumentsExportFileFormat sym:WIZARDS_HID2_LST_DOC_EXPORT +DocumentsInformationTitle sym:WIZARDS_HID2_TXT_DOC_TITLE +DocumentsInformationsummary sym:WIZARDS_HID2_TXT_DOC_DESC +DocumentsInformationAuthor sym:WIZARDS_HID2_TXT_DOC_AUTHOR +MainLayoutLayout1 sym:WIZARDS_HID3_IL_LAYOUTS_IMG1 +MainLayoutLayout2 sym:WIZARDS_HID3_IL_LAYOUTS_IMG2 +MainLayoutLayout3 sym:WIZARDS_HID3_IL_LAYOUTS_IMG3 +MainLayoutLayout4 sym:WIZARDS_HID3_IL_LAYOUTS_IMG4 +MainLayoutLayout5 sym:WIZARDS_HID3_IL_LAYOUTS_IMG5 +MainLayoutLayout6 sym:WIZARDS_HID3_IL_LAYOUTS_IMG6 +MainLayoutLayout7 sym:WIZARDS_HID3_IL_LAYOUTS_IMG7 +MainLayoutLayout8 sym:WIZARDS_HID3_IL_LAYOUTS_IMG8 +MainLayoutLayout9 sym:WIZARDS_HID3_IL_LAYOUTS_IMG9 +MainLayoutLayout10 sym:WIZARDS_HID3_IL_LAYOUTS_IMG10 +MainLayoutLayout11 sym:WIZARDS_HID3_IL_LAYOUTS_IMG11 +MainLayoutLayout12 sym:WIZARDS_HID3_IL_LAYOUTS_IMG12 +MainLayoutLayout13 sym:WIZARDS_HID3_IL_LAYOUTS_IMG13 +MainLayoutLayout14 sym:WIZARDS_HID3_IL_LAYOUTS_IMG14 +MainLayoutLayout15 sym:WIZARDS_HID3_IL_LAYOUTS_IMG15 +LayoutDetailsFileName sym:WIZARDS_HID4_CHK_DISPLAY_FILENAME +LayoutDetailsDescription sym:WIZARDS_HID4_CHK_DISPLAY_DESCRIPTION +LayoutDetailsAuthor sym:WIZARDS_HID4_CHK_DISPLAY_AUTHOR +LayoutDetailsCreationDate sym:WIZARDS_HID4_CHK_DISPLAY_CR_DATE +LayoutDetailsLastChangeDate sym:WIZARDS_HID4_CHK_DISPLAY_UP_DATE +LayoutDetailsFileFormat sym:WIZARDS_HID4_CHK_DISPLAY_FORMAT +LayoutDetailsFileFormatIcon sym:WIZARDS_HID4_CHK_DISPLAY_F_ICON +LayoutDetailsNumberOfPages sym:WIZARDS_HID4_CHK_DISPLAY_PAGES +LayoutDetailsSizeInKB sym:WIZARDS_HID4_CHK_DISPLAY_SIZE +LayoutDetails640x480 sym:WIZARDS_HID4_GRP_OPTIMAIZE_640 +LayoutDetails800x600 sym:WIZARDS_HID4_GRP_OPTIMAIZE_800 +LayoutDetails1024x768 sym:WIZARDS_HID4_GRP_OPTIMAIZE_1024 +StyleStyle sym:WIZARDS_HID5_LST_STYLES +StyleBackgroundImage sym:WIZARDS_HID5_BTN_BACKGND +StyleIconSet sym:WIZARDS_HID5_BTN_ICONS +WebSiteInformationTitle sym:WIZARDS_HID6_TXT_SITE_TITLE +WebSiteInformationDescription sym:WIZARDS_HID6_TXT_SITE_DESC +WebSiteInformationEmail sym:WIZARDS_HID6_TXT_SITE_EMAIL +WebSiteInformationCopyrightNotice sym:WIZARDS_HID6_TXT_SITE_COPYRIGHT +WebSiteInformationCreated sym:WIZARDS_HID6_DATE_SITE_CREATED +WebSiteInformationModified sym:WIZARDS_HID6_DATE_SITE_UPDATED +PreviewPreciew sym:WIZARDS_HID7_BTN_PREVIEW +PreviewToALocalFolderCB sym:WIZARDS_HID7_CHK_PUBLISH_LOCAL +PreviewToALocalFolderTF sym:WIZARDS_HID7_TXT_LOCAL +PublishToALocalFolderB sym:WIZARDS_HID7_BTN_LOCAL +PublishToAZIPArchiveCB sym:WIZARDS_HID7_CHK_PUBLISH_ZIP +PublishToAZIPArchiveTF sym:WIZARDS_HID7_TXT_ZIP +PublishToAZIPArchiveB sym:WIZARDS_HID7_BTN_ZIP +PublishToAWebServer sym:WIZARDS_HID7_CHK_PUBLISH_FTP +PublishFTPConfigure sym:WIZARDS_HID7_BTN_FTP +PublishSaveSettings sym:WIZARDS_HID7_CHK_SAVE +PublishSaveAs sym:WIZARDS_HID7_TXT_SAVE -*WebWizardStatus HID0_STATUS_DIALOG +*WebWizardStatus sym:WIZARDS_HID0_STATUS_DIALOG -*WelcomeDialog HID_FIRSTSTART_DIALOG -HelpBtn UID_FIRSTSTART_HELP -BackBtn HID_FIRSTSTART_PREV -NextBtn HID_FIRSTSTART_NEXT -OKBtn HID_FIRSTSTART_FINISH -CancelBtn HID_FIRSTSTART_CANCEL +*WelcomeDialog sym:DESKTOP_HID_FIRSTSTART_DIALOG +HelpBtn sym:DESKTOP_UID_FIRSTSTART_HELP +BackBtn sym:DESKTOP_HID_FIRSTSTART_PREV +NextBtn sym:DESKTOP_HID_FIRSTSTART_NEXT +OKBtn sym:DESKTOP_HID_FIRSTSTART_FINISH +CancelBtn sym:DESKTOP_HID_FIRSTSTART_CANCEL -*WMFOptions svtools:ModalDialog:DLG_EXPORT -Exportwidth svtools:MetricField:DLG_EXPORT:MF_SIZEX -Exportmeasurement svtools:ListBox:DLG_EXPORT:LB_SIZEX -Exportheight svtools:MetricField:DLG_EXPORT:MF_SIZEY -*XFormAddInstance HID_XFORMS_ADDINSTANCE_DLG -InstanceName svx:Edit:RID_SVXDLG_ADD_INSTANCE:ED_INST_NAME -InstanceURL SID_OPENURL -BrowseBtn svx:PushButton:RID_SVXDLG_ADD_INSTANCE:PB_FILEPICKER -LinkInstance svx:CheckBox:RID_SVXDLG_ADD_INSTANCE:CB_INST_LINKINST +*XFormAddInstance sym:SVX_HID_XFORMS_ADDINSTANCE_DLG +InstanceName sym:svx:Edit:RID_SVXDLG_ADD_INSTANCE:ED_INST_NAME +InstanceURL .uno:OpenUrl +BrowseBtn sym:svx:PushButton:RID_SVXDLG_ADD_INSTANCE:PB_FILEPICKER +LinkInstance sym:svx:CheckBox:RID_SVXDLG_ADD_INSTANCE:CB_INST_LINKINST -*XFormAddItemDLG HID_XFORMS_ADDDATAITEM_DLG -ElementName svx:Edit:RID_SVXDLG_ADD_DATAITEM:ED_NAME -DefaultValue svx:Edit:RID_SVXDLG_ADD_DATAITEM:ED_DEFAULT -DataType svx:ListBox:RID_SVXDLG_ADD_DATAITEM:LB_DATATYPE -Required svx:CheckBox:RID_SVXDLG_ADD_DATAITEM:CB_REQUIRED -RequiredBtn svx:PushButton:RID_SVXDLG_ADD_DATAITEM:PB_REQUIRED -Relevant svx:CheckBox:RID_SVXDLG_ADD_DATAITEM:CB_RELEVANT -RelevantBtn svx:PushButton:RID_SVXDLG_ADD_DATAITEM:PB_RELEVANT -Constraint svx:CheckBox:RID_SVXDLG_ADD_DATAITEM:CB_CONSTRAINT -ConstraintBtn svx:PushButton:RID_SVXDLG_ADD_DATAITEM:PB_CONSTRAINT -Calculate svx:CheckBox:RID_SVXDLG_ADD_DATAITEM:CB_CALCULATE -CalculateBtn svx:PushButton:RID_SVXDLG_ADD_DATAITEM:PB_CALCULATE -ReadOnly svx:CheckBox:RID_SVXDLG_ADD_DATAITEM:CB_READONLY -ReadOnlyBtn svx:PushButton:RID_SVXDLG_ADD_DATAITEM:PB_READONLY +*WMFOptions sym:svtools:ModalDialog:DLG_EXPORT +Exportwidth sym:svtools:MetricField:DLG_EXPORT:MF_SIZEX +Exportmeasurement sym:svtools:ListBox:DLG_EXPORT:LB_SIZEX +Exportheight sym:svtools:MetricField:DLG_EXPORT:MF_SIZEY -*XFormAddModel HID_XFORMS_ADDMODEL_DLG -ModelName svx:Edit:RID_SVXDLG_ADD_MODEL:ED_INST_NAME +*XFormAddItemDLG sym:SVX_HID_XFORMS_ADDDATAITEM_DLG +ElementName sym:svx:Edit:RID_SVXDLG_ADD_DATAITEM:ED_NAME +DefaultValue sym:svx:Edit:RID_SVXDLG_ADD_DATAITEM:ED_DEFAULT +DataType sym:svx:ListBox:RID_SVXDLG_ADD_DATAITEM:LB_DATATYPE +Required sym:svx:CheckBox:RID_SVXDLG_ADD_DATAITEM:CB_REQUIRED +RequiredBtn sym:svx:PushButton:RID_SVXDLG_ADD_DATAITEM:PB_REQUIRED +Relevant sym:svx:CheckBox:RID_SVXDLG_ADD_DATAITEM:CB_RELEVANT +RelevantBtn sym:svx:PushButton:RID_SVXDLG_ADD_DATAITEM:PB_RELEVANT +Constraint sym:svx:CheckBox:RID_SVXDLG_ADD_DATAITEM:CB_CONSTRAINT +ConstraintBtn sym:svx:PushButton:RID_SVXDLG_ADD_DATAITEM:PB_CONSTRAINT +Calculate sym:svx:CheckBox:RID_SVXDLG_ADD_DATAITEM:CB_CALCULATE +CalculateBtn sym:svx:PushButton:RID_SVXDLG_ADD_DATAITEM:PB_CALCULATE +ReadOnly sym:svx:CheckBox:RID_SVXDLG_ADD_DATAITEM:CB_READONLY +ReadOnlyBtn sym:svx:PushButton:RID_SVXDLG_ADD_DATAITEM:PB_READONLY -*XFormAddSubmission HID_XFORMS_ADDSUBMISSION_DLG -SubmitName svx:Edit:RID_SVXDLG_ADD_SUBMISSION:ED_SUBMIT_NAME -SubmitAction svx:Edit:RID_SVXDLG_ADD_SUBMISSION:ED_SUBMIT_ACTION -SubmitMethod svx:ListBox:RID_SVXDLG_ADD_SUBMISSION:LB_SUBMIT_METHOD -SubmitBindingExpression svx:Edit:RID_SVXDLG_ADD_SUBMISSION:ED_SUBMIT_REF -SubmitBindingExpressionBtn svx:PushButton:RID_SVXDLG_ADD_SUBMISSION:PB_SUBMIT_REF -SubmitBinding svx:ListBox:RID_SVXDLG_ADD_SUBMISSION:LB_SUBMIT_BIND -SubmitReplace svx:ListBox:RID_SVXDLG_ADD_SUBMISSION:LB_SUBMIT_REPLACE +*XFormAddModel sym:SVX_HID_XFORMS_ADDMODEL_DLG +ModelName sym:svx:Edit:RID_SVXDLG_ADD_MODEL:ED_INST_NAME -*XFormsDataNavigator SID_FM_SHOW_DATANAVIGATOR -XFormsDataNavigatorTabControl HID_XFORMS_TAB_CONTROL -'Instance svx:TabPage:RID_SVX_TP_XFORMS_INSTANCE -Models HID_XFORMS_MODELS_LIST -ModelsBtn HID_XFORMS_MODELS_MENUBTN -TabPages svx:TabPage:RID_SVX_XFORMS_TABPAGES -ItemList HID_XFORMS_ITEMS_LIST -InstanceBtn HID_XFORMS_INSTANCES_MENUBTN +*XFormAddSubmission sym:SVX_HID_XFORMS_ADDSUBMISSION_DLG +SubmitName sym:svx:Edit:RID_SVXDLG_ADD_SUBMISSION:ED_SUBMIT_NAME +SubmitAction sym:svx:Edit:RID_SVXDLG_ADD_SUBMISSION:ED_SUBMIT_ACTION +SubmitMethod sym:svx:ListBox:RID_SVXDLG_ADD_SUBMISSION:LB_SUBMIT_METHOD +SubmitBindingExpression sym:svx:Edit:RID_SVXDLG_ADD_SUBMISSION:ED_SUBMIT_REF +SubmitBindingExpressionBtn sym:svx:PushButton:RID_SVXDLG_ADD_SUBMISSION:PB_SUBMIT_REF +SubmitBinding sym:svx:ListBox:RID_SVXDLG_ADD_SUBMISSION:LB_SUBMIT_BIND +SubmitReplace sym:svx:ListBox:RID_SVXDLG_ADD_SUBMISSION:LB_SUBMIT_REPLACE -*XFormToolbar HID_XFORMS_TOOLBOX -AddElement HID_XFORMS_TOOLBOX_ITEM_ADD_ELEMENT -AddAttribute HID_XFORMS_TOOLBOX_ITEM_ADD_ATTRIBUTE -EditElement HID_XFORMS_TOOLBOX_ITEM_EDIT -RemoveElement HID_XFORMS_TOOLBOX_ITEM_REMOVE -AddSubmission HID_XFORMS_TOOLBOX_ITEM_ADD -AddBinding HID_XFORMS_TOOLBOX_ITEM_ADD +*XFormsDataNavigator sym:SFXDOCKINGWINDOW_ShowDataNavigator +XFormsDataNavigatorTabControl sym:SVX_HID_XFORMS_TAB_CONTROL +'Instance sym:svx:TabPage:RID_SVX_TP_XFORMS_INSTANCE +Models sym:SVX_HID_XFORMS_MODELS_LIST +ModelsBtn sym:SVX_HID_XFORMS_MODELS_MENUBTN +TabPages sym:svx:TabPage:RID_SVX_XFORMS_TABPAGES +ItemList sym:SVX_HID_XFORMS_ITEMS_LIST +InstanceBtn sym:SVX_HID_XFORMS_INSTANCES_MENUBTN -*XMLFilter HID_XML_FILTER_TABDIALOG -TabControl HID_XML_FILTER_TABPAGE_CTRL -TabXMLGeneral HID_XML_FILTER_TABPAGE_BASIC -TabXMLTransformation HID_XML_FILTER_TABPAGE_XSLT +*XFormToolbar sym:SVX_HID_XFORMS_TOOLBOX +AddElement sym:SVX_HID_XFORMS_TOOLBOX_ITEM_ADD_ELEMENT +AddAttribute sym:SVX_HID_XFORMS_TOOLBOX_ITEM_ADD_ATTRIBUTE +EditElement sym:SVX_HID_XFORMS_TOOLBOX_ITEM_EDIT +RemoveElement sym:SVX_HID_XFORMS_TOOLBOX_ITEM_REMOVE +AddSubmission sym:SVX_HID_XFORMS_TOOLBOX_ITEM_ADD +AddBinding sym:SVX_HID_XFORMS_TOOLBOX_ITEM_ADD -*XMLFilterOutput HID_XML_SOURCE_FILE_DIALOG -ValidateOutput HID_XML_FILTER_TEST_VALIDATE_OUPUT -Validate HID_XML_SOURCE_FILE_VALIDATE -FilterOutput HID_XML_FILTER_OUTPUT_WINDOW +*XMLFilter sym:FILTER_HID_XML_FILTER_TABDIALOG +TabControl sym:FILTER_HID_XML_FILTER_TABPAGE_CTRL +TabXMLGeneral sym:FILTER_HID_XML_FILTER_TABPAGE_BASIC +TabXMLTransformation sym:FILTER_HID_XML_FILTER_TABPAGE_XSLT -*XMLFilterSettings HID_XML_FILTER_SETTINGS_DIALOG -FilterList HID_XML_FILTER_LIST -NewBtn HID_XML_FILTER_NEW -EditBtn HID_XML_FILTER_EDIT -TestXSLTs HID_XML_FILTER_TEST -DeleteBtn HID_XML_FILTER_DELETE -SaveToPackage HID_XML_FILTER_SAVE -OpenPackage HID_XML_FILTER_OPEN -CloseBtn HID_XML_FILTER_CLOSE +*XMLFilterOutput sym:FILTER_HID_XML_SOURCE_FILE_DIALOG +ValidateOutput sym:FILTER_HID_XML_FILTER_TEST_VALIDATE_OUPUT +Validate sym:FILTER_HID_XML_SOURCE_FILE_VALIDATE +FilterOutput sym:FILTER_HID_XML_FILTER_OUTPUT_WINDOW + +*XMLFilterSettings sym:FILTER_HID_XML_FILTER_SETTINGS_DIALOG +FilterList sym:FILTER_HID_XML_FILTER_LIST +NewBtn sym:FILTER_HID_XML_FILTER_NEW +EditBtn sym:FILTER_HID_XML_FILTER_EDIT +TestXSLTs sym:FILTER_HID_XML_FILTER_TEST +DeleteBtn sym:FILTER_HID_XML_FILTER_DELETE +SaveToPackage sym:FILTER_HID_XML_FILTER_SAVE +OpenPackage sym:FILTER_HID_XML_FILTER_OPEN +CloseBtn sym:FILTER_HID_XML_FILTER_CLOSE diff --git a/testautomation/global/win/etab_a_d.win b/testautomation/global/win/etab_a_d.win index f2214f266741..17cf61f910ca 100755..100644 --- a/testautomation/global/win/etab_a_d.win +++ b/testautomation/global/win/etab_a_d.win @@ -1,474 +1,474 @@ -*TabAccessibility HID_OPTIONS_ACCESSIBILITYCONFIG -ForPagePreviews cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_PAGE_PREVIEWS -HelpTips cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_TIPHELP -After cui:NumericField:RID_SVXPAGE_ACCESSIBILITYCONFIG:NF_TIPHELP -AllowAnimatedGraphics cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_ANIMATED_GRAPHICS -AllowAnimatedText cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_ANIMATED_TEXTS -AlwaysUseAutomaticFontColor cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_AUTOMATIC_FONT_COLOR -SupportAssistiveTechnologyTools cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_ACCESSIBILITY_TOOL -UseTextSelectionCursor cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_TEXTSELECTION -AutomaticDetectHC cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_AUTO_DETECT_HC - -*TabAdabas HID_DSADMIN_PAGE_ADABAS -Hostname dbaccess:Edit:PAGE_ADABAS:ET_HOSTNAME -CacheSize dbaccess:NumericField:PAGE_ADABAS:NF_CACHE_SIZE -DataIncrement dbaccess:NumericField:PAGE_ADABAS:NF_DATA_INCREMENT -CotrolUser dbaccess:Edit:PAGE_ADABAS:ET_CTRLUSERNAME -ControlPassword dbaccess:Edit:PAGE_ADABAS:ET_CTRLPASSWORD -ShutdownService dbaccess:CheckBox:PAGE_ADABAS:CB_SHUTDB -Charset HID_DSADMIN_CHARSET -Extended dbaccess:PushButton:PAGE_ADABAS:PB_STAT - -*TabAdabasUserSettings HID_TAB_PAGE_USERADMIN -User HID_TAB_PAGE_LBUSER -AddUser HID_TAB_PAGE_PBUSER -ChangePassword HID_TAB_PAGE_PBCHGPWD -DeleteUser HID_TAB_PAGE_PBUSERDELETE -AccessRights HID_TAB_PAGE_TBLGRANTS - -*TabAdditionalSettings extensions:TabPage:RID_PAGE_ADMININVOKATION -Settings extensions:PushButton:RID_PAGE_ADMININVOKATION:PB_INVOKE_ADMIN_DIALOG - -*TabAddressDataSourceAutoPilot extensions:TabPage:RID_PAGE_SELECTABTYPE -Mozilla extensions:RadioButton:RID_PAGE_SELECTABTYPE:RB_MORK -LDAP extensions:RadioButton:RID_PAGE_SELECTABTYPE:RB_LDAP -Outlook extensions:RadioButton:RID_PAGE_SELECTABTYPE:RB_OUTLOOK -WinSystem extensions:RadioButton:RID_PAGE_SELECTABTYPE:RB_OUTLOOKEXPRESS -Other extensions:RadioButton:RID_PAGE_SELECTABTYPE:RB_OTHER - -*TabADO HID_DSADMIN_PAGE_ADO -URL HID_DSADMIN_CONNURL_ADOPAGE -UserName HID_DSADMIN_USER_ADO -PasswordRequired HID_DSADMIN_PWDREC_ADO - -*TabAppearance HID_OPTIONS_COLORCONFIG -Scheme cui:ListBox:RID_SVXPAGE_COLORCONFIG:LB_COLORSCHEME -Save cui:PushButton:RID_SVXPAGE_COLORCONFIG:PB_SAVESCHEME -Delete cui:PushButton:RID_SVXPAGE_COLORCONFIG:PB_DELETESCHEME -ColorList HID_OPTIONS_COLORCONFIG_COLORLIST_WIN -LBGeneralDocBg HID_COLORPAGE_DOCCOLOR_LB -CBGeneralTextBd HID_COLORPAGE_DOCBOUNDARIES_CB -LBGeneralTextBd HID_COLORPAGE_DOCBOUNDARIES_LB -LBGeneralAppBg HID_COLORPAGE_APPBACKGROUND_LB -CBGeneralObjBd HID_COLORPAGE_OBJECTBOUNDARIES_CB -LBGeneralObjBd HID_COLORPAGE_OBJECTBOUNDARIES_LB -CBGeneralTableBd HID_COLORPAGE_TABLEBOUNDARIES_CB -LBGeneralTableBd HID_COLORPAGE_TABLEBOUNDARIES_LB -LBGeneralFont HID_COLORPAGE_FONTCOLOR_LB -CBGeneralUnvisitedLinks HID_COLORPAGE_LINKS_CB -LBGeneralUnvisitedLinks HID_COLORPAGE_LINKS_LB -CBGeneralVisitedLinks HID_COLORPAGE_LINKSVISITED_CB -LBGeneralVisitedLinks HID_COLORPAGE_LINKSVISITED_LB -LBGeneralAutoSpellcheck HID_COLORPAGE_SPELL_LB -LBWriterGrid HID_COLORPAGE_WRITERTEXTGRID_LB -CBWriterFieldShadings HID_COLORPAGE_WRITERFIELDSHADINGS_CB -LBWriterFieldShadings HID_COLORPAGE_WRITERFIELDSHADINGS_LB -CBWriterIndexShadings HID_COLORPAGE_WRITERIDXSHADINGS_CB -LBWriterIndexShadings HID_COLORPAGE_WRITERIDXSHADINGS_LB -LBWriterNoteIndicator HID_COLORPAGE_WRITERNOTESINDICATOR_LB -LBWriterScriptIndicator HID_COLORPAGE_WRITERSCRIPTINDICATOR_LB -CBWriterSectionBd HID_COLORPAGE_WRITERSECTIONBOUNDARIES_CB -LBWriterSectionBd HID_COLORPAGE_WRITERSECTIONBOUNDARIES_LB -LBWriterPageBreaks HID_COLORPAGE_WRITERPAGEBREAKS_LB -LBWriterDirectCursor HID_COLORPAGE_WRITERDIRECTCURSOR_LB -LBHtmlSGML HID_COLORPAGE_HTMLSGML_LB -LBHtmlComment HID_COLORPAGE_HTMLCOMMENT_LB -LBHtmlKeyword HID_COLORPAGE_HTMLKEYWORD_LB -LBHtmlText HID_COLORPAGE_HTMLUNKNOWN_LB -LBCalcGridlines HID_COLORPAGE_CALCGRID_LB -LBCalcPageBreaks HID_COLORPAGE_CALCPAGEBREAK_LB -LBCalcManualBreaks HID_COLORPAGE_CALCPAGEBREAKMANUAL_LB -LBCalcAutoBreaks HID_COLORPAGE_CALCPAGEBREAKAUTOMATIC_LB -LBCalcDetective HID_COLORPAGE_CALCDETECTIVE_LB -LBCalcDetectiveError HID_COLORPAGE_CALCDETECTIVEERROR_LB -LBCalcReferences HID_COLORPAGE_CALCREFERENCE_LB -LBCalcNotesBg HID_COLORPAGE_CALCNOTESBACKGROUND_LB -LBDrawingGrid HID_COLORPAGE_DRAWGRID_LB -LBBasicIdentifier HID_COLORPAGE_BASICIDENTIFIER_LB -LBBasicComment HID_COLORPAGE_BASICCOMMENT_LB -LBBasicNumber HID_COLORPAGE_BASICNUMBER_LB -LBBasicString HID_COLORPAGE_BASICSTRING_LB -LBBasicOperator HID_COLORPAGE_BASICOPERATOR_LB -LBBasicReservedExpression HID_COLORPAGE_BASICKEYWORD_LB -LBBasicError HID_COLORPAGE_BASICERROR_LB - -*TabArea HID_AREA_AREA -BackgroundColour cui:CheckBox:RID_SVXPAGE_AREA:CB_HATCHBCKGRD -BackgroundColourList cui:ListBox:RID_SVXPAGE_AREA:LB_HATCHBCKGRDCOLOR -FillOptions cui:ListBox:RID_SVXPAGE_AREA:LB_AREA_TYPE -ColourList cui:ListBox:RID_SVXPAGE_AREA:LB_COLOR -GradientList cui:ListBox:RID_SVXPAGE_AREA:LB_GRADIENT -HatchingList cui:ListBox:RID_SVXPAGE_AREA:LB_HATCHING -BitmapList cui:ListBox:RID_SVXPAGE_AREA:LB_BITMAP -Automatic cui:TriStateBox:RID_SVXPAGE_AREA:TSB_STEPCOUNT -Increments cui:NumericField:RID_SVXPAGE_AREA:NUM_FLD_STEPCOUNT -Tile cui:TriStateBox:RID_SVXPAGE_AREA:TSB_TILE -Stretch cui:TriStateBox:RID_SVXPAGE_AREA:TSB_STRETCH -Relative cui:TriStateBox:RID_SVXPAGE_AREA:TSB_SCALE -Original cui:TriStateBox:RID_SVXPAGE_AREA:TSB_ORIGINAL -Width cui:MetricField:RID_SVXPAGE_AREA:MTR_FLD_X_SIZE -Height cui:MetricField:RID_SVXPAGE_AREA:MTR_FLD_Y_SIZE -XOffset cui:MetricField:RID_SVXPAGE_AREA:MTR_FLD_X_OFFSET -YOffset cui:MetricField:RID_SVXPAGE_AREA:MTR_FLD_Y_OFFSET -Row cui:RadioButton:RID_SVXPAGE_AREA:RBT_ROW -Column cui:RadioButton:RID_SVXPAGE_AREA:RBT_COLUMN -Offset cui:MetricField:RID_SVXPAGE_AREA:MTR_FLD_OFFSET - -*TabAsianLayout HID_SVXPAGE_CHAR_TWOLINES -TwoLinesEachLine cui:CheckBox:RID_SVXPAGE_CHAR_TWOLINES:CB_TWOLINES -BeginningCharacter cui:ListBox:RID_SVXPAGE_CHAR_TWOLINES:ED_STARTBRACKET -EndCharacter cui:ListBox:RID_SVXPAGE_CHAR_TWOLINES:ED_ENDBRACKET - -*TabAsianLayoutOptions HID_OPTIONS_ASIAN_LAYOUT -WesternCharactersOnly cui:RadioButton:RID_SVXPAGE_ASIAN_LAYOUT:RB_CHAR_KERNING -WesternTextAndPunctuation cui:RadioButton:RID_SVXPAGE_ASIAN_LAYOUT:RB_CHAR_PUNCT -NoCompression cui:RadioButton:RID_SVXPAGE_ASIAN_LAYOUT:RB_NO_COMP -CompressPunctuationOnly cui:RadioButton:RID_SVXPAGE_ASIAN_LAYOUT:RB_PUNCT_COMP -CompressPunctuationAndJapaneseKana cui:RadioButton:RID_SVXPAGE_ASIAN_LAYOUT:RB_PUNCT_KANA_COMP -Language cui:ListBox:RID_SVXPAGE_ASIAN_LAYOUT:LB_LANGUAGE -Standard cui:CheckBox:RID_SVXPAGE_ASIAN_LAYOUT:CB_STANDARD -NoStartOfLine cui:Edit:RID_SVXPAGE_ASIAN_LAYOUT:ED_START -NoEndOfLine cui:Edit:RID_SVXPAGE_ASIAN_LAYOUT:ED_END - -*TabAsianTypography HID_SVXPAGE_PARA_ASIAN -ApplyList cui:TriStateBox:RID_SVXPAGE_PARA_ASIAN:CB_AS_FORBIDDEN -AllowHangingPunctuation cui:TriStateBox:RID_SVXPAGE_PARA_ASIAN:CB_AS_HANG_PUNC -ApplySpacingBetween cui:TriStateBox:RID_SVXPAGE_PARA_ASIAN:CB_AS_SCRIPT_SPACE - -*TabAutoCaption HID_OPTCAPTION_PAGE -ObjectList HID_OPTCAPTION_CLB -Category sw:ComboBox:TP_OPTCAPTION_PAGE:BOX_CATEGORY -Numbering sw:ListBox:TP_OPTCAPTION_PAGE:BOX_FORMAT -CaptionSeparator sw:Edit:TP_OPTCAPTION_PAGE:EDT_TEXT -Position sw:ListBox:TP_OPTCAPTION_PAGE:BOX_POS -Level sw:ListBox:TP_OPTCAPTION_PAGE:LB_LEVEL -ChapterSeparator sw:Edit:TP_OPTCAPTION_PAGE:ED_SEPARATOR -CharacterStyle sw:ListBox:TP_OPTCAPTION_PAGE:LB_CHARSTYLE -ApplyBorderAndShadow sw:CheckBox:TP_OPTCAPTION_PAGE:CB_APPLYBORDER - -*TabBaseBookmarks HID_DSADMIN_DOCUMENTLINKS -Bookmarklist HID_DSADMIN_DOCUMENTS - -*TabBullet HID_SVXPAGE_PICK_BULLET -Auswahl HID_VALUESET_BULLET -Optionen HID_NUM_FORMAT_BTN -Zurueck HID_TABDLG_RESET_BTN -Remove HID_NUM_RESET - -*TabChartAxisLabel HID_SCH_TP_AXIS_LABEL - ShowLabels chart2:CheckBox:TP_AXIS_LABEL:CB_AXIS_LABEL_SCHOW_DESCR - Tile chart2:RadioButton:TP_AXIS_LABEL:RB_AXIS_LABEL_SIDEBYSIDE - StaggerOdd chart2:RadioButton:TP_AXIS_LABEL:RB_AXIS_LABEL_UPDOWN - StaggerEven chart2:RadioButton:TP_AXIS_LABEL:RB_AXIS_LABEL_DOWNUP - Automatic chart2:RadioButton:TP_AXIS_LABEL:RB_AXIS_LABEL_AUTOORDER - Overlap chart2:CheckBox:TP_AXIS_LABEL:CB_AXIS_LABEL_TEXTOVERLAP - Break chart2:CheckBox:TP_AXIS_LABEL:CB_AXIS_LABEL_TEXTBREAK - AngleKnob HID_SCH_ALIGNMENT_CTR_DIAL - AngleText HID_SCH_ALIGNMENT_DEGREES - VerticallyStacked HID_SCH_ALIGNMENT_STACKED - TextDirection chart2:ListBox:TP_AXIS_LABEL:LB_AXIS_TEXTDIR +*TabAccessibility sym:CUI_HID_OPTIONS_ACCESSIBILITYCONFIG +ForPagePreviews sym:cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_PAGE_PREVIEWS +HelpTips sym:cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_TIPHELP +After sym:cui:NumericField:RID_SVXPAGE_ACCESSIBILITYCONFIG:NF_TIPHELP +AllowAnimatedGraphics sym:cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_ANIMATED_GRAPHICS +AllowAnimatedText sym:cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_ANIMATED_TEXTS +AlwaysUseAutomaticFontColor sym:cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_AUTOMATIC_FONT_COLOR +SupportAssistiveTechnologyTools sym:cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_ACCESSIBILITY_TOOL +UseTextSelectionCursor sym:cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_TEXTSELECTION +AutomaticDetectHC sym:cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_AUTO_DETECT_HC + +*TabAdabas sym:DBACCESS_HID_DSADMIN_PAGE_ADABAS +Hostname sym:dbaccess:Edit:PAGE_ADABAS:ET_HOSTNAME +CacheSize sym:dbaccess:NumericField:PAGE_ADABAS:NF_CACHE_SIZE +DataIncrement sym:dbaccess:NumericField:PAGE_ADABAS:NF_DATA_INCREMENT +CotrolUser sym:dbaccess:Edit:PAGE_ADABAS:ET_CTRLUSERNAME +ControlPassword sym:dbaccess:Edit:PAGE_ADABAS:ET_CTRLPASSWORD +ShutdownService sym:dbaccess:CheckBox:PAGE_ADABAS:CB_SHUTDB +Charset sym:DBACCESS_HID_DSADMIN_CHARSET +Extended sym:dbaccess:PushButton:PAGE_ADABAS:PB_STAT + +*TabAdabasUserSettings sym:DBACCESS_HID_TAB_PAGE_USERADMIN +User sym:DBACCESS_HID_TAB_PAGE_LBUSER +AddUser sym:DBACCESS_HID_TAB_PAGE_PBUSER +ChangePassword sym:DBACCESS_HID_TAB_PAGE_PBCHGPWD +DeleteUser sym:DBACCESS_HID_TAB_PAGE_PBUSERDELETE +AccessRights sym:DBACCESS_HID_TAB_PAGE_TBLGRANTS + +*TabAdditionalSettings sym:extensions:TabPage:RID_PAGE_ADMININVOKATION +Settings sym:extensions:PushButton:RID_PAGE_ADMININVOKATION:PB_INVOKE_ADMIN_DIALOG + +*TabAddressDataSourceAutoPilot sym:extensions:TabPage:RID_PAGE_SELECTABTYPE +Mozilla sym:extensions:RadioButton:RID_PAGE_SELECTABTYPE:RB_MORK +LDAP sym:extensions:RadioButton:RID_PAGE_SELECTABTYPE:RB_LDAP +Outlook sym:extensions:RadioButton:RID_PAGE_SELECTABTYPE:RB_OUTLOOK +WinSystem sym:extensions:RadioButton:RID_PAGE_SELECTABTYPE:RB_OUTLOOKEXPRESS +Other sym:extensions:RadioButton:RID_PAGE_SELECTABTYPE:RB_OTHER + +*TabADO sym:DBACCESS_HID_DSADMIN_PAGE_ADO +URL sym:DBACCESS_HID_DSADMIN_CONNURL_ADOPAGE +UserName sym:DBACCESS_HID_DSADMIN_USER_ADO +PasswordRequired sym:DBACCESS_HID_DSADMIN_PWDREC_ADO + +*TabAppearance sym:CUI_HID_OPTIONS_COLORCONFIG +Scheme sym:cui:ListBox:RID_SVXPAGE_COLORCONFIG:LB_COLORSCHEME +Save sym:cui:PushButton:RID_SVXPAGE_COLORCONFIG:PB_SAVESCHEME +Delete sym:cui:PushButton:RID_SVXPAGE_COLORCONFIG:PB_DELETESCHEME +ColorList sym:CUI_HID_OPTIONS_COLORCONFIG_COLORLIST_WIN +LBGeneralDocBg sym:CUI_HID_COLORPAGE_DOCCOLOR_LB +CBGeneralTextBd sym:CUI_HID_COLORPAGE_DOCBOUNDARIES_CB +LBGeneralTextBd sym:CUI_HID_COLORPAGE_DOCBOUNDARIES_LB +LBGeneralAppBg sym:CUI_HID_COLORPAGE_APPBACKGROUND_LB +CBGeneralObjBd sym:CUI_HID_COLORPAGE_OBJECTBOUNDARIES_CB +LBGeneralObjBd sym:CUI_HID_COLORPAGE_OBJECTBOUNDARIES_LB +CBGeneralTableBd sym:CUI_HID_COLORPAGE_TABLEBOUNDARIES_CB +LBGeneralTableBd sym:CUI_HID_COLORPAGE_TABLEBOUNDARIES_LB +LBGeneralFont sym:CUI_HID_COLORPAGE_FONTCOLOR_LB +CBGeneralUnvisitedLinks sym:CUI_HID_COLORPAGE_LINKS_CB +LBGeneralUnvisitedLinks sym:CUI_HID_COLORPAGE_LINKS_LB +CBGeneralVisitedLinks sym:CUI_HID_COLORPAGE_LINKSVISITED_CB +LBGeneralVisitedLinks sym:CUI_HID_COLORPAGE_LINKSVISITED_LB +LBGeneralAutoSpellcheck sym:CUI_HID_COLORPAGE_SPELL_LB +LBWriterGrid sym:CUI_HID_COLORPAGE_WRITERTEXTGRID_LB +CBWriterFieldShadings sym:CUI_HID_COLORPAGE_WRITERFIELDSHADINGS_CB +LBWriterFieldShadings sym:CUI_HID_COLORPAGE_WRITERFIELDSHADINGS_LB +CBWriterIndexShadings sym:CUI_HID_COLORPAGE_WRITERIDXSHADINGS_CB +LBWriterIndexShadings sym:CUI_HID_COLORPAGE_WRITERIDXSHADINGS_LB +LBWriterNoteIndicator sym:CUI_HID_COLORPAGE_WRITERNOTESINDICATOR_LB +LBWriterScriptIndicator sym:CUI_HID_COLORPAGE_WRITERSCRIPTINDICATOR_LB +CBWriterSectionBd sym:CUI_HID_COLORPAGE_WRITERSECTIONBOUNDARIES_CB +LBWriterSectionBd sym:CUI_HID_COLORPAGE_WRITERSECTIONBOUNDARIES_LB +LBWriterPageBreaks sym:CUI_HID_COLORPAGE_WRITERPAGEBREAKS_LB +LBWriterDirectCursor sym:CUI_HID_COLORPAGE_WRITERDIRECTCURSOR_LB +LBHtmlSGML sym:CUI_HID_COLORPAGE_HTMLSGML_LB +LBHtmlComment sym:CUI_HID_COLORPAGE_HTMLCOMMENT_LB +LBHtmlKeyword sym:CUI_HID_COLORPAGE_HTMLKEYWORD_LB +LBHtmlText sym:CUI_HID_COLORPAGE_HTMLUNKNOWN_LB +LBCalcGridlines sym:CUI_HID_COLORPAGE_CALCGRID_LB +LBCalcPageBreaks sym:CUI_HID_COLORPAGE_CALCPAGEBREAK_LB +LBCalcManualBreaks sym:CUI_HID_COLORPAGE_CALCPAGEBREAKMANUAL_LB +LBCalcAutoBreaks sym:CUI_HID_COLORPAGE_CALCPAGEBREAKAUTOMATIC_LB +LBCalcDetective sym:CUI_HID_COLORPAGE_CALCDETECTIVE_LB +LBCalcDetectiveError sym:CUI_HID_COLORPAGE_CALCDETECTIVEERROR_LB +LBCalcReferences sym:CUI_HID_COLORPAGE_CALCREFERENCE_LB +LBCalcNotesBg sym:CUI_HID_COLORPAGE_CALCNOTESBACKGROUND_LB +LBDrawingGrid sym:CUI_HID_COLORPAGE_DRAWGRID_LB +LBBasicIdentifier sym:CUI_HID_COLORPAGE_BASICIDENTIFIER_LB +LBBasicComment sym:CUI_HID_COLORPAGE_BASICCOMMENT_LB +LBBasicNumber sym:CUI_HID_COLORPAGE_BASICNUMBER_LB +LBBasicString sym:CUI_HID_COLORPAGE_BASICSTRING_LB +LBBasicOperator sym:CUI_HID_COLORPAGE_BASICOPERATOR_LB +LBBasicReservedExpression sym:CUI_HID_COLORPAGE_BASICKEYWORD_LB +LBBasicError sym:CUI_HID_COLORPAGE_BASICERROR_LB + +*TabArea sym:CUI_HID_AREA_AREA +BackgroundColour sym:cui:CheckBox:RID_SVXPAGE_AREA:CB_HATCHBCKGRD +BackgroundColourList sym:cui:ListBox:RID_SVXPAGE_AREA:LB_HATCHBCKGRDCOLOR +FillOptions sym:cui:ListBox:RID_SVXPAGE_AREA:LB_AREA_TYPE +ColourList sym:cui:ListBox:RID_SVXPAGE_AREA:LB_COLOR +GradientList sym:cui:ListBox:RID_SVXPAGE_AREA:LB_GRADIENT +HatchingList sym:cui:ListBox:RID_SVXPAGE_AREA:LB_HATCHING +BitmapList sym:cui:ListBox:RID_SVXPAGE_AREA:LB_BITMAP +Automatic sym:cui:TriStateBox:RID_SVXPAGE_AREA:TSB_STEPCOUNT +Increments sym:cui:NumericField:RID_SVXPAGE_AREA:NUM_FLD_STEPCOUNT +Tile sym:cui:TriStateBox:RID_SVXPAGE_AREA:TSB_TILE +Stretch sym:cui:TriStateBox:RID_SVXPAGE_AREA:TSB_STRETCH +Relative sym:cui:TriStateBox:RID_SVXPAGE_AREA:TSB_SCALE +Original sym:cui:TriStateBox:RID_SVXPAGE_AREA:TSB_ORIGINAL +Width sym:cui:MetricField:RID_SVXPAGE_AREA:MTR_FLD_X_SIZE +Height sym:cui:MetricField:RID_SVXPAGE_AREA:MTR_FLD_Y_SIZE +XOffset sym:cui:MetricField:RID_SVXPAGE_AREA:MTR_FLD_X_OFFSET +YOffset sym:cui:MetricField:RID_SVXPAGE_AREA:MTR_FLD_Y_OFFSET +Row sym:cui:RadioButton:RID_SVXPAGE_AREA:RBT_ROW +Column sym:cui:RadioButton:RID_SVXPAGE_AREA:RBT_COLUMN +Offset sym:cui:MetricField:RID_SVXPAGE_AREA:MTR_FLD_OFFSET + +*TabAsianLayout sym:CUI_HID_SVXPAGE_CHAR_TWOLINES +TwoLinesEachLine sym:cui:CheckBox:RID_SVXPAGE_CHAR_TWOLINES:CB_TWOLINES +BeginningCharacter sym:cui:ListBox:RID_SVXPAGE_CHAR_TWOLINES:ED_STARTBRACKET +EndCharacter sym:cui:ListBox:RID_SVXPAGE_CHAR_TWOLINES:ED_ENDBRACKET + +*TabAsianLayoutOptions sym:CUI_HID_OPTIONS_ASIAN_LAYOUT +WesternCharactersOnly sym:cui:RadioButton:RID_SVXPAGE_ASIAN_LAYOUT:RB_CHAR_KERNING +WesternTextAndPunctuation sym:cui:RadioButton:RID_SVXPAGE_ASIAN_LAYOUT:RB_CHAR_PUNCT +NoCompression sym:cui:RadioButton:RID_SVXPAGE_ASIAN_LAYOUT:RB_NO_COMP +CompressPunctuationOnly sym:cui:RadioButton:RID_SVXPAGE_ASIAN_LAYOUT:RB_PUNCT_COMP +CompressPunctuationAndJapaneseKana sym:cui:RadioButton:RID_SVXPAGE_ASIAN_LAYOUT:RB_PUNCT_KANA_COMP +Language sym:cui:ListBox:RID_SVXPAGE_ASIAN_LAYOUT:LB_LANGUAGE +Standard sym:cui:CheckBox:RID_SVXPAGE_ASIAN_LAYOUT:CB_STANDARD +NoStartOfLine sym:cui:Edit:RID_SVXPAGE_ASIAN_LAYOUT:ED_START +NoEndOfLine sym:cui:Edit:RID_SVXPAGE_ASIAN_LAYOUT:ED_END + +*TabAsianTypography sym:CUI_HID_SVXPAGE_PARA_ASIAN +ApplyList sym:cui:TriStateBox:RID_SVXPAGE_PARA_ASIAN:CB_AS_FORBIDDEN +AllowHangingPunctuation sym:cui:TriStateBox:RID_SVXPAGE_PARA_ASIAN:CB_AS_HANG_PUNC +ApplySpacingBetween sym:cui:TriStateBox:RID_SVXPAGE_PARA_ASIAN:CB_AS_SCRIPT_SPACE + +*TabAutoCaption sym:SW_HID_OPTCAPTION_PAGE +ObjectList sym:SW_HID_OPTCAPTION_CLB +Category sym:sw:ComboBox:TP_OPTCAPTION_PAGE:BOX_CATEGORY +Numbering sym:sw:ListBox:TP_OPTCAPTION_PAGE:BOX_FORMAT +CaptionSeparator sym:sw:Edit:TP_OPTCAPTION_PAGE:EDT_TEXT +Position sym:sw:ListBox:TP_OPTCAPTION_PAGE:BOX_POS +Level sym:sw:ListBox:TP_OPTCAPTION_PAGE:LB_LEVEL +ChapterSeparator sym:sw:Edit:TP_OPTCAPTION_PAGE:ED_SEPARATOR +CharacterStyle sym:sw:ListBox:TP_OPTCAPTION_PAGE:LB_CHARSTYLE +ApplyBorderAndShadow sym:sw:CheckBox:TP_OPTCAPTION_PAGE:CB_APPLYBORDER + +*TabBaseBookmarks sym:DBACCESS_HID_DSADMIN_DOCUMENTLINKS +Bookmarklist sym:DBACCESS_HID_DSADMIN_DOCUMENTS + +*TabBullet sym:CUI_HID_SVXPAGE_PICK_BULLET +Auswahl sym:CUI_HID_VALUESET_BULLET +Optionen sym:SW_HID_NUM_FORMAT_BTN +Zurueck sym:SFX2_HID_TABDLG_RESET_BTN +Remove sym:SW_HID_NUM_RESET + +*TabChartAxisLabel sym:CHART2_HID_SCH_TP_AXIS_LABEL + ShowLabels sym:chart2:CheckBox:TP_AXIS_LABEL:CB_AXIS_LABEL_SCHOW_DESCR + Tile sym:chart2:RadioButton:TP_AXIS_LABEL:RB_AXIS_LABEL_SIDEBYSIDE + StaggerOdd sym:chart2:RadioButton:TP_AXIS_LABEL:RB_AXIS_LABEL_UPDOWN + StaggerEven sym:chart2:RadioButton:TP_AXIS_LABEL:RB_AXIS_LABEL_DOWNUP + Automatic sym:chart2:RadioButton:TP_AXIS_LABEL:RB_AXIS_LABEL_AUTOORDER + Overlap sym:chart2:CheckBox:TP_AXIS_LABEL:CB_AXIS_LABEL_TEXTOVERLAP + Break sym:chart2:CheckBox:TP_AXIS_LABEL:CB_AXIS_LABEL_TEXTBREAK + AngleKnob sym:CHART2_HID_SCH_ALIGNMENT_CTR_DIAL + AngleText sym:CHART2_HID_SCH_ALIGNMENT_DEGREES + VerticallyStacked sym:CHART2_HID_SCH_ALIGNMENT_STACKED + TextDirection sym:chart2:ListBox:TP_AXIS_LABEL:LB_AXIS_TEXTDIR -*TabChartAxisNumbers HID_NUMBERFORMAT - Category cui:ListBox:RID_SVXPAGE_NUMBERFORMAT:LB_CATEGORY - FormatCurrency cui:ListBox:RID_SVXPAGE_NUMBERFORMAT:LB_CURRENCY - FormatString HID_NUMBERFORMAT_LB_FORMAT - Language cui:ListBox:RID_SVXPAGE_NUMBERFORMAT:LB_LANGUAGE - Sourceformat cui:CheckBox:RID_SVXPAGE_NUMBERFORMAT:CB_SOURCEFORMAT - DecimalPlaces cui:NumericField:RID_SVXPAGE_NUMBERFORMAT:ED_DECIMALS - LeadingZeroes cui:NumericField:RID_SVXPAGE_NUMBERFORMAT:ED_LEADZEROES - NegativNumbersRed cui:CheckBox:RID_SVXPAGE_NUMBERFORMAT:BTN_NEGRED - ThousandsSeparator cui:CheckBox:RID_SVXPAGE_NUMBERFORMAT:BTN_THOUSAND - FormatCode cui:Edit:RID_SVXPAGE_NUMBERFORMAT:ED_FORMAT - AddButton HID_NUMBERFORMAT_TBI_ADD - EditCommentButton HID_NUMBERFORMAT_TBI_INFO - RemoveButton HID_NUMBERFORMAT_TBI_REMOVE - Comment cui:Edit:RID_SVXPAGE_NUMBERFORMAT:ED_COMMENT +*TabChartAxisNumbers sym:CUI_HID_NUMBERFORMAT + Category sym:cui:ListBox:RID_SVXPAGE_NUMBERFORMAT:LB_CATEGORY + FormatCurrency sym:cui:ListBox:RID_SVXPAGE_NUMBERFORMAT:LB_CURRENCY + FormatString sym:CUI_HID_NUMBERFORMAT_LB_FORMAT + Language sym:cui:ListBox:RID_SVXPAGE_NUMBERFORMAT:LB_LANGUAGE + Sourceformat sym:cui:CheckBox:RID_SVXPAGE_NUMBERFORMAT:CB_SOURCEFORMAT + DecimalPlaces sym:cui:NumericField:RID_SVXPAGE_NUMBERFORMAT:ED_DECIMALS + LeadingZeroes sym:cui:NumericField:RID_SVXPAGE_NUMBERFORMAT:ED_LEADZEROES + NegativNumbersRed sym:cui:CheckBox:RID_SVXPAGE_NUMBERFORMAT:BTN_NEGRED + ThousandsSeparator sym:cui:CheckBox:RID_SVXPAGE_NUMBERFORMAT:BTN_THOUSAND + FormatCode sym:cui:Edit:RID_SVXPAGE_NUMBERFORMAT:ED_FORMAT + AddButton sym:CUI_HID_NUMBERFORMAT_TBI_ADD + EditCommentButton sym:CUI_HID_NUMBERFORMAT_TBI_INFO + RemoveButton sym:CUI_HID_NUMBERFORMAT_TBI_REMOVE + Comment sym:cui:Edit:RID_SVXPAGE_NUMBERFORMAT:ED_COMMENT -*TabChartAxisScale chart2:TabPage:TP_SCALE -MinimumValue chart2:SpinField:TP_SCALE:EDT_MIN -MinimumAutomatic chart2:CheckBox:TP_SCALE:CBX_AUTO_MIN -MaximumValue chart2:SpinField:TP_SCALE:EDT_MAX -MaximumAutomatic chart2:CheckBox:TP_SCALE:CBX_AUTO_MAX -MajorIntervalValue chart2:SpinField:TP_SCALE:EDT_STEP_MAIN -MajorIntervalAutomatic chart2:CheckBox:TP_SCALE:CBX_AUTO_STEP_MAIN -MinorIntervalCount chart2:MetricField:TP_SCALE:MT_STEPHELP -MinorIntervalCountAutomatic chart2:CheckBox:TP_SCALE:CBX_AUTO_STEP_HELP -ReferenceValue chart2:SpinField:TP_SCALE:EDT_ORIGIN -RreferenceValueAutomatic chart2:CheckBox:TP_SCALE:CBX_AUTO_ORIGIN -LogarithmicScale chart2:CheckBox:TP_SCALE:CBX_LOGARITHM -ReverseDirection chart2:CheckBox:TP_SCALE:CBX_REVERSE - -*TabChartAxisPositioning chart2:TabPage:TP_AXIS_POSITIONS -CrossOtherAxisAt chart2:ListBox:TP_AXIS_POSITIONS:LB_CROSSES_OTHER_AXIS_AT -AxisAtValue chart2:SpinField:TP_AXIS_POSITIONS:EDT_CROSSES_OTHER_AXIS_AT -AxisAtCategory chart2:ComboBox:TP_AXIS_POSITIONS:EDT_CROSSES_OTHER_AXIS_AT_CATEGORY -Hidden_Checkbox1 chart2:CheckBox:TP_AXIS_POSITIONS:CB_AXIS_BETWEEN_CATEGORIES -PlaceLabels chart2:ListBox:TP_AXIS_POSITIONS:LB_PLACE_LABELS -Hidden_Spinfield1 chart2:SpinField:TP_AXIS_POSITIONS:EDT_AXIS_LABEL_DISTANCE -MajorIntervalMarksInner chart2:CheckBox:TP_AXIS_POSITIONS:CB_TICKS_INNER -MajorIntervalMarksOuter chart2:CheckBox:TP_AXIS_POSITIONS:CB_TICKS_OUTER -MinorIntervalMarksInner chart2:CheckBox:TP_AXIS_POSITIONS:CB_MINOR_INNER -MinorIntervalMarksOuter chart2:CheckBox:TP_AXIS_POSITIONS:CB_MINOR_OUTER -PlaceMarks chart2:ListBox:TP_AXIS_POSITIONS:LB_PLACE_TICKS -Hidden_Checkbox2 chart2:CheckBox:TP_AXIS_POSITIONS:CB_MAJOR_GRID -Hidden_MoreBtn chart2:PushButton:TP_AXIS_POSITIONS:PB_MAJOR_GRID -Hidden_Checkbox3 chart2:CheckBox:TP_AXIS_POSITIONS:CB_MINOR_GRID -Hidden_More2 chart2:PushButton:TP_AXIS_POSITIONS:PB_MINOR_GRID - -*TabChartTypeDataRange chart2:TabPage:TP_RANGECHOOSER - DataRange chart2:Edit:TP_RANGECHOOSER:ED_RANGE - SelectDataRange chart2:ImageButton:TP_RANGECHOOSER:IB_RANGE - Rows chart2:RadioButton:TP_RANGECHOOSER:RB_DATAROWS - Columns chart2:RadioButton:TP_RANGECHOOSER:RB_DATACOLS - FirstRowAsLabel chart2:CheckBox:TP_RANGECHOOSER:CB_FIRST_ROW_ASLABELS - FirstColumnAsLabel chart2:CheckBox:TP_RANGECHOOSER:CB_FIRST_COLUMN_ASLABELS +*TabChartAxisScale sym:chart2:TabPage:TP_SCALE +MinimumValue sym:chart2:SpinField:TP_SCALE:EDT_MIN +MinimumAutomatic sym:chart2:CheckBox:TP_SCALE:CBX_AUTO_MIN +MaximumValue sym:chart2:SpinField:TP_SCALE:EDT_MAX +MaximumAutomatic sym:chart2:CheckBox:TP_SCALE:CBX_AUTO_MAX +MajorIntervalValue sym:chart2:SpinField:TP_SCALE:EDT_STEP_MAIN +MajorIntervalAutomatic sym:chart2:CheckBox:TP_SCALE:CBX_AUTO_STEP_MAIN +MinorIntervalCount sym:chart2:MetricField:TP_SCALE:MT_STEPHELP +MinorIntervalCountAutomatic sym:chart2:CheckBox:TP_SCALE:CBX_AUTO_STEP_HELP +ReferenceValue sym:chart2:SpinField:TP_SCALE:EDT_ORIGIN +RreferenceValueAutomatic sym:chart2:CheckBox:TP_SCALE:CBX_AUTO_ORIGIN +LogarithmicScale sym:chart2:CheckBox:TP_SCALE:CBX_LOGARITHM +ReverseDirection sym:chart2:CheckBox:TP_SCALE:CBX_REVERSE + +*TabChartAxisPositioning sym:chart2:TabPage:TP_AXIS_POSITIONS +CrossOtherAxisAt sym:chart2:ListBox:TP_AXIS_POSITIONS:LB_CROSSES_OTHER_AXIS_AT +AxisAtValue sym:chart2:SpinField:TP_AXIS_POSITIONS:EDT_CROSSES_OTHER_AXIS_AT +AxisAtCategory sym:chart2:ComboBox:TP_AXIS_POSITIONS:EDT_CROSSES_OTHER_AXIS_AT_CATEGORY +Hidden_Checkbox1 sym:chart2:CheckBox:TP_AXIS_POSITIONS:CB_AXIS_BETWEEN_CATEGORIES +PlaceLabels sym:chart2:ListBox:TP_AXIS_POSITIONS:LB_PLACE_LABELS +Hidden_Spinfield1 sym:chart2:SpinField:TP_AXIS_POSITIONS:EDT_AXIS_LABEL_DISTANCE +MajorIntervalMarksInner sym:chart2:CheckBox:TP_AXIS_POSITIONS:CB_TICKS_INNER +MajorIntervalMarksOuter sym:chart2:CheckBox:TP_AXIS_POSITIONS:CB_TICKS_OUTER +MinorIntervalMarksInner sym:chart2:CheckBox:TP_AXIS_POSITIONS:CB_MINOR_INNER +MinorIntervalMarksOuter sym:chart2:CheckBox:TP_AXIS_POSITIONS:CB_MINOR_OUTER +PlaceMarks sym:chart2:ListBox:TP_AXIS_POSITIONS:LB_PLACE_TICKS +Hidden_Checkbox2 sym:chart2:CheckBox:TP_AXIS_POSITIONS:CB_MAJOR_GRID +Hidden_MoreBtn sym:chart2:PushButton:TP_AXIS_POSITIONS:PB_MAJOR_GRID +Hidden_Checkbox3 sym:chart2:CheckBox:TP_AXIS_POSITIONS:CB_MINOR_GRID +Hidden_More2 sym:chart2:PushButton:TP_AXIS_POSITIONS:PB_MINOR_GRID + +*TabChartTypeDataRange sym:chart2:TabPage:TP_RANGECHOOSER + DataRange sym:chart2:Edit:TP_RANGECHOOSER:ED_RANGE + SelectDataRange sym:chart2:ImageButton:TP_RANGECHOOSER:IB_RANGE + Rows sym:chart2:RadioButton:TP_RANGECHOOSER:RB_DATAROWS + Columns sym:chart2:RadioButton:TP_RANGECHOOSER:RB_DATACOLS + FirstRowAsLabel sym:chart2:CheckBox:TP_RANGECHOOSER:CB_FIRST_ROW_ASLABELS + FirstColumnAsLabel sym:chart2:CheckBox:TP_RANGECHOOSER:CB_FIRST_COLUMN_ASLABELS +TabDataRangesDataRange TabChartTypeDataRange +TabFormatDataRangesDataRange TabChartTypeDataRange -*TabChartTypeDataSeries chart2:TabPage:TP_DATA_SOURCE - DataRanges HID_SCH_DATA_RANGES_LIST - RangeFor chart2:Edit:TP_DATA_SOURCE:EDT_RANGE - SelectRange chart2:ImageButton:TP_DATA_SOURCE:IMB_RANGE_MAIN - Categories chart2:Edit:TP_DATA_SOURCE:EDT_CATEGORIES - SelectCategories chart2:ImageButton:TP_DATA_SOURCE:IMB_RANGE_CAT - AddButton chart2:PushButton:TP_DATA_SOURCE:BTN_ADD - RemoveButton chart2:PushButton:TP_DATA_SOURCE:BTN_REMOVE - MoveUp chart2:PushButton:TP_DATA_SOURCE:BTN_UP - MoveDown chart2:PushButton:TP_DATA_SOURCE:BTN_DOWN - DataSeries HID_SCH_SERIES_LIST +*TabChartTypeDataSeries sym:chart2:TabPage:TP_DATA_SOURCE + DataRanges sym:CHART2_HID_SCH_DATA_RANGES_LIST + RangeFor sym:chart2:Edit:TP_DATA_SOURCE:EDT_RANGE + SelectRange sym:chart2:ImageButton:TP_DATA_SOURCE:IMB_RANGE_MAIN + Categories sym:chart2:Edit:TP_DATA_SOURCE:EDT_CATEGORIES + SelectCategories sym:chart2:ImageButton:TP_DATA_SOURCE:IMB_RANGE_CAT + AddButton sym:chart2:PushButton:TP_DATA_SOURCE:BTN_ADD + RemoveButton sym:chart2:PushButton:TP_DATA_SOURCE:BTN_REMOVE + MoveUp sym:chart2:PushButton:TP_DATA_SOURCE:BTN_UP + MoveDown sym:chart2:PushButton:TP_DATA_SOURCE:BTN_DOWN + DataSeries sym:CHART2_HID_SCH_SERIES_LIST +TabDataRangesDataSeries TabChartTypeDataSeries +TabFormatDataRangesDataSeries TabChartTypeDataSeries -*TabChartPieOptions chart2:TabPage:TP_POLAROPTIONS -Clockwise chart2:CheckBox:TP_POLAROPTIONS:CB_CLOCKWISE -StartingAngle HID_SCH_STARTING_ANGLE_DIAL -Degrees chart2:NumericField:TP_POLAROPTIONS:NF_STARTING_ANGLE - -*TabChartTypeChartElements chart2:TabPage:TP_WIZARD_TITLEANDOBJECTS -Title HID_SCH_TITLE_MAIN -Subtitle HID_SCH_TITLE_SUB -TitleXaxis HID_SCH_TITLE_X -TitleYaxis HID_SCH_TITLE_Y -TitleZaxis HID_SCH_TITLE_Z -SecondTitleXaxis HID_SCH_TITLE_SECONDARY_X -SecondTitleYaxis HID_SCH_TITLE_SECONDARY_Y -Display HID_SCH_LEGEND_SHOW -PositionLeft HID_SCH_LEGEND_POS_LEFT -PositionTop HID_SCH_LEGEND_POS_TOP -PositionRight HID_SCH_LEGEND_POS_RIGHT -PositionBottom HID_SCH_LEGEND_POS_BOTTOM -GridLinesXaxis HID_SCH_CB_XGRID -GridLinesYaxis HID_SCH_CB_YGRID -GridLinesZaxis HID_SCH_CB_ZGRID +*TabChartPieOptions sym:chart2:TabPage:TP_POLAROPTIONS +Clockwise sym:chart2:CheckBox:TP_POLAROPTIONS:CB_CLOCKWISE +StartingAngle sym:CHART2_HID_SCH_STARTING_ANGLE_DIAL +Degrees sym:chart2:NumericField:TP_POLAROPTIONS:NF_STARTING_ANGLE + +*TabChartTypeChartElements sym:chart2:TabPage:TP_WIZARD_TITLEANDOBJECTS +Title sym:CHART2_HID_SCH_TITLE_MAIN +Subtitle sym:CHART2_HID_SCH_TITLE_SUB +TitleXaxis sym:CHART2_HID_SCH_TITLE_X +TitleYaxis sym:CHART2_HID_SCH_TITLE_Y +TitleZaxis sym:CHART2_HID_SCH_TITLE_Z +SecondTitleXaxis sym:CHART2_HID_SCH_TITLE_SECONDARY_X +SecondTitleYaxis sym:CHART2_HID_SCH_TITLE_SECONDARY_Y +Display sym:CHART2_HID_SCH_LEGEND_SHOW +PositionLeft sym:CHART2_HID_SCH_LEGEND_POS_LEFT +PositionTop sym:CHART2_HID_SCH_LEGEND_POS_TOP +PositionRight sym:CHART2_HID_SCH_LEGEND_POS_RIGHT +PositionBottom sym:CHART2_HID_SCH_LEGEND_POS_BOTTOM +GridLinesXaxis sym:CHART2_HID_SCH_CB_XGRID +GridLinesYaxis sym:CHART2_HID_SCH_CB_YGRID +GridLinesZaxis sym:CHART2_HID_SCH_CB_ZGRID -*TabChartTypeChartLocation chart2:TabPage:TP_LOCATION -InsertInSheet chart2:ListBox:TP_LOCATION:LB_TABLE - -*TabCreateOptionGroup extensions:TabPage:RID_PAGE_OPTIONS_FINAL -GroupCaption extensions:Edit:RID_PAGE_OPTIONS_FINAL:ET_NAMEIT - -*TabConnections cui:TabPage:RID_OFAPAGE_CONNPOOLOPTIONS -DriverList HID_OFA_CONNPOOL_DRIVERLIST -ConnectionPoolingEnabled cui:CheckBox:RID_OFAPAGE_CONNPOOLOPTIONS:CB_POOL_CONNS -EnablePoolingForThisDriver cui:CheckBox:RID_OFAPAGE_CONNPOOLOPTIONS:CB_DRIVERPOOLING -Timeout cui:NumericField:RID_OFAPAGE_CONNPOOLOPTIONS:NF_TIMEOUT - -*TabConnection dbaccess:TabPage:PAGE_CONNECTION -dBasePath HID_DSADMIN_DBASE_PATH -SelectPath HID_DSADMIN_BROWSECONN -Username dbaccess:Edit:PAGE_CONNECTION:ET_USERNAME -PasswordRequired dbaccess:CheckBox:PAGE_CONNECTION:CB_PASSWORD_REQUIRED -JDBCDriverClass HID_DSADMIN_DRIVERCLASS -TestDriver dbaccess:PushButton:PAGE_CONNECTION:PB_TESTDRIVERCLASS -MySQLODBCDatasource HID_DSADMIN_MYSQL_ODBC_DATASOURCE -TestConnection dbaccess:PushButton:PAGE_CONNECTION:PB_TESTCONNECTION -MySQLJDBCDatasource HID_DSADMIN_MYSQL_DATABASE -AdabasDatasource HID_DSADMIN_ADABAS_DATABASE -OracleJDBCDatasource HID_DSADMIN_ORACLE_DATABASE -ConnectUrl HID_DSADMIN_URL_GENERAL -OdbcDatasourceName HID_DSADMIN_ODBC_DATASOURCE -SpreadsheetPath HID_DSADMIN_CALC_PATH -HostName HID_DSADMIN_LDAP_HOSTNAME -BaseDN HID_PAGE_DBWIZARD_LDAP_ET_BASEDN -TextPath HID_DSADMIN_FLAT_PATH - -*TabCopyDatabaseTable HID_TAB_WIZ_COPYTABLE -TableName HID_TAB_WIZ_TABLENAME_EDIT -DefinitionAndData dbaccess:RadioButton:TAB_WIZ_COPYTABLE:RB_DEFDATA -Definition dbaccess:RadioButton:TAB_WIZ_COPYTABLE:RB_DEF -AsTableView dbaccess:RadioButton:TAB_WIZ_COPYTABLE:RB_VIEW -AttachData dbaccess:RadioButton:TAB_WIZ_COPYTABLE:RB_APPENDDATA -CreatePrimaryKey dbaccess:CheckBox:TAB_WIZ_COPYTABLE:CB_PRIMARY_COLUMN -PrimaryKeyName dbaccess:Edit:TAB_WIZ_COPYTABLE:ET_KEYNAME - -*TabColumnSelect HID_TAB_WIZ_COLUMN_SELECT -LeftColumNames dbaccess:MultiListBox:TAB_WIZ_COLUMN_SELECT:LB_ORG_COLUMN_NAMES -Add dbaccess:ImageButton:TAB_WIZ_COLUMN_SELECT:IB_COLUMN_RH -AddAll dbaccess:ImageButton:TAB_WIZ_COLUMN_SELECT:IB_COLUMNS_RH -Remove dbaccess:ImageButton:TAB_WIZ_COLUMN_SELECT:IB_COLUMN_LH -RemoveAll dbaccess:ImageButton:TAB_WIZ_COLUMN_SELECT:IB_COLUMNS_LH -RightColumNames dbaccess:MultiListBox:TAB_WIZ_COLUMN_SELECT:LB_NEW_COLUMN_NAMES - -*TabCompatibility HID_OPTCOMPATIBILITY_PAGE -Options HID_COMPATIBILITY_OPTIONS_BOX -Formatting sw:ListBox:TP_OPTCOMPATIBILITY_PAGE:LB_FORMATTING -Reset sw:PushButton:TP_OPTCOMPATIBILITY_PAGE:PB_RESET -Default sw:PushButton:TP_OPTCOMPATIBILITY_PAGE:PB_DEFAULT - -*TabComplexTextLayout HID_OPTIONS_CTL -UseSequenceChecking cui:CheckBox:RID_SVXPAGE_OPTIONS_CTL:CB_SEQUENCECHECKING -Logical cui:RadioButton:RID_SVXPAGE_OPTIONS_CTL:RB_MOVEMENT_LOGICAL -Visual cui:RadioButton:RID_SVXPAGE_OPTIONS_CTL:RB_MOVEMENT_VISUAL -Numerals cui:ListBox:RID_SVXPAGE_OPTIONS_CTL:LB_NUMERALS -Restricted cui:CheckBox:RID_SVXPAGE_OPTIONS_CTL:CB_RESTRICTED -TypeAndReplace cui:CheckBox:RID_SVXPAGE_OPTIONS_CTL:CB_TYPE_REPLACE - -*TabCustomizeEvents HID_SVX_CONFIG_EVENT -SaveIn cui:ListBox:RID_SVXPAGE_EVENTS:LB_SAVEIN -EventListbox HID_SVX_MACRO_LB_EVENT -AssignMacro cui:PushButton:RID_SVXPAGE_EVENTS:PB_ASSIGN -RemoveMacro cui:PushButton:RID_SVXPAGE_EVENTS:PB_DELETE -ResetBtn HID_TABDLG_RESET_BTN - -*TabCustomizeMenu HID_SVX_CONFIG_MENU -Menu cui:ListBox:RID_SVXPAGE_MENUS:LB_MENUS -BtnNew cui:PushButton:RID_SVXPAGE_MENUS:BTN_NEW -MenuBtn cui:MenuButton:RID_SVXPAGE_MENUS:BTN_CHANGE -AddCommands cui:PushButton:RID_SVXPAGE_MENUS:BTN_ADD_COMMANDS -Command cui:MenuButton:RID_SVXPAGE_MENUS:BTN_CHANGE_ENTRY -BtnUp cui:ImageButton:RID_SVXPAGE_MENUS:BTN_UP -BtnDown cui:ImageButton:RID_SVXPAGE_MENUS:BTN_DOWN -SaveIn cui:ListBox:RID_SVXPAGE_MENUS:LB_SAVEIN -ResetBtn HID_TABDLG_RESET_BTN -Entries HID_SVX_CONFIG_MENU_CONTENTS - -*TabCustomizeToolbars HID_SVX_CONFIG_TOOLBAR -Menu cui:ListBox:RID_SVXPAGE_MENUS:LB_MENUS -BtnNew HID_SVX_NEW_TOOLBAR -MenuBtn HID_SVX_MODIFY_TOOLBAR -AddCommands HID_SVX_NEW_TOOLBAR_ITEM -Command HID_SVX_MODIFY_TOOLBAR_ITEM -BtnUp cui:ImageButton:RID_SVXPAGE_MENUS:BTN_UP -BtnDown cui:ImageButton:RID_SVXPAGE_MENUS:BTN_DOWN -SaveIn HID_SVX_SAVE_IN -ToolbarContents HID_SVX_CONFIG_TOOLBAR_CONTENTS -ResetBtn HID_TABDLG_RESET_BTN +*TabChartTypeChartLocation sym:chart2:TabPage:TP_LOCATION +InsertInSheet sym:chart2:ListBox:TP_LOCATION:LB_TABLE + +*TabCreateOptionGroup sym:extensions:TabPage:RID_PAGE_OPTIONS_FINAL +GroupCaption sym:extensions:Edit:RID_PAGE_OPTIONS_FINAL:ET_NAMEIT + +*TabConnections sym:cui:TabPage:RID_OFAPAGE_CONNPOOLOPTIONS +DriverList sym:CUI_HID_OFA_CONNPOOL_DRIVERLIST +ConnectionPoolingEnabled sym:cui:CheckBox:RID_OFAPAGE_CONNPOOLOPTIONS:CB_POOL_CONNS +EnablePoolingForThisDriver sym:cui:CheckBox:RID_OFAPAGE_CONNPOOLOPTIONS:CB_DRIVERPOOLING +Timeout sym:cui:NumericField:RID_OFAPAGE_CONNPOOLOPTIONS:NF_TIMEOUT + +*TabConnection sym:dbaccess:TabPage:PAGE_CONNECTION +dBasePath sym:DBACCESS_HID_DSADMIN_DBASE_PATH +SelectPath sym:DBACCESS_HID_DSADMIN_BROWSECONN +Username sym:dbaccess:Edit:PAGE_CONNECTION:ET_USERNAME +PasswordRequired sym:dbaccess:CheckBox:PAGE_CONNECTION:CB_PASSWORD_REQUIRED +JDBCDriverClass sym:DBACCESS_HID_DSADMIN_DRIVERCLASS +TestDriver sym:dbaccess:PushButton:PAGE_CONNECTION:PB_TESTDRIVERCLASS +MySQLODBCDatasource sym:DBACCESS_HID_DSADMIN_MYSQL_ODBC_DATASOURCE +TestConnection sym:dbaccess:PushButton:PAGE_CONNECTION:PB_TESTCONNECTION +MySQLJDBCDatasource sym:DBACCESS_HID_DSADMIN_MYSQL_DATABASE +AdabasDatasource sym:DBACCESS_HID_DSADMIN_ADABAS_DATABASE +OracleJDBCDatasource sym:DBACCESS_HID_DSADMIN_ORACLE_DATABASE +ConnectUrl sym:DBACCESS_HID_DSADMIN_URL_GENERAL +OdbcDatasourceName sym:DBACCESS_HID_DSADMIN_ODBC_DATASOURCE +SpreadsheetPath sym:DBACCESS_HID_DSADMIN_CALC_PATH +HostName sym:DBACCESS_HID_DSADMIN_LDAP_HOSTNAME +BaseDN sym:DBACCESS_HID_PAGE_DBWIZARD_LDAP_ET_BASEDN +TextPath sym:DBACCESS_HID_DSADMIN_FLAT_PATH + +*TabCopyDatabaseTable sym:DBACCESS_HID_TAB_WIZ_COPYTABLE +TableName sym:DBACCESS_HID_TAB_WIZ_TABLENAME_EDIT +DefinitionAndData sym:dbaccess:RadioButton:TAB_WIZ_COPYTABLE:RB_DEFDATA +Definition sym:dbaccess:RadioButton:TAB_WIZ_COPYTABLE:RB_DEF +AsTableView sym:dbaccess:RadioButton:TAB_WIZ_COPYTABLE:RB_VIEW +AttachData sym:dbaccess:RadioButton:TAB_WIZ_COPYTABLE:RB_APPENDDATA +CreatePrimaryKey sym:dbaccess:CheckBox:TAB_WIZ_COPYTABLE:CB_PRIMARY_COLUMN +PrimaryKeyName sym:dbaccess:Edit:TAB_WIZ_COPYTABLE:ET_KEYNAME + +*TabColumnSelect sym:DBACCESS_HID_TAB_WIZ_COLUMN_SELECT +LeftColumNames sym:dbaccess:MultiListBox:TAB_WIZ_COLUMN_SELECT:LB_ORG_COLUMN_NAMES +Add sym:dbaccess:ImageButton:TAB_WIZ_COLUMN_SELECT:IB_COLUMN_RH +AddAll sym:dbaccess:ImageButton:TAB_WIZ_COLUMN_SELECT:IB_COLUMNS_RH +Remove sym:dbaccess:ImageButton:TAB_WIZ_COLUMN_SELECT:IB_COLUMN_LH +RemoveAll sym:dbaccess:ImageButton:TAB_WIZ_COLUMN_SELECT:IB_COLUMNS_LH +RightColumNames sym:dbaccess:MultiListBox:TAB_WIZ_COLUMN_SELECT:LB_NEW_COLUMN_NAMES + +*TabCompatibility sym:SW_HID_OPTCOMPATIBILITY_PAGE +Options sym:SW_HID_COMPATIBILITY_OPTIONS_BOX +Formatting sym:sw:ListBox:TP_OPTCOMPATIBILITY_PAGE:LB_FORMATTING +Reset sym:sw:PushButton:TP_OPTCOMPATIBILITY_PAGE:PB_RESET +Default sym:sw:PushButton:TP_OPTCOMPATIBILITY_PAGE:PB_DEFAULT + +*TabComplexTextLayout sym:CUI_HID_OPTIONS_CTL +UseSequenceChecking sym:cui:CheckBox:RID_SVXPAGE_OPTIONS_CTL:CB_SEQUENCECHECKING +Logical sym:cui:RadioButton:RID_SVXPAGE_OPTIONS_CTL:RB_MOVEMENT_LOGICAL +Visual sym:cui:RadioButton:RID_SVXPAGE_OPTIONS_CTL:RB_MOVEMENT_VISUAL +Numerals sym:cui:ListBox:RID_SVXPAGE_OPTIONS_CTL:LB_NUMERALS +Restricted sym:cui:CheckBox:RID_SVXPAGE_OPTIONS_CTL:CB_RESTRICTED +TypeAndReplace sym:cui:CheckBox:RID_SVXPAGE_OPTIONS_CTL:CB_TYPE_REPLACE + +*TabCustomizeEvents sym:CUI_HID_SVX_CONFIG_EVENT +SaveIn sym:cui:ListBox:RID_SVXPAGE_EVENTS:LB_SAVEIN +EventListbox sym:CUI_HID_SVX_MACRO_LB_EVENT +AssignMacro sym:cui:PushButton:RID_SVXPAGE_EVENTS:PB_ASSIGN +RemoveMacro sym:cui:PushButton:RID_SVXPAGE_EVENTS:PB_DELETE +ResetBtn sym:SFX2_HID_TABDLG_RESET_BTN + +*TabCustomizeMenu sym:CUI_HID_SVX_CONFIG_MENU +Menu sym:cui:ListBox:RID_SVXPAGE_MENUS:LB_MENUS +BtnNew sym:cui:PushButton:RID_SVXPAGE_MENUS:BTN_NEW +MenuBtn sym:cui:MenuButton:RID_SVXPAGE_MENUS:BTN_CHANGE +AddCommands sym:cui:PushButton:RID_SVXPAGE_MENUS:BTN_ADD_COMMANDS +Command sym:cui:MenuButton:RID_SVXPAGE_MENUS:BTN_CHANGE_ENTRY +BtnUp sym:cui:ImageButton:RID_SVXPAGE_MENUS:BTN_UP +BtnDown sym:cui:ImageButton:RID_SVXPAGE_MENUS:BTN_DOWN +SaveIn sym:cui:ListBox:RID_SVXPAGE_MENUS:LB_SAVEIN +ResetBtn sym:SFX2_HID_TABDLG_RESET_BTN +Entries sym:CUI_HID_SVX_CONFIG_MENU_CONTENTS + +*TabCustomizeToolbars sym:CUI_HID_SVX_CONFIG_TOOLBAR +Menu sym:cui:ListBox:RID_SVXPAGE_MENUS:LB_MENUS +BtnNew sym:CUI_HID_SVX_NEW_TOOLBAR +MenuBtn sym:CUI_HID_SVX_MODIFY_TOOLBAR +AddCommands sym:CUI_HID_SVX_NEW_TOOLBAR_ITEM +Command sym:CUI_HID_SVX_MODIFY_TOOLBAR_ITEM +BtnUp sym:cui:ImageButton:RID_SVXPAGE_MENUS:BTN_UP +BtnDown sym:cui:ImageButton:RID_SVXPAGE_MENUS:BTN_DOWN +SaveIn sym:CUI_HID_SVX_SAVE_IN +ToolbarContents sym:CUI_HID_SVX_CONFIG_TOOLBAR_CONTENTS +ResetBtn sym:SFX2_HID_TABDLG_RESET_BTN -*TabDatabaseField extensions:TabPage:RID_PAGE_OPTION_DBFIELD -YesSaveIt extensions:RadioButton:RID_PAGE_OPTION_DBFIELD:RB_STOREINFIELD_YES -NoValueForm extensions:RadioButton:RID_PAGE_OPTION_DBFIELD:RB_STOREINFIELD_NO -Fieldbox extensions:ListBox:RID_PAGE_OPTION_DBFIELD:LB_STOREINFIELD - -*TabDatabaseValues extensions:TabPage:RID_PAGE_OPTIONVALUES -YesSaveIt extensions:RadioButton:RID_PAGE_OPTION_DBFIELD:RB_STOREINFIELD_YES -NoValueForm extensions:RadioButton:RID_PAGE_OPTION_DBFIELD:RB_STOREINFIELD_NO -Fieldbox extensions:ListBox:RID_PAGE_OPTION_DBFIELD:LB_STOREINFIELD -WhichValue extensions:Edit:RID_PAGE_OPTIONVALUES:ET_OPTIONVALUE -OptionFields extensions:ListBox:RID_PAGE_OPTIONVALUES:LB_RADIOBUTTONS - -*TabDataControl HID_FM_PROPDLG_TAB_DATA -DataField HID_PROP_CONTROLSOURCE -EmptyStringIsNull HID_PROP_EMPTY_IS_NULL -FilterProposal HID_PROP_FILTERPROPOSAL -TypeOfListContent HID_PROP_LISTSOURCETYPE -ListContent HID_PROP_LISTSOURCE -BoundField HID_PROP_BOUNDCOLUMN -CellBound HID_PROP_BOUND_CELL -CellContentType HID_PROP_CELL_EXCHANGE_TYPE -CellRange HID_PROP_LIST_CELL_RANGE -ReferenceValue HID_PROP_REFVALUE -ReferenceValueOff HID_PROP_UNCHECKEDREFVALUE +*TabDatabaseField sym:extensions:TabPage:RID_PAGE_OPTION_DBFIELD +YesSaveIt sym:extensions:RadioButton:RID_PAGE_OPTION_DBFIELD:RB_STOREINFIELD_YES +NoValueForm sym:extensions:RadioButton:RID_PAGE_OPTION_DBFIELD:RB_STOREINFIELD_NO +Fieldbox sym:extensions:ListBox:RID_PAGE_OPTION_DBFIELD:LB_STOREINFIELD + +*TabDatabaseValues sym:extensions:TabPage:RID_PAGE_OPTIONVALUES +YesSaveIt sym:extensions:RadioButton:RID_PAGE_OPTION_DBFIELD:RB_STOREINFIELD_YES +NoValueForm sym:extensions:RadioButton:RID_PAGE_OPTION_DBFIELD:RB_STOREINFIELD_NO +Fieldbox sym:extensions:ListBox:RID_PAGE_OPTION_DBFIELD:LB_STOREINFIELD +WhichValue sym:extensions:Edit:RID_PAGE_OPTIONVALUES:ET_OPTIONVALUE +OptionFields sym:extensions:ListBox:RID_PAGE_OPTIONVALUES:LB_RADIOBUTTONS + +*TabDataControl sym:EXTENSIONS_HID_FM_PROPDLG_TAB_DATA +DataField sym:EXTENSIONS_HID_PROP_CONTROLSOURCE +EmptyStringIsNull sym:EXTENSIONS_HID_PROP_EMPTY_IS_NULL +FilterProposal sym:EXTENSIONS_HID_PROP_FILTERPROPOSAL +TypeOfListContent sym:EXTENSIONS_HID_PROP_LISTSOURCETYPE +ListContent sym:EXTENSIONS_HID_PROP_LISTSOURCE +BoundField sym:EXTENSIONS_HID_PROP_BOUNDCOLUMN +CellBound sym:EXTENSIONS_HID_PROP_BOUND_CELL +CellContentType sym:EXTENSIONS_HID_PROP_CELL_EXCHANGE_TYPE +CellRange sym:EXTENSIONS_HID_PROP_LIST_CELL_RANGE +ReferenceValue sym:EXTENSIONS_HID_PROP_REFVALUE +ReferenceValueOff sym:EXTENSIONS_HID_PROP_UNCHECKEDREFVALUE 'Controls in XForm Mode -XFormDataModel HID_PROP_XML_DATA_MODEL -XFormBindExpression HID_PROP_BIND_EXPRESSION -XFormBindExpressionName HID_PROP_BINDING_NAME -XFormBindExpressionBtn UID_PROP_DLG_BIND_EXPRESSION -XFormRequired HID_PROP_XSD_REQUIRED -XFormRequiredBtn UID_PROP_DLG_XSD_REQUIRED -XFormReleveant HID_PROP_XSD_RELEVANT -XFormReleveantBtn UID_PROP_DLG_XSD_RELEVANT -XFormReadOnly HID_PROP_XSD_READONLY -XFormReadOnlyBtn UID_PROP_DLG_XSD_READONLY -XFormConstraint HID_PROP_XSD_CONSTRAINT -XFormConstraintBtn UID_PROP_DLG_XSD_CONSTRAINT -XFormCalculation HID_PROP_XSD_CALCULATION -XFormCalculationBtn UID_PROP_DLG_XSD_CALCULATION -XFormDataType HID_PROP_XSD_DATA_TYPE -XFormAddDataTypeBtn UID_PROP_ADD_DATA_TYPE -XFormRemoveDataTypeBtn UID_PROP_REMOVE_DATA_TYPE - -*TabDataForm HID_FM_PROPDLG_TAB_DATA -DataSource HID_PROP_DATASOURCE -ContentType HID_PROP_CURSORSOURCETYPE -Content HID_PROP_CURSORSOURCE -AnalyzeSQLCommand HID_PROP_ESCAPE_PROCESSING -Filter HID_PROP_FILTER -FilterDLGButton UID_PROP_DLG_FILTER -Sort HID_PROP_SORT_CRITERIA -AllowAdditions HID_PROP_ALLOW_ADDITIONS -AllowModifications HID_PROP_ALLOW_EDITS -DeleteData HID_PROP_ALLOW_DELETIONS -AddDataOnly HID_PROP_DATAENTRY -NavigationBar HID_PROP_NAVIGATION -Cycle HID_PROP_CYCLE -LinkMasterFields HID_PROP_MASTERFIELDS -LinkSlaveFields HID_PROP_SLAVEFIELDS -FormLinkDLGButton UID_PROP_DLG_FORMLINKFIELDS -OpenQueryDesign UID_PROP_DLG_SQLCOMMAND -SortDLGButton UID_PROP_DLG_ORDER - -*TabDataPointLayout chart2:TabPage:TP_LAYOUT - BarColumnShape HID_SCH_LB_BAR_GEOMETRY - -*TabDataSeriesLabels HID_SCH_DATA_DESCR -ShowValue HID_SCH_DATALABEL_VALUE -AsNumber HID_SCH_DATALABEL_NUMBER -AsPercentage HID_SCH_DATALABEL_PERCENT -ShowLabelText HID_SCH_DATALABEL_TEXT -ShowLegendIconWithLabel HID_SCH_DATALABEL_SYMBOL -NumberFormat HID_SCH_PB_NUMBERFORMAT -PercentageFormat HID_SCH_PB_PERCENT_NUMBERFORMAT -Separator HID_SCH_DATALABEL_SEPARATOR -Placement HID_SCH_DATALABEL_PLACEMENT -TextDirection HID_SCH_TEXTDIRECTION -RotateAngle HID_SCH_DATALABEL_ROTATION_KNOB -RotateDegrees HID_SCH_DATALABEL_ROTATION_EDIT +XFormDataModel sym:EXTENSIONS_HID_PROP_XML_DATA_MODEL +XFormBindExpression sym:EXTENSIONS_HID_PROP_BIND_EXPRESSION +XFormBindExpressionName sym:EXTENSIONS_HID_PROP_BINDING_NAME +XFormBindExpressionBtn sym:EXTENSIONS_UID_PROP_DLG_BIND_EXPRESSION +XFormRequired sym:EXTENSIONS_HID_PROP_XSD_REQUIRED +XFormRequiredBtn sym:EXTENSIONS_UID_PROP_DLG_XSD_REQUIRED +XFormReleveant sym:EXTENSIONS_HID_PROP_XSD_RELEVANT +XFormReleveantBtn sym:EXTENSIONS_UID_PROP_DLG_XSD_RELEVANT +XFormReadOnly sym:EXTENSIONS_HID_PROP_XSD_READONLY +XFormReadOnlyBtn sym:EXTENSIONS_UID_PROP_DLG_XSD_READONLY +XFormConstraint sym:EXTENSIONS_HID_PROP_XSD_CONSTRAINT +XFormConstraintBtn sym:EXTENSIONS_UID_PROP_DLG_XSD_CONSTRAINT +XFormCalculation sym:EXTENSIONS_HID_PROP_XSD_CALCULATION +XFormCalculationBtn sym:EXTENSIONS_UID_PROP_DLG_XSD_CALCULATION +XFormDataType sym:EXTENSIONS_HID_PROP_XSD_DATA_TYPE +XFormAddDataTypeBtn sym:EXTENSIONS_UID_PROP_ADD_DATA_TYPE +XFormRemoveDataTypeBtn sym:EXTENSIONS_UID_PROP_REMOVE_DATA_TYPE + +*TabDataForm sym:EXTENSIONS_HID_FM_PROPDLG_TAB_DATA +DataSource sym:EXTENSIONS_HID_PROP_DATASOURCE +ContentType sym:EXTENSIONS_HID_PROP_CURSORSOURCETYPE +Content sym:EXTENSIONS_HID_PROP_CURSORSOURCE +AnalyzeSQLCommand sym:EXTENSIONS_HID_PROP_ESCAPE_PROCESSING +Filter sym:EXTENSIONS_HID_PROP_FILTER +FilterDLGButton sym:EXTENSIONS_UID_PROP_DLG_FILTER +Sort sym:EXTENSIONS_HID_PROP_SORT_CRITERIA +AllowAdditions sym:EXTENSIONS_HID_PROP_ALLOW_ADDITIONS +AllowModifications sym:EXTENSIONS_HID_PROP_ALLOW_EDITS +DeleteData sym:EXTENSIONS_HID_PROP_ALLOW_DELETIONS +AddDataOnly sym:EXTENSIONS_HID_PROP_DATAENTRY +NavigationBar sym:EXTENSIONS_HID_PROP_NAVIGATION +Cycle sym:EXTENSIONS_HID_PROP_CYCLE +LinkMasterFields sym:EXTENSIONS_HID_PROP_MASTERFIELDS +LinkSlaveFields sym:EXTENSIONS_HID_PROP_SLAVEFIELDS +FormLinkDLGButton sym:EXTENSIONS_UID_PROP_DLG_FORMLINKFIELDS +OpenQueryDesign sym:EXTENSIONS_UID_PROP_DLG_SQLCOMMAND +SortDLGButton sym:EXTENSIONS_UID_PROP_DLG_ORDER + +*TabDataPointLayout sym:chart2:TabPage:TP_LAYOUT + BarColumnShape sym:CHART2_HID_SCH_LB_BAR_GEOMETRY + +*TabDataSeriesLabels sym:CHART2_HID_SCH_DATA_DESCR +ShowValue sym:CHART2_HID_SCH_DATALABEL_VALUE +AsNumber sym:CHART2_HID_SCH_DATALABEL_NUMBER +AsPercentage sym:CHART2_HID_SCH_DATALABEL_PERCENT +ShowLabelText sym:CHART2_HID_SCH_DATALABEL_TEXT +ShowLegendIconWithLabel sym:CHART2_HID_SCH_DATALABEL_SYMBOL +NumberFormat sym:CHART2_HID_SCH_PB_NUMBERFORMAT +PercentageFormat sym:CHART2_HID_SCH_PB_PERCENT_NUMBERFORMAT +Separator sym:CHART2_HID_SCH_DATALABEL_SEPARATOR +Placement sym:CHART2_HID_SCH_DATALABEL_PLACEMENT +TextDirection sym:CHART2_HID_SCH_TEXTDIRECTION +RotateAngle sym:CHART2_HID_SCH_DATALABEL_ROTATION_KNOB +RotateDegrees sym:CHART2_HID_SCH_DATALABEL_ROTATION_EDIT +TabDataPointLabels TabDataSeriesLabels -*TabDataSeriesOptions chart2:TabPage:TP_OPTIONS -PrimaryYaxis chart2:RadioButton:TP_OPTIONS:RBT_OPT_AXIS_1 -SecondaryYaxis chart2:RadioButton:TP_OPTIONS:RBT_OPT_AXIS_2 -Gap chart2:MetricField:TP_OPTIONS:MT_GAP -Overlap chart2:MetricField:TP_OPTIONS:MT_OVERLAP -ConnectionLines chart2:CheckBox:TP_OPTIONS:CB_CONNECTOR -ShowBarsSideBySide chart2:CheckBox:TP_OPTIONS:CB_BARS_SIDE_BY_SIDE -LeaveGap chart2:RadioButton:TP_OPTIONS:RB_DONT_PAINT -AssumeZero chart2:RadioButton:TP_OPTIONS:RB_ASSUME_ZERO -ContinueLine chart2:RadioButton:TP_OPTIONS:RB_CONTINUE_LINE -IncludeHiddenCells chart2:CheckBox:TP_OPTIONS:CB_INCLUDE_HIDDEN_CELLS - -*TabDataSourceName extensions:TabPage:RID_PAGE_FINAL -SourceName extensions:Edit:RID_PAGE_FINAL:ET_DATASOURCENAME - -*TabdBase HID_DSADMIN_PAGE_DBASE -CharSet HID_DSADMIN_CHARSET -DisplayInactiveRecords HID_DSADMIN_SHOWDELETED -Indexes HID_DSADMIN_DBASE_INDICIES - -*TabDefaultFieldSelection extensions:TabPage:RID_PAGE_DEFAULTFIELDSELECTION -YesFollowing extensions:RadioButton:RID_PAGE_DEFAULTFIELDSELECTION:RB_DEFSELECTION_YES -NoSelected extensions:RadioButton:RID_PAGE_DEFAULTFIELDSELECTION:RB_DEFSELECTION_NO -Selection extensions:ListBox:RID_PAGE_DEFAULTFIELDSELECTION:LB_DEFSELECTIONFIELD - -*TabDialogs basctl:TabPage:RID_TP_DLGS -ModuleList HID_BASICIDE_MODULES_TREE -Edit basctl:PushButton:RID_TP_DLGS:RID_PB_EDIT -NewModule basctl:PushButton:RID_TP_DLGS:RID_PB_NEWMOD -NewDialog basctl:PushButton:RID_TP_DLGS:RID_PB_NEWDLG -Delete basctl:PushButton:RID_TP_DLGS:RID_PB_DELETE +*TabDataSeriesOptions sym:chart2:TabPage:TP_OPTIONS +PrimaryYaxis sym:chart2:RadioButton:TP_OPTIONS:RBT_OPT_AXIS_1 +SecondaryYaxis sym:chart2:RadioButton:TP_OPTIONS:RBT_OPT_AXIS_2 +Gap sym:chart2:MetricField:TP_OPTIONS:MT_GAP +Overlap sym:chart2:MetricField:TP_OPTIONS:MT_OVERLAP +ConnectionLines sym:chart2:CheckBox:TP_OPTIONS:CB_CONNECTOR +ShowBarsSideBySide sym:chart2:CheckBox:TP_OPTIONS:CB_BARS_SIDE_BY_SIDE +LeaveGap sym:chart2:RadioButton:TP_OPTIONS:RB_DONT_PAINT +AssumeZero sym:chart2:RadioButton:TP_OPTIONS:RB_ASSUME_ZERO +ContinueLine sym:chart2:RadioButton:TP_OPTIONS:RB_CONTINUE_LINE +IncludeHiddenCells sym:chart2:CheckBox:TP_OPTIONS:CB_INCLUDE_HIDDEN_CELLS + +*TabDataSourceName sym:extensions:TabPage:RID_PAGE_FINAL +SourceName sym:extensions:Edit:RID_PAGE_FINAL:ET_DATASOURCENAME + +*TabdBase sym:DBACCESS_HID_DSADMIN_PAGE_DBASE +CharSet sym:DBACCESS_HID_DSADMIN_CHARSET +DisplayInactiveRecords sym:DBACCESS_HID_DSADMIN_SHOWDELETED +Indexes sym:DBACCESS_HID_DSADMIN_DBASE_INDICIES + +*TabDefaultFieldSelection sym:extensions:TabPage:RID_PAGE_DEFAULTFIELDSELECTION +YesFollowing sym:extensions:RadioButton:RID_PAGE_DEFAULTFIELDSELECTION:RB_DEFSELECTION_YES +NoSelected sym:extensions:RadioButton:RID_PAGE_DEFAULTFIELDSELECTION:RB_DEFSELECTION_NO +Selection sym:extensions:ListBox:RID_PAGE_DEFAULTFIELDSELECTION:LB_DEFSELECTIONFIELD + +*TabDialogs sym:basctl:TabPage:RID_TP_DLGS +ModuleList sym:BASCTL_HID_BASICIDE_MODULES_TREE +Edit sym:basctl:PushButton:RID_TP_DLGS:RID_PB_EDIT +NewModule sym:basctl:PushButton:RID_TP_DLGS:RID_PB_NEWMOD +NewDialog sym:basctl:PushButton:RID_TP_DLGS:RID_PB_NEWDLG +Delete sym:basctl:PushButton:RID_TP_DLGS:RID_PB_DELETE diff --git a/testautomation/global/win/etab_e_g.win b/testautomation/global/win/etab_e_g.win index 09fd5e9067b8..3eba64da8097 100755..100644 --- a/testautomation/global/win/etab_e_g.win +++ b/testautomation/global/win/etab_e_g.win @@ -1,374 +1,374 @@ -*TabEffect sd:TabPage:RID_TP_CUSTOMANIMATION_EFFECT -Sound sd:ListBox:RID_TP_CUSTOMANIMATION_EFFECT:LB_SOUND -Play sd:PushButton:RID_TP_CUSTOMANIMATION_EFFECT:PB_SOUND_PREVIEW -AfterAnimation sd:ListBox:RID_TP_CUSTOMANIMATION_EFFECT:LB_AFTER_EFFECT -Dimcolor sd:ListBox:RID_TP_CUSTOMANIMATION_EFFECT:CLB_DIMCOLOR -TextAnimation sd:ListBox:RID_TP_CUSTOMANIMATION_EFFECT:LB_TEXT_ANIM -DelayBetweenCharacters sd:MetricField:RID_TP_CUSTOMANIMATION_EFFECT:MF_TEXT_DELAY +*TabEffect sym:sd:TabPage:RID_TP_CUSTOMANIMATION_EFFECT +Sound sym:sd:ListBox:RID_TP_CUSTOMANIMATION_EFFECT:LB_SOUND +Play sym:sd:PushButton:RID_TP_CUSTOMANIMATION_EFFECT:PB_SOUND_PREVIEW +AfterAnimation sym:sd:ListBox:RID_TP_CUSTOMANIMATION_EFFECT:LB_AFTER_EFFECT +Dimcolor sym:sd:ListBox:RID_TP_CUSTOMANIMATION_EFFECT:CLB_DIMCOLOR +TextAnimation sym:sd:ListBox:RID_TP_CUSTOMANIMATION_EFFECT:LB_TEXT_ANIM +DelayBetweenCharacters sym:sd:MetricField:RID_TP_CUSTOMANIMATION_EFFECT:MF_TEXT_DELAY -*TabEmail HID_OPTIONS_MAIL -EmailProgram cui:Edit:RID_SVXPAGE_INET_MAIL:ED_MAILERURL -EmailOpen cui:PushButton:RID_SVXPAGE_INET_MAIL:PB_MAILERURL +*TabEmail sym:CUI_HID_OPTIONS_MAIL +EmailProgram sym:cui:Edit:RID_SVXPAGE_INET_MAIL:ED_MAILERURL +EmailOpen sym:cui:PushButton:RID_SVXPAGE_INET_MAIL:PB_MAILERURL -*TabEntrance HID_SD_CUSTOMANIMATIONDIALOG_ENTRANCE -Effects sd:ListBox:RID_TP_CUSTOMANIMATION_ENTRANCE:LB_EFFECTS -Speed sd:ComboBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CB_SPEED -AutomaticPreview sd:CheckBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CBX_PREVIEW +*TabEntrance sym:SD_HID_SD_CUSTOMANIMATIONDIALOG_ENTRANCE +Effects sym:sd:ListBox:RID_TP_CUSTOMANIMATION_ENTRANCE:LB_EFFECTS +Speed sym:sd:ComboBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CB_SPEED +AutomaticPreview sym:sd:CheckBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CBX_PREVIEW -*TabEmphasis HID_SD_CUSTOMANIMATIONDIALOG_EMPHASIS -Effects sd:ListBox:RID_TP_CUSTOMANIMATION_ENTRANCE:LB_EFFECTS -Speed sd:ComboBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CB_SPEED -AutomaticPreview sd:CheckBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CBX_PREVIEW +*TabEmphasis sym:SD_HID_SD_CUSTOMANIMATIONDIALOG_EMPHASIS +Effects sym:sd:ListBox:RID_TP_CUSTOMANIMATION_ENTRANCE:LB_EFFECTS +Speed sym:sd:ComboBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CB_SPEED +AutomaticPreview sym:sd:CheckBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CBX_PREVIEW -*TabExit HID_SD_CUSTOMANIMATIONDIALOG_EXIT -Effects sd:ListBox:RID_TP_CUSTOMANIMATION_ENTRANCE:LB_EFFECTS -Speed sd:ComboBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CB_SPEED -AutomaticPreview sd:CheckBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CBX_PREVIEW +*TabExit sym:SD_HID_SD_CUSTOMANIMATIONDIALOG_EXIT +Effects sym:sd:ListBox:RID_TP_CUSTOMANIMATION_ENTRANCE:LB_EFFECTS +Speed sym:sd:ComboBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CB_SPEED +AutomaticPreview sym:sd:CheckBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CBX_PREVIEW -*TabMotionPaths HID_SD_CUSTOMANIMATIONDIALOG_MOTIONPATH -Effects sd:ListBox:RID_TP_CUSTOMANIMATION_ENTRANCE:LB_EFFECTS -Speed sd:ComboBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CB_SPEED -AutomaticPreview sd:CheckBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CBX_PREVIEW +*TabMotionPaths sym:SD_HID_SD_CUSTOMANIMATIONDIALOG_MOTIONPATH +Effects sym:sd:ListBox:RID_TP_CUSTOMANIMATION_ENTRANCE:LB_EFFECTS +Speed sym:sd:ComboBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CB_SPEED +AutomaticPreview sym:sd:CheckBox:RID_TP_CUSTOMANIMATION_ENTRANCE:CBX_PREVIEW -*TabEnvelope HID_ENV_ENV -Addressee sw:MultiLineEdit:TP_ENV_ENV:EDT_ADDR -Sender sw:CheckBox:TP_ENV_ENV:BOX_SEND -SenderText sw:MultiLineEdit:TP_ENV_ENV:EDT_SEND -Database sw:ListBox:TP_ENV_ENV:LB_DATABASE -Table sw:ListBox:TP_ENV_ENV:LB_TABLE -Datenbasefield sw:ListBox:TP_ENV_ENV:LB_DBFIELD -Apply sw:ImageButton:TP_ENV_ENV:BTN_INSERT -Print HID_ENVELOP_PRINT -Insert HID_ENVELOP_INSERT -Back HID_TABDLG_RESET_BTN +*TabEnvelope sym:SW_HID_ENV_ENV +Addressee sym:sw:MultiLineEdit:TP_ENV_ENV:EDT_ADDR +Sender sym:sw:CheckBox:TP_ENV_ENV:BOX_SEND +SenderText sym:sw:MultiLineEdit:TP_ENV_ENV:EDT_SEND +Database sym:sw:ListBox:TP_ENV_ENV:LB_DATABASE +Table sym:sw:ListBox:TP_ENV_ENV:LB_TABLE +Datenbasefield sym:sw:ListBox:TP_ENV_ENV:LB_DBFIELD +Apply sym:sw:ImageButton:TP_ENV_ENV:BTN_INSERT +Print sym:SW_HID_ENVELOP_PRINT +Insert sym:SW_HID_ENVELOP_INSERT +Back sym:SFX2_HID_TABDLG_RESET_BTN -*TabEventsControl HID_FM_PROPDLG_TAB_EVT -evtActionPerformed HID_EVT_ACTIONPERFORMED -evtFocusGained HID_EVT_FOCUSGAINED -evtFocusLost HID_EVT_FOCUSLOST -evtKeyTyped HID_EVT_KEYTYPED -evtKeyUp HID_EVT_KEYUP -evtMouseEntered HID_EVT_MOUSEENTERED -evtMouseDragged HID_EVT_MOUSEDRAGGED -evtMouseMoved HID_EVT_MOUSEMOVED -evtMousePressed HID_EVT_MOUSEPRESSED -evtMouseRelesased HID_EVT_MOUSERELEASED -evtMouseExited HID_EVT_MOUSEEXITED -ScriptSelectorButton UID_EVT_MACRODLG -PBActionPerformed UID_BRWEVT_ACTIONPERFORMED -PBFocusGained UID_BRWEVT_FOCUSGAINED -PBFocusLost UID_BRWEVT_FOCUSLOST -PBKeyTyped UID_BRWEVT_KEYTYPED -PBKeyUp UID_BRWEVT_KEYUP -PBMouseEntered UID_BRWEVT_MOUSEENTERED -PMBMouseDragged UID_BRWEVT_MOUSEDRAGGED -PBMouseMoved UID_BRWEVT_MOUSEMOVED -PBMousePressed UID_BRWEVT_MOUSEPRESSED -PBMouseRelesed UID_BRWEVT_MOUSERELEASED -PBMouseExited UID_BRWEVT_MOUSEEXITED +*TabEventsControl sym:EXTENSIONS_HID_FM_PROPDLG_TAB_EVT +evtActionPerformed sym:EXTENSIONS_HID_EVT_ACTIONPERFORMED +evtFocusGained sym:EXTENSIONS_HID_EVT_FOCUSGAINED +evtFocusLost sym:EXTENSIONS_HID_EVT_FOCUSLOST +evtKeyTyped sym:EXTENSIONS_HID_EVT_KEYTYPED +evtKeyUp sym:EXTENSIONS_HID_EVT_KEYUP +evtMouseEntered sym:EXTENSIONS_HID_EVT_MOUSEENTERED +evtMouseDragged sym:EXTENSIONS_HID_EVT_MOUSEDRAGGED +evtMouseMoved sym:EXTENSIONS_HID_EVT_MOUSEMOVED +evtMousePressed sym:EXTENSIONS_HID_EVT_MOUSEPRESSED +evtMouseRelesased sym:EXTENSIONS_HID_EVT_MOUSERELEASED +evtMouseExited sym:EXTENSIONS_HID_EVT_MOUSEEXITED +ScriptSelectorButton sym:EXTENSIONS_UID_EVT_MACRODLG +PBActionPerformed sym:EXTENSIONS_UID_BRWEVT_ACTIONPERFORMED +PBFocusGained sym:EXTENSIONS_UID_BRWEVT_FOCUSGAINED +PBFocusLost sym:EXTENSIONS_UID_BRWEVT_FOCUSLOST +PBKeyTyped sym:EXTENSIONS_UID_BRWEVT_KEYTYPED +PBKeyUp sym:EXTENSIONS_UID_BRWEVT_KEYUP +PBMouseEntered sym:EXTENSIONS_UID_BRWEVT_MOUSEENTERED +PMBMouseDragged sym:EXTENSIONS_UID_BRWEVT_MOUSEDRAGGED +PBMouseMoved sym:EXTENSIONS_UID_BRWEVT_MOUSEMOVED +PBMousePressed sym:EXTENSIONS_UID_BRWEVT_MOUSEPRESSED +PBMouseRelesed sym:EXTENSIONS_UID_BRWEVT_MOUSERELEASED +PBMouseExited sym:EXTENSIONS_UID_BRWEVT_MOUSEEXITED -*TabEventsForm HID_FM_PROPDLG_TAB_EVT +*TabEventsForm sym:EXTENSIONS_HID_FM_PROPDLG_TAB_EVT -*TabFieldLink extensions:TabPage:RID_PAGE_LCW_FIELDLINK -ValueTable extensions:ComboBox:RID_PAGE_LCW_FIELDLINK:CMB_VALUELISTFIELD -ListTable extensions:ComboBox:RID_PAGE_LCW_FIELDLINK:CMB_TABLEFIELD +*TabFieldLink sym:extensions:TabPage:RID_PAGE_LCW_FIELDLINK +ValueTable sym:extensions:ComboBox:RID_PAGE_LCW_FIELDLINK:CMB_VALUELISTFIELD +ListTable sym:extensions:ComboBox:RID_PAGE_LCW_FIELDLINK:CMB_TABLEFIELD -*TabFieldProperties HID_TAB_DESIGN_FIELDCONTROL -IntLength HID_TAB_ENT_LEN -DecimalPlaces HID_TAB_ENT_SCALE -EntryRequired HID_TAB_ENT_REQUIRED -TxtLength HID_TAB_ENT_TEXT_LEN -DefaultValue HID_TAB_ENT_DEFAULT -FormatExample HID_TAB_ENT_FORMAT_SAMPLE -BrowseBtm HID_TAB_ENT_FORMAT +*TabFieldProperties sym:DBACCESS_HID_TAB_DESIGN_FIELDCONTROL +IntLength sym:DBACCESS_HID_TAB_ENT_LEN +DecimalPlaces sym:DBACCESS_HID_TAB_ENT_SCALE +EntryRequired sym:DBACCESS_HID_TAB_ENT_REQUIRED +TxtLength sym:DBACCESS_HID_TAB_ENT_TEXT_LEN +DefaultValue sym:DBACCESS_HID_TAB_ENT_DEFAULT +FormatExample sym:DBACCESS_HID_TAB_ENT_FORMAT_SAMPLE +BrowseBtm sym:DBACCESS_HID_TAB_ENT_FORMAT -*TabFieldSelection extensions:TabPage:RID_PAGE_LCW_CONTENTSELECTION_FIELD -ExistingFields extensions:ListBox:RID_PAGE_LCW_CONTENTSELECTION_FIELD:LB_SELECTFIELD -DisplayField extensions:Edit:RID_PAGE_LCW_CONTENTSELECTION_FIELD:ET_DISPLAYEDFIELD +*TabFieldSelection sym:extensions:TabPage:RID_PAGE_LCW_CONTENTSELECTION_FIELD +ExistingFields sym:extensions:ListBox:RID_PAGE_LCW_CONTENTSELECTION_FIELD:LB_SELECTFIELD +DisplayField sym:extensions:Edit:RID_PAGE_LCW_CONTENTSELECTION_FIELD:ET_DISPLAYEDFIELD -*TabFirstStartOnlineUpdate HID_FIRSTSTART_UPDATE_CHECK -CheckForUpdates desktop:CheckBox:TP_UPDATE_CHECK:CB_UPDATE_CHECK +*TabFirstStartOnlineUpdate sym:DESKTOP_HID_FIRSTSTART_UPDATE_CHECK +CheckForUpdates sym:desktop:CheckBox:TP_UPDATE_CHECK:CB_UPDATE_CHECK -*TabFirstStartLicense HID_FIRSTSTART_LICENSE -LicenseText desktop:MultiLineEdit:TP_LICENSE:ML_LICENSE -ScrollDown desktop:PushButton:TP_LICENSE:PB_LICENSE_DOWN +*TabFirstStartLicense sym:DESKTOP_HID_FIRSTSTART_LICENSE +LicenseText sym:desktop:MultiLineEdit:TP_LICENSE:ML_LICENSE +ScrollDown sym:desktop:PushButton:TP_LICENSE:PB_LICENSE_DOWN -*TabFirstStartRegistration HID_FIRSTSTART_REGISTRATION -RegisterNow desktop:RadioButton:TP_REGISTRATION:RB_REGISTRATION_NOW -RegisterLater desktop:RadioButton:TP_REGISTRATION:RB_REGISTRATION_LATER -DoNotWantRegister desktop:RadioButton:TP_REGISTRATION:RB_REGISTRATION_NEVER +*TabFirstStartRegistration sym:DESKTOP_HID_FIRSTSTART_REGISTRATION +RegisterNow sym:desktop:RadioButton:TP_REGISTRATION:RB_REGISTRATION_NOW +RegisterLater sym:desktop:RadioButton:TP_REGISTRATION:RB_REGISTRATION_LATER +DoNotWantRegister sym:desktop:RadioButton:TP_REGISTRATION:RB_REGISTRATION_NEVER -*TabFirstStartUser HID_FIRSTSTART_USER -FirstName desktop:Edit:TP_USER:ED_USER_FIRST -LastName desktop:Edit:TP_USER:ED_USER_LAST -Initials desktop:Edit:TP_USER:ED_USER_INITIALS -FathersName desktop:Edit:TP_USER:ED_USER_FATHER +*TabFirstStartUser sym:DESKTOP_HID_FIRSTSTART_USER +FirstName sym:desktop:Edit:TP_USER:ED_USER_FIRST +LastName sym:desktop:Edit:TP_USER:ED_USER_LAST +Initials sym:desktop:Edit:TP_USER:ED_USER_INITIALS +FathersName sym:desktop:Edit:TP_USER:ED_USER_FATHER -*TabFirstStartWelcome HID_FIRSTSTART_WELCOME +*TabFirstStartWelcome sym:DESKTOP_HID_FIRSTSTART_WELCOME -*TabFont HID_SVXPAGE_CHAR_NAME -Font cui:ComboBox:RID_SVXPAGE_CHAR_NAME:LB_WEST_NAME_NOCJK -Style cui:ComboBox:RID_SVXPAGE_CHAR_NAME:LB_WEST_STYLE_NOCJK -Size cui:MetricBox:RID_SVXPAGE_CHAR_NAME:LB_WEST_SIZE_NOCJK -Language cui:ListBox:RID_SVXPAGE_CHAR_NAME:LB_WEST_LANG_NOCJK -FontWest cui:ComboBox:RID_SVXPAGE_CHAR_NAME:LB_WEST_NAME -StyleWest cui:ComboBox:RID_SVXPAGE_CHAR_NAME:LB_WEST_STYLE -SizeWest cui:MetricBox:RID_SVXPAGE_CHAR_NAME:LB_WEST_SIZE -LanguageWest cui:ListBox:RID_SVXPAGE_CHAR_NAME:LB_WEST_LANG -FontEast cui:ComboBox:RID_SVXPAGE_CHAR_NAME:LB_EAST_NAME -StyleEast cui:ComboBox:RID_SVXPAGE_CHAR_NAME:LB_EAST_STYLE -SizeEast cui:MetricBox:RID_SVXPAGE_CHAR_NAME:LB_EAST_SIZE -LanguageEast cui:ListBox:RID_SVXPAGE_CHAR_NAME:LB_EAST_LANG -FontCTL cui:ComboBox:RID_SVXPAGE_CHAR_NAME:LB_CTL_NAME -StyleCTL cui:ComboBox:RID_SVXPAGE_CHAR_NAME:LB_CTL_STYLE -SizeCTL cui:MetricBox:RID_SVXPAGE_CHAR_NAME:LB_CTL_SIZE -LanguageCTL cui:ListBox:RID_SVXPAGE_CHAR_NAME:LB_CTL_LANG -Color cui:ListBox:RID_SVXPAGE_CHAR_NAME:LB_COLOR2 +*TabFont sym:CUI_HID_SVXPAGE_CHAR_NAME +Font sym:cui:ComboBox:RID_SVXPAGE_CHAR_NAME:LB_WEST_NAME_NOCJK +Style sym:cui:ComboBox:RID_SVXPAGE_CHAR_NAME:LB_WEST_STYLE_NOCJK +Size sym:cui:MetricBox:RID_SVXPAGE_CHAR_NAME:LB_WEST_SIZE_NOCJK +Language sym:cui:ListBox:RID_SVXPAGE_CHAR_NAME:LB_WEST_LANG_NOCJK +FontWest sym:cui:ComboBox:RID_SVXPAGE_CHAR_NAME:LB_WEST_NAME +StyleWest sym:cui:ComboBox:RID_SVXPAGE_CHAR_NAME:LB_WEST_STYLE +SizeWest sym:cui:MetricBox:RID_SVXPAGE_CHAR_NAME:LB_WEST_SIZE +LanguageWest sym:cui:ListBox:RID_SVXPAGE_CHAR_NAME:LB_WEST_LANG +FontEast sym:cui:ComboBox:RID_SVXPAGE_CHAR_NAME:LB_EAST_NAME +StyleEast sym:cui:ComboBox:RID_SVXPAGE_CHAR_NAME:LB_EAST_STYLE +SizeEast sym:cui:MetricBox:RID_SVXPAGE_CHAR_NAME:LB_EAST_SIZE +LanguageEast sym:cui:ListBox:RID_SVXPAGE_CHAR_NAME:LB_EAST_LANG +FontCTL sym:cui:ComboBox:RID_SVXPAGE_CHAR_NAME:LB_CTL_NAME +StyleCTL sym:cui:ComboBox:RID_SVXPAGE_CHAR_NAME:LB_CTL_STYLE +SizeCTL sym:cui:MetricBox:RID_SVXPAGE_CHAR_NAME:LB_CTL_SIZE +LanguageCTL sym:cui:ListBox:RID_SVXPAGE_CHAR_NAME:LB_CTL_LANG +Color sym:cui:ListBox:RID_SVXPAGE_CHAR_NAME:LB_COLOR2 -*TabFontEffects HID_SVXPAGE_CHAR_EFFECTS -Underline cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_UNDERLINE -Color cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_UNDERLINE_COLOR -Effects cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_EFFECTS2 -StrikeThrough cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_STRIKEOUT -IndividualWords cui:CheckBox:RID_SVXPAGE_CHAR_EFFECTS:CB_INDIVIDUALWORDS -Emphasis cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_EMPHASIS -Position cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_POSITION -Outline cui:TriStateBox:RID_SVXPAGE_CHAR_EFFECTS:CB_OUTLINE -Overline cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_OVERLINE -OverlineColor cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_OVERLINE_COLOR -Shadow cui:TriStateBox:RID_SVXPAGE_CHAR_EFFECTS:CB_SHADOW -Blinking cui:TriStateBox:RID_SVXPAGE_CHAR_EFFECTS:CB_BLINKING -Relief cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_RELIEF -FontColor cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_FONTCOLOR -Hidden cui:TriStateBox:RID_SVXPAGE_CHAR_EFFECTS:CB_CHARHIDDEN +*TabFontEffects sym:CUI_HID_SVXPAGE_CHAR_EFFECTS +Underline sym:cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_UNDERLINE +Color sym:cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_UNDERLINE_COLOR +Effects sym:cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_EFFECTS2 +StrikeThrough sym:cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_STRIKEOUT +IndividualWords sym:cui:CheckBox:RID_SVXPAGE_CHAR_EFFECTS:CB_INDIVIDUALWORDS +Emphasis sym:cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_EMPHASIS +Position sym:cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_POSITION +Outline sym:cui:TriStateBox:RID_SVXPAGE_CHAR_EFFECTS:CB_OUTLINE +Overline sym:cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_OVERLINE +OverlineColor sym:cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_OVERLINE_COLOR +Shadow sym:cui:TriStateBox:RID_SVXPAGE_CHAR_EFFECTS:CB_SHADOW +Blinking sym:cui:TriStateBox:RID_SVXPAGE_CHAR_EFFECTS:CB_BLINKING +Relief sym:cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_RELIEF +FontColor sym:cui:ListBox:RID_SVXPAGE_CHAR_EFFECTS:LB_FONTCOLOR +Hidden sym:cui:TriStateBox:RID_SVXPAGE_CHAR_EFFECTS:CB_CHARHIDDEN -*TabFontPosition HID_SVXPAGE_CHAR_POSITION -SuperScript cui:RadioButton:RID_SVXPAGE_CHAR_POSITION:RB_HIGHPOS -Normal cui:RadioButton:RID_SVXPAGE_CHAR_POSITION:RB_NORMALPOS -Subscript cui:RadioButton:RID_SVXPAGE_CHAR_POSITION:RB_LOWPOS -RaiseLower cui:MetricField:RID_SVXPAGE_CHAR_POSITION:ED_HIGHLOW -RelativeFontSize cui:MetricField:RID_SVXPAGE_CHAR_POSITION:ED_FONTSIZE -Automatic cui:CheckBox:RID_SVXPAGE_CHAR_POSITION:CB_HIGHLOW -n0Degree cui:RadioButton:RID_SVXPAGE_CHAR_POSITION:RB_0_DEG -n90Degree cui:RadioButton:RID_SVXPAGE_CHAR_POSITION:RB_90_DEG -n270Degree cui:RadioButton:RID_SVXPAGE_CHAR_POSITION:RB_270_DEG -FitToLine cui:CheckBox:RID_SVXPAGE_CHAR_POSITION:CB_FIT_TO_LINE -ScaleWith cui:MetricField:RID_SVXPAGE_CHAR_POSITION:MF_SCALE_WIDTH -Spacing cui:ListBox:RID_SVXPAGE_CHAR_POSITION:LB_KERNING2 -SpacingBy cui:MetricField:RID_SVXPAGE_CHAR_POSITION:ED_KERNING2 -PairKerning cui:CheckBox:RID_SVXPAGE_CHAR_POSITION:CB_PAIRKERNING -Super cui:RadioButton:RID_SVXPAGE_CHAR_POSITION:RB_HIGHPOS +*TabFontPosition sym:CUI_HID_SVXPAGE_CHAR_POSITION +SuperScript sym:cui:RadioButton:RID_SVXPAGE_CHAR_POSITION:RB_HIGHPOS +Normal sym:cui:RadioButton:RID_SVXPAGE_CHAR_POSITION:RB_NORMALPOS +Subscript sym:cui:RadioButton:RID_SVXPAGE_CHAR_POSITION:RB_LOWPOS +RaiseLower sym:cui:MetricField:RID_SVXPAGE_CHAR_POSITION:ED_HIGHLOW +RelativeFontSize sym:cui:MetricField:RID_SVXPAGE_CHAR_POSITION:ED_FONTSIZE +Automatic sym:cui:CheckBox:RID_SVXPAGE_CHAR_POSITION:CB_HIGHLOW +n0Degree sym:cui:RadioButton:RID_SVXPAGE_CHAR_POSITION:RB_0_DEG +n90Degree sym:cui:RadioButton:RID_SVXPAGE_CHAR_POSITION:RB_90_DEG +n270Degree sym:cui:RadioButton:RID_SVXPAGE_CHAR_POSITION:RB_270_DEG +FitToLine sym:cui:CheckBox:RID_SVXPAGE_CHAR_POSITION:CB_FIT_TO_LINE +ScaleWith sym:cui:MetricField:RID_SVXPAGE_CHAR_POSITION:MF_SCALE_WIDTH +Spacing sym:cui:ListBox:RID_SVXPAGE_CHAR_POSITION:LB_KERNING2 +SpacingBy sym:cui:MetricField:RID_SVXPAGE_CHAR_POSITION:ED_KERNING2 +PairKerning sym:cui:CheckBox:RID_SVXPAGE_CHAR_POSITION:CB_PAIRKERNING +Super sym:cui:RadioButton:RID_SVXPAGE_CHAR_POSITION:RB_HIGHPOS -*TabFormat3dViewGeometry SID_3D_VIEW - AxisRotationXaxis chart2:MetricField:TP_3D_SCENEGEOMETRY:MTR_FLD_X_ROTATION - AxisRotationYaxis chart2:MetricField:TP_3D_SCENEGEOMETRY:MTR_FLD_Y_ROTATION - AxisRotationZaxis chart2:MetricField:TP_3D_SCENEGEOMETRY:MTR_FLD_Z_ROTATION - Perspective chart2:CheckBox:TP_3D_SCENEGEOMETRY:CBX_PERSPECTIVE +*TabFormat3dViewGeometry sym:CHART2_HID_3D_VIEW + AxisRotationXaxis sym:chart2:MetricField:TP_3D_SCENEGEOMETRY:MTR_FLD_X_ROTATION + AxisRotationYaxis sym:chart2:MetricField:TP_3D_SCENEGEOMETRY:MTR_FLD_Y_ROTATION + AxisRotationZaxis sym:chart2:MetricField:TP_3D_SCENEGEOMETRY:MTR_FLD_Z_ROTATION + Perspective sym:chart2:CheckBox:TP_3D_SCENEGEOMETRY:CBX_PERSPECTIVE -*TabFormat3dViewAppearance chart2:TabPage:TP_3D_SCENEAPPEARANCE - Scheme chart2:ListBox:TP_3D_SCENEAPPEARANCE:LB_SCHEME - RoundedEdges chart2:CheckBox:TP_3D_SCENEAPPEARANCE:CB_ROUNDEDEDGE - Shading chart2:CheckBox:TP_3D_SCENEAPPEARANCE:CB_SHADING - ObjectBorders chart2:CheckBox:TP_3D_SCENEAPPEARANCE:CB_OBJECTLINES +*TabFormat3dViewAppearance sym:chart2:TabPage:TP_3D_SCENEAPPEARANCE + Scheme sym:chart2:ListBox:TP_3D_SCENEAPPEARANCE:LB_SCHEME + RoundedEdges sym:chart2:CheckBox:TP_3D_SCENEAPPEARANCE:CB_ROUNDEDEDGE + Shading sym:chart2:CheckBox:TP_3D_SCENEAPPEARANCE:CB_SHADING + ObjectBorders sym:chart2:CheckBox:TP_3D_SCENEAPPEARANCE:CB_OBJECTLINES -*TabFormat3dViewIllumination chart2:TabPage:TP_3D_SCENEILLUMINATION - LightSource1 chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_LIGHT_1 - LightSource2 chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_LIGHT_2 - LightSource3 chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_LIGHT_3 - LightSource4 chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_LIGHT_4 - LightSource5 chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_LIGHT_5 - LightSource6 chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_LIGHT_6 - LightSource7 chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_LIGHT_7 - LightSource8 chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_LIGHT_8 - Color chart2:ListBox:TP_3D_SCENEILLUMINATION:LB_LIGHTSOURCE - ColorSelect chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_LIGHTSOURCE_COLOR - AmbientLight chart2:ListBox:TP_3D_SCENEILLUMINATION:LB_AMBIENTLIGHT - AmbientLightSelect chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_AMBIENT_COLOR +*TabFormat3dViewIllumination sym:chart2:TabPage:TP_3D_SCENEILLUMINATION + LightSource1 sym:chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_LIGHT_1 + LightSource2 sym:chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_LIGHT_2 + LightSource3 sym:chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_LIGHT_3 + LightSource4 sym:chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_LIGHT_4 + LightSource5 sym:chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_LIGHT_5 + LightSource6 sym:chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_LIGHT_6 + LightSource7 sym:chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_LIGHT_7 + LightSource8 sym:chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_LIGHT_8 + Color sym:chart2:ListBox:TP_3D_SCENEILLUMINATION:LB_LIGHTSOURCE + ColorSelect sym:chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_LIGHTSOURCE_COLOR + AmbientLight sym:chart2:ListBox:TP_3D_SCENEILLUMINATION:LB_AMBIENTLIGHT + AmbientLightSelect sym:chart2:ImageButton:TP_3D_SCENEILLUMINATION:BTN_AMBIENT_COLOR -*TabFormatChartTitleAlignment HID_SCH_ALIGNMENT - AngleKnob HID_SCH_ALIGNMENT_CTR_DIAL - AngleText HID_SCH_ALIGNMENT_DEGREES - VerticallyStacked HID_SCH_ALIGNMENT_STACKED - TextDirection HID_SCH_TEXTDIRECTION_TITLE - TextDirection2 HID_SCH_TEXTDIRECTION_EQUATION +*TabFormatChartTitleAlignment sym:CHART2_HID_SCH_ALIGNMENT + AngleKnob sym:CHART2_HID_SCH_ALIGNMENT_CTR_DIAL + AngleText sym:CHART2_HID_SCH_ALIGNMENT_DEGREES + VerticallyStacked sym:CHART2_HID_SCH_ALIGNMENT_STACKED + TextDirection sym:CHART2_HID_SCH_TEXTDIRECTION_TITLE + TextDirection2 sym:CHART2_HID_SCH_TEXTDIRECTION_EQUATION -*TabFormatChartLine HID_LINE_LINE - Style cui:ListBox:RID_SVXPAGE_LINE:LB_LINE_STYLE - Color cui:ListBox:RID_SVXPAGE_LINE:LB_COLOR - Width cui:MetricField:RID_SVXPAGE_LINE:MTR_FLD_LINE_WIDTH - Transparency cui:MetricField:RID_SVXPAGE_LINE:MTR_LINE_TRANSPARENT - StyleLeft cui:ListBox:RID_SVXPAGE_LINE:LB_START_STYLE - WidthLeft cui:MetricField:RID_SVXPAGE_LINE:MTR_FLD_START_WIDTH - CenterLeft cui:TriStateBox:RID_SVXPAGE_LINE:TSB_CENTER_START - StyleRight cui:ListBox:RID_SVXPAGE_LINE:LB_END_STYLE - WidthRight cui:MetricField:RID_SVXPAGE_LINE:MTR_FLD_END_WIDTH - CenterRight cui:TriStateBox:RID_SVXPAGE_LINE:TSB_CENTER_END - SynchroniteEnds cui:CheckBox:RID_SVXPAGE_LINE:CBX_SYNCHRONIZE - CornerStyle cui:ListBox:RID_SVXPAGE_LINE:LB_EDGE_STYLE - IconSelect cui:MenuButton:RID_SVXPAGE_LINE:MB_SYMBOL_BITMAP - IconWidth cui:MetricField:RID_SVXPAGE_LINE:MF_SYMBOL_WIDTH - IconHeigth cui:MetricField:RID_SVXPAGE_LINE:MF_SYMBOL_HEIGHT - KeepRatio cui:CheckBox:RID_SVXPAGE_LINE:CB_SYMBOL_RATIO +*TabFormatChartLine sym:CUI_HID_LINE_LINE + Style sym:cui:ListBox:RID_SVXPAGE_LINE:LB_LINE_STYLE + Color sym:cui:ListBox:RID_SVXPAGE_LINE:LB_COLOR + Width sym:cui:MetricField:RID_SVXPAGE_LINE:MTR_FLD_LINE_WIDTH + Transparency sym:cui:MetricField:RID_SVXPAGE_LINE:MTR_LINE_TRANSPARENT + StyleLeft sym:cui:ListBox:RID_SVXPAGE_LINE:LB_START_STYLE + WidthLeft sym:cui:MetricField:RID_SVXPAGE_LINE:MTR_FLD_START_WIDTH + CenterLeft sym:cui:TriStateBox:RID_SVXPAGE_LINE:TSB_CENTER_START + StyleRight sym:cui:ListBox:RID_SVXPAGE_LINE:LB_END_STYLE + WidthRight sym:cui:MetricField:RID_SVXPAGE_LINE:MTR_FLD_END_WIDTH + CenterRight sym:cui:TriStateBox:RID_SVXPAGE_LINE:TSB_CENTER_END + SynchroniteEnds sym:cui:CheckBox:RID_SVXPAGE_LINE:CBX_SYNCHRONIZE + CornerStyle sym:cui:ListBox:RID_SVXPAGE_LINE:LB_EDGE_STYLE + IconSelect sym:cui:MenuButton:RID_SVXPAGE_LINE:MB_SYMBOL_BITMAP + IconWidth sym:cui:MetricField:RID_SVXPAGE_LINE:MF_SYMBOL_WIDTH + IconHeigth sym:cui:MetricField:RID_SVXPAGE_LINE:MF_SYMBOL_HEIGHT + KeepRatio sym:cui:CheckBox:RID_SVXPAGE_LINE:CB_SYMBOL_RATIO +TabFormatChartBorders TabFormatChartLine -*TabFormatEnvelope HID_ENV_FMT -AddresseeFromLeft sw:MetricField:TP_ENV_FMT:FLD_ADDR_LEFT -AddresseeFromRight sw:MetricField:TP_ENV_FMT:FLD_ADDR_TOP -AddresseeEdit sw:MenuButton:TP_ENV_FMT:BTN_ADDR_EDIT -SenderFromLeft sw:MetricField:TP_ENV_FMT:FLD_SEND_LEFT -SenderFromRight sw:MetricField:TP_ENV_FMT:FLD_SEND_TOP -SenderEdit sw:MenuButton:TP_ENV_FMT:BTN_SEND_EDIT -SizeFormat sw:ListBox:TP_ENV_FMT:BOX_SIZE_FORMAT -SizeWidth sw:MetricField:TP_ENV_FMT:FLD_SIZE_WIDTH -SizeHeight sw:MetricField:TP_ENV_FMT:FLD_SIZE_HEIGHT +*TabFormatEnvelope sym:SW_HID_ENV_FMT +AddresseeFromLeft sym:sw:MetricField:TP_ENV_FMT:FLD_ADDR_LEFT +AddresseeFromRight sym:sw:MetricField:TP_ENV_FMT:FLD_ADDR_TOP +AddresseeEdit sym:sw:MenuButton:TP_ENV_FMT:BTN_ADDR_EDIT +SenderFromLeft sym:sw:MetricField:TP_ENV_FMT:FLD_SEND_LEFT +SenderFromRight sym:sw:MetricField:TP_ENV_FMT:FLD_SEND_TOP +SenderEdit sym:sw:MenuButton:TP_ENV_FMT:BTN_SEND_EDIT +SizeFormat sym:sw:ListBox:TP_ENV_FMT:BOX_SIZE_FORMAT +SizeWidth sym:sw:MetricField:TP_ENV_FMT:FLD_SIZE_WIDTH +SizeHeight sym:sw:MetricField:TP_ENV_FMT:FLD_SIZE_HEIGHT -*TabGeneral HID_DSADMIN_PAGE_GENERAL -DatabaseType HID_DSADMIN_DSTYPE -StatusMessage HID_DSADMIN_SPECIAL_MESSAGE +*TabGeneral sym:DBACCESS_HID_DSADMIN_PAGE_GENERAL +DatabaseType sym:DBACCESS_HID_DSADMIN_DSTYPE +StatusMessage sym:DBACCESS_HID_DSADMIN_SPECIAL_MESSAGE -*TabGeneralForm HID_FM_PROPDLG_TAB_GENERAL -Encoding HID_PROP_SUBMIT_ENCODING -Frame HID_PROP_TARGET_FRAME -SubmitMethod HID_PROP_SUBMIT_METHOD -URL HID_PROP_TARGET_URL +*TabGeneralForm sym:EXTENSIONS_HID_FM_PROPDLG_TAB_GENERAL +Encoding sym:EXTENSIONS_HID_PROP_SUBMIT_ENCODING +Frame sym:EXTENSIONS_HID_PROP_TARGET_FRAME +SubmitMethod sym:EXTENSIONS_HID_PROP_SUBMIT_METHOD +URL sym:EXTENSIONS_HID_PROP_TARGET_URL -*TabGeneralControl HID_FM_PROPDLG_TAB_GENERAL -Accuracy HID_PROP_DECIMAL_ACCURACY -Align HID_PROP_ALIGN -AutoComplete HID_PROP_AUTOCOMPLETE -Background HID_PROP_BACKGROUNDCOLOR -BackgroundButton UID_PROP_DLG_BACKGROUNDCOLOR -BlockIncrement HID_PROP_BLOCKINCREMENT -Border HID_PROP_BORDER -BorderColor HID_PROP_BORDERCOLOR -ButtonType HID_PROP_BUTTONTYPE -CharacterSet HID_PROP_FONT -CharacterSetButton UID_PROP_DLG_FONT_TYPE -CurrencySymbol HID_PROP_CURRENCYSYMBOL -CurrSymPosition HID_PROP_CURRSYM_POSITION -DateField HID_PROP_DATE -DateFormat HID_PROP_DATEFORMAT -DateMax HID_PROP_DATEMAX -DateMin HID_PROP_DATEMIN -DefaultButton HID_PROP_DEFAULT_BUTTON -DefaultSelection HID_PROP_SELECTEDITEMS -DefaultSelection2 HID_PROP_DEFAULT_SELECT_SEQ -DefaultSelectionButton UID_PROP_DLG_SELECTION -DefaultState HID_PROP_DEFAULT_STATE -DefaultSpinValue HID_PROP_DEFAULT_SPINVALUE -DefaultValue HID_PROP_DEFAULTVALUE -Delay HID_PROP_REPEAT_DELAY -DropDown HID_PROP_DROPDOWN -EditMask HID_PROP_EDITMASK -EffectiveMax HID_PROP_EFFECTIVEMAX -EffectiveMin HID_PROP_EFFECTIVEMIN -Enabled HID_PROP_ENABLED -FillColor HID_PROP_FILLCOLOR -FillColorButton UID_PROP_DLG_FILLCOLOR -FilteringSorting HID_PROP_SHOW_FILTERSORT -FormatKey HID_PROP_FORMATKEY -FormatkeyButton UID_PROP_DLG_NUMBER_FORMAT -Frame HID_PROP_TARGET_FRAME -Graphics HID_PROP_IMAGE_URL -GraphicsAlignment HID_PROP_IMAGEPOSITION -GraphicsButton UID_PROP_DLG_IMAGE_URL -Height HID_PROP_HEIGHT -Help HID_PROP_HELPTEXT -HelpText HID_PROP_HELPTEXT -HelpURL HID_PROP_HELPURL -HiddenValue HID_PROP_HIDDEN_VALUE -HideSelection HID_PROP_HIDEINACTIVESELECTION -HorizontalScroll HID_PROP_HSCROLL -IconSize HID_PROP_ICONSIZE -Information HID_PROP_TAG -Label HID_PROP_LABEL -LabelField HID_PROP_CONTROLLABEL -LabelFieldButton UID_PROP_DLG_CONTROLLABEL -LineCount HID_PROP_LINECOUNT -LineIncrement HID_PROP_LINEINCREMENT -ListEntries HID_PROP_STRINGITEMLIST -LiteralMask HID_PROP_LITERALMASK -MaxTextLen HID_PROP_MAXTEXTLEN -MultiLine HID_PROP_MULTILINE -Multiselection HID_PROP_MULTISELECTION -NameText HID_PROP_NAME -Navigation HID_PROP_SHOW_NAVIGATION -NavigationBar HID_PROP_NAVIGATIONBAR -Order HID_PROP_TABINDEX -Orientation HID_PROP_ORIENTATION -Password HID_PROP_ECHO_CHAR -PosX HID_PROP_POSITIONX -PosY HID_PROP_POSITIONY -Printable HID_PROP_PRINTABLE -ProgressValue HID_PROP_PROGRESSVALUE -ProgressValueMax HID_PROP_PROGRESSVALUE_MAX -ProgressValueMin HID_PROP_PROGRESSVALUE_MIN -PushButtonType HID_PROP_PUSHBUTTONTYPE -PageStep HID_PROP_STEP -Positioning HID_PROP_SHOW_POSITION -Readonly HID_PROP_READONLY -RecordActions HID_PROP_SHOW_RECORDACTIONS -RecordMarker HID_PROP_RECORDMARKER -Repeat HID_PROP_REPEAT -RowHeight HID_PROP_ROWHEIGHT -Scale HID_PROP_SCALEIMAGE -Scrollbars HID_PROP_SHOW_SCROLLBARS -ScrollValue HID_PROP_SCROLLVALUE -ScrollValueMin HID_PROP_SCROLLVALUE_MIN -ScrollValueMax HID_PROP_SCROLLVALUE_MAX -ScrollValueDefault HID_PROP_DEFAULT_SCROLLVALUE -Spin HID_PROP_SPIN -SpinIncrement HID_PROP_SPININCREMENT -SpinValueMin HID_PROP_SPINVALUE_MIN -SpinValueMax HID_PROP_SPINVALUE_MAX -Status HID_PROP_STATE -Submission HID_PROP_SUBMISSION_ID -TakeFocus HID_PROP_FOCUSONCLICK -ToggleProp HID_PROP_TOGGLE +*TabGeneralControl sym:EXTENSIONS_HID_FM_PROPDLG_TAB_GENERAL +Accuracy sym:EXTENSIONS_HID_PROP_DECIMAL_ACCURACY +Align sym:EXTENSIONS_HID_PROP_ALIGN +AutoComplete sym:EXTENSIONS_HID_PROP_AUTOCOMPLETE +Background sym:EXTENSIONS_HID_PROP_BACKGROUNDCOLOR +BackgroundButton sym:EXTENSIONS_UID_PROP_DLG_BACKGROUNDCOLOR +BlockIncrement sym:EXTENSIONS_HID_PROP_BLOCKINCREMENT +Border sym:EXTENSIONS_HID_PROP_BORDER +BorderColor sym:EXTENSIONS_HID_PROP_BORDERCOLOR +ButtonType sym:EXTENSIONS_HID_PROP_BUTTONTYPE +CharacterSet sym:EXTENSIONS_HID_PROP_FONT +CharacterSetButton sym:EXTENSIONS_UID_PROP_DLG_FONT_TYPE +CurrencySymbol sym:EXTENSIONS_HID_PROP_CURRENCYSYMBOL +CurrSymPosition sym:EXTENSIONS_HID_PROP_CURRSYM_POSITION +DateField sym:EXTENSIONS_HID_PROP_DATE +DateFormat sym:EXTENSIONS_HID_PROP_DATEFORMAT +DateMax sym:EXTENSIONS_HID_PROP_DATEMAX +DateMin sym:EXTENSIONS_HID_PROP_DATEMIN +DefaultButton sym:EXTENSIONS_HID_PROP_DEFAULT_BUTTON +DefaultSelection sym:EXTENSIONS_HID_PROP_SELECTEDITEMS +DefaultSelection2 sym:EXTENSIONS_HID_PROP_DEFAULT_SELECT_SEQ +DefaultSelectionButton sym:EXTENSIONS_UID_PROP_DLG_SELECTION +DefaultState sym:EXTENSIONS_HID_PROP_DEFAULT_STATE +DefaultSpinValue sym:EXTENSIONS_HID_PROP_DEFAULT_SPINVALUE +DefaultValue sym:EXTENSIONS_HID_PROP_DEFAULTVALUE +Delay sym:EXTENSIONS_HID_PROP_REPEAT_DELAY +DropDown sym:EXTENSIONS_HID_PROP_DROPDOWN +EditMask sym:EXTENSIONS_HID_PROP_EDITMASK +EffectiveMax sym:EXTENSIONS_HID_PROP_EFFECTIVEMAX +EffectiveMin sym:EXTENSIONS_HID_PROP_EFFECTIVEMIN +Enabled sym:EXTENSIONS_HID_PROP_ENABLED +FillColor sym:EXTENSIONS_HID_PROP_FILLCOLOR +FillColorButton sym:EXTENSIONS_UID_PROP_DLG_FILLCOLOR +FilteringSorting sym:EXTENSIONS_HID_PROP_SHOW_FILTERSORT +FormatKey sym:EXTENSIONS_HID_PROP_FORMATKEY +FormatkeyButton sym:EXTENSIONS_UID_PROP_DLG_NUMBER_FORMAT +Frame sym:EXTENSIONS_HID_PROP_TARGET_FRAME +Graphics sym:EXTENSIONS_HID_PROP_IMAGE_URL +GraphicsAlignment sym:EXTENSIONS_HID_PROP_IMAGEPOSITION +GraphicsButton sym:EXTENSIONS_UID_PROP_DLG_IMAGE_URL +Height sym:EXTENSIONS_HID_PROP_HEIGHT +Help sym:EXTENSIONS_HID_PROP_HELPTEXT +HelpText sym:EXTENSIONS_HID_PROP_HELPTEXT +HelpURL sym:EXTENSIONS_HID_PROP_HELPURL +HiddenValue sym:EXTENSIONS_HID_PROP_HIDDEN_VALUE +HideSelection sym:EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION +HorizontalScroll sym:EXTENSIONS_HID_PROP_HSCROLL +IconSize sym:EXTENSIONS_HID_PROP_ICONSIZE +Information sym:EXTENSIONS_HID_PROP_TAG +Label sym:EXTENSIONS_HID_PROP_LABEL +LabelField sym:EXTENSIONS_HID_PROP_CONTROLLABEL +LabelFieldButton sym:EXTENSIONS_UID_PROP_DLG_CONTROLLABEL +LineCount sym:EXTENSIONS_HID_PROP_LINECOUNT +LineIncrement sym:EXTENSIONS_HID_PROP_LINEINCREMENT +ListEntries sym:EXTENSIONS_HID_PROP_STRINGITEMLIST +LiteralMask sym:EXTENSIONS_HID_PROP_LITERALMASK +MaxTextLen sym:EXTENSIONS_HID_PROP_MAXTEXTLEN +MultiLine sym:EXTENSIONS_HID_PROP_MULTILINE +Multiselection sym:EXTENSIONS_HID_PROP_MULTISELECTION +NameText sym:EXTENSIONS_HID_PROP_NAME +Navigation sym:EXTENSIONS_HID_PROP_SHOW_NAVIGATION +NavigationBar sym:EXTENSIONS_HID_PROP_NAVIGATIONBAR +Order sym:EXTENSIONS_HID_PROP_TABINDEX +Orientation sym:EXTENSIONS_HID_PROP_ORIENTATION +Password sym:EXTENSIONS_HID_PROP_ECHO_CHAR +PosX sym:EXTENSIONS_HID_PROP_POSITIONX +PosY sym:EXTENSIONS_HID_PROP_POSITIONY +Printable sym:EXTENSIONS_HID_PROP_PRINTABLE +ProgressValue sym:EXTENSIONS_HID_PROP_PROGRESSVALUE +ProgressValueMax sym:EXTENSIONS_HID_PROP_PROGRESSVALUE_MAX +ProgressValueMin sym:EXTENSIONS_HID_PROP_PROGRESSVALUE_MIN +PushButtonType sym:EXTENSIONS_HID_PROP_PUSHBUTTONTYPE +PageStep sym:EXTENSIONS_HID_PROP_STEP +Positioning sym:EXTENSIONS_HID_PROP_SHOW_POSITION +Readonly sym:EXTENSIONS_HID_PROP_READONLY +RecordActions sym:EXTENSIONS_HID_PROP_SHOW_RECORDACTIONS +RecordMarker sym:EXTENSIONS_HID_PROP_RECORDMARKER +Repeat sym:EXTENSIONS_HID_PROP_REPEAT +RowHeight sym:EXTENSIONS_HID_PROP_ROWHEIGHT +Scale sym:EXTENSIONS_HID_PROP_SCALEIMAGE +Scrollbars sym:EXTENSIONS_HID_PROP_SHOW_SCROLLBARS +ScrollValue sym:EXTENSIONS_HID_PROP_SCROLLVALUE +ScrollValueMin sym:EXTENSIONS_HID_PROP_SCROLLVALUE_MIN +ScrollValueMax sym:EXTENSIONS_HID_PROP_SCROLLVALUE_MAX +ScrollValueDefault sym:EXTENSIONS_HID_PROP_DEFAULT_SCROLLVALUE +Spin sym:EXTENSIONS_HID_PROP_SPIN +SpinIncrement sym:EXTENSIONS_HID_PROP_SPININCREMENT +SpinValueMin sym:EXTENSIONS_HID_PROP_SPINVALUE_MIN +SpinValueMax sym:EXTENSIONS_HID_PROP_SPINVALUE_MAX +Status sym:EXTENSIONS_HID_PROP_STATE +Submission sym:EXTENSIONS_HID_PROP_SUBMISSION_ID +TakeFocus sym:EXTENSIONS_HID_PROP_FOCUSONCLICK +ToggleProp sym:EXTENSIONS_HID_PROP_TOGGLE -StrictFormat HID_PROP_STRICTFORMAT -SymbolColor HID_PROP_SYMBOLCOLOR -SymbolColorButton UID_PROP_DLG_SYMBOLCOLOR -TabOrderButton UID_PROP_DLG_TABINDEX -TabStop HID_PROP_TABSTOP -TextText HID_PROP_TEXT -TextType HID_PROP_TEXTTYPE -ThousandSeperator HID_PROP_SHOWTHOUSANDSEP -TimeField HID_PROP_TIME -TimeFormat HID_PROP_TIMEFORMAT -TimeMax HID_PROP_TIMEMAX -TimeMin HID_PROP_TIMEMIN -TriState HID_PROP_TRISTATE -URL HID_PROP_TARGET_URL -URLButton UID_PROP_DLG_ATTR_TARGET_URL -Value HID_PROP_VALUE -ValueMax HID_PROP_VALUEMAX -ValueMin HID_PROP_VALUEMIN -ValueStep HID_PROP_VALUESTEP -VerticalScroll HID_PROP_VSCROLL -VisibleSize HID_PROP_VISIBLESIZE -Width HID_PROP_WIDTH -WordBreak HID_PROP_WORDBREAK +StrictFormat sym:EXTENSIONS_HID_PROP_STRICTFORMAT +SymbolColor sym:EXTENSIONS_HID_PROP_SYMBOLCOLOR +SymbolColorButton sym:EXTENSIONS_UID_PROP_DLG_SYMBOLCOLOR +TabOrderButton sym:EXTENSIONS_UID_PROP_DLG_TABINDEX +TabStop sym:EXTENSIONS_HID_PROP_TABSTOP +TextText sym:EXTENSIONS_HID_PROP_TEXT +TextType sym:EXTENSIONS_HID_PROP_TEXTTYPE +ThousandSeperator sym:EXTENSIONS_HID_PROP_SHOWTHOUSANDSEP +TimeField sym:EXTENSIONS_HID_PROP_TIME +TimeFormat sym:EXTENSIONS_HID_PROP_TIMEFORMAT +TimeMax sym:EXTENSIONS_HID_PROP_TIMEMAX +TimeMin sym:EXTENSIONS_HID_PROP_TIMEMIN +TriState sym:EXTENSIONS_HID_PROP_TRISTATE +URL sym:EXTENSIONS_HID_PROP_TARGET_URL +URLButton sym:EXTENSIONS_UID_PROP_DLG_ATTR_TARGET_URL +Value sym:EXTENSIONS_HID_PROP_VALUE +ValueMax sym:EXTENSIONS_HID_PROP_VALUEMAX +ValueMin sym:EXTENSIONS_HID_PROP_VALUEMIN +ValueStep sym:EXTENSIONS_HID_PROP_VALUESTEP +VerticalScroll sym:EXTENSIONS_HID_PROP_VSCROLL +VisibleSize sym:EXTENSIONS_HID_PROP_VISIBLESIZE +Width sym:EXTENSIONS_HID_PROP_WIDTH +WordBreak sym:EXTENSIONS_HID_PROP_WORDBREAK -*TabGrid HID_TEXTGRID_PAGE -NoGrid sw:RadioButton:TP_TEXTGRID_PAGE:RB_NOGRID -LinesGrid sw:RadioButton:TP_TEXTGRID_PAGE:RB_LINESGRID -CharsGrid sw:RadioButton:TP_TEXTGRID_PAGE:RB_CHARSGRID -LinesPerPage sw:NumericField:TP_TEXTGRID_PAGE:NF_LINESPERPAGE -TextSize sw:MetricField:TP_TEXTGRID_PAGE:MF_TEXTSIZE -CharsPerLine sw:NumericField:TP_TEXTGRID_PAGE:NF_CHARSPERLINE -RubySize sw:MetricField:TP_TEXTGRID_PAGE:MF_RUBYSIZE -RubyBelow sw:CheckBox:TP_TEXTGRID_PAGE:CB_RUBYBELOW -Display sw:CheckBox:TP_TEXTGRID_PAGE:CB_DISPLAY -PrintGrid sw:CheckBox:TP_TEXTGRID_PAGE:CB_PRINT -Color sw:ListBox:TP_TEXTGRID_PAGE:LB_COLOR +*TabGrid sym:SW_HID_TEXTGRID_PAGE +NoGrid sym:sw:RadioButton:TP_TEXTGRID_PAGE:RB_NOGRID +LinesGrid sym:sw:RadioButton:TP_TEXTGRID_PAGE:RB_LINESGRID +CharsGrid sym:sw:RadioButton:TP_TEXTGRID_PAGE:RB_CHARSGRID +LinesPerPage sym:sw:NumericField:TP_TEXTGRID_PAGE:NF_LINESPERPAGE +TextSize sym:sw:MetricField:TP_TEXTGRID_PAGE:MF_TEXTSIZE +CharsPerLine sym:sw:NumericField:TP_TEXTGRID_PAGE:NF_CHARSPERLINE +RubySize sym:sw:MetricField:TP_TEXTGRID_PAGE:MF_RUBYSIZE +RubyBelow sym:sw:CheckBox:TP_TEXTGRID_PAGE:CB_RUBYBELOW +Display sym:sw:CheckBox:TP_TEXTGRID_PAGE:CB_DISPLAY +PrintGrid sym:sw:CheckBox:TP_TEXTGRID_PAGE:CB_PRINT +Color sym:sw:ListBox:TP_TEXTGRID_PAGE:LB_COLOR -*TabGroupBoxData extensions:TabPage:RID_PAGE_GROUPRADIOSELECTION -Address SID_OPENURL -Names extensions:Edit:RID_PAGE_GROUPRADIOSELECTION:ET_RADIOLABELS -AddTo extensions:PushButton:RID_PAGE_GROUPRADIOSELECTION:PB_MOVETORIGHT -RemoveFrom extensions:PushButton:RID_PAGE_GROUPRADIOSELECTION:PB_MOVETOLEFT -OptionFields extensions:ListBox:RID_PAGE_GROUPRADIOSELECTION:LB_RADIOBUTTONS +*TabGroupBoxData sym:extensions:TabPage:RID_PAGE_GROUPRADIOSELECTION +Address .uno:OpenUrl +Names sym:extensions:Edit:RID_PAGE_GROUPRADIOSELECTION:ET_RADIOLABELS +AddTo sym:extensions:PushButton:RID_PAGE_GROUPRADIOSELECTION:PB_MOVETORIGHT +RemoveFrom sym:extensions:PushButton:RID_PAGE_GROUPRADIOSELECTION:PB_MOVETOLEFT +OptionFields sym:extensions:ListBox:RID_PAGE_GROUPRADIOSELECTION:LB_RADIOBUTTONS diff --git a/testautomation/global/win/etab_h_o.win b/testautomation/global/win/etab_h_o.win index de5481e2e3c2..2d2f072e610e 100755..100644 --- a/testautomation/global/win/etab_h_o.win +++ b/testautomation/global/win/etab_h_o.win @@ -1,239 +1,239 @@ -*TabHelpTextFrame HID_TAB_DESIGN_HELP_TEXT_FRAME -HelpText HID_TABLE_DESIGN_HELP_WINDOW - -*TabInternet HID_DOCINFORELOAD -DoNotRefreshAutomatically sfx2:RadioButton:TP_DOCINFORELOAD:RB_NOAUTOUPDATE -RefreshThisDocument sfx2:RadioButton:TP_DOCINFORELOAD:RB_RELOADUPDATE -RedirectFromThisDocument sfx2:RadioButton:TP_DOCINFORELOAD:RB_FORWARDUPDATE -TimeReload sfx2:NumericField:TP_DOCINFORELOAD:ED_RELOAD -TimeForward sfx2:NumericField:TP_DOCINFORELOAD:ED_FORWARD -URL sfx2:Edit:TP_DOCINFORELOAD:ED_URL -BrowseURL sfx2:PushButton:TP_DOCINFORELOAD:PB_BROWSEURL -Frame sfx2:ComboBox:TP_DOCINFORELOAD:CB_FRAME - -*TabOOoImprovement cui:TabPage:RID_SVXPAGE_IMPROVEMENT -ParticipateYes cui:RadioButton:RID_SVXPAGE_IMPROVEMENT:RB_YES -ParticipateNo cui:RadioButton:RID_SVXPAGE_IMPROVEMENT:RB_NO -ShowData cui:PushButton:RID_SVXPAGE_IMPROVEMENT:PB_SHOWDATA - -*TabJava HID_OPTIONS_JAVA -UseJava cui:CheckBox:RID_SVXPAGE_OPTIONS_JAVA:CB_JAVA_ENABLE -JavaList HID_OPTIONS_JAVA_LIST -Add cui:PushButton:RID_SVXPAGE_OPTIONS_JAVA:PB_ADD -Parameters cui:PushButton:RID_SVXPAGE_OPTIONS_JAVA:PB_PARAMETER -ClassPath cui:PushButton:RID_SVXPAGE_OPTIONS_JAVA:PB_CLASSPATH - -*TabJapaneseFind HID_SVXPAGE_JSEARCH_OPTIONS -MatchCase cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_CASE -MatchFullHalf cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_FULL_HALF_WIDTH -MatchHiraganaKatakana cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_HIRAGANA_KATAKANA -MatchContractions cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_CONTRACTIONS -MatchMinusDashChoOn cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_MINUS_DASH_CHOON -MatchRepeatcharacterMarks cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_REPEAT_CHAR_MARKS -MatchVariantFormKanji cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_VARIANT_FORM_KANJI -MatchOldKanaForms cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_OLD_KANA_FORMS -MatchDiZiDuZu cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_DIZI_DUZU -MatchBaVaHaFa cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_BAVA_HAFA -MatchTsiThiChiDhiZi cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_TSITHICHI_DHIZI -MatchHyuFyuByuVyu cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_HYUFYU_BYUVYU -MatchDeSheZeJe cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_SESHE_ZEJE -MatchIaIya cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_IAIYA -MatchKiKu cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_KIKU -PunctuationCharacters cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_IGNORE_PUNCTUATION -WhitespaceCharacters cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_IGNORE_WHITESPACES -ProlongedSoundmarks cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_PROLONGED_SOUNDMARK -MiddleDots cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_IGNORE_MIDDLE_DOT - -*TabJDBC HID_DSADMIN_PAGE_JDBC -JDBCDriverClass HID_DSADMIN_DRIVERCLASS -AutoRetrieveEnabled HID_DSADMIN_AUTORETRIEVEENABLED -AutoIncrementStatement HID_DSADMIN_AUTOINCREMENTVALUE -RetrieveQuery HID_DSADMIN_RETRIEVE_AUTO -SQL92Check HID_DSADMIN_SQL92CHECK - -*TabLDAP HID_DSADMIN_PAGE_LDAP -BaseDN HID_DSADMIN_LDAP_BASEDN -PortNumber HID_DSADMIN_LDAP_PORTNUMBER -Records HID_DSADMIN_LDAP_ROWCOUNT - -*TabLegendPosition HID_SCH_LEGEND_POS - PostionLeft HID_SCH_LEGEND_POS_LEFT - PostionTop HID_SCH_LEGEND_POS_TOP - PostionRight HID_SCH_LEGEND_POS_RIGHT - PostionBottom HID_SCH_LEGEND_POS_BOTTOM - TextDirection chart2:ListBox:TP_LEGEND_POS:LB_LEGEND_TEXTDIR - -*TabListBoxData extensions:TabPage:RID_PAGE_TABLESELECTION -DataSource extensions:ListBox:RID_PAGE_TABLESELECTION:LB_DATASOURCE -Table extensions:ListBox:RID_PAGE_TABLESELECTION:LB_TABLE - -*TabLocalizedOptions HID_OFAPAGE_AUTOCORR_QUOTE -LocalizedOptionsList HID_OFAPAGE_QUOTE_CLB -LocalizedOptions HID_OFAPAGE_QUOTE_SW_CLB -SingleQuotesReplace cui:Checkbox:RID_OFAPAGE_AUTOCORR_QUOTE:CB_SGL_TYPO -SingleQuotesStart cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STARTQUOTE -SingleQuotesEnd cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_ENDQUOTE -SingleQuotesDefault cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STD -DoubleQuotesReplace cui:CheckBox:RID_OFAPAGE_AUTOCORR_QUOTE:CB_TYPO -DoubleQuotesStart cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_STARTQUOTE -DoubleQuotesEnd cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_ENDQUOTE -DoubleQuotesDefault cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_DBL_STD - -*TabMailMergeEMail HID_TP_MAILCONFIG -YourName sw:Edit:TP_MAILCONFIG:ED_DISPLAYNAME -EmailAddress sw:Edit:TP_MAILCONFIG:ED_ADDRESS -SendReplies sw:CheckBox:TP_MAILCONFIG:CB_REPLYTO -ReplyAddress sw:Edit:TP_MAILCONFIG:ED_REPLYTO -ServerName sw:Edit:TP_MAILCONFIG:ED_SERVER -Port sw:NumericField:TP_MAILCONFIG:NF_PORT -UseSecure sw:CheckBox:TP_MAILCONFIG:CB_SECURE -ServerAuthentication sw:PushButton:TP_MAILCONFIG:PB_AUTHENTICATION -TestSettings sw:PushButton:TP_MAILCONFIG:PB_TEST - -*TabMailMergeSourceDocument HID_MM_DOCSELECTPAGE -UseTheCurrentDocument sw:RadioButton:DLG_MM_DOCSELECT_PAGE:RB_CURRENTDOC -CreateANewDocument sw:RadioButton:DLG_MM_DOCSELECT_PAGE:RB_NEWDOC -StartFromExistingDocument sw:RadioButton:DLG_MM_DOCSELECT_PAGE:RB_LOADDOC -StartFromATemplate sw:RadioButton:DLG_MM_DOCSELECT_PAGE:RB_LOADTEMPLATE -StartFromRecentlySaved sw:RadioButton:DLG_MM_DOCSELECT_PAGE:RB_RECENTDOC -BrowseDocument sw:PushButton:DLG_MM_DOCSELECT_PAGE:PB_LOADDOC -BrowseTemplate sw:PushButton:DLG_MM_DOCSELECT_PAGE:PB_BROWSETEMPLATE -RecentDocument sw:ListBox:DLG_MM_DOCSELECT_PAGE:LB_RECENTDOC - -*TabMailMergeDocumentType HID_MM_OUTPUTTYPEPAGE -Letter sw:RadioButton:DLG_MM_OUTPUTTYPE_PAGE:RB_LETTER -MailMessage sw:RadioButton:DLG_MM_OUTPUTTYPE_PAGE:RB_MAIL - -*TabMailMergeAddressBlock HID_MM_ADDRESSBLOCKPAGE -SelectAddressListButton sw:PushButton:DLG_MM_ADDRESSBLOCK_PAGE:PB_ADDRESSLIST -Addressblock sw:CheckBox:DLG_MM_ADDRESSBLOCK_PAGE:CB_ADDRESS -More sw:PushButton:DLG_MM_ADDRESSBLOCK_PAGE:PB_SETTINGS -MatchFields sw:PushButton:DLG_MM_ADDRESSBLOCK_PAGE:PB_ASSIGN -PreviewAddressBlock sw:ImageButton:DLG_MM_ADDRESSBLOCK_PAGE:IB_PREVSET -PreviewNextAddressBlock sw:ImageButton:DLG_MM_ADDRESSBLOCK_PAGE:IB_NEXTSET -MatchFieldsButton sw:PushButton:DLG_MM_ADDRESSBLOCK_PAGE:PB_ASSIGN -SuppressLines sw:CheckBox:DLG_MM_ADDRESSBLOCK_PAGE:CB_HIDE_EMPTY_PARA - -*TabMailMergeGreetingsPage HID_MM_GREETINGSPAGE -GreetingPersonalized HID_MM_GREETINGS_CB_PERSONALIZED -GreetingListBoxFemale HID_MM_GREETINGS_LB_FEMALE -GreetingButtonFemale HID_MM_GREETINGS_PB_FEMALE -GreetingListBoxMale HID_MM_GREETINGS_LB_MALE -GreetingButtonMale HID_MM_GREETINGS_PB_MALE -GreetingListBoxFemaleColumn HID_MM_GREETINGS_LB_FEMALECOLUMN -GreetingComboBoxFemale HID_MM_GREETINGS_CB_FEMALEFIELD -GreetingComboBoxNeutral HID_MM_GREETINGS_CB_NEUTRAL -MatchFields sw:PushButton:DLG_MM_GREETINGS_PAGE:PB_ASSIGN -PreviewPreviousSalutation sw:ImageButton:DLG_MM_GREETINGS_PAGE:IB_PREVSET -PreviewNextSalutation sw:ImageButton:DLG_MM_GREETINGS_PAGE:IB_NEXTSET - -*TabMailMergeLayoutPage HID_MM_LAYOUT_PAGE -LayoutAlignButton sw:CheckBox:DLG_MM_LAYOUT_PAGE:CB_ALIGN -LayoutLeftBorder sw:MetricField:DLG_MM_LAYOUT_PAGE:MF_LEFT -LayoutTopBorder sw:MetricField:DLG_MM_LAYOUT_PAGE:MF_TOP -LayoutTopButton sw:PushButton:DLG_MM_LAYOUT_PAGE:MF_UP -LayoutDownButton sw:PushButton:DLG_MM_LAYOUT_PAGE:PB_DOWN -LayoutScrollPageUp HID_SCRL_PAGEUP -LayoutScrollPageDown HID_SCRL_PAGEDOWN -LayoutHelpContentNavigation HID_SCRL_NAVI -LayoutZoomListBox sw:ListBox:DLG_MM_LAYOUT_PAGE:LB_ZOOM - -*TabMailMergeOutputPage HID_MM_OUTPUTPAGE -RBSaveStartDoc sw:RadioButton:DLG_MM_OUTPUT_PAGE:RB_SAVESTARTDOC -RBSaveMergedDoc sw:RadioButton:DLG_MM_OUTPUT_PAGE:RB_SAVEMERGEDDOC -RBPrintMerged sw:RadioButton:DLG_MM_OUTPUT_PAGE:RB_PRINT -RBSendAsMail sw:RadioButton:DLG_MM_OUTPUT_PAGE:RB_SENDMAIL -PBSaveStartDoc sw:PushButton:DLG_MM_OUTPUT_PAGE:PB_SAVESTARTDOC -RBSaveAsOneDocument sw:RadioButton:DLG_MM_OUTPUT_PAGE:RB_SAVEASONE -RBSaveIndividual sw:RadioButton:DLG_MM_OUTPUT_PAGE:RB_SAVEINDIVIDUAL -RBPrintAll sw:RadioButton:DLG_MM_OUTPUT_PAGE:RB_PRINTALL -RBSendAll sw:RadioButton:DLG_MM_OUTPUT_PAGE:RB_SENDALL -RBStartFrom sw:RadioButton:DLG_MM_OUTPUT_PAGE:RB_FROM -NFFirstDataSet sw:NumericField:DLG_MM_OUTPUT_PAGE:NF_FROM -NFLastDataSet sw:NumericField:DLG_MM_OUTPUT_PAGE:NF_TO -PBSaveNow sw:PushButton:DLG_MM_OUTPUT_PAGE:PB_SAVENOW -LBChoosePrinter sw:ListBox:DLG_MM_OUTPUT_PAGE:LB_PRINT -PBPrinterSettings sw:PushButton:DLG_MM_OUTPUT_PAGE:PB_PRINTERSETTINGS -PBPrintNow sw:PushButton:DLG_MM_OUTPUT_PAGE:PB_PRINTNOW -LBMailTo sw:ListBox:DLG_MM_OUTPUT_PAGE:LB_MAILTO -PBCopyTo sw:PushButton:DLG_MM_OUTPUT_PAGE:PB_COPYTO -PBEditSubject sw:Edit:DLG_MM_OUTPUT_PAGE:ED_SUBJECT -PBSendAs sw:ListBox:DLG_MM_OUTPUT_PAGE:LB_SENDAS -EFEditAttachmentName sw:Edit:DLG_MM_OUTPUT_PAGE:ED_ATTACHMENT -PBProperties sw:PushButton:DLG_MM_OUTPUT_PAGE:PB_SENDAS -PBSendDocuments sw:PushButton:DLG_MM_OUTPUT_PAGE:PB_SENDDOCUMENTS - -*TabMailMergePersonalize HID_MM_MERGEPAGE -EditIndividualButton sw:PushButton:DLG_MM_MERGE_PAGE:PB_EDIT -SearchDocumentButton sw:Edit:DLG_MM_MERGE_PAGE:ED_FIND -FindButton sw:PushButton:DLG_MM_MERGE_PAGE:PB_FIND -FindWholeWordsButton sw:CheckBox:DLG_MM_MERGE_PAGE:CB_WHOLEWORDS -ToTopCheckBox sw:CheckBox:DLG_MM_MERGE_PAGE:CB_BACKWARDS -MatchCaseCheckBox sw:CheckBox:DLG_MM_MERGE_PAGE:CB_MATCHCASE - -*TabMailMergePrepare HID_MM_PREPAREMERGEPAGE -FirstRecordButton sw:PushButton:DLG_MM_PREPAREMERGE_PAGE:PB_FIRST -PreviousRecordButton sw:PushButton:DLG_MM_PREPAREMERGE_PAGE:PB_PREV -SelectRecord sw:NumericField:DLG_MM_PREPAREMERGE_PAGE:ED_RECORD -NextRecordButton sw:PushButton:DLG_MM_PREPAREMERGE_PAGE:PB_NEXT -LastRecordButton sw:PushButton:DLG_MM_PREPAREMERGE_PAGE:PB_LAST -ExcludeCheckBox sw:CheckBox:DLG_MM_PREPAREMERGE_PAGE:CB_EXCLUDE -EditButton sw:PushButton:DLG_MM_PREPAREMERGE_PAGE:PB_EDIT +*TabHelpTextFrame sym:DBACCESS_HID_TAB_DESIGN_HELP_TEXT_FRAME +HelpText sym:DBACCESS_HID_TABLE_DESIGN_HELP_WINDOW + +*TabInternet sym:SFX2_HID_DOCINFORELOAD +DoNotRefreshAutomatically sym:sfx2:RadioButton:TP_DOCINFORELOAD:RB_NOAUTOUPDATE +RefreshThisDocument sym:sfx2:RadioButton:TP_DOCINFORELOAD:RB_RELOADUPDATE +RedirectFromThisDocument sym:sfx2:RadioButton:TP_DOCINFORELOAD:RB_FORWARDUPDATE +TimeReload sym:sfx2:NumericField:TP_DOCINFORELOAD:ED_RELOAD +TimeForward sym:sfx2:NumericField:TP_DOCINFORELOAD:ED_FORWARD +URL sym:sfx2:Edit:TP_DOCINFORELOAD:ED_URL +BrowseURL sym:sfx2:PushButton:TP_DOCINFORELOAD:PB_BROWSEURL +Frame sym:sfx2:ComboBox:TP_DOCINFORELOAD:CB_FRAME + +*TabOOoImprovement sym:cui:TabPage:RID_SVXPAGE_IMPROVEMENT +ParticipateYes sym:cui:RadioButton:RID_SVXPAGE_IMPROVEMENT:RB_YES +ParticipateNo sym:cui:RadioButton:RID_SVXPAGE_IMPROVEMENT:RB_NO +ShowData sym:cui:PushButton:RID_SVXPAGE_IMPROVEMENT:PB_SHOWDATA + +*TabJava sym:CUI_HID_OPTIONS_JAVA +UseJava sym:cui:CheckBox:RID_SVXPAGE_OPTIONS_JAVA:CB_JAVA_ENABLE +JavaList sym:CUI_HID_OPTIONS_JAVA_LIST +Add sym:cui:PushButton:RID_SVXPAGE_OPTIONS_JAVA:PB_ADD +Parameters sym:cui:PushButton:RID_SVXPAGE_OPTIONS_JAVA:PB_PARAMETER +ClassPath sym:cui:PushButton:RID_SVXPAGE_OPTIONS_JAVA:PB_CLASSPATH + +*TabJapaneseFind sym:CUI_HID_SVXPAGE_JSEARCH_OPTIONS +MatchCase sym:cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_CASE +MatchFullHalf sym:cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_FULL_HALF_WIDTH +MatchHiraganaKatakana sym:cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_HIRAGANA_KATAKANA +MatchContractions sym:cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_CONTRACTIONS +MatchMinusDashChoOn sym:cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_MINUS_DASH_CHOON +MatchRepeatcharacterMarks sym:cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_REPEAT_CHAR_MARKS +MatchVariantFormKanji sym:cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_VARIANT_FORM_KANJI +MatchOldKanaForms sym:cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_OLD_KANA_FORMS +MatchDiZiDuZu sym:cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_DIZI_DUZU +MatchBaVaHaFa sym:cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_BAVA_HAFA +MatchTsiThiChiDhiZi sym:cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_TSITHICHI_DHIZI +MatchHyuFyuByuVyu sym:cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_HYUFYU_BYUVYU +MatchDeSheZeJe sym:cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_SESHE_ZEJE +MatchIaIya sym:cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_IAIYA +MatchKiKu sym:cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_KIKU +PunctuationCharacters sym:cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_IGNORE_PUNCTUATION +WhitespaceCharacters sym:cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_IGNORE_WHITESPACES +ProlongedSoundmarks sym:cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_MATCH_PROLONGED_SOUNDMARK +MiddleDots sym:cui:CheckBox:RID_SVXPAGE_JSEARCH_OPTIONS:CB_IGNORE_MIDDLE_DOT + +*TabJDBC sym:DBACCESS_HID_DSADMIN_PAGE_JDBC +JDBCDriverClass sym:DBACCESS_HID_DSADMIN_DRIVERCLASS +AutoRetrieveEnabled sym:DBACCESS_HID_DSADMIN_AUTORETRIEVEENABLED +AutoIncrementStatement sym:DBACCESS_HID_DSADMIN_AUTOINCREMENTVALUE +RetrieveQuery sym:DBACCESS_HID_DSADMIN_RETRIEVE_AUTO +SQL92Check sym:DBACCESS_HID_DSADMIN_SQL92CHECK + +*TabLDAP sym:DBACCESS_HID_DSADMIN_PAGE_LDAP +BaseDN sym:DBACCESS_HID_DSADMIN_LDAP_BASEDN +PortNumber sym:DBACCESS_HID_DSADMIN_LDAP_PORTNUMBER +Records sym:DBACCESS_HID_DSADMIN_LDAP_ROWCOUNT + +*TabLegendPosition sym:CHART2_HID_SCH_LEGEND_POS + PostionLeft sym:CHART2_HID_SCH_LEGEND_POS_LEFT + PostionTop sym:CHART2_HID_SCH_LEGEND_POS_TOP + PostionRight sym:CHART2_HID_SCH_LEGEND_POS_RIGHT + PostionBottom sym:CHART2_HID_SCH_LEGEND_POS_BOTTOM + TextDirection sym:chart2:ListBox:TP_LEGEND_POS:LB_LEGEND_TEXTDIR + +*TabListBoxData sym:extensions:TabPage:RID_PAGE_TABLESELECTION +DataSource sym:extensions:ListBox:RID_PAGE_TABLESELECTION:LB_DATASOURCE +Table sym:extensions:ListBox:RID_PAGE_TABLESELECTION:LB_TABLE + +*TabLocalizedOptions sym:CUI_HID_OFAPAGE_AUTOCORR_QUOTE +LocalizedOptionsList sym:CUI_HID_OFAPAGE_QUOTE_CLB +LocalizedOptions sym:CUI_HID_OFAPAGE_QUOTE_SW_CLB +SingleQuotesReplace sym:cui:CheckBox:RID_OFAPAGE_AUTOCORR_QUOTE:CB_SGL_TYPO +SingleQuotesStart sym:cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STARTQUOTE +SingleQuotesEnd sym:cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_ENDQUOTE +SingleQuotesDefault sym:cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STD +DoubleQuotesReplace sym:cui:CheckBox:RID_OFAPAGE_AUTOCORR_QUOTE:CB_TYPO +DoubleQuotesStart sym:cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_STARTQUOTE +DoubleQuotesEnd sym:cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_ENDQUOTE +DoubleQuotesDefault sym:cui:PushButton:RID_OFAPAGE_AUTOCORR_QUOTE:PB_DBL_STD + +*TabMailMergeEMail sym:SW_HID_TP_MAILCONFIG +YourName sym:sw:Edit:TP_MAILCONFIG:ED_DISPLAYNAME +EmailAddress sym:sw:Edit:TP_MAILCONFIG:ED_ADDRESS +SendReplies sym:sw:CheckBox:TP_MAILCONFIG:CB_REPLYTO +ReplyAddress sym:sw:Edit:TP_MAILCONFIG:ED_REPLYTO +ServerName sym:sw:Edit:TP_MAILCONFIG:ED_SERVER +Port sym:sw:NumericField:TP_MAILCONFIG:NF_PORT +UseSecure sym:sw:CheckBox:TP_MAILCONFIG:CB_SECURE +ServerAuthentication sym:sw:PushButton:TP_MAILCONFIG:PB_AUTHENTICATION +TestSettings sym:sw:PushButton:TP_MAILCONFIG:PB_TEST + +*TabMailMergeSourceDocument sym:SW_HID_MM_DOCSELECTPAGE +UseTheCurrentDocument sym:sw:RadioButton:DLG_MM_DOCSELECT_PAGE:RB_CURRENTDOC +CreateANewDocument sym:sw:RadioButton:DLG_MM_DOCSELECT_PAGE:RB_NEWDOC +StartFromExistingDocument sym:sw:RadioButton:DLG_MM_DOCSELECT_PAGE:RB_LOADDOC +StartFromATemplate sym:sw:RadioButton:DLG_MM_DOCSELECT_PAGE:RB_LOADTEMPLATE +StartFromRecentlySaved sym:sw:RadioButton:DLG_MM_DOCSELECT_PAGE:RB_RECENTDOC +BrowseDocument sym:sw:PushButton:DLG_MM_DOCSELECT_PAGE:PB_LOADDOC +BrowseTemplate sym:sw:PushButton:DLG_MM_DOCSELECT_PAGE:PB_BROWSETEMPLATE +RecentDocument sym:sw:ListBox:DLG_MM_DOCSELECT_PAGE:LB_RECENTDOC + +*TabMailMergeDocumentType sym:SW_HID_MM_OUTPUTTYPEPAGE +Letter sym:sw:RadioButton:DLG_MM_OUTPUTTYPE_PAGE:RB_LETTER +MailMessage sym:sw:RadioButton:DLG_MM_OUTPUTTYPE_PAGE:RB_MAIL + +*TabMailMergeAddressBlock sym:SW_HID_MM_ADDRESSBLOCKPAGE +SelectAddressListButton sym:sw:PushButton:DLG_MM_ADDRESSBLOCK_PAGE:PB_ADDRESSLIST +Addressblock sym:sw:CheckBox:DLG_MM_ADDRESSBLOCK_PAGE:CB_ADDRESS +More sym:sw:PushButton:DLG_MM_ADDRESSBLOCK_PAGE:PB_SETTINGS +MatchFields sym:sw:PushButton:DLG_MM_ADDRESSBLOCK_PAGE:PB_ASSIGN +PreviewAddressBlock sym:sw:ImageButton:DLG_MM_ADDRESSBLOCK_PAGE:IB_PREVSET +PreviewNextAddressBlock sym:sw:ImageButton:DLG_MM_ADDRESSBLOCK_PAGE:IB_NEXTSET +MatchFieldsButton sym:sw:PushButton:DLG_MM_ADDRESSBLOCK_PAGE:PB_ASSIGN +SuppressLines sym:sw:CheckBox:DLG_MM_ADDRESSBLOCK_PAGE:CB_HIDE_EMPTY_PARA + +*TabMailMergeGreetingsPage sym:SW_HID_MM_GREETINGSPAGE +GreetingPersonalized sym:SW_HID_MM_GREETINGS_CB_PERSONALIZED +GreetingListBoxFemale sym:SW_HID_MM_GREETINGS_LB_FEMALE +GreetingButtonFemale sym:SW_HID_MM_GREETINGS_PB_FEMALE +GreetingListBoxMale sym:SW_HID_MM_GREETINGS_LB_MALE +GreetingButtonMale sym:SW_HID_MM_GREETINGS_PB_MALE +GreetingListBoxFemaleColumn sym:SW_HID_MM_GREETINGS_LB_FEMALECOLUMN +GreetingComboBoxFemale sym:SW_HID_MM_GREETINGS_CB_FEMALEFIELD +GreetingComboBoxNeutral sym:SW_HID_MM_GREETINGS_CB_NEUTRAL +MatchFields sym:sw:PushButton:DLG_MM_GREETINGS_PAGE:PB_ASSIGN +PreviewPreviousSalutation sym:sw:ImageButton:DLG_MM_GREETINGS_PAGE:IB_PREVSET +PreviewNextSalutation sym:sw:ImageButton:DLG_MM_GREETINGS_PAGE:IB_NEXTSET + +*TabMailMergeLayoutPage sym:SW_HID_MM_LAYOUT_PAGE +LayoutAlignButton sym:sw:CheckBox:DLG_MM_LAYOUT_PAGE:CB_ALIGN +LayoutLeftBorder sym:sw:MetricField:DLG_MM_LAYOUT_PAGE:MF_LEFT +LayoutTopBorder sym:sw:MetricField:DLG_MM_LAYOUT_PAGE:MF_TOP +LayoutTopButton sym:sw:PushButton:DLG_MM_LAYOUT_PAGE:MF_UP +LayoutDownButton sym:sw:PushButton:DLG_MM_LAYOUT_PAGE:PB_DOWN +LayoutScrollPageUp sym:SW_HID_SCRL_PAGEUP +LayoutScrollPageDown sym:SW_HID_SCRL_PAGEDOWN +LayoutHelpContentNavigation sym:SW_HID_SCRL_NAVI +LayoutZoomListBox sym:sw:ListBox:DLG_MM_LAYOUT_PAGE:LB_ZOOM + +*TabMailMergeOutputPage sym:SW_HID_MM_OUTPUTPAGE +RBSaveStartDoc sym:sw:RadioButton:DLG_MM_OUTPUT_PAGE:RB_SAVESTARTDOC +RBSaveMergedDoc sym:sw:RadioButton:DLG_MM_OUTPUT_PAGE:RB_SAVEMERGEDDOC +RBPrintMerged sym:sw:RadioButton:DLG_MM_OUTPUT_PAGE:RB_PRINT +RBSendAsMail sym:sw:RadioButton:DLG_MM_OUTPUT_PAGE:RB_SENDMAIL +PBSaveStartDoc sym:sw:PushButton:DLG_MM_OUTPUT_PAGE:PB_SAVESTARTDOC +RBSaveAsOneDocument sym:sw:RadioButton:DLG_MM_OUTPUT_PAGE:RB_SAVEASONE +RBSaveIndividual sym:sw:RadioButton:DLG_MM_OUTPUT_PAGE:RB_SAVEINDIVIDUAL +RBPrintAll sym:sw:RadioButton:DLG_MM_OUTPUT_PAGE:RB_PRINTALL +RBSendAll sym:sw:RadioButton:DLG_MM_OUTPUT_PAGE:RB_SENDALL +RBStartFrom sym:sw:RadioButton:DLG_MM_OUTPUT_PAGE:RB_FROM +NFFirstDataSet sym:sw:NumericField:DLG_MM_OUTPUT_PAGE:NF_FROM +NFLastDataSet sym:sw:NumericField:DLG_MM_OUTPUT_PAGE:NF_TO +PBSaveNow sym:sw:PushButton:DLG_MM_OUTPUT_PAGE:PB_SAVENOW +LBChoosePrinter sym:sw:ListBox:DLG_MM_OUTPUT_PAGE:LB_PRINT +PBPrinterSettings sym:sw:PushButton:DLG_MM_OUTPUT_PAGE:PB_PRINTERSETTINGS +PBPrintNow sym:sw:PushButton:DLG_MM_OUTPUT_PAGE:PB_PRINTNOW +LBMailTo sym:sw:ListBox:DLG_MM_OUTPUT_PAGE:LB_MAILTO +PBCopyTo sym:sw:PushButton:DLG_MM_OUTPUT_PAGE:PB_COPYTO +PBEditSubject sym:sw:Edit:DLG_MM_OUTPUT_PAGE:ED_SUBJECT +PBSendAs sym:sw:ListBox:DLG_MM_OUTPUT_PAGE:LB_SENDAS +EFEditAttachmentName sym:sw:Edit:DLG_MM_OUTPUT_PAGE:ED_ATTACHMENT +PBProperties sym:sw:PushButton:DLG_MM_OUTPUT_PAGE:PB_SENDAS +PBSendDocuments sym:sw:PushButton:DLG_MM_OUTPUT_PAGE:PB_SENDDOCUMENTS + +*TabMailMergePersonalize sym:SW_HID_MM_MERGEPAGE +EditIndividualButton sym:sw:PushButton:DLG_MM_MERGE_PAGE:PB_EDIT +SearchDocumentButton sym:sw:Edit:DLG_MM_MERGE_PAGE:ED_FIND +FindButton sym:sw:PushButton:DLG_MM_MERGE_PAGE:PB_FIND +FindWholeWordsButton sym:sw:CheckBox:DLG_MM_MERGE_PAGE:CB_WHOLEWORDS +ToTopCheckBox sym:sw:CheckBox:DLG_MM_MERGE_PAGE:CB_BACKWARDS +MatchCaseCheckBox sym:sw:CheckBox:DLG_MM_MERGE_PAGE:CB_MATCHCASE + +*TabMailMergePrepare sym:SW_HID_MM_PREPAREMERGEPAGE +FirstRecordButton sym:sw:PushButton:DLG_MM_PREPAREMERGE_PAGE:PB_FIRST +PreviousRecordButton sym:sw:PushButton:DLG_MM_PREPAREMERGE_PAGE:PB_PREV +SelectRecord sym:sw:NumericField:DLG_MM_PREPAREMERGE_PAGE:ED_RECORD +NextRecordButton sym:sw:PushButton:DLG_MM_PREPAREMERGE_PAGE:PB_NEXT +LastRecordButton sym:sw:PushButton:DLG_MM_PREPAREMERGE_PAGE:PB_LAST +ExcludeCheckBox sym:sw:CheckBox:DLG_MM_PREPAREMERGE_PAGE:CB_EXCLUDE +EditButton sym:sw:PushButton:DLG_MM_PREPAREMERGE_PAGE:PB_EDIT *TabMediaWiki sym:vnd.com.sun.star.wiki:settings -*TabMemory HID_OFA_TP_MEMORY -UndoSteps cui:NumericField:OFA_TP_MEMORY:ED_UNDO -StarOffice cui:NumericField:OFA_TP_MEMORY:NF_GRAPHICCACHE -MemoryPerObject cui:NumericField:OFA_TP_MEMORY:NF_GRAPHICOBJECTCACHE -RemoveFromMemoryAfter cui:TimeField:OFA_TP_MEMORY:TF_GRAPHICOBJECTTIME -NumberOfObjects cui:NumericField:OFA_TP_MEMORY:NF_OLECACHE -LoadQuickstarter cui:CheckBox:OFA_TP_MEMORY:CB_QUICKLAUNCH - -*TabMozillaPlugin cui:TabPage:RID_SVXPAGE_INET_MOZPLUGIN -Enable cui:CheckBox:RID_SVXPAGE_INET_MOZPLUGIN:CB_MOZPLUGIN_CODE - -*TabMySQLJDBC dbaccess:TabPage:PAGE_MYSQL_JDBC -HostName HID_DSADMIN_HOSTNAME -PortNumber HID_DSADMIN_PORTNUMBER -DriverClass dbaccess:Edit:PAGE_MYSQL_JDBC:ET_JDBCDRIVERCLASS -Charset HID_DSADMIN_CHARSET -TestClass dbaccess:PushButton:PAGE_MYSQL_JDBC:PB_TESTDRIVERCLASS - -*TabMySQLODBC dbaccess:TabPage:PAGE_MYSQL_ODBC -Charset HID_DSADMIN_CHARSET - -*TabNameMatching dbaccess:TabPage:TAB_WIZ_NAME_MATCHING -RightColumnNames HID_TAB_NAMEMATCHING_COLS_AVAIL -LeftColumnNames HID_TAB_NAMEMATCHING_COLS_ASSIGN -LeftColumnUp dbaccess:ImageButton:TAB_WIZ_NAME_MATCHING:IB_COLUMN_UP -LeftColumnDown dbaccess:ImageButton:TAB_WIZ_NAME_MATCHING:IB_COLUMN_DOWN -RightColumnUp dbaccess:ImageButton:TAB_WIZ_NAME_MATCHING:IB_COLUMN_UP_RIGHT -RightColumnDown dbaccess:ImageButton:TAB_WIZ_NAME_MATCHING:IB_COLUMN_DOWN_RIGHT -ColumnAll dbaccess:PushButton:TAB_WIZ_NAME_MATCHING:PB_ALL -ColumnNone dbaccess:PushButton:TAB_WIZ_NAME_MATCHING:PB_NONE - -*TabODBC HID_DSADMIN_PAGE_ODBC -Options HID_DSADMIN_ODBC_OPTIONS -CharSet HID_DSADMIN_CHARSET -SQL92Check HID_DSADMIN_SQL92CHECK -UseCatalogs HID_DSADMIN_USECATALOG +*TabMemory sym:CUI_HID_OFA_TP_MEMORY +UndoSteps sym:cui:NumericField:OFA_TP_MEMORY:ED_UNDO +StarOffice sym:cui:NumericField:OFA_TP_MEMORY:NF_GRAPHICCACHE +MemoryPerObject sym:cui:NumericField:OFA_TP_MEMORY:NF_GRAPHICOBJECTCACHE +RemoveFromMemoryAfter sym:cui:TimeField:OFA_TP_MEMORY:TF_GRAPHICOBJECTTIME +NumberOfObjects sym:cui:NumericField:OFA_TP_MEMORY:NF_OLECACHE +LoadQuickstarter sym:cui:CheckBox:OFA_TP_MEMORY:CB_QUICKLAUNCH + +*TabMozillaPlugin sym:cui:TabPage:RID_SVXPAGE_INET_MOZPLUGIN +Enable sym:cui:CheckBox:RID_SVXPAGE_INET_MOZPLUGIN:CB_MOZPLUGIN_CODE + +*TabMySQLJDBC sym:dbaccess:TabPage:PAGE_MYSQL_JDBC +HostName sym:DBACCESS_HID_DSADMIN_HOSTNAME +PortNumber sym:DBACCESS_HID_DSADMIN_PORTNUMBER +DriverClass sym:dbaccess:Edit:PAGE_MYSQL_JDBC:ET_JDBCDRIVERCLASS +Charset sym:DBACCESS_HID_DSADMIN_CHARSET +TestClass sym:dbaccess:PushButton:PAGE_MYSQL_JDBC:PB_TESTDRIVERCLASS + +*TabMySQLODBC sym:dbaccess:TabPage:PAGE_MYSQL_ODBC +Charset sym:DBACCESS_HID_DSADMIN_CHARSET + +*TabNameMatching sym:dbaccess:TabPage:TAB_WIZ_NAME_MATCHING +RightColumnNames sym:DBACCESS_HID_TAB_NAMEMATCHING_COLS_AVAIL +LeftColumnNames sym:DBACCESS_HID_TAB_NAMEMATCHING_COLS_ASSIGN +LeftColumnUp sym:dbaccess:ImageButton:TAB_WIZ_NAME_MATCHING:IB_COLUMN_UP +LeftColumnDown sym:dbaccess:ImageButton:TAB_WIZ_NAME_MATCHING:IB_COLUMN_DOWN +RightColumnUp sym:dbaccess:ImageButton:TAB_WIZ_NAME_MATCHING:IB_COLUMN_UP_RIGHT +RightColumnDown sym:dbaccess:ImageButton:TAB_WIZ_NAME_MATCHING:IB_COLUMN_DOWN_RIGHT +ColumnAll sym:dbaccess:PushButton:TAB_WIZ_NAME_MATCHING:PB_ALL +ColumnNone sym:dbaccess:PushButton:TAB_WIZ_NAME_MATCHING:PB_NONE + +*TabODBC sym:DBACCESS_HID_DSADMIN_PAGE_ODBC +Options sym:DBACCESS_HID_DSADMIN_ODBC_OPTIONS +CharSet sym:DBACCESS_HID_DSADMIN_CHARSET +SQL92Check sym:DBACCESS_HID_DSADMIN_SQL92CHECK +UseCatalogs sym:DBACCESS_HID_DSADMIN_USECATALOG +TabOfficeView TabAnsichtAllgemein -*TabOnlineUpdate HID_SVX_OPTIONS_ONLINEUPDATE -CheckAutomatically cui:CheckBox:RID_SVXPAGE_ONLINEUPDATE:CB_AUTOCHECK -EveryDay cui:RadioButton:RID_SVXPAGE_ONLINEUPDATE:RB_EVERYDAY -EveryWeek cui:RadioButton:RID_SVXPAGE_ONLINEUPDATE:RB_EVERYWEEK -EveryMonth cui:RadioButton:RID_SVXPAGE_ONLINEUPDATE:RB_EVERYMONTH -CheckNow cui:PushButton:RID_SVXPAGE_ONLINEUPDATE:PB_CHECKNOW -DownloadAutomatically cui:CheckBox:RID_SVXPAGE_ONLINEUPDATE:CB_AUTODOWNLOAD -Change cui:PushButton:RID_SVXPAGE_ONLINEUPDATE:PB_CHANGEPATH - -*TabOracleJDBC dbaccess:TabPage:PAGE_ORACLE_JDBC -HostName HID_DSADMIN_HOSTNAME -PortNumber HID_DSADMIN_PORTNUMBER -DriverClass dbaccess:Edit:PAGE_ORACLE_JDBC:ET_JDBCDRIVERCLASS -Charset HID_DSADMIN_CHARSET -TestClass dbaccess:PushButton:PAGE_ORACLE_JDBC:PB_TESTDRIVERCLASS +*TabOnlineUpdate sym:CUI_HID_SVX_OPTIONS_ONLINEUPDATE +CheckAutomatically sym:cui:CheckBox:RID_SVXPAGE_ONLINEUPDATE:CB_AUTOCHECK +EveryDay sym:cui:RadioButton:RID_SVXPAGE_ONLINEUPDATE:RB_EVERYDAY +EveryWeek sym:cui:RadioButton:RID_SVXPAGE_ONLINEUPDATE:RB_EVERYWEEK +EveryMonth sym:cui:RadioButton:RID_SVXPAGE_ONLINEUPDATE:RB_EVERYMONTH +CheckNow sym:cui:PushButton:RID_SVXPAGE_ONLINEUPDATE:PB_CHECKNOW +DownloadAutomatically sym:cui:CheckBox:RID_SVXPAGE_ONLINEUPDATE:CB_AUTODOWNLOAD +Change sym:cui:PushButton:RID_SVXPAGE_ONLINEUPDATE:PB_CHANGEPATH + +*TabOracleJDBC sym:dbaccess:TabPage:PAGE_ORACLE_JDBC +HostName sym:DBACCESS_HID_DSADMIN_HOSTNAME +PortNumber sym:DBACCESS_HID_DSADMIN_PORTNUMBER +DriverClass sym:dbaccess:Edit:PAGE_ORACLE_JDBC:ET_JDBCDRIVERCLASS +Charset sym:DBACCESS_HID_DSADMIN_CHARSET +TestClass sym:dbaccess:PushButton:PAGE_ORACLE_JDBC:PB_TESTDRIVERCLASS diff --git a/testautomation/global/win/etab_p_s.win b/testautomation/global/win/etab_p_s.win index 806645915f07..cd8aa37097cb 100755..100644 --- a/testautomation/global/win/etab_p_s.win +++ b/testautomation/global/win/etab_p_s.win @@ -1,121 +1,121 @@ -*TabPersonalDataMigration HID_FIRSTSTART_MIGRATION -TransferPersonalData desktop:CheckBox:TP_MIGRATION:CB_MIGRATION +*TabPersonalDataMigration sym:DESKTOP_HID_FIRSTSTART_MIGRATION +TransferPersonalData sym:desktop:CheckBox:TP_MIGRATION:CB_MIGRATION -*TabPositionAndSize HID_TRANS_POSITION_SIZE -PositionX cui:MetricField:RID_SVXPAGE_POSITION_SIZE:MTR_FLD_POS_X -PositionY cui:MetricField:RID_SVXPAGE_POSITION_SIZE:MTR_FLD_POS_Y -Width cui:MetricField:RID_SVXPAGE_POSITION_SIZE:MTR_FLD_WIDTH -Height cui:MetricField:RID_SVXPAGE_POSITION_SIZE:MTR_FLD_HEIGHT -KeepRatio cui:CheckBox:RID_SVXPAGE_POSITION_SIZE:CBX_SCALE -ProtectPosition cui:TriStateBox:RID_SVXPAGE_POSITION_SIZE:TSB_POSPROTECT -ProtectSize cui:TriStateBox:RID_SVXPAGE_POSITION_SIZE:TSB_SIZEPROTECT -FitWidthText cui:TriStateBox:RID_SVXPAGE_POSITION_SIZE:TSB_AUTOGROW_WIDTH -FitHeightText cui:TriStateBox:RID_SVXPAGE_POSITION_SIZE:TSB_AUTOGROW_HEIGHT -AnchorPosition cui:ListBox:RID_SVXPAGE_POSITION_SIZE:LB_ORIENT -Anchor cui:ListBox:RID_SVXPAGE_POSITION_SIZE:LB_ANCHOR -PositionPosition HID_TPPOSITION_CTRL -SizePosition HID_TPSIZE_CTRL +*TabPositionAndSize sym:CUI_HID_TRANS_POSITION_SIZE +PositionX sym:cui:MetricField:RID_SVXPAGE_POSITION_SIZE:MTR_FLD_POS_X +PositionY sym:cui:MetricField:RID_SVXPAGE_POSITION_SIZE:MTR_FLD_POS_Y +Width sym:cui:MetricField:RID_SVXPAGE_POSITION_SIZE:MTR_FLD_WIDTH +Height sym:cui:MetricField:RID_SVXPAGE_POSITION_SIZE:MTR_FLD_HEIGHT +KeepRatio sym:cui:CheckBox:RID_SVXPAGE_POSITION_SIZE:CBX_SCALE +ProtectPosition sym:cui:TriStateBox:RID_SVXPAGE_POSITION_SIZE:TSB_POSPROTECT +ProtectSize sym:cui:TriStateBox:RID_SVXPAGE_POSITION_SIZE:TSB_SIZEPROTECT +FitWidthText sym:cui:TriStateBox:RID_SVXPAGE_POSITION_SIZE:TSB_AUTOGROW_WIDTH +FitHeightText sym:cui:TriStateBox:RID_SVXPAGE_POSITION_SIZE:TSB_AUTOGROW_HEIGHT +AnchorPosition sym:cui:ListBox:RID_SVXPAGE_POSITION_SIZE:LB_ORIENT +Anchor sym:cui:ListBox:RID_SVXPAGE_POSITION_SIZE:LB_ANCHOR +PositionPosition sym:CUI_HID_TPPOSITION_CTRL +SizePosition sym:CUI_HID_TPSIZE_CTRL -*TabPositionAndSizeWriter HID_SVXPAGE_SWPOSSIZE -Width cui:MetricField:RID_SVXPAGE_SWPOSSIZE:MF_WIDTH -Height cui:MetricField:RID_SVXPAGE_SWPOSSIZE:MF_HEIGHT -KeepRatio cui:CheckBox:RID_SVXPAGE_SWPOSSIZE:CB_KEEPRATIO -Topage cui:RadioButton:RID_SVXPAGE_SWPOSSIZE:RB_TOPAGE -Toparagraph cui:RadioButton:RID_SVXPAGE_SWPOSSIZE:RB_TOPARA -Tocharacter cui:RadioButton:RID_SVXPAGE_SWPOSSIZE:RB_TOCHAR -Ascharacter cui:RadioButton:RID_SVXPAGE_SWPOSSIZE:RB_ASCHAR -ToFrame cui:RadioButton:RID_SVXPAGE_SWPOSSIZE:RB_TOFRAME -ProtectPosition cui:TriStateBox:RID_SVXPAGE_SWPOSSIZE:CB_POSITION -ProtectSize cui:TriStateBox:RID_SVXPAGE_SWPOSSIZE:CB_SIZE -Horizontal cui:ListBox:RID_SVXPAGE_SWPOSSIZE:LB_HORI -Horizontalby cui:MetricField:RID_SVXPAGE_SWPOSSIZE:MF_HORIBY -Horizontalto cui:ListBox:RID_SVXPAGE_SWPOSSIZE:LB_HORITO -Mirror cui:CheckBox:RID_SVXPAGE_SWPOSSIZE:CB_HORIMIRROR -Vertical cui:ListBox:RID_SVXPAGE_SWPOSSIZE:LB_VERT -Verticalby cui:MetricField:RID_SVXPAGE_SWPOSSIZE:MF_VERTBY -Verticalto cui:ListBox:RID_SVXPAGE_SWPOSSIZE:LB_VERTTO -Followtextflow cui:CheckBox:RID_SVXPAGE_SWPOSSIZE:CB_FOLLOW +*TabPositionAndSizeWriter sym:CUI_HID_SVXPAGE_SWPOSSIZE +Width sym:cui:MetricField:RID_SVXPAGE_SWPOSSIZE:MF_WIDTH +Height sym:cui:MetricField:RID_SVXPAGE_SWPOSSIZE:MF_HEIGHT +KeepRatio sym:cui:CheckBox:RID_SVXPAGE_SWPOSSIZE:CB_KEEPRATIO +Topage sym:cui:RadioButton:RID_SVXPAGE_SWPOSSIZE:RB_TOPAGE +Toparagraph sym:cui:RadioButton:RID_SVXPAGE_SWPOSSIZE:RB_TOPARA +Tocharacter sym:cui:RadioButton:RID_SVXPAGE_SWPOSSIZE:RB_TOCHAR +Ascharacter sym:cui:RadioButton:RID_SVXPAGE_SWPOSSIZE:RB_ASCHAR +ToFrame sym:cui:RadioButton:RID_SVXPAGE_SWPOSSIZE:RB_TOFRAME +ProtectPosition sym:cui:TriStateBox:RID_SVXPAGE_SWPOSSIZE:CB_POSITION +ProtectSize sym:cui:TriStateBox:RID_SVXPAGE_SWPOSSIZE:CB_SIZE +Horizontal sym:cui:ListBox:RID_SVXPAGE_SWPOSSIZE:LB_HORI +Horizontalby sym:cui:MetricField:RID_SVXPAGE_SWPOSSIZE:MF_HORIBY +Horizontalto sym:cui:ListBox:RID_SVXPAGE_SWPOSSIZE:LB_HORITO +Mirror sym:cui:CheckBox:RID_SVXPAGE_SWPOSSIZE:CB_HORIMIRROR +Vertical sym:cui:ListBox:RID_SVXPAGE_SWPOSSIZE:LB_VERT +Verticalby sym:cui:MetricField:RID_SVXPAGE_SWPOSSIZE:MF_VERTBY +Verticalto sym:cui:ListBox:RID_SVXPAGE_SWPOSSIZE:LB_VERTTO +Followtextflow sym:cui:CheckBox:RID_SVXPAGE_SWPOSSIZE:CB_FOLLOW -*TabPrintStarOffice HID_TP_COMMONPRINTOPTIONS -Printer sfx2:RadioButton:TP_COMMONPRINTOPTIONS:RB_PRINTEROUTPUT -PrintToFile sfx2:RadioButton:TP_COMMONPRINTOPTIONS:RB_PRINTFILEOUTPUT -ReduceTransparency sfx2:CheckBox:TP_COMMONPRINTOPTIONS:CB_REDUCETRANSPARENCY -Automatically sfx2:RadioButton:TP_COMMONPRINTOPTIONS:RB_REDUCETRANSPARENCY_AUTO -NoTransparency sfx2:RadioButton:TP_COMMONPRINTOPTIONS:RB_REDUCETRANSPARENCY_NONE -ReduceGradients sfx2:CheckBox:TP_COMMONPRINTOPTIONS:CB_REDUCEGRADIENTS -GradientStripes sfx2:RadioButton:TP_COMMONPRINTOPTIONS:RB_REDUCEGRADIENTS_STRIPES -Stripes sfx2:NumericField:TP_COMMONPRINTOPTIONS:NF_REDUCEGRADIENTS_STEPCOUNT -IntermediateColor sfx2:RadioButton:TP_COMMONPRINTOPTIONS:RB_REDUCEGRADIENTS_COLOR -ReduceBitmaps sfx2:CheckBox:TP_COMMONPRINTOPTIONS:CB_REDUCEBITMAPS -GoodPrintQuality sfx2:RadioButton:TP_COMMONPRINTOPTIONS:RB_REDUCEBITMAPS_OPTIMAL -NormalPrintQuality sfx2:RadioButton:TP_COMMONPRINTOPTIONS:RB_REDUCEBITMAPS_NORMAL -Resolution sfx2:RadioButton:TP_COMMONPRINTOPTIONS:RB_REDUCEBITMAPS_RESOLUTION -IncludeTransparentObjects sfx2:CheckBox:TP_COMMONPRINTOPTIONS:CB_REDUCEBITMAPS_TRANSPARENCY -DPI sfx2:ListBox:TP_COMMONPRINTOPTIONS:LB_REDUCEBITMAPS_RESOLUTION -ConvertColorsToGrayscale sfx2:CheckBox:TP_COMMONPRINTOPTIONS:CB_CONVERTTOGREYSCALES -PaperSize sfx2:CheckBox:TP_COMMONPRINTOPTIONS:CB_PAPERSIZE -PaperOrientation sfx2:CheckBox:TP_COMMONPRINTOPTIONS:CB_PAPERORIENTATION -Transparency sfx2:CheckBox:TP_COMMONPRINTOPTIONS:CB_TRANSPARENCY +*TabPrintStarOffice sym:SFX2_HID_TP_COMMONPRINTOPTIONS +Printer sym:sfx2:RadioButton:TP_COMMONPRINTOPTIONS:RB_PRINTEROUTPUT +PrintToFile sym:sfx2:RadioButton:TP_COMMONPRINTOPTIONS:RB_PRINTFILEOUTPUT +ReduceTransparency sym:sfx2:CheckBox:TP_COMMONPRINTOPTIONS:CB_REDUCETRANSPARENCY +Automatically sym:sfx2:RadioButton:TP_COMMONPRINTOPTIONS:RB_REDUCETRANSPARENCY_AUTO +NoTransparency sym:sfx2:RadioButton:TP_COMMONPRINTOPTIONS:RB_REDUCETRANSPARENCY_NONE +ReduceGradients sym:sfx2:CheckBox:TP_COMMONPRINTOPTIONS:CB_REDUCEGRADIENTS +GradientStripes sym:sfx2:RadioButton:TP_COMMONPRINTOPTIONS:RB_REDUCEGRADIENTS_STRIPES +Stripes sym:sfx2:NumericField:TP_COMMONPRINTOPTIONS:NF_REDUCEGRADIENTS_STEPCOUNT +IntermediateColor sym:sfx2:RadioButton:TP_COMMONPRINTOPTIONS:RB_REDUCEGRADIENTS_COLOR +ReduceBitmaps sym:sfx2:CheckBox:TP_COMMONPRINTOPTIONS:CB_REDUCEBITMAPS +GoodPrintQuality sym:sfx2:RadioButton:TP_COMMONPRINTOPTIONS:RB_REDUCEBITMAPS_OPTIMAL +NormalPrintQuality sym:sfx2:RadioButton:TP_COMMONPRINTOPTIONS:RB_REDUCEBITMAPS_NORMAL +Resolution sym:sfx2:RadioButton:TP_COMMONPRINTOPTIONS:RB_REDUCEBITMAPS_RESOLUTION +IncludeTransparentObjects sym:sfx2:CheckBox:TP_COMMONPRINTOPTIONS:CB_REDUCEBITMAPS_TRANSPARENCY +DPI sym:sfx2:ListBox:TP_COMMONPRINTOPTIONS:LB_REDUCEBITMAPS_RESOLUTION +ConvertColorsToGrayscale sym:sfx2:CheckBox:TP_COMMONPRINTOPTIONS:CB_CONVERTTOGREYSCALES +PaperSize sym:sfx2:CheckBox:TP_COMMONPRINTOPTIONS:CB_PAPERSIZE +PaperOrientation sym:sfx2:CheckBox:TP_COMMONPRINTOPTIONS:CB_PAPERORIENTATION +Transparency sym:sfx2:CheckBox:TP_COMMONPRINTOPTIONS:CB_TRANSPARENCY -*TabPrintCalcOptions HID_SCPAGE_PRINT -SuppressOutput sc:CheckBox:RID_SCPAGE_PRINT:BTN_SKIPEMPTYPAGES -PrintOnly sc:CheckBox:RID_SCPAGE_PRINT:BTN_SELECTEDSHEETS +*TabPrintCalcOptions sym:SC_HID_SCPAGE_PRINT +SuppressOutput sym:sc:CheckBox:RID_SCPAGE_PRINT:BTN_SKIPEMPTYPAGES +PrintOnly sym:sc:CheckBox:RID_SCPAGE_PRINT:BTN_SELECTEDSHEETS -*TabProxyServer HID_OPTIONS_PROXY -ProxyServer cui:ListBox:RID_SVXPAGE_INET_PROXY:LB_PROXYMODE -HttpProxy cui:Edit:RID_SVXPAGE_INET_PROXY:ED_HTTP_PROXY -HttpPort cui:Edit:RID_SVXPAGE_INET_PROXY:ED_HTTP_PORT -HttpsProxy cui:Edit:RID_SVXPAGE_INET_PROXY:ED_HTTPS_PROXY -HttpsPort cui:Edit:RID_SVXPAGE_INET_PROXY:ED_HTTPS_PORT -FtpProxy cui:Edit:RID_SVXPAGE_INET_PROXY:ED_FTP_PROXY -FtpPort cui:Edit:RID_SVXPAGE_INET_PROXY:ED_FTP_PORT -NoProxy cui:Edit:RID_SVXPAGE_INET_PROXY:ED_NOPROXYFOR +*TabProxyServer sym:CUI_HID_OPTIONS_PROXY +ProxyServer sym:cui:ListBox:RID_SVXPAGE_INET_PROXY:LB_PROXYMODE +HttpProxy sym:cui:Edit:RID_SVXPAGE_INET_PROXY:ED_HTTP_PROXY +HttpPort sym:cui:Edit:RID_SVXPAGE_INET_PROXY:ED_HTTP_PORT +HttpsProxy sym:cui:Edit:RID_SVXPAGE_INET_PROXY:ED_HTTPS_PROXY +HttpsPort sym:cui:Edit:RID_SVXPAGE_INET_PROXY:ED_HTTPS_PORT +FtpProxy sym:cui:Edit:RID_SVXPAGE_INET_PROXY:ED_FTP_PROXY +FtpPort sym:cui:Edit:RID_SVXPAGE_INET_PROXY:ED_FTP_PORT +NoProxy sym:cui:Edit:RID_SVXPAGE_INET_PROXY:ED_NOPROXYFOR -*TabRegisteredDatabase cui:TabPage:RID_SFXPAGE_DBREGISTER -RegisteredDatabases HID_DBPATH_CTL_PATH -NewBtn cui:PushButton:RID_SFXPAGE_DBREGISTER:BTN_NEW -EditBtn cui:PushButton:RID_SFXPAGE_DBREGISTER:BTN_EDIT -DeleteBtn cui:PushButton:RID_SFXPAGE_DBREGISTER:BTN_DELETE +*TabRegisteredDatabase sym:cui:TabPage:RID_SFXPAGE_DBREGISTER +RegisteredDatabases sym:CUI_HID_DBPATH_CTL_PATH +NewBtn sym:cui:PushButton:RID_SFXPAGE_DBREGISTER:BTN_NEW +EditBtn sym:cui:PushButton:RID_SFXPAGE_DBREGISTER:BTN_EDIT +DeleteBtn sym:cui:PushButton:RID_SFXPAGE_DBREGISTER:BTN_DELETE -*TabSectionIndent HID_SECTION_INDENTS_PAGE -IndentBefore sw:MetricField:TP_SECTION_INDENTS:MF_BEFORE -IndentAfter sw:MetricField:TP_SECTION_INDENTS:MF_AFTER +*TabSectionIndent sym:SW_HID_SECTION_INDENTS_PAGE +IndentBefore sym:sw:MetricField:TP_SECTION_INDENTS:MF_BEFORE +IndentAfter sym:sw:MetricField:TP_SECTION_INDENTS:MF_AFTER -*TabSecurity cui:TabPage:RID_SVXPAGE_INET_SECURITY -MacroSecurity cui:PushButton:RID_SVXPAGE_INET_SECURITY:PB_SEC_MACROSEC -PersistentlySavePasswords cui:CheckBox:RID_SVXPAGE_INET_SECURITY:CB_SEC_SAVEPASSWORDS -Options cui:PushButton:RID_SVXPAGE_INET_SECURITY:PB_SEC_SECURITYOPTIONS -MasterPassword cui:PushButton:RID_SVXPAGE_INET_SECURITY:PB_SEC_MASTERPASSWORD -ShowPasswords cui:PushButton:RID_SVXPAGE_INET_SECURITY:PB_SEC_CONNECTIONS +*TabSecurity sym:cui:TabPage:RID_SVXPAGE_INET_SECURITY +MacroSecurity sym:cui:PushButton:RID_SVXPAGE_INET_SECURITY:PB_SEC_MACROSEC +PersistentlySavePasswords sym:cui:CheckBox:RID_SVXPAGE_INET_SECURITY:CB_SEC_SAVEPASSWORDS +Options sym:cui:PushButton:RID_SVXPAGE_INET_SECURITY:PB_SEC_SECURITYOPTIONS +MasterPassword sym:cui:PushButton:RID_SVXPAGE_INET_SECURITY:PB_SEC_MASTERPASSWORD +ShowPasswords sym:cui:PushButton:RID_SVXPAGE_INET_SECURITY:PB_SEC_CONNECTIONS -*TabSecurityProperties HID_DOCINFOSECURITY -EnterPasswordToOpen HID_SECURITYTAB_PASSWORD_TO_OPEN -ReEnterPasswordToOpen HID_SECURITYTAB_CONFIRM_PASSWORD_TO_OPEN -EnterPasswordToModify HID_SECURITYTAB_PASSWORD_TO_MODIFY -ReEnterPasswordToModify HID_SECURITYTAB_CONFIRM_PASSWORD_TO_MODIFY -RecommendToOpenDocumentReadOnly HID_SECURITYTAB_OPEN_FILE_READONLY -RecordChanges HID_SECURITYTAB_RECORD_CHANGES -Protect HID_SECURITYTAB_PROTECTION +*TabSecurityProperties sym:SFX2_HID_DOCINFOSECURITY +EnterPasswordToOpen sym:SFX2_HID_SECURITYTAB_PASSWORD_TO_OPEN +ReEnterPasswordToOpen sym:SFX2_HID_SECURITYTAB_CONFIRM_PASSWORD_TO_OPEN +EnterPasswordToModify sym:SFX2_HID_SECURITYTAB_PASSWORD_TO_MODIFY +ReEnterPasswordToModify sym:SFX2_HID_SECURITYTAB_CONFIRM_PASSWORD_TO_MODIFY +RecommendToOpenDocumentReadOnly sym:SFX2_HID_SECURITYTAB_OPEN_FILE_READONLY +RecordChanges sym:SFX2_HID_SECURITYTAB_RECORD_CHANGES +Protect sym:SFX2_HID_SECURITYTAB_PROTECTION -*TabSecurityOptionsAndWarnings HID_DLG_SECURITY_OPTIONS -SavingOrSendingDocuments cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_SAVESENDDOCS -SigningDocuments cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_SIGNDOCS -PrintingDocuments cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_PRINTDOCS -CreatingPDFfiles cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_CREATEPDF -RemovePersonalInformationOnSaving cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_REMOVEINFO -RecommendPasswordProtectionOnSaving cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_RECOMMENDPWD -CtrlClickRequiredToFollowHyperlinks cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_CTRLHYPERLINK +*TabSecurityOptionsAndWarnings sym:CUI_HID_DLG_SECURITY_OPTIONS +SavingOrSendingDocuments sym:cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_SAVESENDDOCS +SigningDocuments sym:cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_SIGNDOCS +PrintingDocuments sym:cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_PRINTDOCS +CreatingPDFfiles sym:cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_CREATEPDF +RemovePersonalInformationOnSaving sym:cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_REMOVEINFO +RecommendPasswordProtectionOnSaving sym:cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_RECOMMENDPWD +CtrlClickRequiredToFollowHyperlinks sym:cui:CheckBox:RID_SVXDLG_SECURITY_OPTIONS:CB_CTRLHYPERLINK -*TabSecurityLevel HID_XMLSEC_TP_SECLEVEL -VeryHigh xmlsecurity:RadioButton:RID_XMLSECTP_SECLEVEL:RB_VERYHIGH -High xmlsecurity:RadioButton:RID_XMLSECTP_SECLEVEL:RB_HIGH -Medium xmlsecurity:RadioButton:RID_XMLSECTP_SECLEVEL:RB_MEDIUM -Low xmlsecurity:RadioButton:RID_XMLSECTP_SECLEVEL:RB_LOW +*TabSecurityLevel sym:XMLSECURITY_HID_XMLSEC_TP_SECLEVEL +VeryHigh sym:xmlsecurity:RadioButton:RID_XMLSECTP_SECLEVEL:RB_VERYHIGH +High sym:xmlsecurity:RadioButton:RID_XMLSECTP_SECLEVEL:RB_HIGH +Medium sym:xmlsecurity:RadioButton:RID_XMLSECTP_SECLEVEL:RB_MEDIUM +Low sym:xmlsecurity:RadioButton:RID_XMLSECTP_SECLEVEL:RB_LOW -*TabSendAsEmail SID_MAIL_CHILDWIN +*TabSendAsEmail .uno:MailWindow -*TabQueries HID_DSADMIN_QUERYADMINISTRATION -Queries HID_DSADMIN_QUERIES -NewQuery HID_DSADMIN_QUERIES_NEW -Edit HID_DSADMIN_QUERIES_EDIT -DeleteQuery HID_DSADMIN_QUERIES_DELETE +*TabQueries sym:DBACCESS_HID_DSADMIN_QUERYADMINISTRATION +Queries sym:DBACCESS_HID_DSADMIN_QUERIES +NewQuery sym:DBACCESS_HID_DSADMIN_QUERIES_NEW +Edit sym:DBACCESS_HID_DSADMIN_QUERIES_EDIT +DeleteQuery sym:DBACCESS_HID_DSADMIN_QUERIES_DELETE diff --git a/testautomation/global/win/etab_t_z.win b/testautomation/global/win/etab_t_z.win index b7db16fd1ef4..2863c028e530 100755..100644 --- a/testautomation/global/win/etab_t_z.win +++ b/testautomation/global/win/etab_t_z.win @@ -1,149 +1,149 @@ -*TabTableFieldSelection extensions:TabPage:RID_PAGE_GW_FIELDSELECTION -ExistingFields extensions:ListBox:RID_PAGE_GW_FIELDSELECTION:LB_EXISTING_FIELDS -SelectedFields extensions:ListBox:RID_PAGE_GW_FIELDSELECTION:LB_SELECTED_FIELDS -AddTo extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_FIELDRIGHT -AddAllTo extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_ALLFIELDSRIGHT -RemoveFrom extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_FIELDLEFT -RemoveAllFrom extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_ALLFIELDSLEFT - -*TabTableSelection extensions:TabPage:RID_PAGE_LCW_CONTENTSELECTION_TABLE -TableSelection extensions:ListBox:RID_PAGE_LCW_CONTENTSELECTION_TABLE:LB_SELECTTABLE - -*TabTextAnimation sd:TabPage:RID_TP_CUSTOMANIMATION_TEXT -GroupText sd:ListBox:RID_TP_CUSTOMANIMATION_TEXT:LB_GROUP_TEXT -AutomaticallyAfter sd:Checkbox:RID_TP_CUSTOMANIMATION_TEXT:CBX_GROUP_AUTO -AutomaticallyAfterValue sd:MetricField:RID_TP_CUSTOMANIMATION_TEXT:MF_GROUP_AUTO -AnimateAttachedShape sd:Checkbox:RID_TP_CUSTOMANIMATION_TEXT:CBX_ANIMATE_FORM -InReverseOrder sd:Checkbox:RID_TP_CUSTOMANIMATION_TEXT:CBX_REVERSE - -*TabTextBase HID_DSADMIN_PAGE_TEXT -CVSFiles HID_PAGE_DBWIZARD_TEXT_RB_ACCESSCSVFILES -Custom HID_PAGE_DBWIZARD_TEXT_RB_ACCESSOTHERFILES -CustomTxt HID_PAGE_DBWIZARD_TEXT_ET_OWNEXTENSION -TextContainsHeaders HID_DSADMIN_TEXT_HEADER -FieldSeparator HID_DSADMIN_FIELD_SEPARATOR -TextSeparator HID_DSADMIN_TEXT_SEPARATOR -DecimalSeparator HID_DSADMIN_DECIMAL_SEPARATOR -ThousandsSeparator HID_DSADMIN_THOUSANDS_SEPARATOR -Extension HID_DSADMIN_EXTENSION -CharSet HID_DSADMIN_CHARSET -PlainTextFiles HID_PAGE_DBWIZARD_TEXT_RB_ACCESSTXTFILES - -*TabTiming sd:TabPage:RID_TP_CUSTOMANIMATION_DURATION -TimingStart sd:ListBox:RID_TP_CUSTOMANIMATION_DURATION:LB_START -Delay sd:MetricField:RID_TP_CUSTOMANIMATION_DURATION:MF_START_DELAY -Speed sd:ComboBox:RID_TP_CUSTOMANIMATION_DURATION:CB_DURATION -Repeat sd:ComboBox:RID_TP_CUSTOMANIMATION_DURATION:CB_REPEAT -Rewind sd:CheckBox:RID_TP_CUSTOMANIMATION_DURATION:CBX_REWIND -TriggerAnimate sd:RadioButton:RID_TP_CUSTOMANIMATION_DURATION:RB_CLICKSEQUENCE -TriggerStart sd:RadioButton:RID_TP_CUSTOMANIMATION_DURATION:RB_INTERACTIVE -Shape sd:ListBox:RID_TP_CUSTOMANIMATION_DURATION:LB_TRIGGER - -*TabTransparency HID_AREA_TRANSPARENCE -NoTransparency cui:RadioButton:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_OFF -Transparency cui:RadioButton:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_LINEAR -Gradient cui:RadioButton:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_GRADIENT -TransparencyPercent cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRANSPARENT -Type cui:ListBox:RID_SVXPAGE_TRANSPARENCE:LB_TRGR_GRADIENT_TYPES -CenterX cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_X -CenterY cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_Y -Angle cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_ANGLE -Border cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_BORDER -StartValue cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_START_VALUE -EndValue cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_END_VALUE - -*TabTrendLineType chart2:TabPage:TP_TRENDLINE -None HID_SCH_TRENDLINE_RB_NONE -Linear HID_SCH_TRENDLINE_RB_LINEAR -Logarithmic HID_SCH_TRENDLINE_RB_LOGARITHMIC -Exponential HID_SCH_TRENDLINE_RB_EXPONENTIAL -Power HID_SCH_TRENDLINE_RB_POWER -ShowEquation HID_SCH_TRENDLINE_SHOW_EQUATION -ShowCorrelationCoefficient HID_SCH_TRENDLINE_SHOW_R_SQUARED - - -*TabTrustedSources HID_XMLSEC_TP_TRUSTSOURCES -SourcesAdd xmlsecurity:PushButton:RID_XMLSECTP_TRUSTSOURCES:PB_ADD_TRUSTCERT -SourcesView xmlsecurity:PushButton:RID_XMLSECTP_TRUSTSOURCES:PB_VIEW_TRUSTCERT -SourcesRemove xmlsecurity:PushButton:RID_XMLSECTP_TRUSTSOURCES:PB_REMOVE_TRUSTCERT -LocationsListBox xmlsecurity:ListBox:RID_XMLSECTP_TRUSTSOURCES:LB_TRUSTFILELOC -LocationsAdd xmlsecurity:PushButton:RID_XMLSECTP_TRUSTSOURCES:FL_ADD_TRUSTFILELOC -LocationsRemove xmlsecurity:PushButton:RID_XMLSECTP_TRUSTSOURCES:FL_REMOVE_TRUSTFILELOC - -*TabType HID_FRM_STD -Width sw:MetricField:TP_FRM_STD:ED_WIDTH -Height sw:MetricField:TP_FRM_STD:ED_HEIGHT -RelativeWidth sw:CheckBox:TP_FRM_STD:CB_REL_WIDTH -Automatic sw:CheckBox:TP_FRM_STD:CB_AUTOWIDTH -RelativeHeight sw:CheckBox:TP_FRM_STD:CB_REL_HEIGHT -KeepRatio sw:CheckBox:TP_FRM_STD:CB_FIXEDRATIO -AutoHoehe sw:CheckBox:TP_FRM_STD:CB_AUTOHEIGHT -AnchorAtPage sw:RadioButton:TP_FRM_STD:RB_ANCHOR_PAGE -AnchorAtParagraph sw:RadioButton:TP_FRM_STD:RB_ANCHOR_PARA -AnchorAtCharacter sw:RadioButton:TP_FRM_STD:RB_ANCHOR_AT_CHAR -AnchorAsCharacter sw:RadioButton:TP_FRM_STD:RB_ANCHOR_AS_CHAR -AnchorAtFrame sw:RadioButton:TP_FRM_STD:RB_ANCHOR_FRAME -Horizontal sw:ListBox:TP_FRM_STD:DLB_HORIZONTAL -HorizontalBy sw:MetricField:TP_FRM_STD:ED_AT_HORZ_POS -HorizontalTo SW:LISTBOX:TP_FRM_STD:LB_HORI_RELATION -MirrorOnEvenPages SW:CHECKBOX:TP_FRM_STD:CB_MIRROR -Vertical sw:ListBox:TP_FRM_STD:DLB_VERTICAL -VerticalBy sw:MetricField:TP_FRM_STD:ED_AT_VERT_POS -VerticalTo SW:LISTBOX:TP_FRM_STD:LB_VERT_RELATION -OriginalSize sw:PushButton:TP_FRM_STD:BT_REALSIZE -FollowTextflow sw:CheckBox:TP_FRM_STD:CB_FOLLOWTEXTFLOW - -*TabTypeSelect HID_TAB_WIZ_TYPE_SELECT -ColumnNames dbaccess:MultiListBox:TAB_WIZ_TYPE_SELECT:LB_NEW_COLUMN_NAMES -ColumnName HID_TAB_ENT_COLUMNNAME -ColumnType HID_TAB_ENT_TYPE -ColumnLength HID_TAB_ENT_TEXT_LEN -ColumnAutoValue dbaccess:NumericField:TAB_WIZ_TYPE_SELECT:ET_AUTO -ColumnAuto dbaccess:PushButton:TAB_WIZ_TYPE_SELECT:PB_AUTO +*TabTableFieldSelection sym:extensions:TabPage:RID_PAGE_GW_FIELDSELECTION +ExistingFields sym:extensions:ListBox:RID_PAGE_GW_FIELDSELECTION:LB_EXISTING_FIELDS +SelectedFields sym:extensions:ListBox:RID_PAGE_GW_FIELDSELECTION:LB_SELECTED_FIELDS +AddTo sym:extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_FIELDRIGHT +AddAllTo sym:extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_ALLFIELDSRIGHT +RemoveFrom sym:extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_FIELDLEFT +RemoveAllFrom sym:extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_ALLFIELDSLEFT + +*TabTableSelection sym:extensions:TabPage:RID_PAGE_LCW_CONTENTSELECTION_TABLE +TableSelection sym:extensions:ListBox:RID_PAGE_LCW_CONTENTSELECTION_TABLE:LB_SELECTTABLE + +*TabTextAnimation sym:sd:TabPage:RID_TP_CUSTOMANIMATION_TEXT +GroupText sym:sd:ListBox:RID_TP_CUSTOMANIMATION_TEXT:LB_GROUP_TEXT +AutomaticallyAfter sym:sd:CheckBox:RID_TP_CUSTOMANIMATION_TEXT:CBX_GROUP_AUTO +AutomaticallyAfterValue sym:sd:MetricField:RID_TP_CUSTOMANIMATION_TEXT:MF_GROUP_AUTO +AnimateAttachedShape sym:sd:CheckBox:RID_TP_CUSTOMANIMATION_TEXT:CBX_ANIMATE_FORM +InReverseOrder sym:sd:CheckBox:RID_TP_CUSTOMANIMATION_TEXT:CBX_REVERSE + +*TabTextBase sym:DBACCESS_HID_DSADMIN_PAGE_TEXT +CVSFiles sym:DBACCESS_HID_PAGE_DBWIZARD_TEXT_RB_ACCESSCSVFILES +Custom sym:DBACCESS_HID_PAGE_DBWIZARD_TEXT_RB_ACCESSOTHERFILES +CustomTxt sym:DBACCESS_HID_PAGE_DBWIZARD_TEXT_ET_OWNEXTENSION +TextContainsHeaders sym:DBACCESS_HID_DSADMIN_TEXT_HEADER +FieldSeparator sym:DBACCESS_HID_DSADMIN_FIELD_SEPARATOR +TextSeparator sym:DBACCESS_HID_DSADMIN_TEXT_SEPARATOR +DecimalSeparator sym:DBACCESS_HID_DSADMIN_DECIMAL_SEPARATOR +ThousandsSeparator sym:DBACCESS_HID_DSADMIN_THOUSANDS_SEPARATOR +Extension sym:DBACCESS_HID_DSADMIN_EXTENSION +CharSet sym:DBACCESS_HID_DSADMIN_CHARSET +PlainTextFiles sym:DBACCESS_HID_PAGE_DBWIZARD_TEXT_RB_ACCESSTXTFILES + +*TabTiming sym:sd:TabPage:RID_TP_CUSTOMANIMATION_DURATION +TimingStart sym:sd:ListBox:RID_TP_CUSTOMANIMATION_DURATION:LB_START +Delay sym:sd:MetricField:RID_TP_CUSTOMANIMATION_DURATION:MF_START_DELAY +Speed sym:sd:ComboBox:RID_TP_CUSTOMANIMATION_DURATION:CB_DURATION +Repeat sym:sd:ComboBox:RID_TP_CUSTOMANIMATION_DURATION:CB_REPEAT +Rewind sym:sd:CheckBox:RID_TP_CUSTOMANIMATION_DURATION:CBX_REWIND +TriggerAnimate sym:sd:RadioButton:RID_TP_CUSTOMANIMATION_DURATION:RB_CLICKSEQUENCE +TriggerStart sym:sd:RadioButton:RID_TP_CUSTOMANIMATION_DURATION:RB_INTERACTIVE +Shape sym:sd:ListBox:RID_TP_CUSTOMANIMATION_DURATION:LB_TRIGGER + +*TabTransparency sym:CUI_HID_AREA_TRANSPARENCE +NoTransparency sym:cui:RadioButton:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_OFF +Transparency sym:cui:RadioButton:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_LINEAR +Gradient sym:cui:RadioButton:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_GRADIENT +TransparencyPercent sym:cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRANSPARENT +Type sym:cui:ListBox:RID_SVXPAGE_TRANSPARENCE:LB_TRGR_GRADIENT_TYPES +CenterX sym:cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_X +CenterY sym:cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_Y +Angle sym:cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_ANGLE +Border sym:cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_BORDER +StartValue sym:cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_START_VALUE +EndValue sym:cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_END_VALUE + +*TabTrendLineType sym:chart2:TabPage:TP_TRENDLINE +None sym:CHART2_HID_SCH_TRENDLINE_RB_NONE +Linear sym:CHART2_HID_SCH_TRENDLINE_RB_LINEAR +Logarithmic sym:CHART2_HID_SCH_TRENDLINE_RB_LOGARITHMIC +Exponential sym:CHART2_HID_SCH_TRENDLINE_RB_EXPONENTIAL +Power sym:CHART2_HID_SCH_TRENDLINE_RB_POWER +ShowEquation sym:CHART2_HID_SCH_TRENDLINE_SHOW_EQUATION +ShowCorrelationCoefficient sym:CHART2_HID_SCH_TRENDLINE_SHOW_R_SQUARED + + +*TabTrustedSources sym:XMLSECURITY_HID_XMLSEC_TP_TRUSTSOURCES +SourcesAdd sym:xmlsecurity:PushButton:RID_XMLSECTP_TRUSTSOURCES:PB_ADD_TRUSTCERT +SourcesView sym:xmlsecurity:PushButton:RID_XMLSECTP_TRUSTSOURCES:PB_VIEW_TRUSTCERT +SourcesRemove sym:xmlsecurity:PushButton:RID_XMLSECTP_TRUSTSOURCES:PB_REMOVE_TRUSTCERT +LocationsListBox sym:xmlsecurity:ListBox:RID_XMLSECTP_TRUSTSOURCES:LB_TRUSTFILELOC +LocationsAdd sym:xmlsecurity:PushButton:RID_XMLSECTP_TRUSTSOURCES:FL_ADD_TRUSTFILELOC +LocationsRemove sym:xmlsecurity:PushButton:RID_XMLSECTP_TRUSTSOURCES:FL_REMOVE_TRUSTFILELOC + +*TabType sym:SW_HID_FRM_STD +Width sym:sw:MetricField:TP_FRM_STD:ED_WIDTH +Height sym:sw:MetricField:TP_FRM_STD:ED_HEIGHT +RelativeWidth sym:sw:CheckBox:TP_FRM_STD:CB_REL_WIDTH +Automatic sym:sw:CheckBox:TP_FRM_STD:CB_AUTOWIDTH +RelativeHeight sym:sw:CheckBox:TP_FRM_STD:CB_REL_HEIGHT +KeepRatio sym:sw:CheckBox:TP_FRM_STD:CB_FIXEDRATIO +AutoHoehe sym:sw:CheckBox:TP_FRM_STD:CB_AUTOHEIGHT +AnchorAtPage sym:sw:RadioButton:TP_FRM_STD:RB_ANCHOR_PAGE +AnchorAtParagraph sym:sw:RadioButton:TP_FRM_STD:RB_ANCHOR_PARA +AnchorAtCharacter sym:sw:RadioButton:TP_FRM_STD:RB_ANCHOR_AT_CHAR +AnchorAsCharacter sym:sw:RadioButton:TP_FRM_STD:RB_ANCHOR_AS_CHAR +AnchorAtFrame sym:sw:RadioButton:TP_FRM_STD:RB_ANCHOR_FRAME +Horizontal sym:sw:ListBox:TP_FRM_STD:DLB_HORIZONTAL +HorizontalBy sym:sw:MetricField:TP_FRM_STD:ED_AT_HORZ_POS +HorizontalTo sym:sw:ListBox:TP_FRM_STD:LB_HORI_RELATION +MirrorOnEvenPages sym:sw:CheckBox:TP_FRM_STD:CB_MIRROR +Vertical sym:sw:ListBox:TP_FRM_STD:DLB_VERTICAL +VerticalBy sym:sw:MetricField:TP_FRM_STD:ED_AT_VERT_POS +VerticalTo sym:sw:ListBox:TP_FRM_STD:LB_VERT_RELATION +OriginalSize sym:sw:PushButton:TP_FRM_STD:BT_REALSIZE +FollowTextflow sym:sw:CheckBox:TP_FRM_STD:CB_FOLLOWTEXTFLOW + +*TabTypeSelect sym:DBACCESS_HID_TAB_WIZ_TYPE_SELECT +ColumnNames sym:dbaccess:MultiListBox:TAB_WIZ_TYPE_SELECT:LB_NEW_COLUMN_NAMES +ColumnName sym:DBACCESS_HID_TAB_ENT_COLUMNNAME +ColumnType sym:DBACCESS_HID_TAB_ENT_TYPE +ColumnLength sym:DBACCESS_HID_TAB_ENT_TEXT_LEN +ColumnAutoValue sym:dbaccess:NumericField:TAB_WIZ_TYPE_SELECT:ET_AUTO +ColumnAuto sym:dbaccess:PushButton:TAB_WIZ_TYPE_SELECT:PB_AUTO *TabWeblog sym:vnd.com.sun.star.blogger:settings -*TabXMLGeneral HID_XML_FILTER_TABPAGE_BASIC -FilterName HID_XML_FILTER_NAME -Application HID_XML_FILTER_APPLICATION -UIName HID_XML_FILTER_INTERFACE_NAME -FileExtension HID_XML_FILTER_EXTENSION -Comments HID_XML_FILTER_DESCRIPTION - -*TabXMLTransformation HID_XML_FILTER_TABPAGE_XSLT -DocType HID_XML_FILTER_DOCTYPE -DTD HID_XML_FILTER_DTD -DTDBrowse HID_XML_FILTER_DTD_BROWSE -XSLTForExport HID_XML_FILTER_EXPORT_XSLT -XSLTForExportBrowse HID_XML_FILTER_EXPORT_XSLT_BROWSE -XSLTForImport HID_XML_FILTER_IMPORT_XSLT -XSLTForImportBrowse HID_XML_FILTER_IMPORT_XSLT_BROWSE -TemplateForImprt HID_XML_FILTER_IMPORT_TEMPLATE -BrowseTemplateForImport HID_XML_FILTER_IMPORT_TEMPLATE_BROWSE - -*TabXMLSecDetails HID_XMLSEC_TP_DETAILS -XMLSecDetailsListBox HID_XMLSEC_CTRL_ELEMENTS -XMLSecDetailsEditField xmlsecurity:MultiLineEdit:RID_XMLSECTP_DETAILS:ML_ELEMENT - -*TabXMLSecGeneral HID_XMLSEC_TP_GENERAL - -*TabXMLSecCertPath HID_XMLSEC_TP_CERTPATH -XMLSecViewSigTree HID_XMLSEC_CTRL_VIEWSIGNATURES -XMLViewCertButton xmlsecurity:PushButton:RID_XMLSECTP_CERTPATH:BTN_VIEWCERT -XMLSecCertStatus xmlsecurity:MultiLineEdit:RID_XMLSECTP_CERTPATH:ML_CERTSTATUS - -*TabYErrorBars chart2:TabPage:TP_YERRORBAR -MeanValue HID_SCH_STATISTIK_MEANVALUE -NoFunction HID_SCH_STATISTIK_NO_ERROR -Variance HID_SCH_STATISTIK_VARIANT -StandardDeviation HID_SCH_STATISTIK_SIGMA -Percentage HID_SCH_STATISTIK_PERCENT -ErrorMargin HID_SCH_STATISTIK_BIGERROR -ConstantValue HID_SCH_STATISTIK_CONSTERROR -PercentageValue HID_SCH_STATISTIK_PERCENT_VALUE -ErrorMarginValue HID_SCH_STATISTIK_BIGERROR_VALUE -ConstantValuePlus HID_SCH_STATISTIK_PLUS_VALUE -ConstantValueMinus HID_SCH_STATISTIK_MINUS_VALUE -ErrorIndicator HID_SCH_CT_INDICATE - -*WordCount HID_DLG_WORDCOUNT +*TabXMLGeneral sym:FILTER_HID_XML_FILTER_TABPAGE_BASIC +FilterName sym:FILTER_HID_XML_FILTER_NAME +Application sym:FILTER_HID_XML_FILTER_APPLICATION +UIName sym:FILTER_HID_XML_FILTER_INTERFACE_NAME +FileExtension sym:FILTER_HID_XML_FILTER_EXTENSION +Comments sym:FILTER_HID_XML_FILTER_DESCRIPTION + +*TabXMLTransformation sym:FILTER_HID_XML_FILTER_TABPAGE_XSLT +DocType sym:FILTER_HID_XML_FILTER_DOCTYPE +DTD sym:FILTER_HID_XML_FILTER_DTD +DTDBrowse sym:FILTER_HID_XML_FILTER_DTD_BROWSE +XSLTForExport sym:FILTER_HID_XML_FILTER_EXPORT_XSLT +XSLTForExportBrowse sym:FILTER_HID_XML_FILTER_EXPORT_XSLT_BROWSE +XSLTForImport sym:FILTER_HID_XML_FILTER_IMPORT_XSLT +XSLTForImportBrowse sym:FILTER_HID_XML_FILTER_IMPORT_XSLT_BROWSE +TemplateForImprt sym:FILTER_HID_XML_FILTER_IMPORT_TEMPLATE +BrowseTemplateForImport sym:FILTER_HID_XML_FILTER_IMPORT_TEMPLATE_BROWSE + +*TabXMLSecDetails sym:XMLSECURITY_HID_XMLSEC_TP_DETAILS +XMLSecDetailsListBox sym:XMLSECURITY_HID_XMLSEC_CTRL_ELEMENTS +XMLSecDetailsEditField sym:xmlsecurity:MultiLineEdit:RID_XMLSECTP_DETAILS:ML_ELEMENT + +*TabXMLSecGeneral sym:XMLSECURITY_HID_XMLSEC_TP_GENERAL + +*TabXMLSecCertPath sym:XMLSECURITY_HID_XMLSEC_TP_CERTPATH +XMLSecViewSigTree sym:XMLSECURITY_HID_XMLSEC_CTRL_VIEWSIGNATURES +XMLViewCertButton sym:xmlsecurity:PushButton:RID_XMLSECTP_CERTPATH:BTN_VIEWCERT +XMLSecCertStatus sym:xmlsecurity:MultiLineEdit:RID_XMLSECTP_CERTPATH:ML_CERTSTATUS + +*TabYErrorBars sym:chart2:TabPage:TP_YERRORBAR +MeanValue sym:CHART2_HID_SCH_STATISTIK_MEANVALUE +NoFunction sym:CHART2_HID_SCH_STATISTIK_NO_ERROR +Variance sym:CHART2_HID_SCH_STATISTIK_VARIANT +StandardDeviation sym:CHART2_HID_SCH_STATISTIK_SIGMA +Percentage sym:CHART2_HID_SCH_STATISTIK_PERCENT +ErrorMargin sym:CHART2_HID_SCH_STATISTIK_BIGERROR +ConstantValue sym:CHART2_HID_SCH_STATISTIK_CONSTERROR +PercentageValue sym:CHART2_HID_SCH_STATISTIK_PERCENT_VALUE +ErrorMarginValue sym:CHART2_HID_SCH_STATISTIK_BIGERROR_VALUE +ConstantValuePlus sym:CHART2_HID_SCH_STATISTIK_PLUS_VALUE +ConstantValueMinus sym:CHART2_HID_SCH_STATISTIK_MINUS_VALUE +ErrorIndicator sym:CHART2_HID_SCH_CT_INDICATE + +*WordCount sym:SW_HID_DLG_WORDCOUNT diff --git a/testautomation/global/win/etoolbox.win b/testautomation/global/win/etoolbox.win index 7f4a8e86414a..e32938b1c44e 100755..100644 --- a/testautomation/global/win/etoolbox.win +++ b/testautomation/global/win/etoolbox.win @@ -9,53 +9,53 @@ ' Bibliography Database -*TB_Bibliography HID_BIB_DB_TBX -Table HID_BIB_TBX_TABLE -SearchKey HID_BIB_TBX_SEARCH -AutoFilter HID_BIB_TBX_AUTOFILTER -StandardFilter SID_FM_FILTERCRIT -RemoveFilter SID_FM_REMOVE_FILTER_SORT -ColumnArrangement HID_BIB_MAPPINGDLG -DataSource HID_BIB_CHANGESOURCE +*TB_Bibliography sym:EXTENSIONS_HID_BIB_DB_TBX +Table sym:EXTENSIONS_HID_BIB_TBX_TABLE +SearchKey sym:EXTENSIONS_HID_BIB_TBX_SEARCH +AutoFilter sym:EXTENSIONS_HID_BIB_TBX_AUTOFILTER +StandardFilter .uno:FilterCrit +RemoveFilter .uno:RemoveFilterSort +ColumnArrangement sym:EXTENSIONS_HID_BIB_MAPPINGDLG +DataSource sym:EXTENSIONS_HID_BIB_CHANGESOURCE -*TB_Help HID_HELP_TOOLBOX -Index HID_HELP_TOOLBOXITEM_INDEX -GoToStart HID_HELP_TOOLBOXITEM_START -Backward HID_HELP_TOOLBOXITEM_BACKWARD -Forward HID_HELP_TOOLBOXITEM_FORWARD -PrintButton HID_HELP_TOOLBOXITEM_PRINT -SetBookmarks HID_HELP_TOOLBOXITEM_BOOKMARKS -DisplayHelpAtStartUp HID_HELP_ONSTARTUP_BOX +*TB_Help sym:SFX2_HID_HELP_TOOLBOX +Index sym:SFX2_HID_HELP_TOOLBOXITEM_INDEX +GoToStart sym:SFX2_HID_HELP_TOOLBOXITEM_START +Backward sym:SFX2_HID_HELP_TOOLBOXITEM_BACKWARD +Forward sym:SFX2_HID_HELP_TOOLBOXITEM_FORWARD +PrintButton sym:SFX2_HID_HELP_TOOLBOXITEM_PRINT +SetBookmarks sym:SFX2_HID_HELP_TOOLBOXITEM_BOOKMARKS +DisplayHelpAtStartUp sym:SFX2_HID_HELP_ONSTARTUP_BOX -*TB_MacroControls HID_BASICIDE_CONTROLS -CommandButton SID_INSERT_PUSHBUTTON -CheckBox SID_INSERT_CHECKBOX -Label SID_INSERT_FIXEDTEXT -ListBox SID_INSERT_LISTBOX -HScrollBar SID_INSERT_HSCROLLBAR -VScrollBar SID_INSERT_VSCROLLBAR -HLine SID_INSERT_HFIXEDLINE -VLine SID_INSERT_VFIXEDLINE -FrameControl SID_INSERT_GROUPBOX -DateField SID_INSERT_DATEFIELD -TimeField SID_INSERT_TIMEFIELD -NumericField SID_INSERT_NUMERICFIELD -FormattedField SID_INSERT_FORMATTEDFIELD -FileControl SID_INSERT_FILECONTROL -Properties SID_SHOW_PROPERTYBROWSER -ImageControl SID_INSERT_IMAGECONTROL -OptionButton SID_INSERT_RADIOBUTTON -TextField SID_INSERT_EDIT -ComboBox SID_INSERT_COMBOBOX -Progressbar SID_INSERT_PROGRESSBAR -CurrencyField SID_INSERT_CURRENCYFIELD -PatternField SID_INSERT_PATTERNFIELD -SelectMode SID_INSERT_SELECT -Testmode SID_DIALOG_TESTMODE +*TB_MacroControls sym:HID_BASICIDE_CONTROLS +CommandButton .uno:InsertPushbutton +CheckBox .uno:Checkbox +Label .uno:InsertFixedText +ListBox .uno:InsertListbox +HScrollBar .uno:HScrollbar +VScrollBar .uno:VScrollbar +HLine .uno:HFixedLine +VLine .uno:VFixedLine +FrameControl .uno:Groupbox +DateField .uno:AddDateField +TimeField .uno:InsertTimeField +NumericField .uno:InsertNumericField +FormattedField .uno:InsertFormattedField +FileControl .uno:InsertFileControl +Properties .uno:ShowPropBrowser +ImageControl .uno:InsertImageControl +OptionButton .uno:Radiobutton +TextField .uno:InsertEdit +ComboBox .uno:Combobox +Progressbar .uno:ProgressBar +CurrencyField .uno:InsertCurrencyField +PatternField .uno:InsertPatternField +SelectMode .uno:SelectMode +Testmode .uno:TestMode -*TB_MacroRecording SID_RECORDING_FLOATWINDOW -StopRecording SID_STOP_RECORDING +*TB_MacroRecording .uno:MacroRecordingFloat +StopRecording .uno:StopRecording -*TB_Relation HID_TLB_RELATIONDESIGN -AddTables SID_FM_ADDTABLE +*TB_Relation sym:DBACCESS_HID_TLB_RELATIONDESIGN +AddTables .uno:AddTable diff --git a/testautomation/global/win/mathop.win b/testautomation/global/win/mathop.win index bf1e46434973..e4f7d3cf0ba0 100755..100644 --- a/testautomation/global/win/mathop.win +++ b/testautomation/global/win/mathop.win @@ -1,204 +1,204 @@ -*AuswahlMath HID_SMA_OPERATOR_WIN -TB_Gruppen HID_SMA_SELECTION_TBX -UnaereBinaere HID_SMA_UNBINOPS_CAT -Relationen HID_SMA_RELATIONS_CAT -MengenOperatoren HID_SMA_SETOPERATIONS_CAT -Funktionen HID_SMA_FUNCTIONS_CAT -Operatoren HID_SMA_OPERATORS_CAT -Attribute HID_SMA_ATTRIBUTES_CAT HID_SMA_ATTRIBUTS_CAT -Klammerungen HID_SMA_BRACKETS_CAT HID_SMA_PARENTHESES_CAT -Formatierungen HID_SMA_FORMAT_CAT -Sonstiges HID_SMA_MISC_CAT +*AuswahlMath sym:STARMATH_HID_SMA_OPERATOR_WIN +TB_Gruppen sym:STARMATH_HID_SMA_SELECTION_TBX +UnaereBinaere sym:STARMATH_HID_SMA_UNBINOPS_CAT +Relationen sym:STARMATH_HID_SMA_RELATIONS_CAT +MengenOperatoren sym:STARMATH_HID_SMA_SETOPERATIONS_CAT +Funktionen sym:STARMATH_HID_SMA_FUNCTIONS_CAT +Operatoren sym:STARMATH_HID_SMA_OPERATORS_CAT +Attribute sym:STARMATH_HID_SMA_ATTRIBUTES_CAT HID_SMA_ATTRIBUTS_CAT +Klammerungen sym:STARMATH_HID_SMA_BRACKETS_CAT HID_SMA_PARENTHESES_CAT +Formatierungen sym:STARMATH_HID_SMA_FORMAT_CAT +Sonstiges sym:STARMATH_HID_SMA_MISC_CAT -TB_UnaereBinaere HID_SMA_UNBINOPS_TBX -Plus HID_SMA_PLUSX -Minus HID_SMA_MINUSX -PlusMinus HID_SMA_PLUSMINUSX -MinusPlus HID_SMA_MINUSPLUSX -Additions HID_SMA_XPLUSY -Multiplikation HID_SMA_XCDOTY -MultiplikationKreuz HID_SMA_XTIMESY -MultiplikationStern HID_SMA_XSYMTIMESY -Subtraktions HID_SMA_XMINUSY -Division HID_SMA_XOVERY -DivisionDoppelpunkt HID_SMA_XDIVY -DivisionSchraegstrich HID_SMA_XSYMDIVIDEY -LogischesNICHT HID_SMA_NEGX -LogischesUND HID_SMA_XANDY -LogischesODER HID_SMA_XORY -Verkettung HID_SMA_XCIRCY +TB_UnaereBinaere sym:STARMATH_HID_SMA_UNBINOPS_TBX +Plus sym:STARMATH_HID_SMA_PLUSX +Minus sym:STARMATH_HID_SMA_MINUSX +PlusMinus sym:STARMATH_HID_SMA_PLUSMINUSX +MinusPlus sym:STARMATH_HID_SMA_MINUSPLUSX +Additions sym:STARMATH_HID_SMA_XPLUSY +Multiplikation sym:STARMATH_HID_SMA_XCDOTY +MultiplikationKreuz sym:STARMATH_HID_SMA_XTIMESY +MultiplikationStern sym:STARMATH_HID_SMA_XSYMTIMESY +Subtraktions sym:STARMATH_HID_SMA_XMINUSY +Division sym:STARMATH_HID_SMA_XOVERY +DivisionDoppelpunkt sym:STARMATH_HID_SMA_XDIVY +DivisionSchraegstrich sym:STARMATH_HID_SMA_XSYMDIVIDEY +LogischesNICHT sym:STARMATH_HID_SMA_NEGX +LogischesUND sym:STARMATH_HID_SMA_XANDY +LogischesODER sym:STARMATH_HID_SMA_XORY +Verkettung sym:STARMATH_HID_SMA_XCIRCY -TB_Relationen HID_SMA_RELATIONS_TBX -IstGleich HID_SMA_XEQY -IstUngleich HID_SMA_XNEQY -IstKongruentZu HID_SMA_XEQUIVY -IstOrthogonalZu HID_SMA_XORTHOY -IstKleinerAls HID_SMA_XLTY -IstGroesserAls HID_SMA_XGTY -IstUngefaehrGleich HID_SMA_XAPPROXY -Teilt HID_SMA_XDIVIDESY -TeiltNicht HID_SMA_XNDIVIDESY -IstParallelZu HID_SMA_XPARALLELY -IstKleinerGleich HID_SMA_XLESLANTY -IstGroesserGleich HID_SMA_XGESLANTY -IstAehnlichOderGlech HID_SMA_XSIMEQY -IstProportionalZu HID_SMA_XPROPY -IstKleinerGleich2 HID_SMA_XLEY -IstGroesserGleich2 HID_SMA_XGEY -IstAehnlichZu HID_SMA_XSIMY -StrebtGegen HID_SMA_XTOWARDY -DoppelterPfeilNachLinks HID_SMA_DLARROW -DoppelterPfeilNachLinksUndRechts HID_SMA_DLRARROW -DoppelterPfeilNachRechts HID_SMA_DRARROW +TB_Relationen sym:STARMATH_HID_SMA_RELATIONS_TBX +IstGleich sym:STARMATH_HID_SMA_XEQY +IstUngleich sym:STARMATH_HID_SMA_XNEQY +IstKongruentZu sym:STARMATH_HID_SMA_XEQUIVY +IstOrthogonalZu sym:STARMATH_HID_SMA_XORTHOY +IstKleinerAls sym:STARMATH_HID_SMA_XLTY +IstGroesserAls sym:STARMATH_HID_SMA_XGTY +IstUngefaehrGleich sym:STARMATH_HID_SMA_XAPPROXY +Teilt sym:STARMATH_HID_SMA_XDIVIDESY +TeiltNicht sym:STARMATH_HID_SMA_XNDIVIDESY +IstParallelZu sym:STARMATH_HID_SMA_XPARALLELY +IstKleinerGleich sym:STARMATH_HID_SMA_XLESLANTY +IstGroesserGleich sym:STARMATH_HID_SMA_XGESLANTY +IstAehnlichOderGlech sym:STARMATH_HID_SMA_XSIMEQY +IstProportionalZu sym:STARMATH_HID_SMA_XPROPY +IstKleinerGleich2 sym:STARMATH_HID_SMA_XLEY +IstGroesserGleich2 sym:STARMATH_HID_SMA_XGEY +IstAehnlichZu sym:STARMATH_HID_SMA_XSIMY +StrebtGegen sym:STARMATH_HID_SMA_XTOWARDY +DoppelterPfeilNachLinks sym:STARMATH_HID_SMA_DLARROW +DoppelterPfeilNachLinksUndRechts sym:STARMATH_HID_SMA_DLRARROW +DoppelterPfeilNachRechts sym:STARMATH_HID_SMA_DRARROW -TB_Mengenoperatoren HID_SMA_SETOPERATIONS_TBX -IstEnthaltenIn HID_SMA_XINY -IstNichtEnthaltenIn HID_SMA_XNOTINY -Enthaelt HID_SMA_XOWNSY -LeereMenge HID_SMA_EMPTYSET -Durchschnitt HID_SMA_XINTERSECTIONY -Vereinigung HID_SMA_XUNIONY -Differenz HID_SMA_XSETMINUSY -Quotientenmenge HID_SMA_XSLASHY -Aleph HID_SMA_ALEPH -Teilmenge HID_SMA_XSUBSETY -TeilmengeOderGleich HID_SMA_XSUBSETEQY -Obermenge HID_SMA_XSUPSETY -ObermengeOderGleich HID_SMA_XSUPSETEQY -NichtTeilmenge HID_SMA_XNSUBSETY -NichtTeilmengeOderGleich HID_SMA_XNSUBSETEQY -NichtObermenge HID_SMA_XNSUPSETY -NichtObermengeOderGleich HID_SMA_XNSUPSETEQY -MengeDerNatuerlichenZahlen HID_SMA_SETN -MengeDerGanzenZahlen HID_SMA_SETZ -MengeDerRationalenZahlen HID_SMA_SETQ -MengeDerReellenZahlen HID_SMA_SETR -MengeDerKomplexenZahlen HID_SMA_SETC +TB_Mengenoperatoren sym:STARMATH_HID_SMA_SETOPERATIONS_TBX +IstEnthaltenIn sym:STARMATH_HID_SMA_XINY +IstNichtEnthaltenIn sym:STARMATH_HID_SMA_XNOTINY +Enthaelt sym:STARMATH_HID_SMA_XOWNSY +LeereMenge sym:STARMATH_HID_SMA_EMPTYSET +Durchschnitt sym:STARMATH_HID_SMA_XINTERSECTIONY +Vereinigung sym:STARMATH_HID_SMA_XUNIONY +Differenz sym:STARMATH_HID_SMA_XSETMINUSY +Quotientenmenge sym:STARMATH_HID_SMA_XSLASHY +Aleph sym:STARMATH_HID_SMA_ALEPH +Teilmenge sym:STARMATH_HID_SMA_XSUBSETY +TeilmengeOderGleich sym:STARMATH_HID_SMA_XSUBSETEQY +Obermenge sym:STARMATH_HID_SMA_XSUPSETY +ObermengeOderGleich sym:STARMATH_HID_SMA_XSUPSETEQY +NichtTeilmenge sym:STARMATH_HID_SMA_XNSUBSETY +NichtTeilmengeOderGleich sym:STARMATH_HID_SMA_XNSUBSETEQY +NichtObermenge sym:STARMATH_HID_SMA_XNSUPSETY +NichtObermengeOderGleich sym:STARMATH_HID_SMA_XNSUPSETEQY +MengeDerNatuerlichenZahlen sym:STARMATH_HID_SMA_SETN +MengeDerGanzenZahlen sym:STARMATH_HID_SMA_SETZ +MengeDerRationalenZahlen sym:STARMATH_HID_SMA_SETQ +MengeDerReellenZahlen sym:STARMATH_HID_SMA_SETR +MengeDerKomplexenZahlen sym:STARMATH_HID_SMA_SETC -TB_Funktionen HID_SMA_FUNCTIONS_TBX -Absolutwert HID_SMA_ABSX -Fakultaet HID_SMA_FACTX -Quadratwurzel HID_SMA_SQRTX -NteWurzel HID_SMA_NROOTXY -NatuerlicheExponentialfunktion HID_SMA_EX -NatuerlicherLogarithmus HID_SMA_LNX -Exponentialfunktion HID_SMA_EXPX -Logarithmus HID_SMA_LOGX -Sinus HID_SMA_SINX -Cosinus HID_SMA_COSX -Tangens HID_SMA_TANX -Cotangens HID_SMA_COTX -Hyperbelsinus HID_SMA_SINHX -Hyperbelcosinus HID_SMA_COSHX -Hyperbeltangens HID_SMA_TANHX -Hyperbelcotangens HID_SMA_COTHX -Arcussinus HID_SMA_ARCSINX -Arcuscosinus HID_SMA_ARCCOSX -Arcustangens HID_SMA_ARCTANX -Arcuscotangens HID_SMA_ARCCOTX -Areahyperbelsinus HID_SMA_ARSINHX -Areahyperbelcosinus HID_SMA_ARCOSHX -Areahyperbeltangens HID_SMA_ARTANHX -Areahyperbelcotangens HID_SMA_ARCOTHX +TB_Funktionen sym:STARMATH_HID_SMA_FUNCTIONS_TBX +Absolutwert sym:STARMATH_HID_SMA_ABSX +Fakultaet sym:STARMATH_HID_SMA_FACTX +Quadratwurzel sym:STARMATH_HID_SMA_SQRTX +NteWurzel sym:STARMATH_HID_SMA_NROOTXY +NatuerlicheExponentialfunktion sym:STARMATH_HID_SMA_EX +NatuerlicherLogarithmus sym:STARMATH_HID_SMA_LNX +Exponentialfunktion sym:STARMATH_HID_SMA_EXPX +Logarithmus sym:STARMATH_HID_SMA_LOGX +Sinus sym:STARMATH_HID_SMA_SINX +Cosinus sym:STARMATH_HID_SMA_COSX +Tangens sym:STARMATH_HID_SMA_TANX +Cotangens sym:STARMATH_HID_SMA_COTX +Hyperbelsinus sym:STARMATH_HID_SMA_SINHX +Hyperbelcosinus sym:STARMATH_HID_SMA_COSHX +Hyperbeltangens sym:STARMATH_HID_SMA_TANHX +Hyperbelcotangens sym:STARMATH_HID_SMA_COTHX +Arcussinus sym:STARMATH_HID_SMA_ARCSINX +Arcuscosinus sym:STARMATH_HID_SMA_ARCCOSX +Arcustangens sym:STARMATH_HID_SMA_ARCTANX +Arcuscotangens sym:STARMATH_HID_SMA_ARCCOTX +Areahyperbelsinus sym:STARMATH_HID_SMA_ARSINHX +Areahyperbelcosinus sym:STARMATH_HID_SMA_ARCOSHX +Areahyperbeltangens sym:STARMATH_HID_SMA_ARTANHX +Areahyperbelcotangens sym:STARMATH_HID_SMA_ARCOTHX -TB_Operatoren HID_SMA_OPERATORS_TBX -Limes HID_SMA_LIMX -Summe HID_SMA_SUMX -Produkt HID_SMA_PRODX -Coprodukt HID_SMA_COPRODX -Integral HID_SMA_INTX -DoppeltesIntegral HID_SMA_IINTX -DreifachesIntegral HID_SMA_IIINTX +TB_Operatoren sym:STARMATH_HID_SMA_OPERATORS_TBX +Limes sym:STARMATH_HID_SMA_LIMX +Summe sym:STARMATH_HID_SMA_SUMX +Produkt sym:STARMATH_HID_SMA_PRODX +Coprodukt sym:STARMATH_HID_SMA_COPRODX +Integral sym:STARMATH_HID_SMA_INTX +DoppeltesIntegral sym:STARMATH_HID_SMA_IINTX +DreifachesIntegral sym:STARMATH_HID_SMA_IIINTX 'EsExistiertEin HID_SMA_EXISTSX -Kurvenintegral HID_SMA_LINTX -DoppeltesKurvenintegral HID_SMA_LLINTX -DreifachesKurvenintegral HID_SMA_LLLINTX +Kurvenintegral sym:STARMATH_HID_SMA_LINTX +DoppeltesKurvenintegral sym:STARMATH_HID_SMA_LLINTX +DreifachesKurvenintegral sym:STARMATH_HID_SMA_LLLINTX 'FuerAlle HID_SMA_FORALLX -UntereUndObereGrenze HID_SMA_FROMXTOY -UntereGrenze HID_SMA_FROMX -ObereGrenze HID_SMA_TOX +UntereUndObereGrenze sym:STARMATH_HID_SMA_FROMXTOY +UntereGrenze sym:STARMATH_HID_SMA_FROMX +ObereGrenze sym:STARMATH_HID_SMA_TOX -TB_Attribute HID_SMA_ATTRIBUTES_TBX -AccentNachRechts HID_SMA_ACUTEX -AccentNachLinks HID_SMA_GRAVEX -UmgekehrtesDach HID_SMA_CHECKX -Breve HID_SMA_BREVEX -Ueberstrich HID_SMA_BARX -Vektorpfeil HID_SMA_VECX -Dach HID_SMA_HATX -Tilde HID_SMA_TILDEX -Kreis HID_SMA_CIRCLEX -Punkt HID_SMA_DOTX -BreiterVektorpfeil HID_SMA_WIDEVECX -BreiteTilde HID_SMA_WIDETILDEX -BreitesDach HID_SMA_WIDEHATX -DoppelterPunkt HID_SMA_DDOTX -DreifacherPunkt HID_SMA_DDDOTX -LinieUeber HID_SMA_OVERLINEX -LinieUnter HID_SMA_UNDERLINEX -LinieDurch HID_SMA_OVERSTRIKEX -Transparent HID_SMA_PHANTOMX -Fettschrift HID_SMA_BOLDX -KursiveSchrift HID_SMA_ITALX -GroesseAendern HID_SMA_SIZEXY -FontAendern HID_SMA_FONTXY +TB_Attribute sym:STARMATH_HID_SMA_ATTRIBUTES_TBX +AccentNachRechts sym:STARMATH_HID_SMA_ACUTEX +AccentNachLinks sym:STARMATH_HID_SMA_GRAVEX +UmgekehrtesDach sym:STARMATH_HID_SMA_CHECKX +Breve sym:STARMATH_HID_SMA_BREVEX +Ueberstrich sym:STARMATH_HID_SMA_BARX +Vektorpfeil sym:STARMATH_HID_SMA_VECX +Dach sym:STARMATH_HID_SMA_HATX +Tilde sym:STARMATH_HID_SMA_TILDEX +Kreis sym:STARMATH_HID_SMA_CIRCLEX +Punkt sym:STARMATH_HID_SMA_DOTX +BreiterVektorpfeil sym:STARMATH_HID_SMA_WIDEVECX +BreiteTilde sym:STARMATH_HID_SMA_WIDETILDEX +BreitesDach sym:STARMATH_HID_SMA_WIDEHATX +DoppelterPunkt sym:STARMATH_HID_SMA_DDOTX +DreifacherPunkt sym:STARMATH_HID_SMA_DDDOTX +LinieUeber sym:STARMATH_HID_SMA_OVERLINEX +LinieUnter sym:STARMATH_HID_SMA_UNDERLINEX +LinieDurch sym:STARMATH_HID_SMA_OVERSTRIKEX +Transparent sym:STARMATH_HID_SMA_PHANTOMX +Fettschrift sym:STARMATH_HID_SMA_BOLDX +KursiveSchrift sym:STARMATH_HID_SMA_ITALX +GroesseAendern sym:STARMATH_HID_SMA_SIZEXY +FontAendern sym:STARMATH_HID_SMA_FONTXY -Unendlich HID_SMA_INFINITY -Partial HID_SMA_PARTIAL -Nabla HID_SMA_NABLA -EsExistiert HID_SMA_EXISTS -FuerAlle HID_SMA_FORALL -HQuer HID_SMA_HBAR -LambdaQuer HID_SMA_LAMBDABAR -Realteil HID_SMA_RE -Imaginaerteil HID_SMA_IM -WeierstrassP HID_SMA_WP -PfeilNachLinks HID_SMA_LEFTARROW -PfeilNachRechts HID_SMA_RIGHTARROW -PfeilNachOben HID_SMA_UPARROW -PfeilNachUnten HID_SMA_DOWNARROW -PunkteUnten HID_SMA_DOTSLOW -PunkteMittig HID_SMA_DOTSAXIS -PunkteVertikal HID_SMA_DOTSVERT -PunkteNachOben HID_SMA_DOTSUP -PunkteNachUnten HID_SMA_DOTSDOWN +Unendlich sym:STARMATH_HID_SMA_INFINITY +Partial sym:STARMATH_HID_SMA_PARTIAL +Nabla sym:STARMATH_HID_SMA_NABLA +EsExistiert sym:STARMATH_HID_SMA_EXISTS +FuerAlle sym:STARMATH_HID_SMA_FORALL +HQuer sym:STARMATH_HID_SMA_HBAR +LambdaQuer sym:STARMATH_HID_SMA_LAMBDABAR +Realteil sym:STARMATH_HID_SMA_RE +Imaginaerteil sym:STARMATH_HID_SMA_IM +WeierstrassP sym:STARMATH_HID_SMA_WP +PfeilNachLinks sym:STARMATH_HID_SMA_LEFTARROW +PfeilNachRechts sym:STARMATH_HID_SMA_RIGHTARROW +PfeilNachOben sym:STARMATH_HID_SMA_UPARROW +PfeilNachUnten sym:STARMATH_HID_SMA_DOWNARROW +PunkteUnten sym:STARMATH_HID_SMA_DOTSLOW +PunkteMittig sym:STARMATH_HID_SMA_DOTSAXIS +PunkteVertikal sym:STARMATH_HID_SMA_DOTSVERT +PunkteNachOben sym:STARMATH_HID_SMA_DOTSUP +PunkteNachUnten sym:STARMATH_HID_SMA_DOTSDOWN -TB_Klammerungen HID_SMA_BRACKETS_TBX -RundeKlammern HID_SMA_LRPARENTX -EckigeKlammern HID_SMA_LRBRACKETX -DoppelteEckigeKlammern HID_SMA_LRDBRACKETX -SpitzeKlammern HID_SMA_LRANGLEX -OperatorKlammern HID_SMA_LMRANGLEXY -GeschweifteKlammern HID_SMA_LRBRACEX -EinfacheLinien HID_SMA_LRLINEX -DoppelteLinien HID_SMA_LRDLINEX -GruppierungsKlammern HID_SMA_LRGROUPX -RundeKlammernSkalierbar HID_SMA_SLRPARENTX -EckigeKlammernSkalierbar HID_SMA_SLRBRACKETX -EckigeKlammernSkalierbar2 HID_SMA_SLRDBRACKETX -SpitzeKlammernSkalierbar HID_SMA_SLRANGLEX -GeschweifteKlammernSkalierbar HID_SMA_SLRBRACEX -EinfacheLinienSkalierbar HID_SMA_SLRLINEX -DoppelteLinienSkalierbar HID_SMA_SLRDLINEX -OperatorKlammernSkalierbar HID_SMA_SLMRANGLEXY -GeschweifteKlammerObenSkalierbar HID_SMA_XOVERBRACEY -GeschweifteKlammerUntenSkalierbar HID_SMA_XUNDERBRACEY +TB_Klammerungen sym:STARMATH_HID_SMA_BRACKETS_TBX +RundeKlammern sym:STARMATH_HID_SMA_LRPARENTX +EckigeKlammern sym:STARMATH_HID_SMA_LRBRACKETX +DoppelteEckigeKlammern sym:STARMATH_HID_SMA_LRDBRACKETX +SpitzeKlammern sym:STARMATH_HID_SMA_LRANGLEX +OperatorKlammern sym:STARMATH_HID_SMA_LMRANGLEXY +GeschweifteKlammern sym:STARMATH_HID_SMA_LRBRACEX +EinfacheLinien sym:STARMATH_HID_SMA_LRLINEX +DoppelteLinien sym:STARMATH_HID_SMA_LRDLINEX +GruppierungsKlammern sym:STARMATH_HID_SMA_LRGROUPX +RundeKlammernSkalierbar sym:STARMATH_HID_SMA_SLRPARENTX +EckigeKlammernSkalierbar sym:STARMATH_HID_SMA_SLRBRACKETX +EckigeKlammernSkalierbar2 sym:STARMATH_HID_SMA_SLRDBRACKETX +SpitzeKlammernSkalierbar sym:STARMATH_HID_SMA_SLRANGLEX +GeschweifteKlammernSkalierbar sym:STARMATH_HID_SMA_SLRBRACEX +EinfacheLinienSkalierbar sym:STARMATH_HID_SMA_SLRLINEX +DoppelteLinienSkalierbar sym:STARMATH_HID_SMA_SLRDLINEX +OperatorKlammernSkalierbar sym:STARMATH_HID_SMA_SLMRANGLEXY +GeschweifteKlammerObenSkalierbar sym:STARMATH_HID_SMA_XOVERBRACEY +GeschweifteKlammerUntenSkalierbar sym:STARMATH_HID_SMA_XUNDERBRACEY -TB_Formatierungen HID_SMA_FORMAT_TBX -NeueZeileBeginnen HID_SMA_NEWLINE -KleinerZwischenraum HID_SMA_SBLANK -Zwischenraum HID_SMA_BLANK -SubscriptRechts HID_SMA_RSUBX -VertikaleAnordnung2Elemente HID_SMA_BINOMXY -VertikaleAnordnung HID_SMA_STACK -MatrixAnordnung HID_SMA_MATRIX -SuperscriptRechts HID_SMA_RSUPX -LinksbuendigAusrichten HID_SMA_ALIGNLX -ZentriertHorizontalAusrichten HID_SMA_ALIGNCX -RechtsbuendigAusrichten HID_SMA_ALIGNRX -SubscriptLinks HID_SMA_LSUBX -SuperscriptLinks HID_SMA_LSUPX -SuperscriptOben HID_SMA_CSUPX -SubscriptUnten HID_SMA_CSUBX +TB_Formatierungen sym:STARMATH_HID_SMA_FORMAT_TBX +NeueZeileBeginnen sym:STARMATH_HID_SMA_NEWLINE +KleinerZwischenraum sym:STARMATH_HID_SMA_SBLANK +Zwischenraum sym:STARMATH_HID_SMA_BLANK +SubscriptRechts sym:STARMATH_HID_SMA_RSUBX +VertikaleAnordnung2Elemente sym:STARMATH_HID_SMA_BINOMXY +VertikaleAnordnung sym:STARMATH_HID_SMA_STACK +MatrixAnordnung sym:STARMATH_HID_SMA_MATRIX +SuperscriptRechts sym:STARMATH_HID_SMA_RSUPX +LinksbuendigAusrichten sym:STARMATH_HID_SMA_ALIGNLX +ZentriertHorizontalAusrichten sym:STARMATH_HID_SMA_ALIGNCX +RechtsbuendigAusrichten sym:STARMATH_HID_SMA_ALIGNRX +SubscriptLinks sym:STARMATH_HID_SMA_LSUBX +SuperscriptLinks sym:STARMATH_HID_SMA_LSUPX +SuperscriptOben sym:STARMATH_HID_SMA_CSUPX +SubscriptUnten sym:STARMATH_HID_SMA_CSUBX +OperatorenMath AuswahlMath diff --git a/testautomation/global/win/piloten.win b/testautomation/global/win/piloten.win index 08d512727471..24e79c54725a 100755..100644 --- a/testautomation/global/win/piloten.win +++ b/testautomation/global/win/piloten.win @@ -2,73 +2,73 @@ ' **** Autopilot Prsentation **** ' ************************************************************************************************ -*AutoPilotPraesentation1 HID_SD_AUTOPILOT_PAGE1 -Backbutton sd:PushButton:DLG_ASS:BUT_LAST -Nextbutton sd:PushButton:DLG_ASS:BUT_NEXT -EmptyPresentation sd:RadioButton:DLG_ASS:RB_PAGE1_EMPTY -FromTemplate sd:RadioButton:DLG_ASS:RB_PAGE1_TEMPLATE -TemplateRegion HID_SD_AUTOPILOT_REGION -TemplateList HID_SD_AUTOPILOT_TEMPLATES -Existingpresentation sd:RadioButton:DLG_ASS:RB_PAGE1_OPEN -ExistingOpen sd:PushButton:DLG_ASS:PB_PAGE1_OPEN -Existinglist HID_SD_AUTOPILOT_OPEN -Preview sd:CheckBox:DLG_ASS:CB_PREVIEW -Startwithwizard sd:CheckBox:DLG_ASS:CB_STARTWITH +*AutoPilotPraesentation1 sym:SD_HID_SD_AUTOPILOT_PAGE1 +Backbutton sym:sd:PushButton:DLG_ASS:BUT_LAST +Nextbutton sym:sd:PushButton:DLG_ASS:BUT_NEXT +EmptyPresentation sym:sd:RadioButton:DLG_ASS:RB_PAGE1_EMPTY +FromTemplate sym:sd:RadioButton:DLG_ASS:RB_PAGE1_TEMPLATE +TemplateRegion sym:SD_HID_SD_AUTOPILOT_REGION +TemplateList sym:SD_HID_SD_AUTOPILOT_TEMPLATES +Existingpresentation sym:sd:RadioButton:DLG_ASS:RB_PAGE1_OPEN +ExistingOpen sym:sd:PushButton:DLG_ASS:PB_PAGE1_OPEN +Existinglist sym:SD_HID_SD_AUTOPILOT_OPEN +Preview sym:sd:CheckBox:DLG_ASS:CB_PREVIEW +Startwithwizard sym:sd:CheckBox:DLG_ASS:CB_STARTWITH -*AutoPilotPraesentation2 HID_SD_AUTOPILOT_PAGE2 -Backbutton sd:PushButton:DLG_ASS:BUT_LAST -Nextbutton sd:PushButton:DLG_ASS:BUT_NEXT -Background HID_SD_AUTOPILOT_PAGETEMPLATES -Backgroundchoice sd:ListBox:DLG_ASS:LB_PAGE2_LAYOUT -Original sd:RadioButton:DLG_ASS:RB_PAGE2_MEDIUM5 -Screen sd:RadioButton:DLG_ASS:RB_PAGE2_MEDIUM1 -Overhead sd:RadioButton:DLG_ASS:RB_PAGE2_MEDIUM3 -Slide sd:RadioButton:DLG_ASS:RB_PAGE2_MEDIUM2 -Paper sd:RadioButton:DLG_ASS:RB_PAGE2_MEDIUM4 -Preview sd:CheckBox:DLG_ASS:CB_PREVIEW +*AutoPilotPraesentation2 sym:SD_HID_SD_AUTOPILOT_PAGE2 +Backbutton sym:sd:PushButton:DLG_ASS:BUT_LAST +Nextbutton sym:sd:PushButton:DLG_ASS:BUT_NEXT +Background sym:SD_HID_SD_AUTOPILOT_PAGETEMPLATES +Backgroundchoice sym:sd:ListBox:DLG_ASS:LB_PAGE2_LAYOUT +Original sym:sd:RadioButton:DLG_ASS:RB_PAGE2_MEDIUM5 +Screen sym:sd:RadioButton:DLG_ASS:RB_PAGE2_MEDIUM1 +Overhead sym:sd:RadioButton:DLG_ASS:RB_PAGE2_MEDIUM3 +Slide sym:sd:RadioButton:DLG_ASS:RB_PAGE2_MEDIUM2 +Paper sym:sd:RadioButton:DLG_ASS:RB_PAGE2_MEDIUM4 +Preview sym:sd:CheckBox:DLG_ASS:CB_PREVIEW -*AutoPilotPraesentation3 HID_SD_AUTOPILOT_PAGE3 -Backbutton sd:PushButton:DLG_ASS:BUT_LAST -Nextbutton sd:PushButton:DLG_ASS:BUT_NEXT -Effect sd:ListBox:DLG_ASS:LB_PAGE3_EFFECT -Speed sd:ListBox:DLG_ASS:LB_PAGE3_SPEED -Default sd:RadioButton:DLG_ASS:RB_PAGE3_LIVE -Automatic sd:RadioButton:DLG_ASS:RB_PAGE3_KIOSK -Timebutton sd:TimeField:DLG_ASS:TMF_PAGE3_TIME -Break sd:TimeField:DLG_ASS:TMF_PAGE3_BREAK -Logo sd:CheckBox:DLG_ASS:CB_PAGE3_LOGO -Preview sd:CheckBox:DLG_ASS:CB_PREVIEW +*AutoPilotPraesentation3 sym:SD_HID_SD_AUTOPILOT_PAGE3 +Backbutton sym:sd:PushButton:DLG_ASS:BUT_LAST +Nextbutton sym:sd:PushButton:DLG_ASS:BUT_NEXT +Effect sym:sd:ListBox:DLG_ASS:LB_PAGE3_EFFECT +Speed sym:sd:ListBox:DLG_ASS:LB_PAGE3_SPEED +Default sym:sd:RadioButton:DLG_ASS:RB_PAGE3_LIVE +Automatic sym:sd:RadioButton:DLG_ASS:RB_PAGE3_KIOSK +Timebutton sym:sd:TimeField:DLG_ASS:TMF_PAGE3_TIME +Break sym:sd:TimeField:DLG_ASS:TMF_PAGE3_BREAK +Logo sym:sd:CheckBox:DLG_ASS:CB_PAGE3_LOGO +Preview sym:sd:CheckBox:DLG_ASS:CB_PREVIEW -*AutoPilotPraesentation4 HID_SD_AUTOPILOT_PAGE4 -Backbutton sd:PushButton:DLG_ASS:BUT_LAST -Nextbutton sd:PushButton:DLG_ASS:BUT_NEXT -AddName sd:Edit:DLG_ASS:EDT_PAGE4_ASKNAME -AddTopic sd:Edit:DLG_ASS:EDT_PAGE4_ASKTOPIC -Askinformation sd:MultiLineEdit:DLG_ASS:EDT_PAGE4_ASKINFORMATION +*AutoPilotPraesentation4 sym:SD_HID_SD_AUTOPILOT_PAGE4 +Backbutton sym:sd:PushButton:DLG_ASS:BUT_LAST +Nextbutton sym:sd:PushButton:DLG_ASS:BUT_NEXT +AddName sym:sd:Edit:DLG_ASS:EDT_PAGE4_ASKNAME +AddTopic sym:sd:Edit:DLG_ASS:EDT_PAGE4_ASKTOPIC +Askinformation sym:sd:MultiLineEdit:DLG_ASS:EDT_PAGE4_ASKINFORMATION -*AutoPilotPraesentation5 HID_SD_AUTOPILOT_PAGE5 -Backbutton sd:PushButton:DLG_ASS:BUT_LAST -Nextbutton sd:PushButton:DLG_ASS:BUT_NEXT -Summary sd:CheckBox:DLG_ASS:CB_PAGE5_SUMMARY -Preview sd:CheckBox:DLG_ASS:CB_PREVIEW +*AutoPilotPraesentation5 sym:SD_HID_SD_AUTOPILOT_PAGE5 +Backbutton sym:sd:PushButton:DLG_ASS:BUT_LAST +Nextbutton sym:sd:PushButton:DLG_ASS:BUT_NEXT +Summary sym:sd:CheckBox:DLG_ASS:CB_PAGE5_SUMMARY +Preview sym:sd:CheckBox:DLG_ASS:CB_PREVIEW -*AutoPilotEuroKonverter HID_DLGCONVERT_DIALOG -Abbrechen HID_DLGCONVERT_CBCANCEL -Hilfe HID_DLGCONVERT_CBHELP -Zurueck HID_DLGCONVERT_CBBACK -Konvertieren HID_DLGCONVERT_CBGOON -AktuellesDokument HID_DLGCONVERT_OBFILE -Verzeichnis HID_DLGCONVERT_OBDIR -Waehrungen HID_DLGCONVERT_COMBOBOX1 -Quelle HID_DLGCONVERT_TBSOURCE -QuelleSuchen HID_DLGCONVERT_CBSOURCEOPEN -Unterverzeichnisse HID_DLGCONVERT_CHECKRECURSIVE -FelderUndTabellen HID_DLGCONVERT_CHKTEXTDOCUMENTS -TabellenschutzAufheben HID_DLGCONVERT_CHKPROTECT -Ziel HID_DLGCONVERT_TBTARGET -ZielSuchen HID_DLGCONVERT_CBTARGETOPEN -KomplettesDokument HID_DLGCONVERT_CHECKBOX1 -Zellvorlagen HID_DLGCONVERT_OPTIONBUTTON1 -WaehrungszellenTabellenblatt HID_DLGCONVERT_OPTIONBUTTON2 -WaehrungszellenDokument HID_DLGCONVERT_OPTIONBUTTON3 -AusgewaehlterBereich HID_DLGCONVERT_OPTIONBUTTON4 +*AutoPilotEuroKonverter sym:WIZARDS_HID_DLGCONVERT_DIALOG +Abbrechen sym:WIZARDS_HID_DLGCONVERT_CBCANCEL +Hilfe sym:WIZARDS_HID_DLGCONVERT_CBHELP +Zurueck sym:WIZARDS_HID_DLGCONVERT_CBBACK +Konvertieren sym:WIZARDS_HID_DLGCONVERT_CBGOON +AktuellesDokument sym:WIZARDS_HID_DLGCONVERT_OBFILE +Verzeichnis sym:WIZARDS_HID_DLGCONVERT_OBDIR +Waehrungen sym:WIZARDS_HID_DLGCONVERT_COMBOBOX1 +Quelle sym:WIZARDS_HID_DLGCONVERT_TBSOURCE +QuelleSuchen sym:WIZARDS_HID_DLGCONVERT_CBSOURCEOPEN +Unterverzeichnisse sym:WIZARDS_HID_DLGCONVERT_CHECKRECURSIVE +FelderUndTabellen sym:WIZARDS_HID_DLGCONVERT_CHKTEXTDOCUMENTS +TabellenschutzAufheben sym:WIZARDS_HID_DLGCONVERT_CHKPROTECT +Ziel sym:WIZARDS_HID_DLGCONVERT_TBTARGET +ZielSuchen sym:WIZARDS_HID_DLGCONVERT_CBTARGETOPEN +KomplettesDokument sym:WIZARDS_HID_DLGCONVERT_CHECKBOX1 +Zellvorlagen sym:WIZARDS_HID_DLGCONVERT_OPTIONBUTTON1 +WaehrungszellenTabellenblatt sym:WIZARDS_HID_DLGCONVERT_OPTIONBUTTON2 +WaehrungszellenDokument sym:WIZARDS_HID_DLGCONVERT_OPTIONBUTTON3 +AusgewaehlterBereich sym:WIZARDS_HID_DLGCONVERT_OPTIONBUTTON4 diff --git a/testautomation/global/win/reportdesigner.win b/testautomation/global/win/reportdesigner.win index f5e0baccf1ba..69b48beb4549 100755..100644 --- a/testautomation/global/win/reportdesigner.win +++ b/testautomation/global/win/reportdesigner.win @@ -1,7 +1,7 @@ -*ReportDesign UID_RPT_RPT_APP_VIEW +*ReportDesign sym:REPORTDESIGN_UID_RPT_RPT_APP_VIEW '--64509: TABPAGE: UID_APP_DESIGNVIEW -ReportWindow UID_RPT_REPORTWINDOW -SectionWindow UID_RPT_SECTIONSWINDOW +ReportWindow sym:REPORTDESIGN_UID_RPT_REPORTWINDOW +SectionWindow sym:REPORTDESIGN_UID_RPT_SECTIONSWINDOW ' HID_STARTMARKER ' HID_START_TITLE ' HID_START_IMAGE @@ -12,75 +12,75 @@ SectionWindow UID_RPT_SECTIONSWINDOW ' HID_START_TITLE ' HID_START_IMAGE ' UID_VIEWSWINDOW -' HID_REPORTSECTION +' sym:REPORTDESIGN_HID_REPORTSECTION ' HID_ENDMARKER -' HID_REPORTSECTION +' sym:REPORTDESIGN_HID_REPORTSECTION ' HID_ENDMARKER -' HID_REPORTSECTION +' sym:REPORTDESIGN_HID_REPORTSECTION ' HID_ENDMARKER -*ReportPageNumber HID_RPT_PAGENUMBERS_DLG -PageN reportdesign:RadioButton:RID_PAGENUMBERS:RB_PAGE_N -PageNofM reportdesign:RadioButton:RID_PAGENUMBERS:RB_PAGE_N_OF_M -TopOfPage reportdesign:RadioButton:RID_PAGENUMBERS:RB_PAGE_TOPPAGE -BottomOfpage reportdesign:RadioButton:RID_PAGENUMBERS:RB_PAGE_BOTTOMPAGE -PageNumberAlignment reportdesign:ListBox:RID_PAGENUMBERS:LST_ALIGNMENT -ShowNumberOnFirstPage reportdesign:CheckBox:RID_PAGENUMBERS:CB_SHOWNUMBERONFIRSTPAGE +*ReportPageNumber sym:REPORTDESIGN_HID_RPT_PAGENUMBERS_DLG +PageN sym:reportdesign:RadioButton:RID_PAGENUMBERS:RB_PAGE_N +PageNofM sym:reportdesign:RadioButton:RID_PAGENUMBERS:RB_PAGE_N_OF_M +TopOfPage sym:reportdesign:RadioButton:RID_PAGENUMBERS:RB_PAGE_TOPPAGE +BottomOfpage sym:reportdesign:RadioButton:RID_PAGENUMBERS:RB_PAGE_BOTTOMPAGE +PageNumberAlignment sym:reportdesign:ListBox:RID_PAGENUMBERS:LST_ALIGNMENT +ShowNumberOnFirstPage sym:reportdesign:CheckBox:RID_PAGENUMBERS:CB_SHOWNUMBERONFIRSTPAGE -*ReportDateTime HID_RPT_DATETIME_DLG -IncludeDate reportdesign:CheckBox:RID_DATETIME_DLG:CB_DATE -DateFormat reportdesign:ListBox:RID_DATETIME_DLG:LB_DATE_TYPE -IncludeTime reportdesign:CheckBox:RID_DATETIME_DLG:CB_TIME -TimeFormat reportdesign:ListBox:RID_DATETIME_DLG:LB_TIME_TYPE +*ReportDateTime sym:REPORTDESIGN_HID_RPT_DATETIME_DLG +IncludeDate sym:reportdesign:CheckBox:RID_DATETIME_DLG:CB_DATE +DateFormat sym:reportdesign:ListBox:RID_DATETIME_DLG:LB_DATE_TYPE +IncludeTime sym:reportdesign:CheckBox:RID_DATETIME_DLG:CB_TIME +TimeFormat sym:reportdesign:ListBox:RID_DATETIME_DLG:LB_TIME_TYPE -*ReportSortingGrouping HID_RPT_GROUPSSORTING_DLG -Groups HID_RPT_GROUPSBRW -FieldExpression HID_RPT_FIELDEXPRESSION -MoveUp HID_RPT_GROUPSORT_MOVE_UP -MoveDown HID_RPT_GROUPSORT_MOVE_DOWN -Sorting reportdesign:ListBox:RID_GROUPS_SORTING:LST_ORDER -GroupHeader reportdesign:ListBox:RID_GROUPS_SORTING:LST_HEADERLST -GroupFooter reportdesign:ListBox:RID_GROUPS_SORTING:LST_FOOTERLST -GroupOn reportdesign:ListBox:RID_GROUPS_SORTING:LST_GROUPONLST -GroupIntervall reportdesign:NumericField:RID_GROUPS_SORTING:ED_GROUPINTERVALLST -KeepTogether reportdesign:ListBox:RID_GROUPS_SORTING:LST_KEEPTOGETHERLST +*ReportSortingGrouping sym:REPORTDESIGN_HID_RPT_GROUPSSORTING_DLG +Groups sym:REPORTDESIGN_HID_RPT_GROUPSBRW +FieldExpression sym:REPORTDESIGN_HID_RPT_FIELDEXPRESSION +MoveUp sym:REPORTDESIGN_HID_RPT_GROUPSORT_MOVE_UP +MoveDown sym:REPORTDESIGN_HID_RPT_GROUPSORT_MOVE_DOWN +Sorting sym:reportdesign:ListBox:RID_GROUPS_SORTING:LST_ORDER +GroupHeader sym:reportdesign:ListBox:RID_GROUPS_SORTING:LST_HEADERLST +GroupFooter sym:reportdesign:ListBox:RID_GROUPS_SORTING:LST_FOOTERLST +GroupOn sym:reportdesign:ListBox:RID_GROUPS_SORTING:LST_GROUPONLST +GroupIntervall sym:reportdesign:NumericField:RID_GROUPS_SORTING:ED_GROUPINTERVALLST +KeepTogether sym:reportdesign:ListBox:RID_GROUPS_SORTING:LST_KEEPTOGETHERLST -*ReportNavigator HID_RPT_NAVIGATOR_DLG -NavigatorTree HID_REPORT_NAVIGATOR_TREE +*ReportNavigator sym:REPORTDESIGN_HID_RPT_NAVIGATOR_DLG +NavigatorTree sym:REPORTDESIGN_HID_REPORT_NAVIGATOR_TREE -*ReportGeneralProperties HID_RPT_PROPDLG_TAB_GENERAL -NameText HID_PROP_NAME -GroupKeepTogether HID_RPT_PROP_GROUPKEEPTOGETHER -PageHeader HID_RPT_PROP_PAGEHEADEROPTION -PageFooter HID_RPT_PROP_PAGEFOOTEROPTION -PrintRepeatedValues HID_RPT_PROP_PRINTREPEATEDVALUES -Height HID_RPT_PROP_RPT_HEIGHT -Width HID_RPT_PROP_RPT_WIDTH -PositionX HID_RPT_PROP_RPT_POSITIONX -PositionY HID_RPT_PROP_RPT_POSITIONY -ConditionalPrintExpression HID_RPT_PROP_CONDITIONALPRINTEXPRESSION -BackgroundColor HID_RPT_PROP_BACKCOLOR -BackgroundTransparent HID_RPT_PROP_BACKTRANSPARENT -Font HID_RPT_PROP_RPT_FONT -FontTypeDlg UID_PROP_DLG_FONT_TYPE -PrintWhenGroupChange HID_RPT_PROP_PRINTWHENGROUPCHANGE -ControlBackgroundTransparent HID_RPT_PROP_CONTROLBACKGROUNDTRANSPARENT +*ReportGeneralProperties sym:REPORTDESIGN_HID_RPT_PROPDLG_TAB_GENERAL +NameText sym:EXTENSIONS_HID_PROP_NAME +GroupKeepTogether sym:REPORTDESIGN_HID_RPT_PROP_GROUPKEEPTOGETHER +PageHeader sym:REPORTDESIGN_HID_RPT_PROP_PAGEHEADEROPTION +PageFooter sym:REPORTDESIGN_HID_RPT_PROP_PAGEFOOTEROPTION +PrintRepeatedValues sym:REPORTDESIGN_HID_RPT_PROP_PRINTREPEATEDVALUES +Height sym:REPORTDESIGN_HID_RPT_PROP_RPT_HEIGHT +Width sym:REPORTDESIGN_HID_RPT_PROP_RPT_WIDTH +PositionX sym:REPORTDESIGN_HID_RPT_PROP_RPT_POSITIONX +PositionY sym:REPORTDESIGN_HID_RPT_PROP_RPT_POSITIONY +ConditionalPrintExpression sym:REPORTDESIGN_HID_RPT_PROP_CONDITIONALPRINTEXPRESSION +BackgroundColor sym:REPORTDESIGN_HID_RPT_PROP_BACKCOLOR +BackgroundTransparent sym:REPORTDESIGN_HID_RPT_PROP_BACKTRANSPARENT +Font sym:REPORTDESIGN_HID_RPT_PROP_RPT_FONT +FontTypeDlg sym:EXTENSIONS_UID_PROP_DLG_FONT_TYPE +PrintWhenGroupChange sym:REPORTDESIGN_HID_RPT_PROP_PRINTWHENGROUPCHANGE +ControlBackgroundTransparent sym:REPORTDESIGN_HID_RPT_PROP_CONTROLBACKGROUNDTRANSPARENT -*ReportDataProperties HID_RPT_PROPDLG_TAB_DATA -ContentType HID_PROP_CURSORSOURCETYPE -Content HID_PROP_CURSORSOURCE -OpenQueryDesign UID_PROP_DLG_SQLCOMMAND -AnalyzeSQLCommand HID_PROP_ESCAPE_PROCESSING -Filter HID_PROP_FILTER -FilterDLGButton UID_PROP_DLG_FILTER -DataField HID_RPT_PROP_DATAFIELD -OpenFormularWizard UID_RPT_PROP_FORMULA +*ReportDataProperties sym:REPORTDESIGN_HID_RPT_PROPDLG_TAB_DATA +ContentType sym:EXTENSIONS_HID_PROP_CURSORSOURCETYPE +Content sym:EXTENSIONS_HID_PROP_CURSORSOURCE +OpenQueryDesign sym:EXTENSIONS_UID_PROP_DLG_SQLCOMMAND +AnalyzeSQLCommand sym:EXTENSIONS_HID_PROP_ESCAPE_PROCESSING +Filter sym:EXTENSIONS_HID_PROP_FILTER +FilterDLGButton sym:EXTENSIONS_UID_PROP_DLG_FILTER +DataField sym:REPORTDESIGN_HID_RPT_PROP_DATAFIELD +OpenFormularWizard sym:REPORTDESIGN_UID_RPT_PROP_FORMULA -*ReportPropertiesTabControl HID_FM_PROPDLG_TABCTR -ReportGeneralProperties HID_RPT_PROPDLG_TAB_GENERAL -ReportDataProperties HID_RPT_PROPDLG_TAB_DATA +*ReportPropertiesTabControl sym:EXTENSIONS_HID_FM_PROPDLG_TABCTR +ReportGeneralProperties sym:REPORTDESIGN_HID_RPT_PROPDLG_TAB_GENERAL +ReportDataProperties sym:REPORTDESIGN_HID_RPT_PROPDLG_TAB_DATA -*ReportAddField HID_RPT_FIELD_SEL_WIN -ReportAddFieldList HID_RPT_FIELD_SEL +*ReportAddField sym:REPORTDESIGN_HID_RPT_FIELD_SEL_WIN +ReportAddFieldList sym:REPORTDESIGN_HID_RPT_FIELD_SEL -*ConditionalFormating HID_RPT_CONDFORMAT_DLG +*ConditionalFormating sym:REPORTDESIGN_HID_RPT_CONDFORMAT_DLG diff --git a/testautomation/global/win/spadmin.win b/testautomation/global/win/spadmin.win index 1e8de27e9b15..09636f210f70 100755..100644 --- a/testautomation/global/win/spadmin.win +++ b/testautomation/global/win/spadmin.win @@ -1,107 +1,107 @@ -*SPRenamePrinterDLG padmin:ModalDialog:RID_STRINGQUERYDLG -EFPrinterName padmin:Edit:RID_STRINGQUERYDLG:RID_STRQRY_EDT_NEWNAME -CBUnidentifiedObject padmin:ComboBox:RID_STRINGQUERYDLG:RID_STRQRY_BOX_NEWNAME - -*SPFontNameDLG padmin:ModalDialog:RID_FONTNAMEDIALOG -PBRename padmin:PushButton:RID_FONTNAMEDIALOG:RID_FNTNM_BTN_RENAME -PBRemove padmin:PushButton:RID_FONTNAMEDIALOG:RID_FNTNM_BTN_REMOVE -PBAdd padmin:PushButton:RID_FONTNAMEDIALOG:RID_FNTNM_BTN_IMPORT -LBFontList padmin:ListBox:RID_FONTNAMEDIALOG:RID_FNTNM_LB_FONTS - -*SPFontImportDLG padmin:ModalDialog:RID_FONTIMPORT_DIALOG -PBSelectAll padmin:PushButton:RID_FONTIMPORT_DIALOG:RID_FIMP_BTN_SELECTALL -LBFontList padmin:ListBox:RID_FONTIMPORT_DIALOG:RID_FIMP_BOX_NEWFONTS -EFFontPath padmin:Edit:RID_FONTIMPORT_DIALOG:RID_FIMP_EDT_FROM -PBFontPath padmin:PushButton:RID_FONTIMPORT_DIALOG:RID_FIMP_BTN_FROM -CBCreateSoftlinks padmin:CheckBox:RID_FONTIMPORT_DIALOG:RID_FIMP_BOX_LINKONLY - -*FilePicker HID_EXPLORERDLG_FILE -EFFileName HID_FILEDLG_AUTOCOMPLETEBOX -LBFileList fpicker:ListBox:DLG_SVT_EXPLORERFILE:LB_EXPLORERFILE_FILETYPE -PBSelect fpicker:PushButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_OPEN -PBUpOneLevel fpicker:MenuButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_UP -PBNewDir fpicker:ImageButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_NEWFOLDER -MBDefaultDir fpicker:MenuButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_STANDARD -TLBStandard HID_FILEDLG_STANDARD - -*SPPrinterWizard padmin:ModalDialog:RID_ADD_PRINTER_DIALOG -TabPWDeviceSelector padmin:TabPage:RID_ADDP_PAGE_CHOOSEDEV -TabPWDriverSelector padmin:TabPage:RID_ADDP_PAGE_CHOOSEDRIVER -TabPWQueueCommand padmin:TabPage:RID_ADDP_PAGE_COMMAND -TabPWPrinterName padmin:TabPage:RID_ADDP_PAGE_NAME -PBBack padmin:PushButton:RID_ADD_PRINTER_DIALOG:RID_ADDP_BTN_PREV -PBNext padmin:PushButton:RID_ADD_PRINTER_DIALOG:RID_ADDP_BTN_NEXT - -*TabPWDeviceSelector padmin:TabPage:RID_ADDP_PAGE_CHOOSEDEV -RBAdd padmin:RadioButton:RID_ADDP_PAGE_CHOOSEDEV:RID_ADDP_CHDEV_BTN_PRINTER -RBFax padmin:RadioButton:RID_ADDP_PAGE_CHOOSEDEV:RID_ADDP_CHDEV_BTN_FAX -RBPdf padmin:RadioButton:RID_ADDP_PAGE_CHOOSEDEV:RID_ADDP_CHDEV_BTN_PDF -RBImport padmin:RadioButton:RID_ADDP_PAGE_CHOOSEDEV:RID_ADDP_CHDEV_BTN_OLD - -*TabPWDriverSelector padmin:TabPage:RID_ADDP_PAGE_CHOOSEDRIVER -LBChooseDriver padmin:ListBox:RID_ADDP_PAGE_CHOOSEDRIVER:RID_ADDP_CHDRV_BOX_DRIVER -PBImport padmin:PushButton:RID_ADDP_PAGE_CHOOSEDRIVER:RID_ADDP_CHDRV_BTN_ADD -PBDelete padmin:PushButton:RID_ADDP_PAGE_CHOOSEDRIVER:RID_ADDP_CHDRV_BTN_REMOVE - -*TabPWFaxDriverSelector padmin:TabPage:RID_ADDP_PAGE_FAXDRIVER -RBDefault padmin:RadioButton:RID_ADDP_PAGE_FAXDRIVER:RID_ADDP_FAXDRV_BTN_DEFAULT -RBSelect padmin:RadioButton:RID_ADDP_PAGE_FAXDRIVER:RID_ADDP_FAXDRV_BTN_SELECT - -*TabPWQueueCommand padmin:TabPage:RID_ADDP_PAGE_COMMAND -CBCommand padmin:ComboBox:RID_ADDP_PAGE_COMMAND:RID_ADDP_CMD_BOX_COMMAND -PBHelp padmin:PushButton:RID_ADDP_PAGE_COMMAND:RID_ADDP_CMD_BTN_HELP -EFPdfDir padmin:Edit:RID_ADDP_PAGE_COMMAND:RID_ADDP_CMD_EDT_PDFDIR -PBPdfDir padmin:PushButton:RID_ADDP_PAGE_COMMAND:RID_ADDP_CMD_BTN_PDFDIR - -*TabPWPrinterName padmin:TabPage:RID_ADDP_PAGE_NAME -EFPrinterName padmin:Edit:RID_ADDP_PAGE_NAME:RID_ADDP_NAME_EDT_NAME -EFFaxName padmin:Edit:RID_ADDP_PAGE_NAME:RID_ADDP_NAME_EDT_FAXNAME -CBUseAsDefault padmin:CheckBox:RID_ADDP_PAGE_NAME:RID_ADDP_NAME_BOX_DEFAULT -CBRemoveFaxNumber padmin:CheckBox:RID_ADDP_PAGE_NAME:RID_ADDP_NAME_BOX_FAXSWALLOW - -*SPAdmin padmin:ModalDialog:RID_PADIALOG -LBPrinters padmin:ListBox:RID_PADIALOG:RID_PA_LB_DEV -PBProperties padmin:PushButton:RID_PADIALOG:RID_PA_BTN_CONF -PBRename padmin:PushButton:RID_PADIALOG:RID_PA_BTN_RENAME -PBDefault padmin:PushButton:RID_PADIALOG:RID_PA_BTN_STD -PBRemove padmin:PushButton:RID_PADIALOG:RID_PA_BTN_DEL -PBTestpage padmin:PushButton:RID_PADIALOG:RID_PA_TESTPAGE -PBNewPrinter padmin:PushButton:RID_PADIALOG:RID_PA_BTN_ADD - -*TabSPACommand padmin:TabPage:RID_RTS_COMMANDPAGE -EFlpr padmin:ComboBox:RID_RTS_COMMANDPAGE:RID_RTS_CMD_CB_COMMANDS -LBConfigureAs padmin:ListBox:RID_RTS_COMMANDPAGE:RID_RTS_CMD_LB_CONFIGURE -PBPdfDir padmin:PushButton:RID_RTS_COMMANDPAGE:RID_RTS_CMD_BTN_PDFDIR -EFPdfDir padmin:Edit:RID_RTS_COMMANDPAGE:RID_RTS_CMD_EDT_PDFDIR -CBRemoveFaxNumber padmin:CheckBox:RID_RTS_COMMANDPAGE:RID_RTS_CMD_BOX_SWALLOWFAXNO -PBHelp padmin:PushButton:RID_RTS_COMMANDPAGE:RID_RTS_CMD_BTN_HELP -PBRemove padmin:PushButton:RID_RTS_COMMANDPAGE:RID_RTS_CMD_BTN_REMOVE - -*TabSPAPaper padmin:TabPage:RID_RTS_PAPERPAGE -LBPaperSize padmin:ListBox:RID_RTS_PAPERPAGE:RID_RTS_PAPER_PAPER_BOX -LBOrientation padmin:ListBox:RID_RTS_PAPERPAGE:RID_RTS_PAPER_ORIENTATION_BOX -LBDuplex padmin:ListBox:RID_RTS_PAPERPAGE:RID_RTS_PAPER_DUPLEX_BOX -LBPaperTray padmin:ListBox:RID_RTS_PAPERPAGE:RID_RTS_PAPER_SLOT_BOX - -*TabSPADevice padmin:TabPage:RID_RTS_DEVICEPAGE -LBOption padmin:ListBox:RID_RTS_DEVICEPAGE:RID_RTS_DEVICE_PPDKEY_BOX -LBCurrentValue padmin:ListBox:RID_RTS_DEVICEPAGE:RID_RTS_DEVICE_PPDVALUE_BOX -LBColor padmin:ListBox:RID_RTS_DEVICEPAGE:RID_RTS_DEVICE_SPACE_BOX - -*TabSPAFontReplacement padmin:TabPage:RID_RTS_FONTSUBSTPAGE -MLReplacedFonts padmin:MultiListBox:RID_RTS_FONTSUBSTPAGE:RID_RTS_FS_SUBST_BOX -CBReplaceFont padmin:ComboBox:RID_RTS_FONTSUBSTPAGE:RID_RTS_FS_FROM_BOX -LBByPrinterFont padmin:ListBox:RID_RTS_FONTSUBSTPAGE:RID_RTS_FS_TO_BOX -PBAdd padmin:PushButton:RID_RTS_FONTSUBSTPAGE:RID_RTS_FS_ADD_BTN -PBRemove padmin:PushButton:RID_RTS_FONTSUBSTPAGE:RID_RTS_FS_REMOVE_BTN -CBEnableReplacement padmin:CheckBox:RID_RTS_FONTSUBSTPAGE:RID_RTS_FS_ENABLE_BTN - -*TabSPAOther padmin:TabPage:RID_RTS_OTHERPAGE -MFLeftMargin padmin:MetricField:RID_RTS_OTHERPAGE:RID_RTS_OTHER_LEFTMARGIN_BOX -MFTopMargin padmin:MetricField:RID_RTS_OTHERPAGE:RID_RTS_OTHER_TOPMARGIN_BOX -MFRightMargin padmin:MetricField:RID_RTS_OTHERPAGE:RID_RTS_OTHER_RIGHTMARGIN_BOX -MFBottomMargin padmin:MetricField:RID_RTS_OTHERPAGE:RID_RTS_OTHER_BOTTOMMARGIN_BOX -EFComment padmin:Edit:RID_RTS_OTHERPAGE:RID_RTS_OTHER_COMMENT_EDT -PBDefault padmin:PushButton:RID_RTS_OTHERPAGE:RID_RTS_OTHER_DEFAULT_BTN +*SPRenamePrinterDLG sym:padmin:ModalDialog:RID_STRINGQUERYDLG +EFPrinterName sym:padmin:Edit:RID_STRINGQUERYDLG:RID_STRQRY_EDT_NEWNAME +CBUnidentifiedObject sym:padmin:ComboBox:RID_STRINGQUERYDLG:RID_STRQRY_BOX_NEWNAME + +*SPFontNameDLG sym:padmin:ModalDialog:RID_FONTNAMEDIALOG +PBRename sym:padmin:PushButton:RID_FONTNAMEDIALOG:RID_FNTNM_BTN_RENAME +PBRemove sym:padmin:PushButton:RID_FONTNAMEDIALOG:RID_FNTNM_BTN_REMOVE +PBAdd sym:padmin:PushButton:RID_FONTNAMEDIALOG:RID_FNTNM_BTN_IMPORT +LBFontList sym:padmin:ListBox:RID_FONTNAMEDIALOG:RID_FNTNM_LB_FONTS + +*SPFontImportDLG sym:padmin:ModalDialog:RID_FONTIMPORT_DIALOG +PBSelectAll sym:padmin:PushButton:RID_FONTIMPORT_DIALOG:RID_FIMP_BTN_SELECTALL +LBFontList sym:padmin:ListBox:RID_FONTIMPORT_DIALOG:RID_FIMP_BOX_NEWFONTS +EFFontPath sym:padmin:Edit:RID_FONTIMPORT_DIALOG:RID_FIMP_EDT_FROM +PBFontPath sym:padmin:PushButton:RID_FONTIMPORT_DIALOG:RID_FIMP_BTN_FROM +CBCreateSoftlinks sym:padmin:CheckBox:RID_FONTIMPORT_DIALOG:RID_FIMP_BOX_LINKONLY + +*FilePicker sym:SVT_HID_EXPLORERDLG_FILE +EFFileName sym:SVT_HID_FILEDLG_AUTOCOMPLETEBOX +LBFileList sym:fpicker:ListBox:DLG_SVT_EXPLORERFILE:LB_EXPLORERFILE_FILETYPE +PBSelect sym:fpicker:PushButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_OPEN +PBUpOneLevel sym:fpicker:MenuButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_UP +PBNewDir sym:fpicker:ImageButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_NEWFOLDER +MBDefaultDir sym:fpicker:MenuButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_STANDARD +TLBStandard sym:SVT_HID_FILEDLG_STANDARD + +*SPPrinterWizard sym:padmin:ModalDialog:RID_ADD_PRINTER_DIALOG +TabPWDeviceSelector sym:padmin:TabPage:RID_ADDP_PAGE_CHOOSEDEV +TabPWDriverSelector sym:padmin:TabPage:RID_ADDP_PAGE_CHOOSEDRIVER +TabPWQueueCommand sym:padmin:TabPage:RID_ADDP_PAGE_COMMAND +TabPWPrinterName sym:padmin:TabPage:RID_ADDP_PAGE_NAME +PBBack sym:padmin:PushButton:RID_ADD_PRINTER_DIALOG:RID_ADDP_BTN_PREV +PBNext sym:padmin:PushButton:RID_ADD_PRINTER_DIALOG:RID_ADDP_BTN_NEXT + +*TabPWDeviceSelector sym:padmin:TabPage:RID_ADDP_PAGE_CHOOSEDEV +RBAdd sym:padmin:RadioButton:RID_ADDP_PAGE_CHOOSEDEV:RID_ADDP_CHDEV_BTN_PRINTER +RBFax sym:padmin:RadioButton:RID_ADDP_PAGE_CHOOSEDEV:RID_ADDP_CHDEV_BTN_FAX +RBPdf sym:padmin:RadioButton:RID_ADDP_PAGE_CHOOSEDEV:RID_ADDP_CHDEV_BTN_PDF +RBImport sym:padmin:RadioButton:RID_ADDP_PAGE_CHOOSEDEV:RID_ADDP_CHDEV_BTN_OLD + +*TabPWDriverSelector sym:padmin:TabPage:RID_ADDP_PAGE_CHOOSEDRIVER +LBChooseDriver sym:padmin:ListBox:RID_ADDP_PAGE_CHOOSEDRIVER:RID_ADDP_CHDRV_BOX_DRIVER +PBImport sym:padmin:PushButton:RID_ADDP_PAGE_CHOOSEDRIVER:RID_ADDP_CHDRV_BTN_ADD +PBDelete sym:padmin:PushButton:RID_ADDP_PAGE_CHOOSEDRIVER:RID_ADDP_CHDRV_BTN_REMOVE + +*TabPWFaxDriverSelector sym:padmin:TabPage:RID_ADDP_PAGE_FAXDRIVER +RBDefault sym:padmin:RadioButton:RID_ADDP_PAGE_FAXDRIVER:RID_ADDP_FAXDRV_BTN_DEFAULT +RBSelect sym:padmin:RadioButton:RID_ADDP_PAGE_FAXDRIVER:RID_ADDP_FAXDRV_BTN_SELECT + +*TabPWQueueCommand sym:padmin:TabPage:RID_ADDP_PAGE_COMMAND +CBCommand sym:padmin:ComboBox:RID_ADDP_PAGE_COMMAND:RID_ADDP_CMD_BOX_COMMAND +PBHelp sym:padmin:PushButton:RID_ADDP_PAGE_COMMAND:RID_ADDP_CMD_BTN_HELP +EFPdfDir sym:padmin:Edit:RID_ADDP_PAGE_COMMAND:RID_ADDP_CMD_EDT_PDFDIR +PBPdfDir sym:padmin:PushButton:RID_ADDP_PAGE_COMMAND:RID_ADDP_CMD_BTN_PDFDIR + +*TabPWPrinterName sym:padmin:TabPage:RID_ADDP_PAGE_NAME +EFPrinterName sym:padmin:Edit:RID_ADDP_PAGE_NAME:RID_ADDP_NAME_EDT_NAME +EFFaxName sym:padmin:Edit:RID_ADDP_PAGE_NAME:RID_ADDP_NAME_EDT_FAXNAME +CBUseAsDefault sym:padmin:CheckBox:RID_ADDP_PAGE_NAME:RID_ADDP_NAME_BOX_DEFAULT +CBRemoveFaxNumber sym:padmin:CheckBox:RID_ADDP_PAGE_NAME:RID_ADDP_NAME_BOX_FAXSWALLOW + +*SPAdmin sym:padmin:ModalDialog:RID_PADIALOG +LBPrinters sym:padmin:ListBox:RID_PADIALOG:RID_PA_LB_DEV +PBProperties sym:padmin:PushButton:RID_PADIALOG:RID_PA_BTN_CONF +PBRename sym:padmin:PushButton:RID_PADIALOG:RID_PA_BTN_RENAME +PBDefault sym:padmin:PushButton:RID_PADIALOG:RID_PA_BTN_STD +PBRemove sym:padmin:PushButton:RID_PADIALOG:RID_PA_BTN_DEL +PBTestpage sym:padmin:PushButton:RID_PADIALOG:RID_PA_TESTPAGE +PBNewPrinter sym:padmin:PushButton:RID_PADIALOG:RID_PA_BTN_ADD + +*TabSPACommand sym:padmin:TabPage:RID_RTS_COMMANDPAGE +EFlpr sym:padmin:ComboBox:RID_RTS_COMMANDPAGE:RID_RTS_CMD_CB_COMMANDS +LBConfigureAs sym:padmin:ListBox:RID_RTS_COMMANDPAGE:RID_RTS_CMD_LB_CONFIGURE +PBPdfDir sym:padmin:PushButton:RID_RTS_COMMANDPAGE:RID_RTS_CMD_BTN_PDFDIR +EFPdfDir sym:padmin:Edit:RID_RTS_COMMANDPAGE:RID_RTS_CMD_EDT_PDFDIR +CBRemoveFaxNumber sym:padmin:CheckBox:RID_RTS_COMMANDPAGE:RID_RTS_CMD_BOX_SWALLOWFAXNO +PBHelp sym:padmin:PushButton:RID_RTS_COMMANDPAGE:RID_RTS_CMD_BTN_HELP +PBRemove sym:padmin:PushButton:RID_RTS_COMMANDPAGE:RID_RTS_CMD_BTN_REMOVE + +*TabSPAPaper sym:padmin:TabPage:RID_RTS_PAPERPAGE +LBPaperSize sym:padmin:ListBox:RID_RTS_PAPERPAGE:RID_RTS_PAPER_PAPER_BOX +LBOrientation sym:padmin:ListBox:RID_RTS_PAPERPAGE:RID_RTS_PAPER_ORIENTATION_BOX +LBDuplex sym:padmin:ListBox:RID_RTS_PAPERPAGE:RID_RTS_PAPER_DUPLEX_BOX +LBPaperTray sym:padmin:ListBox:RID_RTS_PAPERPAGE:RID_RTS_PAPER_SLOT_BOX + +*TabSPADevice sym:padmin:TabPage:RID_RTS_DEVICEPAGE +LBOption sym:padmin:ListBox:RID_RTS_DEVICEPAGE:RID_RTS_DEVICE_PPDKEY_BOX +LBCurrentValue sym:padmin:ListBox:RID_RTS_DEVICEPAGE:RID_RTS_DEVICE_PPDVALUE_BOX +LBColor sym:padmin:ListBox:RID_RTS_DEVICEPAGE:RID_RTS_DEVICE_SPACE_BOX + +*TabSPAFontReplacement sym:padmin:TabPage:RID_RTS_FONTSUBSTPAGE +MLReplacedFonts sym:padmin:MultiListBox:RID_RTS_FONTSUBSTPAGE:RID_RTS_FS_SUBST_BOX +CBReplaceFont sym:padmin:ComboBox:RID_RTS_FONTSUBSTPAGE:RID_RTS_FS_FROM_BOX +LBByPrinterFont sym:padmin:ListBox:RID_RTS_FONTSUBSTPAGE:RID_RTS_FS_TO_BOX +PBAdd sym:padmin:PushButton:RID_RTS_FONTSUBSTPAGE:RID_RTS_FS_ADD_BTN +PBRemove sym:padmin:PushButton:RID_RTS_FONTSUBSTPAGE:RID_RTS_FS_REMOVE_BTN +CBEnableReplacement sym:padmin:CheckBox:RID_RTS_FONTSUBSTPAGE:RID_RTS_FS_ENABLE_BTN + +*TabSPAOther sym:padmin:TabPage:RID_RTS_OTHERPAGE +MFLeftMargin sym:padmin:MetricField:RID_RTS_OTHERPAGE:RID_RTS_OTHER_LEFTMARGIN_BOX +MFTopMargin sym:padmin:MetricField:RID_RTS_OTHERPAGE:RID_RTS_OTHER_TOPMARGIN_BOX +MFRightMargin sym:padmin:MetricField:RID_RTS_OTHERPAGE:RID_RTS_OTHER_RIGHTMARGIN_BOX +MFBottomMargin sym:padmin:MetricField:RID_RTS_OTHERPAGE:RID_RTS_OTHER_BOTTOMMARGIN_BOX +EFComment sym:padmin:Edit:RID_RTS_OTHERPAGE:RID_RTS_OTHER_COMMENT_EDT +PBDefault sym:padmin:PushButton:RID_RTS_OTHERPAGE:RID_RTS_OTHER_DEFAULT_BTN diff --git a/testautomation/global/win/sys_dial.win b/testautomation/global/win/sys_dial.win index d25c83ba8997..15e8035d8b74 100755..100644 --- a/testautomation/global/win/sys_dial.win +++ b/testautomation/global/win/sys_dial.win @@ -1,115 +1,115 @@ ' **** general Printersettings-Dialog ( File/Printer settings ) ' **** -*DruckerEinrichten svtools:ModalDialog:DLG_SVT_PRNDLG_PRNSETUPDLG -Drucker svtools:ListBox:DLG_SVT_PRNDLG_PRNSETUPDLG:LB_NAMES -Eigenschaften svtools:PushButton:DLG_SVT_PRNDLG_PRNSETUPDLG:BTN_PROPERTIES +*DruckerEinrichten sym:svtools:ModalDialog:DLG_SVT_PRNDLG_PRNSETUPDLG +Drucker sym:svtools:ListBox:DLG_SVT_PRNDLG_PRNSETUPDLG:LB_NAMES +Eigenschaften sym:svtools:PushButton:DLG_SVT_PRNDLG_PRNSETUPDLG:BTN_PROPERTIES '************************************************************************ '************ all file-dialogs '************ -*GeneralFileDialog HID_EXPLORERDLG_FILE -UebergeordneterOrdner fpicker:MenuButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_UP -NeuerOrdner fpicker:ImageButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_NEWFOLDER -Standard fpicker:MenuButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_STANDARD -DateiAuswahl HID_FILEDLG_STANDARD -Dateiname HID_FILEDLG_AUTOCOMPLETEBOX -Dateityp fpicker:ListBox:DLG_SVT_EXPLORERFILE:LB_EXPLORERFILE_FILETYPE -Oeffnen fpicker:PushButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_OPEN -Auswaehlen fpicker:PushButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_OPEN +*GeneralFileDialog sym:SVT_HID_EXPLORERDLG_FILE +UebergeordneterOrdner sym:fpicker:MenuButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_UP +NeuerOrdner sym:fpicker:ImageButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_NEWFOLDER +Standard sym:fpicker:MenuButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_STANDARD +DateiAuswahl sym:SVT_HID_FILEDLG_STANDARD +Dateiname sym:SVT_HID_FILEDLG_AUTOCOMPLETEBOX +Dateityp sym:fpicker:ListBox:DLG_SVT_EXPLORERFILE:LB_EXPLORERFILE_FILETYPE +Oeffnen sym:fpicker:PushButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_OPEN +Auswaehlen sym:fpicker:PushButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_OPEN +GrafikEinfuegenDlg GeneralFileDialog -Pfad HID_FILEDLG_AUTOCOMPLETEBOX HID_FILEDLG_PATH_FILENAME -Stil HID_FILEOPEN_IMAGE_TEMPLATE -Verknuepfen HID_FILEDLG_LINK_CB HID_IMPGRF_CB_LINK -Vorschau HID_FILEDLG_PREVIEW_CB HID_IMPGRF_CB_PREVIEW -Link HID_FILEDLG_LINK_CB -Preview HID_FILEDLG_PREVIEW_CB +Pfad sym:SVT_HID_FILEDLG_AUTOCOMPLETEBOX sym:SFX2_HID_FILEDLG_PATH_FILENAME +Stil sym:SVT_HID_FILEOPEN_IMAGE_TEMPLATE +Verknuepfen sym:SVT_HID_FILEDLG_LINK_CB HID_IMPGRF_CB_LINK +Vorschau sym:SVT_HID_FILEDLG_PREVIEW_CB HID_IMPGRF_CB_PREVIEW +Link sym:SVT_HID_FILEDLG_LINK_CB +Preview sym:SVT_HID_FILEDLG_PREVIEW_CB +OeffnenDlg GeneralFileDialog -Pfad HID_FILEDLG_AUTOCOMPLETEBOX HID_FILEDLG_PATH_FILENAME -Version HID_FILEOPEN_VERSION -NurLesen HID_FILEOPEN_READONLY -Einfuegen HID_FILEDLG_INSERT_BTN -Play HID_FILESAVE_DOPLAY +Pfad sym:SVT_HID_FILEDLG_AUTOCOMPLETEBOX sym:SFX2_HID_FILEDLG_PATH_FILENAME +Version sym:SVT_HID_FILEOPEN_VERSION +NurLesen sym:SVT_HID_FILEOPEN_READONLY +Einfuegen sym:SVT_HID_FILEDLG_INSERT_BTN +Play sym:SVT_HID_FILESAVE_DOPLAY +KonkordanzdateiOeffnen GeneralFileDialog +VorlagenLaden GeneralFileDialog -Text HID_LTEMPL_TEXT -Rahmen HID_LTEMPL_FRAME -Seite HID_LTEMPL_PAGE -Numerierung HID_LTEMPL_NUMBERING -Ueberschreiben HID_LTEMPL_OVERRIDE +Text sym:SW_HID_LTEMPL_TEXT +Rahmen sym:SW_HID_LTEMPL_FRAME +Seite sym:SW_HID_LTEMPL_PAGE +Numerierung sym:SW_HID_LTEMPL_NUMBERING +Ueberschreiben sym:SW_HID_LTEMPL_OVERRIDE ' Vorlagen HID_LTEMPL_TEMPLATES -*SpeichernDlg HID_FILESAVE_DIALOG -Dateiname HID_FILESAVE_FILEURL -Vorlage HID_FILESAVE_TEMPLATE -Dateityp HID_FILESAVE_FILETYPE -Speichern HID_FILESAVE_DOSAVE -NeuerOrdner HID_FILESAVE_CREATEDIRECTORY -Standard HID_FILESAVE_DEFAULTDIRECTORY -DateiAuswahl HID_FILESAVE_FILEVIEW -Passwort HID_FILESAVE_SAVEWITHPASSWORD -AutomatischeDateinamenserweiterung HID_FILESAVE_AUTOEXTENSION -UebergeordneterOrdner HID_FILESAVE_LEVELUP +*SpeichernDlg sym:SVT_HID_FILESAVE_DIALOG +Dateiname sym:SVT_HID_FILESAVE_FILEURL +Vorlage sym:SVT_HID_FILESAVE_TEMPLATE +Dateityp sym:SVT_HID_FILESAVE_FILETYPE +Speichern sym:SVT_HID_FILESAVE_DOSAVE +NeuerOrdner sym:SVT_HID_FILESAVE_CREATEDIRECTORY +Standard sym:SVT_HID_FILESAVE_DEFAULTDIRECTORY +DateiAuswahl sym:SVT_HID_FILESAVE_FILEVIEW +Passwort sym:SVT_HID_FILESAVE_SAVEWITHPASSWORD +AutomatischeDateinamenserweiterung sym:SVT_HID_FILESAVE_AUTOEXTENSION +UebergeordneterOrdner sym:SVT_HID_FILESAVE_LEVELUP +ExportierenDlg SpeichernDlg -Selektion HID_FILESAVE_SELECTION +Selektion sym:SVT_HID_FILESAVE_SELECTION ' **** Hyperlink-File-Dialog ' **** -*HyperlinkAuswahlDlg HID_FILEDLG_CHARDLG -UebergeordneterOrdner fpicker:MenuButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_UP -NeuerOrdner fpicker:ImageButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_NEWFOLDER -Standard fpicker:MenuButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_STANDARD -DateiAuswahl HID_FILEDLG_STANDARD -Dateiname HID_FILEDLG_AUTOCOMPLETEBOX -Dateityp fpicker:ListBox:DLG_SVT_EXPLORERFILE:LB_EXPLORERFILE_FILETYPE -Oeffnen fpicker:PushButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_OPEN -NurLesen fpicker:CheckBox:DLG_SVT_EXPLORERFILE:CB_EXPLORERFILE_READONLY +*HyperlinkAuswahlDlg sym:SW_HID_FILEDLG_CHARDLG +UebergeordneterOrdner sym:fpicker:MenuButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_UP +NeuerOrdner sym:fpicker:ImageButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_NEWFOLDER +Standard sym:fpicker:MenuButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_STANDARD +DateiAuswahl sym:SVT_HID_FILEDLG_STANDARD +Dateiname sym:SVT_HID_FILEDLG_AUTOCOMPLETEBOX +Dateityp sym:fpicker:ListBox:DLG_SVT_EXPLORERFILE:LB_EXPLORERFILE_FILETYPE +Oeffnen sym:fpicker:PushButton:DLG_SVT_EXPLORERFILE:BTN_EXPLORERFILE_OPEN +NurLesen sym:fpicker:CheckBox:DLG_SVT_EXPLORERFILE:CB_EXPLORERFILE_READONLY ' **** general Color-Dialog ( under tools / options / staroffice / color / edit ) ' **** -*FarbeDlg svtools:ModalDialog:DLG_COLOR +*FarbeDlg sym:svtools:ModalDialog:DLG_COLOR 'Grundfarben 'BenutzerdefinierteFarben -Cyan svtools:MetricField:DLG_COLOR:NUM_CYAN -Magenta svtools:MetricField:DLG_COLOR:NUM_MAGENTA -Yellow svtools:MetricField:DLG_COLOR:NUM_YELLOW -Key svtools:MetricField:DLG_COLOR:NUM_KEY -Rot svtools:NumericField:DLG_COLOR:NUM_RED -Gruen svtools:NumericField:DLG_COLOR:NUM_GREEN -Blau svtools:NumericField:DLG_COLOR:NUM_BLUE -Farbton svtools:NumericField:DLG_COLOR:NUM_HUE -Saettigung svtools:NumericField:DLG_COLOR:NUM_SATURATION -Hell svtools:NumericField:DLG_COLOR:NUM_LUMINANCE -Links svtools:PushButton:DLG_COLOR:BTN_1 -Rechts svtools:PushButton:DLG_COLOR:BTN_2 - -*SendMasterDocument HID_FILESAVE_DIALOG -Dateiname HID_SEND_MASTER_CTRL_EDIT_FILEURL -Vorlage HID_SEND_MASTER_CTRL_LISTBOX_TEMPLATE -Filter HID_SEND_MASTER_CTRL_LISTBOX_FILTER -AutomatischeDateinamenserweiterung HID_SEND_MASTER_CTRL_CHECKBOX_AUTOEXTENSION -Speichern HID_SEND_MASTER_CTRL_PUSHBUTTON_OK -Cancel HID_SEND_MASTER_CTRL_PUSHBUTTON_CANCEL -DateiAuswahl HID_SEND_MASTER_CTRL_CONTROL_FILEVIEW -UebergeordneterOrdner HID_FILESAVE_LEVELUP -NeuerOrdner HID_FILESAVE_CREATEDIRECTORY -Standard HID_FILESAVE_DEFAULTDIRECTORY - -*SendHTMLDocument HID_FILESAVE_DIALOG -Dateiname HID_SEND_HTML_CTRL_EDIT_FILEURL -Vorlage HID_SEND_HTML_CTRL_LISTBOX_TEMPLATE -Filter HID_SEND_HTML_CTRL_LISTBOX_FILTER -AutomatischeDateinamenserweiterung HID_SEND_HTML_CTRL_CHECKBOX_AUTOEXTENSION -Speichern HID_SEND_HTML_CTRL_PUSHBUTTON_OK -Cancel HID_SEND_HTML_CTRL_PUSHBUTTON_CANCEL -DateiAuswahl HID_SEND_HTML_CTRL_CONTROL_FILEVIEW -UebergeordneterOrdner HID_FILESAVE_LEVELUP -NeuerOrdner HID_FILESAVE_CREATEDIRECTORY -Standard HID_FILESAVE_DEFAULTDIRECTORY +Cyan sym:svtools:MetricField:DLG_COLOR:NUM_CYAN +Magenta sym:svtools:MetricField:DLG_COLOR:NUM_MAGENTA +Yellow sym:svtools:MetricField:DLG_COLOR:NUM_YELLOW +Key sym:svtools:MetricField:DLG_COLOR:NUM_KEY +Rot sym:svtools:NumericField:DLG_COLOR:NUM_RED +Gruen sym:svtools:NumericField:DLG_COLOR:NUM_GREEN +Blau sym:svtools:NumericField:DLG_COLOR:NUM_BLUE +Farbton sym:svtools:NumericField:DLG_COLOR:NUM_HUE +Saettigung sym:svtools:NumericField:DLG_COLOR:NUM_SATURATION +Hell sym:svtools:NumericField:DLG_COLOR:NUM_LUMINANCE +Links sym:svtools:PushButton:DLG_COLOR:BTN_1 +Rechts sym:svtools:PushButton:DLG_COLOR:BTN_2 + +*SendMasterDocument sym:SVT_HID_FILESAVE_DIALOG +Dateiname sym:SW_HID_SEND_MASTER_CTRL_EDIT_FILEURL +Vorlage sym:SW_HID_SEND_MASTER_CTRL_LISTBOX_TEMPLATE +Filter sym:SW_HID_SEND_MASTER_CTRL_LISTBOX_FILTER +AutomatischeDateinamenserweiterung sym:SW_HID_SEND_MASTER_CTRL_CHECKBOX_AUTOEXTENSION +Speichern sym:SW_HID_SEND_MASTER_CTRL_PUSHBUTTON_OK +Cancel sym:SW_HID_SEND_MASTER_CTRL_PUSHBUTTON_CANCEL +DateiAuswahl sym:SW_HID_SEND_MASTER_CTRL_CONTROL_FILEVIEW +UebergeordneterOrdner sym:SVT_HID_FILESAVE_LEVELUP +NeuerOrdner sym:SVT_HID_FILESAVE_CREATEDIRECTORY +Standard sym:SVT_HID_FILESAVE_DEFAULTDIRECTORY + +*SendHTMLDocument sym:SVT_HID_FILESAVE_DIALOG +Dateiname sym:SW_HID_SEND_HTML_CTRL_EDIT_FILEURL +Vorlage sym:SW_HID_SEND_HTML_CTRL_LISTBOX_TEMPLATE +Filter sym:SW_HID_SEND_HTML_CTRL_LISTBOX_FILTER +AutomatischeDateinamenserweiterung sym:SW_HID_SEND_HTML_CTRL_CHECKBOX_AUTOEXTENSION +Speichern sym:SW_HID_SEND_HTML_CTRL_PUSHBUTTON_OK +Cancel sym:SW_HID_SEND_HTML_CTRL_PUSHBUTTON_CANCEL +DateiAuswahl sym:SW_HID_SEND_HTML_CTRL_CONTROL_FILEVIEW +UebergeordneterOrdner sym:SVT_HID_FILESAVE_LEVELUP +NeuerOrdner sym:SVT_HID_FILESAVE_CREATEDIRECTORY +Standard sym:SVT_HID_FILESAVE_DEFAULTDIRECTORY ' **** Messageboxes amd Lastversion-message set to the active operator @@ -119,15 +119,15 @@ Standard HID_FILESAVE_DEFAULTDIRECTORY ' **** new folder-dialog ' **** -*NeuerOrdner fpicker:ModalDialog:DLG_SVT_QUERYFOLDERNAME -OrdnerName fpicker:Edit:DLG_SVT_QUERYFOLDERNAME:ED_SVT_QUERYFOLDERNAME_DLG_NAME +*NeuerOrdner sym:fpicker:ModalDialog:DLG_SVT_QUERYFOLDERNAME +OrdnerName sym:fpicker:Edit:DLG_SVT_QUERYFOLDERNAME:ED_SVT_QUERYFOLDERNAME_DLG_NAME ' **** Translationwidow fuer das Ubersetzungstooling ' **** -*TranslationWindow svtools:WorkWindow:TT_INLINE_TRANSLATION svtools:FloatingWindow:TT_INLINE_TRANSLATION +*TranslationWindow sym:svtools:WorkWindow:TT_INLINE_TRANSLATION svtools:FloatingWindow:TT_INLINE_TRANSLATION ' **** specal longnames for bas test ' **** author marc.neumann@oracle.com -*MSC_Special_Dialog MSC_Super_ID -*MSC_Special_Dialog2 MSC_Super_ID2 -*MSC_Special_Dialog3 MSC_Super_ID3 +*MSC_Special_Dialog sym:customcontrol1 +*MSC_Special_Dialog2 sym:customcontrol2 +*MSC_Special_Dialog3 sym:customcontrol3
\ No newline at end of file diff --git a/testautomation/global/win/tab_a_d.win b/testautomation/global/win/tab_a_d.win index a3135d80e1dd..a7e585cc0dcb 100755..100644 --- a/testautomation/global/win/tab_a_d.win +++ b/testautomation/global/win/tab_a_d.win @@ -1,374 +1,374 @@ *Active -*TabAenderungenWriter HID_REDLINE_OPT -EinfuegenAttribute SW:LISTBOX:TP_REDLINE_OPT:LB_INS_ATTR -EinfuegenFarbe SW:LISTBOX:TP_REDLINE_OPT:LB_INS_COL -LoeschenAttribute SW:LISTBOX:TP_REDLINE_OPT:LB_DEL_ATTR -LoeschenFarbe SW:LISTBOX:TP_REDLINE_OPT:LB_DEL_COL -AendernAttribute SW:LISTBOX:TP_REDLINE_OPT:LB_CHG_ATTR -AendernFarbe SW:LISTBOX:TP_REDLINE_OPT:LB_CHG_COL -ZeilenMarkierung SW:LISTBOX:TP_REDLINE_OPT:LB_MARKPOS -ZeilenFarbe SW:LISTBOX:TP_REDLINE_OPT:LB_LC_COL - -*TabAenderungenCalc HID_SCPAGE_OPREDLINE SC:TABPAGE:RID_SCPAGE_OPREDLINE -Aenderungen SC:LISTBOX:RID_SCPAGE_OPREDLINE:CLB_CONTENT -Loeschungen SC:LISTBOX:RID_SCPAGE_OPREDLINE:CLB_REMOVE -Einfuegungen SC:LISTBOX:RID_SCPAGE_OPREDLINE:CLB_INSERT -Verschiebungen SC:LISTBOX:RID_SCPAGE_OPREDLINE:CLB_MOVE - -*TabAllgemein HID_OPTIONS_GENERAL -Firma cui:Edit:RID_SFXPAGE_GENERAL:ED_COMPANY -VorName cui:Edit:RID_SFXPAGE_GENERAL:ED_FIRSTNAME -ZuName cui:Edit:RID_SFXPAGE_GENERAL:ED_NAME -NameDesVaters cui:Edit:RID_SFXPAGE_GENERAL:ED_FATHERNAME -Strasse cui:Edit:RID_SFXPAGE_GENERAL:ED_STREET -Apartmentnummer cui:Edit:RID_SFXPAGE_GENERAL:ED_APARTMENTNR -Land cui:Edit:RID_SFXPAGE_GENERAL:ED_COUNTRY -PLZ cui:Edit:RID_SFXPAGE_GENERAL:ED_PLZ -Ort cui:Edit:RID_SFXPAGE_GENERAL:ED_CITY -Kuerzel cui:Edit:RID_SFXPAGE_GENERAL:ED_SHORTNAME -TelPriv cui:Edit:RID_SFXPAGE_GENERAL:ED_TELPRIVAT -TelGe cui:Edit:RID_SFXPAGE_GENERAL:ED_TELCOMPANY -Fax cui:Edit:RID_SFXPAGE_GENERAL:ED_FAX -EMail cui:Edit:RID_SFXPAGE_GENERAL:ED_EMAIL -Titel cui:Edit:RID_SFXPAGE_GENERAL:ED_TITLE -Position cui:Edit:RID_SFXPAGE_GENERAL:ED_POSITION -City cui:Edit:RID_SFXPAGE_GENERAL:ED_US_CITY -Zip cui:Edit:RID_SFXPAGE_GENERAL:ED_US_ZIPCODE -Street cui:Edit:RID_SFXPAGE_GENERAL:ED_STREET -State cui:EDIT:RID_SFXPAGE_GENERAL:ED_US_STATE -Zurueck HID_TABDLG_RESET_BTN +*TabAenderungenWriter sym:SW_HID_REDLINE_OPT +EinfuegenAttribute sym:sw:ListBox:TP_REDLINE_OPT:LB_INS_ATTR +EinfuegenFarbe sym:sw:ListBox:TP_REDLINE_OPT:LB_INS_COL +LoeschenAttribute sym:sw:ListBox:TP_REDLINE_OPT:LB_DEL_ATTR +LoeschenFarbe sym:sw:ListBox:TP_REDLINE_OPT:LB_DEL_COL +AendernAttribute sym:sw:ListBox:TP_REDLINE_OPT:LB_CHG_ATTR +AendernFarbe sym:sw:ListBox:TP_REDLINE_OPT:LB_CHG_COL +ZeilenMarkierung sym:sw:ListBox:TP_REDLINE_OPT:LB_MARKPOS +ZeilenFarbe sym:sw:ListBox:TP_REDLINE_OPT:LB_LC_COL + +*TabAenderungenCalc sym:SC_HID_SCPAGE_OPREDLINE sym:sc:TabPage:RID_SCPAGE_OPREDLINE +Aenderungen sym:sc:ListBox:RID_SCPAGE_OPREDLINE:CLB_CONTENT +Loeschungen sym:sc:ListBox:RID_SCPAGE_OPREDLINE:CLB_REMOVE +Einfuegungen sym:sc:ListBox:RID_SCPAGE_OPREDLINE:CLB_INSERT +Verschiebungen sym:sc:ListBox:RID_SCPAGE_OPREDLINE:CLB_MOVE + +*TabAllgemein sym:CUI_HID_OPTIONS_GENERAL +Firma sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_COMPANY +VorName sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_FIRSTNAME +ZuName sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_NAME +NameDesVaters sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_FATHERNAME +Strasse sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_STREET +Apartmentnummer sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_APARTMENTNR +Land sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_COUNTRY +PLZ sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_PLZ +Ort sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_CITY +Kuerzel sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_SHORTNAME +TelPriv sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_TELPRIVAT +TelGe sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_TELCOMPANY +Fax sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_FAX +EMail sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_EMAIL +Titel sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_TITLE +Position sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_POSITION +City sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_US_CITY +Zip sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_US_ZIPCODE +Street sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_STREET +State sym:cui:Edit:RID_SFXPAGE_GENERAL:ED_US_STATE +Zurueck sym:SFX2_HID_TABDLG_RESET_BTN +TabAllgemeines TabAllgemein -*TabAllgemeinGallery HID_GALLERY_PROPERTIES_GENERAL -NeuesThema HID_GALLERY_EDIT_MSNAME - -*TabAnsichtAllgemein HID_OFA_TP_VIEW -FontScale cui:MetricField:OFA_TP_VIEW:MF_WINDOWSIZE -IconStyle cui:ListBox:OFA_TP_VIEW:LB_ICONSTYLE -IconScale cui:ListBox:OFA_TP_VIEW:LB_ICONSIZE -FontAntiAliasing cui:CheckBox:OFA_TP_VIEW:CB_FONTANTIALIASING -AAPixel cui:NumericField:OFA_TP_VIEW:NF_AA_POINTLIMIT -VorschauInSchriftlisten cui:CheckBox:OFA_TP_VIEW:CB_FONT_SHOW -SchriftenHistorie cui:CheckBox:OFA_TP_VIEW:CB_FONT_HISTORY -UseHardwareAcceleration cui:CheckBox:OFA_TP_VIEW:CB_USE_HARDACCELL -UseAntiAliasing cui:CheckBox:OFA_TP_VIEW:CB_USE_ANTIALIASE -IconsInMenueAnzeigen cui:ListBox:OFA_TP_VIEW:LB_MENU_ICONS -MausAktion cui:ListBox:OFA_TP_VIEW:LB_MOUSEMIDDLE -MousePositioning cui:ListBox:OFA_TP_VIEW:LB_MOUSEPOS -UseSystemFont cui:CheckBox:OFA_TP_VIEW:CB_SYSTEM_FONT -Transparency cui:CheckBox:OFA_TP_VIEW:CB_SELECTION -SelectionOpacity cui:MetricField:OFA_TP_VIEW:MF_SELECTION - -*TabAusnahmen HID_OFAPAGE_AUTOCORR_EXCEPT -Abkuerzungen cui:Edit:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_ABBREV -AbkuerzungenListe cui:ListBox:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_ABBREV -AbkuerzungenNeu cui:PushButton:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_NEWABBREV -AbkuerzungenLoeschen cui:PushButton:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_DELABBREV -AbkuerzungenAutomatisch cui:CheckBox:RID_OFAPAGE_AUTOCORR_EXCEPT:CB_AUTOABBREV -Woerter cui:Edit:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_DOUBLE_CAPS -WoerterListe cui:ListBox:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_DOUBLE_CAPS -WoerterNeu cui:PushButton:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_NEWDOUBLECAPS -WoerterLoeschen cui:PushButton:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_DELDOUBLECAPS -WoerterAutomatisch cui:CheckBox:RID_OFAPAGE_AUTOCORR_EXCEPT:CB_AUTOCAPS -Zurueck HID_TABDLG_RESET_BTN -WelcheSprache HID_AUTOCORR_LANGUAGE - -*TabAusrichtung HID_ALIGNMENT -ListeHAusrichtung cui:ListBox:RID_SVXPAGE_ALIGNMENT:LB_HORALIGN -ListeVAusrichtung cui:ListBox:RID_SVXPAGE_ALIGNMENT:LB_VERALIGN -Einzug cui:METRICFIELD:RID_SVXPAGE_ALIGNMENT:ED_INDENT -Zeilenumbruch cui:TriStateBox:RID_SVXPAGE_ALIGNMENT:BTN_WRAP -Silbentrennung cui:TriStateBox:RID_SVXPAGE_ALIGNMENT:BTN_HYPH -Grad cui:NUMERICFIELD:RID_SVXPAGE_ALIGNMENT:NF_DEGREES -Bezugskante HID_ALIGNMENT_CTR_BORDER_LOCK -VertikaleAusrichtung cui:TriStateBox:RID_SVXPAGE_ALIGNMENT:BTN_ASIAN_VERTICAL -Gestapelt cui:TriStateBox:RID_SVXPAGE_ALIGNMENT:BTN_TXTSTACKED -ShrinkToFit cui:TriStateBox:RID_SVXPAGE_ALIGNMENT:BTN_SHRINK -SetAlignmentOptions cui:ListBox:RID_SVXPAGE_ALIGNMENT:LB_FRAMEDIR -AlignmentDial HID_ALIGNMENT_CTR_DIAL - -*TabAusrichtungAbsatz HID_FORMAT_PARAGRAPH_ALIGN -Links cui:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_LEFTALIGN -Rechts cui:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_RIGHTALIGN -Zentriert cui:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_CENTERALIGN -Blocksatz cui:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_JUSTIFYALIGN -LetzteZeile cui:LISTBOX:RID_SVXPAGE_ALIGN_PARAGRAPH:LB_LASTLINE -EinzelnesWortAustreiben cui:CHECKBOX:RID_SVXPAGE_ALIGN_PARAGRAPH:CB_EXPAND -VertikaleTextausrichtung cui:ListBox:RID_SVXPAGE_ALIGN_PARAGRAPH:LB_VERTALIGN -TextrasterFangen cui:CheckBox:RID_SVXPAGE_ALIGN_PARAGRAPH:CB_SNAP -TextDirection cui:ListBox:RID_SVXPAGE_ALIGN_PARAGRAPH:LB_TEXTDIRECTION - -*TabBedingung HID_COND_COLL -AlsBedingteVorlage sw:CheckBox:TP_CONDCOLL:CB_CONDITION -Kontextliste HID_COND_COLL_TABLIST -Absatzvorlagen sw:ListBox:TP_CONDCOLL:LB_STYLE -Vorlagen sw:ListBox:TP_CONDCOLL:LB_FILTER -Entfernen sw:PushButton:TP_CONDCOLL:PB_REMOVE -Zuweisen sw:PushButton:TP_CONDCOLL:PB_ASSIGN - -'*TabBeleuchtung HID_PAGE_LIGHT3D svx:TabPage:RID_SVXPAGE_LIGHT3D -'QuellFarbfilter svx:ListBox:RID_SVXPAGE_LIGHT3D:LB_LIGHT_COLOR -'QuellIntensitaet svx:MetricField:RID_SVXPAGE_LIGHT3D:MTR_FLD_LIGHT_INTENSITY +*TabAllgemeinGallery sym:CUI_HID_GALLERY_PROPERTIES_GENERAL +NeuesThema sym:CUI_HID_GALLERY_EDIT_MSNAME + +*TabAnsichtAllgemein sym:CUI_HID_OFA_TP_VIEW +FontScale sym:cui:MetricField:OFA_TP_VIEW:MF_WINDOWSIZE +IconStyle sym:cui:ListBox:OFA_TP_VIEW:LB_ICONSTYLE +IconScale sym:cui:ListBox:OFA_TP_VIEW:LB_ICONSIZE +FontAntiAliasing sym:cui:CheckBox:OFA_TP_VIEW:CB_FONTANTIALIASING +AAPixel sym:cui:NumericField:OFA_TP_VIEW:NF_AA_POINTLIMIT +VorschauInSchriftlisten sym:cui:CheckBox:OFA_TP_VIEW:CB_FONT_SHOW +SchriftenHistorie sym:cui:CheckBox:OFA_TP_VIEW:CB_FONT_HISTORY +UseHardwareAcceleration sym:cui:CheckBox:OFA_TP_VIEW:CB_USE_HARDACCELL +UseAntiAliasing sym:cui:CheckBox:OFA_TP_VIEW:CB_USE_ANTIALIASE +IconsInMenueAnzeigen sym:cui:ListBox:OFA_TP_VIEW:LB_MENU_ICONS +MausAktion sym:cui:ListBox:OFA_TP_VIEW:LB_MOUSEMIDDLE +MousePositioning sym:cui:ListBox:OFA_TP_VIEW:LB_MOUSEPOS +UseSystemFont sym:cui:CheckBox:OFA_TP_VIEW:CB_SYSTEM_FONT +Transparency sym:cui:CheckBox:OFA_TP_VIEW:CB_SELECTION +SelectionOpacity sym:cui:MetricField:OFA_TP_VIEW:MF_SELECTION + +*TabAusnahmen sym:CUI_HID_OFAPAGE_AUTOCORR_EXCEPT +Abkuerzungen sym:cui:Edit:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_ABBREV +AbkuerzungenListe sym:cui:ListBox:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_ABBREV +AbkuerzungenNeu sym:cui:PushButton:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_NEWABBREV +AbkuerzungenLoeschen sym:cui:PushButton:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_DELABBREV +AbkuerzungenAutomatisch sym:cui:CheckBox:RID_OFAPAGE_AUTOCORR_EXCEPT:CB_AUTOABBREV +Woerter sym:cui:Edit:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_DOUBLE_CAPS +WoerterListe sym:cui:ListBox:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_DOUBLE_CAPS +WoerterNeu sym:cui:PushButton:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_NEWDOUBLECAPS +WoerterLoeschen sym:cui:PushButton:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_DELDOUBLECAPS +WoerterAutomatisch sym:cui:CheckBox:RID_OFAPAGE_AUTOCORR_EXCEPT:CB_AUTOCAPS +Zurueck sym:SFX2_HID_TABDLG_RESET_BTN +WelcheSprache sym:CUI_HID_AUTOCORR_LANGUAGE + +*TabAusrichtung sym:CUI_HID_ALIGNMENT +ListeHAusrichtung sym:cui:ListBox:RID_SVXPAGE_ALIGNMENT:LB_HORALIGN +ListeVAusrichtung sym:cui:ListBox:RID_SVXPAGE_ALIGNMENT:LB_VERALIGN +Einzug sym:cui:MetricField:RID_SVXPAGE_ALIGNMENT:ED_INDENT +Zeilenumbruch sym:cui:TriStateBox:RID_SVXPAGE_ALIGNMENT:BTN_WRAP +Silbentrennung sym:cui:TriStateBox:RID_SVXPAGE_ALIGNMENT:BTN_HYPH +Grad sym:cui:NumericField:RID_SVXPAGE_ALIGNMENT:NF_DEGREES +Bezugskante sym:CUI_HID_ALIGNMENT_CTR_BORDER_LOCK +VertikaleAusrichtung sym:cui:TriStateBox:RID_SVXPAGE_ALIGNMENT:BTN_ASIAN_VERTICAL +Gestapelt sym:cui:TriStateBox:RID_SVXPAGE_ALIGNMENT:BTN_TXTSTACKED +ShrinkToFit sym:cui:TriStateBox:RID_SVXPAGE_ALIGNMENT:BTN_SHRINK +SetAlignmentOptions sym:cui:ListBox:RID_SVXPAGE_ALIGNMENT:LB_FRAMEDIR +AlignmentDial sym:CUI_HID_ALIGNMENT_CTR_DIAL + +*TabAusrichtungAbsatz sym:CUI_HID_FORMAT_PARAGRAPH_ALIGN +Links sym:cui:RadioButton:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_LEFTALIGN +Rechts sym:cui:RadioButton:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_RIGHTALIGN +Zentriert sym:cui:RadioButton:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_CENTERALIGN +Blocksatz sym:cui:RadioButton:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_JUSTIFYALIGN +LetzteZeile sym:cui:ListBox:RID_SVXPAGE_ALIGN_PARAGRAPH:LB_LASTLINE +EinzelnesWortAustreiben sym:cui:CheckBox:RID_SVXPAGE_ALIGN_PARAGRAPH:CB_EXPAND +VertikaleTextausrichtung sym:cui:ListBox:RID_SVXPAGE_ALIGN_PARAGRAPH:LB_VERTALIGN +TextrasterFangen sym:cui:CheckBox:RID_SVXPAGE_ALIGN_PARAGRAPH:CB_SNAP +TextDirection sym:cui:ListBox:RID_SVXPAGE_ALIGN_PARAGRAPH:LB_TEXTDIRECTION + +*TabBedingung sym:SW_HID_COND_COLL +AlsBedingteVorlage sym:sw:CheckBox:TP_CONDCOLL:CB_CONDITION +Kontextliste sym:SW_HID_COND_COLL_TABLIST +Absatzvorlagen sym:sw:ListBox:TP_CONDCOLL:LB_STYLE +Vorlagen sym:sw:ListBox:TP_CONDCOLL:LB_FILTER +Entfernen sym:sw:PushButton:TP_CONDCOLL:PB_REMOVE +Zuweisen sym:sw:PushButton:TP_CONDCOLL:PB_ASSIGN + +'*TabBeleuchtung HID_PAGE_LIGHT3D sym:svx:TabPage:RID_SVXPAGE_LIGHT3D +'QuellFarbfilter sym:svx:ListBox:RID_SVXPAGE_LIGHT3D:LB_LIGHT_COLOR +'QuellIntensitaet sym:svx:MetricField:RID_SVXPAGE_LIGHT3D:MTR_FLD_LIGHT_INTENSITY 'Richtung -'UmgebungsFarbfilter svx:ListBox:RID_SVXPAGE_LIGHT3D:LB_COLOR -'UmgebungsIntensitaet svx:MetricField:RID_SVXPAGE_LIGHT3D:MTR_FLD_INTENSITY -'Zurueck HID_TABDLG_RESET_BTN - -*TabBemassung HID_PAGE_MEASURE -Liniendistanz cui:MetricField:RID_SVXPAGE_MEASURE:MTR_LINE_DIST -HLUebergang cui:MetricField:RID_SVXPAGE_MEASURE:MTR_FLD_HELPLINE_OVERHANG -HLDistanz cui:MetricField:RID_SVXPAGE_MEASURE:MTR_FLD_HELPLINE_DIST -LinkeHL cui:MetricField:RID_SVXPAGE_MEASURE:MTR_FLD_HELPLINE1_LEN -RechteHL cui:MetricField:RID_SVXPAGE_MEASURE:MTR_FLD_HELPLINE2_LEN -AnzeigeUnterhalb cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_BELOW_REF_EDGE -AnzeigeParallel cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_PARALLEL -MetrikAnzeigen cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_SHOW_UNIT -Textposition HID_MEASURE_CTL_POSITION -AutomatischVertikal cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_AUTOPOSV -AutomatischHorizontal cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_AUTOPOSH - -*TabBenutzer HID_DOCINFOUSER -Info0 sfx2:Edit:TP_DOCINFOUSER:ED_INFO1 -Info1 sfx2:Edit:TP_DOCINFOUSER:ED_INFO2 -Info2 sfx2:Edit:TP_DOCINFOUSER:ED_INFO3 -Info3 sfx2:Edit:TP_DOCINFOUSER:ED_INFO4 -Infofelder sfx2:PushButton:TP_DOCINFOUSER:BTN_EDITLABEL +'UmgebungsFarbfilter sym:svx:ListBox:RID_SVXPAGE_LIGHT3D:LB_COLOR +'UmgebungsIntensitaet sym:svx:MetricField:RID_SVXPAGE_LIGHT3D:MTR_FLD_INTENSITY +'Zurueck sym:SFX2_HID_TABDLG_RESET_BTN + +*TabBemassung sym:CUI_HID_PAGE_MEASURE +Liniendistanz sym:cui:MetricField:RID_SVXPAGE_MEASURE:MTR_LINE_DIST +HLUebergang sym:cui:MetricField:RID_SVXPAGE_MEASURE:MTR_FLD_HELPLINE_OVERHANG +HLDistanz sym:cui:MetricField:RID_SVXPAGE_MEASURE:MTR_FLD_HELPLINE_DIST +LinkeHL sym:cui:MetricField:RID_SVXPAGE_MEASURE:MTR_FLD_HELPLINE1_LEN +RechteHL sym:cui:MetricField:RID_SVXPAGE_MEASURE:MTR_FLD_HELPLINE2_LEN +AnzeigeUnterhalb sym:cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_BELOW_REF_EDGE +AnzeigeParallel sym:cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_PARALLEL +MetrikAnzeigen sym:cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_SHOW_UNIT +Textposition sym:CUI_HID_MEASURE_CTL_POSITION +AutomatischVertikal sym:cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_AUTOPOSV +AutomatischHorizontal sym:cui:TriStateBox:RID_SVXPAGE_MEASURE:TSB_AUTOPOSH + +*TabBenutzer sym:SFX2_HID_DOCINFOUSER +Info0 sym:sfx2:Edit:TP_DOCINFOUSER:ED_INFO1 +Info1 sym:sfx2:Edit:TP_DOCINFOUSER:ED_INFO2 +Info2 sym:sfx2:Edit:TP_DOCINFOUSER:ED_INFO3 +Info3 sym:sfx2:Edit:TP_DOCINFOUSER:ED_INFO4 +Infofelder sym:sfx2:PushButton:TP_DOCINFOUSER:BTN_EDITLABEL +TabBenutzerdaten TabAllgemein -*TabBerechnen HID_SCPAGE_CALC -Iterationen sc:CheckBox:RID_SCPAGE_CALC:BTN_ITERATE -Schritte sc:NumericField:RID_SCPAGE_CALC:ED_STEPS -Nachkommastellen sc:NumericField:RID_SCPAGE_CALC:ED_PREC -MinimalerAenderungswert sc:Edit:RID_SCPAGE_CALC:ED_EPS -Standard sc:RadioButton:RID_SCPAGE_CALC:BTN_DATESTD -StarCalc10 sc:RadioButton:RID_SCPAGE_CALC:BTN_DATESC10 -Jahr1904 sc:RadioButton:RID_SCPAGE_CALC:BTN_DATE1904 -GrossKleinschreibung sc:CheckBox:RID_SCPAGE_CALC:BTN_CASE -GenauigkeitWieAngezeigt sc:CheckBox:RID_SCPAGE_CALC:BTN_CALC -Suchkriterien sc:CheckBox:RID_SCPAGE_CALC:BTN_MATCH -RegulaererAusdruck sc:CheckBox:RID_SCPAGE_CALC:BTN_REGEX -SpaltenZeilenbeschriftung sc:CheckBox:RID_SCPAGE_CALC:BTN_LOOKUP -LimitDecimals sc:CheckBox:RID_SCPAGE_CALC:BTN_GENERAL_PREC - -*TabBereiche HID_INSERT_SECTION_PAGE -Bereichsliste sw:ComboBox:TP_INSERT_SECTION:ED_RNAME -Geschuetzt sw:CheckBox:TP_INSERT_SECTION:CB_PROTECT -Ausblenden sw:CheckBox:TP_INSERT_SECTION:CB_HIDE -BedingungText sw:Edit:TP_INSERT_SECTION:ED_CONDITION -Verknuepfung sw:CheckBox:TP_INSERT_SECTION:CB_FILE -DDE sw:CheckBox:TP_INSERT_SECTION:CB_DDE -DateiVerknuepfung sw:Edit:TP_INSERT_SECTION:ED_FILE -Bereich sw:ComboBox:TP_INSERT_SECTION:LB_SUBREG -Auswaehlen sw:PushButton:TP_INSERT_SECTION:PB_FILE -Passwort sw:CheckBox:TP_INSERT_SECTION:CB_PASSWD -EnterPasswort sw:PushButton:TP_INSERT_SECTION:PB_PASSWD - -*TabBeschreibung HID_DOCINFODESC -Titel sfx2:Edit:TP_DOCINFODESC:ED_TITLE -Thema sfx2:Edit:TP_DOCINFODESC:ED_THEMA -Schluesselwoerter sfx2:Edit:TP_DOCINFODESC:ED_KEYWORDS -Beschreibung sfx2:MultiLineEdit:TP_DOCINFODESC:ED_COMMENT - -*TabBibliotheken basctl:TabPage:RID_TP_LIBS -Bibliothek basctl:ListBox:RID_TP_LIBS:RID_LB_BASICS -Bibliotheksliste HID_BASICIDE_LIBS_TREE -Bearbeiten basctl:PushButton:RID_TP_LIBS:RID_PB_EDIT -Passwort basctl:PushButton:RID_TP_LIBS:RID_PB_PASSWORD -Neu basctl:PushButton:RID_TP_LIBS:RID_PB_NEWLIB -Hinzufuegen basctl:PushButton:RID_TP_LIBS:RID_PB_APPEND -Export basctl:PushButton:RID_TP_LIBS:RID_PB_EXPORT -Loeschen basctl:PushButton:RID_TP_LIBS:RID_PB_DELETE - -*TabBitmap HID_AREA_BITMAP +*TabBerechnen sym:SC_HID_SCPAGE_CALC +Iterationen sym:sc:CheckBox:RID_SCPAGE_CALC:BTN_ITERATE +Schritte sym:sc:NumericField:RID_SCPAGE_CALC:ED_STEPS +Nachkommastellen sym:sc:NumericField:RID_SCPAGE_CALC:ED_PREC +MinimalerAenderungswert sym:sc:Edit:RID_SCPAGE_CALC:ED_EPS +Standard sym:sc:RadioButton:RID_SCPAGE_CALC:BTN_DATESTD +StarCalc10 sym:sc:RadioButton:RID_SCPAGE_CALC:BTN_DATESC10 +Jahr1904 sym:sc:RadioButton:RID_SCPAGE_CALC:BTN_DATE1904 +GrossKleinschreibung sym:sc:CheckBox:RID_SCPAGE_CALC:BTN_CASE +GenauigkeitWieAngezeigt sym:sc:CheckBox:RID_SCPAGE_CALC:BTN_CALC +Suchkriterien sym:sc:CheckBox:RID_SCPAGE_CALC:BTN_MATCH +RegulaererAusdruck sym:sc:CheckBox:RID_SCPAGE_CALC:BTN_REGEX +SpaltenZeilenbeschriftung sym:sc:CheckBox:RID_SCPAGE_CALC:BTN_LOOKUP +LimitDecimals sym:sc:CheckBox:RID_SCPAGE_CALC:BTN_GENERAL_PREC + +*TabBereiche sym:SW_HID_INSERT_SECTION_PAGE +Bereichsliste sym:sw:ComboBox:TP_INSERT_SECTION:ED_RNAME +Geschuetzt sym:sw:CheckBox:TP_INSERT_SECTION:CB_PROTECT +Ausblenden sym:sw:CheckBox:TP_INSERT_SECTION:CB_HIDE +BedingungText sym:sw:Edit:TP_INSERT_SECTION:ED_CONDITION +Verknuepfung sym:sw:CheckBox:TP_INSERT_SECTION:CB_FILE +DDE sym:sw:CheckBox:TP_INSERT_SECTION:CB_DDE +DateiVerknuepfung sym:sw:Edit:TP_INSERT_SECTION:ED_FILE +Bereich sym:sw:ComboBox:TP_INSERT_SECTION:LB_SUBREG +Auswaehlen sym:sw:PushButton:TP_INSERT_SECTION:PB_FILE +Passwort sym:sw:CheckBox:TP_INSERT_SECTION:CB_PASSWD +EnterPasswort sym:sw:PushButton:TP_INSERT_SECTION:PB_PASSWD + +*TabBeschreibung sym:SFX2_HID_DOCINFODESC +Titel sym:sfx2:Edit:TP_DOCINFODESC:ED_TITLE +Thema sym:sfx2:Edit:TP_DOCINFODESC:ED_THEMA +Schluesselwoerter sym:sfx2:Edit:TP_DOCINFODESC:ED_KEYWORDS +Beschreibung sym:sfx2:MultiLineEdit:TP_DOCINFODESC:ED_COMMENT + +*TabBibliotheken sym:basctl:TabPage:RID_TP_LIBS +Bibliothek sym:basctl:ListBox:RID_TP_LIBS:RID_LB_BASICS +Bibliotheksliste sym:BASCTL_HID_BASICIDE_LIBS_TREE +Bearbeiten sym:basctl:PushButton:RID_TP_LIBS:RID_PB_EDIT +Passwort sym:basctl:PushButton:RID_TP_LIBS:RID_PB_PASSWORD +Neu sym:basctl:PushButton:RID_TP_LIBS:RID_PB_NEWLIB +Hinzufuegen sym:basctl:PushButton:RID_TP_LIBS:RID_PB_APPEND +Export sym:basctl:PushButton:RID_TP_LIBS:RID_PB_EXPORT +Loeschen sym:basctl:PushButton:RID_TP_LIBS:RID_PB_DELETE + +*TabBitmap sym:CUI_HID_AREA_BITMAP 'PixelEditor -Vordergrund cui:ListBox:RID_SVXPAGE_BITMAP:LB_COLOR -Hintergrund cui:ListBox:RID_SVXPAGE_BITMAP:LB_BACKGROUND_COLOR -Tabelle cui:ListBox:RID_SVXPAGE_BITMAP:LB_BITMAPS -Hinzufuegen cui:PushButton:RID_SVXPAGE_BITMAP:BTN_ADD -Aendern cui:PushButton:RID_SVXPAGE_BITMAP:BTN_MODIFY -Import cui:PushButton:RID_SVXPAGE_BITMAP:BTN_IMPORT -Loeschen cui:PushButton:RID_SVXPAGE_BITMAP:BTN_DELETE -Oeffnen cui:ImageButton:RID_SVXPAGE_BITMAP:BTN_LOAD -Speichern cui:ImageButton:RID_SVXPAGE_BITMAP:BTN_SAVE -Zurueck HID_TABDLG_RESET_BTN - -*TabDateien HID_GALLERY_BROWSER -Dateityp cui:ComboBox:RID_SVXTABPAGE_GALLERYTHEME_FILES:CBB_FILETYPE -Suche cui:PushButton:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_SEARCH -Dateiliste cui:MultiListBox:RID_SVXTABPAGE_GALLERYTHEME_FILES:LBX_FOUND -Hinzufuegen cui:PushButton:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_TAKE -HinzufuegenAlle cui:PushButton:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_TAKEALL -Vorschau cui:CheckBox:RID_SVXTABPAGE_GALLERYTHEME_FILES:CBX_PREVIEW - -*TabDatenbank HID_FLD_DB -Feldtyp SW:LISTBOX:TP_FLD_DB:LB_DBTYPE -Datenbankauswahl HID_DB_SELECTION_TLB -Bedingung SW:EDIT:TP_FLD_DB:ED_DBCONDITION -Satznummer SW:EDIT:TP_FLD_DB:ED_DBSETNUMBER -AusDatenbank SW:RADIOBUTTON:TP_FLD_DB:RB_DBOWNFORMAT -Selbstdefiniert SW:RADIOBUTTON:TP_FLD_DB:RB_DBFORMAT -Formatliste SW:LISTBOX:TP_FLD_DB:LB_DBFORMAT -Zahlenformat SW:LISTBOX:TP_FLD_DB:LB_DBNUMFORMAT -Einfuegen HID_FIELD_INSERT -Schliessen HID_FIELD_CLOSE - -*TabDirektCursor HID_OPTSHDWCRSR -DirektCursor SW:CHECKBOX:TP_OPTSHDWCRSR:CB_SHDWCRSONOFF -Absatzausrichtung SW:RADIOBUTTON:TP_OPTSHDWCRSR:RB_SHDWCRSFILLMARGIN -LinkerAbsatzrand SW:RADIOBUTTON:TP_OPTSHDWCRSR:RB_SHDWCRSFILLINDENT -Tabulator SW:RADIOBUTTON:TP_OPTSHDWCRSR:RB_SHDWCRSFILLTAB -TabulatorUndLeerzeichen SW:RADIOBUTTON:TP_OPTSHDWCRSR:RB_SHDWCRSFILLSPACE -Zonen_Cursor SW:CHECKBOX:TP_OPTSHDWCRSR:CB_ALLOW_IN_PROT - -Absatzenden SW:CHECKBOX:TP_OPTSHDWCRSR:CB_PARA -Tabulatoren SW:CHECKBOX:TP_OPTSHDWCRSR:CB_TAB -Leerzeichen SW:CHECKBOX:TP_OPTSHDWCRSR:CB_SPACE -GeschLeerzeichen SW:CHECKBOX:TP_OPTSHDWCRSR:CB_HSPACE -WeicheTrenner SW:CHECKBOX:TP_OPTSHDWCRSR:CB_SHYPH -Umbrueche SW:CHECKBOX:TP_OPTSHDWCRSR:CB_BREAK -VersteckteAbsatze sw:CheckBox:TP_OPTSHDWCRSR:CB_FLD_HIDDEN_PARA -FeldVersteckterText sw:CheckBox:TP_OPTSHDWCRSR:CB_FLD_HIDDEN -VersteckterText sw:CheckBox:TP_OPTSHDWCRSR:CB_CHAR_HIDDEN - -*TabDokument HID_DOCINFODOC -Dokumentname sfx2:Edit:TP_DOCINFODOC:ED_FILE_NAME -Schreibgeschuetzt sfx2:CheckBox:TP_DOCINFODOC:CB_FILE_READONLY -DigitalSignature sfx2:PushButton:TP_DOCINFODOC:BTN_SIGNATURE -Loeschen sfx2:PushButton:TP_DOCINFODOC:BTN_DELETE -BenutzerdatenVerwenden sfx2:CheckBox:TP_DOCINFODOC:CB_USE_USERDATA - -FileTypeInfo sfx2:Edit:TP_DOCINFODOC:FT_FILE_SHOW_TYP -FileLocationInfo sfx2:Edit:TP_DOCINFODOC:FT_FILE_VAL -FileSizeInfo sfx2:Edit:TP_DOCINFODOC:FT_FILE_SHOW_SIZE -FileCreatedInfo sfx2:Edit:TP_DOCINFODOC:FT_CREATE_VAL -FileChangedInfo sfx2:Edit:TP_DOCINFODOC:FT_CHANGE_VAL -FileSignedInfo sfx2:Edit:TP_DOCINFODOC:FT_SIGNED_VAL -FileLastPrintedInfo sfx2:Edit:TP_DOCINFODOC:FT_PRINT_VAL -FileEditTimeInfo sfx2:Edit:TP_DOCINFODOC:FT_TIMELOG_VAL -FileRevisionInfo sfx2:Edit:TP_DOCINFODOC:FT_DOCNO_VAL -FileTemplateinfo sfx2:Edit:TP_DOCINFODOC:FT_TEMPL_VAL - -*TabDokumentFeldbefehle HID_FLD_DOK -Feldtyp SW:LISTBOX:TP_FLD_DOK:LB_DOKTYPE -Auswahl SW:LISTBOX:TP_FLD_DOK:LB_DOKSELECTION -Formatliste SW:LISTBOX:TP_FLD_DOK:LB_DOKFORMAT -Zahlenformat SW:LISTBOX:TP_FLD_DOK:LB_DOKNUMFORMAT -Editfeld SW:EDIT:TP_FLD_DOK:ED_DOKVALUE -InhaltFix SW:CHECKBOX:TP_FLD_DOK:CB_DOKFIXEDCONTENT -Einfuegen HID_FIELD_INSERT -Schliessen HID_FIELD_CLOSE - -*TabDokumentinfo HID_DOCINFODESC -Beschreibung sfx2:MultiLineEdit:TP_DOCINFODESC:ED_COMMENT -Schluesselworte sfx2:Edit:TP_DOCINFODESC:ED_KEYWORDS -Thema sfx2:Edit:TP_DOCINFODESC:ED_THEMA -Titel sfx2:Edit:TP_DOCINFODESC:ED_TITLE - -*TabDokumentInfoFeldbefehle HID_FLD_DOKINF -Feldtyp HID_FIELD_DINF_TYPE -Auswahl SW:LISTBOX:TP_FLD_DOKINF:LB_DOKINFSELECTION -Zahlenformat SW:LISTBOX:TP_FLD_DOKINF:LB_DOKINFFORMAT -InhaltFix SW:CHECKBOX:TP_FLD_DOKINF:CB_DOKINFFIXEDCONTENT -Einfuegen HID_FIELD_INSERT -Schliessen HID_FIELD_CLOSE - -*TabDrehung HID_TRANS_ANGLE -PositionX cui:MetricField:RID_SVXPAGE_ANGLE:MTR_FLD_POS_X -PositionY cui:MetricField:RID_SVXPAGE_ANGLE:MTR_FLD_POS_Y -Winkel cui:MetricField:RID_SVXPAGE_ANGLE:MTR_FLD_ANGLE -Drehpunkt HID_TPROTATION_CTRL1 -Drehwinkel HID_TPROTATION_CTRL2 - -*TabDruckenDraw HID_SD_PRINT_OPTIONS sc:hidspecial:HID_SC_WIN_PREVIEW -Zeichnung sd:CheckBox:TP_PRINT_OPTIONS:CBX_DRAW -Notizen sd:CheckBox:TP_PRINT_OPTIONS:CBX_NOTES -Handzettel sd:CheckBox:TP_PRINT_OPTIONS:CBX_HANDOUTS -Gliederung sd:CheckBox:TP_PRINT_OPTIONS:CBX_OUTLINE -Seitenname sd:CheckBox:TP_PRINT_OPTIONS:CBX_PAGENAME -Datum sd:CheckBox:TP_PRINT_OPTIONS:CBX_DATE -Zeit sd:CheckBox:TP_PRINT_OPTIONS:CBX_TIME -AusgeblendeteSeitenDrucken sd:CheckBox:TP_PRINT_OPTIONS:CBX_HIDDEN_PAGES -Standard sd:RadioButton:TP_PRINT_OPTIONS:RBT_DEFAULT -AnSeitengroesseAnpassen sd:RadioButton:TP_PRINT_OPTIONS:RBT_PAGESIZE -SeitenKacheln sd:RadioButton:TP_PRINT_OPTIONS:RBT_PAGETILE -Prospekt sd:RadioButton:TP_PRINT_OPTIONS:RBT_BOOKLET -Vorderseite sd:CheckBox:TP_PRINT_OPTIONS:CBX_FRONT -Rueckseite sd:CheckBox:TP_PRINT_OPTIONS:CBX_BACK -AusDruckereinstellung sd:CheckBox:TP_PRINT_OPTIONS:CBX_PAPERBIN -StandardAusgabe SD:RADIOBUTTON:TP_PRINT_OPTIONS:RBT_COLOR -Graustufen SD:RADIOBUTTON:TP_PRINT_OPTIONS:RBT_GRAYSCALE -SchwarzWeiss SD:RADIOBUTTON:TP_PRINT_OPTIONS:RBT_BLACKWHITE - -*TabDruckenHTML HID_OPTPRINT_PAGE -Grafiken SW:CHECKBOX:TP_OPTPRINT_PAGE:CB_PGRF -Kontrollfelder SW:CHECKBOX:TP_OPTPRINT_PAGE:CB_CTRLFLD -Hintergrund SW:CHECKBOX:TP_OPTPRINT_PAGE:CB_BACKGROUND -SchwarzDrucken SW:CHECKBOX:TP_OPTPRINT_PAGE:CB_BLACK_FONT -Prospekt SW:CHECKBOX:TP_OPTPRINT_PAGE:CB_PROSPECT -Keine SW:RADIOBUTTON:TP_OPTPRINT_PAGE:RB_NO -NurNotizen SW:RADIOBUTTON:TP_OPTPRINT_PAGE:RB_ONLY -Dokumentende SW:RADIOBUTTON:TP_OPTPRINT_PAGE:RB_END -Seitenende SW:RADIOBUTTON:TP_OPTPRINT_PAGE:RB_PAGEEND -AusDruckereinstellung SW:CHECKBOX:TP_OPTPRINT_PAGE:CB_PAPERFROMSETUP -LeereSeitenDrucken sw:CheckBox:TP_OPTPRINT_PAGE:CB_PRINTEMPTYPAGES -Fax SW:LISTBOX:TP_OPTPRINT_PAGE:LB_FAX - -*TabDruckenWriter HID_OPTPRINT_PAGE -Grafiken sw:CheckBox:TP_OPTPRINT_PAGE:CB_PGRF -Kontrollfelder sw:CheckBox:TP_OPTPRINT_PAGE:CB_CTRLFLD -Hintergrund sw:CheckBox:TP_OPTPRINT_PAGE:CB_BACKGROUND -HiddenText sw:CheckBox:TP_OPTPRINT_PAGE:CB_HIDDEN_TEXT -TextPlaceholder sw:CheckBox:TP_OPTPRINT_PAGE:CB_TEXT_PLACEHOLDER -RightToLeft sw:CheckBox:TP_OPTPRINT_PAGE:CB_PROSPECT_RTL -SchwarzDrucken SW:CHECKBOX:TP_OPTPRINT_PAGE:CB_BLACK_FONT -LinkeSeiten sw:CheckBox:TP_OPTPRINT_PAGE:CB_LEFTP -RechteSeiten sw:CheckBox:TP_OPTPRINT_PAGE:CB_RIGHTP -Prospekt sw:CheckBox:TP_OPTPRINT_PAGE:CB_PROSPECT -Keine sw:RadioButton:TP_OPTPRINT_PAGE:RB_NO -NurNotizen sw:RadioButton:TP_OPTPRINT_PAGE:RB_ONLY -Dokumentende sw:RadioButton:TP_OPTPRINT_PAGE:RB_END -Seitenende sw:RadioButton:TP_OPTPRINT_PAGE:RB_PAGEEND -AusDruckereinstellung sw:CheckBox:TP_OPTPRINT_PAGE:CB_PAPERFROMSETUP -LeereSeitenDrucken sw:CheckBox:TP_OPTPRINT_PAGE:CB_PRINTEMPTYPAGES -Fax sw:ListBox:TP_OPTPRINT_PAGE:LB_FAX -Zurueck HID_TABDLG_RESET_BTN - -*TabDruckenMath starmath:TabPage:RID_PRINTOPTIONPAGE -DruckeTitelzeile starmath:CheckBox:RID_PRINTOPTIONPAGE:CB_TITLEROW -DruckeFormeltext starmath:CheckBox:RID_PRINTOPTIONPAGE:CB_EQUATION_TEXT -DruckeRahmen starmath:CheckBox:RID_PRINTOPTIONPAGE:CB_FRAME -Originalgroesse starmath:RadioButton:RID_PRINTOPTIONPAGE:RB_ORIGINAL_SIZE -DerSeiteAnpassen starmath:RadioButton:RID_PRINTOPTIONPAGE:RB_FIT_TO_PAGE -Skalierung starmath:RadioButton:RID_PRINTOPTIONPAGE:RB_ZOOM -Prozent starmath:MetricField:RID_PRINTOPTIONPAGE:MF_ZOOM -Ignorieren starmath:CheckBox:RID_PRINTOPTIONPAGE:CB_IGNORE_SPACING - -*TabDruckerEtiketten HID_LAB_PRT -GanzeSeite sw:RadioButton:TP_LAB_PRT:BTN_PAGE -EinzelnesEtikett sw:RadioButton:TP_LAB_PRT:BTN_SINGLE -Spalte sw:NumericField:TP_LAB_PRT:FLD_COL -Zeile sw:NumericField:TP_LAB_PRT:FLD_ROW -Einrichten sw:PushButton:TP_LAB_PRT:BTN_PRTSETUP -InhaltSynchronisieren SW:CHECKBOX:TP_LAB_PRT:CB_SYNCHRON -NeuesDok HID_LABEL_INSERT -Zurueck HID_TABDLG_RESET_BTN - -*TabDruckerBriefumschlag HID_ENV_PRT -Art1 ITM_HOR_LEFT -Art2 ITM_HOR_CNTR -Art3 ITM_HOR_RGHT -Art4 ITM_VER_LEFT -Art5 ITM_VER_CNTR -Art6 ITM_VER_RGHT -VonObenBedrucken sw:RadioButton:TP_ENV_PRT:BTN_TOP -VonUntenBedrucken sw:RadioButton:TP_ENV_PRT:BTN_BOTTOM -NachRechts sw:MetricField:TP_ENV_PRT:FLD_RIGHT -NachUnten sw:MetricField:TP_ENV_PRT:FLD_DOWN -Einrichten sw:PushButton:TP_ENV_PRT:BTN_PRTSETUP -Drucken HID_ENVELOP_PRINT -Zurueck HID_TABDLG_RESET_BTN +Vordergrund sym:cui:ListBox:RID_SVXPAGE_BITMAP:LB_COLOR +Hintergrund sym:cui:ListBox:RID_SVXPAGE_BITMAP:LB_BACKGROUND_COLOR +Tabelle sym:cui:ListBox:RID_SVXPAGE_BITMAP:LB_BITMAPS +Hinzufuegen sym:cui:PushButton:RID_SVXPAGE_BITMAP:BTN_ADD +Aendern sym:cui:PushButton:RID_SVXPAGE_BITMAP:BTN_MODIFY +Import sym:cui:PushButton:RID_SVXPAGE_BITMAP:BTN_IMPORT +Loeschen sym:cui:PushButton:RID_SVXPAGE_BITMAP:BTN_DELETE +Oeffnen sym:cui:ImageButton:RID_SVXPAGE_BITMAP:BTN_LOAD +Speichern sym:cui:ImageButton:RID_SVXPAGE_BITMAP:BTN_SAVE +Zurueck sym:SFX2_HID_TABDLG_RESET_BTN + +*TabDateien sym:CUI_HID_GALLERY_BROWSER +Dateityp sym:cui:ComboBox:RID_SVXTABPAGE_GALLERYTHEME_FILES:CBB_FILETYPE +Suche sym:cui:PushButton:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_SEARCH +Dateiliste sym:cui:MultiListBox:RID_SVXTABPAGE_GALLERYTHEME_FILES:LBX_FOUND +Hinzufuegen sym:cui:PushButton:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_TAKE +HinzufuegenAlle sym:cui:PushButton:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_TAKEALL +Vorschau sym:cui:CheckBox:RID_SVXTABPAGE_GALLERYTHEME_FILES:CBX_PREVIEW + +*TabDatenbank sym:SW_HID_FLD_DB +Feldtyp sym:sw:ListBox:TP_FLD_DB:LB_DBTYPE +Datenbankauswahl sym:SW_HID_DB_SELECTION_TLB +Bedingung sym:sw:Edit:TP_FLD_DB:ED_DBCONDITION +Satznummer sym:sw:Edit:TP_FLD_DB:ED_DBSETNUMBER +AusDatenbank sym:sw:RadioButton:TP_FLD_DB:RB_DBOWNFORMAT +Selbstdefiniert sym:sw:RadioButton:TP_FLD_DB:RB_DBFORMAT +Formatliste sym:sw:ListBox:TP_FLD_DB:LB_DBFORMAT +Zahlenformat sym:sw:ListBox:TP_FLD_DB:LB_DBNUMFORMAT +Einfuegen sym:SW_HID_FIELD_INSERT +Schliessen sym:SW_HID_FIELD_CLOSE + +*TabDirektCursor sym:SW_HID_OPTSHDWCRSR +DirektCursor sym:sw:CheckBox:TP_OPTSHDWCRSR:CB_SHDWCRSONOFF +Absatzausrichtung sym:sw:RadioButton:TP_OPTSHDWCRSR:RB_SHDWCRSFILLMARGIN +LinkerAbsatzrand sym:sw:RadioButton:TP_OPTSHDWCRSR:RB_SHDWCRSFILLINDENT +Tabulator sym:sw:RadioButton:TP_OPTSHDWCRSR:RB_SHDWCRSFILLTAB +TabulatorUndLeerzeichen sym:sw:RadioButton:TP_OPTSHDWCRSR:RB_SHDWCRSFILLSPACE +Zonen_Cursor sym:sw:CheckBox:TP_OPTSHDWCRSR:CB_ALLOW_IN_PROT + +Absatzenden sym:sw:CheckBox:TP_OPTSHDWCRSR:CB_PARA +Tabulatoren sym:sw:CheckBox:TP_OPTSHDWCRSR:CB_TAB +Leerzeichen sym:sw:CheckBox:TP_OPTSHDWCRSR:CB_SPACE +GeschLeerzeichen sym:sw:CheckBox:TP_OPTSHDWCRSR:CB_HSPACE +WeicheTrenner sym:sw:CheckBox:TP_OPTSHDWCRSR:CB_SHYPH +Umbrueche sym:sw:CheckBox:TP_OPTSHDWCRSR:CB_BREAK +VersteckteAbsatze sym:sw:CheckBox:TP_OPTSHDWCRSR:CB_FLD_HIDDEN_PARA +FeldVersteckterText sym:sw:CheckBox:TP_OPTSHDWCRSR:CB_FLD_HIDDEN +VersteckterText sym:sw:CheckBox:TP_OPTSHDWCRSR:CB_CHAR_HIDDEN + +*TabDokument sym:SFX2_HID_DOCINFODOC +Dokumentname sym:sfx2:Edit:TP_DOCINFODOC:ED_FILE_NAME +Schreibgeschuetzt sym:sfx2:CheckBox:TP_DOCINFODOC:CB_FILE_READONLY +DigitalSignature sym:sfx2:PushButton:TP_DOCINFODOC:BTN_SIGNATURE +Loeschen sym:sfx2:PushButton:TP_DOCINFODOC:BTN_DELETE +BenutzerdatenVerwenden sym:sfx2:CheckBox:TP_DOCINFODOC:CB_USE_USERDATA + +FileTypeInfo sym:sfx2:Edit:TP_DOCINFODOC:FT_FILE_SHOW_TYP +FileLocationInfo sym:sfx2:Edit:TP_DOCINFODOC:FT_FILE_VAL +FileSizeInfo sym:sfx2:Edit:TP_DOCINFODOC:FT_FILE_SHOW_SIZE +FileCreatedInfo sym:sfx2:Edit:TP_DOCINFODOC:FT_CREATE_VAL +FileChangedInfo sym:sfx2:Edit:TP_DOCINFODOC:FT_CHANGE_VAL +FileSignedInfo sym:sfx2:Edit:TP_DOCINFODOC:FT_SIGNED_VAL +FileLastPrintedInfo sym:sfx2:Edit:TP_DOCINFODOC:FT_PRINT_VAL +FileEditTimeInfo sym:sfx2:Edit:TP_DOCINFODOC:FT_TIMELOG_VAL +FileRevisionInfo sym:sfx2:Edit:TP_DOCINFODOC:FT_DOCNO_VAL +FileTemplateinfo sym:sfx2:Edit:TP_DOCINFODOC:FT_TEMPL_VAL + +*TabDokumentFeldbefehle sym:SW_HID_FLD_DOK +Feldtyp sym:sw:ListBox:TP_FLD_DOK:LB_DOKTYPE +Auswahl sym:sw:ListBox:TP_FLD_DOK:LB_DOKSELECTION +Formatliste sym:sw:ListBox:TP_FLD_DOK:LB_DOKFORMAT +Zahlenformat sym:sw:ListBox:TP_FLD_DOK:LB_DOKNUMFORMAT +Editfeld sym:sw:Edit:TP_FLD_DOK:ED_DOKVALUE +InhaltFix sym:sw:CheckBox:TP_FLD_DOK:CB_DOKFIXEDCONTENT +Einfuegen sym:SW_HID_FIELD_INSERT +Schliessen sym:SW_HID_FIELD_CLOSE + +*TabDokumentinfo sym:SFX2_HID_DOCINFODESC +Beschreibung sym:sfx2:MultiLineEdit:TP_DOCINFODESC:ED_COMMENT +Schluesselworte sym:sfx2:Edit:TP_DOCINFODESC:ED_KEYWORDS +Thema sym:sfx2:Edit:TP_DOCINFODESC:ED_THEMA +Titel sym:sfx2:Edit:TP_DOCINFODESC:ED_TITLE + +*TabDokumentInfoFeldbefehle sym:SW_HID_FLD_DOKINF +Feldtyp sym:SW_HID_FIELD_DINF_TYPE +Auswahl sym:sw:ListBox:TP_FLD_DOKINF:LB_DOKINFSELECTION +Zahlenformat sym:sw:ListBox:TP_FLD_DOKINF:LB_DOKINFFORMAT +InhaltFix sym:sw:CheckBox:TP_FLD_DOKINF:CB_DOKINFFIXEDCONTENT +Einfuegen sym:SW_HID_FIELD_INSERT +Schliessen sym:SW_HID_FIELD_CLOSE + +*TabDrehung sym:CUI_HID_TRANS_ANGLE +PositionX sym:cui:MetricField:RID_SVXPAGE_ANGLE:MTR_FLD_POS_X +PositionY sym:cui:MetricField:RID_SVXPAGE_ANGLE:MTR_FLD_POS_Y +Winkel sym:cui:MetricField:RID_SVXPAGE_ANGLE:MTR_FLD_ANGLE +Drehpunkt sym:CUI_HID_TPROTATION_CTRL1 +Drehwinkel sym:CUI_HID_TPROTATION_CTRL2 + +*TabDruckenDraw sym:SD_HID_SD_PRINT_OPTIONS sym:sc:hidspecial:HID_SC_WIN_PREVIEW +Zeichnung sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_DRAW +Notizen sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_NOTES +Handzettel sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_HANDOUTS +Gliederung sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_OUTLINE +Seitenname sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_PAGENAME +Datum sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_DATE +Zeit sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_TIME +AusgeblendeteSeitenDrucken sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_HIDDEN_PAGES +Standard sym:sd:RadioButton:TP_PRINT_OPTIONS:RBT_DEFAULT +AnSeitengroesseAnpassen sym:sd:RadioButton:TP_PRINT_OPTIONS:RBT_PAGESIZE +SeitenKacheln sym:sd:RadioButton:TP_PRINT_OPTIONS:RBT_PAGETILE +Prospekt sym:sd:RadioButton:TP_PRINT_OPTIONS:RBT_BOOKLET +Vorderseite sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_FRONT +Rueckseite sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_BACK +AusDruckereinstellung sym:sd:CheckBox:TP_PRINT_OPTIONS:CBX_PAPERBIN +StandardAusgabe sym:sd:RadioButton:TP_PRINT_OPTIONS:RBT_COLOR +Graustufen sym:sd:RadioButton:TP_PRINT_OPTIONS:RBT_GRAYSCALE +SchwarzWeiss sym:sd:RadioButton:TP_PRINT_OPTIONS:RBT_BLACKWHITE + +*TabDruckenHTML sym:SW_HID_OPTPRINT_PAGE +Grafiken sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_PGRF +Kontrollfelder sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_CTRLFLD +Hintergrund sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_BACKGROUND +SchwarzDrucken sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_BLACK_FONT +Prospekt sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_PROSPECT +Keine sym:sw:RadioButton:TP_OPTPRINT_PAGE:RB_NO +NurNotizen sym:sw:RadioButton:TP_OPTPRINT_PAGE:RB_ONLY +Dokumentende sym:sw:RadioButton:TP_OPTPRINT_PAGE:RB_END +Seitenende sym:sw:RadioButton:TP_OPTPRINT_PAGE:RB_PAGEEND +AusDruckereinstellung sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_PAPERFROMSETUP +LeereSeitenDrucken sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_PRINTEMPTYPAGES +Fax sym:sw:ListBox:TP_OPTPRINT_PAGE:LB_FAX + +*TabDruckenWriter sym:SW_HID_OPTPRINT_PAGE +Grafiken sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_PGRF +Kontrollfelder sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_CTRLFLD +Hintergrund sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_BACKGROUND +HiddenText sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_HIDDEN_TEXT +TextPlaceholder sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_TEXT_PLACEHOLDER +RightToLeft sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_PROSPECT_RTL +SchwarzDrucken sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_BLACK_FONT +LinkeSeiten sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_LEFTP +RechteSeiten sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_RIGHTP +Prospekt sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_PROSPECT +Keine sym:sw:RadioButton:TP_OPTPRINT_PAGE:RB_NO +NurNotizen sym:sw:RadioButton:TP_OPTPRINT_PAGE:RB_ONLY +Dokumentende sym:sw:RadioButton:TP_OPTPRINT_PAGE:RB_END +Seitenende sym:sw:RadioButton:TP_OPTPRINT_PAGE:RB_PAGEEND +AusDruckereinstellung sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_PAPERFROMSETUP +LeereSeitenDrucken sym:sw:CheckBox:TP_OPTPRINT_PAGE:CB_PRINTEMPTYPAGES +Fax sym:sw:ListBox:TP_OPTPRINT_PAGE:LB_FAX +Zurueck sym:SFX2_HID_TABDLG_RESET_BTN + +*TabDruckenMath sym:starmath:TabPage:RID_PRINTOPTIONPAGE +DruckeTitelzeile sym:starmath:CheckBox:RID_PRINTOPTIONPAGE:CB_TITLEROW +DruckeFormeltext sym:starmath:CheckBox:RID_PRINTOPTIONPAGE:CB_EQUATION_TEXT +DruckeRahmen sym:starmath:CheckBox:RID_PRINTOPTIONPAGE:CB_FRAME +Originalgroesse sym:starmath:RadioButton:RID_PRINTOPTIONPAGE:RB_ORIGINAL_SIZE +DerSeiteAnpassen sym:starmath:RadioButton:RID_PRINTOPTIONPAGE:RB_FIT_TO_PAGE +Skalierung sym:starmath:RadioButton:RID_PRINTOPTIONPAGE:RB_ZOOM +Prozent sym:starmath:MetricField:RID_PRINTOPTIONPAGE:MF_ZOOM +Ignorieren sym:starmath:CheckBox:RID_PRINTOPTIONPAGE:CB_IGNORE_SPACING + +*TabDruckerEtiketten sym:SW_HID_LAB_PRT +GanzeSeite sym:sw:RadioButton:TP_LAB_PRT:BTN_PAGE +EinzelnesEtikett sym:sw:RadioButton:TP_LAB_PRT:BTN_SINGLE +Spalte sym:sw:NumericField:TP_LAB_PRT:FLD_COL +Zeile sym:sw:NumericField:TP_LAB_PRT:FLD_ROW +Einrichten sym:sw:PushButton:TP_LAB_PRT:BTN_PRTSETUP +InhaltSynchronisieren sym:sw:CheckBox:TP_LAB_PRT:CB_SYNCHRON +NeuesDok sym:SW_HID_LABEL_INSERT +Zurueck sym:SFX2_HID_TABDLG_RESET_BTN + +*TabDruckerBriefumschlag sym:SW_HID_ENV_PRT +Art1 sym:SW_HID_ITM_HOR_LEFT +Art2 sym:SW_HID_ITM_HOR_CNTR +Art3 sym:SW_HID_ITM_HOR_RGHT +Art4 sym:SW_HID_ITM_VER_LEFT +Art5 sym:SW_HID_ITM_VER_CNTR +Art6 sym:SW_HID_ITM_VER_RGHT +VonObenBedrucken sym:sw:RadioButton:TP_ENV_PRT:BTN_TOP +VonUntenBedrucken sym:sw:RadioButton:TP_ENV_PRT:BTN_BOTTOM +NachRechts sym:sw:MetricField:TP_ENV_PRT:FLD_RIGHT +NachUnten sym:sw:MetricField:TP_ENV_PRT:FLD_DOWN +Einrichten sym:sw:PushButton:TP_ENV_PRT:BTN_PRTSETUP +Drucken sym:SW_HID_ENVELOP_PRINT +Zurueck sym:SFX2_HID_TABDLG_RESET_BTN diff --git a/testautomation/global/win/tab_e_g.win b/testautomation/global/win/tab_e_g.win index d34d387acffc..f3151feda3de 100755..100644 --- a/testautomation/global/win/tab_e_g.win +++ b/testautomation/global/win/tab_e_g.win @@ -1,302 +1,302 @@ -*TabEigenschaften SID_INSERT_FLOATINGFRAME -FrameName cui:Edit:MD_INSERT_OBJECT_IFRAME:ED_FRAMENAME -Inhalt cui:Edit:MD_INSERT_OBJECT_IFRAME:ED_URL -Oeffnen cui:PushButton:MD_INSERT_OBJECT_IFRAME:BT_FILEOPEN -An cui:RadioButton:MD_INSERT_OBJECT_IFRAME:RB_SCROLLINGON -Aus cui:RadioButton:MD_INSERT_OBJECT_IFRAME:RB_SCROLLINGOFF -Automatisch cui:RadioButton:MD_INSERT_OBJECT_IFRAME:RB_SCROLLINGAUTO -UmrandungAn cui:RadioButton:MD_INSERT_OBJECT_IFRAME:RB_FRMBORDER_ON -UmrandungAus cui:RadioButton:MD_INSERT_OBJECT_IFRAME:RB_FRMBORDER_OFF -Breite cui:NumericField:MD_INSERT_OBJECT_IFRAME:NM_MARGINWIDTH -Hoehe cui:NumericField:MD_INSERT_OBJECT_IFRAME:NM_MARGINHEIGHT -BreiteStandard cui:CheckBox:MD_INSERT_OBJECT_IFRAME:CB_MARGINHEIGHTDEFAULT -HoeheStandard cui:CheckBox:MD_INSERT_OBJECT_IFRAME:CB_MARGINHEIGHTDEFAULT +*TabEigenschaften .uno:InsertObjectFloatingFrame +FrameName sym:cui:Edit:MD_INSERT_OBJECT_IFRAME:ED_FRAMENAME +Inhalt sym:cui:Edit:MD_INSERT_OBJECT_IFRAME:ED_URL +Oeffnen sym:cui:PushButton:MD_INSERT_OBJECT_IFRAME:BT_FILEOPEN +An sym:cui:RadioButton:MD_INSERT_OBJECT_IFRAME:RB_SCROLLINGON +Aus sym:cui:RadioButton:MD_INSERT_OBJECT_IFRAME:RB_SCROLLINGOFF +Automatisch sym:cui:RadioButton:MD_INSERT_OBJECT_IFRAME:RB_SCROLLINGAUTO +UmrandungAn sym:cui:RadioButton:MD_INSERT_OBJECT_IFRAME:RB_FRMBORDER_ON +UmrandungAus sym:cui:RadioButton:MD_INSERT_OBJECT_IFRAME:RB_FRMBORDER_OFF +Breite sym:cui:NumericField:MD_INSERT_OBJECT_IFRAME:NM_MARGINWIDTH +Hoehe sym:cui:NumericField:MD_INSERT_OBJECT_IFRAME:NM_MARGINHEIGHT +BreiteStandard sym:cui:CheckBox:MD_INSERT_OBJECT_IFRAME:CB_MARGINHEIGHTDEFAULT +HoeheStandard sym:cui:CheckBox:MD_INSERT_OBJECT_IFRAME:CB_MARGINHEIGHTDEFAULT -*TabEingabehilfe SC:TABPAGE:TP_VALIDATION_INPUTHELP -EingabehilfenbeiSelektion SC:TRISTATEBOX:TP_VALIDATION_INPUTHELP:TSB_HELP -Titel SC:EDIT:TP_VALIDATION_INPUTHELP:EDT_TITLE -EingabeHilfe SC:MULTILINEEDIT:TP_VALIDATION_INPUTHELP:EDT_INPUTHELP +*TabEingabehilfe sym:sc:TabPage:TP_VALIDATION_INPUTHELP +EingabehilfenbeiSelektion sym:sc:TriStateBox:TP_VALIDATION_INPUTHELP:TSB_HELP +Titel sym:sc:Edit:TP_VALIDATION_INPUTHELP:EDT_TITLE +EingabeHilfe sym:sc:MultiLineEdit:TP_VALIDATION_INPUTHELP:EDT_INPUTHELP -*TabEinzuegeUndAbstaende HID_FORMAT_PARAGRAPH_STD -Automatisch cui:CheckBox:RID_SVXPAGE_STD_PARAGRAPH:CB_AUTO -Vonlinks cui:MetricField:RID_SVXPAGE_STD_PARAGRAPH:ED_LEFTINDENT -ErsteZeile cui:MetricField:RID_SVXPAGE_STD_PARAGRAPH:ED_FLINEINDENT -VonRechts cui:MetricField:RID_SVXPAGE_STD_PARAGRAPH:ED_RIGHTINDENT -Oben cui:MetricField:RID_SVXPAGE_STD_PARAGRAPH:ED_TOPDIST -Unten cui:MetricField:RID_SVXPAGE_STD_PARAGRAPH:ED_BOTTOMDIST -Zeilenabstand cui:ListBox:RID_SVXPAGE_STD_PARAGRAPH:LB_LINEDIST -Um cui:MetricField:RID_SVXPAGE_STD_PARAGRAPH:ED_LINEDISTPERCENT -Von cui:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_LINEDISTMETRIC -Registerhaltigkeit cui:CheckBox:RID_SVXPAGE_STD_PARAGRAPH:CB_REGISTER +*TabEinzuegeUndAbstaende sym:CUI_HID_FORMAT_PARAGRAPH_STD +Automatisch sym:cui:CheckBox:RID_SVXPAGE_STD_PARAGRAPH:CB_AUTO +Vonlinks sym:cui:MetricField:RID_SVXPAGE_STD_PARAGRAPH:ED_LEFTINDENT +ErsteZeile sym:cui:MetricField:RID_SVXPAGE_STD_PARAGRAPH:ED_FLINEINDENT +VonRechts sym:cui:MetricField:RID_SVXPAGE_STD_PARAGRAPH:ED_RIGHTINDENT +Oben sym:cui:MetricField:RID_SVXPAGE_STD_PARAGRAPH:ED_TOPDIST +Unten sym:cui:MetricField:RID_SVXPAGE_STD_PARAGRAPH:ED_BOTTOMDIST +Zeilenabstand sym:cui:ListBox:RID_SVXPAGE_STD_PARAGRAPH:LB_LINEDIST +Um sym:cui:MetricField:RID_SVXPAGE_STD_PARAGRAPH:ED_LINEDISTPERCENT +Von sym:cui:MetricField:RID_SVXPAGE_STD_PARAGRAPH:ED_LINEDISTMETRIC +Registerhaltigkeit sym:cui:CheckBox:RID_SVXPAGE_STD_PARAGRAPH:CB_REGISTER -*TabEndnoten HID_ENDNOTE_OPTIONS -Numerierung sw:ListBox:TP_ENDNOTEOPTION:LB_NUMVIEW -BeginnBei sw:NumericField:TP_ENDNOTEOPTION:FLD_OFFSET -Davor sw:Edit:TP_ENDNOTEOPTION:ED_PREFIX -Dahinter sw:Edit:TP_ENDNOTEOPTION:ED_SUFFIX -Absatz sw:ListBox:TP_ENDNOTEOPTION:LB_PARA_TEMPL -Seite sw:ListBox:TP_ENDNOTEOPTION:LB_PAGE_TEMPL -ZeichenvorlageEndnotenbereich sw:ListBox:TP_ENDNOTEOPTION:LB_TEXT_CHARFMT -ZeichenvorlageTextbereich sw:ListBox:TP_ENDNOTEOPTION:LB_ANCHR_CHARFMT +*TabEndnoten sym:SW_HID_ENDNOTE_OPTIONS +Numerierung sym:sw:ListBox:TP_ENDNOTEOPTION:LB_NUMVIEW +BeginnBei sym:sw:NumericField:TP_ENDNOTEOPTION:FLD_OFFSET +Davor sym:sw:Edit:TP_ENDNOTEOPTION:ED_PREFIX +Dahinter sym:sw:Edit:TP_ENDNOTEOPTION:ED_SUFFIX +Absatz sym:sw:ListBox:TP_ENDNOTEOPTION:LB_PARA_TEMPL +Seite sym:sw:ListBox:TP_ENDNOTEOPTION:LB_PAGE_TEMPL +ZeichenvorlageEndnotenbereich sym:sw:ListBox:TP_ENDNOTEOPTION:LB_TEXT_CHARFMT +ZeichenvorlageTextbereich sym:sw:ListBox:TP_ENDNOTEOPTION:LB_ANCHR_CHARFMT -*TabErsetzung HID_OFAPAGE_AUTOCORR_REPLACE -NurText cui:CheckBox:RID_OFAPAGE_AUTOCORR_REPLACE:CB_TEXT_ONLY -Kuerzel cui:Edit:RID_OFAPAGE_AUTOCORR_REPLACE:ED_SHORT -ErsetzenDurch cui:Edit:RID_OFAPAGE_AUTOCORR_REPLACE:ED_REPLACE -Liste HID_OFACTL_AUTOCORR_REPLACE -Neu cui:PushButton:RID_OFAPAGE_AUTOCORR_REPLACE:PB_NEW_REPLACE -Loeschen cui:PushButton:RID_OFAPAGE_AUTOCORR_REPLACE:PB_DELETE_REPLACE -Zurueck HID_TABDLG_RESET_BTN -WelcheSprache HID_AUTOCORR_LANGUAGE +*TabErsetzung sym:CUI_HID_OFAPAGE_AUTOCORR_REPLACE +NurText sym:cui:CheckBox:RID_OFAPAGE_AUTOCORR_REPLACE:CB_TEXT_ONLY +Kuerzel sym:cui:Edit:RID_OFAPAGE_AUTOCORR_REPLACE:ED_SHORT +ErsetzenDurch sym:cui:Edit:RID_OFAPAGE_AUTOCORR_REPLACE:ED_REPLACE +Liste sym:CUI_HID_OFACTL_AUTOCORR_REPLACE +Neu sym:cui:PushButton:RID_OFAPAGE_AUTOCORR_REPLACE:PB_NEW_REPLACE +Loeschen sym:cui:PushButton:RID_OFAPAGE_AUTOCORR_REPLACE:PB_DELETE_REPLACE +Zurueck sym:SFX2_HID_TABDLG_RESET_BTN +WelcheSprache sym:CUI_HID_AUTOCORR_LANGUAGE -*TabEtiketten HID_LAB_LAB -Adresse sw:CheckBox:TP_LAB_LAB:BOX_ADDR -Aufschrift sw:MultiLineEdit:TP_LAB_LAB:EDT_WRITING -Anschrift sw:ListBox:TP_LAB_LAB:LB_DATABASE -Tabelle sw:ListBox:TP_LAB_LAB:LB_TABLE -Datenbankfeld sw:ListBox:TP_LAB_LAB:LB_DBFIELD -Uebernehmen sw:ImageButton:TP_LAB_LAB:BTN_INSERT -Endlos sw:RadioButton:TP_LAB_LAB:BTN_CONT -Bogen sw:RadioButton:TP_LAB_LAB:BTN_SHEET -Marke sw:ListBox:TP_LAB_LAB:BOX_MAKE -Typ sw:ListBox:TP_LAB_LAB:BOX_TYPE -NeuesDok HID_LABEL_INSERT -Zurueck HID_TABDLG_RESET_BTN +*TabEtiketten sym:SW_HID_LAB_LAB +Adresse sym:sw:CheckBox:TP_LAB_LAB:BOX_ADDR +Aufschrift sym:sw:MultiLineEdit:TP_LAB_LAB:EDT_WRITING +Anschrift sym:sw:ListBox:TP_LAB_LAB:LB_DATABASE +Tabelle sym:sw:ListBox:TP_LAB_LAB:LB_TABLE +Datenbankfeld sym:sw:ListBox:TP_LAB_LAB:LB_DBFIELD +Uebernehmen sym:sw:ImageButton:TP_LAB_LAB:BTN_INSERT +Endlos sym:sw:RadioButton:TP_LAB_LAB:BTN_CONT +Bogen sym:sw:RadioButton:TP_LAB_LAB:BTN_SHEET +Marke sym:sw:ListBox:TP_LAB_LAB:BOX_MAKE +Typ sym:sw:ListBox:TP_LAB_LAB:BOX_TYPE +NeuesDok sym:SW_HID_LABEL_INSERT +Zurueck sym:SFX2_HID_TABDLG_RESET_BTN -*TabEtikettenMedium HID_BUSINESS_FMT_PAGE -Endlos HID_BUSINESS_FMT_PAGE_CONT -Bogen HID_BUSINESS_FMT_PAGE_SHEET -Marke HID_BUSINESS_FMT_PAGE_BRAND -Typ HID_BUSINESS_FMT_PAGE_TYPE -NeuesDok HID_LABEL_INSERT -Zurueck HID_TABDLG_RESET_BTN +*TabEtikettenMedium sym:SW_HID_BUSINESS_FMT_PAGE +Endlos sym:SW_HID_BUSINESS_FMT_PAGE_CONT +Bogen sym:SW_HID_BUSINESS_FMT_PAGE_SHEET +Marke sym:SW_HID_BUSINESS_FMT_PAGE_BRAND +Typ sym:SW_HID_BUSINESS_FMT_PAGE_TYPE +NeuesDok sym:SW_HID_LABEL_INSERT +Zurueck sym:SFX2_HID_TABDLG_RESET_BTN -*TabFangenEinrasten HID_SD_OPTIONS_SNAP sc:hidspecial:HID_SC_WIN_PREVIEW +*TabFangenEinrasten sym:SD_HID_SD_OPTIONS_SNAP sym:sc:hidspecial:HID_SC_WIN_PREVIEW -*TabFarben HID_OPTIONS_COLOR -FarbName cui:Edit:RID_SVXPAGE_COLOR:EDT_NAME -Farbe cui:ListBox:RID_SVXPAGE_COLOR:LB_COLOR -Farbmodell cui:ListBox:RID_SVXPAGE_COLOR:LB_COLORMODEL -R HID_TPCOLOR_RGB_1 -G HID_TPCOLOR_RGB_2 -B HID_TPCOLOR_RGB_3 -C HID_TPCOLOR_CMYK_1 -M HID_TPCOLOR_CMYK_2 -Y HID_TPCOLOR_CMYK_3 -K cui:MetricField:RID_SVXPAGE_COLOR:MTR_FLD_4 -Aendern cui:PushButton:RID_SVXPAGE_COLOR:BTN_MODIFY -Hinzufuegen cui:PushButton:RID_SVXPAGE_COLOR:BTN_ADD -Loeschen cui:PushButton:RID_SVXPAGE_COLOR:BTN_DELETE -Oeffnen cui:ImageButton:RID_SVXPAGE_COLOR:BTN_LOAD -Speichern cui:ImageButton:RID_SVXPAGE_COLOR:BTN_SAVE -Bearbeiten cui:PushButton:RID_SVXPAGE_COLOR:BTN_WORK_ON +*TabFarben sym:CUI_HID_OPTIONS_COLOR +FarbName sym:cui:Edit:RID_SVXPAGE_COLOR:EDT_NAME +Farbe sym:cui:ListBox:RID_SVXPAGE_COLOR:LB_COLOR +Farbmodell sym:cui:ListBox:RID_SVXPAGE_COLOR:LB_COLORMODEL +R sym:CUI_HID_TPCOLOR_RGB_1 +G sym:CUI_HID_TPCOLOR_RGB_2 +B sym:CUI_HID_TPCOLOR_RGB_3 +C sym:CUI_HID_TPCOLOR_CMYK_1 +M sym:CUI_HID_TPCOLOR_CMYK_2 +Y sym:CUI_HID_TPCOLOR_CMYK_3 +K sym:cui:MetricField:RID_SVXPAGE_COLOR:MTR_FLD_4 +Aendern sym:cui:PushButton:RID_SVXPAGE_COLOR:BTN_MODIFY +Hinzufuegen sym:cui:PushButton:RID_SVXPAGE_COLOR:BTN_ADD +Loeschen sym:cui:PushButton:RID_SVXPAGE_COLOR:BTN_DELETE +Oeffnen sym:cui:ImageButton:RID_SVXPAGE_COLOR:BTN_LOAD +Speichern sym:cui:ImageButton:RID_SVXPAGE_COLOR:BTN_SAVE +Bearbeiten sym:cui:PushButton:RID_SVXPAGE_COLOR:BTN_WORK_ON -*TabFarbverlaeufe HID_AREA_GRADIENT -Typ cui:ListBox:RID_SVXPAGE_GRADIENT:LB_GRADIENT_TYPES -ZentrumX cui:MetricField:RID_SVXPAGE_GRADIENT:MTR_CENTER_X -ZentrumY cui:MetricField:RID_SVXPAGE_GRADIENT:MTR_CENTER_Y -Winkel cui:MetricField:RID_SVXPAGE_GRADIENT:MTR_ANGLE -Rand cui:MetricField:RID_SVXPAGE_GRADIENT:MTR_BORDER -Von cui:ListBox:RID_SVXPAGE_GRADIENT:LB_COLOR_FROM -Bis cui:ListBox:RID_SVXPAGE_GRADIENT:LB_COLOR_TO -VonWert cui:MetricField:RID_SVXPAGE_GRADIENT:MTR_COLOR_FROM -BisWert cui:MetricField:RID_SVXPAGE_GRADIENT:MTR_COLOR_TO -Tabelle cui:ListBox:RID_SVXPAGE_GRADIENT:LB_GRADIENTS -Hinzufuegen cui:PushButton:RID_SVXPAGE_GRADIENT:BTN_ADD -Aendern cui:PushButton:RID_SVXPAGE_GRADIENT:BTN_MODIFY -Loeschen cui:PushButton:RID_SVXPAGE_GRADIENT:BTN_DELETE -Oeffnen cui:ImageButton:RID_SVXPAGE_GRADIENT:BTN_LOAD -Speichern cui:ImageButton:RID_SVXPAGE_GRADIENT:BTN_SAVE +*TabFarbverlaeufe sym:CUI_HID_AREA_GRADIENT +Typ sym:cui:ListBox:RID_SVXPAGE_GRADIENT:LB_GRADIENT_TYPES +ZentrumX sym:cui:MetricField:RID_SVXPAGE_GRADIENT:MTR_CENTER_X +ZentrumY sym:cui:MetricField:RID_SVXPAGE_GRADIENT:MTR_CENTER_Y +Winkel sym:cui:MetricField:RID_SVXPAGE_GRADIENT:MTR_ANGLE +Rand sym:cui:MetricField:RID_SVXPAGE_GRADIENT:MTR_BORDER +Von sym:cui:ListBox:RID_SVXPAGE_GRADIENT:LB_COLOR_FROM +Bis sym:cui:ListBox:RID_SVXPAGE_GRADIENT:LB_COLOR_TO +VonWert sym:cui:MetricField:RID_SVXPAGE_GRADIENT:MTR_COLOR_FROM +BisWert sym:cui:MetricField:RID_SVXPAGE_GRADIENT:MTR_COLOR_TO +Tabelle sym:cui:ListBox:RID_SVXPAGE_GRADIENT:LB_GRADIENTS +Hinzufuegen sym:cui:PushButton:RID_SVXPAGE_GRADIENT:BTN_ADD +Aendern sym:cui:PushButton:RID_SVXPAGE_GRADIENT:BTN_MODIFY +Loeschen sym:cui:PushButton:RID_SVXPAGE_GRADIENT:BTN_DELETE +Oeffnen sym:cui:ImageButton:RID_SVXPAGE_GRADIENT:BTN_LOAD +Speichern sym:cui:ImageButton:RID_SVXPAGE_GRADIENT:BTN_SAVE -*TabFehlermeldung SC:TABPAGE:TP_VALIDATION_ERROR -FehlermeldungbeiEingabe SC:TRISTATEBOX:TP_VALIDATION_ERROR:TSB_SHOW -Aktion SC:LISTBOX:TP_VALIDATION_ERROR:LB_ACTION -Titel SC:EDIT:TP_VALIDATION_ERROR:EDT_TITLE -Fehlermeldung SC:MULTILINEEDIT:TP_VALIDATION_ERROR:EDT_ERROR -Durchsuchen SC:PUSHBUTTON:TP_VALIDATION_ERROR:BTN_SEARCH +*TabFehlermeldung sym:sc:TabPage:TP_VALIDATION_ERROR +FehlermeldungbeiEingabe sym:sc:TriStateBox:TP_VALIDATION_ERROR:TSB_SHOW +Aktion sym:sc:ListBox:TP_VALIDATION_ERROR:LB_ACTION +Titel sym:sc:Edit:TP_VALIDATION_ERROR:EDT_TITLE +Fehlermeldung sym:sc:MultiLineEdit:TP_VALIDATION_ERROR:EDT_ERROR +Durchsuchen sym:sc:PushButton:TP_VALIDATION_ERROR:BTN_SEARCH -*TabFussEndnoten HID_SECTION_FTNENDNOTES_PAGE -FussnotenAmTextendeSammeln sw:CheckBox:TP_SECTION_FTNENDNOTES:CB_FTN_AT_TXTEND -FussnotenNummerNeuStarten sw:CheckBox:TP_SECTION_FTNENDNOTES:CB_FTN_NUM -FussnotenEigenesFormat sw:CheckBox:TP_SECTION_FTNENDNOTES:CB_FTN_NUM_FMT -FussnotenNummerierung sw:ListBox:TP_SECTION_FTNENDNOTES:LB_FTN_NUMVIEW -FussnotenBeginn sw:NumericField:TP_SECTION_FTNENDNOTES:FLD_FTN_OFFSET -FussnotenDavor sw:Edit:TP_SECTION_FTNENDNOTES:ED_FTN_PREFIX -FussnotenDahinter sw:Edit:TP_SECTION_FTNENDNOTES:ED_FTN_SUFFIX -EndnotenAmBereichsendeSammeln sw:CheckBox:TP_SECTION_FTNENDNOTES:CB_END_AT_TXTEND -EndnotenNummerNeuStarten sw:CheckBox:TP_SECTION_FTNENDNOTES:CB_END_NUM -EndnotenEigenesFormat sw:CheckBox:TP_SECTION_FTNENDNOTES:CB_END_NUM_FMT -EndnotenNumerierung sw:ListBox:TP_SECTION_FTNENDNOTES:LB_END_NUMVIEW -EndnotenBeginn sw:NumericField:TP_SECTION_FTNENDNOTES:FLD_END_OFFSET -EndnotenDavor sw:Edit:TP_SECTION_FTNENDNOTES:ED_END_PREFIX -EndnotenDahinter sw:Edit:TP_SECTION_FTNENDNOTES:ED_END_SUFFIX +*TabFussEndnoten sym:SW_HID_SECTION_FTNENDNOTES_PAGE +FussnotenAmTextendeSammeln sym:sw:CheckBox:TP_SECTION_FTNENDNOTES:CB_FTN_AT_TXTEND +FussnotenNummerNeuStarten sym:sw:CheckBox:TP_SECTION_FTNENDNOTES:CB_FTN_NUM +FussnotenEigenesFormat sym:sw:CheckBox:TP_SECTION_FTNENDNOTES:CB_FTN_NUM_FMT +FussnotenNummerierung sym:sw:ListBox:TP_SECTION_FTNENDNOTES:LB_FTN_NUMVIEW +FussnotenBeginn sym:sw:NumericField:TP_SECTION_FTNENDNOTES:FLD_FTN_OFFSET +FussnotenDavor sym:sw:Edit:TP_SECTION_FTNENDNOTES:ED_FTN_PREFIX +FussnotenDahinter sym:sw:Edit:TP_SECTION_FTNENDNOTES:ED_FTN_SUFFIX +EndnotenAmBereichsendeSammeln sym:sw:CheckBox:TP_SECTION_FTNENDNOTES:CB_END_AT_TXTEND +EndnotenNummerNeuStarten sym:sw:CheckBox:TP_SECTION_FTNENDNOTES:CB_END_NUM +EndnotenEigenesFormat sym:sw:CheckBox:TP_SECTION_FTNENDNOTES:CB_END_NUM_FMT +EndnotenNumerierung sym:sw:ListBox:TP_SECTION_FTNENDNOTES:LB_END_NUMVIEW +EndnotenBeginn sym:sw:NumericField:TP_SECTION_FTNENDNOTES:FLD_END_OFFSET +EndnotenDavor sym:sw:Edit:TP_SECTION_FTNENDNOTES:ED_END_PREFIX +EndnotenDahinter sym:sw:Edit:TP_SECTION_FTNENDNOTES:ED_END_SUFFIX -*TabFormatEtiketten HID_LAB_FMT -HAbstand sw:MetricField:TP_LAB_FMT:FLD_HDIST -VAbstand sw:MetricField:TP_LAB_FMT:FLD_VDIST -Breite sw:MetricField:TP_LAB_FMT:FLD_WIDTH -Hoehe sw:MetricField:TP_LAB_FMT:FLD_HEIGHT -RandLinks sw:MetricField:TP_LAB_FMT:FLD_LEFT -RandRechts sw:MetricField:TP_LAB_FMT:FLD_UPPER -Spalten sw:NumericField:TP_LAB_FMT:FLD_COLUMNS -Zeilen sw:NumericField:TP_LAB_FMT:FLD_ROWS -NeuesDok HID_LABEL_INSERT -Zurueck HID_TABDLG_RESET_BTN -FormatSpeichern sw:PushButton:TP_LAB_FMT:PB_SAVE +*TabFormatEtiketten sym:SW_HID_LAB_FMT +HAbstand sym:sw:MetricField:TP_LAB_FMT:FLD_HDIST +VAbstand sym:sw:MetricField:TP_LAB_FMT:FLD_VDIST +Breite sym:sw:MetricField:TP_LAB_FMT:FLD_WIDTH +Hoehe sym:sw:MetricField:TP_LAB_FMT:FLD_HEIGHT +RandLinks sym:sw:MetricField:TP_LAB_FMT:FLD_LEFT +RandRechts sym:sw:MetricField:TP_LAB_FMT:FLD_UPPER +Spalten sym:sw:NumericField:TP_LAB_FMT:FLD_COLUMNS +Zeilen sym:sw:NumericField:TP_LAB_FMT:FLD_ROWS +NeuesDok sym:SW_HID_LABEL_INSERT +Zurueck sym:SFX2_HID_TABDLG_RESET_BTN +FormatSpeichern sym:sw:PushButton:TP_LAB_FMT:PB_SAVE -*TabFunktionen HID_FLD_FUNC -Feldtyp SW:LISTBOX:TP_FLD_FUNC:LB_FUNCTYPE -Formatliste SW:LISTBOX:TP_FLD_FUNC:LB_FUNCFORMAT -Auswahl SW:LISTBOX:TP_FLD_FUNC:LB_FUNCSELECTION -Bedingung SW:EDIT:TP_FLD_FUNC:ED_FUNCNAME -Dann SW:EDIT:TP_FLD_FUNC:ED_FUNCCOND1 -Sonst SW:EDIT:TP_FLD_FUNC:ED_FUNCCOND2 -MakroButton SW:PUSHBUTTON:TP_FLD_FUNC:BT_FUNCMACRO -Namefeld SW:EDIT:TP_FLD_FUNC:ED_FUNCNAME -Hinweis SW:EDIT:TP_FLD_FUNC:ED_FUNCVALUE -Makroname SW:EDIT:TP_FLD_FUNC:ED_FUNCNAME -Platzhalter SW:EDIT:TP_FLD_FUNC:ED_FUNCNAME -Texteinfuegen SW:EDIT:TP_FLD_FUNC:ED_FUNCVALUE -Wert SW:EDIT:TP_FLD_FUNC:ED_FUNCVALUE -Einfuegen HID_FIELD_INSERT -Schliessen HID_FIELD_CLOSE -AddListEntry sw:PushButton:TP_FLD_FUNC:PB_LISTADD -NewListEntry sw:Edit:TP_FLD_FUNC:ED_LISTITEM -EntrysList sw:ListBox:TP_FLD_FUNC:LB_LISTITEMS -RemoveEntry sw:PushButton:TP_FLD_FUNC:PB_LISTREMOVE -MoveUpEntry sw:PushButton:TP_FLD_FUNC:PB_LISTUP -MoveDownEntry sw:PushButton:TP_FLD_FUNC:PB_LISTDOWN -EntryName sw:Edit:TP_FLD_FUNC:ED_LISTNAME +*TabFunktionen sym:SW_HID_FLD_FUNC +Feldtyp sym:sw:ListBox:TP_FLD_FUNC:LB_FUNCTYPE +Formatliste sym:sw:ListBox:TP_FLD_FUNC:LB_FUNCFORMAT +Auswahl sym:sw:ListBox:TP_FLD_FUNC:LB_FUNCSELECTION +Bedingung sym:sw:Edit:TP_FLD_FUNC:ED_FUNCNAME +Dann sym:sw:Edit:TP_FLD_FUNC:ED_FUNCCOND1 +Sonst sym:sw:Edit:TP_FLD_FUNC:ED_FUNCCOND2 +MakroButton sym:sw:PushButton:TP_FLD_FUNC:BT_FUNCMACRO +Namefeld sym:sw:Edit:TP_FLD_FUNC:ED_FUNCNAME +Hinweis sym:sw:Edit:TP_FLD_FUNC:ED_FUNCVALUE +Makroname sym:sw:Edit:TP_FLD_FUNC:ED_FUNCNAME +Platzhalter sym:sw:Edit:TP_FLD_FUNC:ED_FUNCNAME +Texteinfuegen sym:sw:Edit:TP_FLD_FUNC:ED_FUNCVALUE +Wert sym:sw:Edit:TP_FLD_FUNC:ED_FUNCVALUE +Einfuegen sym:SW_HID_FIELD_INSERT +Schliessen sym:SW_HID_FIELD_CLOSE +AddListEntry sym:sw:PushButton:TP_FLD_FUNC:PB_LISTADD +NewListEntry sym:sw:Edit:TP_FLD_FUNC:ED_LISTITEM +EntrysList sym:sw:ListBox:TP_FLD_FUNC:LB_LISTITEMS +RemoveEntry sym:sw:PushButton:TP_FLD_FUNC:PB_LISTREMOVE +MoveUpEntry sym:sw:PushButton:TP_FLD_FUNC:PB_LISTUP +MoveDownEntry sym:sw:PushButton:TP_FLD_FUNC:PB_LISTDOWN +EntryName sym:sw:Edit:TP_FLD_FUNC:ED_LISTNAME -*TabFussnote HID_FOOTNOTE_PAGE -HoeheWieSeite sw:RadioButton:TP_FOOTNOTE_PAGE:RB_MAXHEIGHT_PAGE -HoeheFussnoteOption sw:RadioButton:TP_FOOTNOTE_PAGE:RB_MAXHEIGHT -HoeheFussnote sw:MetricField:TP_FOOTNOTE_PAGE:ED_MAXHEIGHT -AbstandTextkoerper sw:MetricField:TP_FOOTNOTE_PAGE:ED_DIST -Position sw:ListBox:TP_FOOTNOTE_PAGE:DLB_LINEPOS -Art sw:ListBox:TP_FOOTNOTE_PAGE:DLB_LINETYPE -Breite sw:MetricField:TP_FOOTNOTE_PAGE:ED_LINEWIDTH -Abstand sw:MetricField:TP_FOOTNOTE_PAGE:ED_LINEDIST +*TabFussnote sym:SW_HID_FOOTNOTE_PAGE +HoeheWieSeite sym:sw:RadioButton:TP_FOOTNOTE_PAGE:RB_MAXHEIGHT_PAGE +HoeheFussnoteOption sym:sw:RadioButton:TP_FOOTNOTE_PAGE:RB_MAXHEIGHT +HoeheFussnote sym:sw:MetricField:TP_FOOTNOTE_PAGE:ED_MAXHEIGHT +AbstandTextkoerper sym:sw:MetricField:TP_FOOTNOTE_PAGE:ED_DIST +Position sym:sw:ListBox:TP_FOOTNOTE_PAGE:DLB_LINEPOS +Art sym:sw:ListBox:TP_FOOTNOTE_PAGE:DLB_LINETYPE +Breite sym:sw:MetricField:TP_FOOTNOTE_PAGE:ED_LINEWIDTH +Abstand sym:sw:MetricField:TP_FOOTNOTE_PAGE:ED_LINEDIST -*TabFussnoten HID_FOOTNOTE_OPTIONS -Numerierung SW:LISTBOX:TP_FOOTNOTEOPTION:LB_NUMVIEW -Pro SW:LISTBOX:TP_FOOTNOTEOPTION:LB_NUMCOUNT -BeginnBei SW:NUMERICFIELD:TP_FOOTNOTEOPTION:FLD_OFFSET -Absatz SW:LISTBOX:TP_FOOTNOTEOPTION:LB_PARA_TEMPL -Seite SW:LISTBOX:TP_FOOTNOTEOPTION:LB_PAGE_TEMPL -Folgeseite SW:EDIT:TP_FOOTNOTEOPTION:ED_CONT -Beginn SW:EDIT:TP_FOOTNOTEOPTION:ED_CONT_FROM -Seitenende SW:RADIOBUTTON:TP_FOOTNOTEOPTION:RB_POS_PAGE -Dokumentende SW:RADIOBUTTON:TP_FOOTNOTEOPTION:RB_POS_CHAPTER -Davor SW:EDIT:TP_FOOTNOTEOPTION:ED_PREFIX -Dahinter SW:EDIT:TP_FOOTNOTEOPTION:ED_SUFFIX -ZeichenvorlageTextbereich sw:ListBox:TP_FOOTNOTEOPTION:LB_ANCHR_CHARFMT -ZeichenvorlageFussnotenbereich sw:ListBox:TP_FOOTNOTEOPTION:LB_TEXT_CHARFMT +*TabFussnoten sym:SW_HID_FOOTNOTE_OPTIONS +Numerierung sym:sw:ListBox:TP_FOOTNOTEOPTION:LB_NUMVIEW +Pro sym:sw:ListBox:TP_FOOTNOTEOPTION:LB_NUMCOUNT +BeginnBei sym:sw:NumericField:TP_FOOTNOTEOPTION:FLD_OFFSET +Absatz sym:sw:ListBox:TP_FOOTNOTEOPTION:LB_PARA_TEMPL +Seite sym:sw:ListBox:TP_FOOTNOTEOPTION:LB_PAGE_TEMPL +Folgeseite sym:sw:Edit:TP_FOOTNOTEOPTION:ED_CONT +Beginn sym:sw:Edit:TP_FOOTNOTEOPTION:ED_CONT_FROM +Seitenende sym:sw:RadioButton:TP_FOOTNOTEOPTION:RB_POS_PAGE +Dokumentende sym:sw:RadioButton:TP_FOOTNOTEOPTION:RB_POS_CHAPTER +Davor sym:sw:Edit:TP_FOOTNOTEOPTION:ED_PREFIX +Dahinter sym:sw:Edit:TP_FOOTNOTEOPTION:ED_SUFFIX +ZeichenvorlageTextbereich sym:sw:ListBox:TP_FOOTNOTEOPTION:LB_ANCHR_CHARFMT +ZeichenvorlageFussnotenbereich sym:sw:ListBox:TP_FOOTNOTEOPTION:LB_TEXT_CHARFMT -*TabFusszeile HID_FORMAT_FOOTER -FusszeileMitAbstand svx:CheckBox:RID_SVXPAGE_FOOTER:CB_TURNON svx:CheckBox:RID_SVXPAGE_FOOTER:CB_FOOTER -Abstand svx:MetricField:RID_SVXPAGE_FOOTER:ED_DIST -Hoehe svx:MetricField:RID_SVXPAGE_FOOTER:ED_HEIGHT -Hoehedynamisch SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_HEIGHT_DYN -RechterRandFusszeile svx:MetricField:RID_SVXPAGE_FOOTER:ED_RMARGIN -LinkerRandFusszeile svx:MetricField:RID_SVXPAGE_FOOTER:ED_LMARGIN -InhaltLinksRechtsGleich svx:CheckBox:RID_SVXPAGE_FOOTER:CB_SHARED -Zusaetze svx:PushButton:RID_SVXPAGE_FOOTER:BTN_EXTRAS svx:PushButton:RID_SVXPAGE_FOOTER:PB_BACKGROUND -Bearbeiten HID_SC_FOOTER_EDIT +*TabFusszeile sym:SVX_HID_FORMAT_FOOTER +FusszeileMitAbstand sym:svx:CheckBox:RID_SVXPAGE_FOOTER:CB_TURNON svx:CheckBox:RID_SVXPAGE_FOOTER:CB_FOOTER +Abstand sym:svx:MetricField:RID_SVXPAGE_FOOTER:ED_DIST +Hoehe sym:svx:MetricField:RID_SVXPAGE_FOOTER:ED_HEIGHT +Hoehedynamisch sym:svx:CheckBox:RID_SVXPAGE_FOOTER:CB_HEIGHT_DYN +RechterRandFusszeile sym:svx:MetricField:RID_SVXPAGE_FOOTER:ED_RMARGIN +LinkerRandFusszeile sym:svx:MetricField:RID_SVXPAGE_FOOTER:ED_LMARGIN +InhaltLinksRechtsGleich sym:svx:CheckBox:RID_SVXPAGE_FOOTER:CB_SHARED +Zusaetze sym:svx:PushButton:RID_SVXPAGE_FOOTER:BTN_EXTRAS svx:PushButton:RID_SVXPAGE_FOOTER:PB_BACKGROUND +Bearbeiten sym:SC_HID_SC_FOOTER_EDIT -*TabFusszeileCalc HID_SCPAGE_HFED_FR -LinkerBereich HID_SC_HF_FRL -MittlererBereich HID_SC_HF_FRC -RechterBereich HID_SC_HF_FRR -PredefinedFooter HID_SC_HF_FR_DEFINED -TextAttribute HID_SC_HF_TEXT sc:ImageButton:RID_HFBASE:BTN_TEXT -Datei HID_SC_HF_FILE sc:ImageButton:RID_HFBASE:BTN_FILE -Tabelle HID_SC_HF_TABLE sc:ImageButton:RID_HFBASE:BTN_TABLE -Seitennummer HID_SC_HF_PAGE sc:ImageButton:RID_HFBASE:BTN_PAGE -Seitenanzahl HID_SC_HF_PAGES sc:ImageButton:RID_HFBASE:BTN_PAGES -Datum HID_SC_HF_DATE sc:ImageButton:RID_HFBASE:BTN_DATE -Zeit HID_SC_HF_TIME sc:ImageButton:RID_HFBASE:BTN_TIME -Hoehedynamisch svx:CheckBox:RID_SVXPAGE_FOOTER:CB_HEIGHT_DYN +*TabFusszeileCalc sym:SC_HID_SCPAGE_HFED_FR +LinkerBereich sym:SC_HID_SC_HF_FRL +MittlererBereich sym:SC_HID_SC_HF_FRC +RechterBereich sym:SC_HID_SC_HF_FRR +PredefinedFooter sym:SC_HID_SC_HF_FR_DEFINED +TextAttribute sym:SC_HID_SC_HF_TEXT sym:sc:ImageButton:RID_HFBASE:BTN_TEXT +Datei sym:SC_HID_SC_HF_FILE sym:sc:ImageButton:RID_HFBASE:BTN_FILE +Tabelle sym:SC_HID_SC_HF_TABLE sym:sc:ImageButton:RID_HFBASE:BTN_TABLE +Seitennummer sym:SC_HID_SC_HF_PAGE sym:sc:ImageButton:RID_HFBASE:BTN_PAGE +Seitenanzahl sym:SC_HID_SC_HF_PAGES sym:sc:ImageButton:RID_HFBASE:BTN_PAGES +Datum sym:SC_HID_SC_HF_DATE sym:sc:ImageButton:RID_HFBASE:BTN_DATE +Zeit sym:SC_HID_SC_HF_TIME sym:sc:ImageButton:RID_HFBASE:BTN_TIME +Hoehedynamisch sym:svx:CheckBox:RID_SVXPAGE_FOOTER:CB_HEIGHT_DYN -*TabFusszeileCalcLinks HID_SCPAGE_HFED_FL -LinkerBereich HID_SC_HF_FLL -MittlererBereich HID_SC_HF_FLC -RechterBereich HID_SC_HF_FLR -PredefinedFooterLeft HID_SC_HF_FL_DEFINED -TextAttribute HID_SC_HF_TEXT sc:ImageButton:RID_HFBASE:BTN_TEXT -Datei HID_SC_HF_FILE sc:ImageButton:RID_HFBASE:BTN_FILE -Tabelle HID_SC_HF_TABLE sc:ImageButton:RID_HFBASE:BTN_TABLE -Seitennummer HID_SC_HF_PAGE sc:ImageButton:RID_HFBASE:BTN_PAGE -Seitenanzahl HID_SC_HF_PAGES sc:ImageButton:RID_HFBASE:BTN_PAGES -Datum HID_SC_HF_DATE sc:ImageButton:RID_HFBASE:BTN_DATE -Zeit HID_SC_HF_TIME sc:ImageButton:RID_HFBASE:BTN_TIME +*TabFusszeileCalcLinks sym:SC_HID_SCPAGE_HFED_FL +LinkerBereich sym:SC_HID_SC_HF_FLL +MittlererBereich sym:SC_HID_SC_HF_FLC +RechterBereich sym:SC_HID_SC_HF_FLR +PredefinedFooterLeft sym:SC_HID_SC_HF_FL_DEFINED +TextAttribute sym:SC_HID_SC_HF_TEXT sym:sc:ImageButton:RID_HFBASE:BTN_TEXT +Datei sym:SC_HID_SC_HF_FILE sym:sc:ImageButton:RID_HFBASE:BTN_FILE +Tabelle sym:SC_HID_SC_HF_TABLE sym:sc:ImageButton:RID_HFBASE:BTN_TABLE +Seitennummer sym:SC_HID_SC_HF_PAGE sym:sc:ImageButton:RID_HFBASE:BTN_PAGE +Seitenanzahl sym:SC_HID_SC_HF_PAGES sym:sc:ImageButton:RID_HFBASE:BTN_PAGES +Datum sym:SC_HID_SC_HF_DATE sym:sc:ImageButton:RID_HFBASE:BTN_DATE +Zeit sym:SC_HID_SC_HF_TIME sym:sc:ImageButton:RID_HFBASE:BTN_TIME -*TabGeschaeft HID_TP_BUSINESS_DATA -Firma sw:Edit:TP_BUSINESS_DATA:ED_COMP -Firma2 sw:Edit:TP_BUSINESS_DATA:ED_COMP_EXT -Slogan sw:Edit:TP_BUSINESS_DATA:ED_SLOGAN -Strasse sw:Edit:TP_BUSINESS_DATA:ED_STREET -PLZ sw:Edit:TP_BUSINESS_DATA:ED_ZIP -Ort sw:Edit:TP_BUSINESS_DATA:ED_CITY -Land sw:Edit:TP_BUSINESS_DATA:ED_COUNTRY -Bundesland sw:Edit:TP_BUSINESS_DATA:ED_STATE -Position sw:Edit:TP_BUSINESS_DATA:ED_POSITION -Telefon sw:Edit:TP_BUSINESS_DATA:ED_PHONE -Handy sw:Edit:TP_BUSINESS_DATA:ED_MOBILE -Fax sw:Edit:TP_BUSINESS_DATA:ED_FAX -Homepage sw:Edit:TP_BUSINESS_DATA:ED_WWW -Email sw:Edit:TP_BUSINESS_DATA:ED_MAIL +*TabGeschaeft sym:SW_HID_TP_BUSINESS_DATA +Firma sym:sw:Edit:TP_BUSINESS_DATA:ED_COMP +Firma2 sym:sw:Edit:TP_BUSINESS_DATA:ED_COMP_EXT +Slogan sym:sw:Edit:TP_BUSINESS_DATA:ED_SLOGAN +Strasse sym:sw:Edit:TP_BUSINESS_DATA:ED_STREET +PLZ sym:sw:Edit:TP_BUSINESS_DATA:ED_ZIP +Ort sym:sw:Edit:TP_BUSINESS_DATA:ED_CITY +Land sym:sw:Edit:TP_BUSINESS_DATA:ED_COUNTRY +Bundesland sym:sw:Edit:TP_BUSINESS_DATA:ED_STATE +Position sym:sw:Edit:TP_BUSINESS_DATA:ED_POSITION +Telefon sym:sw:Edit:TP_BUSINESS_DATA:ED_PHONE +Handy sym:sw:Edit:TP_BUSINESS_DATA:ED_MOBILE +Fax sym:sw:Edit:TP_BUSINESS_DATA:ED_FAX +Homepage sym:sw:Edit:TP_BUSINESS_DATA:ED_WWW +Email sym:sw:Edit:TP_BUSINESS_DATA:ED_MAIL -*TabGrafik HID_GRF_EXT -Vertikal sw:CheckBox:TP_GRF_EXT:CB_VERT -Horizontal sw:CheckBox:TP_GRF_EXT:CB_HOR -AufAllenSeiten sw:RadioButton:TP_GRF_EXT:RB_MIRROR_ALL_PAGES -JedeLinkeSeite sw:RadioButton:TP_GRF_EXT:RB_MIRROR_LEFT_PAGES -JedeRechteSeite sw:RadioButton:TP_GRF_EXT:RB_MIRROR_RIGHT_PAGES -Dateiname sw:Edit:TP_GRF_EXT:ED_CONNECT -Durchsuchen sw:PushButton:TP_GRF_EXT:PB_BROWSE +*TabGrafik sym:SW_HID_GRF_EXT +Vertikal sym:sw:CheckBox:TP_GRF_EXT:CB_VERT +Horizontal sym:sw:CheckBox:TP_GRF_EXT:CB_HOR +AufAllenSeiten sym:sw:RadioButton:TP_GRF_EXT:RB_MIRROR_ALL_PAGES +JedeLinkeSeite sym:sw:RadioButton:TP_GRF_EXT:RB_MIRROR_LEFT_PAGES +JedeRechteSeite sym:sw:RadioButton:TP_GRF_EXT:RB_MIRROR_RIGHT_PAGES +Dateiname sym:sw:Edit:TP_GRF_EXT:ED_CONNECT +Durchsuchen sym:sw:PushButton:TP_GRF_EXT:PB_BROWSE -*TabGrafiken HID_SVXPAGE_PICK_BMP -Auswahl HID_VALUESET_NUMBMP -Optionen HID_NUM_FORMAT_BTN -Zurueck HID_TABDLG_RESET_BTN -LinkGraphics cui:CheckBox:RID_SVXPAGE_PICK_BMP:CB_LINKED +*TabGrafiken sym:CUI_HID_SVXPAGE_PICK_BMP +Auswahl sym:CUI_HID_VALUESET_NUMBMP +Optionen sym:SW_HID_NUM_FORMAT_BTN +Zurueck sym:SFX2_HID_TABDLG_RESET_BTN +LinkGraphics sym:cui:CheckBox:RID_SVXPAGE_PICK_BMP:CB_LINKED -*TabGrundfarben HID_OPTIONS_CHART_DEFCOLORS -Farbliste cui:ListBox:RID_OPTPAGE_CHART_DEFCOLORS:LB_CHART_COLOR_LIST -Standard cui:PushButton:RID_OPTPAGE_CHART_DEFCOLORS:PB_RESET_TO_DEFAULT +*TabGrundfarben sym:CUI_HID_OPTIONS_CHART_DEFCOLORS +Farbliste sym:cui:ListBox:RID_OPTPAGE_CHART_DEFCOLORS:LB_CHART_COLOR_LIST +Standard sym:cui:PushButton:RID_OPTPAGE_CHART_DEFCOLORS:PB_RESET_TO_DEFAULT -*TabGrundschriften HID_STD_FONT -StandardSchrift sw:ComboBox:TP_STD_FONT:LB_STANDARD -Ueberschrift sw:ComboBox:TP_STD_FONT:LB_TITLE -Liste sw:ComboBox:TP_STD_FONT:LB_LIST -Beschriftung sw:ComboBox:TP_STD_FONT:LB_LABEL -Verzeichnis sw:ComboBox:TP_STD_FONT:LB_IDX -AktuellesDokument sw:CheckBox:TP_STD_FONT:CB_DOCONLY -Standard sw:PushButton:TP_STD_FONT:PB_STANDARD -StandardSchriftGroesse sw:MetricBox:TP_STD_FONT:LB_STANDARD_SIZE -UeberschriftGroesse sw:MetricBox:TP_STD_FONT:LB_TITLE_SIZE -ListeGroesse sw:MetricBox:TP_STD_FONT:LB_LIST_SIZE -BeschriftungGroesse sw:MetricBox:TP_STD_FONT:LB_LABEL_SIZE -VerzeichnisGroesse sw:MetricBox:TP_STD_FONT:LB_INDEX_SIZE +*TabGrundschriften sym:SW_HID_STD_FONT +StandardSchrift sym:sw:ComboBox:TP_STD_FONT:LB_STANDARD +Ueberschrift sym:sw:ComboBox:TP_STD_FONT:LB_TITLE +Liste sym:sw:ComboBox:TP_STD_FONT:LB_LIST +Beschriftung sym:sw:ComboBox:TP_STD_FONT:LB_LABEL +Verzeichnis sym:sw:ComboBox:TP_STD_FONT:LB_IDX +AktuellesDokument sym:sw:CheckBox:TP_STD_FONT:CB_DOCONLY +Standard sym:sw:PushButton:TP_STD_FONT:PB_STANDARD +StandardSchriftGroesse sym:sw:MetricBox:TP_STD_FONT:LB_STANDARD_SIZE +UeberschriftGroesse sym:sw:MetricBox:TP_STD_FONT:LB_TITLE_SIZE +ListeGroesse sym:sw:MetricBox:TP_STD_FONT:LB_LIST_SIZE +BeschriftungGroesse sym:sw:MetricBox:TP_STD_FONT:LB_LABEL_SIZE +VerzeichnisGroesse sym:sw:MetricBox:TP_STD_FONT:LB_INDEX_SIZE +TabGrundschriftenAsian TabGrundschriften +TabGrundschriftenCTL TabGrundschriften -*TabGruppe1 HID_SCPAGE_SUBT_GROUP1 -GruppierenNach HID_SC_SUBT_GROUP -Teilergebnisse HID_SC_SUBT_COLS -Berechnungsvorschrift HID_SC_SUBT_FUNC +*TabGruppe1 sym:SC_HID_SCPAGE_SUBT_GROUP1 +GruppierenNach sym:SC_HID_SC_SUBT_GROUP +Teilergebnisse sym:SC_HID_SC_SUBT_COLS +Berechnungsvorschrift sym:SC_HID_SC_SUBT_FUNC -*TabGruppe2 HID_SCPAGE_SUBT_GROUP2 -GruppierenNach HID_SC_SUBT_GROUP -Teilergebnisse HID_SC_SUBT_COLS -Berechnungsvorschrift HID_SC_SUBT_FUNC +*TabGruppe2 sym:SC_HID_SCPAGE_SUBT_GROUP2 +GruppierenNach sym:SC_HID_SC_SUBT_GROUP +Teilergebnisse sym:SC_HID_SC_SUBT_COLS +Berechnungsvorschrift sym:SC_HID_SC_SUBT_FUNC -*TabGruppe3 HID_SCPAGE_SUBT_GROUP3 -GruppierenNach HID_SC_SUBT_GROUP -Teilergebnisse HID_SC_SUBT_COLS -Berechnungsvorschrift HID_SC_SUBT_FUNC +*TabGruppe3 sym:SC_HID_SCPAGE_SUBT_GROUP3 +GruppierenNach sym:SC_HID_SC_SUBT_GROUP +Teilergebnisse sym:SC_HID_SC_SUBT_COLS +Berechnungsvorschrift sym:SC_HID_SC_SUBT_FUNC diff --git a/testautomation/global/win/tab_h_o.win b/testautomation/global/win/tab_h_o.win index c31ece1bffe2..9c249ca2522e 100755..100644 --- a/testautomation/global/win/tab_h_o.win +++ b/testautomation/global/win/tab_h_o.win @@ -1,489 +1,489 @@ -*TabHintergrund HID_BACKGROUND -Als cui:ListBox:RID_SVXPAGE_BACKGROUND:LB_SELECTOR -Fuer cui:ListBox:RID_SVXPAGE_BACKGROUND:LB_TBL_BOX -FuerAbsatz cui:LISTBOX:RID_SVXPAGE_BACKGROUND:LB_PARA_BOX -Hintergrundfarbe HID_BACKGROUND_CTL_BGDCOLORSET -Verknuepfen cui:CheckBox:RID_SVXPAGE_BACKGROUND:BTN_LINK -Vorschau cui:CheckBox:RID_SVXPAGE_BACKGROUND:BTN_PREVIEW -Durchsuchen cui:PushButton:RID_SVXPAGE_BACKGROUND:BTN_BROWSE -Position cui:RadioButton:RID_SVXPAGE_BACKGROUND:BTN_POSITION -Flaeche cui:RadioButton:RID_SVXPAGE_BACKGROUND:BTN_AREA -Kachel cui:RadioButton:RID_SVXPAGE_BACKGROUND:BTN_TILE -ArtPosition HID_BACKGROUND_CTL_POSITION -'ArtPosition cui:RadioButton:RID_SVXPAGE_BACKGROUND:BTN_POSITION +*TabHintergrund sym:CUI_HID_BACKGROUND +Als sym:cui:ListBox:RID_SVXPAGE_BACKGROUND:LB_SELECTOR +Fuer sym:cui:ListBox:RID_SVXPAGE_BACKGROUND:LB_TBL_BOX +FuerAbsatz sym:cui:ListBox:RID_SVXPAGE_BACKGROUND:LB_PARA_BOX +Hintergrundfarbe sym:CUI_HID_BACKGROUND_CTL_BGDCOLORSET +Verknuepfen sym:cui:CheckBox:RID_SVXPAGE_BACKGROUND:BTN_LINK +Vorschau sym:cui:CheckBox:RID_SVXPAGE_BACKGROUND:BTN_PREVIEW +Durchsuchen sym:cui:PushButton:RID_SVXPAGE_BACKGROUND:BTN_BROWSE +Position sym:cui:RadioButton:RID_SVXPAGE_BACKGROUND:BTN_POSITION +Flaeche sym:cui:RadioButton:RID_SVXPAGE_BACKGROUND:BTN_AREA +Kachel sym:cui:RadioButton:RID_SVXPAGE_BACKGROUND:BTN_TILE +ArtPosition sym:CUI_HID_BACKGROUND_CTL_POSITION +'ArtPosition sym:cui:RadioButton:RID_SVXPAGE_BACKGROUND:BTN_POSITION 'Muster HID_BACKGROUND_CTL_PATTERNSET 'Musterfarbe HID_BACKGROUND_CTL_PATCOLORSET -*TabHTML cui:TabPage:RID_OFAPAGE_HTMLOPT -Groesse1 cui:NumericField:RID_OFAPAGE_HTMLOPT:NF_SIZE1 -Groesse2 cui:NumericField:RID_OFAPAGE_HTMLOPT:NF_SIZE2 -Groesse3 cui:NumericField:RID_OFAPAGE_HTMLOPT:NF_SIZE3 -Groesse4 cui:NumericField:RID_OFAPAGE_HTMLOPT:NF_SIZE4 -Groesse5 cui:NumericField:RID_OFAPAGE_HTMLOPT:NF_SIZE5 -Groesse6 cui:NumericField:RID_OFAPAGE_HTMLOPT:NF_SIZE6 -Groesse7 cui:NumericField:RID_OFAPAGE_HTMLOPT:NF_SIZE7 -UnbekannteHTML cui:CheckBox:RID_OFAPAGE_HTMLOPT:CB_UNKNOWN_TAGS -FontEinstellungen cui:CheckBox:RID_OFAPAGE_HTMLOPT:CB_IGNORE_FONTNAMES -Export cui:LISTBOX:RID_OFAPAGE_HTMLOPT:LB_EXPORT -StarBasic cui:CheckBox:RID_OFAPAGE_HTMLOPT:CB_STARBASIC -Grafikenkopieren cui:CheckBox:RID_OFAPAGE_HTMLOPT:CB_LOCAL_GRF -Drucklayout cui:CHECKBOX:RID_OFAPAGE_HTMLOPT:CB_PRINT_EXTENSION -WarnungAnzeigen cui:CheckBox:RID_OFAPAGE_HTMLOPT:CB_STARBASIC_WARNING -Zeichensatz cui:ListBox:RID_OFAPAGE_HTMLOPT:LB_CHARSET -UseEnglishLocaleForNumbers cui:CheckBox:RID_OFAPAGE_HTMLOPT:CB_NUMBERS_ENGLISH_US - -*TabHyperlinkRahmen HID_FRM_URL -URL sw:Edit:TP_FRM_URL:ED_URL -Durchsuchen sw:PushButton:TP_FRM_URL:PB_SEARCH -NameText sw:Edit:TP_FRM_URL:ED_NAME -Frame sw:ComboBox:TP_FRM_URL:CB_FRAME -Server sw:CheckBox:TP_FRM_URL:CB_SERVER -Client sw:CheckBox:TP_FRM_URL:CB_CLIENT - -*TabHyperlinkZeichen HID_CHAR_URL -URLName sw:Edit:TP_CHAR_URL:ED_URL -Durchsuchen sw:PushButton:TP_CHAR_URL:PB_URL -Ereignisse sw:PushButton:TP_CHAR_URL:PB_EVENT -Hinweis sw:Edit:TP_CHAR_URL:ED_TEXT -Targetframe sw:ComboBox:TP_CHAR_URL:LB_TARGET -BesuchterLink sw:ListBox:TP_CHAR_URL:LB_VISITED -UnbesuchterLink sw:ListBox:TP_CHAR_URL:LB_NOT_VISITED -NameText sw:Edit:TP_CHAR_URL:ED_NAME -Zurueck HID_TABDLG_RESET_BTN - -*Hyperlink HID_HYPERLINK_INTERNET -Auswahl HID_ICCDIALOG_CHOICECTRL -Zurueck HID_ICCDIALOG_RESET_BTN -Uebernehmen HID_ICCDIALOG_OK_BTN +*TabHTML sym:cui:TabPage:RID_OFAPAGE_HTMLOPT +Groesse1 sym:cui:NumericField:RID_OFAPAGE_HTMLOPT:NF_SIZE1 +Groesse2 sym:cui:NumericField:RID_OFAPAGE_HTMLOPT:NF_SIZE2 +Groesse3 sym:cui:NumericField:RID_OFAPAGE_HTMLOPT:NF_SIZE3 +Groesse4 sym:cui:NumericField:RID_OFAPAGE_HTMLOPT:NF_SIZE4 +Groesse5 sym:cui:NumericField:RID_OFAPAGE_HTMLOPT:NF_SIZE5 +Groesse6 sym:cui:NumericField:RID_OFAPAGE_HTMLOPT:NF_SIZE6 +Groesse7 sym:cui:NumericField:RID_OFAPAGE_HTMLOPT:NF_SIZE7 +UnbekannteHTML sym:cui:CheckBox:RID_OFAPAGE_HTMLOPT:CB_UNKNOWN_TAGS +FontEinstellungen sym:cui:CheckBox:RID_OFAPAGE_HTMLOPT:CB_IGNORE_FONTNAMES +Export sym:cui:ListBox:RID_OFAPAGE_HTMLOPT:LB_EXPORT +StarBasic sym:cui:CheckBox:RID_OFAPAGE_HTMLOPT:CB_STARBASIC +Grafikenkopieren sym:cui:CheckBox:RID_OFAPAGE_HTMLOPT:CB_LOCAL_GRF +Drucklayout sym:cui:CheckBox:RID_OFAPAGE_HTMLOPT:CB_PRINT_EXTENSION +WarnungAnzeigen sym:cui:CheckBox:RID_OFAPAGE_HTMLOPT:CB_STARBASIC_WARNING +Zeichensatz sym:cui:ListBox:RID_OFAPAGE_HTMLOPT:LB_CHARSET +UseEnglishLocaleForNumbers sym:cui:CheckBox:RID_OFAPAGE_HTMLOPT:CB_NUMBERS_ENGLISH_US + +*TabHyperlinkRahmen sym:SW_HID_FRM_URL +URL sym:sw:Edit:TP_FRM_URL:ED_URL +Durchsuchen sym:sw:PushButton:TP_FRM_URL:PB_SEARCH +NameText sym:sw:Edit:TP_FRM_URL:ED_NAME +Frame sym:sw:ComboBox:TP_FRM_URL:CB_FRAME +Server sym:sw:CheckBox:TP_FRM_URL:CB_SERVER +Client sym:sw:CheckBox:TP_FRM_URL:CB_CLIENT + +*TabHyperlinkZeichen sym:SW_HID_CHAR_URL +URLName sym:sw:Edit:TP_CHAR_URL:ED_URL +Durchsuchen sym:sw:PushButton:TP_CHAR_URL:PB_URL +Ereignisse sym:sw:PushButton:TP_CHAR_URL:PB_EVENT +Hinweis sym:sw:Edit:TP_CHAR_URL:ED_TEXT +Targetframe sym:sw:ComboBox:TP_CHAR_URL:LB_TARGET +BesuchterLink sym:sw:ListBox:TP_CHAR_URL:LB_VISITED +UnbesuchterLink sym:sw:ListBox:TP_CHAR_URL:LB_NOT_VISITED +NameText sym:sw:Edit:TP_CHAR_URL:ED_NAME +Zurueck sym:SFX2_HID_TABDLG_RESET_BTN + +*Hyperlink sym:CUI_HID_HYPERLINK_INTERNET +Auswahl sym:CUI_HID_ICCDIALOG_CHOICECTRL +Zurueck sym:CUI_HID_ICCDIALOG_RESET_BTN +Uebernehmen sym:CUI_HID_ICCDIALOG_OK_BTN +TabHyperlinkInternet Hyperlink -Internet cui:RadioButton:RID_SVXPAGE_HYPERLINK_INTERNET:RB_LINKTYP_INTERNET -FTP cui:RadioButton:RID_SVXPAGE_HYPERLINK_INTERNET:RB_LINKTYP_FTP -Telnet cui:RadioButton:RID_SVXPAGE_HYPERLINK_INTERNET:RB_LINKTYP_TELNET -ZielUrl HID_HYPERDLG_INET_PATH -Frame cui:ComboBox:RID_SVXPAGE_HYPERLINK_INTERNET:CB_FRAME -Form cui:ListBox:RID_SVXPAGE_HYPERLINK_INTERNET:LB_FORM -Hinweis cui:Edit:RID_SVXPAGE_HYPERLINK_INTERNET:ED_INDICATION -NameText cui:Edit:RID_SVXPAGE_HYPERLINK_INTERNET:ED_TEXT -Ereignisse cui:ImageButton:RID_SVXPAGE_HYPERLINK_INTERNET:BTN_SCRIPT -Loginname cui:Edit:RID_SVXPAGE_HYPERLINK_INTERNET:ED_LOGIN -Passwort cui:Edit:RID_SVXPAGE_HYPERLINK_INTERNET:ED_PASSWD -AnonymerBenutzer cui:CheckBox:RID_SVXPAGE_HYPERLINK_INTERNET:CBX_ANONYMOUS -WWWBrowser cui:ImageButton:RID_SVXPAGE_HYPERLINK_INTERNET:BTN_BROWSE -Target cui:ImageButton:RID_SVXPAGE_HYPERLINK_INTERNET:BTN_TARGET - -*TabHyperlinkMailUndNews HID_HYPERLINK_MAIL -EMail cui:RadioButton:RID_SVXPAGE_HYPERLINK_MAIL:RB_LINKTYP_MAIL -News cui:RadioButton:RID_SVXPAGE_HYPERLINK_MAIL:RB_LINKTYP_NEWS -Receiver HID_HYPERDLG_MAIL_PATH -Betreff cui:Edit:RID_SVXPAGE_HYPERLINK_MAIL:ED_SUBJECT -Adressbuch cui:ImageButton:RID_SVXPAGE_HYPERLINK_MAIL:BTN_ADRESSBOOK -Frame cui:ComboBox:RID_SVXPAGE_HYPERLINK_MAIL:CB_FRAME -Form cui:ListBox:RID_SVXPAGE_HYPERLINK_MAIL:LB_FORM -Hinweis cui:Edit:RID_SVXPAGE_HYPERLINK_MAIL:ED_INDICATION -NameText cui:Edit:RID_SVXPAGE_HYPERLINK_MAIL:ED_TEXT -Ereignisse cui:ImageButton:RID_SVXPAGE_HYPERLINK_MAIL:BTN_SCRIPT -Auswahl HID_ICCDIALOG_CHOICECTRL -Zurueck HID_ICCDIALOG_RESET_BTN -Uebernehmen HID_ICCDIALOG_OK_BTN - -*TabHyperlinkDokument HID_HYPERLINK_DOCUMENT -Path HID_HYPERDLG_DOC_PATH -DateiOeffnen cui:ImageButton:RID_SVXPAGE_HYPERLINK_DOCUMENT:BTN_FILEOPEN -Ziel cui:Edit:RID_SVXPAGE_HYPERLINK_DOCUMENT:ED_TARGET_DOC -Target cui:ImageButton:RID_SVXPAGE_HYPERLINK_DOCUMENT:BTN_BROWSE -Frame cui:ComboBox:RID_SVXPAGE_HYPERLINK_DOCUMENT:CB_FRAME -Form cui:ListBox:RID_SVXPAGE_HYPERLINK_DOCUMENT:LB_FORM -Hinweis cui:Edit:RID_SVXPAGE_HYPERLINK_DOCUMENT:ED_INDICATION -NameText cui:Edit:RID_SVXPAGE_HYPERLINK_DOCUMENT:ED_TEXT -Ereignisse cui:ImageButton:RID_SVXPAGE_HYPERLINK_DOCUMENT:BTN_SCRIPT -Auswahl HID_ICCDIALOG_CHOICECTRL -Zurueck HID_ICCDIALOG_RESET_BTN -Uebernehmen HID_ICCDIALOG_OK_BTN - -*TabHyperlinkNeuesDokument HID_HYPERLINK_NEWDOCUMENT -SofortBearbeiten cui:RadioButton:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:RB_EDITNOW -SpaeterBearbeiten cui:RadioButton:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:RB_EDITLATER -Datei cui:Edit:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:ED_PATH_NEWDOC -Dateityp cui:ListBox:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:LB_DOCUMENT_TYPES -Pfad cui:ImageButton:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:BTN_CREATE -Frame cui:ComboBox:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:CB_FRAME -Form cui:ListBox:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:LB_FORM -Hinweis cui:Edit:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:ED_INDICATION -NameText cui:Edit:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:ED_TEXT -Ereignisse cui:ImageButton:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:BTN_SCRIPT -Auswahl HID_ICCDIALOG_CHOICECTRL -Zurueck HID_ICCDIALOG_RESET_BTN -Uebernehmen HID_ICCDIALOG_OK_BTN - -*TabInhaltCalc HID_SCPAGE_CONTENT -Formeln SC:CHECKBOX:RID_SCPAGE_CONTENT:CB_FORMULA -Nullwerte SC:CHECKBOX:RID_SCPAGE_CONTENT:CB_NIL -Notizanzeiger SC:CHECKBOX:RID_SCPAGE_CONTENT:CB_ANNOT -WerteHervorheben SC:CHECKBOX:RID_SCPAGE_CONTENT:CB_VALUE -Anker SC:CHECKBOX:RID_SCPAGE_CONTENT:CB_ANCHOR -Textueberlauf SC:CHECKBOX:RID_SCPAGE_CONTENT:CB_CLIP -ObjekteGrafiken SC:LISTBOX:RID_SCPAGE_CONTENT:LB_OBJGRF -Diagramme SC:LISTBOX:RID_SCPAGE_CONTENT:LB_DIAGRAM -Zeichenobjekte SC:LISTBOX:RID_SCPAGE_CONTENT:LB_DRAW -Gitterlinien SC:CHECKBOX:RID_SCPAGE_CONTENT:CB_GRID -Farbe SC:LISTBOX:RID_SCPAGE_CONTENT:LB_COLOR -Seitenumbruch SC:CHECKBOX:RID_SCPAGE_CONTENT:CB_PAGEBREAKS -Hilfslinien SC:CHECKBOX:RID_SCPAGE_CONTENT:CB_GUIDELINE -EinfacheGriffe SC:CHECKBOX:RID_SCPAGE_CONTENT:CB_HANDLES -GrosseGriffe SC:CHECKBOX:RID_SCPAGE_CONTENT:CB_BIGHANDLES -ZeilenUndSpaltenkoepfe SC:CHECKBOX:RID_SCPAGE_CONTENT:CB_ROWCOLHEADER -HorizontalerBildaufbau SC:CHECKBOX:RID_SCPAGE_CONTENT:CB_HSCROLL -VertikalerBildaufbau SC:CHECKBOX:RID_SCPAGE_CONTENT:CB_VSCROLL -Tabellenregister SC:CHECKBOX:RID_SCPAGE_CONTENT:CB_TBLREG -Gliederungssymbole SC:CHECKBOX:RID_SCPAGE_CONTENT:CB_OUTLINE -Referenzenfarbig SC:CHECKBOX:RID_SCPAGE_CONTENT:CB_RFIND - -*TabInhalteDraw HID_SD_OPTIONS_CONTENTS HID_SD_OPTIONS_SNAP -LinealeSichtbar sd:CheckBox:TP_OPTIONS_CONTENTS:CBX_RULER -HilfslinienBeimBewegen sd:CheckBox:TP_OPTIONS_CONTENTS:CBX_HELPLINES -KontrolpunkteImBezierEditor sd:CheckBox:TP_OPTIONS_CONTENTS:CBX_HANDLES_BEZIER -KonturFuerIndividuelleObjekte sd:CheckBox:TP_OPTIONS_CONTENTS:CBX_MOVE_OUTLINE - -*TabInhalteHTML HID_CONTENT_OPT -GrafikenUndObjekte SW:CHECKBOX:TP_CONTENT_OPT:CB_GRF -Tabellen SW:CHECKBOX:TP_CONTENT_OPT:CB_TBL -Zeichnungen SW:CHECKBOX:TP_CONTENT_OPT:CB_DRWFAST -Feldnamen SW:CHECKBOX:TP_CONTENT_OPT:CB_FIELD -Notizen SW:CHECKBOX:TP_CONTENT_OPT:CB_POSTIT -Hilfslinien sw:CheckBox:TP_CONTENT_OPT:CB_CROSS -FarbigeHandles SW:CHECKBOX:TP_CONTENT_OPT:CB_HANDLE -GrosseHandles SW:CHECKBOX:TP_CONTENT_OPT:CB_BIGHANDLE -HorizontaleBildlaufleiste sw:CheckBox:TP_CONTENT_OPT:CB_HSCROLL -VertikaleBildlaufleiste SW:CHECKBOX:TP_CONTENT_OPT:CB_VSCROLL -HorizontalesLineal sw:CheckBox:TP_CONTENT_OPT:CB_HRULER -VertikalesLineal sw:CheckBox:TP_CONTENT_OPT:CB_VRULER -RechtsAusgerichtet sw:CheckBox:TP_CONTENT_OPT:CB_VRULER_RIGHT -WeichesScrollen SW:CHECKBOX:TP_CONTENT_OPT:CB_SMOOTH_SCROLL -Lineal sw:CheckBox:TP_CONTENT_OPT:CB_ANY_RULER -HorizontalesLinealMasseinheit sw:ListBox:TP_CONTENT_OPT:LB_HMETRIC -VertikalesLinealMasseinheit sw:ListBox:TP_CONTENT_OPT:LB_VMETRIC -Masseinheit sw:ListBox:TP_CONTENT_OPT:LB_METRIC - -*TabInhalteWriter HID_CONTENT_OPT -GrafikenUndObjekte SW:CHECKBOX:TP_CONTENT_OPT:CB_GRF -Tabellen SW:CHECKBOX:TP_CONTENT_OPT:CB_TBL -Zeichnungen SW:CHECKBOX:TP_CONTENT_OPT:CB_DRWFAST -Feldname SW:CHECKBOX:TP_CONTENT_OPT:CB_FIELD -Notizen SW:CHECKBOX:TP_CONTENT_OPT:CB_POSTIT -Hilfslinien sw:CheckBox:TP_CONTENT_OPT:CB_CROSS -FarbigeHandles SW:CHECKBOX:TP_CONTENT_OPT:CB_HANDLE -GrosseHandles SW:CHECKBOX:TP_CONTENT_OPT:CB_BIGHANDLE -HorizontaleBildlaufleiste sw:CheckBox:TP_CONTENT_OPT:CB_HSCROLL -VertikaleBildlaufleiste SW:CHECKBOX:TP_CONTENT_OPT:CB_VSCROLL -HorizontalesLineal sw:CheckBox:TP_CONTENT_OPT:CB_HRULER -VertikalesLineal sw:CheckBox:TP_CONTENT_OPT:CB_VRULER -RechtsAusgerichtet sw:CheckBox:TP_CONTENT_OPT:CB_VRULER_RIGHT -WeichesScrollen SW:CHECKBOX:TP_CONTENT_OPT:CB_SMOOTH_SCROLL -Lineal sw:CheckBox:TP_CONTENT_OPT:CB_ANY_RULER -HorizontalesLinealMasseinheit sw:ListBox:TP_CONTENT_OPT:LB_HMETRIC -VertikalesLinealMasseinheit sw:ListBox:TP_CONTENT_OPT:LB_VMETRIC - -*TabInitialen HID_DROPCAPS -Anzeigen sw:CheckBox:TP_DROPCAPS:CB_SWITCH -Anzahl sw:NumericField:TP_DROPCAPS:FLD_DROPCAPS -AbstandZumText sw:MetricField:TP_DROPCAPS:FLD_DISTANCE -Zeilen sw:NumericField:TP_DROPCAPS:FLD_LINES -Initialentext sw:Edit:TP_DROPCAPS:EDT_TEXT -Zeichenvorlage sw:ListBox:TP_DROPCAPS:BOX_TEMPLATE -GanzesWort sw:CheckBox:TP_DROPCAPS:CB_WORD - -*TabInteraktion SID_ANIMATION_EFFECTS -AktionBeiMausklick sd:ListBox:TP_ANIMATION:LB_ACTION -ListeSprungZuDokument HID_CTL_ACTION_DLG_2 -ListeSprungZuSeiteObjekt HID_CTL_ACTION_DLG_1 -ListeObjektAktion sd:ListBox:TP_ANIMATION:LB_OLE_ACTION -Durchsuchen sd:PushButton:TP_ANIMATION:BTN_SEARCH -Suchen sd:PushButton:TP_ANIMATION:BTN_SEEK -Effekt sd:ListBox:TP_ANIMATION:LB_OLE_ACTION -'Effekt sd:ListBox:TP_ANIMATION:LB_EFFECT -'Langsam sd:RadioButton:TP_ANIMATION:RBT_SLOW -'Schnell sd:RadioButton:TP_ANIMATION:RBT_MEDIUM -'Mittel sd:RadioButton:TP_ANIMATION:RBT_FAST -'KlangbeiObjektausblenden sd:TriStateBox:TP_ANIMATION:TSB_SOUND -Seite sd:Edit:TP_ANIMATION:EDT_BOOKMARK -Dokument sd:Edit:TP_ANIMATION:EDT_DOCUMENT -Objekt sd:Edit:TP_ANIMATION:EDT_PROGRAM -Makro sd:Edit:TP_ANIMATION:EDT_MACRO -KlangWahl sd:Edit:TP_ANIMATION:EDT_SOUND -'KlangVollstaendigAbspielen sd:TriStateBox:TP_ANIMATION:TSB_PLAY_FULL - -*TabKapitelnumerierung HID_TP_OUTLINE_NUM -Ebene SW:LISTBOX:TP_OUTLINE_NUM:LB_LEVEL -Absatzvorlage SW:LISTBOX:TP_OUTLINE_NUM:LB_COLL -Zeichenvorlage SW:LISTBOX:TP_OUTLINE_NUM:LB_CHARFMT -Nummer SW:LISTBOX:TP_OUTLINE_NUM:LB_NUMBER -Vollstaendig SW:NUMERICFIELD:TP_OUTLINE_NUM:NF_ALL_LEVEL -Davor SW:EDIT:TP_OUTLINE_NUM:ED_PREFIX -Dahinter SW:EDIT:TP_OUTLINE_NUM:ED_SUFFIX -BeginBei SW:NUMERICFIELD:TP_OUTLINE_NUM:ED_START -Form HID_OUTLINE_FORM - -*TabKopfzeile HID_FORMAT_HEADER -KopfzeileMitAbstand svx:CheckBox:RID_SVXPAGE_HEADER:CB_TURNON svx:CheckBox:RID_SVXPAGE_HEADER:CB_HEADER -Abstand svx:MetricField:RID_SVXPAGE_HEADER:ED_DIST -Hoehe svx:MetricField:RID_SVXPAGE_HEADER:ED_HEIGHT -Hoehedynamisch svx:CheckBox:RID_SVXPAGE_HEADER:CB_HEIGHT_DYN -RechterRandKopfzeile svx:MetricField:RID_SVXPAGE_HEADER:ED_RMARGIN -LinkerRandKopfzeile svx:MetricField:RID_SVXPAGE_HEADER:ED_LMARGIN -InhaltLinksRechtsGleich svx:CheckBox:RID_SVXPAGE_HEADER:CB_SHARED -Zusaetze svx:PushButton:RID_SVXPAGE_HEADER:BTN_EXTRAS -Bearbeiten HID_SC_HEADER_EDIT - -*TabKopfzeileCalc HID_SCPAGE_HFED_HR -LinkerBereich HID_SC_HF_HRL -MittlererBereich HID_SC_HF_HRC -RechterBereich HID_SC_HF_HRR -PredefinedHeader HID_SC_HF_HR_DEFINED -TextAttribute HID_SC_HF_TEXT sc:ImageButton:RID_HFBASE:BTN_TEXT -Datei HID_SC_HF_FILE sc:ImageButton:RID_HFBASE:BTN_FILE -Tabelle HID_SC_HF_TABLE sc:ImageButton:RID_HFBASE:BTN_TABLE -Seitennummer HID_SC_HF_PAGE sc:ImageButton:RID_HFBASE:BTN_PAGE -Seitenanzahl HID_SC_HF_PAGES sc:ImageButton:RID_HFBASE:BTN_PAGES -Datum HID_SC_HF_DATE sc:ImageButton:RID_HFBASE:BTN_DATE -Zeit HID_SC_HF_TIME sc:ImageButton:RID_HFBASE:BTN_TIME - -*TabKopfzeileCalcLinks HID_SCPAGE_HFED_HL -LinkerBereich HID_SC_HF_HLL -MittlererBereich HID_SC_HF_HLC -RechterBereich HID_SC_HF_HLR -PredefinedHeaderLeft HID_SC_HF_HL_DEFINED -TextAttribute HID_SC_HF_TEXT sc:ImageButton:RID_HFBASE:BTN_TEXT -Datei HID_SC_HF_FILE sc:ImageButton:RID_HFBASE:BTN_FILE -Tabelle HID_SC_HF_TABLE sc:ImageButton:RID_HFBASE:BTN_TABLE -Seitennummer HID_SC_HF_PAGE sc:ImageButton:RID_HFBASE:BTN_PAGE -Seitenanzahl HID_SC_HF_PAGES sc:ImageButton:RID_HFBASE:BTN_PAGES -Datum HID_SC_HF_DATE sc:ImageButton:RID_HFBASE:BTN_DATE -Zeit HID_SC_HF_TIME sc:ImageButton:RID_HFBASE:BTN_TIME - -*TabLaden HID_OPTLOAD_PAGE -Immer sw:RadioButton:TP_OPTLOAD_PAGE:RB_ALWAYS -AufNachfrage sw:RadioButton:TP_OPTLOAD_PAGE:RB_REQUEST -Nie sw:RadioButton:TP_OPTLOAD_PAGE:RB_NEVER -Feldbefehle sw:CheckBox:TP_OPTLOAD_PAGE:CB_AUTO_UPDATE_FIELDS -Diagramme sw:CheckBox:TP_OPTLOAD_PAGE:CB_AUTO_UPDATE_CHARTS -Masseinheit sw:ListBox:TP_OPTLOAD_PAGE:LB_METRIC -Tabulatorenabstand sw:MetricField:TP_OPTLOAD_PAGE:MF_TAB - -*TabLauftext cui:TabPage:RID_SVXPAGE_TEXTANIMATION . -Effekt cui:ListBox:RID_SVXPAGE_TEXTANIMATION:LB_EFFECT -NachOben cui:ImageButton:RID_SVXPAGE_TEXTANIMATION:BTN_UP -NachLinks cui:ImageButton:RID_SVXPAGE_TEXTANIMATION:BTN_LEFT -NachUnten cui:ImageButton:RID_SVXPAGE_TEXTANIMATION:BTN_DOWN -NachRechts cui:ImageButton:RID_SVXPAGE_TEXTANIMATION:BTN_RIGHT -TextSichtbarBeimStarten cui:TriStateBox:RID_SVXPAGE_TEXTANIMATION:TSB_START_INSIDE -TextSichtbarBeimBeenden cui:TriStateBox:RID_SVXPAGE_TEXTANIMATION:TSB_STOP_INSIDE -Endlos cui:TriStateBox:RID_SVXPAGE_TEXTANIMATION:TSB_ENDLESS -Anzahl cui:NumericField:RID_SVXPAGE_TEXTANIMATION:NUM_FLD_COUNT -Automatisch cui:TriStateBox:RID_SVXPAGE_TEXTANIMATION:TSB_AUTO -Verzoegerung cui:MetricField:RID_SVXPAGE_TEXTANIMATION:MTR_FLD_DELAY -Pixel cui:TriStateBox:RID_SVXPAGE_TEXTANIMATION:TSB_PIXEL -Schrittweite cui:MetricField:RID_SVXPAGE_TEXTANIMATION:MTR_FLD_AMOUNT - -*TabLayoutCalc HID_SCPAGE_LAYOUT -Masseinheit SC:LISTBOX:RID_SCPAGE_LAYOUT:LB_UNIT -Tabulator SC:METRICFIELD:RID_SCPAGE_LAYOUT:MF_TAB -Eingabebestaetigung SC:CHECKBOX:RID_SCPAGE_LAYOUT:CB_ALIGN -Eingabetaste SC:CHECKBOX:RID_SCPAGE_LAYOUT:CB_EDITMODE -FormatierungAusdehnen SC:CHECKBOX:RID_SCPAGE_LAYOUT:CB_FORMAT -SelektionNach SC:LISTBOX:RID_SCPAGE_LAYOUT:LB_ALIGN -' Referenzenfarbig sc:CheckBox:RID_SCPAGE_LAYOUT:CB_RFIND -Referenzenausdehnen sc:CheckBox:RID_SCPAGE_LAYOUT:CB_EXPREF -SelektionHervorheben sc:CheckBox:RID_SCPAGE_LAYOUT:CB_MARKHDR -ImmerAktualisieren sc:RadioButton:RID_SCPAGE_LAYOUT:RB_ALWAYS -AufNachfrageAktualisieren sc:RadioButton:RID_SCPAGE_LAYOUT:RB_REQUEST -NieAktualisieren sc:RadioButton:RID_SCPAGE_LAYOUT:RB_NEVER -Druckermasse sc:CheckBox:RID_SCPAGE_LAYOUT:CB_TEXTFMT -Ueberschreibwarnung sc:CheckBox:RID_SCPAGE_LAYOUT:CB_REPLWARN - -*TabLegende HID_CAPTION -Art HID_CAPTION_CTL_TYPE -Abstand cui:METRICFIELD:RID_SVXPAGE_CAPTION:MF_ABSTAND -Ansatz cui:LISTBOX:RID_SVXPAGE_CAPTION:LB_ANSATZ -Laenge cui:METRICFIELD:RID_SVXPAGE_CAPTION:MF_LAENGE -Position cui:LISTBOX:RID_SVXPAGE_CAPTION:LB_ANSATZ_REL -Optimal cui:CHECKBOX:RID_SVXPAGE_CAPTION:CB_LAENGE - -*TabLinguistik HID_OPTIONS_LINGU -Sprachmodule HID_CLB_LINGU_MODULES -SprachmoduleBearbeiten cui:PushButton:RID_SFXPAGE_LINGU:PB_LINGU_MODULES_EDIT -Optionen HID_CLB_LINGU_OPTIONS -OptionenBearbeiten cui:PushButton:RID_SFXPAGE_LINGU:PB_LINGU_OPTIONS_EDIT -Benutzerwoerterbuch HID_CLB_EDIT_MODULES_DICS -Neu cui:PushButton:RID_SFXPAGE_LINGU:PB_LINGU_DICS_NEW_DIC -Bearbeiten cui:PushButton:RID_SFXPAGE_LINGU:PB_LINGU_DICS_EDIT_DIC -Loeschen cui:PushButton:RID_SFXPAGE_LINGU:PB_LINGU_DICS_DEL_DIC - -*TabLinie HID_LINE_LINE -Breite cui:MetricField:RID_SVXPAGE_LINE:MTR_FLD_LINE_WIDTH -BreiteLinks cui:MetricField:RID_SVXPAGE_LINE:MTR_FLD_START_WIDTH -BreiteRechts cui:MetricField:RID_SVXPAGE_LINE:MTR_FLD_END_WIDTH -EndenSynchronisieren cui:CheckBox:RID_SVXPAGE_LINE:CBX_SYNCHRONIZE -Farbe cui:ListBox:RID_SVXPAGE_LINE:LB_COLOR -Stil cui:ListBox:RID_SVXPAGE_LINE:LB_LINE_STYLE -StilLinks cui:ListBox:RID_SVXPAGE_LINE:LB_START_STYLE -StilRechts cui:ListBox:RID_SVXPAGE_LINE:LB_END_STYLE -Transparenz cui:MetricField:RID_SVXPAGE_LINE:MTR_LINE_TRANSPARENT -ZentriertLinks cui:TriStateBox:RID_SVXPAGE_LINE:TSB_CENTER_START -ZentriertRechts cui:TriStateBox:RID_SVXPAGE_LINE:TSB_CENTER_END -CornerStyle cui:ListBox:RID_SVXPAGE_LINE:LB_EDGE_STYLE - -*TabLinienenden HID_LINE_ENDDEF -Aendern cui:PushButton:RID_SVXPAGE_LINEEND_DEF:BTN_MODIFY -Hinzufuegen cui:PushButton:RID_SVXPAGE_LINEEND_DEF:BTN_ADD -Liste cui:ListBox:RID_SVXPAGE_LINEEND_DEF:LB_LINEENDS -Loeschen cui:PushButton:RID_SVXPAGE_LINEEND_DEF:BTN_DELETE -Oeffnen cui:ImageButton:RID_SVXPAGE_LINEEND_DEF:BTN_LOAD -Speichern cui:ImageButton:RID_SVXPAGE_LINEEND_DEF:BTN_SAVE -Textfeld cui:Edit:RID_SVXPAGE_LINEEND_DEF:EDT_NAME - -*TabLinienstile HID_LINE_DEF -Abstand cui:MetricField:RID_SVXPAGE_LINE_DEF:MTR_FLD_DISTANCE -Aendern cui:PushButton:RID_SVXPAGE_LINE_DEF:BTN_MODIFY -AnLinienbreite cui:CheckBox:RID_SVXPAGE_LINE_DEF:CBX_SYNCHRONIZE -AnzahlLinks cui:NumericField:RID_SVXPAGE_LINE_DEF:NUM_FLD_1 -AnzahlRechts cui:NumericField:RID_SVXPAGE_LINE_DEF:NUM_FLD_2 -Hinzufuegen cui:PushButton:RID_SVXPAGE_LINE_DEF:BTN_ADD -LaengeLinks cui:MetricField:RID_SVXPAGE_LINE_DEF:MTR_FLD_LENGTH_1 -LaengeRechts cui:MetricField:RID_SVXPAGE_LINE_DEF:MTR_FLD_LENGTH_2 -Linienstil cui:ListBox:RID_SVXPAGE_LINE_DEF:LB_LINESTYLES -Loeschen cui:PushButton:RID_SVXPAGE_LINE_DEF:BTN_DELETE -Oeffnen cui:ImageButton:RID_SVXPAGE_LINE_DEF:BTN_LOAD -Speichern cui:ImageButton:RID_SVXPAGE_LINE_DEF:BTN_SAVE -TypLinks cui:ListBox:RID_SVXPAGE_LINE_DEF:LB_TYPE_1 -TypRechts cui:ListBox:RID_SVXPAGE_LINE_DEF:LB_TYPE_2 - -*TabLiteraturAllgemein HID_BIB_CONTROL_PAGE - -*TabMakro cui:TabPage:RID_SVXPAGE_EVENTASSIGN -Ereignis HID_MACRO_LB_EVENT -Bereich HID_MACRO_GROUP SFX2:LISTBOX:RID_SFX_TP_MACROASSIGN:LB_GROUP -Makroname HID_MACRO_MACROS SFX2:LISTBOX:RID_SFX_TP_MACROASSIGN:LB_MACROS -Zuweisen cui:PushButton:RID_SVXPAGE_EVENTASSIGN:PB_ASSIGN -Aufheben cui:PushButton:RID_SVXPAGE_EVENTASSIGN:PB_DELETE -Scripttyp cui:ListBox:RID_SVXPAGE_EVENTASSIGN:LB_SCRIPTTYPE - -*TabMicrosoftOffice97 cui:TabPage:RID_OFAPAGE_MSFILTEROPT -WinwordBasicLaden cui:CheckBox:RID_OFAPAGE_MSFILTEROPT:CB_WBAS_CODE -WinwordBasicSpeichern cui:CheckBox:RID_OFAPAGE_MSFILTEROPT:CB_WBAS_STG -ExcelBasicLaden cui:CheckBox:RID_OFAPAGE_MSFILTEROPT:CB_EBAS_CODE -ExecutableCode cui:CheckBox:RID_OFAPAGE_MSFILTEROPT:CB_EBAS_EXECTBL -ExcelBasicSpeichern cui:CheckBox:RID_OFAPAGE_MSFILTEROPT:CB_EBAS_STG -PowerpointBasicLaden cui:CheckBox:RID_OFAPAGE_MSFILTEROPT:CB_PBAS_CODE -PowerpointBasicSpeichern cui:CheckBox:RID_OFAPAGE_MSFILTEROPT:CB_PBAS_STG - -*TabMicrosoftOffice2 cui:TabPage:RID_OFAPAGE_MSFILTEROPT2 -Auswahl HID_OFAPAGE_MSFLTR2_CLB - -*TabModule basctl:TabPage:RID_TP_MODULS -Modulliste HID_BASICIDE_MODULES_TREE -Bearbeiten basctl:PushButton:RID_TP_MODULS:RID_PB_EDIT -NeuesModul basctl:PushButton:RID_TP_MODULS:RID_PB_NEWMOD -NeuerDialog basctl:PushButton:RID_TP_MODULS:RID_PB_NEWDLG -Loeschen basctl:PushButton:RID_TP_MODULS:RID_PB_DELETE - -*TabNumerierungsart HID_SVXPAGE_PICK_SINGLE_NUM -Auswahl HID_VALUESET_SINGLENUM -Optionen HID_NUM_FORMAT_BTN -Zurueck HID_TABDLG_RESET_BTN - -*TabNumerierung HID_SVXPAGE_PICK_NUM -Auswahl HID_VALUESET_NUM -Optionen HID_NUM_FORMAT_BTN -Zurueck HID_TABDLG_RESET_BTN +Internet sym:cui:RadioButton:RID_SVXPAGE_HYPERLINK_INTERNET:RB_LINKTYP_INTERNET +FTP sym:cui:RadioButton:RID_SVXPAGE_HYPERLINK_INTERNET:RB_LINKTYP_FTP +Telnet sym:cui:RadioButton:RID_SVXPAGE_HYPERLINK_INTERNET:RB_LINKTYP_TELNET +ZielUrl sym:CUI_HID_HYPERDLG_INET_PATH +Frame sym:cui:ComboBox:RID_SVXPAGE_HYPERLINK_INTERNET:CB_FRAME +Form sym:cui:ListBox:RID_SVXPAGE_HYPERLINK_INTERNET:LB_FORM +Hinweis sym:cui:Edit:RID_SVXPAGE_HYPERLINK_INTERNET:ED_INDICATION +NameText sym:cui:Edit:RID_SVXPAGE_HYPERLINK_INTERNET:ED_TEXT +Ereignisse sym:cui:ImageButton:RID_SVXPAGE_HYPERLINK_INTERNET:BTN_SCRIPT +Loginname sym:cui:Edit:RID_SVXPAGE_HYPERLINK_INTERNET:ED_LOGIN +Passwort sym:cui:Edit:RID_SVXPAGE_HYPERLINK_INTERNET:ED_PASSWD +AnonymerBenutzer sym:cui:CheckBox:RID_SVXPAGE_HYPERLINK_INTERNET:CBX_ANONYMOUS +WWWBrowser sym:cui:ImageButton:RID_SVXPAGE_HYPERLINK_INTERNET:BTN_BROWSE +Target sym:cui:ImageButton:RID_SVXPAGE_HYPERLINK_INTERNET:BTN_TARGET + +*TabHyperlinkMailUndNews sym:CUI_HID_HYPERLINK_MAIL +EMail sym:cui:RadioButton:RID_SVXPAGE_HYPERLINK_MAIL:RB_LINKTYP_MAIL +News sym:cui:RadioButton:RID_SVXPAGE_HYPERLINK_MAIL:RB_LINKTYP_NEWS +Receiver sym:CUI_HID_HYPERDLG_MAIL_PATH +Betreff sym:cui:Edit:RID_SVXPAGE_HYPERLINK_MAIL:ED_SUBJECT +Adressbuch sym:cui:ImageButton:RID_SVXPAGE_HYPERLINK_MAIL:BTN_ADRESSBOOK +Frame sym:cui:ComboBox:RID_SVXPAGE_HYPERLINK_MAIL:CB_FRAME +Form sym:cui:ListBox:RID_SVXPAGE_HYPERLINK_MAIL:LB_FORM +Hinweis sym:cui:Edit:RID_SVXPAGE_HYPERLINK_MAIL:ED_INDICATION +NameText sym:cui:Edit:RID_SVXPAGE_HYPERLINK_MAIL:ED_TEXT +Ereignisse sym:cui:ImageButton:RID_SVXPAGE_HYPERLINK_MAIL:BTN_SCRIPT +Auswahl sym:CUI_HID_ICCDIALOG_CHOICECTRL +Zurueck sym:CUI_HID_ICCDIALOG_RESET_BTN +Uebernehmen sym:CUI_HID_ICCDIALOG_OK_BTN + +*TabHyperlinkDokument sym:CUI_HID_HYPERLINK_DOCUMENT +Path sym:CUI_HID_HYPERDLG_DOC_PATH +DateiOeffnen sym:cui:ImageButton:RID_SVXPAGE_HYPERLINK_DOCUMENT:BTN_FILEOPEN +Ziel sym:cui:Edit:RID_SVXPAGE_HYPERLINK_DOCUMENT:ED_TARGET_DOC +Target sym:cui:ImageButton:RID_SVXPAGE_HYPERLINK_DOCUMENT:BTN_BROWSE +Frame sym:cui:ComboBox:RID_SVXPAGE_HYPERLINK_DOCUMENT:CB_FRAME +Form sym:cui:ListBox:RID_SVXPAGE_HYPERLINK_DOCUMENT:LB_FORM +Hinweis sym:cui:Edit:RID_SVXPAGE_HYPERLINK_DOCUMENT:ED_INDICATION +NameText sym:cui:Edit:RID_SVXPAGE_HYPERLINK_DOCUMENT:ED_TEXT +Ereignisse sym:cui:ImageButton:RID_SVXPAGE_HYPERLINK_DOCUMENT:BTN_SCRIPT +Auswahl sym:CUI_HID_ICCDIALOG_CHOICECTRL +Zurueck sym:CUI_HID_ICCDIALOG_RESET_BTN +Uebernehmen sym:CUI_HID_ICCDIALOG_OK_BTN + +*TabHyperlinkNeuesDokument sym:CUI_HID_HYPERLINK_NEWDOCUMENT +SofortBearbeiten sym:cui:RadioButton:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:RB_EDITNOW +SpaeterBearbeiten sym:cui:RadioButton:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:RB_EDITLATER +Datei sym:cui:Edit:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:ED_PATH_NEWDOC +Dateityp sym:cui:ListBox:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:LB_DOCUMENT_TYPES +Pfad sym:cui:ImageButton:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:BTN_CREATE +Frame sym:cui:ComboBox:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:CB_FRAME +Form sym:cui:ListBox:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:LB_FORM +Hinweis sym:cui:Edit:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:ED_INDICATION +NameText sym:cui:Edit:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:ED_TEXT +Ereignisse sym:cui:ImageButton:RID_SVXPAGE_HYPERLINK_NEWDOCUMENT:BTN_SCRIPT +Auswahl sym:CUI_HID_ICCDIALOG_CHOICECTRL +Zurueck sym:CUI_HID_ICCDIALOG_RESET_BTN +Uebernehmen sym:CUI_HID_ICCDIALOG_OK_BTN + +*TabInhaltCalc sym:SC_HID_SCPAGE_CONTENT +Formeln sym:sc:CheckBox:RID_SCPAGE_CONTENT:CB_FORMULA +Nullwerte sym:sc:CheckBox:RID_SCPAGE_CONTENT:CB_NIL +Notizanzeiger sym:sc:CheckBox:RID_SCPAGE_CONTENT:CB_ANNOT +WerteHervorheben sym:sc:CheckBox:RID_SCPAGE_CONTENT:CB_VALUE +Anker sym:sc:CheckBox:RID_SCPAGE_CONTENT:CB_ANCHOR +Textueberlauf sym:sc:CheckBox:RID_SCPAGE_CONTENT:CB_CLIP +ObjekteGrafiken sym:sc:ListBox:RID_SCPAGE_CONTENT:LB_OBJGRF +Diagramme sym:sc:ListBox:RID_SCPAGE_CONTENT:LB_DIAGRAM +Zeichenobjekte sym:sc:ListBox:RID_SCPAGE_CONTENT:LB_DRAW +Gitterlinien sym:sc:CheckBox:RID_SCPAGE_CONTENT:CB_GRID +Farbe sym:sc:ListBox:RID_SCPAGE_CONTENT:LB_COLOR +Seitenumbruch sym:sc:CheckBox:RID_SCPAGE_CONTENT:CB_PAGEBREAKS +Hilfslinien sym:sc:CheckBox:RID_SCPAGE_CONTENT:CB_GUIDELINE +EinfacheGriffe sym:sc:CheckBox:RID_SCPAGE_CONTENT:CB_HANDLES +GrosseGriffe sym:sc:CheckBox:RID_SCPAGE_CONTENT:CB_BIGHANDLES +ZeilenUndSpaltenkoepfe sym:sc:CheckBox:RID_SCPAGE_CONTENT:CB_ROWCOLHEADER +HorizontalerBildaufbau sym:sc:CheckBox:RID_SCPAGE_CONTENT:CB_HSCROLL +VertikalerBildaufbau sym:sc:CheckBox:RID_SCPAGE_CONTENT:CB_VSCROLL +Tabellenregister sym:sc:CheckBox:RID_SCPAGE_CONTENT:CB_TBLREG +Gliederungssymbole sym:sc:CheckBox:RID_SCPAGE_CONTENT:CB_OUTLINE +Referenzenfarbig sym:sc:CheckBox:RID_SCPAGE_CONTENT:CB_RFIND + +*TabInhalteDraw sym:SD_HID_SD_OPTIONS_CONTENTS sym:SD_HID_SD_OPTIONS_SNAP +LinealeSichtbar sym:sd:CheckBox:TP_OPTIONS_CONTENTS:CBX_RULER +HilfslinienBeimBewegen sym:sd:CheckBox:TP_OPTIONS_CONTENTS:CBX_HELPLINES +KontrolpunkteImBezierEditor sym:sd:CheckBox:TP_OPTIONS_CONTENTS:CBX_HANDLES_BEZIER +KonturFuerIndividuelleObjekte sym:sd:CheckBox:TP_OPTIONS_CONTENTS:CBX_MOVE_OUTLINE + +*TabInhalteHTML sym:SW_HID_CONTENT_OPT +GrafikenUndObjekte sym:sw:CheckBox:TP_CONTENT_OPT:CB_GRF +Tabellen sym:sw:CheckBox:TP_CONTENT_OPT:CB_TBL +Zeichnungen sym:sw:CheckBox:TP_CONTENT_OPT:CB_DRWFAST +Feldnamen sym:sw:CheckBox:TP_CONTENT_OPT:CB_FIELD +Notizen sym:sw:CheckBox:TP_CONTENT_OPT:CB_POSTIT +Hilfslinien sym:sw:CheckBox:TP_CONTENT_OPT:CB_CROSS +FarbigeHandles sym:sw:CheckBox:TP_CONTENT_OPT:CB_HANDLE +GrosseHandles sym:sw:CheckBox:TP_CONTENT_OPT:CB_BIGHANDLE +HorizontaleBildlaufleiste sym:sw:CheckBox:TP_CONTENT_OPT:CB_HSCROLL +VertikaleBildlaufleiste sym:sw:CheckBox:TP_CONTENT_OPT:CB_VSCROLL +HorizontalesLineal sym:sw:CheckBox:TP_CONTENT_OPT:CB_HRULER +VertikalesLineal sym:sw:CheckBox:TP_CONTENT_OPT:CB_VRULER +RechtsAusgerichtet sym:sw:CheckBox:TP_CONTENT_OPT:CB_VRULER_RIGHT +WeichesScrollen sym:sw:CheckBox:TP_CONTENT_OPT:CB_SMOOTH_SCROLL +Lineal sym:sw:CheckBox:TP_CONTENT_OPT:CB_ANY_RULER +HorizontalesLinealMasseinheit sym:sw:ListBox:TP_CONTENT_OPT:LB_HMETRIC +VertikalesLinealMasseinheit sym:sw:ListBox:TP_CONTENT_OPT:LB_VMETRIC +Masseinheit sym:sw:ListBox:TP_CONTENT_OPT:LB_METRIC + +*TabInhalteWriter sym:SW_HID_CONTENT_OPT +GrafikenUndObjekte sym:sw:CheckBox:TP_CONTENT_OPT:CB_GRF +Tabellen sym:sw:CheckBox:TP_CONTENT_OPT:CB_TBL +Zeichnungen sym:sw:CheckBox:TP_CONTENT_OPT:CB_DRWFAST +Feldname sym:sw:CheckBox:TP_CONTENT_OPT:CB_FIELD +Notizen sym:sw:CheckBox:TP_CONTENT_OPT:CB_POSTIT +Hilfslinien sym:sw:CheckBox:TP_CONTENT_OPT:CB_CROSS +FarbigeHandles sym:sw:CheckBox:TP_CONTENT_OPT:CB_HANDLE +GrosseHandles sym:sw:CheckBox:TP_CONTENT_OPT:CB_BIGHANDLE +HorizontaleBildlaufleiste sym:sw:CheckBox:TP_CONTENT_OPT:CB_HSCROLL +VertikaleBildlaufleiste sym:sw:CheckBox:TP_CONTENT_OPT:CB_VSCROLL +HorizontalesLineal sym:sw:CheckBox:TP_CONTENT_OPT:CB_HRULER +VertikalesLineal sym:sw:CheckBox:TP_CONTENT_OPT:CB_VRULER +RechtsAusgerichtet sym:sw:CheckBox:TP_CONTENT_OPT:CB_VRULER_RIGHT +WeichesScrollen sym:sw:CheckBox:TP_CONTENT_OPT:CB_SMOOTH_SCROLL +Lineal sym:sw:CheckBox:TP_CONTENT_OPT:CB_ANY_RULER +HorizontalesLinealMasseinheit sym:sw:ListBox:TP_CONTENT_OPT:LB_HMETRIC +VertikalesLinealMasseinheit sym:sw:ListBox:TP_CONTENT_OPT:LB_VMETRIC + +*TabInitialen sym:SW_HID_DROPCAPS +Anzeigen sym:sw:CheckBox:TP_DROPCAPS:CB_SWITCH +Anzahl sym:sw:NumericField:TP_DROPCAPS:FLD_DROPCAPS +AbstandZumText sym:sw:MetricField:TP_DROPCAPS:FLD_DISTANCE +Zeilen sym:sw:NumericField:TP_DROPCAPS:FLD_LINES +Initialentext sym:sw:Edit:TP_DROPCAPS:EDT_TEXT +Zeichenvorlage sym:sw:ListBox:TP_DROPCAPS:BOX_TEMPLATE +GanzesWort sym:sw:CheckBox:TP_DROPCAPS:CB_WORD + +*TabInteraktion .uno:AnimationEffects +AktionBeiMausklick sym:sd:ListBox:TP_ANIMATION:LB_ACTION +ListeSprungZuDokument sym:SD_HID_CTL_ACTION_DLG_2 +ListeSprungZuSeiteObjekt sym:SD_HID_CTL_ACTION_DLG_1 +ListeObjektAktion sym:sd:ListBox:TP_ANIMATION:LB_OLE_ACTION +Durchsuchen sym:sd:PushButton:TP_ANIMATION:BTN_SEARCH +Suchen sym:sd:PushButton:TP_ANIMATION:BTN_SEEK +Effekt sym:sd:ListBox:TP_ANIMATION:LB_OLE_ACTION +'Effekt sym:sd:ListBox:TP_ANIMATION:LB_EFFECT +'Langsam sym:sd:RadioButton:TP_ANIMATION:RBT_SLOW +'Schnell sym:sd:RadioButton:TP_ANIMATION:RBT_MEDIUM +'Mittel sym:sd:RadioButton:TP_ANIMATION:RBT_FAST +'KlangbeiObjektausblenden sym:sd:TriStateBox:TP_ANIMATION:TSB_SOUND +Seite sym:sd:Edit:TP_ANIMATION:EDT_BOOKMARK +Dokument sym:sd:Edit:TP_ANIMATION:EDT_DOCUMENT +Objekt sym:sd:Edit:TP_ANIMATION:EDT_PROGRAM +Makro sym:sd:Edit:TP_ANIMATION:EDT_MACRO +KlangWahl sym:sd:Edit:TP_ANIMATION:EDT_SOUND +'KlangVollstaendigAbspielen sym:sd:TriStateBox:TP_ANIMATION:TSB_PLAY_FULL + +*TabKapitelnumerierung sym:SW_HID_TP_OUTLINE_NUM +Ebene sym:sw:ListBox:TP_OUTLINE_NUM:LB_LEVEL +Absatzvorlage sym:sw:ListBox:TP_OUTLINE_NUM:LB_COLL +Zeichenvorlage sym:sw:ListBox:TP_OUTLINE_NUM:LB_CHARFMT +Nummer sym:sw:ListBox:TP_OUTLINE_NUM:LB_NUMBER +Vollstaendig sym:sw:NumericField:TP_OUTLINE_NUM:NF_ALL_LEVEL +Davor sym:sw:Edit:TP_OUTLINE_NUM:ED_PREFIX +Dahinter sym:sw:Edit:TP_OUTLINE_NUM:ED_SUFFIX +BeginBei sym:sw:NumericField:TP_OUTLINE_NUM:ED_START +Form sym:SW_HID_OUTLINE_FORM + +*TabKopfzeile sym:SVX_HID_FORMAT_HEADER +KopfzeileMitAbstand sym:svx:CheckBox:RID_SVXPAGE_HEADER:CB_TURNON svx:CheckBox:RID_SVXPAGE_HEADER:CB_HEADER +Abstand sym:svx:MetricField:RID_SVXPAGE_HEADER:ED_DIST +Hoehe sym:svx:MetricField:RID_SVXPAGE_HEADER:ED_HEIGHT +Hoehedynamisch sym:svx:CheckBox:RID_SVXPAGE_HEADER:CB_HEIGHT_DYN +RechterRandKopfzeile sym:svx:MetricField:RID_SVXPAGE_HEADER:ED_RMARGIN +LinkerRandKopfzeile sym:svx:MetricField:RID_SVXPAGE_HEADER:ED_LMARGIN +InhaltLinksRechtsGleich sym:svx:CheckBox:RID_SVXPAGE_HEADER:CB_SHARED +Zusaetze sym:svx:PushButton:RID_SVXPAGE_HEADER:BTN_EXTRAS +Bearbeiten sym:SC_HID_SC_HEADER_EDIT + +*TabKopfzeileCalc sym:SC_HID_SCPAGE_HFED_HR +LinkerBereich sym:SC_HID_SC_HF_HRL +MittlererBereich sym:SC_HID_SC_HF_HRC +RechterBereich sym:SC_HID_SC_HF_HRR +PredefinedHeader sym:SC_HID_SC_HF_HR_DEFINED +TextAttribute sym:SC_HID_SC_HF_TEXT sym:sc:ImageButton:RID_HFBASE:BTN_TEXT +Datei sym:SC_HID_SC_HF_FILE sym:sc:ImageButton:RID_HFBASE:BTN_FILE +Tabelle sym:SC_HID_SC_HF_TABLE sym:sc:ImageButton:RID_HFBASE:BTN_TABLE +Seitennummer sym:SC_HID_SC_HF_PAGE sym:sc:ImageButton:RID_HFBASE:BTN_PAGE +Seitenanzahl sym:SC_HID_SC_HF_PAGES sym:sc:ImageButton:RID_HFBASE:BTN_PAGES +Datum sym:SC_HID_SC_HF_DATE sym:sc:ImageButton:RID_HFBASE:BTN_DATE +Zeit sym:SC_HID_SC_HF_TIME sym:sc:ImageButton:RID_HFBASE:BTN_TIME + +*TabKopfzeileCalcLinks sym:SC_HID_SCPAGE_HFED_HL +LinkerBereich sym:SC_HID_SC_HF_HLL +MittlererBereich sym:SC_HID_SC_HF_HLC +RechterBereich sym:SC_HID_SC_HF_HLR +PredefinedHeaderLeft sym:SC_HID_SC_HF_HL_DEFINED +TextAttribute sym:SC_HID_SC_HF_TEXT sym:sc:ImageButton:RID_HFBASE:BTN_TEXT +Datei sym:SC_HID_SC_HF_FILE sym:sc:ImageButton:RID_HFBASE:BTN_FILE +Tabelle sym:SC_HID_SC_HF_TABLE sym:sc:ImageButton:RID_HFBASE:BTN_TABLE +Seitennummer sym:SC_HID_SC_HF_PAGE sym:sc:ImageButton:RID_HFBASE:BTN_PAGE +Seitenanzahl sym:SC_HID_SC_HF_PAGES sym:sc:ImageButton:RID_HFBASE:BTN_PAGES +Datum sym:SC_HID_SC_HF_DATE sym:sc:ImageButton:RID_HFBASE:BTN_DATE +Zeit sym:SC_HID_SC_HF_TIME sym:sc:ImageButton:RID_HFBASE:BTN_TIME + +*TabLaden sym:SW_HID_OPTLOAD_PAGE +Immer sym:sw:RadioButton:TP_OPTLOAD_PAGE:RB_ALWAYS +AufNachfrage sym:sw:RadioButton:TP_OPTLOAD_PAGE:RB_REQUEST +Nie sym:sw:RadioButton:TP_OPTLOAD_PAGE:RB_NEVER +Feldbefehle sym:sw:CheckBox:TP_OPTLOAD_PAGE:CB_AUTO_UPDATE_FIELDS +Diagramme sym:sw:CheckBox:TP_OPTLOAD_PAGE:CB_AUTO_UPDATE_CHARTS +Masseinheit sym:sw:ListBox:TP_OPTLOAD_PAGE:LB_METRIC +Tabulatorenabstand sym:sw:MetricField:TP_OPTLOAD_PAGE:MF_TAB + +*TabLauftext sym:cui:TabPage:RID_SVXPAGE_TEXTANIMATION . +Effekt sym:cui:ListBox:RID_SVXPAGE_TEXTANIMATION:LB_EFFECT +NachOben sym:cui:ImageButton:RID_SVXPAGE_TEXTANIMATION:BTN_UP +NachLinks sym:cui:ImageButton:RID_SVXPAGE_TEXTANIMATION:BTN_LEFT +NachUnten sym:cui:ImageButton:RID_SVXPAGE_TEXTANIMATION:BTN_DOWN +NachRechts sym:cui:ImageButton:RID_SVXPAGE_TEXTANIMATION:BTN_RIGHT +TextSichtbarBeimStarten sym:cui:TriStateBox:RID_SVXPAGE_TEXTANIMATION:TSB_START_INSIDE +TextSichtbarBeimBeenden sym:cui:TriStateBox:RID_SVXPAGE_TEXTANIMATION:TSB_STOP_INSIDE +Endlos sym:cui:TriStateBox:RID_SVXPAGE_TEXTANIMATION:TSB_ENDLESS +Anzahl sym:cui:NumericField:RID_SVXPAGE_TEXTANIMATION:NUM_FLD_COUNT +Automatisch sym:cui:TriStateBox:RID_SVXPAGE_TEXTANIMATION:TSB_AUTO +Verzoegerung sym:cui:MetricField:RID_SVXPAGE_TEXTANIMATION:MTR_FLD_DELAY +Pixel sym:cui:TriStateBox:RID_SVXPAGE_TEXTANIMATION:TSB_PIXEL +Schrittweite sym:cui:MetricField:RID_SVXPAGE_TEXTANIMATION:MTR_FLD_AMOUNT + +*TabLayoutCalc sym:SC_HID_SCPAGE_LAYOUT +Masseinheit sym:sc:ListBox:RID_SCPAGE_LAYOUT:LB_UNIT +Tabulator sym:sc:MetricField:RID_SCPAGE_LAYOUT:MF_TAB +Eingabebestaetigung sym:sc:CheckBox:RID_SCPAGE_LAYOUT:CB_ALIGN +Eingabetaste sym:sc:CheckBox:RID_SCPAGE_LAYOUT:CB_EDITMODE +FormatierungAusdehnen sym:sc:CheckBox:RID_SCPAGE_LAYOUT:CB_FORMAT +SelektionNach sym:sc:ListBox:RID_SCPAGE_LAYOUT:LB_ALIGN +' Referenzenfarbig sym:sc:CheckBox:RID_SCPAGE_LAYOUT:CB_RFIND +Referenzenausdehnen sym:sc:CheckBox:RID_SCPAGE_LAYOUT:CB_EXPREF +SelektionHervorheben sym:sc:CheckBox:RID_SCPAGE_LAYOUT:CB_MARKHDR +ImmerAktualisieren sym:sc:RadioButton:RID_SCPAGE_LAYOUT:RB_ALWAYS +AufNachfrageAktualisieren sym:sc:RadioButton:RID_SCPAGE_LAYOUT:RB_REQUEST +NieAktualisieren sym:sc:RadioButton:RID_SCPAGE_LAYOUT:RB_NEVER +Druckermasse sym:sc:CheckBox:RID_SCPAGE_LAYOUT:CB_TEXTFMT +Ueberschreibwarnung sym:sc:CheckBox:RID_SCPAGE_LAYOUT:CB_REPLWARN + +*TabLegende sym:CUI_HID_CAPTION +Art sym:CUI_HID_CAPTION_CTL_TYPE +Abstand sym:cui:MetricField:RID_SVXPAGE_CAPTION:MF_ABSTAND +Ansatz sym:cui:ListBox:RID_SVXPAGE_CAPTION:LB_ANSATZ +Laenge sym:cui:MetricField:RID_SVXPAGE_CAPTION:MF_LAENGE +Position sym:cui:ListBox:RID_SVXPAGE_CAPTION:LB_ANSATZ_REL +Optimal sym:cui:CheckBox:RID_SVXPAGE_CAPTION:CB_LAENGE + +*TabLinguistik sym:CUI_HID_OPTIONS_LINGU +Sprachmodule sym:CUI_HID_CLB_LINGU_MODULES +SprachmoduleBearbeiten sym:cui:PushButton:RID_SFXPAGE_LINGU:PB_LINGU_MODULES_EDIT +Optionen sym:CUI_HID_CLB_LINGU_OPTIONS +OptionenBearbeiten sym:cui:PushButton:RID_SFXPAGE_LINGU:PB_LINGU_OPTIONS_EDIT +Benutzerwoerterbuch sym:CUI_HID_CLB_EDIT_MODULES_DICS +Neu sym:cui:PushButton:RID_SFXPAGE_LINGU:PB_LINGU_DICS_NEW_DIC +Bearbeiten sym:cui:PushButton:RID_SFXPAGE_LINGU:PB_LINGU_DICS_EDIT_DIC +Loeschen sym:cui:PushButton:RID_SFXPAGE_LINGU:PB_LINGU_DICS_DEL_DIC + +*TabLinie sym:CUI_HID_LINE_LINE +Breite sym:cui:MetricField:RID_SVXPAGE_LINE:MTR_FLD_LINE_WIDTH +BreiteLinks sym:cui:MetricField:RID_SVXPAGE_LINE:MTR_FLD_START_WIDTH +BreiteRechts sym:cui:MetricField:RID_SVXPAGE_LINE:MTR_FLD_END_WIDTH +EndenSynchronisieren sym:cui:CheckBox:RID_SVXPAGE_LINE:CBX_SYNCHRONIZE +Farbe sym:cui:ListBox:RID_SVXPAGE_LINE:LB_COLOR +Stil sym:cui:ListBox:RID_SVXPAGE_LINE:LB_LINE_STYLE +StilLinks sym:cui:ListBox:RID_SVXPAGE_LINE:LB_START_STYLE +StilRechts sym:cui:ListBox:RID_SVXPAGE_LINE:LB_END_STYLE +Transparenz sym:cui:MetricField:RID_SVXPAGE_LINE:MTR_LINE_TRANSPARENT +ZentriertLinks sym:cui:TriStateBox:RID_SVXPAGE_LINE:TSB_CENTER_START +ZentriertRechts sym:cui:TriStateBox:RID_SVXPAGE_LINE:TSB_CENTER_END +CornerStyle sym:cui:ListBox:RID_SVXPAGE_LINE:LB_EDGE_STYLE + +*TabLinienenden sym:CUI_HID_LINE_ENDDEF +Aendern sym:cui:PushButton:RID_SVXPAGE_LINEEND_DEF:BTN_MODIFY +Hinzufuegen sym:cui:PushButton:RID_SVXPAGE_LINEEND_DEF:BTN_ADD +Liste sym:cui:ListBox:RID_SVXPAGE_LINEEND_DEF:LB_LINEENDS +Loeschen sym:cui:PushButton:RID_SVXPAGE_LINEEND_DEF:BTN_DELETE +Oeffnen sym:cui:ImageButton:RID_SVXPAGE_LINEEND_DEF:BTN_LOAD +Speichern sym:cui:ImageButton:RID_SVXPAGE_LINEEND_DEF:BTN_SAVE +Textfeld sym:cui:Edit:RID_SVXPAGE_LINEEND_DEF:EDT_NAME + +*TabLinienstile sym:CUI_HID_LINE_DEF +Abstand sym:cui:MetricField:RID_SVXPAGE_LINE_DEF:MTR_FLD_DISTANCE +Aendern sym:cui:PushButton:RID_SVXPAGE_LINE_DEF:BTN_MODIFY +AnLinienbreite sym:cui:CheckBox:RID_SVXPAGE_LINE_DEF:CBX_SYNCHRONIZE +AnzahlLinks sym:cui:NumericField:RID_SVXPAGE_LINE_DEF:NUM_FLD_1 +AnzahlRechts sym:cui:NumericField:RID_SVXPAGE_LINE_DEF:NUM_FLD_2 +Hinzufuegen sym:cui:PushButton:RID_SVXPAGE_LINE_DEF:BTN_ADD +LaengeLinks sym:cui:MetricField:RID_SVXPAGE_LINE_DEF:MTR_FLD_LENGTH_1 +LaengeRechts sym:cui:MetricField:RID_SVXPAGE_LINE_DEF:MTR_FLD_LENGTH_2 +Linienstil sym:cui:ListBox:RID_SVXPAGE_LINE_DEF:LB_LINESTYLES +Loeschen sym:cui:PushButton:RID_SVXPAGE_LINE_DEF:BTN_DELETE +Oeffnen sym:cui:ImageButton:RID_SVXPAGE_LINE_DEF:BTN_LOAD +Speichern sym:cui:ImageButton:RID_SVXPAGE_LINE_DEF:BTN_SAVE +TypLinks sym:cui:ListBox:RID_SVXPAGE_LINE_DEF:LB_TYPE_1 +TypRechts sym:cui:ListBox:RID_SVXPAGE_LINE_DEF:LB_TYPE_2 + +*TabLiteraturAllgemein sym:EXTENSIONS_HID_BIB_CONTROL_PAGE + +*TabMakro sym:cui:TabPage:RID_SVXPAGE_EVENTASSIGN +Ereignis sym:CUI_HID_MACRO_LB_EVENT +Bereich sym:CUI_HID_MACRO_GROUP sym:sfx2:ListBox:RID_SFX_TP_MACROASSIGN:LB_GROUP +Makroname sym:CUI_HID_MACRO_MACROS sym:sfx2:ListBox:RID_SFX_TP_MACROASSIGN:LB_MACROS +Zuweisen sym:cui:PushButton:RID_SVXPAGE_EVENTASSIGN:PB_ASSIGN +Aufheben sym:cui:PushButton:RID_SVXPAGE_EVENTASSIGN:PB_DELETE +Scripttyp sym:cui:ListBox:RID_SVXPAGE_EVENTASSIGN:LB_SCRIPTTYPE + +*TabMicrosoftOffice97 sym:cui:TabPage:RID_OFAPAGE_MSFILTEROPT +WinwordBasicLaden sym:cui:CheckBox:RID_OFAPAGE_MSFILTEROPT:CB_WBAS_CODE +WinwordBasicSpeichern sym:cui:CheckBox:RID_OFAPAGE_MSFILTEROPT:CB_WBAS_STG +ExcelBasicLaden sym:cui:CheckBox:RID_OFAPAGE_MSFILTEROPT:CB_EBAS_CODE +ExecutableCode sym:cui:CheckBox:RID_OFAPAGE_MSFILTEROPT:CB_EBAS_EXECTBL +ExcelBasicSpeichern sym:cui:CheckBox:RID_OFAPAGE_MSFILTEROPT:CB_EBAS_STG +PowerpointBasicLaden sym:cui:CheckBox:RID_OFAPAGE_MSFILTEROPT:CB_PBAS_CODE +PowerpointBasicSpeichern sym:cui:CheckBox:RID_OFAPAGE_MSFILTEROPT:CB_PBAS_STG + +*TabMicrosoftOffice2 sym:cui:TabPage:RID_OFAPAGE_MSFILTEROPT2 +Auswahl sym:CUI_HID_OFAPAGE_MSFLTR2_CLB + +*TabModule sym:basctl:TabPage:RID_TP_MODULS +Modulliste sym:BASCTL_HID_BASICIDE_MODULES_TREE +Bearbeiten sym:basctl:PushButton:RID_TP_MODULS:RID_PB_EDIT +NeuesModul sym:basctl:PushButton:RID_TP_MODULS:RID_PB_NEWMOD +NeuerDialog sym:basctl:PushButton:RID_TP_MODULS:RID_PB_NEWDLG +Loeschen sym:basctl:PushButton:RID_TP_MODULS:RID_PB_DELETE + +*TabNumerierungsart sym:CUI_HID_SVXPAGE_PICK_SINGLE_NUM +Auswahl sym:CUI_HID_VALUESET_SINGLENUM +Optionen sym:SW_HID_NUM_FORMAT_BTN +Zurueck sym:SFX2_HID_TABDLG_RESET_BTN + +*TabNumerierung sym:CUI_HID_SVXPAGE_PICK_NUM +Auswahl sym:CUI_HID_VALUESET_NUM +Optionen sym:SW_HID_NUM_FORMAT_BTN +Zurueck sym:SFX2_HID_TABDLG_RESET_BTN +TabGliederung TabNumerierung -*TabNumerierungAbsatz Hid_NUMPARA -Vorlage SW:LISTBOX:TP_NUMPARA:LB_NUMBER_STYLE -NumerierungNeuBeginnen SW:TRISTATEBOX:TP_NUMPARA:CB_NEW_START SW:CHECKBOX:TP_NUMPARA:CB_NEW_START -StartWith sw:TriStateBox:TP_NUMPARA:CB_NUMBER_NEW_START -NumerierungBeginnenBei SW:NUMERICFIELD:TP_NUMPARA:NF_NEW_START -ZeilenumerierungZeilenMitzaehlen SW:TRISTATEBOX:TP_NUMPARA:CB_COUNT_PARA SW:CHECKBOX:TP_NUMPARA:CB_COUNT_PARA -ZeilenumerierungNeuBeginnen SW:TRISTATEBOX:TP_NUMPARA:CB_RESTART_PARACOUNT SW:CHECKBOX:TP_NUMPARA:CB_RESTART_PARACOUNT -ZeilenumerierungBeginnenBei SW:NUMERICFIELD:TP_NUMPARA:NF_RESTART_PARA -OutlineLevel sw:ListBox:TP_NUMPARA:LB_OUTLINE_LEVEL +*TabNumerierungAbsatz sym:SW_HID_NUMPARA +Vorlage sym:sw:ListBox:TP_NUMPARA:LB_NUMBER_STYLE +NumerierungNeuBeginnen sym:sw:TriStateBox:TP_NUMPARA:CB_NEW_START SW:CheckBox:TP_NUMPARA:CB_NEW_START +StartWith sym:sw:TriStateBox:TP_NUMPARA:CB_NUMBER_NEW_START +NumerierungBeginnenBei sym:sw:NumericField:TP_NUMPARA:NF_NEW_START +ZeilenumerierungZeilenMitzaehlen sym:sw:TriStateBox:TP_NUMPARA:CB_COUNT_PARA SW:CheckBox:TP_NUMPARA:CB_COUNT_PARA +ZeilenumerierungNeuBeginnen sym:sw:TriStateBox:TP_NUMPARA:CB_RESTART_PARACOUNT SW:CheckBox:TP_NUMPARA:CB_RESTART_PARACOUNT +ZeilenumerierungBeginnenBei sym:sw:NumericField:TP_NUMPARA:NF_RESTART_PARA +OutlineLevel sym:sw:ListBox:TP_NUMPARA:LB_OUTLINE_LEVEL +TabNumerierungKapitelnumerierung TabKapitelnumerierung ' *TabObjekt HID_PAGE_3DATTR -' SegmenteH svx:NumericField:RID_SVXPAGE_3DATTR:NUM_FLD_HORZ_SEGS -' SegmenteV svx:NumericField:RID_SVXPAGE_3DATTR:NUM_FLD_VERT_SEGS -' Tiefe svx:MetricField:RID_SVXPAGE_3DATTR:MTR_FLD_DEPTH -' Doppelseitig svx:TriStateBox:RID_SVXPAGE_3DATTR:TSB_DOUBLE_SIDED -' ObjektGroesseAnpassen svx:CheckBox:RID_SVXPAGE_3DATTR:CBX_AUTO_MODE -' Entfernung svx:MetricField:RID_SVXPAGE_3DATTR:MTR_FLD_DISTANCE +' SegmenteH sym:svx:NumericField:RID_SVXPAGE_3DATTR:NUM_FLD_HORZ_SEGS +' SegmenteV sym:svx:NumericField:RID_SVXPAGE_3DATTR:NUM_FLD_VERT_SEGS +' Tiefe sym:svx:MetricField:RID_SVXPAGE_3DATTR:MTR_FLD_DEPTH +' Doppelseitig sym:svx:TriStateBox:RID_SVXPAGE_3DATTR:TSB_DOUBLE_SIDED +' ObjektGroesseAnpassen sym:svx:CheckBox:RID_SVXPAGE_3DATTR:CBX_AUTO_MODE +' Entfernung sym:svx:MetricField:RID_SVXPAGE_3DATTR:MTR_FLD_DISTANCE ' EntfernungsTyp HID_3DATTR_CTL_DISTANCE -' Brennweite svx:MetricField:RID_SVXPAGE_3DATTR:MTR_FLD_FOCAL_LENGTH +' Brennweite sym:svx:MetricField:RID_SVXPAGE_3DATTR:MTR_FLD_FOCAL_LENGTH ' BrennweiteTyp HID_3DATTR_CTL_FOCALLENGTH -*TabOptionen HID_OFAPAGE_AUTOCORR_OPTIONS -Einstellungen HID_OFAPAGE_AUTOCORR_CLB - -*TabOptionenAutokorrektur HID_OFAPAGE_AUTOFMT_OPTIONS -Einstellungen HID_OFAPAGE_AUTOFORMAT_CLB -Bearbeiten cui:PUSHBUTTON:RID_OFAPAGE_AUTOFMT_APPLY:PB_EDIT - -*TabOptionenTeilergebnisse HID_SCPAGE_SUBT_OPTIONS -NeueSeiteBeiGruppenwechsel sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK -GrossKleinschreibung sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE -BereichVorherNachSortieren sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT -FormateEinschliessen sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS -BenutzerdefinierteSortierreihenfolge sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_USERDEF -SortierreihenfolgeAnzeige SC:LISTBOX:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF -Aufsteigend sc:RadioButton:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING -Absteigend SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING - -*TabOptionenNumerierung HID_SVXPAGE_NUM_OPTIONS -Ebene cui:MULTILISTBOX:RID_SVXPAGE_NUM_OPTIONS:LB_LEVEL -Numerierung cui:LISTBOX:RID_SVXPAGE_NUM_OPTIONS:LB_FMT -Davor cui:EDIT:RID_SVXPAGE_NUM_OPTIONS:ED_PREFIX -Dahinter cui:EDIT:RID_SVXPAGE_NUM_OPTIONS:ED_SUFFIX -Zeichenvorlage cui:LISTBOX:RID_SVXPAGE_NUM_OPTIONS:LB_CHARFMT -Vollstaendig cui:NUMERICFIELD:RID_SVXPAGE_NUM_OPTIONS:NF_ALL_LEVEL -BeginnBei cui:NUMERICFIELD:RID_SVXPAGE_NUM_OPTIONS:ED_START -FortlaufeneNumerierung cui:CHECKBOX:RID_SVXPAGE_NUM_OPTIONS:CB_SAME_LEVEL -Zeichen cui:PUSHBUTTON:RID_SVXPAGE_NUM_OPTIONS:PB_BULLET -Auswahl cui:MENUBUTTON:RID_SVXPAGE_NUM_OPTIONS:MB_BITMAP -Breite cui:METRICFIELD:RID_SVXPAGE_NUM_OPTIONS:MF_WIDTH -Hoehe cui:METRICFIELD:RID_SVXPAGE_NUM_OPTIONS:MF_HEIGHT -Abgleich cui:CHECKBOX:RID_SVXPAGE_NUM_OPTIONS:CB_RATIO -Ausrichtung cui:LISTBOX:RID_SVXPAGE_NUM_OPTIONS:LB_ORIENT - -*TabHeaderFooterSlide HID_SD_TABPAGE_HEADERFOOTER_SLIDE -DateTime sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_DATETIME -DateTimeFixed sd:RadioButton:RID_SD_TABPAGE_HEADERFOOTER:RB_DATETIME_FIXED -DateTimeFixedText sd:Edit:RID_SD_TABPAGE_HEADERFOOTER:TB_DATETIME_FIXED -DateTimeVariable sd:RadioButton:RID_SD_TABPAGE_HEADERFOOTER:RB_DATETIME_AUTOMATIC -DateTimeFormat sd:ListBox:RID_SD_TABPAGE_HEADERFOOTER:CB_DATETIME_FORMAT -DateTimeLanguage sd:ListBox:RID_SD_TABPAGE_HEADERFOOTER:CB_DATETIME_LANGUAGE -Header sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_HEADER -HeaderFixedText sd:Edit:RID_SD_TABPAGE_HEADERFOOTER:TB_HEADER_FIXED -Footer sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_FOOTER -FooterFixedText sd:Edit:RID_SD_TABPAGE_HEADERFOOTER:TB_FOOTER_FIXED -Slidenumber sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_SLIDENUMBER -Donotshowonfirstslide sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_NOTONTITLE -Applytoall sd:PushButton:RID_SD_TABPAGE_HEADERFOOTER:BT_APPLYTOALL -Apply sd:PushButton:RID_SD_TABPAGE_HEADERFOOTER:BT_APPLY - -*TabHeaderFooterNotesHandout HID_SD_TABPAGE_HEADERFOOTER_NOTESHANDOUT -Header sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_HEADER -HeaderFixedText sd:Edit:RID_SD_TABPAGE_HEADERFOOTER:TB_HEADER_FIXED -DateTime sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_DATETIME -DateTimeFixed sd:RadioButton:RID_SD_TABPAGE_HEADERFOOTER:RB_DATETIME_FIXED -DateTimeFixedText sd:Edit:RID_SD_TABPAGE_HEADERFOOTER:TB_DATETIME_FIXED -DateTimeVariable sd:RadioButton:RID_SD_TABPAGE_HEADERFOOTER:RB_DATETIME_AUTOMATIC -DateTimeFormat sd:ListBox:RID_SD_TABPAGE_HEADERFOOTER:CB_DATETIME_FORMAT -DateTimeLanguage sd:ListBox:RID_SD_TABPAGE_HEADERFOOTER:CB_DATETIME_LANGUAGE -Footer sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_FOOTER -FooterFixedText sd:Edit:RID_SD_TABPAGE_HEADERFOOTER:TB_FOOTER_FIXED -Slidenumber sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_SLIDENUMBER -Donotshowonfirstslide sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_NOTONTITLE -Applytoall sd:PushButton:RID_SD_TABPAGE_HEADERFOOTER:BT_APPLYTOALL -Apply sd:PushButton:RID_SD_TABPAGE_HEADERFOOTER:BT_APPLY +*TabOptionen sym:CUI_HID_OFAPAGE_AUTOCORR_OPTIONS +Einstellungen sym:CUI_HID_OFAPAGE_AUTOCORR_CLB + +*TabOptionenAutokorrektur sym:CUI_HID_OFAPAGE_AUTOFMT_OPTIONS +Einstellungen sym:CUI_HID_OFAPAGE_AUTOFORMAT_CLB +Bearbeiten sym:cui:PushButton:RID_OFAPAGE_AUTOFMT_APPLY:PB_EDIT + +*TabOptionenTeilergebnisse sym:SC_HID_SCPAGE_SUBT_OPTIONS +NeueSeiteBeiGruppenwechsel sym:sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK +GrossKleinschreibung sym:sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE +BereichVorherNachSortieren sym:sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT +FormateEinschliessen sym:sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS +BenutzerdefinierteSortierreihenfolge sym:sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_USERDEF +SortierreihenfolgeAnzeige sym:sc:ListBox:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF +Aufsteigend sym:sc:RadioButton:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING +Absteigend sym:sc:RadioButton:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING + +*TabOptionenNumerierung sym:CUI_HID_SVXPAGE_NUM_OPTIONS +Ebene sym:cui:MultiListBox:RID_SVXPAGE_NUM_OPTIONS:LB_LEVEL +Numerierung sym:cui:ListBox:RID_SVXPAGE_NUM_OPTIONS:LB_FMT +Davor sym:cui:Edit:RID_SVXPAGE_NUM_OPTIONS:ED_PREFIX +Dahinter sym:cui:Edit:RID_SVXPAGE_NUM_OPTIONS:ED_SUFFIX +Zeichenvorlage sym:cui:ListBox:RID_SVXPAGE_NUM_OPTIONS:LB_CHARFMT +Vollstaendig sym:cui:NumericField:RID_SVXPAGE_NUM_OPTIONS:NF_ALL_LEVEL +BeginnBei sym:cui:NumericField:RID_SVXPAGE_NUM_OPTIONS:ED_START +FortlaufeneNumerierung sym:cui:CheckBox:RID_SVXPAGE_NUM_OPTIONS:CB_SAME_LEVEL +Zeichen sym:cui:PushButton:RID_SVXPAGE_NUM_OPTIONS:PB_BULLET +Auswahl sym:cui:MenuButton:RID_SVXPAGE_NUM_OPTIONS:MB_BITMAP +Breite sym:cui:MetricField:RID_SVXPAGE_NUM_OPTIONS:MF_WIDTH +Hoehe sym:cui:MetricField:RID_SVXPAGE_NUM_OPTIONS:MF_HEIGHT +Abgleich sym:cui:CheckBox:RID_SVXPAGE_NUM_OPTIONS:CB_RATIO +Ausrichtung sym:cui:ListBox:RID_SVXPAGE_NUM_OPTIONS:LB_ORIENT + +*TabHeaderFooterSlide sym:SD_HID_SD_TABPAGE_HEADERFOOTER_SLIDE +DateTime sym:sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_DATETIME +DateTimeFixed sym:sd:RadioButton:RID_SD_TABPAGE_HEADERFOOTER:RB_DATETIME_FIXED +DateTimeFixedText sym:sd:Edit:RID_SD_TABPAGE_HEADERFOOTER:TB_DATETIME_FIXED +DateTimeVariable sym:sd:RadioButton:RID_SD_TABPAGE_HEADERFOOTER:RB_DATETIME_AUTOMATIC +DateTimeFormat sym:sd:ListBox:RID_SD_TABPAGE_HEADERFOOTER:CB_DATETIME_FORMAT +DateTimeLanguage sym:sd:ListBox:RID_SD_TABPAGE_HEADERFOOTER:CB_DATETIME_LANGUAGE +Header sym:sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_HEADER +HeaderFixedText sym:sd:Edit:RID_SD_TABPAGE_HEADERFOOTER:TB_HEADER_FIXED +Footer sym:sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_FOOTER +FooterFixedText sym:sd:Edit:RID_SD_TABPAGE_HEADERFOOTER:TB_FOOTER_FIXED +Slidenumber sym:sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_SLIDENUMBER +Donotshowonfirstslide sym:sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_NOTONTITLE +Applytoall sym:sd:PushButton:RID_SD_TABPAGE_HEADERFOOTER:BT_APPLYTOALL +Apply sym:sd:PushButton:RID_SD_TABPAGE_HEADERFOOTER:BT_APPLY + +*TabHeaderFooterNotesHandout sym:SD_HID_SD_TABPAGE_HEADERFOOTER_NOTESHANDOUT +Header sym:sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_HEADER +HeaderFixedText sym:sd:Edit:RID_SD_TABPAGE_HEADERFOOTER:TB_HEADER_FIXED +DateTime sym:sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_DATETIME +DateTimeFixed sym:sd:RadioButton:RID_SD_TABPAGE_HEADERFOOTER:RB_DATETIME_FIXED +DateTimeFixedText sym:sd:Edit:RID_SD_TABPAGE_HEADERFOOTER:TB_DATETIME_FIXED +DateTimeVariable sym:sd:RadioButton:RID_SD_TABPAGE_HEADERFOOTER:RB_DATETIME_AUTOMATIC +DateTimeFormat sym:sd:ListBox:RID_SD_TABPAGE_HEADERFOOTER:CB_DATETIME_FORMAT +DateTimeLanguage sym:sd:ListBox:RID_SD_TABPAGE_HEADERFOOTER:CB_DATETIME_LANGUAGE +Footer sym:sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_FOOTER +FooterFixedText sym:sd:Edit:RID_SD_TABPAGE_HEADERFOOTER:TB_FOOTER_FIXED +Slidenumber sym:sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_SLIDENUMBER +Donotshowonfirstslide sym:sd:CheckBox:RID_SD_TABPAGE_HEADERFOOTER:CB_NOTONTITLE +Applytoall sym:sd:PushButton:RID_SD_TABPAGE_HEADERFOOTER:BT_APPLYTOALL +Apply sym:sd:PushButton:RID_SD_TABPAGE_HEADERFOOTER:BT_APPLY diff --git a/testautomation/global/win/tab_p_s.win b/testautomation/global/win/tab_p_s.win index 5a51e737b471..6b720aa3272d 100755..100644 --- a/testautomation/global/win/tab_p_s.win +++ b/testautomation/global/win/tab_p_s.win @@ -1,287 +1,287 @@ -*TabPfade HID_OPTIONS_PATH -Standard cui:PushButton:RID_SFXPAGE_PATH:BTN_STANDARD -Bearbeiten cui:PUSHBUTTON:RID_SFXPAGE_PATH:BTN_PATH -Typ HID_OPTPATH_CTL_PATH +*TabPfade sym:CUI_HID_OPTIONS_PATH +Standard sym:cui:PushButton:RID_SFXPAGE_PATH:BTN_STANDARD +Bearbeiten sym:cui:PushButton:RID_SFXPAGE_PATH:BTN_PATH +Typ sym:CUI_HID_OPTPATH_CTL_PATH -*TabPositionNumerierung HID_SVXPAGE_NUM_POSITION -Level cui:MULTILISTBOX:RID_SVXPAGE_NUM_POSITION:LB_LEVEL -Alignment cui:ListBox:RID_SVXPAGE_NUM_POSITION:LB_ALIGN_2 -NumberFollowedBy cui:ListBox:RID_SVXPAGE_NUM_POSITION:LB_LABEL_FOLLOWED_BY -NumberFollowedByAt cui:MetricField:RID_SVXPAGE_NUM_POSITION:MF_LISTTAB -AlignedAt cui:MetricField:RID_SVXPAGE_NUM_POSITION:MF_ALIGNED_AT -IndentAt cui:MetricField:RID_SVXPAGE_NUM_POSITION:MF_INDENT_AT -Ausrichtung cui:LISTBOX:RID_SVXPAGE_NUM_POSITION:LB_ALIGN -AbstandTextNumerierung cui:METRICFIELD:RID_SVXPAGE_NUM_POSITION:MF_NUMDIST -Relativ cui:CHECKBOX:RID_SVXPAGE_NUM_POSITION:CB_RELATIVE -Standard cui:PUSHBUTTON:RID_SVXPAGE_NUM_POSITION:PB_STANDARD +*TabPositionNumerierung sym:CUI_HID_SVXPAGE_NUM_POSITION +Level sym:cui:MultiListBox:RID_SVXPAGE_NUM_POSITION:LB_LEVEL +Alignment sym:cui:ListBox:RID_SVXPAGE_NUM_POSITION:LB_ALIGN_2 +NumberFollowedBy sym:cui:ListBox:RID_SVXPAGE_NUM_POSITION:LB_LABEL_FOLLOWED_BY +NumberFollowedByAt sym:cui:MetricField:RID_SVXPAGE_NUM_POSITION:MF_LISTTAB +AlignedAt sym:cui:MetricField:RID_SVXPAGE_NUM_POSITION:MF_ALIGNED_AT +IndentAt sym:cui:MetricField:RID_SVXPAGE_NUM_POSITION:MF_INDENT_AT +Ausrichtung sym:cui:ListBox:RID_SVXPAGE_NUM_POSITION:LB_ALIGN +AbstandTextNumerierung sym:cui:MetricField:RID_SVXPAGE_NUM_POSITION:MF_NUMDIST +Relativ sym:cui:CheckBox:RID_SVXPAGE_NUM_POSITION:CB_RELATIVE +Standard sym:cui:PushButton:RID_SVXPAGE_NUM_POSITION:PB_STANDARD -*TabPositionKapitelnumerierung HID_NUM_POSITION -Level sw:MULTILISTBOX:TP_NUM_POSITION:LB_LEVEL -NumberAlignment sw:LISTBOX:TP_NUM_POSITION:LB_ALIGN -AlignedAt sw:METRICFIELD:TP_NUM_POSITION:MF_BORDERDIST -AbstandTextNumerierung sw:METRICFIELD:TP_NUM_POSITION:MF_NUMDIST -IndentAt sw:METRICFIELD:TP_NUM_POSITION:MF_INDENT -Relativ sw:CHECKBOX:TP_NUM_POSITION:CB_RELATIVE -Standard sw:PUSHBUTTON:TP_NUM_POSITION:PB_STANDARD -LabelFollowedBy sw:ListBox:TP_NUM_POSITION:LB_LABEL_FOLLOWED_BY -AbstandTextNumerierung2 sw:MetricField:TP_NUM_POSITION:MF_LISTTAB -NumberingAlignment sw:ListBox:TP_NUM_POSITION:LB_ALIGN_2 -AlignedAt2 sw:MetricField:TP_NUM_POSITION:MF_ALIGNED_AT -IndentAt2 sw:MetricField:TP_NUM_POSITION:MF_INDENT_AT +*TabPositionKapitelnumerierung sym:SW_HID_NUM_POSITION +Level sym:sw:MultiListBox:TP_NUM_POSITION:LB_LEVEL +NumberAlignment sym:sw:ListBox:TP_NUM_POSITION:LB_ALIGN +AlignedAt sym:sw:MetricField:TP_NUM_POSITION:MF_BORDERDIST +AbstandTextNumerierung sym:sw:MetricField:TP_NUM_POSITION:MF_NUMDIST +IndentAt sym:sw:MetricField:TP_NUM_POSITION:MF_INDENT +Relativ sym:sw:CheckBox:TP_NUM_POSITION:CB_RELATIVE +Standard sym:sw:PushButton:TP_NUM_POSITION:PB_STANDARD +LabelFollowedBy sym:sw:ListBox:TP_NUM_POSITION:LB_LABEL_FOLLOWED_BY +AbstandTextNumerierung2 sym:sw:MetricField:TP_NUM_POSITION:MF_LISTTAB +NumberingAlignment sym:sw:ListBox:TP_NUM_POSITION:LB_ALIGN_2 +AlignedAt2 sym:sw:MetricField:TP_NUM_POSITION:MF_ALIGNED_AT +IndentAt2 sym:sw:MetricField:TP_NUM_POSITION:MF_INDENT_AT -*TabPrivat HID_TP_PRIVATE_DATA -Vorname sw:Edit:TP_PRIVATE_DATA:ED_FIRSTNAME -Nachname sw:Edit:TP_PRIVATE_DATA:ED_NAME -Kuerzel sw:Edit:TP_PRIVATE_DATA:ED_SHORTCUT -Strasse sw:Edit:TP_PRIVATE_DATA:ED_STREET -PLZ sw:Edit:TP_PRIVATE_DATA:ED_ZIP -Ort sw:Edit:TP_PRIVATE_DATA:ED_CITY -Land sw:Edit:TP_PRIVATE_DATA:ED_COUNTRY -Bundesland sw:Edit:TP_PRIVATE_DATA:ED_STATE -Titel sw:Edit:TP_PRIVATE_DATA:ED_TITLE -Beruf sw:Edit:TP_PRIVATE_DATA:ED_PROFESSION -Telefon sw:Edit:TP_PRIVATE_DATA:ED_PHONE -Handy sw:Edit:TP_PRIVATE_DATA:ED_MOBILE -Fax sw:Edit:TP_PRIVATE_DATA:ED_FAX -Homepage sw:Edit:TP_PRIVATE_DATA:ED_WWW -Email sw:Edit:TP_PRIVATE_DATA:ED_MAIL +*TabPrivat sym:SW_HID_TP_PRIVATE_DATA +Vorname sym:sw:Edit:TP_PRIVATE_DATA:ED_FIRSTNAME +Nachname sym:sw:Edit:TP_PRIVATE_DATA:ED_NAME +Kuerzel sym:sw:Edit:TP_PRIVATE_DATA:ED_SHORTCUT +Strasse sym:sw:Edit:TP_PRIVATE_DATA:ED_STREET +PLZ sym:sw:Edit:TP_PRIVATE_DATA:ED_ZIP +Ort sym:sw:Edit:TP_PRIVATE_DATA:ED_CITY +Land sym:sw:Edit:TP_PRIVATE_DATA:ED_COUNTRY +Bundesland sym:sw:Edit:TP_PRIVATE_DATA:ED_STATE +Titel sym:sw:Edit:TP_PRIVATE_DATA:ED_TITLE +Beruf sym:sw:Edit:TP_PRIVATE_DATA:ED_PROFESSION +Telefon sym:sw:Edit:TP_PRIVATE_DATA:ED_PHONE +Handy sym:sw:Edit:TP_PRIVATE_DATA:ED_MOBILE +Fax sym:sw:Edit:TP_PRIVATE_DATA:ED_FAX +Homepage sym:sw:Edit:TP_PRIVATE_DATA:ED_WWW +Email sym:sw:Edit:TP_PRIVATE_DATA:ED_MAIL -*TabRaster HID_OPTIONS_GRID -FangrasterBenutzen svx:CheckBox:RID_SVXPAGE_GRID:CBX_USE_GRIDSNAP -RasterSichtbar svx:CheckBox:RID_SVXPAGE_GRID:CBX_GRID_VISIBLE -FangenFangbereich svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_SNAP_AREA -AchsenSynchronisieren svx:CheckBox:RID_SVXPAGE_GRID:CBX_SYNCHRONIZE -RasterAufloesungXAchse svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_DRAW_X -RasterAufloesungYAchse svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_DRAW_Y -RasterUnterteilungXAchse svx:NumericField:RID_SVXPAGE_GRID:NUM_FLD_DIVISION_X -RasterUnterteilungYAchse svx:NumericField:RID_SVXPAGE_GRID:NUM_FLD_DIVISION_Y -AnFanglinien svx:CheckBox:RID_SVXPAGE_GRID:CBX_SNAP_HELPLINES -AnSeitenraendern svx:CheckBox:RID_SVXPAGE_GRID:CBX_SNAP_BORDER -AmObjektrahmen svx:CheckBox:RID_SVXPAGE_GRID:CBX_SNAP_FRAME -AnObjektpunkten svx:CheckBox:RID_SVXPAGE_GRID:CBX_SNAP_POINTS -BeimErzeugenUndBewegen svx:CheckBox:RID_SVXPAGE_GRID:CBX_ORTHO -LaengereKantenlaenge svx:CheckBox:RID_SVXPAGE_GRID:CBX_BIGORTHO -BeimDrehen svx:CheckBox:RID_SVXPAGE_GRID:CBX_ROTATE -Punktreduktion svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_BEZ_ANGLE -Winkel svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_ANGLE +*TabRaster sym:SVX_HID_OPTIONS_GRID +FangrasterBenutzen sym:svx:CheckBox:RID_SVXPAGE_GRID:CBX_USE_GRIDSNAP +RasterSichtbar sym:svx:CheckBox:RID_SVXPAGE_GRID:CBX_GRID_VISIBLE +FangenFangbereich sym:svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_SNAP_AREA +AchsenSynchronisieren sym:svx:CheckBox:RID_SVXPAGE_GRID:CBX_SYNCHRONIZE +RasterAufloesungXAchse sym:svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_DRAW_X +RasterAufloesungYAchse sym:svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_DRAW_Y +RasterUnterteilungXAchse sym:svx:NumericField:RID_SVXPAGE_GRID:NUM_FLD_DIVISION_X +RasterUnterteilungYAchse sym:svx:NumericField:RID_SVXPAGE_GRID:NUM_FLD_DIVISION_Y +AnFanglinien sym:svx:CheckBox:RID_SVXPAGE_GRID:CBX_SNAP_HELPLINES +AnSeitenraendern sym:svx:CheckBox:RID_SVXPAGE_GRID:CBX_SNAP_BORDER +AmObjektrahmen sym:svx:CheckBox:RID_SVXPAGE_GRID:CBX_SNAP_FRAME +AnObjektpunkten sym:svx:CheckBox:RID_SVXPAGE_GRID:CBX_SNAP_POINTS +BeimErzeugenUndBewegen sym:svx:CheckBox:RID_SVXPAGE_GRID:CBX_ORTHO +LaengereKantenlaenge sym:svx:CheckBox:RID_SVXPAGE_GRID:CBX_BIGORTHO +BeimDrehen sym:svx:CheckBox:RID_SVXPAGE_GRID:CBX_ROTATE +Punktreduktion sym:svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_BEZ_ANGLE +Winkel sym:svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_ANGLE -*TabReferenzen HID_FLD_REF -Feldtyp SW:LISTBOX:TP_FLD_REF:LB_REFTYPE -Auswahl SW:LISTBOX:TP_FLD_REF:LB_REFSELECTION -Formatliste SW:LISTBOX:TP_FLD_REF:LB_REFFORMAT -Namefeld SW:EDIT:TP_FLD_REF:ED_REFNAME -Wert SW:EDIT:TP_FLD_REF:ED_REFVALUE -Einfuegen HID_FIELD_INSERT -Schliessen HID_FIELD_CLOSE +*TabReferenzen sym:SW_HID_FLD_REF +Feldtyp sym:sw:ListBox:TP_FLD_REF:LB_REFTYPE +Auswahl sym:sw:ListBox:TP_FLD_REF:LB_REFSELECTION +Formatliste sym:sw:ListBox:TP_FLD_REF:LB_REFFORMAT +Namefeld sym:sw:Edit:TP_FLD_REF:ED_REFNAME +Wert sym:sw:Edit:TP_FLD_REF:ED_REFVALUE +Einfuegen sym:SW_HID_FIELD_INSERT +Schliessen sym:SW_HID_FIELD_CLOSE -*TabSchatten HID_AREA_SHADOW -Anzeigen cui:TriStateBox:RID_SVXPAGE_SHADOW:TSB_SHOW_SHADOW -Position HID_TPSHADOW_CTRL -Entfernung cui:MetricField:RID_SVXPAGE_SHADOW:MTR_FLD_DISTANCE -Farbe cui:ListBox:RID_SVXPAGE_SHADOW:LB_SHADOW_COLOR -Transparenz cui:MetricField:RID_SVXPAGE_SHADOW:MTR_SHADOW_TRANSPARENT +*TabSchatten sym:CUI_HID_AREA_SHADOW +Anzeigen sym:cui:TriStateBox:RID_SVXPAGE_SHADOW:TSB_SHOW_SHADOW +Position sym:CUI_HID_TPSHADOW_CTRL +Entfernung sym:cui:MetricField:RID_SVXPAGE_SHADOW:MTR_FLD_DISTANCE +Farbe sym:cui:ListBox:RID_SVXPAGE_SHADOW:LB_SHADOW_COLOR +Transparenz sym:cui:MetricField:RID_SVXPAGE_SHADOW:MTR_SHADOW_TRANSPARENT -*TabSchraegstellen HID_TRANS_SLANT -Radius cui:MetricField:RID_SVXPAGE_SLANT:MTR_FLD_RADIUS -Winkel cui:MetricField:RID_SVXPAGE_SLANT:MTR_FLD_ANGLE +*TabSchraegstellen sym:CUI_HID_TRANS_SLANT +Radius sym:cui:MetricField:RID_SVXPAGE_SLANT:MTR_FLD_RADIUS +Winkel sym:cui:MetricField:RID_SVXPAGE_SLANT:MTR_FLD_ANGLE -*TabSchraffuren HID_AREA_HATCH -Abstand cui:MetricField:RID_SVXPAGE_HATCH:MTR_FLD_DISTANCE -Winkel cui:MetricField:RID_SVXPAGE_HATCH:MTR_FLD_ANGLE -Definition HID_TPHATCH_CTRL -Linientyp cui:ListBox:RID_SVXPAGE_HATCH:LB_LINE_TYPE -Linienfarbe cui:ListBox:RID_SVXPAGE_HATCH:LB_LINE_COLOR -Tabelle cui:ListBox:RID_SVXPAGE_HATCH:LB_HATCHINGS -Hinzufuegen cui:PushButton:RID_SVXPAGE_HATCH:BTN_ADD -Aendern cui:PushButton:RID_SVXPAGE_HATCH:BTN_MODIFY -Loeschen cui:PushButton:RID_SVXPAGE_HATCH:BTN_DELETE -Oeffnen cui:ImageButton:RID_SVXPAGE_HATCH:BTN_LOAD -Speichern cui:ImageButton:RID_SVXPAGE_HATCH:BTN_SAVE +*TabSchraffuren sym:CUI_HID_AREA_HATCH +Abstand sym:cui:MetricField:RID_SVXPAGE_HATCH:MTR_FLD_DISTANCE +Winkel sym:cui:MetricField:RID_SVXPAGE_HATCH:MTR_FLD_ANGLE +Definition sym:CUI_HID_TPHATCH_CTRL +Linientyp sym:cui:ListBox:RID_SVXPAGE_HATCH:LB_LINE_TYPE +Linienfarbe sym:cui:ListBox:RID_SVXPAGE_HATCH:LB_LINE_COLOR +Tabelle sym:cui:ListBox:RID_SVXPAGE_HATCH:LB_HATCHINGS +Hinzufuegen sym:cui:PushButton:RID_SVXPAGE_HATCH:BTN_ADD +Aendern sym:cui:PushButton:RID_SVXPAGE_HATCH:BTN_MODIFY +Loeschen sym:cui:PushButton:RID_SVXPAGE_HATCH:BTN_DELETE +Oeffnen sym:cui:ImageButton:RID_SVXPAGE_HATCH:BTN_LOAD +Speichern sym:cui:ImageButton:RID_SVXPAGE_HATCH:BTN_SAVE -*TabSchriftErsetzung HID_OFA_FONT_SUBSTITUTION -Anwenden cui:CheckBox:RID_SVX_FONT_SUBSTITUTION:CB_USETABLE -Schriftart cui:ComboBox:RID_SVX_FONT_SUBSTITUTION:CB_FONT1 -Liste HID_OFA_FONT_SUBST_CLB -ErsetzenDurch cui:ComboBox:RID_SVX_FONT_SUBSTITUTION:CB_FONT2 -Uebernehmen HID_OFA_SUBST_APPLY -Loeschen HID_OFA_SUBST_DELETE -Fonts cui:ListBox:RID_SVX_FONT_SUBSTITUTION:LB_FONTNAME -NonProportional cui:CheckBox:RID_SVX_FONT_SUBSTITUTION:CB_NONPROP -Size cui:ListBox:RID_SVX_FONT_SUBSTITUTION:LB_FONTHEIGHT +*TabSchriftErsetzung sym:CUI_HID_OFA_FONT_SUBSTITUTION +Anwenden sym:cui:CheckBox:RID_SVX_FONT_SUBSTITUTION:CB_USETABLE +Schriftart sym:cui:ComboBox:RID_SVX_FONT_SUBSTITUTION:CB_FONT1 +Liste sym:CUI_HID_OFA_FONT_SUBST_CLB +ErsetzenDurch sym:cui:ComboBox:RID_SVX_FONT_SUBSTITUTION:CB_FONT2 +Uebernehmen sym:CUI_HID_OFA_SUBST_APPLY +Loeschen sym:CUI_HID_OFA_SUBST_DELETE +Fonts sym:cui:ListBox:RID_SVX_FONT_SUBSTITUTION:LB_FONTNAME +NonProportional sym:cui:CheckBox:RID_SVX_FONT_SUBSTITUTION:CB_NONPROP +Size sym:cui:ListBox:RID_SVX_FONT_SUBSTITUTION:LB_FONTHEIGHT -*TabSeite HID_FORMAT_PAGE -Links cui:MetricField:RID_SVXPAGE_PAGE:ED_LEFT_MARGIN -Rechts cui:MetricField:RID_SVXPAGE_PAGE:ED_RIGHT_MARGIN -Oben cui:MetricField:RID_SVXPAGE_PAGE:ED_TOP_MARGIN -Unten cui:MetricField:RID_SVXPAGE_PAGE:ED_BOTTOM_MARGIN -Seitenlayout cui:ListBox:RID_SVXPAGE_PAGE:LB_LAYOUT -Numerierung cui:ListBox:RID_SVXPAGE_PAGE:LB_NUMBER_FORMAT -Papierformat cui:ListBox:RID_SVXPAGE_PAGE:LB_PAPER_SIZE -Breite cui:MetricField:RID_SVXPAGE_PAGE:ED_PAPER_WIDTH -Hoehe cui:MetricField:RID_SVXPAGE_PAGE:ED_PAPER_HEIGHT -Schacht cui:ListBox:RID_SVXPAGE_PAGE:LB_PAPER_TRAY -Horizontal cui:CheckBox:RID_SVXPAGE_PAGE:CB_HORZ -Vertikal cui:CheckBox:RID_SVXPAGE_PAGE:CB_VERT -Hoch cui:RadioButton:RID_SVXPAGE_PAGE:RB_PORTRAIT -Quer cui:RadioButton:RID_SVXPAGE_PAGE:RB_LANDSCAPE -Einschalten cui:CHECKBOX:RID_SVXPAGE_PAGE:CB_REGISTER -AbsatzVorlage cui:LISTBOX:RID_SVXPAGE_PAGE:LB_REGISTER -Textfluss cui:ListBox:RID_SVXPAGE_PAGE:LB_TEXT_FLOW -FitObject cui:CheckBox:RID_SVXPAGE_PAGE:CB_ADAPT +*TabSeite sym:CUI_HID_FORMAT_PAGE +Links sym:cui:MetricField:RID_SVXPAGE_PAGE:ED_LEFT_MARGIN +Rechts sym:cui:MetricField:RID_SVXPAGE_PAGE:ED_RIGHT_MARGIN +Oben sym:cui:MetricField:RID_SVXPAGE_PAGE:ED_TOP_MARGIN +Unten sym:cui:MetricField:RID_SVXPAGE_PAGE:ED_BOTTOM_MARGIN +Seitenlayout sym:cui:ListBox:RID_SVXPAGE_PAGE:LB_LAYOUT +Numerierung sym:cui:ListBox:RID_SVXPAGE_PAGE:LB_NUMBER_FORMAT +Papierformat sym:cui:ListBox:RID_SVXPAGE_PAGE:LB_PAPER_SIZE +Breite sym:cui:MetricField:RID_SVXPAGE_PAGE:ED_PAPER_WIDTH +Hoehe sym:cui:MetricField:RID_SVXPAGE_PAGE:ED_PAPER_HEIGHT +Schacht sym:cui:ListBox:RID_SVXPAGE_PAGE:LB_PAPER_TRAY +Horizontal sym:cui:CheckBox:RID_SVXPAGE_PAGE:CB_HORZ +Vertikal sym:cui:CheckBox:RID_SVXPAGE_PAGE:CB_VERT +Hoch sym:cui:RadioButton:RID_SVXPAGE_PAGE:RB_PORTRAIT +Quer sym:cui:RadioButton:RID_SVXPAGE_PAGE:RB_LANDSCAPE +Einschalten sym:cui:CheckBox:RID_SVXPAGE_PAGE:CB_REGISTER +AbsatzVorlage sym:cui:ListBox:RID_SVXPAGE_PAGE:LB_REGISTER +Textfluss sym:cui:ListBox:RID_SVXPAGE_PAGE:LB_TEXT_FLOW +FitObject sym:cui:CheckBox:RID_SVXPAGE_PAGE:CB_ADAPT -*TabSonstigesAllgemein HID_OFA_TP_MISC -Zweistellig cui:NumericField:OFA_TP_MISC:NF_YEARVALUE -Aktivieren cui:CheckBox:OFA_TP_MISC:CB_HELPAGENT -Zuruecksetzen cui:PushButton:OFA_TP_MISC:PB_HELPAGENT_RESET -Tips cui:CheckBox:OFA_TP_MISC:CB_TOOLTIP -ExtendedTips cui:CheckBox:OFA_TP_MISC:CB_EXTHELP -StarOfficeDialogeBenutzen cui:CheckBox:OFA_TP_MISC:CB_FILEDLG -DruckenStatus cui:CheckBox:OFA_TP_MISC:CB_DOCSTATUS -StyleSheet cui:ListBox:OFA_TP_MISC:LB_HELPFORMAT +*TabSonstigesAllgemein sym:CUI_HID_OFA_TP_MISC +Zweistellig sym:cui:NumericField:OFA_TP_MISC:NF_YEARVALUE +Aktivieren sym:cui:CheckBox:OFA_TP_MISC:CB_HELPAGENT +Zuruecksetzen sym:cui:PushButton:OFA_TP_MISC:PB_HELPAGENT_RESET +Tips sym:cui:CheckBox:OFA_TP_MISC:CB_TOOLTIP +ExtendedTips sym:cui:CheckBox:OFA_TP_MISC:CB_EXTHELP +StarOfficeDialogeBenutzen sym:cui:CheckBox:OFA_TP_MISC:CB_FILEDLG +DruckenStatus sym:cui:CheckBox:OFA_TP_MISC:CB_DOCSTATUS +StyleSheet sym:cui:ListBox:OFA_TP_MISC:LB_HELPFORMAT -*TabSonstigesDraw HID_SD_OPTIONS_MISC -Schnellbearbeitung SD:CHECKBOX:TP_OPTIONS_MISC:CBX_QUICKEDIT -TextbereichSelektierbar SD:CHECKBOX:TP_OPTIONS_MISC:CBX_PICKTHROUGH -SeitenlayoutdialogZeigen SD:CHECKBOX:TP_OPTIONS_MISC:CBX_START_WITH_TEMPLATE -CacheFuerHintergrund SD:CHECKBOX:TP_OPTIONS_MISC:CBX_MASTERPAGE_CACHE -KopieBeimVerschieben SD:CHECKBOX:TP_OPTIONS_MISC:CBX_COPY -ObjekteImmerVerschiebbar SD:CHECKBOX:TP_OPTIONS_MISC:CBX_MARKED_HIT_MOVES_ALWAYS -SetzenAufKreis SD:CHECKBOX:TP_OPTIONS_MISC:CBX_CROOK_NO_CONTORTION -MitAktuellerSeite SD:CHECKBOX:TP_OPTIONS_MISC:CBX_START_WITH_ACTUAL_PAGE -Praesentationsdialoge SD:CHECKBOX:TP_OPTIONS_MISC:CBX_START_WITH_TEMPLATE -MitAutopilotStarten sd:CheckBox:TP_OPTIONS_MISC:CBX_START_WITH_TEMPLATE -Masseinheit sd:ListBox:TP_OPTIONS_MISC:LB_METRIC -Tabulatorabstand sd:MetricField:TP_OPTIONS_MISC:MTR_FLD_TABSTOP -AlleAbsatzabstaendeAddieren sd:CheckBox:TP_OPTIONS_MISC:CB_MERGE_PARA_DIST -Zeichnungsmasstab sd:ComboBox:TP_OPTIONS_MISC:CB_SCALE -Originalbreite sd:MetricField:TP_OPTIONS_MISC:MTR_FLD_ORIGINAL_WIDTH -Originalhoehe sd:MetricField:TP_OPTIONS_MISC:MTR_FLD_ORIGINAL_HEIGHT -UsePrinterMetrics sd:CheckBox:TP_OPTIONS_MISC:CB_USE_PRINTER_METRICS +*TabSonstigesDraw sym:SD_HID_SD_OPTIONS_MISC +Schnellbearbeitung sym:sd:CheckBox:TP_OPTIONS_MISC:CBX_QUICKEDIT +TextbereichSelektierbar sym:sd:CheckBox:TP_OPTIONS_MISC:CBX_PICKTHROUGH +SeitenlayoutdialogZeigen sym:sd:CheckBox:TP_OPTIONS_MISC:CBX_START_WITH_TEMPLATE +CacheFuerHintergrund sym:sd:CheckBox:TP_OPTIONS_MISC:CBX_MASTERPAGE_CACHE +KopieBeimVerschieben sym:sd:CheckBox:TP_OPTIONS_MISC:CBX_COPY +ObjekteImmerVerschiebbar sym:sd:CheckBox:TP_OPTIONS_MISC:CBX_MARKED_HIT_MOVES_ALWAYS +SetzenAufKreis sym:sd:CheckBox:TP_OPTIONS_MISC:CBX_CROOK_NO_CONTORTION +MitAktuellerSeite sym:sd:CheckBox:TP_OPTIONS_MISC:CBX_START_WITH_ACTUAL_PAGE +Praesentationsdialoge sym:sd:CheckBox:TP_OPTIONS_MISC:CBX_START_WITH_TEMPLATE +MitAutopilotStarten sym:sd:CheckBox:TP_OPTIONS_MISC:CBX_START_WITH_TEMPLATE +Masseinheit sym:sd:ListBox:TP_OPTIONS_MISC:LB_METRIC +Tabulatorabstand sym:sd:MetricField:TP_OPTIONS_MISC:MTR_FLD_TABSTOP +AlleAbsatzabstaendeAddieren sym:sd:CheckBox:TP_OPTIONS_MISC:CB_MERGE_PARA_DIST +Zeichnungsmasstab sym:sd:ComboBox:TP_OPTIONS_MISC:CB_SCALE +Originalbreite sym:sd:MetricField:TP_OPTIONS_MISC:MTR_FLD_ORIGINAL_WIDTH +Originalhoehe sym:sd:MetricField:TP_OPTIONS_MISC:MTR_FLD_ORIGINAL_HEIGHT +UsePrinterMetrics sym:sd:CheckBox:TP_OPTIONS_MISC:CB_USE_PRINTER_METRICS +TabSonstigesWriter TabLaden -*TabSortierkriterien HID_SCPAGE_SORT_FIELDS -SortierenNach sc:ListBox:RID_SCPAGE_SORT_FIELDS:LB_SORT1 -AnschliessendNach1 sc:ListBox:RID_SCPAGE_SORT_FIELDS:LB_SORT2 -AnschliessendNach2 sc:ListBox:RID_SCPAGE_SORT_FIELDS:LB_SORT3 -Aufsteigend1 sc:RadioButton:RID_SCPAGE_SORT_FIELDS:BTN_UP1 -Absteigend1 sc:RadioButton:RID_SCPAGE_SORT_FIELDS:BTN_DOWN1 -Aufsteigend2 sc:RadioButton:RID_SCPAGE_SORT_FIELDS:BTN_UP2 -Absteigend2 sc:RadioButton:RID_SCPAGE_SORT_FIELDS:BTN_DOWN2 -Aufsteigend3 sc:RadioButton:RID_SCPAGE_SORT_FIELDS:BTN_UP3 -Absteigend3 sc:RadioButton:RID_SCPAGE_SORT_FIELDS:BTN_DOWN3 +*TabSortierkriterien sym:SC_HID_SCPAGE_SORT_FIELDS +SortierenNach sym:sc:ListBox:RID_SCPAGE_SORT_FIELDS:LB_SORT1 +AnschliessendNach1 sym:sc:ListBox:RID_SCPAGE_SORT_FIELDS:LB_SORT2 +AnschliessendNach2 sym:sc:ListBox:RID_SCPAGE_SORT_FIELDS:LB_SORT3 +Aufsteigend1 sym:sc:RadioButton:RID_SCPAGE_SORT_FIELDS:BTN_UP1 +Absteigend1 sym:sc:RadioButton:RID_SCPAGE_SORT_FIELDS:BTN_DOWN1 +Aufsteigend2 sym:sc:RadioButton:RID_SCPAGE_SORT_FIELDS:BTN_UP2 +Absteigend2 sym:sc:RadioButton:RID_SCPAGE_SORT_FIELDS:BTN_DOWN2 +Aufsteigend3 sym:sc:RadioButton:RID_SCPAGE_SORT_FIELDS:BTN_UP3 +Absteigend3 sym:sc:RadioButton:RID_SCPAGE_SORT_FIELDS:BTN_DOWN3 -*TabSortierlisten HID_SCPAGE_USERLISTS -Listen sc:ListBox:RID_SCPAGE_USERLISTS:LB_LISTS -Eintraege sc:MultiLineEdit:RID_SCPAGE_USERLISTS:ED_ENTRIES -ListeKopierenAus sc:Edit:RID_SCPAGE_USERLISTS:ED_COPYFROM -Neu sc:PushButton:RID_SCPAGE_USERLISTS:BTN_NEW -Loeschen sc:PushButton:RID_SCPAGE_USERLISTS:BTN_REMOVE -Kopieren sc:PushButton:RID_SCPAGE_USERLISTS:BTN_COPY -Aendern sc:PushButton:RID_SCPAGE_USERLISTS:BTN_ADD -Abbruch sc:PushButton:RID_SCPAGE_USERLISTS:BTN_NEW +*TabSortierlisten sym:SC_HID_SCPAGE_USERLISTS +Listen sym:sc:ListBox:RID_SCPAGE_USERLISTS:LB_LISTS +Eintraege sym:sc:MultiLineEdit:RID_SCPAGE_USERLISTS:ED_ENTRIES +ListeKopierenAus sym:sc:Edit:RID_SCPAGE_USERLISTS:ED_COPYFROM +Neu sym:sc:PushButton:RID_SCPAGE_USERLISTS:BTN_NEW +Loeschen sym:sc:PushButton:RID_SCPAGE_USERLISTS:BTN_REMOVE +Kopieren sym:sc:PushButton:RID_SCPAGE_USERLISTS:BTN_COPY +Aendern sym:sc:PushButton:RID_SCPAGE_USERLISTS:BTN_ADD +Abbruch sym:sc:PushButton:RID_SCPAGE_USERLISTS:BTN_NEW -*TabSortierenOptionen HID_SCPAGE_SORT_OPTIONS -GrossKleinschreibungBeachten sc:CheckBox:RID_SCPAGE_SORT_OPTIONS:BTN_CASESENSITIVE -BereichEnthaeltSpaltenkoepfe sc:CheckBox:RID_SCPAGE_SORT_OPTIONS:BTN_LABEL -FormateEinschliessen sc:CheckBox:RID_SCPAGE_SORT_OPTIONS:BTN_FORMATS -SortierergebnisseAusgebenNach sc:CheckBox:RID_SCPAGE_SORT_OPTIONS:BTN_COPYRESULT -AusgabebereichName sc:ListBox:RID_SCPAGE_SORT_OPTIONS:LB_OUTAREA -AusgabebereichZellen sc:Edit:RID_SCPAGE_SORT_OPTIONS:ED_OUTAREA -BenutzerdefinierteSortierreihenfolge sc:CheckBox:RID_SCPAGE_SORT_OPTIONS:BTN_SORT_USER -SortierreihenfolgeListe SC:LISTBOX:RID_SCPAGE_SORT_OPTIONS:LB_SORT_USER -VonObenNachUnten sc:RadioButton:RID_SCPAGE_SORT_OPTIONS:BTN_TOP_DOWN -VonLinksNachRechts sc:RadioButton:RID_SCPAGE_SORT_OPTIONS:BTN_LEFT_RIGHT -Sprache sc:ListBox:RID_SCPAGE_SORT_OPTIONS:LB_LANGUAGE -Optionen sc:ListBox:RID_SCPAGE_SORT_OPTIONS:LB_ALGORITHM +*TabSortierenOptionen sym:SC_HID_SCPAGE_SORT_OPTIONS +GrossKleinschreibungBeachten sym:sc:CheckBox:RID_SCPAGE_SORT_OPTIONS:BTN_CASESENSITIVE +BereichEnthaeltSpaltenkoepfe sym:sc:CheckBox:RID_SCPAGE_SORT_OPTIONS:BTN_LABEL +FormateEinschliessen sym:sc:CheckBox:RID_SCPAGE_SORT_OPTIONS:BTN_FORMATS +SortierergebnisseAusgebenNach sym:sc:CheckBox:RID_SCPAGE_SORT_OPTIONS:BTN_COPYRESULT +AusgabebereichName sym:sc:ListBox:RID_SCPAGE_SORT_OPTIONS:LB_OUTAREA +AusgabebereichZellen sym:sc:Edit:RID_SCPAGE_SORT_OPTIONS:ED_OUTAREA +BenutzerdefinierteSortierreihenfolge sym:sc:CheckBox:RID_SCPAGE_SORT_OPTIONS:BTN_SORT_USER +SortierreihenfolgeListe sym:sc:ListBox:RID_SCPAGE_SORT_OPTIONS:LB_SORT_USER +VonObenNachUnten sym:sc:RadioButton:RID_SCPAGE_SORT_OPTIONS:BTN_TOP_DOWN +VonLinksNachRechts sym:sc:RadioButton:RID_SCPAGE_SORT_OPTIONS:BTN_LEFT_RIGHT +Sprache sym:sc:ListBox:RID_SCPAGE_SORT_OPTIONS:LB_LANGUAGE +Optionen sym:sc:ListBox:RID_SCPAGE_SORT_OPTIONS:LB_ALGORITHM -*TabSpalten HID_COLUMN -Anzahl sw:NumericField:TP_COLUMN:ED_NUMBER -ColumnValueset HID_COLUMN_VALUESET -BalanceColumns sw:CheckBox:TP_COLUMN:CB_BALANCECOLS -Spaltenbreite1 sw:MetricField:TP_COLUMN:ED_1 -Spaltenbreite2 sw:MetricField:TP_COLUMN:ED_2 -Spaltenbreite3 sw:MetricField:TP_COLUMN:ED_3 -Spaltenbreite4 sw:MetricField:TP_COLUMN:ED_1 -Spaltenbreite5 sw:MetricField:TP_COLUMN:ED_2 -Spaltenbreite6 sw:MetricField:TP_COLUMN:ED_3 -Spaltenbreite7 sw:MetricField:TP_COLUMN:ED_1 -Spaltenbreite8 sw:MetricField:TP_COLUMN:ED_2 -Spaltenbreite9 sw:MetricField:TP_COLUMN:ED_3 -Vor sw:ImageButton:TP_COLUMN:BTN_DOWN -Zurueck sw:ImageButton:TP_COLUMN:BTN_UP -Abstand12 sw:MetricField:TP_COLUMN:ED_DIST1 -Abstand23 sw:MetricField:TP_COLUMN:ED_DIST2 -Abstand34 sw:MetricField:TP_COLUMN:ED_DIST1 -Abstand45 sw:MetricField:TP_COLUMN:ED_DIST2 -Abstand56 sw:MetricField:TP_COLUMN:ED_DIST1 -Abstand67 sw:MetricField:TP_COLUMN:ED_DIST2 -Abstand78 sw:MetricField:TP_COLUMN:ED_DIST1 -Abstand89 sw:MetricField:TP_COLUMN:ED_DIST2 -AutomBreite sw:CheckBox:TP_COLUMN:CB_AUTO_WIDTH -Art sw:ListBox:TP_COLUMN:LB_STYLE -Hoehe sw:MetricField:TP_COLUMN:ED_HEIGHT -Position sw:ListBox:TP_COLUMN:LB_POSITION -TextDirection sw:ListBox:TP_COLUMN:LB_TEXTDIRECTION -Zuruecksetzen HID_TABDLG_RESET_BTN +*TabSpalten sym:SW_HID_COLUMN +Anzahl sym:sw:NumericField:TP_COLUMN:ED_NUMBER +ColumnValueset sym:SW_HID_COLUMN_VALUESET +BalanceColumns sym:sw:CheckBox:TP_COLUMN:CB_BALANCECOLS +Spaltenbreite1 sym:sw:MetricField:TP_COLUMN:ED_1 +Spaltenbreite2 sym:sw:MetricField:TP_COLUMN:ED_2 +Spaltenbreite3 sym:sw:MetricField:TP_COLUMN:ED_3 +Spaltenbreite4 sym:sw:MetricField:TP_COLUMN:ED_1 +Spaltenbreite5 sym:sw:MetricField:TP_COLUMN:ED_2 +Spaltenbreite6 sym:sw:MetricField:TP_COLUMN:ED_3 +Spaltenbreite7 sym:sw:MetricField:TP_COLUMN:ED_1 +Spaltenbreite8 sym:sw:MetricField:TP_COLUMN:ED_2 +Spaltenbreite9 sym:sw:MetricField:TP_COLUMN:ED_3 +Vor sym:sw:ImageButton:TP_COLUMN:BTN_DOWN +Zurueck sym:sw:ImageButton:TP_COLUMN:BTN_UP +Abstand12 sym:sw:MetricField:TP_COLUMN:ED_DIST1 +Abstand23 sym:sw:MetricField:TP_COLUMN:ED_DIST2 +Abstand34 sym:sw:MetricField:TP_COLUMN:ED_DIST1 +Abstand45 sym:sw:MetricField:TP_COLUMN:ED_DIST2 +Abstand56 sym:sw:MetricField:TP_COLUMN:ED_DIST1 +Abstand67 sym:sw:MetricField:TP_COLUMN:ED_DIST2 +Abstand78 sym:sw:MetricField:TP_COLUMN:ED_DIST1 +Abstand89 sym:sw:MetricField:TP_COLUMN:ED_DIST2 +AutomBreite sym:sw:CheckBox:TP_COLUMN:CB_AUTO_WIDTH +Art sym:sw:ListBox:TP_COLUMN:LB_STYLE +Hoehe sym:sw:MetricField:TP_COLUMN:ED_HEIGHT +Position sym:sw:ListBox:TP_COLUMN:LB_POSITION +TextDirection sym:sw:ListBox:TP_COLUMN:LB_TEXTDIRECTION +Zuruecksetzen sym:SFX2_HID_TABDLG_RESET_BTN -*TabSpaltenTabelle HID_TABLE_COLUMN -BreiteAnpassen sw:CheckBox:TP_TABLE_COLUMN:CB_MOD_TBL -ProportionalAendern sw:CheckBox:TP_TABLE_COLUMN:CB_PROP -VerfuegbarerPlatz sw:MetricField:TP_TABLE_COLUMN:ED_SPACE -Spalte1 sw:MetricField:TP_TABLE_COLUMN:COL_MF_1 -Spalte2 sw:MetricField:TP_TABLE_COLUMN:COL_MF_2 -Spalte3 sw:MetricField:TP_TABLE_COLUMN:COL_MF_3 -Spalte4 sw:MetricField:TP_TABLE_COLUMN:COL_MF_4 -Spalte5 sw:MetricField:TP_TABLE_COLUMN:COL_MF_5 -Spalte6 sw:MetricField:TP_TABLE_COLUMN:COL_MF_6 -Zurueck sw:ImageButton:TP_TABLE_COLUMN:COL_BTN_DOWN -Weiter sw:ImageButton:TP_TABLE_COLUMN:COL_BTN_UP -Zuruecksetzen HID_TABDLG_RESET_BTN +*TabSpaltenTabelle sym:SW_HID_TABLE_COLUMN +BreiteAnpassen sym:sw:CheckBox:TP_TABLE_COLUMN:CB_MOD_TBL +ProportionalAendern sym:sw:CheckBox:TP_TABLE_COLUMN:CB_PROP +VerfuegbarerPlatz sym:sw:MetricField:TP_TABLE_COLUMN:ED_SPACE +Spalte1 sym:sw:MetricField:TP_TABLE_COLUMN:COL_MF_1 +Spalte2 sym:sw:MetricField:TP_TABLE_COLUMN:COL_MF_2 +Spalte3 sym:sw:MetricField:TP_TABLE_COLUMN:COL_MF_3 +Spalte4 sym:sw:MetricField:TP_TABLE_COLUMN:COL_MF_4 +Spalte5 sym:sw:MetricField:TP_TABLE_COLUMN:COL_MF_5 +Spalte6 sym:sw:MetricField:TP_TABLE_COLUMN:COL_MF_6 +Zurueck sym:sw:ImageButton:TP_TABLE_COLUMN:COL_BTN_DOWN +Weiter sym:sw:ImageButton:TP_TABLE_COLUMN:COL_BTN_UP +Zuruecksetzen sym:SFX2_HID_TABDLG_RESET_BTN -*TabSpeichern HID_OPTIONS_SAVE -BenutzerspezifischeEinstellungen cui:CheckBox:RID_SFXPAGE_SAVE:CB_LOAD_SETTINGS -DokumenteigenschaftenBearbeiten cui:CHECKBOX:RID_SFXPAGE_SAVE:BTN_DOCINFO -Sicherungskopie cui:CheckBox:RID_SFXPAGE_SAVE:BTN_BACKUP -AutomatischSpeichern cui:CheckBox:RID_SFXPAGE_SAVE:BTN_AUTOSAVE -Minuten cui:NUMERICFIELD:RID_SFXPAGE_SAVE:ED_AUTOSAVE -NoPrettyPrinting cui:CheckBox:RID_SFXPAGE_SAVE:BTN_NOPRETTYPRINTING -URLimDateisystem cui:CHECKBOX:RID_SFXPAGE_SAVE:BTN_RELATIVE_FSYS -URLimInternet cui:CHECKBOX:RID_SFXPAGE_SAVE:BTN_RELATIVE_INET -Dokumenttyp cui:ListBox:RID_SFXPAGE_SAVE:LB_APP -Filter cui:ListBox:RID_SFXPAGE_SAVE:LB_FILTER -WarnWhenSavingAlienFormat cui:CheckBox:RID_SFXPAGE_SAVE:BTN_WARNALIENFORMAT -LoadPrinterSettingsWithDocument cui:CheckBox:RID_SFXPAGE_SAVE:CB_LOAD_DOCPRINTER +*TabSpeichern sym:CUI_HID_OPTIONS_SAVE +BenutzerspezifischeEinstellungen sym:cui:CheckBox:RID_SFXPAGE_SAVE:CB_LOAD_SETTINGS +DokumenteigenschaftenBearbeiten sym:cui:CheckBox:RID_SFXPAGE_SAVE:BTN_DOCINFO +Sicherungskopie sym:cui:CheckBox:RID_SFXPAGE_SAVE:BTN_BACKUP +AutomatischSpeichern sym:cui:CheckBox:RID_SFXPAGE_SAVE:BTN_AUTOSAVE +Minuten sym:cui:NumericField:RID_SFXPAGE_SAVE:ED_AUTOSAVE +NoPrettyPrinting sym:cui:CheckBox:RID_SFXPAGE_SAVE:BTN_NOPRETTYPRINTING +URLimDateisystem sym:cui:CheckBox:RID_SFXPAGE_SAVE:BTN_RELATIVE_FSYS +URLimInternet sym:cui:CheckBox:RID_SFXPAGE_SAVE:BTN_RELATIVE_INET +Dokumenttyp sym:cui:ListBox:RID_SFXPAGE_SAVE:LB_APP +Filter sym:cui:ListBox:RID_SFXPAGE_SAVE:LB_FILTER +WarnWhenSavingAlienFormat sym:cui:CheckBox:RID_SFXPAGE_SAVE:BTN_WARNALIENFORMAT +LoadPrinterSettingsWithDocument sym:cui:CheckBox:RID_SFXPAGE_SAVE:CB_LOAD_DOCPRINTER -*TabSprachen HID_OFA_TP_LANGUAGES -UILanguage cui:ListBox:OFA_TP_LANGUAGES:LB_USERINTERFACE -Gebietsschema cui:ListBox:OFA_TP_LANGUAGES:LB_LOCALESETTING -DecimalSeparator cui:CheckBox:OFA_TP_LANGUAGES:CB_DECIMALSEPARATOR -StandardWaehrung cui:ListBox:OFA_TP_LANGUAGES:LB_CURRENCY -Westlich cui:ListBox:OFA_TP_LANGUAGES:LB_WEST_LANG -Asiatisch cui:ListBox:OFA_TP_LANGUAGES:LB_ASIAN_LANG -AktuellesDokument cui:CheckBox:OFA_TP_LANGUAGES:CB_CURRENT_DOC -Aktivieren cui:CheckBox:OFA_TP_LANGUAGES:CB_ASIANSUPPORT -LanguageComplexScript cui:ListBox:OFA_TP_LANGUAGES:LB_COMPLEX_LANG -ComplexScriptEnabled cui:CheckBox:OFA_TP_LANGUAGES:CB_CTLSUPPORT +*TabSprachen sym:CUI_HID_OFA_TP_LANGUAGES +UILanguage sym:cui:ListBox:OFA_TP_LANGUAGES:LB_USERINTERFACE +Gebietsschema sym:cui:ListBox:OFA_TP_LANGUAGES:LB_LOCALESETTING +DecimalSeparator sym:cui:CheckBox:OFA_TP_LANGUAGES:CB_DECIMALSEPARATOR +StandardWaehrung sym:cui:ListBox:OFA_TP_LANGUAGES:LB_CURRENCY +Westlich sym:cui:ListBox:OFA_TP_LANGUAGES:LB_WEST_LANG +Asiatisch sym:cui:ListBox:OFA_TP_LANGUAGES:LB_ASIAN_LANG +AktuellesDokument sym:cui:CheckBox:OFA_TP_LANGUAGES:CB_CURRENT_DOC +Aktivieren sym:cui:CheckBox:OFA_TP_LANGUAGES:CB_ASIANSUPPORT +LanguageComplexScript sym:cui:ListBox:OFA_TP_LANGUAGES:LB_COMPLEX_LANG +ComplexScriptEnabled sym:cui:CheckBox:OFA_TP_LANGUAGES:CB_CTLSUPPORT -*TabStatistik HID_DOC_STAT -Aktualisieren sw:PushButton:TP_DOC_STAT:PB_PDATE +*TabStatistik sym:SW_HID_DOC_STAT +Aktualisieren sym:sw:PushButton:TP_DOC_STAT:PB_PDATE -*TabStatistikCalc sc:TabPage:RID_SCPAGE_STAT +*TabStatistikCalc sym:sc:TabPage:RID_SCPAGE_STAT -*TabSuche HID_OPTIONS_SEARCH -SuchenIn cui:ListBox:RID_SVXPAGE_INET_SEARCH:LB_SEARCH -DienstName cui:Edit:RID_SVXPAGE_INET_SEARCH:ED_SEARCH_NAME -Und cui:RadioButton:RID_SVXPAGE_INET_SEARCH:RB_AND -Oder cui:RadioButton:RID_SVXPAGE_INET_SEARCH:RB_OR -Exakt cui:RadioButton:RID_SVXPAGE_INET_SEARCH:RB_EXACT -Praefix cui:Edit:RID_SVXPAGE_INET_SEARCH:ED_URL -Suffix cui:Edit:RID_SVXPAGE_INET_SEARCH:ED_POSTFIX -Trenner cui:Edit:RID_SVXPAGE_INET_SEARCH:ED_SEPARATOR -Schreibstil cui:ListBox:RID_SVXPAGE_INET_SEARCH:ED_CASE -Hinzufuegen cui:PushButton:RID_SVXPAGE_INET_SEARCH:PB_ADD -Aendern cui:PushButton:RID_SVXPAGE_INET_SEARCH:PB_CHANGE -Loeschen cui:PushButton:RID_SVXPAGE_INET_SEARCH:PB_DELETE -Neu cui:PushButton:RID_SVXPAGE_INET_SEARCH:PB_NEW +*TabSuche sym:CUI_HID_OPTIONS_SEARCH +SuchenIn sym:cui:ListBox:RID_SVXPAGE_INET_SEARCH:LB_SEARCH +DienstName sym:cui:Edit:RID_SVXPAGE_INET_SEARCH:ED_SEARCH_NAME +Und sym:cui:RadioButton:RID_SVXPAGE_INET_SEARCH:RB_AND +Oder sym:cui:RadioButton:RID_SVXPAGE_INET_SEARCH:RB_OR +Exakt sym:cui:RadioButton:RID_SVXPAGE_INET_SEARCH:RB_EXACT +Praefix sym:cui:Edit:RID_SVXPAGE_INET_SEARCH:ED_URL +Suffix sym:cui:Edit:RID_SVXPAGE_INET_SEARCH:ED_POSTFIX +Trenner sym:cui:Edit:RID_SVXPAGE_INET_SEARCH:ED_SEPARATOR +Schreibstil sym:cui:ListBox:RID_SVXPAGE_INET_SEARCH:ED_CASE +Hinzufuegen sym:cui:PushButton:RID_SVXPAGE_INET_SEARCH:PB_ADD +Aendern sym:cui:PushButton:RID_SVXPAGE_INET_SEARCH:PB_CHANGE +Loeschen sym:cui:PushButton:RID_SVXPAGE_INET_SEARCH:PB_DELETE +Neu sym:cui:PushButton:RID_SVXPAGE_INET_SEARCH:PB_NEW diff --git a/testautomation/global/win/tab_t_z.win b/testautomation/global/win/tab_t_z.win index be8f4870de47..22f9f5c1912a 100755..100644 --- a/testautomation/global/win/tab_t_z.win +++ b/testautomation/global/win/tab_t_z.win @@ -1,401 +1,401 @@ -*TabTabelle HID_FORMAT_TABLE -TabellenName sw:Edit:TP_FORMAT_TABLE:ED_NAME -Breite sw:MetricField:TP_FORMAT_TABLE:ED_WIDTH -Relativ sw:CheckBox:TP_FORMAT_TABLE:CB_REL_WIDTH -Automatisch sw:RadioButton:TP_FORMAT_TABLE:RB_FULL -Links sw:RadioButton:TP_FORMAT_TABLE:RB_LEFT -Rechts sw:RadioButton:TP_FORMAT_TABLE:RB_RIGHT -Zentriert sw:RadioButton:TP_FORMAT_TABLE:RB_CENTER -Vonlinks sw:RadioButton:TP_FORMAT_TABLE:RB_FROM_LEFT -Manuell sw:RadioButton:TP_FORMAT_TABLE:RB_FREE -NachLinks sw:MetricField:TP_FORMAT_TABLE:ED_LEFT_DIST -NachRechts sw:MetricField:TP_FORMAT_TABLE:ED_RIGHT_DIST -NachOben sw:MetricField:TP_FORMAT_TABLE:ED_TOP_DIST -NachUnten sw:MetricField:TP_FORMAT_TABLE:ED_BOTTOM_DIST -TextDirection sw:ListBox:TP_FORMAT_TABLE:LB_TEXTDIRECTION +*TabTabelle sym:SW_HID_FORMAT_TABLE +TabellenName sym:sw:Edit:TP_FORMAT_TABLE:ED_NAME +Breite sym:sw:MetricField:TP_FORMAT_TABLE:ED_WIDTH +Relativ sym:sw:CheckBox:TP_FORMAT_TABLE:CB_REL_WIDTH +Automatisch sym:sw:RadioButton:TP_FORMAT_TABLE:RB_FULL +Links sym:sw:RadioButton:TP_FORMAT_TABLE:RB_LEFT +Rechts sym:sw:RadioButton:TP_FORMAT_TABLE:RB_RIGHT +Zentriert sym:sw:RadioButton:TP_FORMAT_TABLE:RB_CENTER +Vonlinks sym:sw:RadioButton:TP_FORMAT_TABLE:RB_FROM_LEFT +Manuell sym:sw:RadioButton:TP_FORMAT_TABLE:RB_FREE +NachLinks sym:sw:MetricField:TP_FORMAT_TABLE:ED_LEFT_DIST +NachRechts sym:sw:MetricField:TP_FORMAT_TABLE:ED_RIGHT_DIST +NachOben sym:sw:MetricField:TP_FORMAT_TABLE:ED_TOP_DIST +NachUnten sym:sw:MetricField:TP_FORMAT_TABLE:ED_BOTTOM_DIST +TextDirection sym:sw:ListBox:TP_FORMAT_TABLE:LB_TEXTDIRECTION -*TabTabelleCalc HID_SCPAGE_TABLE -ZeilenSpaltenKoepfe sc:CheckBox:RID_SCPAGE_TABLE:BTN_HEADER -Tabellengitter sc:CheckBox:RID_SCPAGE_TABLE:BTN_GRID -Notizen sc:CheckBox:RID_SCPAGE_TABLE:BTN_NOTES -GrafikenObjekte sc:CheckBox:RID_SCPAGE_TABLE:BTN_OBJECTS -Diagramme sc:CheckBox:RID_SCPAGE_TABLE:BTN_CHARTS -Zeichenobjekte sc:CheckBox:RID_SCPAGE_TABLE:BTN_DRAWINGS -Formeln sc:CheckBox:RID_SCPAGE_TABLE:BTN_FORMULAS -Nullwerte sc:CheckBox:RID_SCPAGE_TABLE:BTN_NULLVALS -SeitenreihenfolgeObenUnten sc:RadioButton:RID_SCPAGE_TABLE:BTN_TOPDOWN -SeitenreihenfolgeLinksRechts sc:RadioButton:RID_SCPAGE_TABLE:BTN_LEFTRIGHT -ErsteSeitenzahl sc:CheckBox:RID_SCPAGE_TABLE:BTN_PAGENO -NummerErsteSeite sc:NumericField:RID_SCPAGE_TABLE:ED_PAGENO -'SkalierungAllesAuf sc:RadioButton:RID_SCPAGE_TABLE:BTN_SCALEALL -SkalierungProzent sc:MetricField:RID_SCPAGE_TABLE:ED_SCALEALL -'MaxSeitenzahl sc:RadioButton:RID_SCPAGE_TABLE:BTN_SCALEPAGENUM -AnzahlMaxSeiten sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGENUM -ScalingMode sc:ListBox:RID_SCPAGE_TABLE:LB_SCALEMODE -ScalePageWidth sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEWIDTH -ScalePageHeight sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEHEIGHT +*TabTabelleCalc sym:SC_HID_SCPAGE_TABLE +ZeilenSpaltenKoepfe sym:sc:CheckBox:RID_SCPAGE_TABLE:BTN_HEADER +Tabellengitter sym:sc:CheckBox:RID_SCPAGE_TABLE:BTN_GRID +Notizen sym:sc:CheckBox:RID_SCPAGE_TABLE:BTN_NOTES +GrafikenObjekte sym:sc:CheckBox:RID_SCPAGE_TABLE:BTN_OBJECTS +Diagramme sym:sc:CheckBox:RID_SCPAGE_TABLE:BTN_CHARTS +Zeichenobjekte sym:sc:CheckBox:RID_SCPAGE_TABLE:BTN_DRAWINGS +Formeln sym:sc:CheckBox:RID_SCPAGE_TABLE:BTN_FORMULAS +Nullwerte sym:sc:CheckBox:RID_SCPAGE_TABLE:BTN_NULLVALS +SeitenreihenfolgeObenUnten sym:sc:RadioButton:RID_SCPAGE_TABLE:BTN_TOPDOWN +SeitenreihenfolgeLinksRechts sym:sc:RadioButton:RID_SCPAGE_TABLE:BTN_LEFTRIGHT +ErsteSeitenzahl sym:sc:CheckBox:RID_SCPAGE_TABLE:BTN_PAGENO +NummerErsteSeite sym:sc:NumericField:RID_SCPAGE_TABLE:ED_PAGENO +'SkalierungAllesAuf sym:sc:RadioButton:RID_SCPAGE_TABLE:BTN_SCALEALL +SkalierungProzent sym:sc:MetricField:RID_SCPAGE_TABLE:ED_SCALEALL +'MaxSeitenzahl sym:sc:RadioButton:RID_SCPAGE_TABLE:BTN_SCALEPAGENUM +AnzahlMaxSeiten sym:sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGENUM +ScalingMode sym:sc:ListBox:RID_SCPAGE_TABLE:LB_SCALEMODE +ScalePageWidth sym:sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEWIDTH +ScalePageHeight sym:sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEHEIGHT -*TabTabelleOptionen HID_OPTTABLE_PAGE -VerschiebenZeile SW:METRICFIELD:TP_OPTTABLE_PAGE:MF_ROWMOVE -VerschiebenSpalte SW:METRICFIELD:TP_OPTTABLE_PAGE:MF_COLMOVE -EinfuegenZeile SW:METRICFIELD:TP_OPTTABLE_PAGE:MF_ROWINSERT -EinfuegenSpalte SW:METRICFIELD:TP_OPTTABLE_PAGE:MF_COLINSERT -VerhaltenFix SW:RADIOBUTTON:TP_OPTTABLE_PAGE:RB_FIX -FixProportional SW:RADIOBUTTON:TP_OPTTABLE_PAGE:RB_FIXPROP -Variabel SW:RADIOBUTTON:TP_OPTTABLE_PAGE:RB_VAR +*TabTabelleOptionen sym:SW_HID_OPTTABLE_PAGE +VerschiebenZeile sym:sw:MetricField:TP_OPTTABLE_PAGE:MF_ROWMOVE +VerschiebenSpalte sym:sw:MetricField:TP_OPTTABLE_PAGE:MF_COLMOVE +EinfuegenZeile sym:sw:MetricField:TP_OPTTABLE_PAGE:MF_ROWINSERT +EinfuegenSpalte sym:sw:MetricField:TP_OPTTABLE_PAGE:MF_COLINSERT +VerhaltenFix sym:sw:RadioButton:TP_OPTTABLE_PAGE:RB_FIX +FixProportional sym:sw:RadioButton:TP_OPTTABLE_PAGE:RB_FIXPROP +Variabel sym:sw:RadioButton:TP_OPTTABLE_PAGE:RB_VAR -Ueberschrift sw:CheckBox:TP_OPTTABLE_PAGE:CB_HEADER -Wiederholen sw:CheckBox:TP_OPTTABLE_PAGE:CB_REPEAT_HEADER -NichtTrennen sw:CheckBox:TP_OPTTABLE_PAGE:CB_DONT_SPLIT -Umrandung sw:CheckBox:TP_OPTTABLE_PAGE:CB_BORDER -AutomatischeZahlenerkennung sw:CheckBox:TP_OPTTABLE_PAGE:CB_NUMFORMATTING -Zahlenformaterkennung sw:CheckBox:TP_OPTTABLE_PAGE:CB_NUMFMT_FORMATTING -AutomatischeAusrichtung sw:CheckBox:TP_OPTTABLE_PAGE:CB_NUMALIGNMENT +Ueberschrift sym:sw:CheckBox:TP_OPTTABLE_PAGE:CB_HEADER +Wiederholen sym:sw:CheckBox:TP_OPTTABLE_PAGE:CB_REPEAT_HEADER +NichtTrennen sym:sw:CheckBox:TP_OPTTABLE_PAGE:CB_DONT_SPLIT +Umrandung sym:sw:CheckBox:TP_OPTTABLE_PAGE:CB_BORDER +AutomatischeZahlenerkennung sym:sw:CheckBox:TP_OPTTABLE_PAGE:CB_NUMFORMATTING +Zahlenformaterkennung sym:sw:CheckBox:TP_OPTTABLE_PAGE:CB_NUMFMT_FORMATTING +AutomatischeAusrichtung sym:sw:CheckBox:TP_OPTTABLE_PAGE:CB_NUMALIGNMENT -*TabTabulatoren HID_TABULATOR -AlleLoeschen cui:PushButton:RID_SVXPAGE_TABULATOR:BTN_DELALL -Fuellzeichen1 cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_NO -Fuellzeichen2 cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_POINTS -Fuellzeichen3 cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_DASHLINE -Fuellzeichen4 cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_UNDERSCORE -Fuellzeichen5 cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_OTHER -FuellzeichenZeichen cui:Edit:RID_SVXPAGE_TABULATOR:ED_FILLCHAR_OTHER -Loeschen cui:PushButton:RID_SVXPAGE_TABULATOR:BTN_DEL -Neu cui:PushButton:RID_SVXPAGE_TABULATOR:BTN_NEW -Position cui:MetricBox:RID_SVXPAGE_TABULATOR:ED_TABPOS -TypLinks cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_LEFT -TypRechts cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_RIGHT -TypZentriert cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_CENTER -TypDezimal cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_DECIMAL -TypZeichen cui:Edit:RID_SVXPAGE_TABULATOR:ED_TABTYPE_DECCHAR +*TabTabulatoren sym:CUI_HID_TABULATOR +AlleLoeschen sym:cui:PushButton:RID_SVXPAGE_TABULATOR:BTN_DELALL +Fuellzeichen1 sym:cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_NO +Fuellzeichen2 sym:cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_POINTS +Fuellzeichen3 sym:cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_DASHLINE +Fuellzeichen4 sym:cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_UNDERSCORE +Fuellzeichen5 sym:cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_OTHER +FuellzeichenZeichen sym:cui:Edit:RID_SVXPAGE_TABULATOR:ED_FILLCHAR_OTHER +Loeschen sym:cui:PushButton:RID_SVXPAGE_TABULATOR:BTN_DEL +Neu sym:cui:PushButton:RID_SVXPAGE_TABULATOR:BTN_NEW +Position sym:cui:MetricBox:RID_SVXPAGE_TABULATOR:ED_TABPOS +TypLinks sym:cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_LEFT +TypRechts sym:cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_RIGHT +TypZentriert sym:cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_CENTER +TypDezimal sym:cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_DECIMAL +TypZeichen sym:cui:Edit:RID_SVXPAGE_TABULATOR:ED_TABTYPE_DECCHAR -*TabTabulator HID_TABULATOR -AlleLoeschen cui:PushButton:RID_SVXPAGE_TABULATOR:BTN_DELALL -Fuellzeichen1 cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_NO -Fuellzeichen2 cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_POINTS -Fuellzeichen3 cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_DASHLINE -Fuellzeichen4 cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_UNDERSCORE -Fuellzeichen5 cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_OTHER -FuellzeichenZeichen cui:Edit:RID_SVXPAGE_TABULATOR:ED_FILLCHAR_OTHER -Loeschen cui:PushButton:RID_SVXPAGE_TABULATOR:BTN_DEL -Neu cui:PushButton:RID_SVXPAGE_TABULATOR:BTN_NEW -Position cui:MetricBox:RID_SVXPAGE_TABULATOR:ED_TABPOS -TypLinks cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_LEFT -TypRechts cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_RIGHT -TypZentriert cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_CENTER -TypDezimal cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_DECIMAL -TypZeichen cui:Edit:RID_SVXPAGE_TABULATOR:ED_TABTYPE_DECCHAR +*TabTabulator sym:CUI_HID_TABULATOR +AlleLoeschen sym:cui:PushButton:RID_SVXPAGE_TABULATOR:BTN_DELALL +Fuellzeichen1 sym:cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_NO +Fuellzeichen2 sym:cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_POINTS +Fuellzeichen3 sym:cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_DASHLINE +Fuellzeichen4 sym:cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_UNDERSCORE +Fuellzeichen5 sym:cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_OTHER +FuellzeichenZeichen sym:cui:Edit:RID_SVXPAGE_TABULATOR:ED_FILLCHAR_OTHER +Loeschen sym:cui:PushButton:RID_SVXPAGE_TABULATOR:BTN_DEL +Neu sym:cui:PushButton:RID_SVXPAGE_TABULATOR:BTN_NEW +Position sym:cui:MetricBox:RID_SVXPAGE_TABULATOR:ED_TABPOS +TypLinks sym:cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_LEFT +TypRechts sym:cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_RIGHT +TypZentriert sym:cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_CENTER +TypDezimal sym:cui:RadioButton:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_DECIMAL +TypZeichen sym:cui:Edit:RID_SVXPAGE_TABULATOR:ED_TABTYPE_DECCHAR -*TabTastatur HID_CONFIG_ACCEL -Tastatur HID_ACCELCONFIG_LISTBOX -Bereich HID_CONFIGGROUP_ACC_LISTBOX -Funktion HID_CONFIGFUNCTION_ACC_LISTBOX -Aendern cui:PushButton:RID_SVXPAGE_KEYBOARD:BTN_ACC_CHANGE -Loeschen cui:PushButton:RID_SVXPAGE_KEYBOARD:BTN_ACC_REMOVE -Zuruecksetzen cui:PushButton:RID_SVXPAGE_KEYBOARD:BTN_RESET -Laden cui:PushButton:RID_SVXPAGE_KEYBOARD:BTN_LOAD -Speichern cui:PushButton:RID_SVXPAGE_KEYBOARD:BTN_SAVE -StarOffice cui:RadioButton:RID_SVXPAGE_KEYBOARD:RB_OFFICE -Application cui:RadioButton:RID_SVXPAGE_KEYBOARD:RB_MODULE +*TabTastatur sym:CUI_HID_CONFIG_ACCEL +Tastatur sym:CUI_HID_ACCELCONFIG_LISTBOX +Bereich sym:CUI_HID_CONFIGGROUP_ACC_LISTBOX +Funktion sym:CUI_HID_CONFIGFUNCTION_ACC_LISTBOX +Aendern sym:cui:PushButton:RID_SVXPAGE_KEYBOARD:BTN_ACC_CHANGE +Loeschen sym:cui:PushButton:RID_SVXPAGE_KEYBOARD:BTN_ACC_REMOVE +Zuruecksetzen sym:cui:PushButton:RID_SVXPAGE_KEYBOARD:BTN_RESET +Laden sym:cui:PushButton:RID_SVXPAGE_KEYBOARD:BTN_LOAD +Speichern sym:cui:PushButton:RID_SVXPAGE_KEYBOARD:BTN_SAVE +StarOffice sym:cui:RadioButton:RID_SVXPAGE_KEYBOARD:RB_OFFICE +Application sym:cui:RadioButton:RID_SVXPAGE_KEYBOARD:RB_MODULE -*TabTeilergebnisseOptionen HID_SCPAGE_SUBT_OPTIONS -NeueSeiteBeiGruppenwechsel sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK -GrossKleinschreibungBeachten sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE -BereichVorherNachGruppenSortieren sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT -FormateEinschliessen sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS -BenutzerdefinierteSortierreihenfolge sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_USERDEF -SortierreihenfolgeAnzeige sc:ListBox:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF -Aufsteigend sc:RadioButton:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING -Absteigend sc:RadioButton:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING +*TabTeilergebnisseOptionen sym:SC_HID_SCPAGE_SUBT_OPTIONS +NeueSeiteBeiGruppenwechsel sym:sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK +GrossKleinschreibungBeachten sym:sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE +BereichVorherNachGruppenSortieren sym:sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT +FormateEinschliessen sym:sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS +BenutzerdefinierteSortierreihenfolge sym:sc:CheckBox:RID_SCPAGE_SUBT_OPTIONS:BTN_USERDEF +SortierreihenfolgeAnzeige sym:sc:ListBox:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF +Aufsteigend sym:sc:RadioButton:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING +Absteigend sym:sc:RadioButton:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING -*TabText HID_PAGE_TEXTATTR -BreiteAnTextAnpassen cui:TriStateBox:RID_SVXPAGE_TEXTATTR:TSB_AUTOGROW_WIDTH -HoeheAnTextAnpassen cui:TriStateBox:RID_SVXPAGE_TEXTATTR:TSB_AUTOGROW_HEIGHT -AmRahmenAnpassen cui:TriStateBox:RID_SVXPAGE_TEXTATTR:TSB_FIT_TO_SIZE -Konturfluss cui:TriStateBox:RID_SVXPAGE_TEXTATTR:TSB_CONTOUR -WordWrap cui:TriStateBox:RID_SVXPAGE_TEXTATTR:TSB_WORDWRAP_TEXT -ResizeShape cui:TriStateBox:RID_SVXPAGE_TEXTATTR:TSB_AUTOGROW_SIZE -Links cui:MetricField:RID_SVXPAGE_TEXTATTR:MTR_FLD_LEFT -Rechts cui:MetricField:RID_SVXPAGE_TEXTATTR:MTR_FLD_RIGHT -Oben cui:MetricField:RID_SVXPAGE_TEXTATTR:MTR_FLD_TOP -Unten cui:MetricField:RID_SVXPAGE_TEXTATTR:MTR_FLD_BOTTOM -AnchorPosition HID_TEXTATTR_CTL_POSITION -GanzeBreite cui:TriStateBox:RID_SVXPAGE_TEXTATTR:TSB_FULL_WIDTH +*TabText sym:CUI_HID_PAGE_TEXTATTR +BreiteAnTextAnpassen sym:cui:TriStateBox:RID_SVXPAGE_TEXTATTR:TSB_AUTOGROW_WIDTH +HoeheAnTextAnpassen sym:cui:TriStateBox:RID_SVXPAGE_TEXTATTR:TSB_AUTOGROW_HEIGHT +AmRahmenAnpassen sym:cui:TriStateBox:RID_SVXPAGE_TEXTATTR:TSB_FIT_TO_SIZE +Konturfluss sym:cui:TriStateBox:RID_SVXPAGE_TEXTATTR:TSB_CONTOUR +WordWrap sym:cui:TriStateBox:RID_SVXPAGE_TEXTATTR:TSB_WORDWRAP_TEXT +ResizeShape sym:cui:TriStateBox:RID_SVXPAGE_TEXTATTR:TSB_AUTOGROW_SIZE +Links sym:cui:MetricField:RID_SVXPAGE_TEXTATTR:MTR_FLD_LEFT +Rechts sym:cui:MetricField:RID_SVXPAGE_TEXTATTR:MTR_FLD_RIGHT +Oben sym:cui:MetricField:RID_SVXPAGE_TEXTATTR:MTR_FLD_TOP +Unten sym:cui:MetricField:RID_SVXPAGE_TEXTATTR:MTR_FLD_BOTTOM +AnchorPosition sym:CUI_HID_TEXTATTR_CTL_POSITION +GanzeBreite sym:cui:TriStateBox:RID_SVXPAGE_TEXTATTR:TSB_FULL_WIDTH -*TabTextfluss HID_FORMAT_PARAGRAPH_EXT -Automatisch cui:TriStateBox:RID_SVXPAGE_EXT_PARAGRAPH:BTN_HYPHEN -AbZeichenende cui:NumericField:RID_SVXPAGE_EXT_PARAGRAPH:ED_HYPHENBEFORE -AbZeichenAnfang cui:NumericField:RID_SVXPAGE_EXT_PARAGRAPH:ED_HYPHENAFTER -Trennstellen cui:NumericField:RID_SVXPAGE_EXT_PARAGRAPH:ED_MAXHYPH -Umbruch cui:TriStateBox:RID_SVXPAGE_EXT_PARAGRAPH:BTN_PAGEBREAK -UmbruchTyp cui:ListBox:RID_SVXPAGE_EXT_PARAGRAPH:LB_BREAKTYPE -UmbruchPosition cui:ListBox:RID_SVXPAGE_EXT_PARAGRAPH:LB_BREAKPOSITION -MitSeitenvorlage cui:TriStateBox:RID_SVXPAGE_EXT_PARAGRAPH:BTN_PAGECOLL -Vorlage cui:ListBox:RID_SVXPAGE_EXT_PARAGRAPH:LB_PAGECOLL -AbsatzNichtTrennen cui:TriStateBox:RID_SVXPAGE_EXT_PARAGRAPH:BTN_KEEPTOGETHER -AbsaetzeZusammenhalten cui:TriStateBox:RID_SVXPAGE_EXT_PARAGRAPH:CB_KEEPTOGETHER -Schusterjungenregelung cui:TriStateBox:RID_SVXPAGE_EXT_PARAGRAPH:BTN_WIDOWS -SchusterZeilen cui:NumericField:RID_SVXPAGE_EXT_PARAGRAPH:ED_WIDOWS -Hurenkinderregelung cui:TriStateBox:RID_SVXPAGE_EXT_PARAGRAPH:BTN_ORPHANS -HurenkinderZeilen cui:NumericField:RID_SVXPAGE_EXT_PARAGRAPH:ED_ORPHANS -Seitenzahl cui:NUMERICFIELD:RID_SVXPAGE_EXT_PARAGRAPH:ED_PAGENUM +*TabTextfluss sym:CUI_HID_FORMAT_PARAGRAPH_EXT +Automatisch sym:cui:TriStateBox:RID_SVXPAGE_EXT_PARAGRAPH:BTN_HYPHEN +AbZeichenende sym:cui:NumericField:RID_SVXPAGE_EXT_PARAGRAPH:ED_HYPHENBEFORE +AbZeichenAnfang sym:cui:NumericField:RID_SVXPAGE_EXT_PARAGRAPH:ED_HYPHENAFTER +Trennstellen sym:cui:NumericField:RID_SVXPAGE_EXT_PARAGRAPH:ED_MAXHYPH +Umbruch sym:cui:TriStateBox:RID_SVXPAGE_EXT_PARAGRAPH:BTN_PAGEBREAK +UmbruchTyp sym:cui:ListBox:RID_SVXPAGE_EXT_PARAGRAPH:LB_BREAKTYPE +UmbruchPosition sym:cui:ListBox:RID_SVXPAGE_EXT_PARAGRAPH:LB_BREAKPOSITION +MitSeitenvorlage sym:cui:TriStateBox:RID_SVXPAGE_EXT_PARAGRAPH:BTN_PAGECOLL +Vorlage sym:cui:ListBox:RID_SVXPAGE_EXT_PARAGRAPH:LB_PAGECOLL +AbsatzNichtTrennen sym:cui:TriStateBox:RID_SVXPAGE_EXT_PARAGRAPH:BTN_KEEPTOGETHER +AbsaetzeZusammenhalten sym:cui:TriStateBox:RID_SVXPAGE_EXT_PARAGRAPH:CB_KEEPTOGETHER +Schusterjungenregelung sym:cui:TriStateBox:RID_SVXPAGE_EXT_PARAGRAPH:BTN_WIDOWS +SchusterZeilen sym:cui:NumericField:RID_SVXPAGE_EXT_PARAGRAPH:ED_WIDOWS +Hurenkinderregelung sym:cui:TriStateBox:RID_SVXPAGE_EXT_PARAGRAPH:BTN_ORPHANS +HurenkinderZeilen sym:cui:NumericField:RID_SVXPAGE_EXT_PARAGRAPH:ED_ORPHANS +Seitenzahl sym:cui:NumericField:RID_SVXPAGE_EXT_PARAGRAPH:ED_PAGENUM -*TabTextflussTabelle HID_TABLE_TEXTFLOW -Umbruch SW:CHECKBOX:TP_TABLE_TEXTFLOW:CB_PAGEBREAK -MitSeitenvorlage SW:CHECKBOX:TP_TABLE_TEXTFLOW:CB_PAGECOLL -UeberschriftWiederholen SW:CHECKBOX:TP_TABLE_TEXTFLOW:CB_HEADLINE -TabelleNichtTrennen SW:CHECKBOX:TP_TABLE_TEXTFLOW:CB_SPLIT -MitFolgendemAbsatzZusammenhalten SW:CHECKBOX:TP_TABLE_TEXTFLOW:CB_KEEP -Seite SW:RADIOBUTTON:TP_TABLE_TEXTFLOW:RB_BREAKPAGE -Spalte SW:RADIOBUTTON:TP_TABLE_TEXTFLOW:RB_BREAKCOLUMN -Davor SW:RADIOBUTTON:TP_TABLE_TEXTFLOW:RB_PAGEBREAKBEFORE -Danach SW:RADIOBUTTON:TP_TABLE_TEXTFLOW:RB_PAGEBREAKAFTER -Seitenvorlage SW:LISTBOX:TP_TABLE_TEXTFLOW:LB_PAGECOLL -Seitennummer SW:NUMERICFIELD:TP_TABLE_TEXTFLOW:NF_PAGENUM -ZeileTrennen sw:TriStateBox:TP_TABLE_TEXTFLOW:CB_SPLIT_ROW -TextDirection sw:ListBox:TP_TABLE_TEXTFLOW:LB_TEXTDIRECTION -VerticalAlignment sw:ListBox:TP_TABLE_TEXTFLOW:LB_VERTORIENT +*TabTextflussTabelle sym:SW_HID_TABLE_TEXTFLOW +Umbruch sym:sw:CheckBox:TP_TABLE_TEXTFLOW:CB_PAGEBREAK +MitSeitenvorlage sym:sw:CheckBox:TP_TABLE_TEXTFLOW:CB_PAGECOLL +UeberschriftWiederholen sym:sw:CheckBox:TP_TABLE_TEXTFLOW:CB_HEADLINE +TabelleNichtTrennen sym:sw:CheckBox:TP_TABLE_TEXTFLOW:CB_SPLIT +MitFolgendemAbsatzZusammenhalten sym:sw:CheckBox:TP_TABLE_TEXTFLOW:CB_KEEP +Seite sym:sw:RadioButton:TP_TABLE_TEXTFLOW:RB_BREAKPAGE +Spalte sym:sw:RadioButton:TP_TABLE_TEXTFLOW:RB_BREAKCOLUMN +Davor sym:sw:RadioButton:TP_TABLE_TEXTFLOW:RB_PAGEBREAKBEFORE +Danach sym:sw:RadioButton:TP_TABLE_TEXTFLOW:RB_PAGEBREAKAFTER +Seitenvorlage sym:sw:ListBox:TP_TABLE_TEXTFLOW:LB_PAGECOLL +Seitennummer sym:sw:NumericField:TP_TABLE_TEXTFLOW:NF_PAGENUM +ZeileTrennen sym:sw:TriStateBox:TP_TABLE_TEXTFLOW:CB_SPLIT_ROW +TextDirection sym:sw:ListBox:TP_TABLE_TEXTFLOW:LB_TEXTDIRECTION +VerticalAlignment sym:sw:ListBox:TP_TABLE_TEXTFLOW:LB_VERTORIENT -*TabTransparenz HID_AREA_TRANSPARENCE -KeineTransparenz cui:RadioButton:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_OFF -LineareTransparenz cui:RadioButton:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_LINEAR -Transparenzverlauf cui:RadioButton:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_GRADIENT -MFLinTransparenz cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRANSPARENT -TransparenzverlaufTyp cui:ListBox:RID_SVXPAGE_TRANSPARENCE:LB_TRGR_GRADIENT_TYPES -MFZentrumX cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_X -MFZentrumY cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_Y -MFWinkel cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_ANGLE -MFRand cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_BORDER -MFStartwert cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_START_VALUE -MFEndwert cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_END_VALUE +*TabTransparenz sym:CUI_HID_AREA_TRANSPARENCE +KeineTransparenz sym:cui:RadioButton:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_OFF +LineareTransparenz sym:cui:RadioButton:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_LINEAR +Transparenzverlauf sym:cui:RadioButton:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_GRADIENT +MFLinTransparenz sym:cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRANSPARENT +TransparenzverlaufTyp sym:cui:ListBox:RID_SVXPAGE_TRANSPARENCE:LB_TRGR_GRADIENT_TYPES +MFZentrumX sym:cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_X +MFZentrumY sym:cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_Y +MFWinkel sym:cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_ANGLE +MFRand sym:cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_BORDER +MFStartwert sym:cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_START_VALUE +MFEndwert sym:cui:MetricField:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_END_VALUE -*TabUmlauf HID_FRM_EXT -Kein sw:ImageRadioButton:TP_FRM_WRAP:RB_NO_WRAP -Links sw:ImageRadioButton:TP_FRM_WRAP:RB_WRAP_LEFT -Rechts sw:ImageRadioButton:TP_FRM_WRAP:RB_WRAP_RIGHT -Parallel sw:ImageRadioButton:TP_FRM_WRAP:RB_WRAP_PARALLEL -Durchlauf sw:ImageRadioButton:TP_FRM_WRAP:RB_WRAP_THROUGH -Dynamisch sw:ImageRadioButton:TP_FRM_WRAP:RB_WRAP_IDEAL -AbstaendeLinks sw:MetricField:TP_FRM_WRAP:ED_LEFT_MARGIN -AbstaendeRechts SW:METRICFIELD:TP_FRM_WRAP:ED_RIGHT_MARGIN sw:MetricField:TP_FRM_EXT:ED_RIGHT_MARGIN -AbstaendeOben SW:METRICFIELD:TP_FRM_WRAP:ED_TOP_MARGIN sw:MetricField:TP_FRM_EXT:ED_TOP_MARGIN -AbstaendeUnten SW:METRICFIELD:TP_FRM_WRAP:ED_BOTTOM_MARGIN sw:MetricField:TP_FRM_EXT:ED_BOTTOM_MARGIN -ErsterAbsatz sw:CheckBox:TP_FRM_WRAP:CB_ANCHOR_ONLY -ImHintergrund sw:CheckBox:TP_FRM_WRAP:CB_TRANSPARENT -Kontur sw:CheckBox:TP_FRM_WRAP:CB_OUTLINE -NurAussen sw:CheckBox:TP_FRM_WRAP:CB_ONLYOUTSIDE +*TabUmlauf sym:SW_HID_FRM_EXT +Kein sym:sw:ImageRadioButton:TP_FRM_WRAP:RB_NO_WRAP +Links sym:sw:ImageRadioButton:TP_FRM_WRAP:RB_WRAP_LEFT +Rechts sym:sw:ImageRadioButton:TP_FRM_WRAP:RB_WRAP_RIGHT +Parallel sym:sw:ImageRadioButton:TP_FRM_WRAP:RB_WRAP_PARALLEL +Durchlauf sym:sw:ImageRadioButton:TP_FRM_WRAP:RB_WRAP_THROUGH +Dynamisch sym:sw:ImageRadioButton:TP_FRM_WRAP:RB_WRAP_IDEAL +AbstaendeLinks sym:sw:MetricField:TP_FRM_WRAP:ED_LEFT_MARGIN +AbstaendeRechts sym:sw:MetricField:TP_FRM_WRAP:ED_RIGHT_MARGIN sw:MetricField:TP_FRM_EXT:ED_RIGHT_MARGIN +AbstaendeOben sym:sw:MetricField:TP_FRM_WRAP:ED_TOP_MARGIN sw:MetricField:TP_FRM_EXT:ED_TOP_MARGIN +AbstaendeUnten sym:sw:MetricField:TP_FRM_WRAP:ED_BOTTOM_MARGIN sw:MetricField:TP_FRM_EXT:ED_BOTTOM_MARGIN +ErsterAbsatz sym:sw:CheckBox:TP_FRM_WRAP:CB_ANCHOR_ONLY +ImHintergrund sym:sw:CheckBox:TP_FRM_WRAP:CB_TRANSPARENT +Kontur sym:sw:CheckBox:TP_FRM_WRAP:CB_OUTLINE +NurAussen sym:sw:CheckBox:TP_FRM_WRAP:CB_ONLYOUTSIDE -*TabUmrandung HID_BORDER -Vorgaben HID_BORDER_CTL_PRESETS -Stil cui:ListBox:RID_SVXPAGE_BORDER:LB_LINESTYLE -StilFarbe cui:ListBox:RID_SVXPAGE_BORDER:LB_LINECOLOR -Position HID_BORDER_CTL_SHADOWS -Groesse cui:MetricField:RID_SVXPAGE_BORDER:ED_SHADOWSIZE -SchattenFarbe cui:ListBox:RID_SVXPAGE_BORDER:LB_SHADOWCOLOR -Zurueck HID_TABDLG_RESET_BTN -Standard HID_TABDLG_STANDARD_BTN -Links cui:MetricField:RID_SVXPAGE_BORDER:MF_LEFT -Rechts cui:MetricField:RID_SVXPAGE_BORDER:MF_RIGHT -Oben cui:MetricField:RID_SVXPAGE_BORDER:MF_TOP -Unten cui:MetricField:RID_SVXPAGE_BORDER:MF_BOTTOM -Synchronisieren cui:CheckBox:RID_SVXPAGE_BORDER:CB_SYNC +*TabUmrandung sym:CUI_HID_BORDER +Vorgaben sym:CUI_HID_BORDER_CTL_PRESETS +Stil sym:cui:ListBox:RID_SVXPAGE_BORDER:LB_LINESTYLE +StilFarbe sym:cui:ListBox:RID_SVXPAGE_BORDER:LB_LINECOLOR +Position sym:CUI_HID_BORDER_CTL_SHADOWS +Groesse sym:cui:MetricField:RID_SVXPAGE_BORDER:ED_SHADOWSIZE +SchattenFarbe sym:cui:ListBox:RID_SVXPAGE_BORDER:LB_SHADOWCOLOR +Zurueck sym:SFX2_HID_TABDLG_RESET_BTN +Standard sym:SFX2_HID_TABDLG_STANDARD_BTN +Links sym:cui:MetricField:RID_SVXPAGE_BORDER:MF_LEFT +Rechts sym:cui:MetricField:RID_SVXPAGE_BORDER:MF_RIGHT +Oben sym:cui:MetricField:RID_SVXPAGE_BORDER:MF_TOP +Unten sym:cui:MetricField:RID_SVXPAGE_BORDER:MF_BOTTOM +Synchronisieren sym:cui:CheckBox:RID_SVXPAGE_BORDER:CB_SYNC +TabUmrandungChart TabLinie -*TabVariablen HID_FLD_VAR -Feldtyp SW:LISTBOX:TP_FLD_VAR:LB_VARTYPE -Auswahl SW:LISTBOX:TP_FLD_VAR:LB_VARSELECTION -Formatliste SW:LISTBOX:TP_FLD_VAR:LB_VARFORMAT -Zahlenformat SW:LISTBOX:TP_FLD_VAR:LB_VARNUMFORMAT -NameText SW:EDIT:TP_FLD_VAR:ED_VARNAME -Wert SW:EDIT:TP_FLD_VAR:ED_VARVALUE -Hinweis SW:EDIT:TP_FLD_VAR:ED_VARVALUE -Korrektur SW:EDIT:TP_FLD_VAR:ED_VARVALUE -Formel SW:EDIT:TP_FLD_VAR:ED_VARVALUE -Unsichtbar SW:CHECKBOX:TP_FLD_VAR:CB_VARINVISIBLE -Uebernehmen HID_FLDVAR_APPLY -Loeschen HID_FLDVAR_DELETE -Einfuegen HID_FIELD_INSERT -Schliessen HID_FIELD_CLOSE +*TabVariablen sym:SW_HID_FLD_VAR +Feldtyp sym:sw:ListBox:TP_FLD_VAR:LB_VARTYPE +Auswahl sym:sw:ListBox:TP_FLD_VAR:LB_VARSELECTION +Formatliste sym:sw:ListBox:TP_FLD_VAR:LB_VARFORMAT +Zahlenformat sym:sw:ListBox:TP_FLD_VAR:LB_VARNUMFORMAT +NameText sym:sw:Edit:TP_FLD_VAR:ED_VARNAME +Wert sym:sw:Edit:TP_FLD_VAR:ED_VARVALUE +Hinweis sym:sw:Edit:TP_FLD_VAR:ED_VARVALUE +Korrektur sym:sw:Edit:TP_FLD_VAR:ED_VARVALUE +Formel sym:sw:Edit:TP_FLD_VAR:ED_VARVALUE +Unsichtbar sym:sw:CheckBox:TP_FLD_VAR:CB_VARINVISIBLE +Uebernehmen sym:SW_HID_FLDVAR_APPLY +Loeschen sym:SW_HID_FLDVAR_DELETE +Einfuegen sym:SW_HID_FIELD_INSERT +Schliessen sym:SW_HID_FIELD_CLOSE -*TabVerbinder HID_PAGE_CONNECTION -Linie1 cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_1 -Linie2 cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_2 -Linie3 cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_3 -AnfangHorizontal cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_HORZ_1 -AnfangVertikal cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_VERT_1 -EndeHorizontal cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_HORZ_2 -EndeVertikal cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_VERT_2 -Typ cui:ListBox:RID_SVXPAGE_CONNECTION:LB_TYPE +*TabVerbinder sym:CUI_HID_PAGE_CONNECTION +Linie1 sym:cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_1 +Linie2 sym:cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_2 +Linie3 sym:cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_LINE_3 +AnfangHorizontal sym:cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_HORZ_1 +AnfangVertikal sym:cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_VERT_1 +EndeHorizontal sym:cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_HORZ_2 +EndeVertikal sym:cui:MetricField:RID_SVXPAGE_CONNECTION:MTR_FLD_VERT_2 +Typ sym:cui:ListBox:RID_SVXPAGE_CONNECTION:LB_TYPE -*TabVerwalten HID_MANAGE_STYLES -VorlagenName sfx2:Edit:TP_MANAGE_STYLES:ED_NAME -Aktualisieren sfx2:CheckBox:TP_MANAGE_STYLES:CB_AUTO -Folgevorlage sfx2:ListBox:TP_MANAGE_STYLES:LB_NEXT -VerknuepftMit sfx2:ListBox:TP_MANAGE_STYLES:LB_BASE -Bereich sfx2:ListBox:TP_MANAGE_STYLES:LB_REGION -Enthaelt sfx2:MultiLineEdit:TP_MANAGE_STYLES:ED_DESC -Zurueck HID_TABDLG_RESET_BTN -Standard HID_TABDLG_STANDARD_BTN +*TabVerwalten sym:SFX2_HID_MANAGE_STYLES +VorlagenName sym:sfx2:Edit:TP_MANAGE_STYLES:ED_NAME +Aktualisieren sym:sfx2:CheckBox:TP_MANAGE_STYLES:CB_AUTO +Folgevorlage sym:sfx2:ListBox:TP_MANAGE_STYLES:LB_NEXT +VerknuepftMit sym:sfx2:ListBox:TP_MANAGE_STYLES:LB_BASE +Bereich sym:sfx2:ListBox:TP_MANAGE_STYLES:LB_REGION +Enthaelt sym:sfx2:MultiLineEdit:TP_MANAGE_STYLES:ED_DESC +Zurueck sym:SFX2_HID_TABDLG_RESET_BTN +Standard sym:SFX2_HID_TABDLG_STANDARD_BTN -*TabVerzeichnisseVerzeichnis HID_TP_TOX_SELECT -VerzeichnisTyp sw:ListBox:TP_TOX_SELECT:LB_TYPE -VerzeichnisTitel sw:Edit:TP_TOX_SELECT:ED_TITLE -VerzeichnisGeschuetzt sw:CheckBox:TP_TOX_SELECT:CB_READONLY -ErstellenFuer sw:ListBox:TP_TOX_SELECT:LB_AREA -AuswertenBis sw:NumericField:TP_TOX_SELECT:NF_LEVEL -ErzeugenAusGliederung sw:CheckBox:TP_TOX_SELECT:CB_FROMHEADINGS -ErzeugenAusVorlagen sw:CheckBox:TP_TOX_SELECT:CB_ADDSTYLES -VorlagenAuswahl sw:PushButton:TP_TOX_SELECT:PB_ADDSTYLES -ErzeugenAusMarkierungen sw:CheckBox:TP_TOX_SELECT:CB_TOXMARKS -ZusammenfassenGleicherEintraege sw:CheckBox:TP_TOX_SELECT:CB_COLLECTSAME -ZusammenfassenMitEff sw:CheckBox:TP_TOX_SELECT:CB_USEFF -ZusammenfassenMitStrich sw:CheckBox:TP_TOX_SELECT:CB_USE_DASH -GrossKlein sw:CheckBox:TP_TOX_SELECT:CB_CASESENSITIVE -AutomatischGross sw:CheckBox:TP_TOX_SELECT:CB_INITIALCAPS -EigenerEintrag sw:CheckBox:TP_TOX_SELECT:CB_KEYASENTRY -Konkordanzdatei sw:CheckBox:TP_TOX_SELECT:CB_FROMFILE -KonkordanzAuswahl sw:MenuButton:TP_TOX_SELECT:MB_AUTOMARK -Beschriftungen sw:RadioButton:TP_TOX_SELECT:RB_FROMCAPTIONS -Objektnamen sw:RadioButton:TP_TOX_SELECT:RB_FROMOBJECTNAMES -Kategorie sw:ListBox:TP_TOX_SELECT:LB_CAPTIONSEQUENCE -Anzeige sw:ListBox:TP_TOX_SELECT:LB_DISPLAYTYPE -Vorlagen sw:CheckBox:TP_TOX_SELECT:CB_ADDSTYLES -WelcheVorlage sw:PushButton:TP_TOX_SELECT:PB_ADDSTYLES -Tabellen sw:CheckBox:TP_TOX_SELECT:CB_FROMTABLES -Textrahmen sw:CheckBox:TP_TOX_SELECT:CB_FROMFRAMES -Grafiken sw:CheckBox:TP_TOX_SELECT:CB_FROMGRAPHICS -OLEObjekte sw:CheckBox:TP_TOX_SELECT:CB_FROMOLE -Ursprungskapitel sw:CheckBox:TP_TOX_SELECT:CB_LEVELFROMCHAPTER -ErzeugenAusObjekt HID_OLE_CHECKLB -EintraegeNumerieren sw:CheckBox:TP_TOX_SELECT:CB_SEQUENCE -Klammern sw:ListBox:TP_TOX_SELECT:LB_BRACKET -SortLanguage sw:ListBox:TP_TOX_SELECT:LB_LANGUAGE -SortKeyType sw:ListBox:TP_TOX_SELECT:LB_SORTALG +*TabVerzeichnisseVerzeichnis sym:SW_HID_TP_TOX_SELECT +VerzeichnisTyp sym:sw:ListBox:TP_TOX_SELECT:LB_TYPE +VerzeichnisTitel sym:sw:Edit:TP_TOX_SELECT:ED_TITLE +VerzeichnisGeschuetzt sym:sw:CheckBox:TP_TOX_SELECT:CB_READONLY +ErstellenFuer sym:sw:ListBox:TP_TOX_SELECT:LB_AREA +AuswertenBis sym:sw:NumericField:TP_TOX_SELECT:NF_LEVEL +ErzeugenAusGliederung sym:sw:CheckBox:TP_TOX_SELECT:CB_FROMHEADINGS +ErzeugenAusVorlagen sym:sw:CheckBox:TP_TOX_SELECT:CB_ADDSTYLES +VorlagenAuswahl sym:sw:PushButton:TP_TOX_SELECT:PB_ADDSTYLES +ErzeugenAusMarkierungen sym:sw:CheckBox:TP_TOX_SELECT:CB_TOXMARKS +ZusammenfassenGleicherEintraege sym:sw:CheckBox:TP_TOX_SELECT:CB_COLLECTSAME +ZusammenfassenMitEff sym:sw:CheckBox:TP_TOX_SELECT:CB_USEFF +ZusammenfassenMitStrich sym:sw:CheckBox:TP_TOX_SELECT:CB_USE_DASH +GrossKlein sym:sw:CheckBox:TP_TOX_SELECT:CB_CASESENSITIVE +AutomatischGross sym:sw:CheckBox:TP_TOX_SELECT:CB_INITIALCAPS +EigenerEintrag sym:sw:CheckBox:TP_TOX_SELECT:CB_KEYASENTRY +Konkordanzdatei sym:sw:CheckBox:TP_TOX_SELECT:CB_FROMFILE +KonkordanzAuswahl sym:sw:MenuButton:TP_TOX_SELECT:MB_AUTOMARK +Beschriftungen sym:sw:RadioButton:TP_TOX_SELECT:RB_FROMCAPTIONS +Objektnamen sym:sw:RadioButton:TP_TOX_SELECT:RB_FROMOBJECTNAMES +Kategorie sym:sw:ListBox:TP_TOX_SELECT:LB_CAPTIONSEQUENCE +Anzeige sym:sw:ListBox:TP_TOX_SELECT:LB_DISPLAYTYPE +Vorlagen sym:sw:CheckBox:TP_TOX_SELECT:CB_ADDSTYLES +WelcheVorlage sym:sw:PushButton:TP_TOX_SELECT:PB_ADDSTYLES +Tabellen sym:sw:CheckBox:TP_TOX_SELECT:CB_FROMTABLES +Textrahmen sym:sw:CheckBox:TP_TOX_SELECT:CB_FROMFRAMES +Grafiken sym:sw:CheckBox:TP_TOX_SELECT:CB_FROMGRAPHICS +OLEObjekte sym:sw:CheckBox:TP_TOX_SELECT:CB_FROMOLE +Ursprungskapitel sym:sw:CheckBox:TP_TOX_SELECT:CB_LEVELFROMCHAPTER +ErzeugenAusObjekt sym:SW_HID_OLE_CHECKLB +EintraegeNumerieren sym:sw:CheckBox:TP_TOX_SELECT:CB_SEQUENCE +Klammern sym:sw:ListBox:TP_TOX_SELECT:LB_BRACKET +SortLanguage sym:sw:ListBox:TP_TOX_SELECT:LB_LANGUAGE +SortKeyType sym:sw:ListBox:TP_TOX_SELECT:LB_SORTALG -*TabVerzeichnisseEintraege HID_TP_TOX_ENTRY -AuswahlEbene HID_INSERT_INDEX_ENTRY_LEVEL_LB -Kapitelnummer sw:PushButton:TP_TOX_ENTRY:PB_ENTRYNO -Kapitelinfo sw:PushButton:TP_TOX_ENTRY:PB_CHAPTERINFO -Eintragstext sw:PushButton:TP_TOX_ENTRY:PB_ENTRY -Tabulator sw:PushButton:TP_TOX_ENTRY:PB_TAB -Tabulatorposition sw:MetricField:TP_TOX_ENTRY:MF_TABPOS -Seitennummer sw:PushButton:TP_TOX_ENTRY:PB_PAGENO -Hyperlink sw:PushButton:TP_TOX_ENTRY:PB_HYPERLINK -ZeichenvorlageBearbeiten sw:PushButton:TP_TOX_ENTRY:PB_EDITSTYLE -Zeichenvorlage sw:ListBox:TP_TOX_ENTRY:LB_CHAPTERENTRY -ZeichenvorlageAuswahl sw:ListBox:TP_TOX_ENTRY:LB_CHARSTYLE -ZeichenvorlageHaupteintraege sw:ListBox:TP_TOX_ENTRY:LB_MAIN_ENTRY_STYLE -Fuellzeichen sw:ComboBox:TP_TOX_ENTRY:CB_FILLCHAR -AlphabetischesTrennzeichen sw:CheckBox:TP_TOX_ENTRY:CB_ALPHADELIM -SchluesselKommasepariert sw:CheckBox:TP_TOX_ENTRY:CB_COMMASEPARATED -AmRechtenRand sw:CheckBox:TP_TOX_ENTRY:CB_AUTORIGHT -PositionTabulatorRelativ sw:CheckBox:TP_TOX_ENTRY:CB_RELTOSTYLE -Aufbau HID_TOKEN_WINDOW -AufbauText HID_TOX_ENTRY_EDIT -AufbauAuswahl HID_TOX_ENTRY_BUTTON -AufbauEinfuegen sw:PushButton:TP_TOX_ENTRY:PB_AUTHINSERT -AufbauEntfernen sw:PushButton:TP_TOX_ENTRY:PB_AUTHREMOVE +*TabVerzeichnisseEintraege sym:SW_HID_TP_TOX_ENTRY +AuswahlEbene sym:SW_HID_INSERT_INDEX_ENTRY_LEVEL_LB +Kapitelnummer sym:sw:PushButton:TP_TOX_ENTRY:PB_ENTRYNO +Kapitelinfo sym:sw:PushButton:TP_TOX_ENTRY:PB_CHAPTERINFO +Eintragstext sym:sw:PushButton:TP_TOX_ENTRY:PB_ENTRY +Tabulator sym:sw:PushButton:TP_TOX_ENTRY:PB_TAB +Tabulatorposition sym:sw:MetricField:TP_TOX_ENTRY:MF_TABPOS +Seitennummer sym:sw:PushButton:TP_TOX_ENTRY:PB_PAGENO +Hyperlink sym:sw:PushButton:TP_TOX_ENTRY:PB_HYPERLINK +ZeichenvorlageBearbeiten sym:sw:PushButton:TP_TOX_ENTRY:PB_EDITSTYLE +Zeichenvorlage sym:sw:ListBox:TP_TOX_ENTRY:LB_CHAPTERENTRY +ZeichenvorlageAuswahl sym:sw:ListBox:TP_TOX_ENTRY:LB_CHARSTYLE +ZeichenvorlageHaupteintraege sym:sw:ListBox:TP_TOX_ENTRY:LB_MAIN_ENTRY_STYLE +Fuellzeichen sym:sw:ComboBox:TP_TOX_ENTRY:CB_FILLCHAR +AlphabetischesTrennzeichen sym:sw:CheckBox:TP_TOX_ENTRY:CB_ALPHADELIM +SchluesselKommasepariert sym:sw:CheckBox:TP_TOX_ENTRY:CB_COMMASEPARATED +AmRechtenRand sym:sw:CheckBox:TP_TOX_ENTRY:CB_AUTORIGHT +PositionTabulatorRelativ sym:sw:CheckBox:TP_TOX_ENTRY:CB_RELTOSTYLE +Aufbau sym:SW_HID_TOKEN_WINDOW +AufbauText sym:SW_HID_TOX_ENTRY_EDIT +AufbauAuswahl sym:SW_HID_TOX_ENTRY_BUTTON +AufbauEinfuegen sym:sw:PushButton:TP_TOX_ENTRY:PB_AUTHINSERT +AufbauEntfernen sym:sw:PushButton:TP_TOX_ENTRY:PB_AUTHREMOVE -*TabVerzeichnisseVorlagen HID_TOX_STYLES_PAGE -ZuordnungStufen sw:ListBox:TP_TOX_STYLES:LB_LEVEL -ZuordnungAbsatzvorlagen sw:ListBox:TP_TOX_STYLES:LB_PARALAY -Standard sw:PushButton:TP_TOX_STYLES:BT_STD -Zuordnen sw:ImageButton:TP_TOX_STYLES:BT_ASSIGN -Bearbeiten sw:PushButton:TP_TOX_STYLES:BT_EDIT_STYLE +*TabVerzeichnisseVorlagen sym:SW_HID_TOX_STYLES_PAGE +ZuordnungStufen sym:sw:ListBox:TP_TOX_STYLES:LB_LEVEL +ZuordnungAbsatzvorlagen sym:sw:ListBox:TP_TOX_STYLES:LB_PARALAY +Standard sym:sw:PushButton:TP_TOX_STYLES:BT_STD +Zuordnen sym:sw:ImageButton:TP_TOX_STYLES:BT_ASSIGN +Bearbeiten sym:sw:PushButton:TP_TOX_STYLES:BT_EDIT_STYLE -*TabVisitenkarten HID_TP_VISITING_CARDS -Inhalt HID_BUSINESS_CARD_CONTENT -WelcherAutotext sw:ListBox:TP_VISITING_CARDS:LB_AUTO_TEXT_GROUP +*TabVisitenkarten sym:SW_HID_TP_VISITING_CARDS +Inhalt sym:SW_HID_BUSINESS_CARD_CONTENT +WelcherAutotext sym:sw:ListBox:TP_VISITING_CARDS:LB_AUTO_TEXT_GROUP -*TabWerte SC:TABPAGE:TP_VALIDATION_VALUES -Zulassen SC:LISTBOX:TP_VALIDATION_VALUES:LB_ALLOW -LeerzellenZulassen sc:CheckBox:TP_VALIDATION_VALUES:TSB_ALLOW_BLANKS -Daten SC:LISTBOX:TP_VALIDATION_VALUES:LB_VALUE -Wert SC:EDIT:TP_VALIDATION_VALUES:EDT_MIN -Minimum SC:EDIT:TP_VALIDATION_VALUES:EDT_MIN -Maximum sc:Edit:TP_VALIDATION_VALUES:EDT_MAX -ShowSelectionList sc:CheckBox:TP_VALIDATION_VALUES:CB_SHOWLIST -ListSortEntries sc:CheckBox:TP_VALIDATION_VALUES:CB_SORTLIST -CriteriaListEntries sc:MultiLineEdit:TP_VALIDATION_VALUES:EDT_LIST -SourceShrink sc:ImageButton:TP_VALIDATION_VALUES:RB_VALIDITY_REF -ValidityReset HID_TABDLG_RESET_BTN +*TabWerte sym:sc:TabPage:TP_VALIDATION_VALUES +Zulassen sym:sc:ListBox:TP_VALIDATION_VALUES:LB_ALLOW +LeerzellenZulassen sym:sc:CheckBox:TP_VALIDATION_VALUES:TSB_ALLOW_BLANKS +Daten sym:sc:ListBox:TP_VALIDATION_VALUES:LB_VALUE +Wert sym:sc:Edit:TP_VALIDATION_VALUES:EDT_MIN +Minimum sym:sc:Edit:TP_VALIDATION_VALUES:EDT_MIN +Maximum sym:sc:Edit:TP_VALIDATION_VALUES:EDT_MAX +ShowSelectionList sym:sc:CheckBox:TP_VALIDATION_VALUES:CB_SHOWLIST +ListSortEntries sym:sc:CheckBox:TP_VALIDATION_VALUES:CB_SORTLIST +CriteriaListEntries sym:sc:MultiLineEdit:TP_VALIDATION_VALUES:EDT_LIST +SourceShrink sym:sc:ImageButton:TP_VALIDATION_VALUES:RB_VALIDITY_REF +ValidityReset sym:SFX2_HID_TABDLG_RESET_BTN -*TabWortergaenzung HID_OFAPAGE_AUTOCOMPLETE_OPTIONS -WoerterErgaenzen cui:CheckBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_ACTIV -VorschlaegeSammeln cui:CheckBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_COLLECT -AlsTipphilfe cui:CheckBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_AS_TIP -MinWortlaenge cui:NumericField:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:NF_MIN_WORDLEN -MaxEintraege cui:NumericField:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:NF_MAX_ENTRIES -AnnehmenMit cui:ListBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:DCB_EXPAND_KEY -GesammelteWorte cui:MultiListBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:LB_ENTRIES -EintragLoeschen cui:PushButton:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:PB_ENTRIES -AppendSpace cui:CheckBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_APPEND_SPACE -KeepList cui:CheckBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_REMOVE_LIST +*TabWortergaenzung sym:CUI_HID_OFAPAGE_AUTOCOMPLETE_OPTIONS +WoerterErgaenzen sym:cui:CheckBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_ACTIV +VorschlaegeSammeln sym:cui:CheckBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_COLLECT +AlsTipphilfe sym:cui:CheckBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_AS_TIP +MinWortlaenge sym:cui:NumericField:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:NF_MIN_WORDLEN +MaxEintraege sym:cui:NumericField:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:NF_MAX_ENTRIES +AnnehmenMit sym:cui:ListBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:DCB_EXPAND_KEY +GesammelteWorte sym:cui:MultiListBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:LB_ENTRIES +EintragLoeschen sym:cui:PushButton:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:PB_ENTRIES +AppendSpace sym:cui:CheckBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_APPEND_SPACE +KeepList sym:cui:CheckBox:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_REMOVE_LIST -*TabZahlen HID_NUMBERFORMAT -Kategorie cui:ListBox:RID_SVXPAGE_NUMBERFORMAT:LB_CATEGORY -ZahlenFormat HID_NUMBERFORMAT_LB_FORMAT -Sprache cui:ListBox:RID_SVXPAGE_NUMBERFORMAT:LB_LANGUAGE -FormatPreview HID_NUMBERFORMAT_WND_NUMBER_PREVIEW -FormatCode cui:Edit:RID_SVXPAGE_NUMBERFORMAT:ED_FORMAT -FuehrendeNullen cui:NumericField:RID_SVXPAGE_NUMBERFORMAT:ED_LEADZEROES -Nachkommastellen cui:NumericField:RID_SVXPAGE_NUMBERFORMAT:ED_DECIMALS -NegativInRot cui:CheckBox:RID_SVXPAGE_NUMBERFORMAT:BTN_NEGRED -Tausenderpunkt cui:CheckBox:RID_SVXPAGE_NUMBERFORMAT:BTN_THOUSAND -PBHinzufuegen HID_NUMBERFORMAT_TBI_ADD -PBEntfernen HID_NUMBERFORMAT_TBI_REMOVE -PBInfo HID_NUMBERFORMAT_TBI_INFO -Kommentar cui:EDIT:RID_SVXPAGE_NUMBERFORMAT:ED_COMMENT -Zurueck HID_TABDLG_RESET_BTN -FormatSprache cui:ListBox:RID_SVXPAGE_NUMBERFORMAT:LB_CURRENCY -Standard HID_TABDLG_STANDARD_BTN -Standardformat cui:CheckBox:RID_SVXPAGE_NUMBERFORMAT:CB_SOURCEFORMAT +*TabZahlen sym:CUI_HID_NUMBERFORMAT +Kategorie sym:cui:ListBox:RID_SVXPAGE_NUMBERFORMAT:LB_CATEGORY +ZahlenFormat sym:CUI_HID_NUMBERFORMAT_LB_FORMAT +Sprache sym:cui:ListBox:RID_SVXPAGE_NUMBERFORMAT:LB_LANGUAGE +FormatPreview sym:CUI_HID_NUMBERFORMAT_WND_NUMBER_PREVIEW +FormatCode sym:cui:Edit:RID_SVXPAGE_NUMBERFORMAT:ED_FORMAT +FuehrendeNullen sym:cui:NumericField:RID_SVXPAGE_NUMBERFORMAT:ED_LEADZEROES +Nachkommastellen sym:cui:NumericField:RID_SVXPAGE_NUMBERFORMAT:ED_DECIMALS +NegativInRot sym:cui:CheckBox:RID_SVXPAGE_NUMBERFORMAT:BTN_NEGRED +Tausenderpunkt sym:cui:CheckBox:RID_SVXPAGE_NUMBERFORMAT:BTN_THOUSAND +PBHinzufuegen sym:CUI_HID_NUMBERFORMAT_TBI_ADD +PBEntfernen sym:CUI_HID_NUMBERFORMAT_TBI_REMOVE +PBInfo sym:CUI_HID_NUMBERFORMAT_TBI_INFO +Kommentar sym:cui:Edit:RID_SVXPAGE_NUMBERFORMAT:ED_COMMENT +Zurueck sym:SFX2_HID_TABDLG_RESET_BTN +FormatSprache sym:cui:ListBox:RID_SVXPAGE_NUMBERFORMAT:LB_CURRENCY +Standard sym:SFX2_HID_TABDLG_STANDARD_BTN +Standardformat sym:cui:CheckBox:RID_SVXPAGE_NUMBERFORMAT:CB_SOURCEFORMAT -*TabZeilennumerierung HID_LINENUMBERING -Einschalten SW:CHECKBOX:TP_LINENUMBERING:CB_NUMBERING_ON -Vorlage SW:LISTBOX:TP_LINENUMBERING:LB_CHAR_STYLE -Format SW:LISTBOX:TP_LINENUMBERING:LB_FORMAT -Position SW:LISTBOX:TP_LINENUMBERING:LB_POS -Abstand SW:METRICFIELD:TP_LINENUMBERING:MF_OFFSET -Intervall SW:NUMERICFIELD:TP_LINENUMBERING:NF_NUM_INVERVAL -TeilerText SW:EDIT:TP_LINENUMBERING:ED_DIVISOR -Alle SW:NUMERICFIELD:TP_LINENUMBERING:NF_DIV_INTERVAL -Leerzeilen SW:CHECKBOX:TP_LINENUMBERING:CB_COUNT_EMPTYLINES -ZeilenInTextrahmen SW:CHECKBOX:TP_LINENUMBERING:CB_COUNT_FRAMELINES +*TabZeilennumerierung sym:SW_HID_LINENUMBERING +Einschalten sym:sw:CheckBox:TP_LINENUMBERING:CB_NUMBERING_ON +Vorlage sym:sw:ListBox:TP_LINENUMBERING:LB_CHAR_STYLE +Format sym:sw:ListBox:TP_LINENUMBERING:LB_FORMAT +Position sym:sw:ListBox:TP_LINENUMBERING:LB_POS +Abstand sym:sw:MetricField:TP_LINENUMBERING:MF_OFFSET +Intervall sym:sw:NumericField:TP_LINENUMBERING:NF_NUM_INVERVAL +TeilerText sym:sw:Edit:TP_LINENUMBERING:ED_DIVISOR +Alle sym:sw:NumericField:TP_LINENUMBERING:NF_DIV_INTERVAL +Leerzeilen sym:sw:CheckBox:TP_LINENUMBERING:CB_COUNT_EMPTYLINES +ZeilenInTextrahmen sym:sw:CheckBox:TP_LINENUMBERING:CB_COUNT_FRAMELINES -*TabZellschutz HID_SCPAGE_PROTECTION -Gesperrt sc:TriStateBox:RID_SCPAGE_PROTECTION:BTN_PROTECTED -AllesAusblenden sc:TriStateBox:RID_SCPAGE_PROTECTION:BTN_HIDE_ALL -FormelAusblenden sc:TriStateBox:RID_SCPAGE_PROTECTION:BTN_HIDE_FORMULAR -FuerAusdruckAusblenden sc:TriStateBox:RID_SCPAGE_PROTECTION:BTN_HIDE_PRINT -Zurueck HID_TABDLG_RESET_BTN -Standard HID_TABDLG_STANDARD_BTN +*TabZellschutz sym:SC_HID_SCPAGE_PROTECTION +Gesperrt sym:sc:TriStateBox:RID_SCPAGE_PROTECTION:BTN_PROTECTED +AllesAusblenden sym:sc:TriStateBox:RID_SCPAGE_PROTECTION:BTN_HIDE_ALL +FormelAusblenden sym:sc:TriStateBox:RID_SCPAGE_PROTECTION:BTN_HIDE_FORMULAR +FuerAusdruckAusblenden sym:sc:TriStateBox:RID_SCPAGE_PROTECTION:BTN_HIDE_PRINT +Zurueck sym:SFX2_HID_TABDLG_RESET_BTN +Standard sym:SFX2_HID_TABDLG_STANDARD_BTN -*TabZuschneiden HID_SVXPAGE_GRFCROP -Links cui:MetricField:RID_SVXPAGE_GRFCROP:MF_LEFT -Rechts cui:MetricField:RID_SVXPAGE_GRFCROP:MF_RIGHT -Oben cui:MetricField:RID_SVXPAGE_GRFCROP:MF_TOP -Unten cui:MetricField:RID_SVXPAGE_GRFCROP:MF_BOTTOM -GroesseBeibehalten cui:RadioButton:RID_SVXPAGE_GRFCROP:RB_SIZECONST -MassstabBeibehalten cui:RadioButton:RID_SVXPAGE_GRFCROP:RB_ZOOMCONST -GroesseBreite cui:MetricField:RID_SVXPAGE_GRFCROP:MF_WIDTH -GroesseHoehe cui:MetricField:RID_SVXPAGE_GRFCROP:MF_HEIGHT -MassstabBreite cui:MetricField:RID_SVXPAGE_GRFCROP:MF_WIDTHZOOM -MassstabHoehe cui:MetricField:RID_SVXPAGE_GRFCROP:MF_HEIGHTZOOM -Originalgroesse cui:PushButton:RID_SVXPAGE_GRFCROP:PB_ORGSIZE +*TabZuschneiden sym:CUI_HID_SVXPAGE_GRFCROP +Links sym:cui:MetricField:RID_SVXPAGE_GRFCROP:MF_LEFT +Rechts sym:cui:MetricField:RID_SVXPAGE_GRFCROP:MF_RIGHT +Oben sym:cui:MetricField:RID_SVXPAGE_GRFCROP:MF_TOP +Unten sym:cui:MetricField:RID_SVXPAGE_GRFCROP:MF_BOTTOM +GroesseBeibehalten sym:cui:RadioButton:RID_SVXPAGE_GRFCROP:RB_SIZECONST +MassstabBeibehalten sym:cui:RadioButton:RID_SVXPAGE_GRFCROP:RB_ZOOMCONST +GroesseBreite sym:cui:MetricField:RID_SVXPAGE_GRFCROP:MF_WIDTH +GroesseHoehe sym:cui:MetricField:RID_SVXPAGE_GRFCROP:MF_HEIGHT +MassstabBreite sym:cui:MetricField:RID_SVXPAGE_GRFCROP:MF_WIDTHZOOM +MassstabHoehe sym:cui:MetricField:RID_SVXPAGE_GRFCROP:MF_HEIGHTZOOM +Originalgroesse sym:cui:PushButton:RID_SVXPAGE_GRFCROP:PB_ORGSIZE -*TabZusaetze HID_FRM_ADD -ObjektName sw:Edit:TP_FRM_ADD:ED_NAME -Alternativtext sw:Edit:TP_FRM_ADD:ED_ALT_NAME -InhaltSchuetzen sw:CheckBox:TP_FRM_ADD:CB_PROTECT_CONTENT -PositionSchuetzen sw:CheckBox:TP_FRM_ADD:CB_PROTECT_FRAME -GroesseSchuetzen sw:CheckBox:TP_FRM_ADD:CB_PROTECT_SIZE -Drucken sw:CheckBox:TP_FRM_ADD:CB_PRINT_FRAME -Editierbar SW:CHECKBOX:TP_FRM_ADD:CB_EDIT_IN_READONLY -PreviousLink sw:ListBox:TP_FRM_ADD:LB_PREV -NextLink sw:ListBox:TP_FRM_ADD:LB_NEXT -TextDirection sw:ListBox:TP_FRM_ADD:LB_TEXTFLOW +*TabZusaetze sym:SW_HID_FRM_ADD +ObjektName sym:sw:Edit:TP_FRM_ADD:ED_NAME +Alternativtext sym:sw:Edit:TP_FRM_ADD:ED_ALT_NAME +InhaltSchuetzen sym:sw:CheckBox:TP_FRM_ADD:CB_PROTECT_CONTENT +PositionSchuetzen sym:sw:CheckBox:TP_FRM_ADD:CB_PROTECT_FRAME +GroesseSchuetzen sym:sw:CheckBox:TP_FRM_ADD:CB_PROTECT_SIZE +Drucken sym:sw:CheckBox:TP_FRM_ADD:CB_PRINT_FRAME +Editierbar sym:sw:CheckBox:TP_FRM_ADD:CB_EDIT_IN_READONLY +PreviousLink sym:sw:ListBox:TP_FRM_ADD:LB_PREV +NextLink sym:sw:ListBox:TP_FRM_ADD:LB_NEXT +TextDirection sym:sw:ListBox:TP_FRM_ADD:LB_TEXTFLOW +TabZusaetzeEtiketten TabDruckerEtiketten diff --git a/testautomation/global/win/w_autop.win b/testautomation/global/win/w_autop.win index e24f9e1d37c6..6bb8c7041595 100755..100644 --- a/testautomation/global/win/w_autop.win +++ b/testautomation/global/win/w_autop.win @@ -1,29 +1,29 @@ -*AutopilotBrief1 HID_LETTER_PAGE1 -*AutopilotBrief2 HID_LETTER_PAGE2 -*AutopilotBrief3 HID_LETTER_PAGE3 -*AutopilotBrief4 HID_LETTER_PAGE4 -*AutopilotBrief5 HID_LETTER_PAGE5 -*AutopilotBrief6 HID_LETTER_PAGE6 -*AutopilotBrief7 HID_LETTER_PAGE7 -*AutopilotBrief8 HID_LETTER_PAGE8 -*AutopilotBrief9 HID_LETTER_PAGE9 -*AutopilotFax1 HID_FAX_PAGE1 -*AutopilotFax2 HID_FAX_PAGE2 -*AutopilotFax3 HID_FAX_PAGE3 -*AutopilotFax4 HID_FAX_PAGE4 -*AutopilotFax5 HID_FAX_PAGE5 -*AutopilotFax6 HID_FAX_PAGE6 -*AutopilotFax7 HID_FAX_PAGE7 -*AutopilotFax8 HID_FAX_PAGE8 -*AutopilotMemo1 HID_MEMO_PAGE1 -*AutopilotMemo2 HID_MEMO_PAGE2 -*AutopilotMemo3 HID_MEMO_PAGE3 -*AutopilotMemo4 HID_MEMO_PAGE4 -*AutopilotMemo5 HID_MEMO_PAGE5 -*AutopilotAgenda1 HID_AGENDA_PAGE1 -*AutopilotAgenda2 HID_AGENDA_PAGE2 -*AutopilotAgenda3 HID_AGENDA_PAGE3 -*AutopilotAgenda4 HID_AGENDA_PAGE4 -*AutopilotAgenda5 HID_AGENDA_PAGE5 -*AutopilotAgenda6 HID_AGENDA_PAGE6 +*AutopilotBrief1 sym:SW_HID_LETTER_PAGE1 +*AutopilotBrief2 sym:SW_HID_LETTER_PAGE2 +*AutopilotBrief3 sym:SW_HID_LETTER_PAGE3 +*AutopilotBrief4 sym:SW_HID_LETTER_PAGE4 +*AutopilotBrief5 sym:SW_HID_LETTER_PAGE5 +*AutopilotBrief6 sym:SW_HID_LETTER_PAGE6 +*AutopilotBrief7 sym:SW_HID_LETTER_PAGE7 +*AutopilotBrief8 sym:SW_HID_LETTER_PAGE8 +*AutopilotBrief9 sym:SW_HID_LETTER_PAGE9 +*AutopilotFax1 sym:SW_HID_FAX_PAGE1 +*AutopilotFax2 sym:SW_HID_FAX_PAGE2 +*AutopilotFax3 sym:SW_HID_FAX_PAGE3 +*AutopilotFax4 sym:SW_HID_FAX_PAGE4 +*AutopilotFax5 sym:SW_HID_FAX_PAGE5 +*AutopilotFax6 sym:SW_HID_FAX_PAGE6 +*AutopilotFax7 sym:SW_HID_FAX_PAGE7 +*AutopilotFax8 sym:SW_HID_FAX_PAGE8 +*AutopilotMemo1 sym:SW_HID_MEMO_PAGE1 +*AutopilotMemo2 sym:SW_HID_MEMO_PAGE2 +*AutopilotMemo3 sym:SW_HID_MEMO_PAGE3 +*AutopilotMemo4 sym:SW_HID_MEMO_PAGE4 +*AutopilotMemo5 sym:SW_HID_MEMO_PAGE5 +*AutopilotAgenda1 sym:SW_HID_AGENDA_PAGE1 +*AutopilotAgenda2 sym:SW_HID_AGENDA_PAGE2 +*AutopilotAgenda3 sym:SW_HID_AGENDA_PAGE3 +*AutopilotAgenda4 sym:SW_HID_AGENDA_PAGE4 +*AutopilotAgenda5 sym:SW_HID_AGENDA_PAGE5 +*AutopilotAgenda6 sym:SW_HID_AGENDA_PAGE6 diff --git a/testautomation/graphics/optional/d_export_graphic_a.bas b/testautomation/graphics/optional/d_export_graphic_a.bas index b5968240e024..45b5ef107409 100644..100755 --- a/testautomation/graphics/optional/d_export_graphic_a.bas +++ b/testautomation/graphics/optional/d_export_graphic_a.bas @@ -51,16 +51,16 @@ sub main endif Call sFileExport 'OBSERVE - This line must run before the following testcases! - Call tEPS '///+- Encapsulated PostScript ///' - Call tPCT '///+- Mac Pict ///' - Call tPBM '///+- Portable Bitmap ///' - Call tPGM '///+- Portable Graymap ///' - Call tPPM '///+- Portable Pixelmap ///' - Call tRAS '///+- Sun Raster Image ///' - Call tTIFF '///+- Tagged Image File Format ///' - Call tXPM '///+- X PixMap ///' - Call tGIF '///+- Graphics Interchange Format ///' - Call tJPEG '///+- Joint Photographic Experts Group ///' + Call tEPS 'Encapsulated PostScript + Call tPCT 'Mac Pict + Call tPBM 'Portable Bitmap + Call tPGM 'Portable Graymap + Call tPPM 'Portable Pixelmap + Call tRAS 'Sun Raster Image + Call tTIFF 'Tagged Image File Format + Call tXPM 'X PixMap + Call tGIF 'Graphics Interchange Format + Call tJPEG 'Joint Photographic Experts Group Call hStatusOut end sub diff --git a/testautomation/graphics/optional/d_export_graphic_b.bas b/testautomation/graphics/optional/d_export_graphic_b.bas index 97560705afc4..f1a4d783ef62 100644..100755 --- a/testautomation/graphics/optional/d_export_graphic_b.bas +++ b/testautomation/graphics/optional/d_export_graphic_b.bas @@ -50,16 +50,16 @@ sub main endif Call sFileExport 'OBSERVE - This line must run before the following testcases! - Call tPNG '///+- Portable Network Graphic ///' - Call tSVM '///+- StarView Metafile ///' - Call tPDF '///+- Portable Document Format ///' - Call tPDF_Creator '///+- test if the right creator is set in the PDF document - Call tSVG '///+- Scalable Vector Graphics ///' - Call tBMP '///+- Windows Bitmap ///' - Call tEMF '///+- Enhanced Metafile ///' - Call tMET '///+- OS/2 Metafile ///' - Call tSWF '///+- Macromedia Flash (SWF) (.swf) ///' - Call tWMF '///+- Windows Metafile ///' + Call tPNG 'Portable Network Graphic + Call tSVM 'StarView Metafile + Call tPDF 'Portable Document Format + Call tPDF_Creator 'test if the right creator is set in the PDF document + Call tSVG 'Scalable Vector Graphics + Call tBMP 'Windows Bitmap + Call tEMF 'Enhanced Metafile + Call tMET 'OS/2 Metafile + Call tSWF 'Macromedia Flash (SWF) (.swf) + Call tWMF 'Windows Metafile Call hStatusOut end sub diff --git a/testautomation/graphics/optional/export_graphic_a.bas b/testautomation/graphics/optional/export_graphic_a.bas index 9dee4114b37f..1bd3149cf650 100644..100755 --- a/testautomation/graphics/optional/export_graphic_a.bas +++ b/testautomation/graphics/optional/export_graphic_a.bas @@ -50,16 +50,16 @@ sub main endif Call sFileExport 'OBSERVE - This line must run before the following testcases! - Call tEPS '///+- Encapsulated PostScript ///' - Call tPCT '///+- Mac Pict ///' - Call tPBM '///+- Portable Bitmap ///' - Call tPGM '///+- Portable Graymap ///' - Call tPPM '///+- Portable Pixelmap ///' - Call tRAS '///+- Sun Raster Image ///' - Call tTIFF '///+- Tagged Image File Format ///' - Call tXPM '///+- X PixMap ///' - Call tGIF '///+- Graphics Interchange Format ///' - Call tJPEG '///+- Joint Photographic Experts Group ///' + Call tEPS 'Encapsulated PostScript + Call tPCT 'Mac Pict + Call tPBM 'Portable Bitmap + Call tPGM 'Portable Graymap + Call tPPM 'Portable Pixelmap + Call tRAS 'Sun Raster Image + Call tTIFF 'Tagged Image File Format + Call tXPM 'X PixMap + Call tGIF 'Graphics Interchange Format + Call tJPEG 'Joint Photographic Experts Group Call hStatusOut end sub diff --git a/testautomation/graphics/optional/export_graphic_b.bas b/testautomation/graphics/optional/export_graphic_b.bas index 9502b5005625..0abe27eb7579 100644..100755 --- a/testautomation/graphics/optional/export_graphic_b.bas +++ b/testautomation/graphics/optional/export_graphic_b.bas @@ -50,16 +50,16 @@ sub main endif Call sFileExport 'OBSERVE - This line must run before the following testcases! - Call tPDF '///+- Portable Document Format ///' - Call tPDF_Creator '///+- test if the right creator is set in the PDF document - Call tSVG '///+- Scalable Vector Graphics ///' - Call tSVM '///+- StarView Metafile ///' - Call tBMP '///+- Windows Bitmap ///' - Call tEMF '///+- Enhanced Metafile ///' - Call tPNG '///+- Portable Network Graphic ///' - Call tMET '///+- OS/2 Metafile ///' - Call tWMF '///+- Windows Metafile ///' - Call tSWF '///+- Macromedia Flash (SWF) (.swf) ///' + Call tPDF ' Portable Document Format + Call tPDF_Creator 'test if the right creator is set in the PDF document + Call tSVG 'Scalable Vector Graphics + Call tSVM 'StarView Metafile + Call tBMP 'Windows Bitmap + Call tEMF 'Enhanced Metafile + Call tPNG 'Portable Network Graphic + Call tMET 'OS/2 Metafile + Call tWMF 'Windows Metafile + Call tSWF 'Macromedia Flash (SWF) (.swf) Call hStatusOut end sub diff --git a/testautomation/graphics/optional/i_slideshow.bas b/testautomation/graphics/optional/i_slideshow.bas index 8a9062c87c05..e52427f1402a 100644..100755 --- a/testautomation/graphics/optional/i_slideshow.bas +++ b/testautomation/graphics/optional/i_slideshow.bas @@ -52,7 +52,7 @@ sub main warnlog "Add 'slide' to FILE /input/impress/locale_1.txt (take string from below)!!!" endif - '/// LOCALE Slide - 2 ///' + printlog "LOCALE Slide - 2" S1 = glLocale (2) + " 1" S2 = glLocale (2) + " 2" S3 = glLocale (2) + " 3" diff --git a/testautomation/graphics/optional/includes/global/export_graphic.inc b/testautomation/graphics/optional/includes/global/export_graphic.inc index f4c34ec36795..a5ab31c82cdc 100644 --- a/testautomation/graphics/optional/includes/global/export_graphic.inc +++ b/testautomation/graphics/optional/includes/global/export_graphic.inc @@ -33,6 +33,9 @@ testcase tEPS + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + dim x as integer dim i as integer @@ -96,6 +99,11 @@ endcase 'tEPS '------------------------------------------------------------------------- testcase tPCT + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + + + dim x as integer dim i as integer dim iWaitIndex as integer @@ -167,83 +175,15 @@ testcase tPCT endif endif - printlog "----------3rd: exporting part of the picture and inserting into new file." - hTypeKeys ("<escape><tab>") - fGetSizeXY sx1, sY, TRUE - - if ( hCallExport( OutputGrafikTBO + "1", sFilter, TRUE ) ) then - - Kontext "PCTOptions" - printlog( "Export options dialog" ) - if ( PCTOptions.Exists( 2 ) ) then - hCloseDialog( PCTOptions, "ok" ) - else - warnlog( "No export options dialog was displayed" ) - endif - - sOutputFile = OutputGrafikTBO + "1" + sExt - if ( hWaitForOutputFile( sOutputFile ) ) then - printlog( "Close file and re-insert graphics into new document" ) - hInsertGraphicsToNewFile( sOutputFile ) ' local helper function, see bottom of this file - else - warnlog( "File was not saved: " & sOutputFile ) - endif - - bTemp = fGetSizeXY( sx1, sY, bTemp ) - if (bTemp = FALSE) then - warnlog "Selected original size NOT OK :-(" - endif - endif - - hFileReOpen( "" ) - printlog "----------4th: exporting rectangle and reload file." - hRechteckErstellen ( 10, 10, 30, 40 ) - - if ( hCallExport( OutputGrafikTBO + "2" , sFilter, TRUE ) ) then - - Kontext "PCTOptions" - printlog( "Export options dialog" ) - if ( PCTOptions.Exists( 2 ) ) then - Exportwidth.SetText "9" - if Exportmeasurement.GetSelText = "inches" then - sx1 = (Exportwidth.GetText)+ """" - printlog "sx1= " & sx1 - else - sx1 = (Exportwidth.GetText)+ "cm" - endif - - if Exportmeasurement.GetSelText = "inches" then - sY = (Exportheight.GetText)+ """" - printlog "sY= " & sY - else - sY = (Exportheight.GetText)+ "cm" - endif - hCloseDialog( PCTOptions, "ok" ) - else - warnlog( "No export options dialog was displayed" ) - endif - - sOutputFile = OutputGrafikTBO + "2" + sExt - - if ( not hWaitForOutputFile( sOutputFile ) ) then - warnlog( "File was not saved: " & sOutputFile ) - endif - - printlog( "Reload file if it exists. Warn if not" ) - hFileReOpen( sOutputFile ) - - kontext "DocumentDraw" - DocumentDraw.TypeKeys ("<escape><tab>") - ContextOriginalSize - bTemp = fGetSizeXY( sx1, sY, bTemp ) - if ( not bTemp ) then warnlog "Selected original size NOT OK :-(" - endif - call hCloseDocument endcase 'tPCT '------------------------------------------------------------------------------- testcase tPBM + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + + const sFilter = "PBM - Portable Bitmap (.pbm)" const sExt = ".pbm" @@ -274,6 +214,10 @@ testcase tPBM endcase 'tPBM '------------------------------------------------------------------------------- testcase tPGM + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + + const sFilter = "PGM - Portable Graymap (.pgm)" const sExt = ".pgm" @@ -303,6 +247,10 @@ testcase tPGM endcase 'tPGM '------------------------------------------------------------------------------- testcase tPPM + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + + const sFilter = "PPM - Portable Pixelmap (.ppm)" const sExt = ".ppm" @@ -332,6 +280,10 @@ testcase tPPM endcase 'tPPM '------------------------------------------------------------------------------ testcase tRAS + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + + const sFilter = "RAS - Sun Raster Image (.ras)" const sExt = ".ras" @@ -352,6 +304,10 @@ testcase tRAS endcase 'tRAS '------------------------------------------------------------------------------ testcase tTIFF + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + + dim x as integer dim i as integer @@ -375,6 +331,10 @@ testcase tTIFF endcase 'tTIFF '------------------------------------------------------------------------------ testcase tXPM + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + + const sFilter = "XPM - X PixMap (.xpm)" const sExt = ".xpm" @@ -395,6 +355,10 @@ testcase tXPM endcase 'tXPM '------------------------------------------------------------------------------- testcase tGIF + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + + const sFilter = "GIF - Graphics Interchange Format (.gif)" const sExt = ".gif" @@ -425,6 +389,10 @@ testcase tGIF endcase 'tGIF '------------------------------------------------------------------------------- testcase tJPEG + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + + const sFilter = "JPEG - Joint Photographic Experts Group (.jpg;.jpeg;.jfif;.jif;.jpe)" const sExt = ".jpg" diff --git a/testautomation/graphics/optional/includes/global/export_graphic_2.inc b/testautomation/graphics/optional/includes/global/export_graphic_2.inc index 3beefb13dd64..71986e9b94d7 100644 --- a/testautomation/graphics/optional/includes/global/export_graphic_2.inc +++ b/testautomation/graphics/optional/includes/global/export_graphic_2.inc @@ -32,6 +32,9 @@ '\****************************************************************************** testcase tPNG + warnlog( "#i115138 - Loading test document freezes the office" ) + goto endsub + dim x as integer dim i as integer dim iWaitIndex as integer @@ -73,6 +76,10 @@ endcase 'tPNG '------------------------------------------------------------------------------- testcase tSVM + warnlog( "#i115138 - Loading test document freezes the office" ) + goto endsub + + dim x as integer dim i as integer dim sFilter as string @@ -238,176 +245,136 @@ endcase 'tSVM '------------------------------------------------------------------------------- testcase tPDF + warnlog( "#i115138 - Loading test document freezes the office" ) + goto endsub + + dim sPath as string dim sTemp as string dim iFileSize(12) as long dim i as integer - '/// Export the file 12 times: ///' - '///+ every compression level (3) and every range (3), check if button in toolbar uses last settings (6) (-> 12) ///' + printlog "Export the file 12 times: " + printlog "every compression level (3) and every range (3), check if button in toolbar uses last settings (6) (-> 12) " hFileOpen (ConvertPath ( gTesttoolPath + "graphics\required\input\graphicexport_pdf."+ExtensionString )) sleep (10) '--------------------------------------------------------------------------------------------------------------------------------------------------------- - '###### all / Screen optimized ###### - '/// File->Export as PDF document printlog "File->Export as PDF document" - '///+ range = All printlog " range = All" - '///+ compression = Screen optimized printlog " compression = Screen optimized" - kontext "Standardbar" checkexppdfwaitmax10sec - '--------------------------------------------------------- Output the first file --------------------------------------------------------------- + printlog "------------------- Output the first file ---------------------" hExportAsPDFmulti (3, TRUE, OutputGrafikTBO + 1, TRUE, FALSE, 1, 1) - '/// Export using Button in toolbar printlog "Export using Button in toolbar" - '///+ use the settings from the export before printlog " use the settings from the export before" - kontext "Standardbar" checkexppdfwaitmax10sec - '------------------------------------------------------- Output the second file ------------------------------------------------------------- + printlog "--------------------- Output the second file -------------------" hExportAsPDFmulti (1, TRUE, OutputGrafikTBO + 2, TRUE, FALSE, 1, 1) ' button in toolbar -> last settings have to be used - '###### range / Screen optimized ###### - '/// File->Export as PDF document + printlog "File->Export as PDF document" - '///+ range = Range printlog " range = Range" - '///+ compression = Screen optimized printlog " compression = Screen optimized" - kontext "Standardbar" checkexppdfwaitmax10sec - '--------------------------------------------------------- Output the third file --------------------------------------------------------------- + printlog "---------------- Output the third file --------------------" hExportAsPDFmulti (3, TRUE, OutputGrafikTBO + 3, TRUE, FALSE, 2, 1, "2") - '/// Export using Button in toolbar printlog "Export using Button in toolbar" - '///+ use the settings from the export before printlog " use the settings from the export before" - kontext "Standardbar" checkexppdfwaitmax10sec - '--------------------------------------------------------- Output the fourth file ------------------------------------------------------------- + printlog "---------------------- Output the fourth file -----------------" hExportAsPDFmulti (1, TRUE, OutputGrafikTBO + 4, TRUE, FALSE, 2, 1) ' button in toolbar -> last settings have to be used - '###### all / Print optimized ###### - '/// File->Export as PDF document printlog "File->Export as PDF document" - '///+ range = all printlog " range = all" - '///+ compression = Print optimized printlog " compression = Print optimized" - kontext "Standardbar" checkexppdfwaitmax10sec - '------------------------------------------------------------ Output the fifth file -------------------------------------------------------------- + printlog "----------------------------- Output the fifth file ------------" hExportAsPDFmulti (3, TRUE, OutputGrafikTBO + 5, TRUE, FALSE, 1, 2) - '/// Export using Button in toolbar printlog "Export using Button in toolbar" - '///+ use the settings from the export before printlog " use the settings from the export before" - kontext "Standardbar" checkexppdfwaitmax10sec - '----------------------------------------------------------- Output the sixth file --------------------------------------------------------------- + printlog "---------------------- Output the sixth file -------------------" hExportAsPDFmulti (1, TRUE, OutputGrafikTBO + 6, TRUE, FALSE, 1, 2) ' button in toolbar -> last settings have to be used - '###### range / Print optimized ###### - '/// File->Export as PDF document printlog "File->Export as PDF document" - '///+ range = Range printlog " range = Range" - '///+ compression = Screen optimized printlog " compression = Screen optimized" - kontext "Standardbar" checkexppdfwaitmax10sec - '--------------------------------------------------------- Output the seventh file ------------------------------------------------------------- + printlog "------------------ Output the seventh file ---------------------" hExportAsPDFmulti (3, TRUE, OutputGrafikTBO + 7, TRUE, FALSE, 2, 2, "2") - '/// Export using Button in toolbar printlog "Export using Button in toolbar" -' '///+ use the settings from the export before printlog " use the settings from the export before" - kontext "Standardbar" checkexppdfwaitmax10sec - '------------------------------------------------------------ Output the eight file ---------------------------------------------------------------- + printlog "---------------------- Output the eight file -------------------" hExportAsPDFmulti (1, TRUE, OutputGrafikTBO + 8, TRUE, FALSE, 2, 2) ' button in toolbar -> last settings have to be used - '###### all / Press optimized ###### - '/// File->Export as PDF document ///' - printlog "File->Export as PDF document ///'" - '///+ range = all + printlog "File->Export as PDF document" printlog " range = all" - '///+ compression = Press optimized printlog " compression = Press optimized" - kontext "Standardbar" checkexppdfwaitmax10sec - '------------------------------------------------------------ Output the ninth file ---------------------------------------------------------------- + printlog "------------------- Output the ninth file ----------------------" hExportAsPDFmulti (3, TRUE, OutputGrafikTBO + 9, TRUE, FALSE, 1, 3) - '/// Export using Button in toolbar - '///+ use the settings from the export before - + printlog "Export using Button in toolbar" + printlog "use the settings from the export before" kontext "Standardbar" checkexppdfwaitmax10sec - '------------------------------------------------------------ Output the tenth file ---------------------------------------------------------------- + printlog "------------------------- Output the tenth file ----------------" hExportAsPDFmulti (1, TRUE, OutputGrafikTBO + 10, TRUE, FALSE, 1, 3) ' button in toolbar -> last settings have to be used - '###### range / Press optimized ###### - '/// File->Export as PDF document ///' - printlog "File->Export as PDF document ///'" - '///+ range = all + printlog "File->Export as PDF document" printlog " range = all" - '///+ compression = Press optimized printlog " compression = Press optimized" - kontext "Standardbar" checkexppdfwaitmax10sec - '----------------------------------------------------------- Output the eleventh file ------------------------------------------------------------- + printlog "----------------- Output the eleventh file ---------------------" hExportAsPDFmulti (3, TRUE, OutputGrafikTBO + 11, TRUE, FALSE, 2, 3, "2") - '/// Export using Button in toolbar - '///+ use the settings from the export before - + printlog "Export using Button in toolbar" + printlog "use the settings from the export before" kontext "Standardbar" checkexppdfwaitmax10sec - '------------------------------------------------------------- Output the twelfth file -------------------------------------------------------------- + printlog "------------------ Output the twelfth file ---------------------" hExportAsPDFmulti (1, TRUE, OutputGrafikTBO + 12, TRUE, FALSE, 2, 3) ' button in toolbar -> last settings have to be used - kontext "Standardbar" checkexppdfwaitmax10sec - '----------------------------------------------------------------------------------------------------------------------------------------------------------------- + '--------------------------------------------------------------------------- for i=1 to 12 sPath = OutputGrafikTBO @@ -416,12 +383,12 @@ testcase tPDF Printlog (" - " + i + ": " + " " + iFileSize(i) + " " + sPath if (dir(sPath) <> "") then sleep(1) - '/// the first line has to be '%PDF-1.4' ///' + printlog " the first line has to be %PDF-1.4" sTemp = fGetFileText(sPath, 8) if (sTemp <> "%PDF-1.4") then Warnlog "File doesn't start with '%PDF-1.4' it is: '" + sTemp + "'" endif - '/// the last line has to be '%%EOF' ///' + printlog "the last line has to be '%%EOF' " sTemp = left(fGetFileText(sPath, -6),5) if (sTemp <> "%%EOF") then Warnlog "File doesn't end with '%%EOF' it is: '" + sTemp + "'" @@ -431,25 +398,21 @@ testcase tPDF endif next i - ' Check if the file size is the same when exporting via toolbar and file/export - ' if the size different then the options are not used when exporting via the toolbar + printlog "Check if the file size is the same when exporting via toolbar and file/export" + printlog "if the size is different then the options are not used when exporting via the toolbar" if (iFileSize(1) <> iFileSize(2)) then qaerrorlog "i100919: pdf export: different file size when exporting with file/export or button" 'Warnlog ("Diffrence in filesize for file 1 and 2") endif - ' print optimized if (iFileSize(5) <> iFileSize(6)) then qaerrorlog "i100919: pdf export: different file size when exporting with file/export or button" 'Warnlog ("Difference in filesize for file 5 and 6") endif - ' press optimized if (iFileSize(9) <> iFileSize(10)) then qaerrorlog "i100919: pdf export: different file size when exporting with file/export or button" 'Warnlog ("Difference in filesize for file 9 and 10") endif - - if (iFileSize(1) > iFileSize(5)) then qaerrorlog "i100919: pdf export: different file size when exporting with file/export or button" 'Warnlog ("Filesize for file 1 is greater then for file 5. The compression level doesn't work.") @@ -589,6 +552,9 @@ endcase 'tPDF_Creator '------------------------------------------------------------------------------- testcase tSVG + warnlog( "#i115138 - Loading test document freezes the office" ) + goto endsub + dim x as integer dim i as integer dim sFilter as string @@ -654,6 +620,9 @@ endcase 'tSVG '------------------------------------------------------------------------------- testcase tBMP + warnlog( "#i115138 - Loading test document freezes the office" ) + goto endsub + dim x as integer dim i as integer dim bTemp as boolean @@ -821,6 +790,9 @@ endcase 'tBMP '------------------------------------------------------------------------------- testcase tEMF + warnlog( "#i115138 - Loading test document freezes the office" ) + goto endsub + dim x as integer dim i as integer dim sFilter as string @@ -952,6 +924,9 @@ endcase 'tEMF '------------------------------------------------------------------------------- testcase tMET + warnlog( "#i115138 - Loading test document freezes the office" ) + goto endsub + dim x as integer dim i as integer dim iWaitIndex as integer @@ -1145,6 +1120,9 @@ endcase 'tMET '------------------------------------------------------------------------------- testcase tSWF + warnlog( "#i115138 - Loading test document freezes the office" ) + goto endsub + dim sFilter as string dim sExt as string dim x as integer @@ -1170,6 +1148,9 @@ endcase 'tSWF '------------------------------------------------------------------------------ testcase tWMF + warnlog( "#i115138 - Loading test document freezes the office" ) + goto endsub + dim x as integer dim i as integer dim iWaitIndex as integer @@ -1328,31 +1309,31 @@ endcase 'tWMF '------------------------------------------------------------------------- function fGetFileText (sFilename as string, iCount as long) as string -'/// This function is for getting the first or last n characters of a file -'///+<u>Input</u>:<ul><li>filename</li><li>number</li></ul>If the number greater 0 then get n characters from start. -'///+A number smaller 0 get from end of file. -'///+<u>Output</u>:<ul><li>string with <b><i>n</i></b> characters</li></ul> - - dim iFile as integer ' filehandle - dim iTem as integer ' get 2 bytes of the file - dim iTemByte(2) as integer ' move 1 byte from iTem in each item - dim sTemp as string ' string of file - dim iSize as long ' size in bytes of file - dim i as long ' runner :-) - - iFile = FreeFile -' Printlog "FreeFile: " + iFile - if (dir (sFilename) <> "") then -' Printlog "FileLen: " + FileLen(sFile) - Open sFilename For binary access read shared As #iFile -' Printlog "Loc: " + Loc(#iFile) ' LONG! where am i in the file? - - iSize = Lof(#iFile) ' get size in bytes of file - if (iSize > 65530) then '65536 = 64kB - 'Warnlog "fGetFileText: file '" + sFilename + "' might get problems on reading it? size is > 65530 Byte: '" + iSize + "'" - else -' printlog "iSize: " + iSize - endif + printlog "This function is for getting the first or last n characters of a file" + printlog "Input:filename number If the number greater 0 then get n characters from start." + printlog "number smaller 0 get from end of file." + printlog "Output:string with characters" + + dim iFile as integer ' filehandle + dim iTem as integer ' get 2 bytes of the file + dim iTemByte(2) as integer ' move 1 byte from iTem in each item + dim sTemp as string ' string of file + dim iSize as long ' size in bytes of file + dim i as long ' runner :-) + + iFile = FreeFile + Printlog "FreeFile: " + iFile + if (dir (sFilename) <> "") then + Printlog "FileLen: " + FileLen(sFile) + Open sFilename For binary access read shared As #iFile + Printlog "Loc: " + Loc(#iFile) ' LONG! where am i in the file? + + iSize = Lof(#iFile) ' get size in bytes of file + if (iSize > 65530) then '65536 = 64kB + 'Warnlog "fGetFileText: file '" + sFilename + "' might get problems on reading it? size is > 65530 Byte: '" + iSize + "'" + else + printlog "iSize: " + iSize + endif sTemp = "" if (iCount >= 0) then ' get bytes from file start @@ -1377,7 +1358,7 @@ function fGetFileText (sFilename as string, iCount as long) as string sTemp = chr(iTemByte(1)) + chr(iTemByte(2)) + sTemp ' put them together endif endif -' printlog "'"+left(sTemp,iSize)+"'" ' gotcha! + printlog "'"+left(sTemp,iSize)+"'" ' gotcha! if (iSize-(Abs(iCount)) >= 0) then fGetFileText = left(sTemp,Abs(iCount)) diff --git a/testautomation/graphics/optional/includes/global/g_area.inc b/testautomation/graphics/optional/includes/global/g_area.inc index 758044290d45..eb53faaa9bb3 100644 --- a/testautomation/graphics/optional/includes/global/g_area.inc +++ b/testautomation/graphics/optional/includes/global/g_area.inc @@ -39,341 +39,378 @@ testcase tiFormatArea Dim Zaehler dim Entf$ - hNewDocument '/// New impress document ///' - hRechteckErstellen (20,20,60,60) '/// create rectangle ///' - Printlog " - Change Format" '/// change format for the rectangle ///' - FormatArea - Kontext - active.SetPage TabArea - Kontext "TabArea" - FillOptions.Select 5 '/// apply bitmap as texture ///' - BitmapList.Select 3 '/// Select "Water" ///' - Tile.Check '/// tile bitmap ///' - Kontext - active.SetPage TabSchatten - kontext "TabSchatten" - Anzeigen.Check '/// apply shadow ///' - Entfernung.SetText "30" '/// set angle to 30���///' - Entf$=Entfernung.GetText '/// change distance ///' - Farbe.Select 15 '/// select color 15///' - TabSchatten.OK '/// close dialog ///' - Sleep 3 + printlog "New impress document " + hNewDocument + printlog "create rectangle " + hRechteckErstellen (20,20,60,60) + Printlog " - Change Format" + printlog "change format for the rectangle " + FormatArea + Kontext + active.SetPage TabArea + Kontext "TabArea" + printlog "apply bitmap as texture " + FillOptions.Select 5 + printlog "Select Water " + BitmapList.Select 3 + printlog "tile bitmap " + Tile.Check + Kontext + active.SetPage TabSchatten + kontext "TabSchatten" + printlog "apply shadow " + Anzeigen.Check + printlog "set angle to 30���" + Entfernung.SetText "30" + printlog "change distance " + Entf$=Entfernung.GetText + printlog "select color 15" + Farbe.Select 15 + printlog "close dialog " + TabSchatten.OK + Sleep 3 - Printlog " - Test various formats" - FormatArea '/// Format area, check if changes are saved for this object ///' - Kontext - active.SetPage TabArea - Kontext "TabArea" - if NOT FillOptions.GetSelIndex = 5 then - Warnlog "Bitmap is not checked" - else - if BitmapList.GetSelIndex <> 3 then Warnlog "Wrong bitmap used. "+ BitmapAuswahl.GetSelIndex - if NOT Tile.IsChecked then Warnlog "Tile is not checked" -' if Original.IsChecked then Warnlog "Original is not checked" -' if NOT Relativ.IsChecked then Warnlog "Relative is not checked" -' if Breite.GetText <> "90 %" then Warnlog "Width is not 90%, it is: "+Breite.GetText -' if XOffset.GetText <> "30 %" then Warnlog "XOffset is not 30%, it is: "+XOffset.GetText -' if NOT Zeile.IsChecked then Warnlog "Line is not checked" -' if Verschiebung.GetText <> "20 %" then Warnlog "Displace is not 20%, it is: " + Verschiebung.GetText - Kontext - active.SetPage TabSchatten - kontext "TabSchatten" - if NOT Anzeigen.IsChecked then - Warnlog "Show shadows is not checked" - else - if Entfernung.GetText <> Entf$ then Warnlog "Distance is not " + Entf$ + " it is: "+ Entfernung.GetText - if Farbe.GetSelIndex <> 15 then Warnlog "Wrong color for shadow. It is: "+ Farbe.GetSelIndex - end if - end if + Printlog " - Test various formats" + printlog "Format area, check if changes are saved for this object " + FormatArea + Kontext + active.SetPage TabArea + Kontext "TabArea" + if NOT FillOptions.GetSelIndex = 5 then + Warnlog "Bitmap is not checked" + else + if BitmapList.GetSelIndex <> 3 then Warnlog "Wrong bitmap used. "+ BitmapAuswahl.GetSelIndex + if NOT Tile.IsChecked then Warnlog "Tile is not checked" + ' if Original.IsChecked then Warnlog "Original is not checked" + ' if NOT Relativ.IsChecked then Warnlog "Relative is not checked" + ' if Breite.GetText <> "90 %" then Warnlog "Width is not 90%, it is: "+Breite.GetText + ' if XOffset.GetText <> "30 %" then Warnlog "XOffset is not 30%, it is: "+XOffset.GetText + ' if NOT Zeile.IsChecked then Warnlog "Line is not checked" + ' if Verschiebung.GetText <> "20 %" then Warnlog "Displace is not 20%, it is: " + Verschiebung.GetText + Kontext + active.SetPage TabSchatten + kontext "TabSchatten" + if NOT Anzeigen.IsChecked then + Warnlog "Show shadows is not checked" + else + if Entfernung.GetText <> Entf$ then Warnlog "Distance is not " + Entf$ + " it is: "+ Entfernung.GetText + if Farbe.GetSelIndex <> 15 then Warnlog "Wrong color for shadow. It is: "+ Farbe.GetSelIndex + end if + end if TabSchatten.Cancel - - hCloseDocument '/// close document ///' + printlog "close document " + hCloseDocument endcase 'tiFormatArea '-------------------------------------------------------- testcase tdFormatArea1 -Dim i -Dim j -Dim k -Dim m -Dim n -Dim Winkel_1 as string -Dim ZaehlerFarbe -Dim ZaehlerVerlauf -Dim ZaehlerSchraffur -Dim ZaehlerBitmap -Dim ColorName$ + Dim i + Dim j + Dim k + Dim m + Dim n + Dim Winkel_1 as string + Dim ZaehlerFarbe + Dim ZaehlerVerlauf + Dim ZaehlerSchraffur + Dim ZaehlerBitmap + Dim ColorName$ ColorName$ = "Bullshit" - dim Zaehler as integer + dim Zaehler as integer - Call hNewDocument '/// new document ///' - sleep 3 - Call hRechteckErstellen (30,30,70,70) '/// create rectangle ///' - sleep 2 - FormatArea '/// format area ///' - Kontext - Active.SetPage TabArea - Kontext "TabArea" - FillOptions.Select 1 '/// Select no fill ///' - sleep 2 - TabArea.OK - sleep 1 - FormatArea - Kontext - Active.SetPage TabArea - Kontext "TabArea" - sleep 1 '/// control if changes are still there after closing and reopening dialog ///' - FillOptions.Select 3'/// check gradient and select 1 ///' - ZaehlerVerlauf = GradientList.GetItemCount - for j = 1 To 2 - GradientList.Select j - TabArea.OK - FormatArea - Kontext - Active.SetPage TabArea - Kontext "TabArea" - PrintLog GradientList.GetSelText - next j - FillOptions.Select 4 '/// select hatching, control after closing and reopening dialog if changes are recognized ///' - HatchingList.GetItemCount - ZaehlerSchraffur = HatchingList.GetItemCount - for k=1 to 2'ZaehlerSchraffur - HatchingList.Select k - TabArea.OK - FormatArea - Kontext - Active.SetPage TabArea - Kontext "TabArea" - PrintLog HatchingList.GetSelText + printlog "new document " + Call hNewDocument + sleep 3 + printlog "create rectangle " + Call hRechteckErstellen (30,30,70,70) + sleep 2 + printlog "format area " + FormatArea + Kontext + Active.SetPage TabArea + Kontext "TabArea" + printlog "Select no fill " + FillOptions.Select 1 + sleep 2 + TabArea.OK + sleep 1 + FormatArea + Kontext + Active.SetPage TabArea + Kontext "TabArea" + sleep 1 + printlog "control if changes are still there after closing and reopening dialog " + printlog "check gradient and select 1 " + FillOptions.Select 3' + ZaehlerVerlauf = GradientList.GetItemCount + for j = 1 To 2 + GradientList.Select j + TabArea.OK + FormatArea + Kontext + Active.SetPage TabArea + Kontext "TabArea" + PrintLog GradientList.GetSelText + next j + printlog "select hatching, control after closing and reopening dialog if changes are recognized " + FillOptions.Select 4 + HatchingList.GetItemCount + ZaehlerSchraffur = HatchingList.GetItemCount + for k=1 to 2'ZaehlerSchraffur + HatchingList.Select k + TabArea.OK + FormatArea + Kontext + Active.SetPage TabArea + Kontext "TabArea" + PrintLog HatchingList.GetSelText next k - FillOptions.Select 5 '/// check bitmap, control if changes are permanent after closing and reopening dialog ///' - BitmapList.GetItemCount - ZaehlerBitmap = BitmapList.GetItemCount - for n=1 to ZaehlerBitmap - BitmapList.Select n - TabArea.OK - FormatArea - sleep 1 - Kontext - Active.SetPage TabArea - Kontext "TabArea" - PrintLog BitmapList.GetSelText - next n + printlog "check bitmap, control if changes are permanent after closing and reopening dialog " + FillOptions.Select 5 + BitmapList.GetItemCount + ZaehlerBitmap = BitmapList.GetItemCount + for n=1 to ZaehlerBitmap + BitmapList.Select n + TabArea.OK + FormatArea + sleep 1 + Kontext + Active.SetPage TabArea + Kontext "TabArea" + PrintLog BitmapList.GetSelText + next n - if Tile.IsChecked = False Then Tile.Check '/// check tile ///' -' if Anpassen.IsEnabled = False Then PrintLog " Option Tile activated" -' if Anpassen.IsEnabled = True Then WarnLog " Option Tile not activated" -' if Relativ.IsChecked = False Then -' SetClipboard Breite.GetText -' Relativ.Check -' If Breite.GetText = GetClipboardText Then -' WarnLog " Relative isnt working" -' else -' PrintLog " Relative works" -' end if -' end if -' -' if Kacheln.IsChecked = True Then Kacheln.UnCheck -' Anpassen.Check -' if Relativ.IsEnabled = True Then WarnLog " Option Anpassen konnte nicht aktiviert werden" -' if not Relativ.IsEnabled Then PrintLog " Option Anpassen funktioniert" -' Anpassen.Uncheck -' Original.Check -' if Breite.IsEnabled And Hoehe.IsEnabled = True Then WarnLog " Button Original funktioniert nicht" -' if Breite.IsEnabled And Hoehe.IsEnabled = False Then PrintLog " Button Original funktioniert" -' Kacheln.Check -' setClipboard XOffset.GetText -' XOffset.More 3 -' if XOffset.GetText <> GetClipboardText Then PrintLog " Position XOffset funktioniert" -' if XOffset.GetText = GetClipboardText Then WarnLog " Position XOffset funktioniert nicht" -' SetClipboard YOffset.GetText -' YOffset.More 5 -' if YOffset.GetText <> GetClipboardText Then PrintLog " Position YOffset funktioniert" -' if YOffset.GetText = GetClipboardText Then WarnLog " Position YOffset funktioniert nicht" -' PrintLog " TabArea fertig" - Kontext - Active.SetPage TabSchatten - Kontext "TabSchatten" - sleep 1 - if Anzeigen.IsChecked = True Then Anzeigen.UnCheck '/// uncheck shadow ///' - sleep 1 - if Entfernung.IsEnabled = False Then '/// check if shadow related controls are disabled with no shadow ///' - PrintLog " Show shadow works" - else - WarnLog " Show shadow does not work" - end if + printlog "check tile " + if Tile.IsChecked = False Then Tile.Check + ' if Anpassen.IsEnabled = False Then PrintLog " Option Tile activated" + ' if Anpassen.IsEnabled = True Then WarnLog " Option Tile not activated" + ' if Relativ.IsChecked = False Then + ' SetClipboard Breite.GetText + ' Relativ.Check + ' If Breite.GetText = GetClipboardText Then + ' WarnLog " Relative isnt working" + ' else + ' PrintLog " Relative works" + ' end if + ' end if + ' + ' if Kacheln.IsChecked = True Then Kacheln.UnCheck + ' Anpassen.Check + ' if Relativ.IsEnabled = True Then WarnLog " Option Anpassen konnte nicht aktiviert werden" + ' if not Relativ.IsEnabled Then PrintLog " Option Anpassen funktioniert" + ' Anpassen.Uncheck + ' Original.Check + ' if Breite.IsEnabled And Hoehe.IsEnabled = True Then WarnLog " Button Original funktioniert nicht" + ' if Breite.IsEnabled And Hoehe.IsEnabled = False Then PrintLog " Button Original funktioniert" + ' Kacheln.Check + ' setClipboard XOffset.GetText + ' XOffset.More 3 + ' if XOffset.GetText <> GetClipboardText Then PrintLog " Position XOffset funktioniert" + ' if XOffset.GetText = GetClipboardText Then WarnLog " Position XOffset funktioniert nicht" + ' SetClipboard YOffset.GetText + ' YOffset.More 5 + ' if YOffset.GetText <> GetClipboardText Then PrintLog " Position YOffset funktioniert" + ' if YOffset.GetText = GetClipboardText Then WarnLog " Position YOffset funktioniert nicht" + ' PrintLog " TabArea fertig" + Kontext + Active.SetPage TabSchatten + Kontext "TabSchatten" + sleep 1 + printlog "uncheck shadow " + if Anzeigen.IsChecked = True Then Anzeigen.UnCheck + sleep 1 + printlog "check if shadow related controls are disabled with no shadow " + if Entfernung.IsEnabled = False Then + PrintLog " Show shadow works" + else + WarnLog " Show shadow does not work" + end if - Anzeigen.Check '/// check shadow ///' - SetClipboard Entfernung.GetText '/// change distance ///' - Entfernung.More 4 - if GetClipboardText = Entfernung.GetText Then - WarnLog " Distance does not work" - else - PrintLog " Distance does work" - end if - Farbe.Select 5 '/// change shadow color ///' + printlog "check shadow " + Anzeigen.Check + printlog "change distance " + SetClipboard Entfernung.GetText + Entfernung.More 4 + if GetClipboardText = Entfernung.GetText Then + WarnLog " Distance does not work" + else + PrintLog " Distance does work" + end if + printlog "change shadow color " + Farbe.Select 5 - Kontext - Active.SetPage TabFarben - Kontext "TabFarben" - Farbe.Select 24 - sleep 1 - Farbe.Select 18 - sleep 1 - Farbe.Select 7 - Farbname.SetText "Bullshit" '/// change color ///' - Aendern.Click - sleep 1 - TabFarben.OK - FormatArea - Kontext - Active.SetPage TabArea - Kontext "TabArea" - FillOptions.Select 2 - if ColourList.GetSelText = "Bullshit" Then - PrintLog " Color selection changed " - else - WarnLog " Color selection not changed" - end if - Kontext - Active.SetPage TabFarben - Kontext "TabFarben" - Farbmodell.Select 1 + Kontext + Active.SetPage TabFarben + Kontext "TabFarben" + Farbe.Select 24 + sleep 1 + Farbe.Select 18 + sleep 1 + Farbe.Select 7 + printlog "change color " + Farbname.SetText "Bullshit" + Aendern.Click + sleep 1 + TabFarben.OK + FormatArea + Kontext + Active.SetPage TabArea + Kontext "TabArea" + FillOptions.Select 2 + if ColourList.GetSelText = "Bullshit" Then + PrintLog " Color selection changed " + else + WarnLog " Color selection not changed" + end if + Kontext + Active.SetPage TabFarben + Kontext "TabFarben" + Farbmodell.Select 1 - Kontext - Active.SetPage TabFarben '/// test RGB color model ///' - Kontext "TabFarben" - Farbmodell.Select 1 '/// switch to RGB values ///' ' 33:RVB,CMJN - printlog " Selected colourmodel RGB?: "+Farbmodell.GetSelText - if left(Farbmodell.GetSelText,1) <> "R" then warnlog "not RGB selected ? :-(" - try - R.SetText "50" - G.SetText "10" - B.SetText "90" - catch - warnlog "RGB text fields are not enabled :-(" - endcatch - Aendern.Click - TabFarben.OK - Kontext "DocumentDraw" - FormatArea - Kontext - Active.SetPage TabFarben - Kontext "TabFarben" - if (R.GetText = "50" And G.GetText = "10" And B.GetText = "90") Then - PrintLog "Changes in RGB done" - else - WarnLog " Chancges in RGB values not recognized, instead of R=50 , G=10 und B=90 it is " +R.GetText + " " + G.GetText + " " + B.GetText - end if - Farbe.Select 10 - FarbName.SetText "Brighter" '/// add a color ///' - Hinzufuegen.Click - Farbe.Select "Brighter" - Loeschen.Click '/// delete color ///' - Kontext "Active" - Active.Yes - Kontext - Active.SetPage TabFarben - Kontext "TabFarben" - Bearbeiten.Click '/// edit color ///' - Kontext "FarbeDlg" - FarbeDlg.OK - sleep 2 - Kontext - Active.SetPage TabFarben - Kontext "TabFarben" - TabFarben.OK - FormatArea - Kontext - Active.SetPage TabFarben - Kontext "TabFarben" - TabFarben.OK + Kontext + printlog "test RGB color model " + Active.SetPage TabFarben + Kontext "TabFarben" + printlog "switch to RGB values " ' 33:RVB,CMJN + Farbmodell.Select 1 + printlog " Selected colourmodel RGB?: "+Farbmodell.GetSelText + if left(Farbmodell.GetSelText,1) <> "R" then warnlog "not RGB selected ? :-(" + try + R.SetText "50" + G.SetText "10" + B.SetText "90" + catch + warnlog "RGB text fields are not enabled :-(" + endcatch + Aendern.Click + TabFarben.OK + Kontext "DocumentDraw" + FormatArea + Kontext + Active.SetPage TabFarben + Kontext "TabFarben" + if (R.GetText = "50" And G.GetText = "10" And B.GetText = "90") Then + PrintLog "Changes in RGB done" + else + WarnLog " Chancges in RGB values not recognized, instead of R=50 , G=10 und B=90 it is " +R.GetText + " " + G.GetText + " " + B.GetText + end if + Farbe.Select 10 - FormatArea - Kontext - Active.SetPage TabFarbverlaeufe - Kontext "TabFarbverlaeufe" - TabFarbverlaeufe.OK - sleep 2 + FarbName.SetText "Brighter" + printlog "add a color " + Hinzufuegen.Click + Farbe.Select "Brighter" + printlog "delete color " + Loeschen.Click + Kontext "Active" + Active.Yes + Kontext + Active.SetPage TabFarben + Kontext "TabFarben" + printlog "edit color " + Bearbeiten.Click + Kontext "FarbeDlg" + FarbeDlg.OK + sleep 2 + Kontext + Active.SetPage TabFarben + Kontext "TabFarben" + TabFarben.OK + FormatArea + Kontext + Active.SetPage TabFarben + Kontext "TabFarben" + TabFarben.OK + + FormatArea + Kontext + Active.SetPage TabFarbverlaeufe + Kontext "TabFarbverlaeufe" + TabFarbverlaeufe.OK + sleep 2 -FormatArea - sleep 2 - Kontext - Active.SetPage TabTransparenz - Kontext "TabTransparenz" - KeineTransparenz.Check '/// check if controls are disabled if transparence is disabled ///' + FormatArea + sleep 2 + Kontext + Active.SetPage TabTransparenz + Kontext "TabTransparenz" + printlog "check if controls are disabled if transparence is disabled " + KeineTransparenz.Check Printlog "- No transparency is checked, all controls should be disabled." - if MFLinTransparenz.IsEnabled Then Warnlog "- Transparency enabled" - if TransparenzverlaufTyp.IsEnabled Then Warnlog "- Graidient enabled" - if MFZentrumX.IsEnabled Then Warnlog "- Center X enabled" - if MFZentrumY.IsEnabled Then Warnlog "- Center Y enabled" - if MFWinkel.IsEnabled Then Warnlog "- Angle enabled" - if MFRand.IsEnabled Then Warnlog "- Border enabled" - if MFStartwert.IsEnabled Then Warnlog "- Start value enabled" - if MFEndwert.IsEnabled Then Warnlog "- End value enabled" + if MFLinTransparenz.IsEnabled Then Warnlog "- Transparency enabled" + if TransparenzverlaufTyp.IsEnabled Then Warnlog "- Graidient enabled" + if MFZentrumX.IsEnabled Then Warnlog "- Center X enabled" + if MFZentrumY.IsEnabled Then Warnlog "- Center Y enabled" + if MFWinkel.IsEnabled Then Warnlog "- Angle enabled" + if MFRand.IsEnabled Then Warnlog "- Border enabled" + if MFStartwert.IsEnabled Then Warnlog "- Start value enabled" + if MFEndwert.IsEnabled Then Warnlog "- End value enabled" - LineareTransparenz.Check '/// check linear tranparency ///' - Printlog "- Set transparency to linear, all controls should be enabled now" '/// control if related controls are now enabled ///' - sleep 1 - MFLinTransparenz.ToMax '/// change values of controls ///' - if MFLinTransparenz.GetText <>"100%" Then Warnlog "- Maximum value not correct" - MFLinTransparenz.ToMin - if MFLinTransparenz.GetText <>"0%" Then Warnlog "- Minimum value not correct" - if TransparenzverlaufTyp.IsEnabled Then Warnlog "- Gradient enabled" - if MFZentrumX.IsEnabled Then Warnlog "- Centrum X enabled" - if MFZentrumY.IsEnabled Then Warnlog "- Centrum Y enabled" - if MFWinkel.IsEnabled Then Warnlog "- Angle enabled" - if MFRand.IsEnabled Then Warnlog "- Border enabled" - if MFStartwert.IsEnabled Then Warnlog "- Start value enabled" - if MFEndwert.IsEnabled Then Warnlog "- End value enabled" + printlog "check linear tranparency " + LineareTransparenz.Check + Printlog "- Set transparency to linear, all controls should be enabled now" + sleep 1 + printlog "change values of controls " + MFLinTransparenz.ToMax + if MFLinTransparenz.GetText <>"100%" Then Warnlog "- Maximum value not correct" + MFLinTransparenz.ToMin + if MFLinTransparenz.GetText <>"0%" Then Warnlog "- Minimum value not correct" + if TransparenzverlaufTyp.IsEnabled Then Warnlog "- Gradient enabled" + if MFZentrumX.IsEnabled Then Warnlog "- Centrum X enabled" + if MFZentrumY.IsEnabled Then Warnlog "- Centrum Y enabled" + if MFWinkel.IsEnabled Then Warnlog "- Angle enabled" + if MFRand.IsEnabled Then Warnlog "- Border enabled" + if MFStartwert.IsEnabled Then Warnlog "- Start value enabled" + if MFEndwert.IsEnabled Then Warnlog "- End value enabled" - Transparenzverlauf.Check + Transparenzverlauf.Check Printlog "- Gradient for transprency enabled" - if MFLinTransparenz.IsEnabled = "false" Then Warnlog "- Transparency disabled" - if TransparenzverlaufTyp.IsEnabled = "false" Then Warnlog "- Gradient disabled" - if MFZentrumX.IsEnabled = "false" Then Warnlog "- Center X disabled" - if MFZentrumY.IsEnabled = "false" Then Warnlog "- Center Y disabled" - if MFWinkel.IsEnabled = "false" Then Warnlog "- Anlge disabled" - if MFRand.IsEnabled = "false" Then Warnlog "- Border disabled" - if MFStartwert.IsEnabled = "false" Then Warnlog "- Start value disabled" - if MFEndwert.IsEnabled = "false" Then Warnlog "- End value disabled" + if MFLinTransparenz.IsEnabled = "false" Then Warnlog "- Transparency disabled" + if TransparenzverlaufTyp.IsEnabled = "false" Then Warnlog "- Gradient disabled" + if MFZentrumX.IsEnabled = "false" Then Warnlog "- Center X disabled" + if MFZentrumY.IsEnabled = "false" Then Warnlog "- Center Y disabled" + if MFWinkel.IsEnabled = "false" Then Warnlog "- Anlge disabled" + if MFRand.IsEnabled = "false" Then Warnlog "- Border disabled" + if MFStartwert.IsEnabled = "false" Then Warnlog "- Start value disabled" + if MFEndwert.IsEnabled = "false" Then Warnlog "- End value disabled" Printlog "- Check if changed values are saved" - Zaehler=TransparenzverlaufTyp.GetItemCount - for i=1 to Zaehler - TransparenzverlaufTyp.Select i - SetClipboard Transparenzverlauftyp.GetSelText - TabTransparenz.OK - sleep 2 + Zaehler=TransparenzverlaufTyp.GetItemCount + for i=1 to Zaehler + TransparenzverlaufTyp.Select i + SetClipboard Transparenzverlauftyp.GetSelText + TabTransparenz.OK + sleep 2 + FormatArea + sleep 1 + Kontext + printlog "check if values are saved after closing and reopening dialog " + Active.SetPage TabTransparenz + Kontext "TabTransparenz" + if not Transparenzverlauftyp.GetSelIndex = i Then Warnlog "- Values are not correct for gradient transparency" + next i + TransparenzverlaufTyp.Select 2 + if MFZentrumX.IsEnabled Then Warnlog "- Center X should not be enabled" + if MFZentrumY.IsEnabled Then Warnlog "- Center Y should not be enabled" + MFWinkel.SetText "45" + Winkel_1 = MFWinkel.GetText + TabTransparenz.OK + sleep 2 FormatArea - sleep 1 - Kontext - Active.SetPage TabTransparenz '/// check if values are saved after closing and reopening dialog ///' - Kontext "TabTransparenz" - if not Transparenzverlauftyp.GetSelIndex = i Then Warnlog "- Values are not correct for gradient transparency" - next i - TransparenzverlaufTyp.Select 2 - if MFZentrumX.IsEnabled Then Warnlog "- Center X should not be enabled" - if MFZentrumY.IsEnabled Then Warnlog "- Center Y should not be enabled" - MFWinkel.SetText "45" - Winkel_1 = MFWinkel.GetText - TabTransparenz.OK - sleep 2 - FormatArea - sleep 2 - Kontext - Active.SetPage TabTransparenz - Kontext "TabTransparenz" + sleep 2 + Kontext + Active.SetPage TabTransparenz + Kontext "TabTransparenz" if TransparenzverlaufTyp.GetSelIndex <>2 Then - Warnlog "- Second menu-item is not choosen" + Warnlog "- Second menu-item is not choosen" end if TransparenzverlaufTyp.Select 3 - if MFWinkel.GetText <> Winkel_1 then Warnlog "- The inserted value is not accepted" - if MFWinkel.GetText <> Winkel_1 Then TransparenzverlaufTyp.Select 3 - if MFWinkel.IsEnabled Then Warnlog " - Angle should not be active when Radial is choosen" + if MFWinkel.GetText <> Winkel_1 then Warnlog "- The inserted value is not accepted" + if MFWinkel.GetText <> Winkel_1 Then TransparenzverlaufTyp.Select 3 + if MFWinkel.IsEnabled Then Warnlog " - Angle should not be active when Radial is choosen" sleep 1 MFZentrumX.SetText "30" MFZentrumY.SetText "30" @@ -384,8 +421,8 @@ FormatArea Kontext Active.SetPage TabTransparenz Kontext "TabTransparenz" - if MFZentrumX.GetText <> "30%" Then Warnlog "- Setted value for Center X is not applied." - if MFZentrumY.GetText <> "30%" Then Warnlog "- Setted value for Center Y is not applied." + if MFZentrumX.GetText <> "30%" Then Warnlog "- Setted value for Center X is not applied." + if MFZentrumY.GetText <> "30%" Then Warnlog "- Setted value for Center Y is not applied." MFRand.SetText "10" MFStartwert.SetText "20" MFEndwert.SetText "30" @@ -396,12 +433,13 @@ FormatArea Kontext Active.SetPage TabTransparenz Kontext "TabTransparenz" - if MFRand.GetText <> "10%" Then Warnlog "- Border-value was not set." - if MFEndwert.GetText <> "30%" Then Warnlog "- End-value was not set." - if MFStartwert.GetText <> "20%" Then Warnlog "- Start-value was not set." + if MFRand.GetText <> "10%" Then Warnlog "- Border-value was not set." + if MFEndwert.GetText <> "30%" Then Warnlog "- End-value was not set." + if MFStartwert.GetText <> "20%" Then Warnlog "- Start-value was not set." TabTransparenz.OK - Call hCloseDocument '/// close document ///' + printlog "close document " + Call hCloseDocument endcase 'tdFormatArea1 diff --git a/testautomation/graphics/optional/includes/global/g_arrangealign.inc b/testautomation/graphics/optional/includes/global/g_arrangealign.inc index 48c6599efa72..29557214638b 100644 --- a/testautomation/graphics/optional/includes/global/g_arrangealign.inc +++ b/testautomation/graphics/optional/includes/global/g_arrangealign.inc @@ -32,12 +32,22 @@ '\****************************************************************************** testcase tiDatei_Fuer_Anordnen_Erstellen - dim sTemp as string - dim i as integer - dim zaehler as integer - '/// This function creates the document, that will be used as reference and working object inthe following cases :-) ///' - '///'Dim Datei ' somewhere global :-) defined in calling sub! :sub im_107c_ /// - call hNewDocument + dim sTemp as string + dim i as integer + dim zaehler as integer + '/// This function creates the document, that will be used as reference and working object inthe following cases :-) ///' + '///'Dim Datei ' somewhere global :-) defined in calling sub! :sub im_107c_ /// + call hNewDocument + if gApplication = "DRAW" then + kontext "DocumentDraw" + DocumentDraw.UseMenu + else + kontext "DocumentImpress" + DocumentImpress.UseMenu + end if + + hMenuSelectNr(4) + hMenuSelectNr(13) call sSelectEmptyLayout '/// new document ///' if Dir(Datei)<>"" then app.Kill(Datei) ' kill old file for Zaehler = 1 to 3 '/// create 3 overlapping objects ///' diff --git a/testautomation/graphics/optional/includes/global/g_autocorrection.inc b/testautomation/graphics/optional/includes/global/g_autocorrection.inc index 731c9e0ed21f..42e3bc745ab4 100644 --- a/testautomation/graphics/optional/includes/global/g_autocorrection.inc +++ b/testautomation/graphics/optional/includes/global/g_autocorrection.inc @@ -38,13 +38,6 @@ '* '\******************************************************************* -' Tools->Autocorrect... -' Replace; Exceptions; Options; Custom Quotes -' these are Language -' dependant in the -' listbox above!! -' box only enabled, if the both tabpages are selected ... - testcase tToolsAutocorrectReplace dim i as integer @@ -76,7 +69,9 @@ testcase tToolsAutocorrectReplace TabErsetzung.OK hCloseDocument -endcase +endcase 'tToolsAutocorrectReplace + +'------------------------------------------------------------------------------- testcase tToolsAutocorrectExceptions dim i as integer @@ -119,9 +114,10 @@ testcase tToolsAutocorrectExceptions TabAusnahmen.OK hCloseDocument -endcase +endcase 'tToolsAutocorrectExceptions '------------------------------------------------------------------------------- + testcase tToolsAutocorrectCustomQuotes(bSimple as boolean) ' bSinple = true: use simple quotes ;; else Double Quotes @@ -151,8 +147,6 @@ testcase tToolsAutocorrectCustomQuotes(bSimple as boolean) warnlog "The language-file was not found or accessible! The test ends." goto endsub endif - - 'HDE has same problems in w_106a.inc ;-) !!! migrate ?!?! ///' Call hNewDocument hFileOpen sFileName @@ -381,7 +375,7 @@ testcase tToolsAutocorrectCustomQuotes(bSimple as boolean) sleep 1 hCloseDocument -endcase +endcase 'tToolsAutocorrectCustomQuotes '------------------------------------------------------------------------------- testcase tToolsAutocorrectOption @@ -455,6 +449,6 @@ testcase tToolsAutocorrectOption hCloseDocument sleep 1 -endcase +endcase 'tToolsAutocorrectOption -'------------------------------------------------------------------------------- +'-------------------------------------------------------------------------------
\ No newline at end of file diff --git a/testautomation/graphics/optional/includes/global/g_character.inc b/testautomation/graphics/optional/includes/global/g_character.inc index a9d578665c5a..8d58263c74d4 100644 --- a/testautomation/graphics/optional/includes/global/g_character.inc +++ b/testautomation/graphics/optional/includes/global/g_character.inc @@ -42,44 +42,46 @@ testcase tFormatCharacter dim sTemp as string dim iTemp as integer - '/// open application ///' + printlog "open application " Call hNewDocument sleep 1 - '/// create a textframe with content ///' + printlog "create a textframe with content " hTextrahmenErstellen ("This is a check, a check, a check.",10,10,60,30) - '/// type with keys [strg]+[home] [shift]+[end] to select the inserted text ///' + printlog "type with keys [strg]+[home] [shift]+[end] to select the inserted text " hTypeKeys "<MOD1 HOME><shift end>" sleep 1 - '/// Format->Character ///' + printlog "Format->Character " FormatCharacter - sleep 1 - '/// switch to tabpage 'Font' ///' - Kontext - Messagebox.SetPage TabFont - Kontext "TabFont" - sleep 1 - - '/// switch to tabpage 'Font Effects' ///' - Kontext - Messagebox.SetPage TabFontEffects - kontext "TabFontEffects" - sleep 1 - - '/// switch to tabpage 'Position' ///' - Kontext - Messagebox.SetPage TabFontPosition - Kontext "TabFontPosition" - sleep 1 - - '/// close dialog 'Character' with 'OK' ///' - TabFontPosition.OK - '/// close application ///' + sleep 1 + printlog "switch to tabpage 'Font' " + Kontext + Messagebox.SetPage TabFont + Kontext "TabFont" + sleep 1 + + printlog "switch to tabpage 'Font Effects' " + Kontext + Messagebox.SetPage TabFontEffects + kontext "TabFontEffects" + sleep 1 + + printlog "switch to tabpage 'Position' " + Kontext + Messagebox.SetPage TabFontPosition + Kontext "TabFontPosition" + sleep 1 + + printlog "close dialog 'Character' with 'OK' " + TabFontPosition.OK + printlog "close application " Call hCloseDocument endcase 'tFormatCharacter + '--------------------------------------------------------- + testcase tDialogCharacter Dim i as integer @@ -101,11 +103,13 @@ testcase tDialogCharacter ToolsOptions hToolsOptions ( "LanguageSettings", "Languages" ) - if Aktivieren.IsChecked then '/// Check in what state Asian support is ///' + printlog "Check in what state Asian support is " + if Aktivieren.IsChecked then Asiansupportsetting = TRUE else + printlog "Activate if not already activated " Asiansupportsetting = FALSE - Aktivieren.Check '/// Activate if not already activated ///' + Aktivieren.Check end if Kontext "ExtrasOptionenDlg" @@ -118,8 +122,8 @@ testcase tDialogCharacter FormatCharacter sleep 1 - Kontext '"Active" ' insert this, perhaps another - Active.SetPage TabFont ' tabpage is active at open + Kontext '"Active" + Active.SetPage TabFont Kontext "TabFont" CountOfThem = FontWest.GetItemCount for y = 1 to CountOfThem @@ -275,12 +279,14 @@ testcase tDialogCharacter next y Kontext - Active.SetPage TabFontPosition '/// Changes the active tab to "Position" + printlog "Changes the active tab to Position" + Active.SetPage TabFontPosition Kontext "TabFontPosition" printlog "TabFontPosition" SuperScript.Check Super.Check - RelativeFontSize.ToMin '/// Testing the "Relative Font Size"-Listbox + printlog "Testing the Relative Font Size-Listbox" + RelativeFontSize.ToMin ThisIsMyTextFromControl = RelativeFontSize.GetText ' printlog "The Relative Font Size minimum is: " & ThisIsMyTextFromControl for y = 1 to 99 @@ -290,7 +296,8 @@ testcase tDialogCharacter next y Automatic.Check - ScaleWith.ToMin '/// Testing the "Scale With"-Listbox + printlog "Testing the Scale With-Listbox" + ScaleWith.ToMin ThisIsMyTextFromControl = ScaleWith.GetText printlog "ScaleWith minimum is:" & ThisIsMyTextFromControl ' ScaleWith.TypeKeys "<TAB>" @@ -303,8 +310,10 @@ testcase tDialogCharacter Normal.Check Subscript.Check - RelativeFontSize.ToMin '/// Testing the "Reliative Font Size"-Listbox again but this time - ThisIsMyTextFromControl = RelativeFontSize.GetText '/// with "Subscript" and "Normal" Checked + printlog "Testing the Reliative Font Size-Listbox again but this time" + RelativeFontSize.ToMin + printlog "with Subscript and Normal Checked" + ThisIsMyTextFromControl = RelativeFontSize.GetText printlog "The Relative Font Size minimum is: " & ThisIsMyTextFromControl for y = 1 to 99 RelativeFontSize.TypeKeys "<UP>" @@ -314,7 +323,8 @@ testcase tDialogCharacter Automatic.Check - ScaleWith.ToMin '/// Testing the "ScaleWith"-Listbox + printlog "Testing the ScaleWith-Listbox" + ScaleWith.ToMin ThisIsMyTextFromControl = ScaleWith.GetText printlog "The ScaleWith Size is: " & ThisIsMyTextFromControl for y = 1 to 100 @@ -323,13 +333,15 @@ testcase tDialogCharacter ' printlog "The ScaleWith Size is: " & ThisIsMyTextFromControl next y - ThisIsMyTextFromControl = Spacing.GetSelText '/// Testing the "Spacing"-ListBox + printlog "Testing the Spacing-ListBox" + ThisIsMyTextFromControl = Spacing.GetSelText printlog "The Spacing is first: " & ThisIsMyTextFromControl for y = 2 to 3 Spacing.Select y ThisIsMyTextFromControl = Spacing.GetSelText printlog "The Spacing is: " & ThisIsMyTextFromControl - ThisIsMyTextFromControl = SpacingBy.GetText '/// Testing the "Spacing By"-Scrollbox + printlog "Testing the Spacing By-Scrollbox" + ThisIsMyTextFromControl = SpacingBy.GetText ' printlog "The SpacingBy Size minimum is: " & ThisIsMyTextFromControl SpacingBy.ToMin for z = 1 to 4 @@ -347,7 +359,8 @@ testcase tDialogCharacter kontext ToolsOptions hToolsOptions ( "LanguageSettings", "Languages" ) - Aktivieren.UnCheck '/// Deactivate if not already deactivated ///' + printlog "Deactivate if not already deactivated " + Aktivieren.UnCheck Printlog "Reseted the Asiansupport-value to it's original state" Kontext "ExtrasOptionenDlg" @@ -385,41 +398,41 @@ testcase tSetFormatCharacter end if sFile = convertPath(gTesttoolpath + "graphics\required\input\spellb_" + iSprache + "."+ExtensionString) - '/// create document, if it doesn't exist, else skip this case :-) ///' + printlog "create document, if it doesn't exist, else skip this case :-) " if (dir(sFile)="") then - '/// open application ///' + printlog "open application " Call hNewDocument - '/// activate all languages in options ///' - '///+ Tools->Options ///' + printlog "activate all languages in options " + '///+ Tools->Options " ToolsOptions - '///+ select tabpage 'Languages' from set 'Language Settings' ///' + '///+ select tabpage 'Languages' from set 'Language Settings' " hToolsOptions("LANGUAGESETTINGS","Languages") kontext "TabSprachen" - '///+ save state and check checkbox 'Asian languages support' ///' - '/// if the language is Asian, skip this part ///' + '///+ save state and check checkbox 'Asian languages support' " + printlog "if the language is Asian, skip this part " printlog "iSprache = " + iSprache if bAsianLan = FALSE then bAsian = Aktivieren.isEnabled Aktivieren.check endif - '///+ save state and check checkbox 'Complex text layout (CTL) support' ///' + '///+ save state and check checkbox 'Complex text layout (CTL) support' " bComplex = ComplexScriptEnabled.isEnabled ComplexScriptEnabled.check - '///+ close dialog 'Options' with OK ///' + '///+ close dialog 'Options' with OK " Kontext "ExtrasOptionenDlg" ExtrasOptionenDlg.OK - '/// get count of languages ///' - '///+ Format->Character ///' + printlog "get count of languages " + '///+ Format->Character " FormatCharacter sleep 1 Kontext - '///+ switch to tabpage 'Font' ///' + '///+ switch to tabpage 'Font' " Messagebox.SetPage TabFont kontext "TabFont" sleep 1 - '///+ get count of languages for Western/Asian/CTL fonts ///' + '///+ get count of languages for Western/Asian/CTL fonts " iWest = LanguageWest.getItemCount iAsian = LanguageEast.getItemCount iComplex = LanguageCTL.getItemCount @@ -456,39 +469,39 @@ testcase tSetFormatCharacter Printlog "CTL font languages count : " + iComplex endif endif - '///+ close dialog 'Character' with OK ///' + printlog "close dialog 'Character' with OK " TabFont.Ok WL_SD_TextEinfuegenDraw gMouseMove ( 1, 1, 100, 100 ) - '///+ print the language counts into the first line of the document ///' + printlog "print the language counts into the first line of the document " hTypeKeys(" "+iWest+" "+iAsian+" "+iComplex+"<return>") - '/// set all languages to '[None]' ///' - '///+ Format->Character ///' + printlog "set all languages to '[None]' " + printlog "Format->Character " FormatCharacter kontext "TabFont" - '///+ select '[None]' (should be the first entry in every listbox) ///' + printlog "select '[None]' (should be the first entry in every listbox) " LanguageWest.select 1 LanguageEast.select 1 LanguageCTL.select 1 - '///+ close dialog 'Character' with OK ///' + printlog "close dialog 'Character' with OK " TabFont.Ok - '/// print one line with language formated text for every language ///' + printlog "print one line with language formated text for every language " for i = 1 to iWest - '///+ Format->Character ///' + printlog "Format->Character " FormatCharacter kontext "TabFont" - '///+ select the next language ///' + printlog "select the next language " LanguageWest.select i sTemp = LanguageWest.getItemText (i) ListAppend(sLanguage(), sTemp) - '///+ close dialog 'Character' with OK ///' + printlog "close dialog 'Character' with OK " TabFont.Ok - '///+ type [return][number of language in list][Tab][Language name][Tab] ///' + printlog "type [return][number of language in list][Tab][Language name][Tab] " hTypeKeys(""+i+"<tab>"+sTemp+"<tab><return>") next i @@ -528,7 +541,7 @@ testcase tSetFormatCharacter hTypeKeys(""+i+"<tab>"+sTemp+"<tab><return>") next i - '/// save the created document & the languages list if they don't exists ///' + printlog "save the created document & the languages list if they don't exists " hFileSaveAs (sFile) qaErrorLog "Created file. Please check it and then commit it! " + sTemp sTemp = convertPath(gTesttoolpath + "graphics\required\input\spellb_" + iSprache + ".txt") @@ -536,29 +549,29 @@ testcase tSetFormatCharacter ListWrite(sLanguage(), sTemp,"utf8") endif - '/// restore the options ///' - '///+ Tools->Options ///' + printlog "restore the options " + printlog "Tools->Options " ToolsOptions - '///+ select tabpage 'Languages' from set 'Language Settings' ///' + printlog "select tabpage 'Languages' from set 'Language Settings' " hToolsOptions("LANGUAGESETTINGS","Languages") kontext "TabSprachen" - '///+ restore state of checkbox 'Asian languages support' ///' - '/// if the language is Asian, skip this part ///' + printlog "restore state of checkbox 'Asian languages support' " + printlog "if the language is Asian, skip this part " if bAsianLan = FALSE then if (bAsian <> TRUE) then Aktivieren.UNcheck endif endif - '///+ restore state of checkbox 'Complex text layout (CTL) support' ///' + printlog "restore state of checkbox 'Complex text layout (CTL) support' " if (bComplex <> TRUE) then ComplexScriptEnabled.UNcheck endif - '///+ close dialog 'Options' with OK ///' + printlog "close dialog 'Options' with OK " Kontext "ExtrasOptionenDlg" ExtrasOptionenDlg.OK - '/// close application ///' + printlog "close application " Call hCloseDocument endif @@ -586,29 +599,29 @@ testcase tGetFormatCharacter ExtensionString = "odg" end if - '/// open the english document with all languages ///' + printlog "open the english document with all languages " hDateiOeffnen (convertPath(gTesttoolpath + "graphics\required\input\spellb_" + iSprache + "."+ExtensionString) ListRead(sLanguageR(), convertPath(gTesttoolpath + "graphics\required\input\spellb_1.txt"),"utf8") - '/// activate all languages in options ///' - '///+ Tools->Options ///' + printlog "activate all languages in options " + printlog " Tools->Options " ToolsOptions - '///+ select tabpage 'Languages' from set 'Language Settings' ///' + printlog "select tabpage 'Languages' from set 'Language Settings' " hToolsOptions("LANGUAGESETTINGS","Languages") kontext "TabSprachen" - '///+ save state and check checkbox 'Asian languages support' ///' + printlog "save state and check checkbox 'Asian languages support' " bAsian = Aktivieren.isEnabled Aktivieren.check - '///+ save state and check checkbox 'Complex text layout (CTL) support' ///' + printlog "save state and check checkbox 'Complex text layout (CTL) support' " bComplex = ComplexScriptEnabled.isEnabled ComplexScriptEnabled.check - '///+ close dialog 'Options' with OK ///' + printlog "close dialog 'Options' with OK " Kontext "ExtrasOptionenDlg" ExtrasOptionenDlg.OK sleep (1) - '/// get count of languages ///' + printlog "get count of languages " hTypeKeys("<tab><f2>") - '///+ first how many are in the reference document (printed in the first line)///' + printlog "first how many are in the reference document (printed in the first line)" hTypeKeys("<mod1 home><shift end>") sleep (1) editcopy @@ -619,15 +632,15 @@ testcase tGetFormatCharacter iAsian(1) = mid(sTemp, iTemp+1, iTemp-i) iComplex(1) = right(sTemp, Len(sTemp) - i) sleep (1) - '///+ Format->Character ///' + printlog "Format->Character " FormatCharacter sleep 1 Kontext - '///+ switch to tabpage 'Font' ///' + printlog "switch to tabpage 'Font' " Messagebox.SetPage TabFont kontext "TabFont" sleep 1 - '///+ get count of languages for Western/Asian/CTL fonts ///' + printlog "get count of languages for Western/Asian/CTL fonts " iWest(2) = LanguageWest.getItemCount iAsian(2) = LanguageEast.getItemCount iComplex(2) = LanguageCTL.getItemCount @@ -646,10 +659,10 @@ testcase tGetFormatCharacter else Printlog "CTL font languages count : " + iComplex(2) endif - '///+ close dialog 'Character' with OK ///' + printlog "close dialog 'Character' with OK " TabFont.Ok - '/// write the language for every line in the current language ///' + printlog "write the language for every line in the current language " hTypeKeys("<mod1 home><down><home>") for i = 1 to iWest(2) FormatCharacter @@ -659,7 +672,7 @@ testcase tGetFormatCharacter sTemp = LanguageWest.getSelText ListAppend(sLanguage(), sTemp) TabFont.Ok - '///+ type [end][number of language in list][Tab][Language name][down][home] ///' + printlog "type [end][number of language in list][Tab][Language name][down][home] " hTypeKeys("<end>"+iTemp+"<tab>"+sTemp+"<down><home>") next i @@ -685,7 +698,7 @@ testcase tGetFormatCharacter hTypeKeys("<end>"+iTemp+"<tab>"+sTemp+"<down><home>") next i - '/// save the created document & the languages list ///' + printlog "save the created document & the languages list " sTemp = convertPath(gOfficePath + "user\work\spellb_" + iSprache) hFileSaveAsKill (sTemp) sTemp = convertPath(gOfficePath + "user\work\spellb_" + iSprache + ".txt") @@ -709,6 +722,6 @@ testcase tGetFormatCharacter endif next i - '/// close application ///' + printlog "close application " Call hCloseDocument endcase 'tGetFormatCharacter diff --git a/testautomation/graphics/optional/includes/global/g_clipboard.inc b/testautomation/graphics/optional/includes/global/g_clipboard.inc index 4c1900876565..70b387581329 100644 --- a/testautomation/graphics/optional/includes/global/g_clipboard.inc +++ b/testautomation/graphics/optional/includes/global/g_clipboard.inc @@ -42,83 +42,106 @@ testcase tiEditUndo - Dim sDatei as string Dim Ueber_Text_1 as string + dim sTestfile as string + dim sLocaltestfile as string - if (gApplication = "IMPRESS") then + if (gApplication = "IMPRESS") then ExtensionString = "odp" else ExtensionString = "odg" end if - sDatei = gTesttoolPath + "graphics\required\input\leer."+ExtensionString - - hFileOpen ConvertPath (sDatei) - sleep 5 - printlog "Checking for readonly state. If so, make it editable." - sMakeReadOnlyDocumentEditable - + sTestfile = gTesttoolPath + "graphics\required\input\leer."+ExtensionString + printlog "Loading test file.." + hFileOpenLocally( sTestfile ) + sleep 3 + printlog "Selecting grey rectangle.." hTypeKeys "<TAB><TAB>" sleep 3 + printlog "Opening Position and size dialog." ContextPositionAndSize Kontext if Messagebox.exists (5) then - Messagebox.SetPage TabPositionAndSize + Messagebox.SetPage TabPositionAndSize else - print "what" + printlog "Not the expected Dialog came up. Please check." endif Kontext "TabPositionAndSize" - Ueber_Text_1=PositionX.GetText '/// defining variable for original position of object ///' + printlog "defining variable for original position of object" + Ueber_Text_1=PositionX.GetText + printlog "Position X is: " & Ueber_Text_1 + printlog "Canceling dialog." TabPositionAndSize.Cancel sleep 2 Kontext "Toolbar" Auswahl.Click sleep 1 - ContextArrangeBringBackward '/// Bring Object backward ///' + printlog "Sending Rectangle backwards." + ContextArrangeBringBackward sleep 1 + printlog "Deselect." gMouseClick 60,60 sleep 1 Kontext "Toolbar" Auswahl.Click sleep 1 + printlog "trying to select blue rectangle in front" hTypeKeys "<TAB><TAB>" Kontext "Toolbar" Auswahl.Click sleep 1 - ContextPositionAndSize '/// Open Position and Size dialog, checking position ///' + printlog "Open Position and Size dialog, checking position" + ContextPositionAndSize Kontext Messagebox.SetPage TabPositionAndSize Kontext "TabPositionAndSize" - if PositionX=0 Then Warnlog " Command was not completely executed, and it could not be undone." + printlog "Position X is: " & PositionX.GetText + if (PositionX.GetText)=0 Then Warnlog "Command was not completely executed, and it could not be undone." TabPositionAndSize.Cancel sleep 2 gMouseClick 60,60 sleep 1 - - EditUndo '/// Edit Undo for BringBackward ///' + + printlog "Edit Undo for BringBackward" + EditUndo Sleep 2 gMouseClick 60,60 sleep 1 Kontext "Toolbar" Auswahl.Click + printlog "Trying to select grey rectangle again." hTypeKeys "<TAB><TAB>" sleep 1 Kontext "Toolbar" Auswahl.Click - ContextPositionAndSize '/// Again checking position using Position and Size dialog ///' + printlog "Again checking position using Position and Size dialog" + ContextPositionAndSize kontext Messagebox.SetPage TabPositionAndSize kontext "TabPositionAndSize" + printlog "Checking if x Position is like ata the start again." if PositionX.GetText = Ueber_Text_1 then printlog "OK, last order could be redone" else warnlog "Last order could not be redone" end if TabPositionAndSize.Cancel - - Call hCloseDocument '/// Close document ///' + printlog "Close document" + sLocaltestfile = hFileGetLocalPath( gTesttoolPath + "leer."+ExtensionString ) + printlog sLocaltestfile + if (FileExists (sLocaltestfile)) then + app.kill (sLocaltestfile) + printlog "Deleting used file." + else + warnlog "File is missing." + endif + Call hCloseDocument -endcase + printlog "Close document" + Call hCloseDocument + +endcase 'tiEditUndo '------------------------------------------------------------------------------- testcase tiEditRedo @@ -133,8 +156,9 @@ testcase tiEditRedo end if Datei$ = gTesttoolPath + "graphics\required\input\leer."+ExtensionString - - hFileOpen ConvertPath (Datei$) '/// Open test document (leer.od?) ///' + + printlog "Open test document (leer.od?)" + hFileOpen ConvertPath (Datei$) sleep 3 ' check if the document is writable if fIsDocumentWritable = false then @@ -159,7 +183,8 @@ testcase tiEditRedo sleep 1 hTypeKeys "<TAB>" sleep 1 - ContextArrangeBringBackward '/// move object behind other object ///' + printlog "move object behind other object" + ContextArrangeBringBackward sleep 1 gMouseClick 60,60 sleep 1 @@ -168,25 +193,29 @@ testcase tiEditRedo ContextPositionAndSize sleep 1 Kontext - Messagebox.SetPage TabPositionAndSize '/// checking new position values ///' + printlog "checking new position values" + Messagebox.SetPage TabPositionAndSize Kontext "TabPositionAndSize" if PositionX.GetText = Ueber_Text_1 Then Warnlog " Nothing changed, so nothing can be undone" TabPositionAndSize.Cancel sleep 1 gMouseClick 60,60 - EditUndo '/// Edit Undo///' + printlog "Edit Undo" + EditUndo sleep 1 hTypeKeys "<TAB>" sleep 1 ContextPositionAndSize sleep 1 kontext - Messagebox.SetPage TabPositionAndSize '/// checking again position ///' + printlog "checking again position" + Messagebox.SetPage TabPositionAndSize kontext "TabPositionAndSize" if PositionX.GetText <> Ueber_Text_1 Then Warnlog " Undo didn't worked, so repeat last action wont work either" TabPositionAndSize.Cancel sleep 2 - EditRedo '/// Edit Redo ///' + printlog "Edit Redo" + EditRedo sleep 2 gMouseClick 60,60 sleep 2 @@ -197,16 +226,18 @@ testcase tiEditRedo kontext Messagebox.SetPage TabPositionAndSize kontext "TabPositionAndSize" - if PositionX.GetText <> Ueber_Text_1 then '/// checking position ///' + printlog "checking position" + if PositionX.GetText <> Ueber_Text_1 then printlog "Action Undo repeated" else warnlog "Action Undo not repeated" end if TabPositionAndSize.OK sleep 1 - call hCloseDocument '/// close document ///' + printlog "close document" + call hCloseDocument sleep 1 -endcase +endcase 'tiEditRedo '------------------------------------------------------------------------------- testcase tiEditClipboard @@ -214,61 +245,63 @@ testcase tiEditClipboard Dim Ueber_Text_4 as string dim sTemp as string - '/// open application ///' + printlog "open application" Call hNewDocument Call sSelectEmptyLayout sleep 1 SetClipboard "" - '/// Create rectangle ///' + printlog "Create rectangle" Call hRechteckErstellen ( 65, 65, 80, 80 ) sleep 1 - '///+ RightClick onto rectangle///' + printlog "RightClick onto rectangle" gMouseClick 70,70 sleep 1 - Ueber_Text_4 = fGetPositionX() '/// Get values for position variables ///' + printlog "Get values for position variables" + Ueber_Text_4 = fGetPositionX() Sleep 1 - '/// <b> Edit->Copy </b> ///' + printlog "<b> Edit->Copy </b>" EditCopy - '///+ Type Key [Deletee] ///' + '///+ Type Key [Deletee]" hTypeKeys "<DELETE>" - '///+ <i> Edit->Paste </i> ///' + '///+ <i> Edit->Paste </i>" EditPaste sleep 1 - '///+ Edit->Select All ///' + '///+ Edit->Select All" EditSelectAll sTemp = fGetPositionX() - if LiberalMeasurement(sTemp, Ueber_Text_4) then '/// TabPositionAndSize: comparing position with original position ///' + printlog "TabPositionAndSize: comparing position with original position" + if LiberalMeasurement(sTemp, Ueber_Text_4) then printlog "OK EditCopy and EditPaste" else warnlog "- Edit paste did not work; is: '" + sTemp + "' ; should: '" + Ueber_Text_4 + "'" end if sleep 1 - '/// Type Keys [escape], + EditSelectAll (to deselect object and to select again) ///' + printlog "Type Keys [escape], + EditSelectAll (to deselect object and to select again)" hTypeKeys "<escape>" EditSelectAll sleep 2 - '/// <b> Edit->Cut </b>///' + printlog "<b> Edit->Cut" EditCut sleep 1 hTypeKeys "<TAB>" try - '///+ - Format->Position And Size -> HAS TO FAIL / IS NOT AVAILABLE !!! '///' + printlog "Format->Position And Size -> HAS TO FAIL / IS NOT AVAILABLE !!! " ContextPositionAndSize kontext - '///+ - select TabPage 'Position And Size' ///' + printlog "select TabPage 'Position And Size'" Messagebox.SetPage TabPositionAndSize Kontext "TabPositionAndSize" if TabPositionAndSize.NOTexists then warnlog "TabPositionAndSize isn't up ?!!" endif - '///+ - Ok dialog 'Position And Size' ///' + printlog "Ok dialog 'Position And Size'" TabPositionAndSize.Ok warnlog "TabPositionAndSize IS up :-( Doesn't have to be, because object should be deleted !!!" catch Printlog " - There is no object in the document anymore :-)" endcatch sleep 1 - '///+ <i> Edit->Paste </i> ///' + printlog "Edit->Paste" EditPaste sleep 2 sTemp = fGetPositionX() @@ -278,9 +311,9 @@ testcase tiEditClipboard warnlog "- Edit paste did not work; is: '" + sTemp + "' ; should: '" + Ueber_Text_4 + "'" end if sleep 3 - '/// close application ///' + printlog "close application" Call hCloseDocument -endcase +endcase 'tiEditClipboard '------------------------------------------------------------------------------- testcase tiEditPasteSpecial_HTML @@ -288,7 +321,8 @@ testcase tiEditPasteSpecial_HTML dim Zaehler as integer Kontext "Standardbar" sleep 1 - Call hFileOpen ConvertPath (gTesttoolPath + "graphics\required\input\frame1.htm") '/// Load html document ///' + printlog "Load html document" + Call hFileOpen ConvertPath (gTesttoolPath + "graphics\required\input\frame1.htm") sleep 5 autoexecute=false Kontext "DocumentWriter" @@ -297,49 +331,61 @@ testcase tiEditPasteSpecial_HTML autoexecute=true EditSelectAll sleep 3 - EditCopy '/// Copy selection ///' + printlog "Copy selection" + EditCopy Sleep 2 - FileClose '/// Close document ///' + printlog "Close document" + FileClose sleep 3 - Call hNewDocument '/// Create new Impress document ///' + printlog "Create new Impress document" + Call hNewDocument sleep 1 - EditPasteSpecial '/// Edit paste special ///' + printlog "Edit paste special" + EditPasteSpecial sleep 1 Kontext "InhaltEinfuegen" For Zaehler = 1 to Auswahl.GetItemCount Auswahl.select Zaehler printlog Zaehler, ". Selection = ", Auswahl.GetSelText next Zaehler - - if Auswahl.GetItemCount <> 4 then '/// Controlling number of possible formats ///' + + printlog "Controlling number of possible formats" + if Auswahl.GetItemCount <> 4 then warnlog "formats for inserting Html <> 4" else printlog "OK 4 formats for HTML-Document" end if sleep 3 - InhaltEinfuegen.OK '/// Paste clipboard content ///' + printlog "Paste clipboard content" + InhaltEinfuegen.OK sleep 3 try - EditCopy '/// Copy object back into clipboard ///' + printlog "Copy object back into clipboard" + EditCopy catch Warnlog "- Nothing inserted into document" endcatch sleep 3 - Call hCloseDocument '/// Close document ///' + printlog "Close document" + Call hCloseDocument sleep 3 -endcase +endcase 'tiEditPasteSpecial_HTML '------------------------------------------------------------------------------- testcase tdEditPasteSpecial_Text printlog "Insert Text" - call hNewDocument '/// new document ///' - SetClipboard "I am a cool test-text in the Clipboard" '/// put text into clipboard ///' - EditPasteSpecial '/// edit paste special ///' + printlog "new document " + call hNewDocument + printlog "put text into clipboard" + SetClipboard "I am a cool test-text in the Clipboard" + printlog "edit paste special" + EditPasteSpecial sleep 1 Kontext "InhaltEinfuegen" - Auswahl.Select 1 '/// select list entree 1 ///' + printlog "select list entree 1" + Auswahl.Select 1 printlog "Selection = ", Auswahl.GetSelText sleep 1 if Auswahl.GetItemCount <> 1 then @@ -347,53 +393,64 @@ testcase tdEditPasteSpecial_Text else printlog "Format Text OK" end if - InhaltEinfuegen.OK '/// close dialog ///' + printlog "close dialog" + InhaltEinfuegen.OK sleep 1 - - Call hCloseDocument '/// close document ///' -endcase + + printlog "close document" + Call hCloseDocument +endcase 'tdEditPasteSpecial_Text '------------------------------------------------------------------------------- testcase tdEditPasteSpecial_Graphic dim Zaehler as integer - - call hNewDocument '/// ^new document ///' + + printlog "new document " + call hNewDocument printlog "Insert graphic file" - InsertGraphicsFromFile '/// insert graphic (sample.bmp)///' + InsertGraphicsFromFile Kontext "GrafikEinfuegenDlg" - Dateiname.SetText ConvertPath (gTesttoolPath + "global\input\graf_inp\enter.bmp") - Oeffnen.Click + Dateiname.SetText ConvertPath (gTesttoolPath + "global\input\graf_inp\enter.bmp") + Oeffnen.Click sleep 1 - EditSelectAll '/// select graphic ///' - EditCut '/// cut graphic ///' - EditPasteSpecial '/// edit paste special ///' + printlog "select graphic" + EditSelectAll + printlog "cut graphic" + EditCut + printlog "edit paste special" + EditPasteSpecial sleep 1 Kontext "InhaltEinfuegen" - For Zaehler = 1 to Auswahl.GetItemCount '/// get item count for Auswahl ///' + printlog "get item count for Auswahl" + For Zaehler = 1 to Auswahl.GetItemCount Auswahl.select Zaehler printlog Zaehler, ". Selection = ", Auswahl.GetSelText next Zaehler - - if Auswahl.GetItemCount <> 4 then '/// check if item count = 4 ///' + + printlog "check if item count = 4" + if Auswahl.GetItemCount <> 4 then warnlog "Format for insert graphic files should be 4, but is: " + Auswahl.GetItemCount else printlog "There are " + Auswahl.GetItemCount + " formats for graphic files" end if - InhaltEinfuegen.OK '/// insert graphic from clipboard ///' + printlog "insert graphic from clipboard" + InhaltEinfuegen.OK gMouseClick 90,90 sleep 1 - Call hCloseDocument '/// close document ///' -endcase + printlog "close document " + Call hCloseDocument +endcase 'tdEditPasteSpecial_Graphic '------------------------------------------------------------------------------- testcase tdEditPasteSpecial_Circle - dim Zaehler as integer - call hNewDocument '/// new document ///' + dim Zaehler as integer + printlog "new document " + call hNewDocument sleep 5 - printlog "Insert circle" '/// create circle ///' + printlog "Insert circle" Kontext "Toolbar" Ellipsen.Click sleep 3 @@ -401,28 +458,36 @@ testcase tdEditPasteSpecial_Circle sleep 1 hTypeKeys "<escape>" sleep 2 - EditSelectAll '/// select circle ///' + printlog "select circle" + EditSelectAll sleep 5 - EditCut '/// cut circle ///' + printlog "cut circle" + EditCut sleep 1 - EditPasteSpecial '/// edit paste special ///' + printlog "edit paste special" + EditPasteSpecial sleep 1 Kontext "InhaltEinfuegen" - if EinfuegenAls.IsVisible Then EinfuegenAls.Check '/// check "EinfuegenAls" ///' - For Zaehler = 1 to Auswahl.GetItemCount '/// get item count for Auswahl ///' + printlog "check Insert as.." + if EinfuegenAls.IsVisible Then EinfuegenAls.Check + printlog "get item count for Auswahl" + For Zaehler = 1 to Auswahl.GetItemCount Auswahl.select Zaehler printlog Zaehler, ". Selection = ", Auswahl.GetSelText next Zaehler - if Auswahl.GetItemCount <> 4 then '/// check if item count = 4 ///' + printlog "check if item count = 4" + if Auswahl.GetItemCount <> 4 then warnlog "Number of possible formats <> 4" else printlog "There are 4 formats for circle" end if sleep 1 - InhaltEinfuegen.OK '/// paste circle ///' + printlog "paste circle" + InhaltEinfuegen.OK sleep 1 - Call hCloseDocument '/// close document ///' -endcase + printlog "close document " + Call hCloseDocument +endcase 'tdEditPasteSpecial_Circle '------------------------------------------------------------------------------- testcase tiEditPasteSpecial @@ -430,8 +495,8 @@ testcase tiEditPasteSpecial dim i as integer dim x as integer ' warnlog "TODOTBO: from draw, impress, math..." - '/// go into writer, type a text, select all, Edit->Cut, close writer ///' - '/// go into application to test, insert every format you can get from Edit->Paste->Special :-) ///' + printlog "go into writer, type a text, select all, Edit->Cut, close writer" + printlog "go into application to test, insert every format you can get from Edit->Paste->Special :-)" gApplication = "WRITER" call hNewDocument kontext "DocumentWriter" @@ -442,28 +507,29 @@ testcase tiEditPasteSpecial call hNewDocument sleep 1 - Printlog " get count of possibilities: " - EditPasteSpecial - sleep 1 - Kontext "InhaltEinfuegen" - x = Auswahl.GetItemCount - for i = 1 to x - printlog " - " + i + " - " + Auswahl.GetItemText (i) - next i - InhaltEinfuegen.Cancel + Printlog " get count of possibilities: " + EditPasteSpecial + sleep 1 + Kontext "InhaltEinfuegen" + x = Auswahl.GetItemCount + for i = 1 to x + printlog " - " + i + " - " + Auswahl.GetItemText (i) + next i + InhaltEinfuegen.Cancel - Printlog " insert every possibility" - for i = 1 to x - Printlog " - processing number: "+i - EditPasteSpecial - sleep 1 - Kontext "InhaltEinfuegen" - Auswahl.Select i - sleep 1 - InhaltEinfuegen.OK - sleep 1 - next i - Call hCloseDocument '/// close document ///' -endcase + Printlog " insert every possibility" + for i = 1 to x + Printlog " - processing number: "+i + EditPasteSpecial + sleep 1 + Kontext "InhaltEinfuegen" + Auswahl.Select i + sleep 1 + InhaltEinfuegen.OK + sleep 1 + next i + printlog "close document" + Call hCloseDocument +endcase 'tiEditPasteSpecial '------------------------------------------------------------------------------- diff --git a/testautomation/graphics/optional/includes/global/g_clipexport3.inc b/testautomation/graphics/optional/includes/global/g_clipexport3.inc index 63eb77cd6134..d43cbacb02ec 100644 --- a/testautomation/graphics/optional/includes/global/g_clipexport3.inc +++ b/testautomation/graphics/optional/includes/global/g_clipexport3.inc @@ -48,7 +48,7 @@ Sub Get_Position_Size_Attributes - Printlog " Get_Position_Size_Attributes Starts" + Printlog "Get_Position_Size_Attributes Starts" FormatPositionAndSize @@ -63,7 +63,7 @@ Sub Get_Position_Size_Attributes End Select sleep 1 - ' /// Size-values ///' + printlog "Size-values" PositionWidth = Width.GetText PositionHeight = Height.GetText @@ -86,7 +86,7 @@ Sub Get_Position_Size_Attributes sleep 3 Printlog " Get_Position_Size_Attributes Ends" -end sub +end sub 'Get_Position_Size_Attributes '------------------------------------------------------------------------------- sub Get_Colour_Attributes @@ -100,7 +100,7 @@ sub Get_Colour_Attributes Kontext "TabArea" - ' /// Area ///' + printlog "Area" FillOptions.Select 2 if FillOptions.GetSelIndex <> 2 then Errorlog "Couldnt click on 'Color' in FormatArea" AreaColourListValue = ColourList.GetSelText @@ -273,7 +273,7 @@ sub Get_Colour_Attributes TabArea.Cancel printlog " Get_Colour_Attributes ends" -end sub +end sub 'Get_Colour_Attributes '------------------------------------------------------------------------------- sub Check_Position_Size_Attributes @@ -355,7 +355,7 @@ sub Check_Position_Size_Attributes sleep 3 printlog " Check_Position_Size_Attributes Ends" -end sub +end sub 'Check_Position_Size_Attributes '---------------------------------------------------------------------------------------------------- sub Check_Text_Formatting @@ -412,8 +412,10 @@ sub Check_Text_Formatting SetKontextApplication printlog " Check_Text_Formatting Ends" -end suB - '---------------------------------------------------------------------------------------------------- +end sub 'Check_Text_Formatting + +'------------------------------------------------------------------------------- + sub Check_Colors_Borders_Attributes printlog " Check_Colors_Borders_Attributes Starts" @@ -425,7 +427,7 @@ sub Check_Colors_Borders_Attributes Active.setpage TabArea Kontext "TabArea" - ' /// Area ///' + printlog "Area" FillOptions.Select 2 if FillOptions.GetSelIndex <> 2 then Errorlog "Couldnt click on 'Color' in FormatArea" @@ -608,7 +610,7 @@ sub Check_Colors_Borders_Attributes Printlog "End of one application" -end sub +end sub 'Check_Colors_Borders_Attributes '---------------------------------- Set the Kontext to the current Application ----------------------------------' sub SetKontextApplication @@ -633,7 +635,7 @@ sub SetKontextApplication end select sleep 1 -end sub +end sub 'SetKontextApplication '------------------------- Part with "create new windows" --------------------- sub New_Draw @@ -644,7 +646,7 @@ sub New_Draw Call hNewDocument SetKontextApplication -end sub +end sub 'New_Draw '------------------------------------------------------------------------------- sub New_Impress @@ -656,7 +658,7 @@ sub New_Impress Call hNewDocument SetKontextApplication -end sub +end sub 'New_Impress '------------------------------------------------------------------------------- sub New_Calc @@ -668,7 +670,7 @@ sub New_Calc Call hNewDocument SetKontextApplication -end sub +end sub 'New_Calc '------------------------------------------------------------------------------- sub New_Writer @@ -680,7 +682,7 @@ sub New_Writer Call hNewDocument SetKontextApplication -end sub +end sub 'New_Writer '------------------------------------------------------------------------------- testcase Choose_Toapplication @@ -709,6 +711,6 @@ testcase Choose_Toapplication Call hNewDocument SetKontextApplication -endcase +endcase 'Choose_Toapplication '-------------------------------------------------------------------------------------------------------- diff --git a/testautomation/graphics/optional/includes/global/g_crossfading.inc b/testautomation/graphics/optional/includes/global/g_crossfading.inc index 0d7142b9ae46..e9df826aaff9 100644 --- a/testautomation/graphics/optional/includes/global/g_crossfading.inc +++ b/testautomation/graphics/optional/includes/global/g_crossfading.inc @@ -43,39 +43,47 @@ testcase tCrossfading dim CounterForX as integer dim anothercounter as integer + printlog "New Impress document" Call hNewDocument - Call sSelectEmptyLayout '/// New Impress document ///' + Call sSelectEmptyLayout gMouseClick 50,50 - sleep 1 - Call hRechteckErstellen ( 5, 5, 20, 30 ) '/// Create rectangle ///' + sleep 1 + printlog "Create rectangle" + Call hRechteckErstellen ( 5, 5, 20, 30 ) gMouseClick 90,90 - Call hRechteckErstellen ( 30, 30, 70, 70 ) '/// create rectangle ///' - sleep 1 - EditSelectAll '/// Select all ///' - sleep 1 - EditCrossFading '/// Choose Edit / CrossFading ///' + printlog "create rectangle" + Call hRechteckErstellen ( 30, 30, 70, 70 ) + sleep 1 + printlog "Select all" + EditSelectAll + sleep 1 + printlog "Choose Edit / CrossFading" + EditCrossFading kontext "Ueberblenden" - X = Schritte.GetText ' /// Get counter-value and save it in X ///' + printlog "Get counter-value and save it in X" + X = Schritte.GetText printlog "Steps before we start the test: " + X printlog "Schritte.GetText= " + Schritte.GetText Schritte.ToMin if Schritte.GetText <> "1" then qaerrorlog "Could not change the step-number to 1." - - for I = 2 to 10 ' /// How many steps do you want? ///' + printlog "How many steps do you want?" + for I = 2 to 10 Schritte.More 1 if Schritte.GetText <> I then qaerrorlog "Could not change the step-number to" + I Ueberblenden.OK sleep 1 try - FormatUngroupDraw '/// open context menu and ungroup objects ///' + printlog "open context menu and ungroup objects" + FormatUngroupDraw catch qaerrorlog "Could not ungroup objects" endcatch sleep 1 - hTypeKeys "<TAB>" '/// Should make the first object active ///' + printlog "Should make the first object active" + hTypeKeys "<TAB>" - '/// Get position and dimensions of elements ///' + printlog "Get position and dimensions of elements" try ContextPositionAndSize catch @@ -88,62 +96,76 @@ testcase tCrossfading if TabPositionAndSize.exists (5) then CounterForX=0 CheckX=0 - FirstX=PositionX.GetText '/// Tet Dimensions of first object ///' + printlog "Tet Dimensions of first object" + FirstX=PositionX.GetText TabPositionAndSize.OK else qaerrorlog "Couldn't switch tab page :-( " endif + printlog "How many objects we have on the screen" + anothercounter = I+2 -anothercounter = I+2 '/// How many objects we have on the screen ///' - - for Y = 1 to anothercounter '/// How many times we should step to (hopefully) get back to the first one ///' + printlog "How many times we should step to (hopefully) get back to the first one" + for Y = 1 to anothercounter if Y > anothercounter then warnlog "Too many steps, something is wrong." try - hTypeKeys "<TAB>" '/// Step to the next object ///' + printlog "Step to the next object" + hTypeKeys "<TAB>" catch errolog "Could not step to the next object" endcatch ' Printlog "- Get position and dimensions of elements" - ContextPositionAndSize '/// Open Position and Size for this object ///' + printlog "Open Position and Size for this object" + ContextPositionAndSize sleep 1 Kontext Active.SetPage TabPositionAndSize Kontext "TabPositionAndSize" - CheckX=PositionX.GetText '/// Get Position X for this object ///' + printlog "Get Position X for this object" + CheckX=PositionX.GetText sleep 1 TabPositionAndSize.OK Kontext "DocumentDraw" - CounterForX=CounterForX+1 '/// Up one on the object-counter ///' - if CheckX=FirstX then '/// Check if Position is the same as the first one ///' + printlog "Up one on the object-counter" + CounterForX=CounterForX+1 + printlog "Check if Position is the same as the first one" + if CheckX=FirstX then if anothercounter = CounterForX then printlog "The first box is at: " + CheckX + " And we're now at " + FirstX + " = Correct steps between the objects, everything's fine." - printlog "We should have " + Y + " objects to go through." '/// Just here for debugging. - FHA -' printlog "anothercounter= " + anothercounter '/// Just here for debugging. - FHA + printlog "We should have " + Y + " objects to go through." printlog "Number of objects: " + anothercounter printlog "" endif - next Y '/// End or go on with the checking-loop ///' - - EditSelectAll '/// Select all ///' - EditDelete '/// Delete all ///' + printlog "End or go on with the checking-loop" + next Y + printlog "Select all" + EditSelectAll + printlog "Delete all" + EditDelete sleep 1 - Call hRechteckErstellen ( 5, 5, 20, 30 ) '/// Create rectangle ///' + printlog "Create rectangle" +Call hRechteckErstellen ( 5, 5, 20, 30 ) gMouseClick 90,90 - Call hRechteckErstellen ( 30, 30, 70, 70 ) '/// Create rectangle ///' + printlog "Create rectangle" + Call hRechteckErstellen ( 30, 30, 70, 70 ) sleep 1 - EditSelectAll '/// Select all ///' + printlog "Select all" + EditSelectAll sleep 1 - EditCrossFading '/// Choose Edit / CrossFading ///' - sleep 2 - kontext "Ueberblenden" + printlog "Choose Edit / CrossFading" + EditCrossFading + sleep 2 + kontext "Ueberblenden" next I - '/// And now we're gonna check if we can separate the object into it's parts ///' - '/// And check if the numbers of steps / objects is correct ///' + printlog "And now we're gonna check if we can separate the object into it's parts" + printlog "And check if the numbers of steps / objects is correct" - Schritte.ToMin '/// Select minimum value for number of steps ///' + printlog "Select minimum value for number of steps" + Schritte.ToMin for Z = 1 to X -1 - Schritte.More '/// Raise the value for number of steps with one ///' + printlog "Raise the value for number of steps with one" + Schritte.More next Z printlog "Value has been restored to: " + Schritte.GetText printlog "X is now: " + X @@ -151,101 +173,149 @@ anothercounter = I+2 '/// How many objects we have on the screen ///' Ueberblenden.OK sleep 1 Kontext "DocumentDraw" - EditSelectAll '/// Select all ///' - EditDelete '/// Delete all ///' + printlog "Select all" + EditSelectAll + printlog "Delete all" + EditDelete sleep 1 - Call hRechteckErstellen ( 5, 5, 20, 30 ) '/// Create rectangle ///' + printlog "Create rectangle" + Call hRechteckErstellen ( 5, 5, 20, 30 ) gMouseClick 90,90 - Call hRechteckErstellen ( 30, 30, 70, 70 ) '/// Create second rectangle ///' - EditSelectAll '/// Select all ///' + printlog "Create second rectangle" + Call hRechteckErstellen ( 30, 30, 70, 70 ) + printlog "Select all" + EditSelectAll sleep 1 - EditCrossFading '/// Choose Edit / CrossFading ///' + printlog "Choose Edit / CrossFading" + EditCrossFading Kontext "Ueberblenden" if Attributierung.IsChecked = TRUE then qaerrorlog "Attributierung / was NOT unchecked." - GleicheOrientierung.UnCheck '/// Uncheck "same orienation" ///' -???? - Ueberblenden.OK '/// Close CrossFading-window with "OK" ///' + printlog "Uncheck same orienation" + GleicheOrientierung.UnCheck + printlog "Close CrossFading-window with OK" + Ueberblenden.OK sleep 1 Kontext "DocumentDraw" - EditSelectAll '/// Select all ///' - EditDelete '/// Delete all ///' + printlog "Select all" + EditSelectAll + printlog "Delete all" + EditDelete sleep 1 - Call hRechteckErstellen ( 5, 5, 20, 30 ) '/// Create rectangle ///' + printlog "Create rectangle" + Call hRechteckErstellen ( 5, 5, 20, 30 ) gMouseClick 90,90 - Call hRechteckErstellen ( 30, 30, 70, 70 ) '/// create rectangle ///' - EditSelectAll '/// Select all ///' + printlog "create rectangle" + Call hRechteckErstellen ( 30, 30, 70, 70 ) + printlog "Select all" + EditSelectAll sleep 1 - EditCrossFading '/// Choose Edit / CrossFading ///' + printlog "Choose Edit / CrossFading" + EditCrossFading Kontext "Ueberblenden" if GleicheOrientierung.IsChecked = TRUE then qaerrorlog "GleicheOrientierung / was NOT unchecked." - Attributierung.Check '/// Check "Attributing" ///' - ??? - Ueberblenden.OK '/// Close CrossFading-window with "OK" ///' + printlog "Check Attributing" + Attributierung.Check + printlog "Close CrossFading-window with OK" + Ueberblenden.OK sleep 1 Kontext "DocumentDraw" - EditSelectAll '/// Select all ///' + printlog "Select all" + EditSelectAll sleep 1 - EditDelete '/// Delete all ///' + printlog "Delete all" + EditDelete sleep 1 - Call hRechteckErstellen ( 5, 5, 20, 30 ) '/// Create rectangle ///' + printlog "Create rectangle" + Call hRechteckErstellen ( 5, 5, 20, 30 ) gMouseClick 90,90 - Call hRechteckErstellen ( 30, 30, 70, 70 ) '/// Create second rectangle ///' - EditSelectAll '/// Select all ///' + printlog "Create second rectangle" + Call hRechteckErstellen ( 30, 30, 70, 70 ) + printlog "Select all" + EditSelectAll sleep 1 - EditCrossFading '/// Choose Edit / CrossFading ///' + printlog "Choose Edit / CrossFading" + EditCrossFading Kontext "Ueberblenden" if Attributierung.IsChecked = FALSE then qaerrorlog "Attributierung / was NOT checked again." - GleicheOrientierung.UnCheck '/// Check "same orientation" ///' -???? + printlog "Check same orientation" + GleicheOrientierung.UnCheck Ueberblenden.OK sleep 1 Kontext "DocumentDraw" - EditSelectAll '/// Select all ///' - EditDelete '/// Delete all ///' + printlog "Select all" + printlog "Delete all" + EditSelectAll + EditDelete sleep 1 - Call hRechteckErstellen ( 5, 5, 20, 30 ) '/// Create rectangle ///' + printlog "Create rectangle" + Call hRechteckErstellen ( 5, 5, 20, 30 ) gMouseClick 90,90 - Call hRechteckErstellen ( 30, 30, 70, 70 ) '/// create rectangle ///' - EditSelectAll '/// Select all ///' + printlog "create rectangle" + Call hRechteckErstellen ( 30, 30, 70, 70 ) + printlog "Select all" + EditSelectAll sleep 1 - EditCrossFading '/// Choose Edit / CrossFading ///' + printlog "Choose Edit / CrossFading" + EditCrossFading Kontext "Ueberblenden" - if GleicheOrientierung.IsChecked = TRUE then qaerrorlog "GleicheOrientierung / was NOT checked again." - GleicheOrientierung.Check '/// Check "same orientation" ///' -???? - Ueberblenden.OK '/// Close CrossFading-window with "OK" ///' + if GleicheOrientierung.IsChecked = TRUE then qaerrorlog "GleicheOrientierung / was NOT checked again." + printlog "Check same orientation" + GleicheOrientierung.Check + printlog "Close CrossFading-window with OK" + Ueberblenden.OK sleep 1 Kontext "DocumentDraw" - EditSelectAll '/// Select all ///' - EditDelete '/// Delete all ///' - Call hRechteckErstellen ( 5, 5, 20, 30 ) '/// Create rectangle ///' + printlog "Select all" + EditSelectAll + printlog "Delete all" + EditDelete + printlog "Create rectangle" + Call hRechteckErstellen ( 5, 5, 20, 30 ) gMouseClick 90,90 - Call hRechteckErstellen ( 30, 30, 70, 70 ) '/// create rectangle ///' - EditSelectAll '/// Select all ///' + printlog "create rectangle" + Call hRechteckErstellen ( 30, 30, 70, 70 ) + printlog "Select all" + EditSelectAll sleep 1 - EditCrossFading '/// Choose Edit / CrossFading ///' + printlog "Choose Edit / CrossFading" + EditCrossFading Kontext "Ueberblenden" if GleicheOrientierung.IsChecked = FALSE then qaerrorlog "GleicheOrientierung / was NOT checked again." - GleicheOrientierung.Check '/// Check "same orientation" ///' -???? - Ueberblenden.OK '/// Close CrossFading-window with "OK" ///' + printlog "Check same orientation" + GleicheOrientierung.Check + printlog "Close CrossFading-window with OK" + Ueberblenden.OK sleep 1 - - Kontext "DocumentDraw" '/// EditCrossFading should not be enabled if more than two objects is selected. ///' - EditSelectAll '/// Select all ///' - EditDelete '/// Delete all ///' + + printlog "EditCrossFading should not be enabled if more than two objects is selected." + Kontext "DocumentDraw" + printlog "Select all" + EditSelectAll + printlog "Delete all" + EditDelete sleep 1 - Call hRechteckErstellen ( 5, 5, 20, 30 ) '/// Create rectangle ///' + printlog "Create rectangle" + Call hRechteckErstellen ( 5, 5, 20, 30 ) gMouseClick 90,90 - Call hRechteckErstellen ( 30, 30, 70, 70 ) '/// Create second rectangle ///' + printlog "Create second rectangle" + Call hRechteckErstellen ( 30, 30, 70, 70 ) gMouseClick 90,90 - Call hRechteckErstellen ( 20, 20, 50, 50 ) '/// Create third rectangle ///' + printlog "Create third rectangle" + Call hRechteckErstellen ( 20, 20, 50, 50 ) sleep 1 - EditSelectAll '/// Select all ///' + printlog "Select all" + EditSelectAll sleep 1 try - EditCrossFading '/// Choose Edit / CrossFading ///' + printlog "Choose Edit / CrossFading" + EditCrossFading sleep 2 If active = "Ueberblenden" then qaerrorlog "CrossFading should NOT be selectable since more than two objects is selected." kontext "Ueberblenden" - Ueberblenden.CANCEL '/// Close CrossFading-window with "CANCEL" ///' + printlog "Close CrossFading-window with CANCEL" + Ueberblenden.CANCEL endif sleep 2 Kontext "DocumentDraw" @@ -254,14 +324,17 @@ anothercounter = I+2 '/// How many objects we have on the screen ///' endcatch try - EditSelectAll '/// Select all ///' - EditDelete '/// Delete all ///' + EditSelectAll + EditSelectAll + printlog "Delete all" + EditDelete catch warnlog "Could not select and delete all objects." endcatch printlog "End of test" - Call hCloseDocument '/// Close document ///' + printlog "Close document" + Call hCloseDocument -endcase 'tCrossfading +endcase 'tCrossfading
\ No newline at end of file diff --git a/testautomation/graphics/optional/includes/global/g_demoguide.inc b/testautomation/graphics/optional/includes/global/g_demoguide.inc index d733c878aeb4..0860e8cb942a 100644 --- a/testautomation/graphics/optional/includes/global/g_demoguide.inc +++ b/testautomation/graphics/optional/includes/global/g_demoguide.inc @@ -41,12 +41,10 @@ testcase t_Introduction gApplication = "IMPRESS" - '///Open new presentation printlog "Open new presentation" Call hNewDocument Call sSelectEmptyLayout - '///Open the Gallery printlog "Open the Gallery" ToolsGallery Sleep (1) @@ -55,7 +53,6 @@ testcase t_Introduction ToolsGallery end if - '///Choose computer theme and insert the third image printlog "Choose an item from the gallery" Gallerys.Select(2) View.TypeKeys "<HOME><RIGHT><RIGHT>" @@ -65,7 +62,7 @@ testcase t_Introduction sleep 2 MenuSelect(MenuGetItemID(1)) 'Copy sleep 2 - '///+ - Check that we really got a copy of the object ///' + printlog "Check that we really got a copy of the object " kontext "DocumentImpress" DocumentImpress.OpenContextMenu(true) sleep 2 @@ -93,15 +90,16 @@ testcase t_Introduction catch Warnlog "Insert graphic doesn't work" endcatch - - '///Resize object + sleep 5 + printlog "Resize object" Kontext "DocumentImpress" gMouseClick (10, 10) sleep 1 EditSelectAll sleep 1 - ContextPositionAndSize '/// Format-position and size + printlog "Format-position and size" + ContextPositionAndSize Kontext Active.SetPage TabPositionAndSize Kontext "TabPositionAndSize" @@ -111,7 +109,6 @@ testcase t_Introduction Width.SetText CStr((CInt(Width.GetText)) * 2) TabPositionAndSize.OK - '///Break object printlog "Break object" Kontext "DocumentImpress" gMouseClick (10, 10) @@ -120,7 +117,6 @@ testcase t_Introduction sleep 1 hOpenContextMenu '(when the object is marked) hMenuSelectNr(13) - '/// Select part of object and make it black printlog "Select part of object and make it black" DocumentImpress.TypeKeys "<SHIFT TAB>" FormatArea @@ -131,14 +127,12 @@ testcase t_Introduction ColourList.Select 1 TabArea.OK - '///Group the objects printlog "Group the object" kontext "DocumentImpress" DocumentImpress.TypeKeys "<MOD1 A>" hOpenContextMenu '(when the object is marked) hMenuSelectNr(12) - '///Add Layout "Title Only" Printlog "Add Layout" kontext "Tasks" if (NOT Tasks.exists) then @@ -146,19 +140,18 @@ testcase t_Introduction ViewTaskPane endif - ' enable all items in the task pane. - ' may be one item is not enabled due to a previous testrun + printlog "enable all items in the task pane" + printlog "may be one item is not enabled due to a previous testrun" dim i as integer for i = 1 to 5 printlog i View.OpenMenu if ( MenuIsItemChecked(MenuGetItemID(i)) ) then - ' do nothing the item is allready displayed + printlog "ok" else MenuSelect(MenuGetItemId(4)) endif hMenuSelectNr(0) - 'sleep(1) next View.OpenMenu @@ -170,10 +163,8 @@ testcase t_Introduction View.OpenMenu MenuSelect(MenuGetItemId(5)) - LayoutsPreview.TypeKeys "<HOME> <DOWN> <DOWN> <RETURN>" sleep (5) - '///Add a background Printlog "Add background" Kontext "Tasks" @@ -193,7 +184,6 @@ testcase t_Introduction Tasks.TypeKeys "<MOD1 HOME>",true AvailableForUsePreview.TypeKeys "<HOME> <RIGHT> <RETURN>" sleep (5) - '///Add a transition effect Printlog "Add a transition effect" Kontext "Tasks" sleep(5) @@ -206,35 +196,33 @@ testcase t_Introduction View.OpenMenu MenuSelect(MenuGetItemID(4)) - TransitionSound.GetItemCount 'needed for select + TransitionSound.GetItemCount Sleep 1 TransitionSound.Select 4 - '///Close the document Printlog "Close the document" Call hCloseDocument endcase 't_Introduction + '-------------------------------------------------------------------- + testcase t_Interoperability Dim sTemplatename as string gApplication = "IMPRESS" - '///Open PowerPoint presentation printlog "Open PowerPoint presentation" - hFileOpen (Convertpath (gTesttoolPath + "graphics/required/input/dotNetOverview.ppt")) + hFileOpenLocally( gTesttoolPath + "graphics/required/input/dotNetOverview.ppt" ) - Call sMakeReadOnlyDocumentEditable - - 'Save the name of the origin background (taken from last slide) + printlog "Save the name of the origin background (taken from last slide)" Kontext "DocumentImpress" DocumentImpress.TypeKeys "<END>" sleep (4) sTemplatename = DocumentImpress.StatusGetText (6) - printlog " Background = " & sTemplatename 'Debugcode - + printlog "Background = " & sTemplatename 'Debugcode + printlog "Choose a masterpage from right pane" Kontext "Tasks" @@ -251,46 +239,45 @@ testcase t_Interoperability wait(20000) Kontext "AvailableForUsePreview" AvailableForUsePreview.TypeKeys "<HOME> <RIGHT> <RETURN>" - sleep (5) - printlog " Verify that the background has changed" + sleep (10) + printlog "Verify that the background has changed" Kontext "DocumentImpress" - printlog " Background is " & DocumentImpress.StatusGetText (6) 'Debugcode + printlog "Background is " & DocumentImpress.StatusGetText (6) 'Debugcode if DocumentImpress.StatusGetText (6) = sTemplatename then warnlog "The background is not changed" else printlog " Background has been changed" endif - '///Switch back to original background printlog "Switch back to original background" Kontext "Tasks" Kontext "AvailableForUsePreview" AvailableForUsePreview.TypeKeys "<HOME> <RETURN>" - sleep (5) + sleep (10) Kontext "DocumentImpress" if DocumentImpress.StatusGetText (6) = sTemplatename then printlog " The background has been set back to default" else warnlog "The background is " & DocumentImpress.StatusGetText (6) & " but should be: " & sTemplatename endif - '///Resort slides printlog "Resort slides" Kontext "DocumentImpress" Kontext "Slides" Kontext "SlidesControl" - SlidesControl.TypeKeys "<Mod1 X>" + SlidesControl.OpenContextMenu + sleep 1 + hMenuSelectNr (8) Kontext "DocumentImpress" - DocumentImpress.TypeKeys "<HOME>" + DocumentImpress.TypeKeys "<HOME>", true Kontext "Slides" Kontext "SlidesControl" - SlidesControl.TypeKeys "<Mod1 V>" - kontext "InsertPaste" - if InsertPaste.Exists(1) then - Before.Check - InsertPaste.OK - endif + SlidesControl.OpenContextMenu + sleep 1 + hMenuSelectNr (10) + Printlog " Verify that the slide was moved correctly" Kontext "Slides" - SlidesControl.TypeKeys "<PAGEUP>" + sleep (5) + SlidesControl.TypeKeys "<SHIFT F10>" if hMenuFindSelect(27268, true, 3) = false then Warnlog "Context-Menu-entry `Rename` was not found. Therefore the test ends." @@ -301,24 +288,22 @@ testcase t_Interoperability if NameField.GetText <> ".NET Enterprise Federation" then Warnlog "Wrong slide found! Expected no 3, but found " + NameField.GetText + "." else - Printlog " The slide was correctly moved" + Printlog "The slide was correctly moved" endif NameDlgPage.OK sleep 1 - '///Switch views printlog "Switch views" ViewWorkspaceOutlineView sleep (2) setclipboard("") try Kontext "DocumentImpressOutlineView" - DocumentImpressOutlineView.TypeKeys "<MOD1 HOME><SHIFT END>" DocumentImpressOutlineView.TypeKeys "<Mod1 C>" sleep (5) - if getclipboard() <> ".NET Enterprise" then - warnlog " Wrong selection in outlineview. Should be '.NET Enterprise', but is '" & getclipboard() +"'." - else printlog " Switching to Outlineview was successfull" + if getclipboard() <> ".NET Enterprise Federation" then + warnlog "Wrong selection in outlineview. Should be '.NET Enterprise', but is '" & getclipboard() +"'." + else printlog "Switching to Outlineview was successfull" endif catch warnlog "Switching to Outlineview was not successfull" @@ -333,7 +318,7 @@ testcase t_Interoperability MenuSelect(MenuGetItemID(3)) 'Open Contextmenu Line Kontext "TabLinie" TabLinie.Cancel - printlog " Switching to Notesview was successfull" + printlog "Switching to Notesview was successfull" catch warnlog "Switching to Notesview was not successfull" endcatch @@ -342,7 +327,7 @@ testcase t_Interoperability try Kontext "DocumentImpressHandoutView" DocumentImpressHandoutView.TypeKeys "<TAB>" - printlog " Switching to Handoutview was successfull" + printlog "Switching to Handoutview was successfull" catch warnlog "Switching to Handoutview was not successfull" endcatch @@ -352,7 +337,7 @@ testcase t_Interoperability try Kontext "Slides" SlidesControl.TypeKeys "<TAB>" - printlog " Switching to Slideview was successfull" + printlog "Switching to Slideview was successfull" catch warnlog "Switching to Slideview was not successfull" endcatch @@ -362,12 +347,11 @@ testcase t_Interoperability try Kontext "DocumentImpress" DocumentImpress.TypeKeys "<TAB>" - printlog " Switching back to Drawingview was successfull" + printlog "Switching back to Drawingview was successfull" catch warnlog "Switching to Drawingview was not successfull" endcatch - '///Travel through the presentation by left pane printlog "Travel through the presentation by left pane to slide 7" Kontext "DocumentImpress" DocumentImpress.TypeKeys "<HOME><PAGEDOWN><PAGEDOWN><PAGEDOWN><PAGEDOWN><PAGEDOWN><PAGEDOWN><PAGEDOWN>" @@ -418,18 +402,16 @@ testcase t_DrawingEngine gApplication = "DRAW" - '///Open a drawing printlog "Open a drawing" hFileOpen (Convertpath (gTesttoolPath + "graphics/required/input/Blueprint.odg")) Call fMakeDocumentWritable - '///Select grouped object and enter group printlog "Select group" Kontext "DocumentDraw" DocumentDraw.TypeKeys "<TAB><TAB>" sleep (5) - printlog " Save position of group" + printlog "Save position of group" ContextPositionAndSize 'Format-position and size Kontext Active.SetPage TabPositionAndSize @@ -442,7 +424,6 @@ testcase t_DrawingEngine FormatEditGroupDraw sleep 1 - '///Select and move single object printlog "Select and move single object" printlog " Select object" Kontext "DocumentDraw" @@ -454,48 +435,46 @@ testcase t_DrawingEngine kontext "NameDlgObject" if NameField.GetText <> "Chair" then Warnlog "Wrong object selected!" - else Printlog " The correct object is selected" + else Printlog "The correct object is selected" endif NameDlgObject.OK sleep 1 - printlog " Save position of group" - ContextPositionAndSize 'Format-position and size + printlog "Save position of group" + ContextPositionAndSize Kontext Active.SetPage TabPositionAndSize Kontext "TabPositionAndSize" sObjectPosition = PositionY.GetText - printlog " - ObjectPosition is " & sObjectPosition + printlog "ObjectPosition is " & sObjectPosition TabPositionAndSize.OK - printlog " Move object" + printlog "Move object" Kontext "DocumentDraw" DocumentDraw.TypeKeys "<UP><UP><UP>" sleep (5) - printlog " Verify that the object was moved" - ContextPositionAndSize '/// Format-position and size + printlog "Verify that the object was moved" + ContextPositionAndSize Kontext Active.SetPage TabPositionAndSize Kontext "TabPositionAndSize" if PositionY.GetText <> sObjectPosition then - printlog " Single object was moved" + printlog "Single object was moved" else warnlog "The object has not been moved" endif TabPositionAndSize.OK - printlog " Exit group" + printlog "Exit group" FormatExitGroupDraw Printlog "Verify that the group is still on position" - printlog " Verify position" ContextPositionAndSize 'Format-position and size Kontext Active.SetPage TabPositionAndSize Kontext "TabPositionAndSize" if PositionY.GetText = sGroupPosition then - printlog " Group is still on position" + printlog "Group is still on position" else warnlog "Group has moved from " & sGroupPosition & " to " & PositionY.GetText endif TabPositionAndSize.OK - '///Close document printlog "Close document" Call hCloseDocument -endcase 't_DrawingEngine +endcase 't_DrawingEngine
\ No newline at end of file diff --git a/testautomation/graphics/optional/includes/global/g_edit.inc b/testautomation/graphics/optional/includes/global/g_edit.inc index fdff948d0bfb..59cf4e3a404a 100644 --- a/testautomation/graphics/optional/includes/global/g_edit.inc +++ b/testautomation/graphics/optional/includes/global/g_edit.inc @@ -43,32 +43,41 @@ ' Dateiname.SetText ConvertPath (gTesttoolPath + "global\input\graf_inp\enter.bmp") testcase tEditDuplicate - dim Ueber_Text_1 - dim Zaehler - Call hNewDocument '/// New Impress document ///' - Call hRechteckErstellen ( 5, 5, 20, 30 ) '/// Create rectangle ///' - EditSelectAll '/// Select rectangle ///' - EditDuplicate '/// Edit-duplicate ///' - Kontext "Duplizieren" - Ueber_Text_1 = AnzahlAnKopien.GetText - AnzahlAnKopien.SetText "50" '/// Set number of copies to 50 ///' - Duplizieren.Cancel '/// Cancel Edit Duplicate ///' - sleep 1 - For Zaehler = 1 to 8 - EditDuplicate '/// Edit Duplicate ///' - sleep 1 - Kontext "Duplizieren" - AnzahlAnKopien.SetText "30" '/// Number of copies = 30 ///' + dim Ueber_Text_1 + dim Zaehler - Select Case Zaehler '/// Setting values for axis and angles ///' - Case 1: XAchse.SetText "0,0" + printlog " New Impress document" + Call hNewDocument + printlog " Create rectangle" + Call hRechteckErstellen ( 5, 5, 20, 30 ) + printlog " Select rectangle" + EditSelectAll + printlog " Edit-duplicate" + EditDuplicate + Kontext "Duplizieren" + Ueber_Text_1 = AnzahlAnKopien.GetText + printlog " Set number of copies to 50" + AnzahlAnKopien.SetText "50" + printlog " Cancel Edit Duplicate" + Duplizieren.Cancel + sleep 1 + For Zaehler = 1 to 8 + printlog " Edit Duplicate" + EditDuplicate + sleep 1 + Kontext "Duplizieren" + printlog " Number of copies = 30" + AnzahlAnKopien.SetText "30" + printlog " Setting values for axis and angles" + Select Case Zaehler + Case 1: XAchse.SetText "0,0" YAchse.SetText "0,45" Hoehe.SetText "-0,1" Breite.SetText "-0,1" Drehwinkel.SetText "3" Anfang.Select Int((Anfang.GetItemCount * Rnd)+1) - Case 2,6: XAchse.SetText "0,6" + Case 2,6: XAchse.SetText "0,6" YAchse.SetText "0,0" Hoehe.SetText "0,15" Breite.SetText "0,01" @@ -78,26 +87,28 @@ testcase tEditDuplicate Hoehe.SetText "-0,1" Breite.SetText "0,06" Drehwinkel.SetText "11" - Case 4,8: XAchse.SetText "-0,6" + Case 4,8: XAchse.SetText "-0,6" YAchse.SetText "0,0" Hoehe.SetText "0,05" Breite.SetText "-0,08" Drehwinkel.SetText "347" - Case 5: XAchse.SetText "0,1" + Case 5: XAchse.SetText "0,1" YAchse.SetText "0,48" Hoehe.SetText "-0,05" Breite.SetText "-0,05" Drehwinkel.SetText "355" - End Select - Ende.Select Int((Ende.GetItemCount * Rnd)+1) - Duplizieren.OK '/// Execute Duplicate ///' - sleep 1 - Next Zaehler - sleep 2 - Call hCloseDocument '/// Close document ///' + End Select + Ende.Select Int((Ende.GetItemCount * Rnd)+1) + printlog " Execute Duplicate" + Duplizieren.OK + sleep 1 + Next Zaehler + sleep 2 + printlog " Close document" + Call hCloseDocument endcase 'tEditDuplicate -'--------------------------------------------------------- +'------------------------------------------------------------------------------- testcase tEditFields Call hNewDocument @@ -148,68 +159,85 @@ endcase 'tEditFields '-------------------------------------------------------- testcase tEditDeleteSlide - dim Ueber_Text_1 as string - dim Ueber_Text_2 as string - dim Ueber_Text_3 as string - Call hNewDocument '/// New impress document ///' - sleep 3 - Call hRechteckErstellen ( 30, 30, 70, 70 ) '/// create rectangle ///' - sleep 1 - ContextPositionAndSize '/// open Position and Size dialog ///' - kontext - Messagebox.SetPage TabPositionAndSize - kontext "TabPositionAndSize" - Ueber_Text_1 = PositionX.GetText '/// get position values for rectangle ///' - TabPositionAndSize.OK - InsertSlide '/// insert slide ///' - sleep 2 - hTypekeys "<Pagedown>" - sleep 2 - Call hRechteckErstellen ( 40, 40, 60, 60 ) '/// create rectangle ///' - sleep 1 - EditDeleteSlide '/// Delete slide ///' - sleep 1 - Ueber_Text_2 = "OK Page was closed" - Ueber_Text_3 = "Page was not closed" - call Position_Vergleichen (Ueber_Text_1,Ueber_Text_2,Ueber_Text_3) '/// compare position of rectange ///' - sleep 1 - Call hCloseDocument '/// close document ///' + dim Ueber_Text_1 as string + dim Ueber_Text_2 as string + dim Ueber_Text_3 as string + + printlog " New impress document" + Call hNewDocument + sleep 3 + printlog " create rectangle" + Call hRechteckErstellen ( 30, 30, 70, 70 ) + sleep 1 + printlog " open Position and Size dialog" + ContextPositionAndSize + kontext + Messagebox.SetPage TabPositionAndSize + kontext "TabPositionAndSize" + printlog " get position values for rectangle" + Ueber_Text_1 = PositionX.GetText + TabPositionAndSize.OK + printlog " insert slide" + InsertSlide + sleep 2 + hTypekeys "<Pagedown>" + sleep 2 + printlog " create rectangle" + Call hRechteckErstellen ( 40, 40, 60, 60 ) + sleep 1 + printlog " Delete slide" + EditDeleteSlide + sleep 1 + Ueber_Text_2 = "OK Page was closed" + Ueber_Text_3 = "Page was not closed" + printlog " compare position of rectange" + call Position_Vergleichen (Ueber_Text_1,Ueber_Text_2,Ueber_Text_3) + sleep 1 + printlog " close document" + Call hCloseDocument endcase 'tEditDeleteSlide '-------------------------------------------------------- testcase tEditLinks - Call hNewDocument '/// New document ///' - InsertGraphicsFromFile '/// insert graphic (sample.bmp) ///' - Kontext "GrafikEinfuegenDlg" - Link.Check '/// check link ///' - Dateiname.SetText ConvertPath (gTesttoolPath + "global\input\graf_inp\enter.bmp") - Oeffnen.Click - sleep 3 - EditLinksDraw '/// edit links ///' - Kontext "VerknuepfungenBearbeiten" - Aktualisieren.Click '/// refresh ///' - sleep 1 - 'Aendern 'kann man noch den Dialog aufrufen... - Loesen.Click - sleep 1 - Kontext - Messagebox.Yes - VerknuepfungenBearbeiten.Close '/// close dialog ///' - sleep 1 - try - EditLinksDraw '/// check if last changes remain in the dialog ///' + printlog " New document" + Call hNewDocument + printlog " insert graphic (sample.bmp)" + InsertGraphicsFromFile + Kontext "GrafikEinfuegenDlg" + printlog " check link" + Link.Check + Dateiname.SetText ConvertPath (gTesttoolPath + "global\input\graf_inp\enter.bmp") + Oeffnen.Click + sleep 3 + printlog " edit links" + EditLinksDraw Kontext "VerknuepfungenBearbeiten" + printlog " refresh" + Aktualisieren.Click + sleep 1 Loesen.Click sleep 1 Kontext Messagebox.Yes + printlog " close dialog" VerknuepfungenBearbeiten.Close - warnlog "Break link does not work" + sleep 1 + try + printlog " check if last changes remain in the dialog" + EditLinksDraw + Kontext "VerknuepfungenBearbeiten" + Loesen.Click + sleep 1 + Kontext + Messagebox.Yes + VerknuepfungenBearbeiten.Close + warnlog "Break link does not work" catch - printlog "OK Link broken" + printlog "OK Link broken" endcatch - Call hCloseDocument '/// close document ///' + printlog " close document" + Call hCloseDocument endcase 'tEditLinks '--------------------------------------------------------- @@ -218,77 +246,87 @@ testcase tdEditDeleteLayer dim Ueber_Text_1 as string dim Ueber_Text_2 as string dim Ueber_Text_3 as string - Call hNewDocument '/// new document ///' - sleep 2 - Call hRechteckErstellen ( 30, 30, 70, 70 ) '/// create rectangle ///' - sleep 1 -'/// View->Layer ///' - ViewLayer - ContextPositionAndSize '/// get position values for rectangle ///' - kontext - active.SetPage TabPositionAndSize - kontext "TabPositionAndSize" - Ueber_Text_1 = PositionX.GetText - TabPositionAndSize.OK - InsertLayer '/// insert layer ///' - Kontext "EbeneEinfuegenDlg" - EbeneEinfuegenDlg.OK - Call hRechteckErstellen ( 10, 40, 90, 60 ) '/// create rectangle on created layer ///' - sleep 1 - EditDeleteLayer '/// delete layer ///' - sleep 1 - Kontext - Active.Yes - sleep 1 - Ueber_Text_2 = "OK Layer was deleted" '/// compare position of selected rectangle with position of created rectangle in deteted layer ///' - Ueber_Text_3 = "Layer was not deleted" - Call Position_Vergleichen (Ueber_Text_1,Ueber_Text_2,Ueber_Text_3) - sleep 1 - Call hCloseDocument '/// close document ///' + + printlog " new document" + Call hNewDocument + sleep 2 + printlog " create rectangle" + Call hRechteckErstellen ( 30, 30, 70, 70 ) + sleep 1 + printlog " View->Layer" + ViewLayer + printlog " get position values for rectangle" + ContextPositionAndSize + kontext + active.SetPage TabPositionAndSize + kontext "TabPositionAndSize" + Ueber_Text_1 = PositionX.GetText + TabPositionAndSize.OK + printlog " insert layer" + InsertLayer + Kontext "EbeneEinfuegenDlg" + EbeneEinfuegenDlg.OK + printlog " create rectangle on created layer" + Call hRechteckErstellen ( 10, 40, 90, 60 ) + sleep 1 + printlog " delete layer" + EditDeleteLayer + sleep 1 + Kontext + Active.Yes + sleep 1 + Ueber_Text_2 = "OK Layer was deleted" + Ueber_Text_3 = "Layer was not deleted" + printlog " compare position of selected rectangle with position of created rectangle in deteted layer" + Call Position_Vergleichen (Ueber_Text_1,Ueber_Text_2,Ueber_Text_3) + sleep 1 + printlog " close document" + Call hCloseDocument endcase 'tdEditDeleteLayer '-------------------------------------------------------- testcase tEditObjectEdit - Dim Schrieb as string - - Schrieb = gOLEWriter - if Schrieb = "" then - warnlog " the OLE is not defined :-((( gOLEWriter: " + iSprache - else + Dim Schrieb as string - Call hNewDocument - call sSelectEmptyLayout - sleep 1 '/// new document ///' - InsertObjectOLEObject '/// insert writer ole object ///' - Kontext "OLEObjektEinfuegen" - sleep 3 - if ObjektTyp.GetItemCount = 0 Then - Warnlog "- No available Ole-entry in the list, maybe an error in the Install.ini?" - sleep 1 - OleObjektEinfuegen.Cancel - sleep 1 - else - - ObjektTyp.Select Schrieb - sleep 1 - OLEObjektEinfuegen.OK - sleep 3 ' Changed from Sleep 1 to Sleep 3 - gMouseMove 10,10,90,90 - sleep 1 - EditSelectAll + Schrieb = gOLEWriter + if Schrieb = "" then + warnlog " the OLE is not defined :-((( gOLEWriter: " + iSprache + else + printlog " new document" + Call hNewDocument + call sSelectEmptyLayout + sleep 1 + printlog " insert writer ole object" + InsertObjectOLEObject + Kontext "OLEObjektEinfuegen" + sleep 3 + if ObjektTyp.GetItemCount = 0 Then + Warnlog "- No available Ole-entry in the list, maybe an error in the Install.ini?" + sleep 1 + OleObjektEinfuegen.Cancel + sleep 1 + else + ObjektTyp.Select Schrieb + sleep 1 + OLEObjektEinfuegen.OK + sleep 3 + gMouseMove 10,10,90,90 + sleep 1 + EditSelectAll - try - EditObjectEdit 'keine ID '/// try edit-objects ///' - sleep 2 - catch - Warnlog "- The EditObjectEdit did not work" - endcatch + try + EditObjectEdit + sleep 2 + catch + Warnlog "- The EditObjectEdit did not work" + endcatch - gMouseClick 90,90 + gMouseClick 90,90 end if - sleep 1 - Call hCloseDocument '/// close document ///' - endif -endcase 'tEditObjectEdit + sleep 1 + printlog " close document" + Call hCloseDocument + endif +endcase 'tEditObjectEdit
\ No newline at end of file diff --git a/testautomation/graphics/optional/includes/global/g_find_replace.inc b/testautomation/graphics/optional/includes/global/g_find_replace.inc index 4f6a045578e0..3b9fc48ae10f 100644 --- a/testautomation/graphics/optional/includes/global/g_find_replace.inc +++ b/testautomation/graphics/optional/includes/global/g_find_replace.inc @@ -36,19 +36,21 @@ '* '\********************************************************************************** testcase tiEditSearchAndReplace - '/// This test tests the 'Search and Replace' -dialogue. ///' + printlog "This test tests the 'Search and Replace' -dialogue." + qaerrorlog "#i115121# Find and replace: wrong replacement" + goto endsub Dim sFile 'as string Dim sExpression(2) as string ' Expression to look for: ... Replace with dim sExt as string - Select Case Ucase(gApplication) - case "DRAW" : sExt = ".odg" - case "IMPRESS" : sExt = ".odp" - end select + Select Case Ucase(gApplication) + case "DRAW" : sExt = ".odg" + case "IMPRESS" : sExt = ".odp" + end select - 'First we need some errornes words to replace. (sExpression) - 'sExpression(1) has to be 3 times in the document - select case iSprache + printlog "First we need some errornes words to replace. (sExpression)" + printlog "sExpression(1) has to be 3 times in the document" + select case iSprache case 01 : sExpression(1) = "Alle" : sExpression(2) = "Allz" case 03 : sExpression(1) = "empreza" : sExpression(2) = "Emperor" ' Portuguese case 07 : qaerrorlog "No files for Russian yet, will use english instead." @@ -91,9 +93,9 @@ testcase tiEditSearchAndReplace else Call hFileOpen (gTesttoolpath + "graphics\required\input\recht_"+iSprache+sExt) endif - ' check if the document is writable + printlog "check if the document is writable" if fIsDocumentWritable = false then - ' make the document writable and check if it's succesfull + printlog "make the document writable and check if it's succesfull" if fMakeDocumentWritable = false then warnlog "The document can't be make writeable. Test stopped." goto endsub @@ -108,24 +110,28 @@ testcase tiEditSearchAndReplace Messagebox.OK end if sleep 2 - hTypeKeys "<MOD1 HOME>" '/// Select the text ///' + printlog "Select the text" + hTypeKeys "<MOD1 HOME>" - '/// Edit-Find & Replace I///' + printlog "Edit-Find & Replace" EditSearchAndReplace sleep 1 Kontext "FindAndReplace" - '/// Clap the 'more options'-part open ///' + printlog "Clap the 'more options'-part open" More.Click - '/// verify, that search is done without 'similarity search' !!! ///' + printlog "verify, that search is done without 'similarity search' !!!" if SimilaritySearch.IsChecked = TRUE then SimilaritySearch.UnCheck warnlog "'Similar search' checkbox was enabled! It shouldn't be the default!" end if - SearchFor.SetText sExpression(1) '/// set Search text ///' - ReplaceWith.SetText sExpression(2) '/// set Replace text///' + printlog "set Search text" + SearchFor.SetText sExpression(1) + printlog "set Replace text" + ReplaceWith.SetText sExpression(2) - '/// Word has to be there ONLY three times ///' - SearchNow.Click '/// 1st search for text ///' + printlog "Word has to be there ONLY three times" + printlog "1st search for text" + SearchNow.Click Kontext "Messagebox" if Messagebox.Exists(2) then Printlog Messagebox.GetText @@ -134,7 +140,8 @@ testcase tiEditSearchAndReplace sleep 1 Kontext "FindAndReplace" - SearchNow.Click '/// 2nd search for text ///' + printlog "2nd search for text" + SearchNow.Click Kontext "Messagebox" if Messagebox.Exists(2) then Printlog Messagebox.GetText @@ -143,7 +150,8 @@ testcase tiEditSearchAndReplace sleep 1 Kontext "FindAndReplace" - SearchNow.Click '/// 3th search for text///' + printlog "3th search for text" + SearchNow.Click Kontext "Messagebox" if Messagebox.Exists(2) then Printlog Messagebox.GetText @@ -151,15 +159,16 @@ testcase tiEditSearchAndReplace end if sleep 1 Kontext "FindAndReplace" - - SearchNow.Click '/// 4th search for text; but it is no more available!///' + printlog "4th search for text; but it is no more available!" + SearchNow.Click sleep 2 kontext "Messagebox" if Messagebox.Exists Then Printlog "- The word was found 3 times: '" + messagebox.gettext + "'" Messagebox.OK else - SearchNow.Click '/// 5th search for word 1///' + printlog "5th search for word 1" + SearchNow.Click kontext if Messagebox.Exists (5) Then Printlog "?: "+Messagebox.gettext @@ -169,7 +178,7 @@ testcase tiEditSearchAndReplace Warnlog "- No MsgBox appeared: 'changed'" end if - '/// Replace all ///' + printlog "Replace all" Kontext "FindAndReplace" sleep 1 ReplaceAll.Click @@ -183,7 +192,8 @@ testcase tiEditSearchAndReplace end if Kontext "FindAndReplace" sleep 2 - SearchNow.Click '/// Search for word 1 to check if all words are replaced ///' + printlog "Search for word 1 to check if all words are replaced" + SearchNow.Click Kontext "Messagebox" if Not Messagebox.Exists then Warnlog " Not all words are replaced (Replace All)" @@ -195,17 +205,20 @@ testcase tiEditSearchAndReplace FindAndReplace.Close sleep 3 - '/// Edit-Find & Replace II ///' + printlog "Edit-Find & Replace II" gMouseClick 50,50 sleep 1 hTypeKeys "<MOD1 HOME>" EditSearchAndReplace sleep 1 Kontext "FindAndReplace" - SearchFor.SetText sExpression(2) '/// Search for word 2 ///' - ReplaceWith.SetText sExpression(1) '/// Replace with word 1 ///' + printlog "Search for word 2" + SearchFor.SetText sExpression(2) + printlog "Replace with word 1" + ReplaceWith.SetText sExpression(1) - ReplaceBtn.Click '/// Replace 1 ///' + printlog "Replace 1" + ReplaceBtn.Click Kontext "Messagebox" if Messagebox.Exists(4) Then Kontext "Messagebox" @@ -217,7 +230,8 @@ testcase tiEditSearchAndReplace Kontext "FindAndReplace" sleep 1 - SearchNow.Click '/// 2nd search for word 2 ///' + printlog "2nd search for word 2" + SearchNow.Click Kontext "Messagebox" if Messagebox.Exists(2) Then Warnlog " All words got replaced, but only the 1st should have been" @@ -228,7 +242,7 @@ testcase tiEditSearchAndReplace Printlog " Word replaced" end if - '/// Replace all ///' + printlog "Replace all" Kontext "FindAndReplace" ReplaceAll.Click kontext "Messagebox" @@ -238,7 +252,7 @@ testcase tiEditSearchAndReplace Printlog "- No messagebox after replace all" end if - '/// Search for word 2 to check if all are replaced ///' + printlog "Search for word 2 to check if all are replaced" Kontext "FindAndReplace" SearchNow.Click kontext "Messagebox" @@ -253,21 +267,23 @@ testcase tiEditSearchAndReplace More.Click FindAndReplace.Close sleep 2 - '/// Close document ///' + printlog "Close document" Call hCloseDocument endcase 'tiEditSearchAndReplace + '-------------------------------------------------------- + testcase tiEditSearchAndReplaceBUGS -'/// inspired by bugs: 101974, 101975, 101976 ///' +printlog "inspired by bugs: 101974, 101975, 101976" dim i as integer dim bTemp as boolean - '/// open application ///' + printlog "open application" Call hNewDocument sleep 3 - '/// Edit->Search and Replace ///' + printlog "Edit->Search and Replace" EditSearchAndReplace Kontext "FindAndReplace" if FindAndReplace.Exists (5) then @@ -276,7 +292,7 @@ testcase tiEditSearchAndReplaceBUGS Warnlog "Dialog for Search&Replace could NOT be opened :-(" endif - '/// for al 5 views in 'View->Workspace->...' do: ///' + printlog "for al 5 views in 'View->Workspace->...' do: " for i = 1 to 6 Printlog "- " + i + " View->Workspace->... ------------------------------------------------------" try @@ -315,7 +331,7 @@ testcase tiEditSearchAndReplaceBUGS endcatch sleep 5 Kontext "FindAndReplace" - '///+ if not already open, open. edit->search and replace ///' + printlog "if not already open, open. edit->search and replace" if (FindAndReplace.exists <> TRUE) then try EditSearchAndReplace @@ -330,13 +346,13 @@ testcase tiEditSearchAndReplaceBUGS endif else Kontext "FindAndReplace" - '///+ set text to look for to "a" ///' + printlog "set text to look for to a" SearchFor.SetText "a" - Printlog "'///+ click button 'find' ///'" + Printlog " click button 'find'" SearchNow.Click sleep 5 kontext - '///+ if active exists 'wrap/not found...' say OK ///' + printlog "if active exists 'wrap/not found...' say OK" if active.exists(5) then Printlog "Active: '" + active.GetText + "'" try @@ -357,7 +373,7 @@ testcase tiEditSearchAndReplaceBUGS next i Kontext "FindAndReplace" FindAndReplace.cancel - '/// close application ///' + printlog "close application" Call hCloseDocument endcase 'tiEditSearchAndReplaceBUGS diff --git a/testautomation/graphics/optional/includes/global/g_format.inc b/testautomation/graphics/optional/includes/global/g_format.inc index 8cf37d5432a3..dbd8d6fe8a43 100644 --- a/testautomation/graphics/optional/includes/global/g_format.inc +++ b/testautomation/graphics/optional/includes/global/g_format.inc @@ -365,8 +365,9 @@ testcase tdFormatConnector WaitSlot (1000) hTypeKeys "<SHIFT F10>" 'OpenContextMenu(true) - sleep (3) + sleep (2) hMenuSelectNr(2) ' Connector + sleep (1) Kontext "Verbinder" Typ.Select 2 ' the one with 2 from 3 posibilities to set a value... Sleep (1) diff --git a/testautomation/graphics/optional/includes/global/g_group.inc b/testautomation/graphics/optional/includes/global/g_group.inc index a11b809355ce..7784303e207a 100644 --- a/testautomation/graphics/optional/includes/global/g_group.inc +++ b/testautomation/graphics/optional/includes/global/g_group.inc @@ -34,74 +34,87 @@ '\******************************************************************** testcase tiGruppierung - Dim PosX 'Variable fuer PositionX + Dim PosX 'Variable for PositionX + printlog "new document" Call hNewDocument - Call sSelectEmptyLayout '/// new document ///' - sleep 3 - Kontext "DocumentImpress" - sleep 2 - hRechteckErstellen (20,20,40,40) '/// create rectangle ///' - sleep 1 - hRechteckErstellen (60,60,70,10) '/// create 2nd rectangle ///' - sleep 1 - hRechteckErstellen (50,90,70,40) '/// create 3rd rectangle ///' - sleep 1 + printlog "Select empty layout" + Call sSelectEmptyLayout + sleep 3 + Kontext "DocumentImpress" + sleep 2 + printlog "create rectangle " + hRechteckErstellen (20,20,40,40) + sleep 1 + printlog "create 2nd rectangle" + hRechteckErstellen (60,60,70,10) + sleep 1 + printlog "create 3rd rectangle" + hRechteckErstellen (50,90,70,40) + sleep 1 Printlog "- Created 3 rectangles for group testing" - gMouseClick (50,50) '/// Put the mouse-marker in the middle of the screen ///' - EditSelectAll '/// select all rectangles ///' - if (gApplication = "DRAW") then - hOpenContextMenu + printlog "Put the mouse-marker in the middle of the screen" + gMouseClick (50,50) + printlog "select all rectangles" + EditSelectAll + if (gApplication = "DRAW") then + hOpenContextMenu sleep(2) - hMenuSelectNr(12) ' Select "Group" + printlog "Select Group" + hMenuSelectNr(12) sleep(2) - else - FormatGroupDraw '/// open context menue and group rectangles ///' - endif - sleep 1 + else + printlog "open context menue and group rectangles" + FormatGroupDraw + endif + sleep 1 Printlog "- Get position and dimensions of elements" - ContextPositionAndSize '/// get dimensions of group ///' - sleep 1 - Kontext - Active.SetPage TabPositionAndSize - Kontext "TabPositionAndSize" - sleep 1 - PosX=PositionX.GetText - TabPositionAndSize.OK - sleep 1 - Kontext "DocumentImpress" - gMouseClick 35,35 - sleep 1 - hTypeKeys "<F3>" '/// entering group using key "F3" ///' - sleep 3 - try - EditCut '/// cut rectangle out of document ///' - sleep 1 - Warnlog "- Entering the group, no object within the group should have been selected" - catch - Printlog "- entered group, nothing selected" - endcatch - gMouseClick (35,35) - gMouseMove (30,30,60,60) - sleep 1 - Printlog "- Exit group" -' DocumentImpress.OpenContextMenu '/// leave group, compare dimensions ///' -' sleep 1 -' hMenuSelectNr (13) - hTypeKeys "<mod1 F3>" '/// exit group using key "strg F3" ///' - ' would be better to call the slot TBO! - ContextPositionAndSize - sleep 1 - Kontext - Active.SetPage TabPositionAndSize - Kontext "TabPositionAndSize" - sleep 1 - if PosX = PositionX.GetText then - Warnlog "- No change in position for X axis, even we changed position of 1 object within the group" - TabPositionAndSize.OK - else - Printlog "- Moving within the group works" - TabPositionAndSize.OK - end if - Call hCloseDocument '/// close document ///' -endcase + ContextPositionAndSize + sleep 1 + Kontext + Active.SetPage TabPositionAndSize + Kontext "TabPositionAndSize" + sleep 1 + PosX=PositionX.GetText + TabPositionAndSize.OK + sleep 1 + Kontext "DocumentImpress" + gMouseClick 35,35 + sleep 1 + printlog "entering group using key F3" + hTypeKeys "<F3>" + sleep 3 + try + printlog "cut rectangle out of document" + EditCut + sleep 1 + Warnlog "- Entering the group, no object within the group should have been selected" + catch + Printlog "- entered group, nothing selected" + endcatch + gMouseClick (35,35) + gMouseMove (30,30,60,60) + sleep 1 + printlog "leave group, compare dimensions" + ' DocumentImpress.OpenContextMenu + ' sleep 1 + ' hMenuSelectNr (13) + printlog "exit group using key strg F3" + hTypeKeys "<mod1 F3>" + ' would be better to call the slot TBO! + ContextPositionAndSize + sleep 1 + Kontext + Active.SetPage TabPositionAndSize + Kontext "TabPositionAndSize" + sleep 1 + if PosX = PositionX.GetText then + Warnlog "- No change in position for X axis, even we changed position of 1 object within the group" + TabPositionAndSize.OK + else + Printlog "- Moving within the group works" + TabPositionAndSize.OK + end if + printlog "close document " + Call hCloseDocument +endcase
\ No newline at end of file diff --git a/testautomation/graphics/optional/includes/global/g_imagemap.inc b/testautomation/graphics/optional/includes/global/g_imagemap.inc index de53fdb6f647..5883bbc8d4ac 100644 --- a/testautomation/graphics/optional/includes/global/g_imagemap.inc +++ b/testautomation/graphics/optional/includes/global/g_imagemap.inc @@ -35,12 +35,15 @@ '\************************************************************************************* testcase tEditImageMap - Call hNewDocument '/// new document ///' - EditImageMap '/// edit image map ///' + printlog "new document" + Call hNewDocument + printlog "edit image map" + EditImageMap Kontext "ImageMapEditor" sleep 1 - if ImageMapEditor.Exists (2) then '/// test dialog controls ///' + if ImageMapEditor.Exists (2) then printlog "ImageMap editor exists" + printlog "test dialog controls" DialogTest ( ImageMapEditor ) try ImageMapEditor.Close @@ -60,52 +63,60 @@ testcase tEditImageMap Printlog "ImageMap closed using the edit-menu entry" endcatch end if - Call hCloseDocument '/// close document ///' + printlog "close document" + Call hCloseDocument endcase 'tEditImageMap -'------------------------------------------------------------------------------------------------------------------------------------ + +'------------------------------------------------------------------------------- + testcase tEditImageMapProperties qaerrorlog "test not yet ready." goto endsub - Call hNewDocument '/// new document ///' - InsertGraphicsFromFile '/// Insert a graphic and select it ///' + printlog "new document" + Call hNewDocument + printlog "Insert a graphic and select it" + InsertGraphicsFromFile sleep (1) Kontext "GrafikEinfuegenDlg" - sleep (2) - Dateiname.SetText ConvertPath (gTesttoolPath + "graphics\required\input\SaveAsPicture\SaveAsPicture.pcx") - sleep (2) - Oeffnen.Click - sleep (2) - EditImageMap '/// Open the image map dialog ///' - Kontext "ImageMapEditor" - sleep (1) - if ImageMapEditor.Exists (2) then '/// test dialog controls ///' - printlog "ImageMap editor exists" - else - warnlog "Something is wrong, the Imagemap didn't show up." - end if - - Ellipse.Click '/// Insert an 'image map' object ///' - Dokument.MouseDown 50,50 - Dokument.MouseMove 50,50,10,10 - Dokument.MouseUp 10,10 - - Eigenschaften.Click '/// Click on the properties icon to open up the properties for the Object ///' - kontext "ImageMapHyperlink" - sleep (1) - if ImageMapHyperlink.Exists (2) then - printlog "ImageMapHyperlink (properties) editor exists" - else - warnlog "Something is wrong, the ImageMapHyperlink (properties) didn't show up." - end if + sleep (2) + Dateiname.SetText ConvertPath (gTesttoolPath + "graphics\required\input\SaveAsPicture\SaveAsPicture.pcx") + sleep (2) + Oeffnen.Click + sleep (2) + printlog "Open the image map dialog" + EditImageMap + Kontext "ImageMapEditor" + sleep (1) + if ImageMapEditor.Exists (2) then + printlog "ImageMap editor exists" + else + warnlog "Something is wrong, the Imagemap didn't show up." + end if + printlog "Insert an 'image map' object" + Ellipse.Click + Dokument.MouseDown 50,50 + Dokument.MouseMove 50,50,10,10 + Dokument.MouseUp 10,10 - URL.SetText "http://www.cnn.com" '/// Write some text in each field ///' - Frame.SetText "http://www.framed.com" - Objectname.SetText "This is a strange name: Huckillerry Bohaahw" - Alternativetext.SetText "Alternative, the only way to fly..." - Description.SetText "Just a Foney-text... or whatever it's called." - ImageMapHyperlink.Ok '/// Close the Properties-Dialogue with "Ok" ///' + printlog "Click on the properties icon to open up the properties for the Object" + Eigenschaften.Click + kontext "ImageMapHyperlink" + sleep (1) + if ImageMapHyperlink.Exists (2) then + printlog "ImageMapHyperlink (properties) editor exists" + else + warnlog "Something is wrong, the ImageMapHyperlink (properties) didn't show up." + end if + printlog "Write some text in each field" + URL.SetText "http://www.cnn.com" + Frame.SetText "http://www.framed.com" + Objectname.SetText "This is a strange name: Huckillerry Bohaahw" + Alternativetext.SetText "Alternative, the only way to fly..." + Description.SetText "Just a Foney-text... or whatever it's called." + printlog "Close the Properties-Dialogue with Ok" + ImageMapHyperlink.Ok kontext "ImageMapEditor" Zuweisen.Click sleep (1) @@ -117,7 +128,8 @@ testcase tEditImageMapProperties kontext "DocumentImpress" end if - EditImageMap '/// Check if what we wrote in the Properites-Dialogue still is visible." + EditImageMap + printlog "Check if what we wrote in the Properites-Dialogue still is visible." Kontext "ImageMapEditor" sleep (1) if ImageMapEditor.Exists (2) then @@ -128,32 +140,33 @@ testcase tEditImageMapProperties Dokument.TypeKeys "<TAB>" sleep (1) + printlog "Click on the properties icon to open up the properties for the Object" + Eigenschaften.Click + kontext "ImageMapHyperlink" + sleep (1) + if ImageMapHyperlink.Exists (2) then + printlog "ImageMapHyperlink (properties) editor exists" + else + warnlog "Something is wrong, the ImageMapHyperlink (properties) didn't show up." + end if - Eigenschaften.Click '/// Click on the properties icon to open up the properties for the Object ///' - kontext "ImageMapHyperlink" - sleep (1) - if ImageMapHyperlink.Exists (2) then - printlog "ImageMapHyperlink (properties) editor exists" - else - warnlog "Something is wrong, the ImageMapHyperlink (properties) didn't show up." - end if - - '/// Check if the entries we set before has remained the same, with one exception: cnn.com should now have a slash after it. ///' - if URL.GetText <> "http://www.cnn.com/" then warnlog "URL should have been: http://www.cnn.com/ . But was " + URL.GetText + printlog "Check if the entries we set before has remained the same, with one exception: cnn.com should now have a slash after it. " + if URL.GetText <> "http://www.cnn.com/" then warnlog "URL should have been: http://www.cnn.com/ . But was " + URL.GetText ' if Frame.GetSelText <> "http://www.framed.com" then warnlog "Frame should have been: http://www.framed.com. But was " + Frame.GetSelText - if Objectname.GetText <> "This is a strange name: Huckillerry Bohaahw" then warnlog "Objectname. should have been: This is a strange name: Huckillerry Bohaahw. But was " + Objectname.GetText - if Alternativetext.GetText <> "Alternative, the only way to fly..." then warnlog "Alternativetext should have been: . But was " + Alternativetext.GetText - if Description.GetText <> "Just a Foney-text... or whatever it's called." then warnlog "Description. should have been: . But was " + Description.GetText - ImageMapHyperlink.Ok '/// Close the Properties-Dialogue ///' - sleep (1) + if Objectname.GetText <> "This is a strange name: Huckillerry Bohaahw" then warnlog "Objectname. should have been: This is a strange name: Huckillerry Bohaahw. But was " + Objectname.GetText + if Alternativetext.GetText <> "Alternative, the only way to fly..." then warnlog "Alternativetext should have been: . But was " + Alternativetext.GetText + if Description.GetText <> "Just a Foney-text... or whatever it's called." then warnlog "Description. should have been: . But was " + Description.GetText + printlog "Close the Properties-Dialogue" + ImageMapHyperlink.Ok + sleep (1) kontext "ImageMapEditor" Zuweisen.Click sleep (1) ImageMapEditor.Close sleep (1) - - Call hCloseDocument '/// close document ///' + printlog "close document" + Call hCloseDocument endcase 'tEditImageMapProperties '------------------------------------------------------------------------------------------------------------------------------------ diff --git a/testautomation/graphics/optional/includes/global/g_load_save.inc b/testautomation/graphics/optional/includes/global/g_load_save.inc index 8d64e158eb2a..d0d51e8337c7 100644 --- a/testautomation/graphics/optional/includes/global/g_load_save.inc +++ b/testautomation/graphics/optional/includes/global/g_load_save.inc @@ -45,76 +45,79 @@ ' #1 tSaveLoadLayoutSpreadsheet '\************************************************************************************* testcase tFileOpenSaveEtc - Dim Dokument$ - Dim Dokument2$ + Dim Dokument$ + Dim Dokument2$ Dokument$ = ConvertPath ( gOfficePath + "user\work\test1") Dokument2$ = ConvertPath ( gOfficePath + "user\work\test1_2") - if (gApplication = "IMPRESS") then + if (gApplication = "IMPRESS") then ExtensionString = "odp" else ExtensionString = "odg" end if - '/// delete previous created documents: 'user\\work\\test1*.od?' ///' + printlog "delete previous created documents: 'user\\work\\test1*.od?'" if Dir (Dokument$ + ".odp") <> "" then kill (Dokument$ + ".odp") if Dir (Dokument2$ + ".odg") <> "" then kill (Dokument2$ + ".odg") - '/// open application ///' + printlog "open application" hNewDocument gMouseclick 90,90 - '/// create a textframe with content ///' + printlog "create a textframe with content" Call hTextrahmenErstellen ( "This is a test",20,20,40,30 ) - '/// save file as 'test1' ///' + printlog "save file as 'test1'" hFileSaveAsKill (Dokument$ + "." + ExtensionString) Sleep 10 - '/// close Document ///' + printlog "close Document" hCloseDocument - printlog "- Document Saved and Closed" + printlog "Document Saved and Closed" - '/// load document 'test1' ///' + printlog "load document 'test1'" hFileOpen (Dokument$ + "." + ExtensionString) - Sleep 10 - '/// close Document ///' - hCloseDocument - printlog "- document Loaded and closed" - Sleep 10 - '/// load document 'test1' ///' - hFileOpen (Dokument$ + "." + ExtensionString) - ' check if the document is writable - if fIsDocumentWritable = false then - ' make the document writable and check if it's succesfull - if fMakeDocumentWritable = false then - warnlog "The document can't be make writeable. Test stopped." - goto endsub - endif - endif - Sleep 10 - gMouseclick 90,90 - '/// create another textbox with content ///' - Call hTextrahmenerstellen ( "Change",60,60,80,80 ) - '/// File->Close needn't work, just say CANCEL to the question about saving changes! ///' - FileClose - Kontext ' message about 'something changed should i [overwrite discard cancel]?' - if Messagebox.exists (5) then + Sleep 10 + printlog "close Document" + hCloseDocument + printlog "- document Loaded and closed" + Sleep 10 + printlog "load document 'test1'" + hFileOpen (Dokument$ + "." + ExtensionString) + printlog "check if the document is writable" + if fIsDocumentWritable = false then + printlog "make the document writable and check if it's succesfull" + if fMakeDocumentWritable = false then + warnlog "The document can't be make writeable. Test stopped." + goto endsub + endif + endif + Sleep 10 + gMouseclick 90,90 + printlog "create another textbox with content" + Call hTextrahmenerstellen ( "Change",60,60,80,80 ) + printlog "File->Close needn't work, just say CANCEL to the question about saving changes!" + FileClose + Kontext + printlog "message about 'something changed should i [overwrite discard cancel]?'" + if Messagebox.exists (5) then printlog "2:"+messagebox.gettext Messagebox.Cancel - else + else Warnlog "Mesagebox is missing :-(" - endif - printlog "- Document loaded, changed and closed discarding all changes" + endif + printlog "Document loaded, changed and closed discarding all changes" - printlog "- Last version" - try - FileReload '/// File Reload ///' + printlog "Last version" + try + printlog "File Reload" + FileReload + catch + kontext "DocumentImpress" + try + printlog "File Reload" + FileReload catch - kontext "documentimpress" - try - FileReload '/// File Reload ///' - catch - warnlog "Damn reload ?? Why ? BREAKPOINT! File reload doesn't work. Create new object and try again :-(" + warnlog "BREAKPOINT! File reload doesn't work. Create new object and try again :-(" endcatch endcatch Kontext @@ -128,22 +131,24 @@ testcase tFileOpenSaveEtc if GetClipboardText = "Change" then Warnlog "- Last version not loaded. Changes in the document still in." printlog "- Change document, save it under different name" Kontext "DocumentImpress" - Call hTextrahmenErstellen ("Change2",10,10,50,20 ) '/// new textbox ///' + printlog "new textbox" + Call hTextrahmenErstellen ("Change2",10,10,50,20 ) gMouseclick 90,90 sleep 1 - FileSaveAs - Kontext "SpeichernDlg" - Dateiname.SetText Dokument2$ - Speichern.Click - kontext "AlienWarning" - if AlienWarning.exists(5) then - warnlog "#i41983# Alien Warning on export not allowed" - AlienWarning.OK - endif - Kontext "Messagebox" - if Messagebox.Exists(2) then Messagebox.Yes + FileSaveAs + Kontext "SpeichernDlg" + Dateiname.SetText Dokument2$ + Speichern.Click + kontext "AlienWarning" + if AlienWarning.exists(5) then + warnlog "#i41983# Alien Warning on export not allowed" + AlienWarning.OK + endif + Kontext "Messagebox" + if Messagebox.Exists(2) then Messagebox.Yes Sleep 3 - FileClose '/// Close document ///' + printlog "Close document" + FileClose sleep 10 Kontext "Messagebox" if Messagebox.Exists Then @@ -152,42 +157,42 @@ testcase tFileOpenSaveEtc end if sleep 2 printlog "- Loading write protected file" - FileOpen '/// Open write protected file ///' + FileOpen + printlog "Open write protected file" Kontext "OeffnenDlg" Dateiname.SetText (Dokument2$ + "." + ExtensionString) NurLesen.Check Oeffnen.Click - Sleep 10 - ' check if the document is writable - try - Call hTextrahmenErstellen ( "Hello",85,85,95,95 ) '/// attempt to create a textbox ///' - hTypeKeys "<SHIFT LEFT>",5 - hTypeKeys "<MOD1 C>" - sleep 1 - if GetClipboardText = "Hello" then Warnlog "Write protected document could be edited" + Sleep 10 + printlog "check if the document is writable" + try + printlog "attempt to create a textbox" + Call hTextrahmenErstellen ( "Hello",85,85,95,95 ) + hTypeKeys "<SHIFT LEFT>",5 + hTypeKeys "<MOD1 C>" + sleep 1 + if GetClipboardText = "Hello" then Warnlog "Write protected document could be edited" catch - Printlog "- Write protected document could not be edited" + Printlog "- Write protected document could not be edited" endcatch sleep 5 - FileClose '/// Close document ///' + printlog "Close document" + FileClose endcase 'tFileOpenSaveEtc -'-------------------------------------------------------- +'------------------------------------------------------------------------------- testcase tFileProperties qaerrorlog "#i88163#, File/properties/user defined fields get mixed up." goto endsub Call hNewDocument Call hTextrahmenErstellen ("This is a document to test the Menupoint in File/Properties",30,30,60,40) - if (gApplication = "IMPRESS") then ExtensionString = "odp" else ExtensionString = "odg" end if - FileProperties - Kontext active.SetPage TabDokumentinfo Kontext "TabDokumentinfo" @@ -212,9 +217,7 @@ testcase tFileProperties RefreshThisDocument.Check TabInternet.OK - hFileSaveAsKill ConvertPath (gOfficePath + "user\work\eigen." & ExtensionString) - FileClose Kontext "Active" if Active.Exists(2) then Active.Yes @@ -223,45 +226,45 @@ testcase tFileProperties Sleep 2 hFileOpen ConvertPath (gOfficePath + "user\work\eigen." + ExtensionString) - ' check if the document is writable + printlog "check if the document is writable" if fIsDocumentWritable = false then - ' make the document writable and check if it's succesfull + printlog "make the document writable and check if it's succesfull" if fMakeDocumentWritable = false then warnlog "The document can't be make writeable. Test stopped." goto endsub endif endif - FileProperties - Kontext - active.SetPage TabDokumentinfo - Kontext "TabDokumentinfo" - if Titel.GetText <> "Properties" then Warnlog "Description / Titel is wrong" - if Thema.GetText <> "Documentproperties" then Warnlog "Description / Thema is wrong" - if Schluesselworte.GetText <> "None" then Warnlog "Description / Keywords is wrong" - - qaerrorlog "#i95523#" - 'Kontext - 'active.SetPage TabBenutzer - 'Kontext "TabBenutzer" - 'if Info2.GetText <> "Thorsten Peters" then Warnlog "User Defined / Info2 is wrong" - - 'Infofelder.Click - 'sleep 2 - 'Kontext "InfonamenBearbeiten" - 'if Namen2.GetText <> "Name" then Warnlog "Edit Field Names / Info2 is wrong" - 'InfonamenBearbeiten.OK - - Kontext - active.SetPage TabInternet - Kontext "TabInternet" - if RefreshThisDocument.IsChecked = FALSE then Warnlog "Internet / 'Refresh this document' is not checked" - - TabInternet.Close - - Call hCloseDocument -endcase - -'******************************************************************************************** + FileProperties + Kontext + active.SetPage TabDokumentinfo + Kontext "TabDokumentinfo" + if Titel.GetText <> "Properties" then Warnlog "Description / Titel is wrong" + if Thema.GetText <> "Documentproperties" then Warnlog "Description / Thema is wrong" + if Schluesselworte.GetText <> "None" then Warnlog "Description / Keywords is wrong" + + qaerrorlog "#i95523#" + 'Kontext + 'active.SetPage TabBenutzer + 'Kontext "TabBenutzer" + 'if Info2.GetText <> "Thorsten Peters" then Warnlog "User Defined / Info2 is wrong" + + 'Infofelder.Click + 'sleep 2 + 'Kontext "InfonamenBearbeiten" + 'if Namen2.GetText <> "Name" then Warnlog "Edit Field Names / Info2 is wrong" + 'InfonamenBearbeiten.OK + + Kontext + active.SetPage TabInternet + Kontext "TabInternet" + if RefreshThisDocument.IsChecked = FALSE then Warnlog "Internet / 'Refresh this document' is not checked" + + TabInternet.Close + + Call hCloseDocument +endcase 'tFileProperties + +'------------------------------------------------------------------------------- testcase tFilePassword52 Dim Datei$ @@ -271,7 +274,6 @@ testcase tFilePassword52 dim sExt() as string sExt = array("d","a") - ' passwo52.sd d-preas a-draw for i = 0 to 1 Datei$ = ConvertPath ( gTesttoolPath + "graphics\required\input\passwo52.sd"+sExt(i) ) hFileOpen(Datei$) @@ -290,9 +292,9 @@ testcase tFilePassword52 endif hCloseDocument next i -endcase +endcase 'tFilePassword52 -'******************************************************************************************** +'------------------------------------------------------------------------------- testcase tFileOpenImport dim q as integer @@ -324,28 +326,28 @@ testcase tFileOpenImport if (gApplication="DRAW") then Call hCloseDocument endif -endcase +endcase 'tFileOpenImport -'******************************************************************************************** +'------------------------------------------------------------------------------- testcase tTestDXF255CharBug -'/// tries to load a DXF-document which has a string-leght of 255 characters. ///' -dim q as integer - call hNewDocument - InsertGraphicsFromFile '/// insert graphic ///' - sleep 1 - kontext "Active" - sleep 1 + printlog "tries to load a DXF-document which has a string-leght of 255 characters." + dim q as integer + call hNewDocument + printlog "insert graphic " + InsertGraphicsFromFile + sleep 1 + kontext "Active" + sleep 1 if Active.Exists Then - Active.OK + Active.OK end if sleep 1 - Kontext "GrafikEinfuegenDlg" - sleep 2 - '/// Dateiname.SetText (ConvertPath (gTesttoolpath + "graphics\required\input\255chars.dxf")) ///' - Dateiname.SetText (ConvertPath (gTesttoolpath + "graphics\required\input\255chars.dxf")) - Oeffnen.Click - Sleep 2 + Kontext "GrafikEinfuegenDlg" + sleep 2 + Dateiname.SetText (ConvertPath (gTesttoolpath + "graphics\required\input\255chars.dxf")) + Oeffnen.Click + Sleep 2 if gApplication = "DRAW" then Kontext "Documentdraw" @@ -375,7 +377,7 @@ dim q as integer Call hCloseDocument endcase 'tTestDXF255CharBug -'******************************************************************************************** +'------------------------------------------------------------------------------- testcase tDeletedTemplate dim i as integer @@ -395,35 +397,35 @@ testcase tDeletedTemplate - '/// delete previous created documents: 'user\\work\\test*.odp' ///' + printlog "delete previous created documents: 'user\\work\\test*.odp'" if Dir (Dokument1$) <> "" then kill Dokument1$ if Dir (Dokument2$) <> "" then kill Dokument2$ - '/// open application ///' + printlog "open application" hNewDocument gMouseclick 90,90 - '/// create a textframe with content ///' + printlog "create a textframe with content" Call hTextrahmenErstellen ( "This is the first file",20,20,40,30 ) - '/// save file as 'test1.odp' ///' + printlog "save file as 'test1.odp'" hFileSaveAsKill (Dokument1$) Sleep 10 - '/// close Document ///' + printlog "close Document" hCloseDocument printlog "- Document 'test1.odp' Saved and Closed" - '/// open application again ///' + printlog "open application again" hNewDocument gMouseclick 90,90 - '/// create another textframe with content ///' + printlog "create another textframe with content" Call hTextrahmenErstellen ( "This is the second file",20,20,40,30 ) - '/// save file as 'test2.odp' ///' + printlog "save file as 'test2.odp'" hFileSaveAsKill (Dokument2$) Sleep 10 - '/// close Document ///' + printlog "close Document" hCloseDocument printlog "- Document 'test2.odp' Saved and Closed" - '/// Delete the first file ///' + printlog "Delete the first file" try kill Dokument1$ Printlog " Correctly deleted the file: " + Dokument1$ @@ -431,28 +433,29 @@ testcase tDeletedTemplate warnlog "Could not delete the file: " + Dokument1$ endcatch - '/// File => New => Presentation ///' - FileAutopilotPresentation '/// new document-autopilot ///' - Kontext "AutopilotPraesentation1" - sleep 5 - Existingpresentation.Check - sleep 5 - kontext "active" - if active.exists then - SavedActiveMessage = Active.GetText - QaErrorLog "Message: " + SavedActiveMessage - active.ok - Kontext "AutopilotPraesentation1" - if Existinglist.GetSelText = "test1.odp" then - warnlog " The deleted File was found. Messagebox said: " + SavedActiveMessage - endif - SavedActiveMessage = "" - endif - Kontext "AutopilotPraesentation1" - Existinglist.TypeKeys "<HOME>" - sleep 5 - found = false - for i = 1 to Existinglist.GetItemCount + printlog "File => New => Presentation" + printlog "new document-autopilot" + FileAutopilotPresentation + Kontext "AutopilotPraesentation1" + sleep 5 + Existingpresentation.Check + sleep 5 + kontext "active" + if active.exists then + SavedActiveMessage = Active.GetText + QaErrorLog "Message: " + SavedActiveMessage + active.ok + Kontext "AutopilotPraesentation1" + if Existinglist.GetSelText = "test1.odp" then + warnlog " The deleted File was found. Messagebox said: " + SavedActiveMessage + endif + SavedActiveMessage = "" + endif + Kontext "AutopilotPraesentation1" + Existinglist.TypeKeys "<HOME>" + sleep 5 + found = false + for i = 1 to Existinglist.GetItemCount kontext "active" if active.exists then SavedActiveMessage = Active.GetText @@ -473,7 +476,7 @@ testcase tDeletedTemplate if found = true then warnlog " An error-message showed up. Eventually a result of '138498'" AutopilotPraesentation1.Cancel Sleep 2 - '/// Delete the second file ///' + printlog "Delete the second file" try kill Dokument2$ Printlog " Correctly deleted the file: " + Dokument2$ @@ -482,7 +485,7 @@ testcase tDeletedTemplate endcatch endcase 'tDeletedTemplate -'**************************************************************************************************** +'------------------------------------------------------------------------------- testcase tSaveLoadLayoutEmpty Dim NewFileDir as String @@ -492,7 +495,6 @@ testcase tSaveLoadLayoutEmpty printlog " Will try to create the directory: " + NewFileDir app.mkdir NewFileDir - gApplication = "IMPRESS" Call hNewDocument @@ -510,13 +512,12 @@ testcase tSaveLoadLayoutEmpty sleep (5) call fSaveLoadAllFormats (NewFileDir) 'Runs the Function below. - - printlog " Will try to delete the directory: " + NewFileDir + printlog "Will try to delete the directory: " + NewFileDir app.rmDir NewFileDir endcase 'tSaveLoadLayoutEmpty -'**************************************************************************************************** +'------------------------------------------------------------------------------- testcase tSaveLoadLayoutOLE qaerrorlog "not yet ready" @@ -525,7 +526,7 @@ testcase tSaveLoadLayoutOLE NewFileDir = ConvertPath (gOfficePath + "user\work\LayoutTest\") - printlog " Will try to create the directory: " + NewFileDir + printlog "Will try to create the directory: " + NewFileDir app.mkdir NewFileDir @@ -563,12 +564,12 @@ testcase tSaveLoadLayoutOLE call fSaveLoadAllFormats (NewFileDir) 'Runs the Function below. - printlog " Will try to delete the directory: " + NewFileDir + printlog "Will try to delete the directory: " + NewFileDir app.rmDir ConvertPath (gOfficePath + "user\work\LayoutTest\")' NewFileDir endcase 'tSaveLoadLayoutOLE -'**************************************************************************************************** +'------------------------------------------------------------------------------- testcase tSaveLoadLayoutText qaerrorlog "not yet ready" @@ -580,7 +581,6 @@ testcase tSaveLoadLayoutText printlog " Will try to create the directory: " + NewFileDir app.mkdir NewFileDir - gApplication = "IMPRESS" Call hNewDocument @@ -601,17 +601,16 @@ testcase tSaveLoadLayoutText hTypeKeys ("<TAB><TAB><TAB>") hTypeKeys ("<Return>") hTypeKeys ("<ESCAPE>") - ' LayoutsPreview.TypeKeys "<RETURN>" sleep (5) call fSaveLoadAllFormats (NewFileDir) 'Runs the Function below. - printlog " Will try to delete the directory: " + NewFileDir + printlog "Will try to delete the directory: " + NewFileDir app.rmDir ConvertPath (gOfficePath + "user\work\LayoutTest\")' NewFileDir endcase 'tSaveLoadLayoutText -'**************************************************************************************************** +'------------------------------------------------------------------------------- testcase tSaveLoadLayoutOutline qaerrorlog "not yet ready" @@ -623,7 +622,6 @@ testcase tSaveLoadLayoutOutline printlog " Will try to create the directory: " + NewFileDir app.mkdir NewFileDir - gApplication = "IMPRESS" Call hNewDocument @@ -653,7 +651,7 @@ testcase tSaveLoadLayoutOutline endcase 'tSaveLoadLayoutOutline -'**************************************************************************************************** +'------------------------------------------------------------------------------- testcase tSaveLoadLayoutPicture qaerrorlog "not yet ready" @@ -665,7 +663,6 @@ testcase tSaveLoadLayoutPicture printlog " Will try to create the directory: " + NewFileDir app.mkdir NewFileDir - gApplication = "IMPRESS" Call hNewDocument @@ -695,7 +692,7 @@ testcase tSaveLoadLayoutPicture endcase 'tSaveLoadLayoutPicture -'**************************************************************************************************** +'------------------------------------------------------------------------------- testcase tSaveLoadLayoutChart qaerrorlog "not yet ready" @@ -707,7 +704,6 @@ testcase tSaveLoadLayoutChart printlog " Will try to create the directory: " + NewFileDir app.mkdir NewFileDir - gApplication = "IMPRESS" Call hNewDocument @@ -737,7 +733,7 @@ testcase tSaveLoadLayoutChart endcase 'tSaveLoadLayoutChart -'**************************************************************************************************** +'------------------------------------------------------------------------------- testcase tSaveLoadLayoutSpreadsheet qaerrorlog "not yet ready" @@ -749,7 +745,6 @@ testcase tSaveLoadLayoutSpreadsheet printlog " Will try to create the directory: " + NewFileDir app.mkdir NewFileDir - gApplication = "IMPRESS" Call hNewDocument @@ -774,10 +769,10 @@ testcase tSaveLoadLayoutSpreadsheet call fSaveLoadAllFormats (NewFileDir) 'Runs the Function below. - printlog " Will try to delete the directory: " + NewFileDir + printlog "Will try to delete the directory: " + NewFileDir app.rmDir ConvertPath (gOfficePath + "user\work\LayoutTest\")' NewFileDir endcase 'tSaveLoadLayoutSpreadsheet -'**************************************************************************************************** +'------------------------------------------------------------------------------- diff --git a/testautomation/graphics/optional/includes/global/g_mediaplayer.inc b/testautomation/graphics/optional/includes/global/g_mediaplayer.inc index 5961a2132467..f78cdf816815 100644 --- a/testautomation/graphics/optional/includes/global/g_mediaplayer.inc +++ b/testautomation/graphics/optional/includes/global/g_mediaplayer.inc @@ -47,37 +47,39 @@ testcase g_mediaplayer goto endsub endif Datei$ = ConvertPath (convertPath (gTesttoolPath + "graphics\required\input\29secsound.wav")) - '/// Open New Document ///' + printlog "Open New Document" Call hNewDocument sleep 2 - '/// Check if the Media Player already exists - if so - close it ///' + printlog "Check if the Media Player already exists - if so - close it" kontext "mPlayer" - if mPlayer.exists then ' Close the MediaPlayer - warnlog "The MediaPlayer was visible since some earlier test. Plese notify FHA." + printlog "Close the MediaPlayer if it is open already" + if mPlayer.exists then + warnlog "The MediaPlayer was visible since some earlier test." ToolsMediaPlayer printlog "Closed the Media Player" endif - '/// Tools - MediaPlayer ///' + printlog "Tools - MediaPlayer" ToolsMediaPlayer sleep 2 - '/// Open file ///' 'a bigger / longer one + printlog "Open file" kontext "mPlayer" if mPlayer.exists then printlog "The MediaPlayer was open." else - warnlog "Tools - MediaPlayer didnt work. The MediaPlayer wasnt visible. Aborting test." - Call hCloseDocument '/// Close document ///' - goto endsub + warnlog "Tools - MediaPlayer didnt work. The MediaPlayer wasnt visible. Aborting test." + printlog "Close document" + Call hCloseDocument + goto endsub endif Mopen.Click kontext "OeffnenDlg" Pfad.SetText Datei$ Oeffnen.Click - '/// This test wont work correctly under Solaris and Linux, ///' - '/// unless some optional Media-libraries are installed. ///' - '/// Therefore we warn the tester about it if we cannot open the file. ///' + printlog "This test wont work correctly under Solaris and Linux," + printlog "unless some optional Media-libraries are installed." + printlog "Therefore we warn the tester about it if we cannot open the file." iWaitIndex = 0 do while OeffnenDlg.Exists AND iWaitIndex < 10 @@ -90,7 +92,8 @@ testcase g_mediaplayer Active.OK kontext "Mplayer" ToolsMediaPlayer - Call hCloseDocument '/// close document ///' + printlog "close document" + Call hCloseDocument goto endsub else kontext "Mplayer" @@ -99,7 +102,7 @@ testcase g_mediaplayer timevalue1 = mTimeedit.GetText - '/// Stop ///' + printlog "Stop" sleep 2 mStop.Click printlog "Just pressed stop." @@ -109,17 +112,18 @@ testcase g_mediaplayer timevalue3 = mTimeedit.GetText printlog "The time was: " + mTimeedit.GetText if timevalue1 = timevalue2 AND timevalue2 = timevalue3 then - if gtSYSName <> "WinXP" then '("Solaris x86" OR "Linux" OR "Solaris") then - warnlog "The sound doesnt seem to be played at all. And since the test is run on a platform which needs extra libraries, the test ends now." - kontext "Mplayer" - if Mplayer.Exists(3) then - ToolsMediaPlayer - endif - Call hCloseDocument '/// close document ///' - goto endsub - else - warnlog "The sound doesnt seem to be played at all, but I will continue the test. The platform was: " + gtSYSName - endif + if gtSYSName <> "WinXP" then '("Solaris x86" OR "Linux" OR "Solaris") then + warnlog "The sound doesnt seem to be played at all. And since the test is run on a platform which needs extra libraries, the test ends now." + kontext "Mplayer" + if Mplayer.Exists(3) then + ToolsMediaPlayer + endif + printlog "close document" + Call hCloseDocument + goto endsub + else + warnlog "The sound doesnt seem to be played at all, but I will continue the test. The platform was: " + gtSYSName + endif else if timevalue1 <> timevalue2 AND timevalue2 = timevalue3 then Printlog "the stop-button seemed to work. Good." @@ -127,7 +131,7 @@ testcase g_mediaplayer warnlog "Very strange. The first value was: " + timevalue1 + ". Second: " + timevalue2 + ". Third: " + timevalue3 endif endif - '/// Play ///' + printlog "Play" ' Save value timevalue1 = mTimeedit.GetText ' Press 'Play' @@ -141,7 +145,7 @@ testcase g_mediaplayer Printlog "the play-button seemed to work. Good." endif - '/// Pause ///' + printlog "Pause" mPlay.Click sleep 10 mPause.Click @@ -156,19 +160,23 @@ testcase g_mediaplayer Printlog "the pause-button seemed to work. Good." endif - '/// Time ///' - mStop.Click 'to get to the beginning. - sleep 1 'And make sure it's really the beginning. + printlog "Time" + printlog " Click Stop to get to the beginning." + mStop.Click + sleep 1 + printlog "And make sure it's really the beginning." timevalue1 = mTimeedit.GetText if timevalue1 <> "00:00:00 / 00:00:29" then warnlog "Expected the time to go back to 00:00:00, but was " + timevalue1 + " instead." - mStop.Click 'to make another try to get to the beginning again. + printlog "to make another try to get to the beginning again." + mStop.Click ' else printlog "Sound stopped, time-value set to 00:00:00." endif printlog "We press 'Play'" - mPlay.Click 'to get it running + printlog "Click play to get it running" + mPlay.Click sleep 5 timefound = 0 @@ -192,41 +200,34 @@ testcase g_mediaplayer warnlog "Either the time didnt change, or the test-computer is too fast." endif - '-Repeat - 'Plays the file repeatedly. - '/// Loop ///' + printlog "Loop" mLoop.Click - '/// Volume ///' - 'mVolume. 'Click - '-Volume slider - 'Adjusts the volume. + printlog "Volume" - '/// Mute ///' + printlog "Mute" mMute.Click sleep 1 mMute.Click - '-Mute - 'Turns sound off and on. - '/// Time-slider ///' + printlog "Time-slider" ' mTimeslider. 'Click '-Position slider 'Moves to a different position in the file. - '/// Scroll-whatever ///' + printlog "Scroll-whatever" 'mZoomlistbox. '-Zoom 'Adjusts the size of the movie playback. - '/// Apply ///' + printlog "Apply" mInsert.Click sleep 10 - '/// Close the MediaPlayer via Tools - MediaPlayer ///' + printlog "Close the MediaPlayer via Tools - MediaPlayer" ToolsMediaPlayer - '/// Check if there is an object available. ///' + printlog "Check if there is an object available." if (gApplication = "IMPRESS") then kontext "DocumentImpress" else @@ -242,15 +243,15 @@ testcase g_mediaplayer Kontext "TabPositionAndSize" if Width.Exists then Printlog "Position and Size came up, object inserted correctly." - '/// Close dialog TabPositionAndSize with 'OK' ///' + printlog "Close dialog TabPositionAndSize with 'OK'" TabPositionAndSize.OK else Warnlog "Position And Size didn't come up, was there no sound-object inserted?" endif sleep 2 - '/// close document ///' - Call hCloseDocument '/// close document ///' + printlog "close document" + Call hCloseDocument else qaerrorLog "#74350# - Different strings in g_mediaplayer under Italian." endif -endcase +endcase
\ No newline at end of file diff --git a/testautomation/graphics/optional/includes/global/g_paneview.inc b/testautomation/graphics/optional/includes/global/g_paneview.inc index a2e7bdb87266..fb3620496759 100644 --- a/testautomation/graphics/optional/includes/global/g_paneview.inc +++ b/testautomation/graphics/optional/includes/global/g_paneview.inc @@ -78,7 +78,7 @@ testcase tiMinimize_Maximize_Docking_SlidePane Sleep 1 Slides.Size 300, 400 Sleep 1 - Slides.Size 150, 250 + Slides.Size 170, 250 Sleep 1 Slides.Size xSize%, ySize% Sleep 1 @@ -451,7 +451,7 @@ testcase tdMinimize_Maximize_Docking_Pagepane Sleep 1 Pagepane.Size 300, 400 Sleep 1 - Pagepane.Size 150, 250 + Pagepane.Size 170, 250 Sleep 1 Pagepane.Size xSize%, ySize% Sleep 1 diff --git a/testautomation/graphics/optional/includes/global/g_shaddow.inc b/testautomation/graphics/optional/includes/global/g_shaddow.inc index 1dfd01f305aa..7732cc5bc7e8 100644 --- a/testautomation/graphics/optional/includes/global/g_shaddow.inc +++ b/testautomation/graphics/optional/includes/global/g_shaddow.inc @@ -54,19 +54,19 @@ testcase tiShaddow dim linewidth as string dim cornerstyletype as string - '/// Set the file-extension we'll be using when opening the saved file ///' + printlog "Set the file-extension we'll be using when opening the saved file " if (gApplication = "IMPRESS") then ExtensionString = "odp" else ExtensionString = "odg" end if - '/// Open application ///' + printlog "Open application " Call hNewDocument Call sSelectEmptyLayout sleep 1 - '/// Import picture ///' + printlog "Import picture " InsertGraphicsFromFile sleep 3 kontext "Active" @@ -81,10 +81,10 @@ testcase tiShaddow Oeffnen.Click printlog "Inserted file" sleep 2 - '/// Select all ///' + printlog "Select all" EditSelectAll sleep 3 - '/// Check values and save them ///' + printlog "Check values and save them" FormatPositionAndSize kontext active.SetPage TabPositionAndSize @@ -92,11 +92,11 @@ testcase tiShaddow ImageWidth = Width.GetText ImageHeight = Height.GetText printlog "Got values from position and size" - '/// Check the "Protect Size"-button. And close dialogue. ///' + printlog "Check the Protect Size-button. And close dialogue. " ProtectSize.Check TabPositionAndSize.Ok - '/// Add Shaddow via Toolbar-Button ///' + printlog "Add Shaddow via Toolbar-Button " Kontext "GraphicObjectbar" if GraphicObjectbar.Exists = FALSE then ViewToolbarsPicture @@ -106,21 +106,21 @@ testcase tiShaddow end if sleep 1 - '/// click button 'Shadow' ///' - Schatten.Click -' '/// Check and save Shaddow-values via context-menu ///' - EditSelectAll - hOpenContextMenu - sleep(2) - if hMenuFindSelect(10142, true, 4) = false then + printlog "click button 'Shadow'" + Schatten.Click + printlog " Check and save Shaddow-values via context-menu " + EditSelectAll + hOpenContextMenu + sleep(2) + if hMenuFindSelect(10142, true, 4) = false then Warnlog "Context-Menu-entry `Area` was not found. Therefore the test ends." Call hCloseDocument Goto Endsub - endif - '/// Select Contextmenu entry "Area" ///' - sleep(2) + endif + printlog " Select Contextmenu entry Area " + sleep(2) kontext "TabArea" - '/// Switch to Shaddow-tabpage, do some changes, save them, close dialogue + printlog "Switch to Shaddow-tabpage, do some changes, save them, close dialogue" Kontext active.SetPage TabSchatten kontext "TabSchatten" @@ -131,20 +131,20 @@ testcase tiShaddow Warnlog "'Use Shadow' doesn't exist or isn't visible." endif - '/// Change Distance and Transparency-values ///' - Entfernung.More ',2 - Transparenz.More ',2 - shadowdistancevalue = Entfernung.GetText - shadowcolorvalue = Farbe.GetSelText - shadowtransparencyvalue = Transparenz.GetText - printlog "Got values from TabArea" - TabSchatten.Ok + printlog "Change Distance and Transparency-values " + Entfernung.More ',2 + Transparenz.More ',2 + shadowdistancevalue = Entfernung.GetText + shadowcolorvalue = Farbe.GetSelText + shadowtransparencyvalue = Transparenz.GetText + printlog "Got values from TabArea" + TabSchatten.Ok - '/// Check if it's the same when going over FormatArea ///' + printlog "Check if it's the same when going over FormatArea " FormatArea sleep 1 kontext "TabArea" - '/// Switch to Shaddow-tabpage, do some changes, save them, close dialogue ///' + printlog "Switch to Shaddow-tabpage, do some changes, save them, close dialogue " Kontext active.SetPage TabSchatten kontext "TabSchatten" @@ -165,23 +165,23 @@ testcase tiShaddow endif TabSchatten.Ok - '/// Add Cornerstyle via FormatLine ///' - FormatLine - Kontext - Messagebox.SetPage TabLinie - kontext "TabLinie" - Stil.Select 2 ' Select Continuously. - linetype = Stil.GetItemText - Farbe.Select 2 ' Select Blue - linecolour = Farbe.GetItemText - Breite.More 3 ' Set Width to 3 - linewidth = Breite.Gettext - CornerStyle.Select 4 ' Select number four: Beveled - cornerstyletype = CornerStyle.GetSelText - printlog "Cornerstyle is: " + CornerStyle.GetSelText '+ cornerstyletype + printlog "Add Cornerstyle via FormatLine " + FormatLine + Kontext + Messagebox.SetPage TabLinie + kontext "TabLinie" + Stil.Select 2 ' Select Continuously. + linetype = Stil.GetItemText + Farbe.Select 2 ' Select Blue + linecolour = Farbe.GetItemText + Breite.More 3 ' Set Width to 3 + linewidth = Breite.Gettext + CornerStyle.Select 4 ' Select number four: Beveled + cornerstyletype = CornerStyle.GetSelText + printlog "Cornerstyle is: " + CornerStyle.GetSelText '+ cornerstyletype TabLinie.ok - '/// Check values via PositionAndSize via the Contextmenu ///' + printlog "Check values via PositionAndSize via the Contextmenu " hOpenContextmenu sleep(2) if hMenuFindSelect(10087, true, 1) = false then @@ -189,35 +189,35 @@ testcase tiShaddow Call hCloseDocument Goto Endsub endif - 'Select "Position and Size" - sleep(2) - Kontext - Active.SetPage TabPositionAndSize - Kontext "TabPositionAndSize" - if ImageWidth <> Width.GetText then warnlog "Position X differs. Should be: " + ImageWidth + " But is: " + Width.GetText - if ImageHeight <> Height.GetText then warnlog "Position Y differs. Should be: " + ImageHeight + " But is: " + Height.GetText + printlog "Select Position and Size" + sleep(2) + Kontext + Active.SetPage TabPositionAndSize + Kontext "TabPositionAndSize" + if ImageWidth <> Width.GetText then warnlog "Position X differs. Should be: " + ImageWidth + " But is: " + Width.GetText + if ImageHeight <> Height.GetText then warnlog "Position Y differs. Should be: " + ImageHeight + " But is: " + Height.GetText TabPositionAndSize.OK - '/// Check Cornerstyle via FormatLine ///' - FormatLine - Kontext - Messagebox.SetPage TabLinie - kontext "TabLinie" - if linetype <> Stil.GetItemText then warnlog "Linetype should be: " + linetype + " But is: " + Stil.GetItemText - if linecolour <> Farbe.GetItemText then warnlog "Linecolour should be: " + linetype + " But is: " + Farbe.GetItemText - if linewidth <> Breite.GetText then warnlog "Linewidth should be: " + linewidth + " But is: " + Breite.GetText - if cornerstyletype <> CornerStyle.GetSelText then warnlog "CornerStyle should be: " + cornerstyletype + " But is: " + CornerStyle.GetSelText 'ItemText - TabLinie.ok - - '/// Check if the Shaddow-button is activated ///' - Kontext "GraphicObjectbar" - if Schatten.GetState(2) <> 1 then - warnlog "Shaddow-button shouldnt have been checked" - endif + printlog "Check Cornerstyle via FormatLine " + FormatLine + Kontext + Messagebox.SetPage TabLinie + kontext "TabLinie" + if linetype <> Stil.GetItemText then warnlog "Linetype should be: " + linetype + " But is: " + Stil.GetItemText + if linecolour <> Farbe.GetItemText then warnlog "Linecolour should be: " + linetype + " But is: " + Farbe.GetItemText + if linewidth <> Breite.GetText then warnlog "Linewidth should be: " + linewidth + " But is: " + Breite.GetText + if cornerstyletype <> CornerStyle.GetSelText then warnlog "CornerStyle should be: " + cornerstyletype + " But is: " + CornerStyle.GetSelText 'ItemText + TabLinie.ok + + printlog "Check if the Shaddow-button is activated " + Kontext "GraphicObjectbar" + if Schatten.GetState(2) <> 1 then + warnlog "Shaddow-button shouldnt have been checked" + endif - '/// Save the file. Then close the office and reload the file ///' + printlog "Save the file. Then close the office and reload the file " sFileName = ( ConvertPath(gOfficePath + "user\work\shaddow-test")) - '/// File-Save As with filter as: "user\temp\shaddow-test" ///' + printlog "File-Save As with filter as: user\temp\shaddow-test " try FileSaveAs Kontext "SpeichernDlg" @@ -233,12 +233,12 @@ testcase tiShaddow warnlog "Error when saving file." endcatch - '/// Close the office-session ///' + printlog "Close the office-session " FileClose Kontext "Messagebox" if Messagebox.Exists(2) then Messagebox.Yes Sleep 3 - '/// Open the saved file ///' + printlog "Open the saved file " try hFileOpen sFileName + "." + ExtensionString Sleep 3 @@ -247,11 +247,11 @@ testcase tiShaddow warnlog "Error when opening file." endcatch - '/// Select all ///' + printlog "Select all " EditSelectAll sleep 2 - '/// Check if the Shaddow-button still is activated ///' + printlog "Check if the Shaddow-button still is activated " kontext "GraphicObjectbar" if schatten.Getstate(2) <> 1 then warnlog "The Shadow-button should be activated" @@ -259,7 +259,7 @@ testcase tiShaddow Printlog "Shaddowbutton activated, good." endif - '/// Check the attributes for the picture ///' + printlog "Check the attributes for the picture " hOpenContextmenu sleep(2) if hMenuFindSelect(10087, true, 1) = false then @@ -267,7 +267,7 @@ testcase tiShaddow Call hCloseDocument Goto Endsub endif - 'Select "Position and Size" + printlog "Position and Size" sleep(2) Kontext Active.SetPage TabPositionAndSize @@ -279,7 +279,7 @@ testcase tiShaddow FormatArea sleep 1 kontext "TabArea" - '/// Switch to Shaddow-tabpage, do some changes, save them, close dialogue ///' + printlog "Switch to Shaddow-tabpage, do some changes, save them, close dialogue " Kontext active.SetPage TabSchatten kontext "TabSchatten" @@ -293,7 +293,7 @@ testcase tiShaddow if shadowcolorvalue <> Farbe.GetSelText then warnlog "Color value changed. Should be: " + shadowcolorvalue + ". But is: " + Farbe.gettext if shadowtransparencyvalue <> Transparenz.GetText then warnlog "Transparency value changed. Should be: " + shadowtransparencyvalue + ". But is: " + Transparenz.gettext - '/// Check Transparency ///' + printlog "Check Transparency" Kontext Active.SetPage TabTransparenz kontext "TabTransparenz" @@ -306,7 +306,7 @@ testcase tiShaddow kontext "TabSchatten" TabSchatten.Ok - '/// Check Cornerstyle via FormatLine ///' + printlog "Check Cornerstyle via FormatLine " FormatLine Kontext Messagebox.SetPage TabLinie @@ -317,7 +317,7 @@ testcase tiShaddow if cornerstyletype <> CornerStyle.GetSelText then warnlog "CornerStyle should be: " + cornerstyletype + " But is: " + CornerStyle.GetSelText 'ItemText TabLinie.ok - '/// If Impress: Save as Powerpoint-file. If Draw: Save as usual Draw-file. ///' + printlog "If Impress: Save as Powerpoint-file. If Draw: Save as usual Draw-file. " if (gApplication = "IMPRESS") then ExtensionString = "ppt" else @@ -344,19 +344,19 @@ testcase tiShaddow printlog "Saved as: " + sFileName Sleep 3 - '/// Close the office and reload the file ///' + printlog "Close the office and reload the file" FileClose Kontext "Messagebox" if Messagebox.Exists(2) then Messagebox.Yes Sleep 3 - '/// Open the saved file ///' + printlog " Open the saved file " hFileOpen (sFileName + "." + ExtensionString) printlog "File opened: " + sFileName + "." + ExtensionString Sleep 3 - '/// Select all ///' + printlog "Select all" EditSelectAll - '/// Check the attributes for the picture ///' + printlog "Check the attributes for the picture" hOpenContextmenu sleep(2) if hMenuFindSelect(10087, true, 1) = false then @@ -364,7 +364,7 @@ testcase tiShaddow Call hCloseDocument Goto Endsub endif - 'Select "Position and Size" + printlog "Select Position and Size" sleep(2) Kontext Active.SetPage TabPositionAndSize @@ -373,7 +373,7 @@ testcase tiShaddow if ImageHeight <> Height.GetText then warnlog "Position X differs. Should be: " + ImageHeight + " But is: " + Height.GetText TabPositionAndSize.OK - '/// Check if transparency has disappeared and if the cornerstyle has changed ///' + printlog "Check if transparency has disappeared and if the cornerstyle has changed" FormatArea Kontext Messagebox.SetPage TabTransparenz @@ -402,7 +402,7 @@ testcase tiShaddow TabTransparenz.Cancel - '/// Check Cornerstyle via FormatLine ///' + printlog "Check Cornerstyle via FormatLine " FormatLine Kontext Messagebox.SetPage TabLinie @@ -413,7 +413,7 @@ testcase tiShaddow if cornerstyletype <> CornerStyle.GetSelText then warnlog "CornerStyle should be: " + cornerstyletype + " But is: " + CornerStyle.GetSelText 'ItemText TabLinie.ok - '/// Remove the Shaddow, Transparency and Cornerstyle ///' + printlog "Remove the Shaddow, Transparency and Cornerstyle" FormatArea Kontext Messagebox.SetPage TabTransparenz @@ -421,14 +421,14 @@ testcase tiShaddow KeineTransparenz.Check sleep 1 kontext "TabArea" - '/// Switch to Shaddow-tabpage, do some changes, save them, close dialogue ///' + printlog "Switch to Shaddow-tabpage, do some changes, save them, close dialogue" Kontext active.SetPage TabSchatten kontext "TabSchatten" Anzeigen.UnCheck TabSchatten.Ok - '/// If Impress: Save as Powerpoint-file. If Draw: Save as usual Draw-file. ///' + printlog "If Impress: Save as Powerpoint-file. If Draw: Save as usual Draw-file." if (gApplication = "IMPRESS") then ExtensionString = "ppt" else @@ -454,19 +454,19 @@ testcase tiShaddow printlog "Saved as: " + sFileName Sleep 3 - '/// Close the office-session ///' + printlog "Close the office-session" FileClose Kontext "Messagebox" if Messagebox.Exists(2) then Messagebox.Yes Sleep 3 - '/// Open the saved file ///' + printlog "Open the saved file" hFileOpen (sFileName + "." + ExtensionString) printlog "File opened: " + sFileName + "." + ExtensionString Sleep 3 - '/// Select all ///' + printlog "Select all" EditSelectAll - '/// Check the attributes for the picture ///' + printlog "Check the attributes for the picture" hOpenContextmenu sleep(2) if hMenuFindSelect(10087, true, 1) = false then @@ -474,7 +474,7 @@ testcase tiShaddow Call hCloseDocument Goto Endsub endif - 'Select "Position and Size" + printlog "Select Position and Size" sleep(2) Kontext Active.SetPage TabPositionAndSize @@ -483,7 +483,7 @@ testcase tiShaddow if ImageHeight <> Height.GetText then warnlog "Position X differs. Should be: " + ImageHeight + " But is: " + Height.GetText TabPositionAndSize.OK - '/// Check if transparency has disappeared ///' + printlog "Check if transparency has disappeared " FormatArea Kontext Messagebox.SetPage TabTransparenz @@ -495,7 +495,7 @@ testcase tiShaddow end if TabTransparenz.Cancel - '/// Check if the cornerstyle has changed via FormatLine ///' + printlog "Check if the cornerstyle has changed via FormatLine " FormatLine Kontext Messagebox.SetPage TabLinie @@ -506,7 +506,7 @@ testcase tiShaddow if cornerstyletype <> CornerStyle.GetSelText then warnlog "CornerStyle should be: " + cornerstyletype + " But is: " + CornerStyle.GetSelText 'ItemText TabLinie.ok - '/// Close application ///' + printlog "Close application" Call hCloseDocument Printlog "Finished Shaddow-test for " + gApplication diff --git a/testautomation/graphics/optional/includes/global/g_spellcheck.inc b/testautomation/graphics/optional/includes/global/g_spellcheck.inc index f46c75f3e497..bd9cf36bb814 100644 --- a/testautomation/graphics/optional/includes/global/g_spellcheck.inc +++ b/testautomation/graphics/optional/includes/global/g_spellcheck.inc @@ -56,8 +56,7 @@ testcase tiToolsSpellcheckCheck_AlwaysIgnore sExt = ".odp" endif - Call hFileOpen (gTesttoolpath + "graphics\required\input\recht_"+iSprache+sExt) - call fMakeDocumentWritable() + Call hFileOpenLocally (gTesttoolpath + "graphics\required\input\recht_"+iSprache+sExt) sleep(1) @@ -86,50 +85,19 @@ testcase tiToolsSpellcheckCheck_AlwaysIgnore end if sleep 2 - PrintLog "- Spellcheck with correct text" - select case iSprache - case 01 : hTextrahmenErstellen ("This is a text without any error.<Return>",10,10,50,20) - case 33 : hTextrahmenErstellen ("Il nous faut donc un de temps pour examiner avec soin tous les dossiers.<Return>",10,10,70,20) - case 34 : hTextrahmenErstellen ("Este es un chico muy importante.",10,10,50,20) - case 36 : hTextrahmenErstellen ("akit a b�r�s�g vagy a szab�lys�rt�si hat�s�g a eltiltott",10,10,70,20) - case 39 : hTextrahmenErstellen ("La ringraziamo per l'interesse mostrato a collaborare con la firma.<Return>",10,10,70,20) - case 46 : hTextrahmenErstellen ("Det varierar vad som behandlas och ur vilket perspektiv.<Return>",10,10,50,20) - case 49 : hTextrahmenErstellen ("Dies ist ein Text ohne Fehler.<Return>",10,10,50,20) - case 50 : hTextrahmenErstellen ("To je besedilo brez napake.<Return>",10,10,50,20) - case 55 : hTextrahmenErstellen ("Esta poderia ser a resposta para suas preces?<Return>",10,10,50,20) - case else : - if bAsianLan then - printlog "For the language " + iSprache +" nothing is prepared yet, but is AsianLan, so OK :-) will use english instaed" - ' there was smth wrong, try to find out : - kontext - if active.exists then - printlog "ERROR: active: '"+active.gettext+"'" - active.ok - end if - hTextrahmenErstellen ("This is a text without any error.<Return>",10,10,50,20) - else - Warnlog "For the language " + iSprache +" nothing is prepared yet: insert text here" - hTextrahmenErstellen ("This is a text without any error.<Return>",10,10,50,20) - end if - end select - ToolsSpellcheck - WaitSlot (2000) - Kontext "Active" - if active.exists(5) then - printlog "Message: spellchecking has finished?: '" + active.gettext + "'" - Active.OK - else - errorLog "Spellcheck started :" - Kontext "Spellcheck" - if Spellcheck.exists then - errorlog " - spellcheck came up and will be closed now" - Spellcheck.Close - else - printlog "spellcheck didn't come up" - end if - end if - WaitSlot (2000) + printlog "Close dialog 'Edit Custom Dictionary'." + BenutzerwoerterbuchBearbeiten.Close + Kontext "ExtrasOptionenDlg" + printlog "Close the Option dialog." + ExtrasOptionenDlg.OK + + printlog "Close document" Call hCloseDocument + + ' remove the word again from the dictionary + delete_word_from_dictionary(sWrongWord,"IgnoreAllList") + + kill (convertPath(gOfficePath+"user/work/"+"recht_"+iSprache+sExt)) endcase 'tiToolsSpellcheckCorrect '------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ @@ -155,7 +123,7 @@ testcase tiToolsSpellcheckError case 39 : FehlerText$ = "Ringrarziamo per l'interessa mostrato a collaborare con la firma." : Fehler$ = "Ringrarziamo" : Sprachenname$ = "Italienisch" case 46 : FehlerText$ = "Detd varierar vad som behandlas och ur vilket perspektiv." : Fehler$ = "Detd" : Sprachenname$ = "Schwedisch" case 49 : FehlerText$ = "Diees ist ein Fehler." : Fehler$ = "Diees" : Sprachenname$ = "Deutsch" - case 50 : FehlerText$ = "Toje napaka, ker manjka presledek." : Fehler$ = "Toje" : Sprachenname$ = "Slovenš?ina" + case 50 : FehlerText$ = "Toje napaka, ker manjka presledek." : Fehler$ = "Toje" : Sprachenname$ = "Slovenš�?ina" case 55 : FehlerText$ = "Eesta poderia ser a resposta para suas preces?": Fehler$ = "Eesta" : Sprachenname$ = "Portugiesisch" case else : if bAsianLan then @@ -256,7 +224,9 @@ testcase tiToolsSpellcheckError ' remove the word again from the dictionary delete_word_from_dictionary(sWrongWord,"IgnoreAllList") -endcase 'tiToolsSpellcheckCheck + kill (convertPath(gOfficePath+"user/work/"+"recht_"+iSprache+sExt)) +endcase 'tiToolsSpellcheckCorrect + '------------------------------------------------------------------------------- testcase tiToolsSpellcheckCheck_Change @@ -281,9 +251,7 @@ testcase tiToolsSpellcheckCheck_Change sExt = ".odp" endif - Call hFileOpen (gTesttoolpath + "graphics\required\input\recht_"+iSprache+sExt) - - call fMakeDocumentWritable + Call hFileOpenLocally (gTesttoolpath + "graphics\required\input\recht_"+iSprache+sExt) ' Perform the test now: printlog "Call Tools->Spellcheck" @@ -327,8 +295,9 @@ testcase tiToolsSpellcheckCheck_Change printlog "Close document" Call hCloseDocument + kill (convertPath(gOfficePath+"user/work/"+"recht_"+iSprache+sExt)) -endcase +endcase 'tiToolsSpellcheckCheck_Change '------------------------------------------------------------------------------- testcase tiToolsSpellcheckCheck_ChangeAll @@ -355,9 +324,7 @@ testcase tiToolsSpellcheckCheck_ChangeAll sExt = ".odp" endif - Call hFileOpen (gTesttoolpath + "graphics\required\input\recht_"+iSprache+sExt) - - call fMakeDocumentWritable() + Call hFileOpenLocally (gTesttoolpath + "graphics\required\input\recht_"+iSprache+sExt) ' Perform the test now: printlog "Call Tools->Spellcheck" @@ -373,9 +340,12 @@ testcase tiToolsSpellcheckCheck_ChangeAll printlog "Close document" Call hCloseDocument + kill (convertPath(gOfficePath+"user/work/"+"recht_"+iSprache+sExt)) + +endcase 'tiToolsSpellcheckCheck_ChangeAll -endcase '------------------------------------------------------------------------------- + function delete_all_added_words(aWords) '/// this function delete the words in sWords in all user dictionaries @@ -384,44 +354,7 @@ function delete_all_added_words(aWords) Dim iWordCounter as integer Dim iBooks as integer - Select Case Ucase(gApplication) - case "DRAW" : sExt = ".odg" - case "IMPRESS" : sExt = ".odp" - end select - - printlog "Load prepared document containing 4 errors : graphics\\required\\input\\recht_" & iSprache & sExt - if (not bAsianLan) then - printlog "Check if the document is writable." - Call hFileOpen (gTesttoolpath + "graphics\required\input\recht_"+iSprache+sExt) - else - Call hFileOpen (gTesttoolpath + "graphics\required\input\recht_1"+sExt) - end if - if fIsDocumentWritable = false then - printlog "Make the document writable and check if it's succesfull." - if fMakeDocumentWritable = false then - warnlog "The document can't be make writeable. Test stopped." - goto endsub - end if - end if - select case iSprache ' sWord(1)=red : sWord(2)=turquoise - case 01 : sWord(1) = "documente" : sWord(2) = "expriss" - case 33 : sWord(1) = "intercu" : sWord(2) = "Lees" - case 34 : sWord(1) = "afekto" : sWord(2) = "fratternal" - case 36 : sWord(1) = "szeerint" : sWord(2) = "tervvezi" - case 39 : sWord(1) = "Millano" : sWord(2) = "tarrget" - case 46 : sWord(1) = "desa" : sWord(2) = "occh" - case 49 : sWord(1) = "Texxt" : sWord(2) = "reichtt" - case 50 : sWord(1) = "Bsedilo" : sWord(2) = "zados?a" - case 55 : sWord(1) = "esktava" : sWord(2) = "noitee" - case else : - if bAsianLan then - sWord(1) = "documente" : sWord(2) = "expriss" - else - Warnlog "For the language " + iSprache +" nothing is prepared yet: insert text here and create the file" - end if - end select - sleep 2 - + Printlog "Delete the given words from dictionaries." printlog "Call Tools->Options." ToolsOptions printlog "Select in category 'Languagesettings' entry 'Writing Aids.'" @@ -436,7 +369,7 @@ function delete_all_added_words(aWords) Kontext "BenutzerwoerterbuchBearbeiten" sleep 1 printlog "Check every book, if it contains the words." - iBooks = Buch.getItemCount + iBooks = Buch.getItemCount for iBookCounter = 1 to iBooks Buch.select(iBookCounter) printlog "Items in Booklist: " & WordList.getItemCount @@ -457,8 +390,10 @@ function delete_all_added_words(aWords) printlog "Press button 'OK' on dialog 'Writing Aids'." ExtrasOptionenDlg.OK -end function +end function 'delete_all_added_words + '------------------------------------------------------------------------------- + function delete_word_from_dictionary(sWord as String, sDictionary as String) '/// this function delete the words in sWords in all user dictionaries @@ -498,7 +433,9 @@ function delete_word_from_dictionary(sWord as String, sDictionary as String) printlog "Press button 'OK' on dialog 'Writing Aids'." ExtrasOptionenDlg.OK -end function +end function 'delete_word_from_dictionary + +'------------------------------------------------------------------------------- function fSelectWithString(oControl as Object,sText as String) @@ -513,8 +450,9 @@ function fSelectWithString(oControl as Object,sText as String) endif next -end function +end function 'fSelectWithString +'------------------------------------------------------------------------------- function getWordsForLanguage() @@ -563,4 +501,4 @@ function getWordsForLanguage() getWordsForLanguage = aWords -end function +end function 'getWordsForLanguage diff --git a/testautomation/graphics/optional/includes/global/g_stylist.inc b/testautomation/graphics/optional/includes/global/g_stylist.inc index fab547eb5d3b..71d05f7d704c 100644 --- a/testautomation/graphics/optional/includes/global/g_stylist.inc +++ b/testautomation/graphics/optional/includes/global/g_stylist.inc @@ -38,17 +38,18 @@ testcase tFormatStylistFlyer Dim ySize% printlog " - Format/Stylist : using all possible things to manipulate the flyer" - '/// open application ///' + printlog "open application" Call hNewDocument Kontext "Gestalter" - '/// Check if stylist is there. Expected: not there ///' + printlog "Check if stylist is there. Expected: not there" if Gestalter.NotExists = false Then - qaErrorLog " - Expected Stylist to be closed; But is Open. Check tests." + qaErrorLog "Expected Stylist to be closed; But is Open. Check tests." else if lcase(gPlatform) = "osx" then hTypekeys "<mod1 t>" else - hTypekeys "<F11>" '/// open stylist by pressing key [F11] ///' + printlog "open stylist by pressing key [F11]" + hTypekeys "<F11>" end if sleep 1 end if @@ -57,51 +58,51 @@ testcase tFormatStylistFlyer Warnlog " No stylist popped up using F11; opening now via slotID" FormatStylist end if - '///+ save stylist position and size ///' + printlog "save stylist position and size" xPos% = Gestalter.GetPosX yPos% = Gestalter.GetPosY xSize% = Gestalter.GetSizeX ySize% = Gestalter.GetSizeY - '///+ if Stylist is docked; undock ///' + printlog " if Stylist is docked; undock" if Gestalter.IsDocked then Gestalter.UnDock - printlog " - '///move stylist ///" - '///+ move stylist to 10,10 ///' + printlog " move stylist" + printlog "move stylist to 10,10" Gestalter.Move 10, 10 Sleep 1 - '///+ move stylist to 300,400 ///' + printlog "move stylist to 300,400" Gestalter.Move 300, 400 Sleep 1 - '///+ move stylist to 590,790 ///' + printlog "move stylist to 590,790" Gestalter.Move 590, 790 Sleep 1 - '///+ move stylist back to saved start position ///' + printlog " move stylist back to saved start position" Gestalter.Move xPos%, yPos% Sleep 1 - printlog " - '///size stylist ///" - '///+ change size to 200,200 ///' + printlog "size stylist" + printlog "change size to 200,200" Gestalter.Size 200, 200 Sleep 1 - '///+ change size to 300,400 ///' + printlog "change size to 300,400" Gestalter.Size 300, 400 Sleep 1 - '///+ change size to 150,250 ///' + printlog "change size to 150,250" Gestalter.Size 150, 250 Sleep 1 - '///+ change size back to saved size ///' + printlog "change size back to saved size" Gestalter.Size xSize%, ySize% Sleep 1 - printlog " - Close stylist reopen stylist, check if appearence is same as before" - '/// save stylist position and size ///' + printlog "Close stylist reopen stylist, check if appearence is same as before" + printlog "save stylist position and size" xPos% = Gestalter.GetPosX yPos% = Gestalter.GetPosY xSize% = Gestalter.GetSizeX ySize% = Gestalter.GetSizeY - '/// close stylist Format->Stylist ///' + printlog "close stylist Format->Stylist" FormatStylist Sleep 1 - '/// open stylist Format->Stylist ///' + printlog "open stylist Format->Stylist" FormatStylist sleep (1) if xPos% <> Gestalter.GetPosX then Warnlog "The x-Pos. has changed : Should be -> '"+ xPos% + "' Is -> '"+ Gestalter.GetPosX +"'." @@ -110,29 +111,29 @@ testcase tFormatStylistFlyer if ySize% <> Gestalter.GetSizeY then Warnlog "The y-Size has changed : Should be -> '"+ ySize% + "' Is -> '"+ Gestalter.GetSizeY +"'." printlog " - dock stylist" - '/// dock stylist ///' + printlog "dock stylist" Gestalter.Dock Sleep 1 if (NOT Gestalter.IsDocked) then warnlog " stylist not docked but should" endif - '/// UNdock stylist ///' + printlog "UNdock stylist" if (Gestalter.IsDocked) Then Gestalter.UnDock endif Sleep 1 printlog " - maximize/minimize stylist" - '/// minimize stylist ///' + printlog "minimize stylist" Gestalter.Minimize Sleep 1 - '/// maximize stylist ///' + printlog "maximize stylist" Gestalter.Maximize Sleep 1 if (NOT Gestalter.IsMax) then warnlog " The stylist did not return to maximized state" endif - '/// close stylist ///' + printlog "close stylist" Gestalter.Close Call hCloseDocument @@ -518,8 +519,10 @@ testcase tiFormatStylist goto endsub end select + printlog "Open new doc" Call hNewDocument sleep 2 + printlog "call the navigator" Kontext "Gestalter" if Gestalter.Exists Then Warnlog "- Stylist exists, perhaps not closed last time a Impress doc was open" @@ -529,11 +532,14 @@ testcase tiFormatStylist FormatStylist Kontext "Gestalter" + printlog "opening graphics styles" Grafikvorlagen.Click sleep 1 + printlog "Select number 1" Vorlagenliste.Select Num1 ' num1 sleep 1 Printlog "- open Grafic template Dialogs using the context menue , checking if all resources exist" + printlog "Opening context menu" Vorlagenliste.OpenContextMenu sleep 1 hMenuSelectNr (2) @@ -543,6 +549,7 @@ testcase tiFormatStylist Messagebox.SetPage TabText Kontext "TabText" sleep 1 + printlog "Canceling dialog" TabText.Cancel sleep 1 @@ -550,18 +557,21 @@ testcase tiFormatStylist Kontext "Gestalter" Printlog "- presentation templates" sleep 1 + printlog "presentation styles" Praesentationsvorlagen.Click Vorlagenliste.Select Num2 sleep 1 + printlog "opening context menu" Vorlagenliste.OpenContextMenu sleep 1 + printlog "selecting modify" hMenuSelectNr (1) sleep 1 Kontext if Messagebox.exists (5) then try - ' Messagebox.SetPage TabArea + printlog "Messagebox.SetPage TabArea" Kontext "TabArea" if TabArea.Exists = false then warnlog "Where is TabArea?" @@ -578,86 +588,111 @@ testcase tiFormatStylist Kontext "Gestalter" sleep 1 + printlog "Select number 3" Vorlagenliste.Select Num3 sleep 1 + printlog "opening context menu of number 3" Vorlagenliste.OpenContextMenu sleep 1 hMenuSelectNr (1) sleep 1 + printlog "Check the styles..." call hWalkTheStyles (1,1) Kontext + printlog "setting tabpage indents and spacing" Messagebox.SetPage TabEinzuegeUndAbstaende Kontext "TabEinzuegeUndAbstaende" sleep 1 + printlog "Canceling tabpage" TabEinzuegeUndAbstaende.Cancel sleep 1 Kontext "Gestalter" sleep 1 + printlog "Select number 4" Vorlagenliste.Select Num4 sleep 1 + printlog "opening context menu of number 4" Vorlagenliste.OpenContextMenu sleep 1 hMenuSelectNr (1) sleep 1 Kontext + printlog "setting tabpage TabFont" Messagebox.SetPage TabFont kontext "TabFont" Kontext + printlog "setting tabpage TabFontEffects" Messagebox.SetPage TabFontEffects kontext "TabFontEffects" Kontext + printlog "setting tabpage TabIndents and Spacing" Messagebox.SetPage TabEinzuegeUndAbstaende kontext "TabEinzuegeUndAbstaende" sleep 1 + printlog "canceling TabIndents and Spacing" TabEinzuegeUndAbstaende.Cancel sleep 1 Kontext "Gestalter" sleep 1 + printlog "opening context menu of number 5" Vorlagenliste.Select Num5 sleep 1 + printlog "opening context menu of number 5" Vorlagenliste.OpenContextMenu sleep 1 hMenuSelectNr (1) sleep 1 Kontext + printlog "setting tabpage Tab Font" Messagebox.SetPage TabFont kontext "TabFont" Kontext + printlog "setting tabpage Tab FontEffects" Messagebox.SetPage TabFontEffects kontext "TabFontEffects" Kontext + printlog "setting tabpage TabIndents and Spacing" Messagebox.SetPage TabEinzuegeUndAbstaende kontext "TabEinzuegeUndAbstaende" sleep 1 Kontext + printlog "setting tabpage Tab Bullets" Messagebox.SetPage TabBullet Kontext "TabBullet" sleep 1 Kontext + printlog "setting tabpage Tab Numbering Type" Messagebox.SetPage TabNumerierungsart Kontext "TabNumerierungsart" sleep 1 Kontext + printlog "setting tabpage Tab Graphics" Messagebox.SetPage TabGrafiken Kontext "TabGrafiken" sleep 1 Kontext + printlog "setting tabpage Tab Numbering options" Messagebox.SetPage TabOptionenNumerierung Kontext "TabOptionenNumerierung" sleep 1 + printlog "Canceling..." TabOptionenNumerierung.Cancel sleep 1 endif + kontext "DocumentImpress" + printlog "Closing Stylist" if lcase(gPlatform) = "osx" then hTypekeys "<mod1 t>" else - hTypeKeys "<F11>" + Kontext "Gestalter" + Gestalter.Close end if sleep 1 Kontext "Gestalter" if Gestalter.Exists Then Warnlog "- Stylist could not be closed pressing F11" + printlog "Closing doc." Call hCloseDocument endcase 'tiFormatStylist diff --git a/testautomation/graphics/optional/includes/global/g_tables.inc b/testautomation/graphics/optional/includes/global/g_tables.inc index 410ed8ca0fc6..10774ab43d76 100644 --- a/testautomation/graphics/optional/includes/global/g_tables.inc +++ b/testautomation/graphics/optional/includes/global/g_tables.inc @@ -44,10 +44,12 @@ testcase tiInsertTableUsingMenu Call hNewDocument printlog "Switching between Draw/Impress" if ( gApplication = "IMPRESS" ) then + Kontext "Document Impress" DocumentImpress.UseMenu hMenuSelectNr(4) hMenuSelectNr(14) else + Kontext "Document Draw" DocumentDraw.UseMenu hMenuSelectNr(4) hMenuSelectNr(11) @@ -208,9 +210,11 @@ testcase tiTableObjectBar printlog "Switching between Draw/Impress" if ( gApplication = "IMPRESS" ) then DocumentImpress.UseMenu + Kontext "Document Impress" hMenuSelectNr(4) hMenuSelectNr(14) else + Kontext "Document Draw" DocumentDraw.UseMenu hMenuSelectNr(4) hMenuSelectNr(11) diff --git a/testautomation/graphics/optional/includes/global/g_tools.inc b/testautomation/graphics/optional/includes/global/g_tools.inc index 04fc0b92d4b2..9faee3508c1b 100644 --- a/testautomation/graphics/optional/includes/global/g_tools.inc +++ b/testautomation/graphics/optional/includes/global/g_tools.inc @@ -29,11 +29,6 @@ '* '* short description : will be moved to autocorrection.bas/inc '* -'************************************************************************************** -' #1 tiToolsThesaurus -' #1 tiToolsHyphenation1 -' #1 tiToolsHyphenation2 -' #1 tToolsMacro '\************************************************************************************* ' sFile = gTesttoolpath + "graphics\required\input\silben_"+iSprache+sExt @@ -46,6 +41,7 @@ testcase tiToolsThesaurus Dim sAlternativeText as string Dim sExt as string Dim ZaehlerBedeutung + dim sWorkFile as string 'for normal text, the thesaurus is enabled, 'if the format->character->language of the word has a thesaurus @@ -54,7 +50,7 @@ testcase tiToolsThesaurus 'so especially for asian languages you have to set a default language in the options, 'to be able to use the thesaurus there - fallback to englisch, 'because there is no thesaurus for cjk languages - + 'As long as OOo has no modules for that, disabled if gOOO = True then printlog "No spellchecking in OOo" @@ -63,64 +59,65 @@ testcase tiToolsThesaurus 'First we make sure we test a language where Thesaurus select case iSprache - case 01 : sWord = "Hello" - case 03 : sWord = "Alo" - case 07 : printlog "- No Thesaur for Russian available" - goto endsub - case 30 : Printlog "- No Thesaurus available !" - goto endsub - case 31 : sWord = "Guiten" - case 33 : sWord = "Bonjour" - case 34 : sWord = "Hola" - case 35 : Printlog "- No Thesaurus available !" - goto endsub - case 36 : Printlog "- No Thesaurus available !" - goto endsub - case 37 : Printlog "- No Thesaurus available !" - goto endsub - case 39 : sWord = "Ciao" - case 42 : Printlog "- No Thesaurus available !" - goto endsub - case 45 : sWord = "Hej" - case 46 : sWord = "Välkommen" - case 47 : Printlog "- No Thesaurus available !" - goto endsub - case 48 : Printlog "- No Thesaurus in Polish!" - goto endsub - case 49 : sWord = "Hallo" - case 50 : sWord = "Prosojnica" - case 51 : Printlog "- No Thesaurus available !" - goto endsub - case 55 : Printlog "- No Thesaurus in Brazilian!" - goto endsub - case 90 : Printlog "- No Thesaurus available !" - goto endsub + case 01 : sWord = "Hello" + case 03 : sWord = "Alo" + case 07 : printlog "- No Thesaur for Russian available" + goto endsub + case 30 : Printlog "- No Thesaurus available !" + goto endsub + case 31 : sWord = "Guiten" + case 33 : sWord = "Bonjour" + case 34 : sWord = "Hola" + case 35 : Printlog "- No Thesaurus available !" + goto endsub + case 36 : Printlog "- No Thesaurus available !" + goto endsub + case 37 : Printlog "- No Thesaurus available !" + goto endsub + case 39 : sWord = "Ciao" + case 42 : Printlog "- No Thesaurus available !" + goto endsub + case 45 : sWord = "Hej" + case 46 : sWord = "Välkommen" + case 47 : Printlog "- No Thesaurus available !" + goto endsub + case 48 : Printlog "- No Thesaurus in Polish!" + goto endsub + case 49 : sWord = "Hallo" + case 50 : sWord = "Prosojnica" + case 51 : Printlog "- No Thesaurus available !" + goto endsub + case 55 : Printlog "- No Thesaurus in Brazilian!" + goto endsub + case 90 : Printlog "- No Thesaurus available !" + goto endsub - case else : if bAsianLan then - hSetSpellHypLanguage - sWord = "Hello" - else - Warnlog "For the language " + iSprache +" nothing is prepared yet: insert text here" - sWord = "Hello" - endif + case else : if bAsianLan then + hSetSpellHypLanguage + sWord = "Hello" + else + Warnlog "For the language " + iSprache +" nothing is prepared yet: insert text here" + sWord = "Hello" + endif end select - + PrintLog "Thesaurus with 1 word: " + sWord - if( Ucase(gApplication) = "DRAW" ) then + if( gApplication = "DRAW" ) then sExt = ".odg" - elseif( Ucase(gApplication) = "IMPRESS" ) then + elseif( gApplication = "IMPRESS" ) then sExt = ".odp" endif - Call hFileOpen (gTesttoolpath + "graphics\required\input\recht_" + iSprache + sExt) - Call sMakeReadOnlyDocumentEditable() + sWorkFile = gTesttoolPath & "graphics\required\input\recht_" & iSprache & sExt + + Call hFileOpenLocally( sWorkFile ) Call hTextrahmenErstellen (sWord,20,20,50,30) sleep 1 printlog "select the word" hTypeKeys "<Home><SHIFT END>" - + try ExtrasThesaurusDraw catch @@ -154,8 +151,7 @@ testcase tiToolsThesaurus endif if ( ReplaceWith.getText() <> sAlternativeText ) then - warnlog "the text is no transfered to the ReplaceWith field. " +_ - "ReplaceWith = " + ReplaceWith.getText() + ", Alternative = " + sAlternativeText + warnlog "the text is no transfered to the ReplaceWith field. " + "ReplaceWith = " + ReplaceWith.getText() + ", Alternative = " + sAlternativeText else printlog "the text is transfered to the ReplaceWith field." endif @@ -165,9 +161,9 @@ testcase tiToolsThesaurus endif Thesaurus.OK - if(Ucase(gApplication) = "DRAW") then + if(gApplication = "DRAW") then Kontext "Draw" - elseif(Ucase(gApplication) = "IMPRESS") then + elseif(gApplication = "IMPRESS") then Kontext "Impress" else ' fallback warnlog "gApplication is wrong" @@ -186,10 +182,10 @@ testcase tiToolsThesaurus else warnlog "thesaurus didn't come up." end if - + Call hCloseDocument -endcase +endcase 'tiToolsThesaurus '------------------------------------------------------------------------------- testcase tiToolsThesaurusWithoutText @@ -210,9 +206,9 @@ testcase tiToolsThesaurusWithoutText endif Call hCloseDocument - -endcase + +endcase 'tiToolsThesaurusWithoutText '------------------------------------------------------------------------------- testcase tiToolsThesaurusContextMenu @@ -236,46 +232,46 @@ testcase tiToolsThesaurusContextMenu 'First we make sure we test a language where Thesaurus select case iSprache - case 01 : sWord = "Hello" - case 03 : sWord = "Alo" - case 07 : printlog "- No Thesaur for Russian available" - goto endsub - case 30 : Printlog "- No Thesaurus available !" - goto endsub - case 31 : sWord = "Guiten" - case 33 : sWord = "Bonjour" - case 34 : sWord = "Hola" - case 35 : Printlog "- No Thesaurus available !" - goto endsub - case 36 : Printlog "- No Thesaurus available !" - goto endsub - case 37 : Printlog "- No Thesaurus available !" - goto endsub - case 39 : sWord = "Ciao" - case 42 : Printlog "- No Thesaurus available !" - goto endsub - case 45 : sWord = "Hej" - case 46 : sWord = "Välkommen" - case 47 : Printlog "- No Thesaurus available !" - goto endsub - case 48 : Printlog "- No Thesaurus in Polish!" - goto endsub - case 49 : sWord = "Hallo" - case 50 : sWord = "Prosojnica" - case 51 : Printlog "- No Thesaurus available !" - goto endsub - case 55 : Printlog "- No Thesaurus in Brazilian!" - goto endsub - case 90 : Printlog "- No Thesaurus available !" - goto endsub + case 01 : sWord = "Hello" + case 03 : sWord = "Alo" + case 07 : printlog "- No Thesaur for Russian available" + goto endsub + case 30 : Printlog "- No Thesaurus available !" + goto endsub + case 31 : sWord = "Guiten" + case 33 : sWord = "Bonjour" + case 34 : sWord = "Hola" + case 35 : Printlog "- No Thesaurus available !" + goto endsub + case 36 : Printlog "- No Thesaurus available !" + goto endsub + case 37 : Printlog "- No Thesaurus available !" + goto endsub + case 39 : sWord = "Ciao" + case 42 : Printlog "- No Thesaurus available !" + goto endsub + case 45 : sWord = "Hej" + case 46 : sWord = "Välkommen" + case 47 : Printlog "- No Thesaurus available !" + goto endsub + case 48 : Printlog "- No Thesaurus in Polish!" + goto endsub + case 49 : sWord = "Hallo" + case 50 : sWord = "Prosojnica" + case 51 : Printlog "- No Thesaurus available !" + goto endsub + case 55 : Printlog "- No Thesaurus in Brazilian!" + goto endsub + case 90 : Printlog "- No Thesaurus available !" + goto endsub - case else : if bAsianLan then - hSetSpellHypLanguage - sWord = "Hello" - else - Warnlog "For the language " + iSprache +" nothing is prepared yet: insert text here" - sWord = "Hello" - endif + case else : if bAsianLan then + hSetSpellHypLanguage + sWord = "Hello" + else + Warnlog "For the language " + iSprache +" nothing is prepared yet: insert text here" + sWord = "Hello" + endif end select PrintLog "Thesaurus with 1 word: " + sWord @@ -286,7 +282,7 @@ testcase tiToolsThesaurusContextMenu printlog "select the word" hTypeKeys "<Home><SHIFT END>" - + hOpenContextMenu hMenuSelectNr(14) ' the synonyms @@ -308,28 +304,31 @@ testcase tiToolsThesaurusContextMenu call hCloseDocument -endcase +endcase 'tiToolsThesaurusContextMenu '------------------------------------------------------------------------------- testcase tiToolsHyphenation1 printlog " - Hyphenation without any text" - Call hNewDocument '/// New impress document ///' + printlog "New impress document " + Call hNewDocument sleep 3 - ToolsLanguageHyphenationDraw '/// Try with empty document ///' + ToolsLanguageHyphenationDraw Kontext "Hyphenation" + printlog "Try with empty document" if Hyphenation.Exists(1) = True Then - Warnlog " - Dialog ist da" - Hyphenation.Cancel + Warnlog " - Dialog ist da" + Hyphenation.Cancel else - Printlog " - Hyphenation activated" + Printlog " - Hyphenation activated" end if ' Kontext "DocumentImpress" printlog " - Hyphenation with text, but without any possibility to break words" select case iSprache - case 01 : hTextrahmenErstellen ("This ist a text with no split words",10,10,40,40) '/// Create text without a pssibility to split words///' + case 01 : hTextrahmenErstellen ("This ist a text with no split words",10,10,40,40) case 03 : hTextrahmenErstellen ("Compare a tradu" + Chr(231) + Chr(227) + "o com o original",10,10,40,40) case 07 : qaerrorlog "- No Hypenation for Russian available" - Call hCloseDocument '/// Close document ///' + printlog "Close document" + Call hCloseDocument goto endsub case 31 : hTextrahmenErstellen ("Het is mijn bedoeling om voor en hulpmiddel.",10,10,40,40) case 33 : hTextrahmenErstellen ("Merci beaucoup pout votre candidature du 13/11/97.",10,10,40,40) @@ -340,7 +339,7 @@ testcase tiToolsHyphenation1 case 46 : hTextrahmenErstellen ("Detta är en text utan delade ord",10,10,40,40) case 48 : hTextrahmenErstellen (" Jeoli jednak zechcesz",10,10,40,40) case 49 : hTextrahmenErstellen ("Dies ist ein Text ohne eine Moeglichkeit Woerter zu trennen",10,10,40,40) - case 50 : hTextrahmenErstellen ("Zato ves ?as iš?emo nove ?lane: sodelujte",10,10,40,40) + case 50 : hTextrahmenErstellen ("Zato ves �?as iš�?emo nove �?lane: sodelujte",10,10,40,40) case 55 : hTextrahmenErstellen ("a Sun tentou adquirir a Apple",10,10,40,40) case else : if bAsianLan then printlog "For the language " + iSprache +" nothing is prepared yet, but is AsianLan, so OK :-)" @@ -351,7 +350,7 @@ testcase tiToolsHyphenation1 endif end select hTypeKeys "<Home>" - ToolsLanguageHyphenationDraw '/// Try ///' + ToolsLanguageHyphenationDraw Kontext "Hyphenation" if Hyphenation.Exists =True Then Warnlog "Dialog exists" @@ -360,32 +359,32 @@ testcase tiToolsHyphenation1 Kontext "Active" if Active.Exists then Active.OK end if - - Call hCloseDocument '/// Close document ///' + printlog "Close document " + Call hCloseDocument endcase 'tiToolsHyphenation1 '------------------------------------------------------------------------------- testcase tiToolsHyphenation2 - dim iWaitIndex as integer - dim sExt as string - Dim i : Dim DasWort2 : Dim DasWort3 : Dim DasWort4 : Dim DasWort5 : Dim DasWort6 : Dim DasWort7 - Dim DasWort as string - dim sDraw as string - dim sFile as string - PrintLog "- Tools/Hyphenation2" - Select Case Ucase(gApplication) - case "DRAW" : sExt = ".odg" - case "IMPRESS" : sExt = ".odp" - end select + dim iWaitIndex as integer + dim sExt as string + Dim i : Dim DasWort2 : Dim DasWort3 : Dim DasWort4 : Dim DasWort5 : Dim DasWort6 : Dim DasWort7 + Dim DasWort as string + dim sDraw as string + dim sFile as string + PrintLog "- Tools/Hyphenation2" + Select Case gApplication + case "DRAW" : sExt = ".odg" + case "IMPRESS" : sExt = ".odp" + end select - if ((not bAsianLan) AND (iSprache <> 07)) then - sFile = gTesttoolpath + "graphics\required\input\silben_"+iSprache+sExt - Call hFileOpen (sFile) - endif + if ((not bAsianLan) AND (iSprache <> 07)) then + sFile = gTesttoolpath + "graphics\required\input\silben_"+iSprache+sExt + Call hFileOpenLocally( sFile ) + endif - select case iSprache '/// Open prepared document ///' + select case iSprache case 01 :DasWort = "ation" : DasWort2 = "tion" : DasWort3 = "ion" : DasWort4 = "on" '+Chr(34) case 07 : qaerrorlog "- No Hypenation for Russian available" goto endsub @@ -402,6 +401,7 @@ testcase tiToolsHyphenation2 case else : if bAsianLan then printlog "For the language " + iSprache +" nothing is prepared yet, but is AsianLan, so OK :-)" printlog " :-) will use English instead" + printlog "Open prepared document" Call hFileOpen (gTesttoolpath + "graphics\required\input\silben_"+"1"+sExt) DasWort = "ation" : DasWort2 = "tion" : DasWort3 = "ion" : DasWort4 = "on" '+Chr(34) else @@ -410,44 +410,49 @@ testcase tiToolsHyphenation2 endif end select - Call sMakeReadOnlyDocumentEditable - - printlog " - Test hyphenation" - EditSelectAll '/// Press CTRL + A to select all ///' - '/// press return to go into the edit mode ///' + printlog "Test hyphenation" +printlog "Press CTRL + A to select all" + EditSelectAll + printlog "press return to go into the edit mode" hTypeKeys "<Return>" sleep 1 ' WA for draw, or smth else: get text part before hyphenation: if iSprache = "1" OR bAsianLan = TRUE then - hTypeKeys "<MOD1 END><HOME><MOD1 SHIFT RIGHT RIGHT>" '/// Select part of text and compare it with original text at this place ///' + printlog "Select part of text and compare it with original text at this place" + hTypeKeys "<MOD1 END><HOME><MOD1 SHIFT RIGHT RIGHT>" else hTypeKeys "<MOD1 END><HOME><MOD1 SHIFT RIGHT>" endif EditCopy sDraw = GetClipboardText() - EditSelectAll '/// Select whole text ///' - ToolsLanguageHyphenationDraw '/// Run Hyphenation ///' + printlog "Select whole text" + EditSelectAll + printlog "Run Hyphenation" + ToolsLanguageHyphenationDraw gMouseClick 50,50 - hTypeKeys "<MOD1 END><HOME><MOD1 SHIFT RIGHT>" '/// Select part of text and compare it with original text at this place ///' + printlog "Select part of text and compare it with original text at this place" + hTypeKeys "<MOD1 END><HOME><MOD1 SHIFT RIGHT>" sleep 3 EditCopy -printlog GetClipboardText + + printlog GetClipboardText select case GetClipboardText - case DasWort : printlog " - Hyphenation worked" - case DasWort2 : printlog " - Hyphenation worked" - case DasWort3 : printlog " - Hyphenation worked" - case DasWort4 : printlog " - Hyphenation worked" - case else : warnlog " - Hyphenation didnt work" + case DasWort : printlog " - Hyphenation worked" + case DasWort2 : printlog " - Hyphenation worked" + case DasWort3 : printlog " - Hyphenation worked" + case DasWort4 : printlog " - Hyphenation worked" + case else : warnlog " - Hyphenation didnt work" end select if GetClipboardText <> sDraw then - Printlog " - WA draw hyphenation did work :-)" + Printlog " - WA draw hyphenation did work :-)" else - Warnlog " - Hyphenation did not work" - Printlog "Expected: '"+DasWort+"'; or something different than: '"+sDraw+"'; But what we got was: '"+GetClipboardText+"'" + Warnlog " - Hyphenation did not work" + Printlog "Expected: '"+DasWort+"'; or something different than: '"+sDraw+"'; But what we got was: '"+GetClipboardText+"'" end if sleep 1 - Call hCloseDocument '/// Close document ///' + printlog "Close document" + Call hCloseDocument endcase 'tiToolsHyphenation2 @@ -464,7 +469,7 @@ testcase tToolsMacro ToolsMacro Kontext "Makro" - '/// to get the count of all macros, the list needs to get elapsed-all ///' + printlog "to get the count of all macros, the list needs to get elapsed-all" for j = 1 to 2 Zaehler=MakroAus.GetItemCount MakroAus.typeKeys "<end>" @@ -578,5 +583,5 @@ testcase tToolsMacro 'TODO: organizer testing! Call hCloseDocument Call hCloseDocument - + endcase 'tToolsMacro diff --git a/testautomation/graphics/optional/includes/global/g_zoom.inc b/testautomation/graphics/optional/includes/global/g_zoom.inc index c82b6743966a..90741015aafd 100644 --- a/testautomation/graphics/optional/includes/global/g_zoom.inc +++ b/testautomation/graphics/optional/includes/global/g_zoom.inc @@ -49,20 +49,22 @@ testcase tViewZoom Datei$ = ConvertPath (gOfficePath + "user\work\test." & ExtensionString) Printlog "- View-Zoom testing" - if dir(Datei$) <> "" then app.Kill(Datei$) ' to avoid the anoying overwrite warnlog :-) - Call hNewDocument '/// new document ///' + printlog "to avoid the anoying overwrite warnlog :-)" + if dir(Datei$) <> "" then app.Kill(Datei$) + printlog "new document" +Call hNewDocument ViewZoom Kontext "Massstab" - Vergroesserung100.Check '/// set zoom to 50% ///' + Vergroesserung100.Check Massstab.OK - '/// create a number of rectangles with different color properties ///' + printlog "create a number of rectangles with different color properties" Kontext "SD_Farbleiste" sleep 1 if SD_Farbleiste.Exists then Printlog "- Color toolbar will be disabled now" ViewToolbarsColorBar end if - '/// All rectangles are created with same dimensions but using different zoom settings ///' + printlog "All rectangles are created with same dimensions but using different zoom settings" For Zaehler = 1 to 9 Position1 = 5 * Zaehler - 3 Position2 = 105 - 5 * Zaehler @@ -77,9 +79,11 @@ testcase tViewZoom gMouseClick 50,0 Next Zaehler sleep 2 - hFileSaveAs (Datei$) '/// save document ///' + printlog "save document" + hFileSaveAs (Datei$) sleep 3 - for Zaehler = 1 to 6 '/// changing zoom settings and checking functionality with controlling the color of the selected rectangle ///' + printlog "changing zoom settings and checking functionality with controlling the color of the selected rectangle" + for Zaehler = 1 to 6 ViewZoom Kontext "Massstab" VergroesserungStufenlos.check @@ -103,18 +107,14 @@ testcase tViewZoom Case 6: VergroesserungStufenlos.check Stufenlos.Settext "200" - 'Case 2: Vergroesserung50.check - 'Case 3: Vergroesserung75.check - 'Case 4: Vergroesserung100.check - 'Case 5: Vergroesserung150.check - 'Case 6: Vergroesserung200.check End Select Massstab.OK sleep 1 Kontext "DocumentImpress" - gMouseClick 15,15 'hier soll die Maus ein Rechteck treffen; - 'die Farbe des Rechtecks sagt uns dann, ob - FormatArea 'richtig vergroessert oder verkleinert wurde. + printlog "Mouseclick should hit a rectangle. Color tells us then if it was zoomed correctly." + gMouseClick 15,15 + + FormatArea sleep 1 Kontext Active.SetPage TabFarben @@ -128,6 +128,6 @@ testcase tViewZoom 'Optimal.push 'Seitenbreite.push sleep 2 - - Call hCloseDocument '/// close document ///' + printlog "close document" + Call hCloseDocument endcase diff --git a/testautomation/graphics/optional/includes/impress/i_animation.inc b/testautomation/graphics/optional/includes/impress/i_animation.inc index 8ee7777e5994..ac1c07ed817e 100644 --- a/testautomation/graphics/optional/includes/impress/i_animation.inc +++ b/testautomation/graphics/optional/includes/impress/i_animation.inc @@ -37,151 +37,178 @@ ' Dateiname.SetText ConvertPath (gTesttoolPath + "global\input\graf_inp\grafix3.ras") testcase tExtrasAnimation + + Dim i + Dim Zaehler + Dim ZaehlerAnpassung + + Printlog "- Tools/Animation" - Dim i - Call hNewDocument - Call sSelectEmptyLayout '/// New impress document ///' - sleep 2 - InsertGraphicsFromFile '/// insert graphic file (sample.bmp) ///' - sleep 1 - Kontext "GrafikEinfuegenDlg" - sleep 2 + printlog "New impress document " + Call hNewDocument + Call sSelectEmptyLayout + sleep 2 + printlog "insert graphic file (sample.bmp) " + InsertGraphicsFromFile + sleep 1 + Kontext "GrafikEinfuegenDlg" + sleep 2 Dateiname.SetText ConvertPath (gTesttoolPath + "global\input\graf_inp\enter.bmp") sleep 2 Oeffnen.Click sleep 2 - Kontext "DocumentImpress" - DocumentImpress.MouseDoubleClick 90,90 '/// Deselect graphic ///' - sleep 1 - InsertGraphicsFromFile - sleep 2 - Kontext "GrafikEinfuegenDlg" - Dateiname.SetText ConvertPath (gTesttoolPath + "global\input\graf_inp\grafix3.ras") - sleep 2 - Oeffnen.Click - sleep 2 - Opl_SD_EffekteZulassen - Kontext "Animation" - - for i=1 to 10 - BildAufnehmen.Click '/// add selected picture 10 times into the animation ///' - next i - sleep 1 - if AnzahlBilder.GetText <> "10" Then '/// compare frame number in animation dialog ///' - WarnLog " - Adding graphics did not work" - else - PrintLog " Pictures added" - end if - - if AlleAufnehmen.IsEnabled Then WarnLog " - Add all should not be enabled, there is only 1 graphic selected" '/// test if Add all is eneabled (shouldn't be because of only 1 object selected) ///' - Kontext "DocumentImpress" - EditSelectAll '/// Select both pictures ///' - - Kontext "Animation" - - for i=1 to 5 - AlleAufnehmen.Click '/// Add all (5 times) ///' - next i - sleep 1 - if AnzahlBilder.GetText <> "20" Then '/// check if number of frames is now 20 ///' - WarnLog " - Adding pics did not work" - else - PrintLog " All pics added" - end if - - ErstesBild.Click '/// Click First Picture ///' - - if AnzahlBilder.GetText <> "1" Then '/// Control if we are at frame 1 ///' - WarnLog " - Jump back to start did not work" - else - PrintLog " Jumped back to first picture" - end if - - LetztesBild.Click '/// Go to last picture ///' - - if AnzahlBilder.GetText <> "20" Then '/// Control frame number ///' - WarnLog " - Jump to end did not work" - else - PrintLog " Jump to end did work" - end if - - Abspielen.Click '/// Play animation ///' - sleep 3 - Kontext "DocumentImpress" - EditSelectAll '/// Select all in document ///' - DocumentImpress.TypeKeys "<DELETE>" '/// Delete content ///' - - Kontext "Animation" - Erstellen.Click '/// /Create animation //' - sleep 10 - - Kontext "DocumentImpress" - try - EditCopy '/// Try to copy ccreated animation into clipboard ///' - PrintLog " animation created" - catch - WarnLog " - Animation not created" - endcatch - - Kontext "Animation" - - if AnimationsgruppeGruppenobjekt.IsChecked=True Then - try - AnzeigedauerProBild.SetText "1" '/// Try setting duration per frame ///' - WarnLog " - Edit field should be disabled" - catch - PrintLog " Edit field not enabled because groupobject status is = " + AnimationsgruppeGruppenobjekt.IsChecked - endcatch - end if - - - AnimationsgruppeBitmapobjekt.Check '/// check animation group object ///' - - AnzeigedauerProBild.SetText "3" '/// Set duration per frame to 3///' - SetClipboard AnzeigedauerProBild.GetText - AnzeigedauerProBild.More '/// Raise value for duration ///' - if AnzeigedauerProBild.GetText <> GetClipboardText Then - PrintLog " Time per pic could be edited" - else - WarnLog " - Time per pic could be edited" - end if - - Dim Zaehler - Zaehler = AnzahlDurchlaeufe.GetItemCount - for i=1 to Zaehler '/// Change number of plays ///' - AnzahlDurchlaeufe.Select i - next i - PrintLog " Number of loops checked" - - - Dim ZaehlerAnpassung - ZaehlerAnpassung=Anpassung.GetItemCount '/// change ZaehlerAnpassung ///' - for i=1 to ZaehlerAnpassung - Anpassung.Select i - next i - PrintLog " Loop count changed" - - BildLoeschen.Click '/// Delete 1 frame ///' - if AnzahlBilder = "20" Then - WarnLog " - Delete pictures from animation did not work" - else - PrintLog " Picture No20 deleted" - end if - - AlleLoeschen.Click '/// Delete all frames ///' - Kontext "Active" - Active.Yes - sleep 3 - - Kontext "Animation" - if Abspielen.IsEnabled=true Then - WarnLog " - Not all pics could be deleted" - else - PrintLog " all pics deleted" - end if - sleep 2 - Animation.Close - sleep 2 - Call hCloseDocument '/// close document///' + Kontext "DocumentImpress" + printlog "Deselect graphic " + DocumentImpress.MouseDoubleClick 90,90 + sleep 1 + InsertGraphicsFromFile + sleep 2 + Kontext "GrafikEinfuegenDlg" + Dateiname.SetText ConvertPath (gTesttoolPath + "global\input\graf_inp\grafix3.ras") + sleep 2 + Oeffnen.Click + sleep 2 + Opl_SD_EffekteZulassen + Kontext "Animation" + + printlog "add selected picture 10 times into the animation " + for i=1 to 10 + BildAufnehmen.Click + next i + sleep 1 + printlog "compare frame number in animation dialog " + if AnzahlBilder.GetText <> "10" Then + WarnLog " - Adding graphics did not work" + else + printlog "Pictures added" + end if + + printlog "test if Add all is eneabled (shouldn't be because of only 1 object selected) " + if AlleAufnehmen.IsEnabled Then WarnLog " - Add all should not be enabled, there is only 1 graphic selected" + Kontext "DocumentImpress" + printlog "Select both pictures " + EditSelectAll + Kontext "Animation" + printlog "Add all (5 times) " + for i=1 to 5 + AlleAufnehmen.Click + next i + sleep 1 + printlog "check if number of frames is now 20 " + if AnzahlBilder.GetText <> "20" Then + WarnLog " - Adding pics did not work" + else + printlog "All pics added" + end if + + printlog "Click First Picture " + ErstesBild.Click + + printlog "Control if we are at frame 1 " + if AnzahlBilder.GetText <> "1" Then + WarnLog " - Jump back to start did not work" + else + printlog "Jumped back to first picture" + end if + + printlog "Go to last picture " + LetztesBild.Click + + printlog "Control frame number " + if AnzahlBilder.GetText <> "20" Then + WarnLog " - Jump to end did not work" + else + printlog "Jump to end did work" + end if + + printlog "Play animation " + Abspielen.Click + sleep 3 + Kontext "DocumentImpress" + printlog "Select all in document " + EditSelectAll + printlog "Delete content " + DocumentImpress.TypeKeys "<DELETE>" + + Kontext "Animation" + printlog "Create animation" + Erstellen.Click + sleep 10 + + Kontext "DocumentImpress" + try + printlog "Try to copy ccreated animation into clipboard " + EditCopy + printlog "animation created" + catch + WarnLog " - Animation not created" + endcatch + + Kontext "Animation" + + if AnimationsgruppeGruppenobjekt.IsChecked=True Then + try + printlog "Try setting duration per frame " + AnzeigedauerProBild.SetText "1" + WarnLog " - Edit field should be disabled" + catch + printlog "Edit field not enabled because groupobject status is = " + AnimationsgruppeGruppenobjekt.IsChecked + endcatch + end if + + + printlog "check animation group object " + AnimationsgruppeBitmapobjekt.Check + + printlog "Set duration per frame to 3" + AnzeigedauerProBild.SetText "3" + SetClipboard AnzeigedauerProBild.GetText + printlog "Raise value for duration " + AnzeigedauerProBild.More + if AnzeigedauerProBild.GetText <> GetClipboardText Then + printlog "Time per pic could be edited" + else + WarnLog " - Time per pic could be edited" + end if + + Zaehler = AnzahlDurchlaeufe.GetItemCount + printlog "Change number of plays " + for i=1 to Zaehler + AnzahlDurchlaeufe.Select i + next i + printlog "Number of loops checked" + + printlog "change ZaehlerAnpassung " + ZaehlerAnpassung=Anpassung.GetItemCount + for i=1 to ZaehlerAnpassung + Anpassung.Select i + next i + printlog "Loop count changed" + + printlog "Delete 1 frame " + BildLoeschen.Click + if AnzahlBilder = "20" Then + WarnLog " - Delete pictures from animation did not work" + else + printlog "Picture No20 deleted" + end if + + printlog "Delete all frames " + AlleLoeschen.Click + Kontext "Active" + Active.Yes + sleep 3 + + Kontext "Animation" + if Abspielen.IsEnabled=true Then + WarnLog " - Not all pics could be deleted" + else + printlog "all pics deleted" + end if + sleep 2 + Animation.Close + sleep 2 + printlog "close document" + Call hCloseDocument endcase diff --git a/testautomation/graphics/optional/includes/impress/i_pengine.inc b/testautomation/graphics/optional/includes/impress/i_pengine.inc index 4f19f254b055..aed79a6ce827 100644 --- a/testautomation/graphics/optional/includes/impress/i_pengine.inc +++ b/testautomation/graphics/optional/includes/impress/i_pengine.inc @@ -36,26 +36,24 @@ '\******************************************************************* testcase tiPenginefast -' dim i,t,q as integer -' dim e as string - dim sFileName as string + ' dim i,t,q as integer + ' dim e as string + dim sFileName as string -'/// the Presentation-Engine consists of showing the presentation, with all it's effects. ///' - -'/// Create a new presentation. ///' + printlog "the Presentation-Engine consists of showing the presentation, with all it's effects." + printlog "Create a new presentation." Call hNewDocument sleep 1 + printlog "Open the test-file." + Call hDateiOeffnen (gTesttoolpath + "graphics\required\input\allshapes.odp") - '/// Open the test-file. ///' - Call hDateiOeffnen (gTesttoolpath + "graphics\required\input\allshapes.odp") 'effects.odp") - - '/// Start the slideshow. ///' + printlog "Start the slideshow." CALL hTypeKeys "<F5>" sleep (5) kontext "DocumentPresentation" DocumentPresentation.TypeKeys "<SPACE>" - '/// Wait for the presentation to reach a certain moment. ///' + printlog "Wait for the presentation to reach a certain moment." sleep (10) DocumentPresentation.TypeKeys "<SPACE>" sleep (7) @@ -63,7 +61,7 @@ testcase tiPenginefast sleep (7) DocumentPresentation.TypeKeys "<SPACE>" sleep (7) - '/// Press "Space" again, to continue with slide two. ///' + printlog "Press "Space" again, to continue with slide two." DocumentPresentation.TypeKeys "<SPACE>" sleep (7) DocumentPresentation.TypeKeys "<SPACE>" @@ -72,19 +70,18 @@ testcase tiPenginefast sleep (7) DocumentPresentation.TypeKeys "<SPACE>" sleep (7) - '/// And press "Space" again, to exit the presentation-mode. ///' + printlog "And press "Space" again, to exit the presentation-mode." DocumentPresentation.TypeKeys "<SPACE>" - FileClose Call hNewDocument sleep 1 - '/// Open the test-file. ///' + printlog "Open the test-file." Call hDateiOeffnen (gTesttoolpath + "graphics\required\input\effects.odp") - '/// Start the slideshow. ///' + printlog "Start the slideshow." CALL hTypeKeys "<F5>" sleep (200) - '/// Press "Space" again, to continue with slide two. ///' + printlog "Press Space again, to continue with slide two." kontext "DocumentPresentation" DocumentPresentation.TypeKeys "<SPACE>" sleep (40) @@ -126,93 +123,94 @@ testcase tiPenginefast kontext "DocumentImpress" end if -'/// Insert a new slide. ///' -' InsertSlide -' sleep 2 -' hTypekeys "<Pagedown>" -' sleep 2 - -'/// Menu: Slideshow: Check every menu-item. ///' - -'Exists: -' #1 tSlideShowSlideShow -' #1 tSlideShowRehearseTimings -' #1 tSlideShowSlideShowSettings -' #1 tSlideShowCustomSlideShow -' #1 tSlideShowSlideTransition -' #1 tSlideShowShowHideSlide - -' Slideshow menu 1 - Slide show -' Slideshow menu 2 - Slide show settings -' Slideshow menu 3 - Rehearse timings -' Slideshow menu 4 - Interaction -' Slideshow menu 6 - Slide Transition -' Slideshow menu 7 - Show / Hide slide -' Slideshow menu 8 - Custom Slide show - - -'Printlog " Here starts the test " - -'Presentation - Start / Stop. Different ways to do it. -'Presentation - Effects. -'LeftWindow - -'/// Slideshow Settings: Range: test all three alternatives. ///' -'/// Test if the Slideshow-types (Default, Window, Auto) works. ///' -'/// Check if the checkboxes works. ///' -'/// Close dialogue. ///' -'/// Add an object. ///' -'/// Custom Animation: Add an Animation to the object. ///' -'/// Run the slideshow. ///' - -'/// Change to the next effect and continue through every animation in ///' -'/// Entrance, Emphasis, Exit and Motion Paths. ///' -'/// While testing - test the speed-choices for every kind of animation. ///' -'/// Check if the "Change" and "Remove"-buttons. ///' -'/// Check the Start, "Direction" and "Speed" variables. ///' -'/// Add two effects to one object and change the order. ///' -'/// Try the Play and "Slide Show"-button. ///' -'/// Try the Automatic preview-button. ///' - -'/// Slidetransition. ///' -'/// Go through every kind of effect, speed, and sound. ///' -'/// Check loop until next sound. ///' -'/// Check the Advance slide with mouseclick-function. ///' -'/// Check the "Apply to all slides", "Play", and "Slide Show"-buttons. ///' -'/// Check Automatic preview. ///' - -'/// Some effects doesnt have a right / left orientation. Test these. ///' -'/// Possibility: check random effects and see if something hangs. ///' - -'/// Load/Save-test: Does the settings last? ///' - -'/// Are two different objects dependant or independent from each other? ///' - -'/// Close Application ///' + printlog "Insert a new slide." + ' InsertSlide + ' sleep 2 + ' hTypekeys "<Pagedown>" + ' sleep 2 + + printlog "Menu: Slideshow: Check every menu-item." + + 'Exists: + ' #1 tSlideShowSlideShow + ' #1 tSlideShowRehearseTimings + ' #1 tSlideShowSlideShowSettings + ' #1 tSlideShowCustomSlideShow + ' #1 tSlideShowSlideTransition + ' #1 tSlideShowShowHideSlide + + ' Slideshow menu 1 - Slide show + ' Slideshow menu 2 - Slide show settings + ' Slideshow menu 3 - Rehearse timings + ' Slideshow menu 4 - Interaction + ' Slideshow menu 6 - Slide Transition + ' Slideshow menu 7 - Show / Hide slide + ' Slideshow menu 8 - Custom Slide show + + + 'Printlog " Here starts the test " + + 'Presentation - Start / Stop. Different ways to do it. + 'Presentation - Effects. + 'LeftWindow + + printlog "Slideshow Settings: Range: test all three alternatives." + printlog "Test if the Slideshow-types (Default, Window, Auto) works." + printlog "Check if the checkboxes works." + printlog "Close dialogue." + printlog "Add an object." + printlog "Custom Animation: Add an Animation to the object." + printlog "Run the slideshow." + + printlog "Change to the next effect and continue through every animation in" + printlog "Entrance, Emphasis, Exit and Motion Paths." + printlog "While testing - test the speed-choices for every kind of animation." + printlog "Check if the "Change" and "Remove"-buttons." + printlog "Check the Start, "Direction" and "Speed" variables." + printlog "Add two effects to one object and change the order." + printlog "Try the Play and "Slide Show"-button." + printlog "Try the Automatic preview-button." + + printlog "Slidetransition." + printlog "Go through every kind of effect, speed, and sound." + printlog "Check loop until next sound." + printlog "Check the Advance slide with mouseclick-function." + printlog "Check the "Apply to all slides", "Play", and "Slide Show"-buttons." + printlog "Check Automatic preview." + + printlog "Some effects doesnt have a right / left orientation. Test these." + printlog "Possibility: check random effects and see if something hangs." + + printlog "Load/Save-test: Does the settings last?" + + printlog "Are two different objects dependant or independent from each other?" + + printlog "Close Application" Call hCloseDocument Printlog "Finished Optional-test for Presentation-Engine" -endcase +endcase 'tiPenginefast +'------------------------------------------------------------------------------- testcase tSlideShowInteraction - Dim Datei$ - Dim i as integer - Dim Zaehler as integer - dim b115364 as boolean + Dim Datei$ + Dim i as integer + Dim Zaehler as integer + dim b115364 as boolean - Datei$ =ConvertPath (gOfficePath + "user\work\interac.sxi") + Datei$ =ConvertPath (gOfficePath + "user\work\interac.sxi") -' '/// save file as presentation with name '"user\\work\\diashow.sxi")' ///' +' printlog "save file as presentation with name '"user\\work\\diashow.sxi")'" ' hFileSaveAsWithFilterKill ( sFile , gImpressFilter, FALSE ) ' Printlog "saved presetation: '" + sFile + "'" - '/// open application ///' + printlog "open application" Call hNewDocument sleep 5 - setStartCurrentPage(FALSE) '/// Set "start with current page to OFF ///' + setStartCurrentPage(FALSE) printlog "Set "start with current page to OFF" - '/// call 'Insert->Slide' three times and name the slides 2, 3, 4 and create a rectangle on it ///' - '///+ we now have 4 slides ?! :-) ///' + printlog "call 'Insert->Slide' three times and name the slides 2, 3, 4 and create a rectangle on it " + '///+ we now have 4 slides ?! :-)" for i = 2 to 4 InsertSlide sleep 2 @@ -222,7 +220,7 @@ testcase tSlideShowInteraction sleep 2 next i - '/// check state of navigator ! expected: closed -> open navigator ///' + printlog "check state of navigator ! expected: closed -> open navigator" Kontext "Navigator" if Navigator.exists then warnlog "Navigator: already open :-(" @@ -232,194 +230,194 @@ testcase tSlideShowInteraction endif sleep 3 - '/// Slide Show->Interaction ///' - SlideShowInteraction - Kontext "TabInteraktion" - sleep 1 - if AktionBeiMausklick.GetItemCount = 13 Then - Printlog "- List is complete" - else - Warnlog "- Number of possible actions is wrong. It should be: 13, but it is: " + AktionBeiMausklick.GetItemCount - end if - sleep 1 - - AktionBeiMausklick.Select 1 'Keine Aktion bei Mausclick - Printlog (AktionBeiMausklick.GetSelText + " chosen") - If Durchsuchen.IsVisible then Warnlog "- Control should be invisible because AktionBeiMausklick = " + AktionBeiMausKlick.GetSelText - sleep 1 - - Kontext "TabInteraktion" - AktionBeiMausklick.Select 2 'Sprung zur vorhergehenden Seite - Printlog (AktionBeiMausklick.GetSelText + " chosen") - if Durchsuchen.IsVisible Then Warnlog "- Control should be invisible, beacause Action = " + AktionBeiMausKlick.GetSelText - TabInteraktion.OK - sleep 2 - Kontext "DocumentImpress" - gMouseClick 90,90 - sleep 1 - gMouseClick 50,50 + printlog "Slide Show->Interaction" + SlideShowInteraction + Kontext "TabInteraktion" + sleep 1 + if AktionBeiMausklick.GetItemCount = 13 Then + Printlog "- List is complete" + else + Warnlog "- Number of possible actions is wrong. It should be: 13, but it is: " + AktionBeiMausklick.GetItemCount + end if + sleep 1 + + AktionBeiMausklick.Select 1 'Keine Aktion bei Mausclick + Printlog (AktionBeiMausklick.GetSelText + " chosen") + If Durchsuchen.IsVisible then Warnlog "- Control should be invisible because AktionBeiMausklick = " + AktionBeiMausKlick.GetSelText + sleep 1 + + Kontext "TabInteraktion" + AktionBeiMausklick.Select 2 'Sprung zur vorhergehenden Seite + Printlog (AktionBeiMausklick.GetSelText + " chosen") + if Durchsuchen.IsVisible Then Warnlog "- Control should be invisible, beacause Action = " + AktionBeiMausKlick.GetSelText + TabInteraktion.OK + sleep 2 + Kontext "DocumentImpress" + gMouseClick 90,90 + sleep 1 + gMouseClick 50,50 sleep 2 - Kontext "NavigatorDraw" - sleep 2 - if Not Liste.GetSelIndex = 3 Then - Warnlog "- jumped to wrong slide" - else - Printlog "- jumped to correct slide" - end if - sleep 1 + Kontext "NavigatorDraw" + sleep 2 + if Not Liste.GetSelIndex = 3 Then + Warnlog "- jumped to wrong slide" + else + Printlog "- jumped to correct slide" + end if + sleep 1 - Kontext "DocumentImpress" - EditSelectAll - sleep 1 + Kontext "DocumentImpress" + EditSelectAll + sleep 1 - SlideShowInteraction - sleep 2 - Kontext "TabInteraktion" - AktionBeiMausklick.select 3 'Sprung zur naechsten Seite - Printlog (AktionBeiMausKlick.GetSelText + " chosen") - TabInteraktion.OK - sleep 1 + SlideShowInteraction + sleep 2 + Kontext "TabInteraktion" + AktionBeiMausklick.select 3 'Sprung zur naechsten Seite + Printlog (AktionBeiMausKlick.GetSelText + " chosen") + TabInteraktion.OK + sleep 1 Kontext "DocumentImpress" gMouseClick 90,90 sleep 2 gMouseClick 50,50 Kontext "NavigatorDraw" - if Liste.GetSelIndex <> 4 Then - Warnlog "- Jumped to wrong slide" - else - Printlog " Jumped to correct slide" - end if - sleep 1 - kontext "DocumentImpress" - EditSelectAll - sleep 1 - - SlideShowInteraction - sleep 1 - Kontext "TabInteraktion" - AktionBeiMausklick.select 4 'Sprung zur ersten Seite - Printlog AktionBeiMausKlick.GetSelText - sleep 1 - TabInteraktion.OK - sleep 1 - Kontext "DocumentImpress" - gMouseClick 90,90 - gMouseClick 50,50 - Kontext "NavigatorDraw" - if Liste.GetSelIndex <> 1 Then Warnlog "- jumped to wrong slide" - Letzte.Click 'Liste.Select 4 - Kontext "DocumentImpress" - EditSelectAll - sleep 2 + if Liste.GetSelIndex <> 4 Then + Warnlog "- Jumped to wrong slide" + else + Printlog " Jumped to correct slide" + end if + sleep 1 + kontext "DocumentImpress" + EditSelectAll + sleep 1 + + SlideShowInteraction + sleep 1 + Kontext "TabInteraktion" + AktionBeiMausklick.select 4 'Sprung zur ersten Seite + Printlog AktionBeiMausKlick.GetSelText + sleep 1 + TabInteraktion.OK + sleep 1 + Kontext "DocumentImpress" + gMouseClick 90,90 + gMouseClick 50,50 + Kontext "NavigatorDraw" + if Liste.GetSelIndex <> 1 Then Warnlog "- jumped to wrong slide" + Letzte.Click 'Liste.Select 4 + Kontext "DocumentImpress" + EditSelectAll + sleep 2 try SlideShowInteraction catch warnlog "SlideshowInteraction diasabled :-(" endcatch - Kontext "TabInteraktion" - AktionBeiMausklick.select 5 'Sprung zur letzten Seite - printlog AktionBeiMausKlick.GetSelText - TabInteraktion.OK - sleep 1 - Kontext "NavigatorDraw" - if Not Liste.GetSelIndex = 1 Then Warnlog "- jumped to wrong slide" + Kontext "TabInteraktion" + AktionBeiMausklick.select 5 'Sprung zur letzten Seite + printlog AktionBeiMausKlick.GetSelText + TabInteraktion.OK + sleep 1 + Kontext "NavigatorDraw" + if Not Liste.GetSelIndex = 1 Then Warnlog "- jumped to wrong slide" - kontext "DocumentImpress" - Call hRechteckErstellen 20,20,50,50 - sleep 1 - EditSelectAll - sleep 1 + kontext "DocumentImpress" + Call hRechteckErstellen 20,20,50,50 + sleep 1 + EditSelectAll + sleep 1 try FormatGroupGroup catch warnlog "GROUP?" endcatch - sleep 1 - - SlideShowInteraction - Kontext "TabInteraktion" - AktionBeiMausklick.select 6 'Sprung zu Seite oder Objekt - printlog AktionBeiMausKlick.GetSelText - sleep 2 - if Not ListeSprungZuSeiteObjekt.IsVisible Then Warnlog " list seems to be invisible" - Seite.SetText S2 - Suchen.Click - if ListeSprungZuSeiteObjekt.GetSelIndex <> 3 Then Warnlog " Search does not work" - printlog ListeSprungZuSeiteObjekt.GetSelIndex - TabInteraktion.OK - sleep 1 + sleep 1 - Kontext "DocumentImpress" - gMouseClick 90,90 - gMouseClick 25,25, - sleep 2 - Kontext "NavigatorDraw" - if Liste.GetSelIndex <> 2 Then Warnlog "- Jumped to wrong destination" - printlog Liste.GetSelIndex - Liste.Select 4 - Kontext "DocumentImpress" - EditSelectAll - sleep 1 + SlideShowInteraction + Kontext "TabInteraktion" + AktionBeiMausklick.select 6 'Sprung zu Seite oder Objekt + printlog AktionBeiMausKlick.GetSelText + sleep 2 + if Not ListeSprungZuSeiteObjekt.IsVisible Then Warnlog " list seems to be invisible" + Seite.SetText S2 + Suchen.Click + if ListeSprungZuSeiteObjekt.GetSelIndex <> 3 Then Warnlog " Search does not work" + printlog ListeSprungZuSeiteObjekt.GetSelIndex + TabInteraktion.OK + sleep 1 - Kontext "DocumentImpress" - EditSelectAll + Kontext "DocumentImpress" + gMouseClick 90,90 + gMouseClick 25,25, + sleep 2 + Kontext "NavigatorDraw" + if Liste.GetSelIndex <> 2 Then Warnlog "- Jumped to wrong destination" + printlog Liste.GetSelIndex + Liste.Select 4 + Kontext "DocumentImpress" + EditSelectAll + sleep 1 + + Kontext "DocumentImpress" + EditSelectAll + sleep 1 + SlideShowInteraction + Kontext "TabInteraktion" + sleep 1 + AktionBeiMausKlick.Select 7 'Sprung zu Dokument + Printlog AktionBeiMausKlick.GetSelText + " chosen" + try + Durchsuchen.Click sleep 1 - SlideShowInteraction - Kontext "TabInteraktion" - sleep 1 - AktionBeiMausKlick.Select 7 'Sprung zu Dokument - Printlog AktionBeiMausKlick.GetSelText + " chosen" - try - Durchsuchen.Click - sleep 1 - Kontext "OeffnenDlg" - sleep 1 - Dateiname.SetText ConvertPath (gTesttoolPath + "graphics\required\input\recht_49.sxi") - Oeffnen.Click - sleep 10 - ' check if the document is writable - if fIsDocumentWritable = false then - ' make the document writable and check if it's succesfull - if fMakeDocumentWritable = false then - warnlog "The document can't be make writeable. Test stopped." - goto endsub - endif - endif - catch - Warnlog "- Search button could not be accessed" - endcatch - sleep 1 - Kontext "TabInteraktion" - sleep 1 - TabInteraktion.OK - sleep 3 - Kontext "DocumentImpress" - DocumentImpress.MouseDown 90,90 - DocumentImpress.MouseUp 90,90 - sleep 2 - Kontext "DocumentImpress" - DocumentImpress.Mousedown 30,30 - kontext - b115364 = false - if messagebox.exists then - printlog "baeh: '" + messagebox.gettext + "'" - try - messagebox.ok ' was default in so7 - catch - warnlog "behaviour changed #115364# mother document gets closed :-(" - if fileExists(ConvertPath (gOfficePath + "user\work\bug115364.sxi")) then - kill ConvertPath (gOfficePath + "user\work\bug115364.sxi") - endif - messagebox.yes ' don't save changes, before going on! - b115364 = true - kontext "SpeichernDlg" - Dateiname.setText ConvertPath (gOfficePath + "user\work\bug115364.sxi") - Speichern.click - sleep 10 - endcatch + Kontext "OeffnenDlg" + sleep 1 + Dateiname.SetText ConvertPath (gTesttoolPath + "graphics\required\input\recht_49.sxi") + Oeffnen.Click + sleep 10 + ' check if the document is writable + if fIsDocumentWritable = false then + ' make the document writable and check if it's succesfull + if fMakeDocumentWritable = false then + warnlog "The document can't be make writeable. Test stopped." + goto endsub + endif + endif + catch + Warnlog "- Search button could not be accessed" + endcatch + sleep 1 + Kontext "TabInteraktion" + sleep 1 + TabInteraktion.OK + sleep 3 + Kontext "DocumentImpress" + DocumentImpress.MouseDown 90,90 + DocumentImpress.MouseUp 90,90 + sleep 2 + Kontext "DocumentImpress" + DocumentImpress.Mousedown 30,30 + kontext + b115364 = false + if messagebox.exists then + printlog "baeh: '" + messagebox.gettext + "'" + try + messagebox.ok ' was default in so7 + catch + warnlog "behaviour changed #115364# mother document gets closed :-(" + if fileExists(ConvertPath (gOfficePath + "user\work\bug115364.sxi")) then + kill ConvertPath (gOfficePath + "user\work\bug115364.sxi") + endif + messagebox.yes ' don't save changes, before going on! + b115364 = true + kontext "SpeichernDlg" + Dateiname.setText ConvertPath (gOfficePath + "user\work\bug115364.sxi") + Speichern.click + sleep 10 + endcatch else printlog "OK :-)" endif @@ -444,207 +442,207 @@ testcase tSlideShowInteraction endif sleep 5 - Kontext "NavigatorDraw" - sleep 1 - Naechste.click + Kontext "NavigatorDraw" + sleep 1 + Naechste.click - Kontext "DocumentImpress" - EditSelectAll - sleep 1 - - SlideShowInteraction - Kontext "TabInteraktion" - sleep 1 - AktionBeiMausKlick.Select 9 - Printlog AktionBeiMausKlick.GetSelText + " chosen" - sleep 1 - Tabinteraktion.OK - sleep 2 + Kontext "DocumentImpress" + EditSelectAll + sleep 1 - SlideShowInteraction - Kontext "TabInteraktion" - sleep 1 - if not AktionBeiMausKlick.GetSelIndex = 9 Then Warnlog "- Not the right action chosen" - sleep 1 - AktionBeiMausKlick.Select 9 'Klang abspielen - Printlog AktionBeiMausKlick.GetSelText + "- chosen" - sleep 1 - Tabinteraktion.OK - sleep 2 - Kontext "NavigatorDraw" - sleep 1 - Liste.Select 2 - Kontext "DocumentImpress" - EditSelectAll - sleep 1 - SlideShowInteraction - Kontext "TabInteraktion" - sleep 1 - Durchsuchen.Click - sleep 1 - Kontext "OeffnenDlg" - sleep 1 - Dateiname.SetText ConvertPath (gTesttoolPath + "graphics\required\input\blip.wav") - sleep 1 - Oeffnen.Click - sleep 1 - Kontext "Active" - if Active.Exists Then - Warnlog Active.GetText + " Gallery might be empty" - Active.OK - sleep 1 - Kontext "OeffnenDlg" - OeffnenDlg.Cancel - sleep 1 - end if - Kontext "TabInteraktion" - SetClipboard Klangwahl.GetText - TabInteraktion.OK - sleep 1 - SlideShowInteraction - Kontext "TabInteraktion" - sleep 1 - if Klangwahl.GetText <> GetClipboardText then Warnlog "- Not the right sound chosen" - TabInteraktion.OK - sleep 1 - InsertGraphicsFromFile - sleep 1 - Kontext "GrafikeinfuegenDlg" - sleep 1 - if Verknuepfen.IsChecked then Verknuepfen.UnCheck - Dateiname.SetText ConvertPath (gTesttoolPath + "global\input\graf_inp\enter.bmp") - Oeffnen.Click - sleep 3 - Kontext "NavigatorDraw" - sleep 1 - Liste.Select 4 - sleep 1 - SlideShowInteraction - Kontext "TabInteraktion" - sleep 1 - AktionBeiMausKlick.Select 11 'Objektaktion ausfuehren - Printlog AktionBeiMausKlick.GetSelText + " chosen" - sleep 1 - Zaehler=Effekt.GetItemCount - for i=1 to Zaehler - Effekt.Select i - Printlog Effekt.GetSelText + " chosen" - if i=1 Then - if Langsam.IsEnabled Then Warnlog "- Control should not be enabled, because no effect chosen" - if Mittel.IsEnabled Then Warnlog "- Control should not be enabled, because no effect chosen" - if Schnell.IsEnabled Then Warnlog "- Control should not be enabled, because no effect chosen" - end if - sleep 1 + SlideShowInteraction + Kontext "TabInteraktion" + sleep 1 + AktionBeiMausKlick.Select 9 + Printlog AktionBeiMausKlick.GetSelText + " chosen" + sleep 1 + Tabinteraktion.OK + sleep 2 - TabInteraktion.OK - sleep 1 - SlideShowInteraction - Kontext "TabInteraktion" - sleep 1 - next i - TabInteraktion.OK - sleep 1 - SlideShowInteraction - Kontext "TabInteraktion" - sleep 1 - AktionBeiMausKlick.Select 10 'Objekt ausblenden - Printlog AktionBeiMausKlick.GetSelText + " chosen" - ListeObjektAktion.Select 1 - sleep 1 - TabInteraktion.OK - sleep 1 - gMouseClick 90,90 - sleep 1 - gMouseClick 55,55 - sleep 1 - Kontext "DocumentImage" - - SlideShowInteraction - Kontext "TabInteraktion" - sleep 1 - AktionBeiMausKlick.Select 13 'Makro - Printlog AktionBeiMausKlick.GetSelText + " chosen" - sleep 2 - Durchsuchen.Click - sleep 5 - Kontext "Makro" - sleep 5 - Makro.Cancel - sleep 2 - Kontext "TabInteraktion" - sleep 1 - TabInteraktion.OK - sleep 3 - - SlideShowInteraction - Kontext "TabInteraktion" - sleep 2 - if not AktionBeiMausKlick.GetSelIndex = 12 Then Warnlog "- Wrong action used" - sleep 1 - AktionBeiMausKlick.Select 14 'Praesentation beenden - Printlog AktionBeiMausKlick.GetSelText - Tabinteraktion.OK - sleep 1 - - SlideShowPresentationSettings - Kontext "Bildschirmpraesentation" - if not Fenster.IsChecked Then Fenster.Check - BildschirmPraesentation.OK - sleep 2 - Kontext "DocumentImpress" - DocumentImpress.TypeKeys "<MOD1 F2>" - sleep 5 - Kontext "DocumentPresentation" - sleep 2 - DocumentPresentation.MouseDown 50,50 - DocumentPresentation.MouseUp 50,50 - sleep 5 - try - Kontext "DocumentImpress" - EditSelectAll - Printlog "- Slideshow ended at right point" - catch - Warnlog "- Program is still in slideshow mode" - Kontext "DocumentPresentation" - DocumentPresentation.TypeKeys "<ESCAPE>" - endcatch + SlideShowInteraction + Kontext "TabInteraktion" + sleep 1 + if not AktionBeiMausKlick.GetSelIndex = 9 Then Warnlog "- Not the right action chosen" + sleep 1 + AktionBeiMausKlick.Select 9 'Klang abspielen + Printlog AktionBeiMausKlick.GetSelText + "- chosen" + sleep 1 + Tabinteraktion.OK + sleep 2 + Kontext "NavigatorDraw" + sleep 1 + Liste.Select 2 + Kontext "DocumentImpress" + EditSelectAll + sleep 1 + SlideShowInteraction + Kontext "TabInteraktion" + sleep 1 + Durchsuchen.Click + sleep 1 + Kontext "OeffnenDlg" + sleep 1 + Dateiname.SetText ConvertPath (gTesttoolPath + "graphics\required\input\blip.wav") + sleep 1 + Oeffnen.Click + sleep 1 + Kontext "Active" + if Active.Exists Then + Warnlog Active.GetText + " Gallery might be empty" + Active.OK + sleep 1 + Kontext "OeffnenDlg" + OeffnenDlg.Cancel + sleep 1 + end if + Kontext "TabInteraktion" + SetClipboard Klangwahl.GetText + TabInteraktion.OK + sleep 1 + SlideShowInteraction + Kontext "TabInteraktion" + sleep 1 + if Klangwahl.GetText <> GetClipboardText then Warnlog "- Not the right sound chosen" + TabInteraktion.OK + sleep 1 + InsertGraphicsFromFile + sleep 1 + Kontext "GrafikeinfuegenDlg" + sleep 1 + if Verknuepfen.IsChecked then Verknuepfen.UnCheck + Dateiname.SetText ConvertPath (gTesttoolPath + "global\input\graf_inp\enter.bmp") + Oeffnen.Click + sleep 3 + Kontext "NavigatorDraw" + sleep 1 + Liste.Select 4 + sleep 1 + SlideShowInteraction + Kontext "TabInteraktion" + sleep 1 + AktionBeiMausKlick.Select 11 'Objektaktion ausfuehren + Printlog AktionBeiMausKlick.GetSelText + " chosen" + sleep 1 + Zaehler=Effekt.GetItemCount + for i=1 to Zaehler + Effekt.Select i + Printlog Effekt.GetSelText + " chosen" + if i=1 Then + if Langsam.IsEnabled Then Warnlog "- Control should not be enabled, because no effect chosen" + if Mittel.IsEnabled Then Warnlog "- Control should not be enabled, because no effect chosen" + if Schnell.IsEnabled Then Warnlog "- Control should not be enabled, because no effect chosen" + end if + sleep 1 - Kontext "DocumentImpress" - DocumentImpress.TypeKeys "<SHIFT MOD1 F5>" - sleep 3 - setStartCurrentPage(TRUE) '/// Set "start with current page to ON = Default ///' - Call hCloseDocument -endcase + TabInteraktion.OK + sleep 1 + SlideShowInteraction + Kontext "TabInteraktion" + sleep 1 + next i + TabInteraktion.OK + sleep 1 + SlideShowInteraction + Kontext "TabInteraktion" + sleep 1 + AktionBeiMausKlick.Select 10 'Objekt ausblenden + Printlog AktionBeiMausKlick.GetSelText + " chosen" + ListeObjektAktion.Select 1 + sleep 1 + TabInteraktion.OK + sleep 1 + gMouseClick 90,90 + sleep 1 + gMouseClick 55,55 + sleep 1 + Kontext "DocumentImage" -' Slideshow menu 5 - Custom Animation + SlideShowInteraction + Kontext "TabInteraktion" + sleep 1 + AktionBeiMausKlick.Select 13 'Makro + Printlog AktionBeiMausKlick.GetSelText + " chosen" + sleep 2 + Durchsuchen.Click + sleep 5 + Kontext "Makro" + sleep 5 + Makro.Cancel + sleep 2 + Kontext "TabInteraktion" + sleep 1 + TabInteraktion.OK + sleep 3 + + SlideShowInteraction + Kontext "TabInteraktion" + sleep 2 + if not AktionBeiMausKlick.GetSelIndex = 12 Then Warnlog "- Wrong action used" + sleep 1 + AktionBeiMausKlick.Select 14 'Praesentation beenden + Printlog AktionBeiMausKlick.GetSelText + Tabinteraktion.OK + sleep 1 + + SlideShowPresentationSettings + Kontext "Bildschirmpraesentation" + if not Fenster.IsChecked Then Fenster.Check + BildschirmPraesentation.OK + sleep 2 + Kontext "DocumentImpress" + DocumentImpress.TypeKeys "<MOD1 F2>" + sleep 5 + Kontext "DocumentPresentation" + sleep 2 + DocumentPresentation.MouseDown 50,50 + DocumentPresentation.MouseUp 50,50 + sleep 5 + try + Kontext "DocumentImpress" + EditSelectAll + Printlog "- Slideshow ended at right point" + catch + Warnlog "- Program is still in slideshow mode" + Kontext "DocumentPresentation" + DocumentPresentation.TypeKeys "<ESCAPE>" + endcatch + + Kontext "DocumentImpress" + DocumentImpress.TypeKeys "<SHIFT MOD1 F5>" + sleep 3 + setStartCurrentPage(TRUE) printlog "Set "start with current page to ON = Default" + Call hCloseDocument +endcase 'tSlideShowInteraction + +'------------------------------------------------------------------------------- testcase tSlideShowCustomAnimation dim bError as boolean - '/// open application ///' + printlog "open application" Call hNewDocument - '/// create textbox with text ///' + printlog "create textbox with text" Call hTextrahmenErstellen ("Test text to test text effects", 10, 10, 20, 40 ) - '/// Slide Show->Custom Animation... ///' + printlog "Slide Show->Custom Animation..." SlideShowCustomAnimation Kontext "Tasks" - '/// click button 'Add...' ///' + printlog "click button 'Add...'" EffectAdd.click - '/// Dialog 'Custom Animation' comes up ///' + printlog "Dialog 'Custom Animation' comes up" kontext - '/// Switch to TabPage: Entrance ///' + printlog "Switch to TabPage: Entrance" active.setPage(TabEntrance) kontext "TabEntrance" if TabEntrance.exists(5) then DialogTest(TabEntrance) - '/// select in the listbox 'Effects' the second entry ///' + printlog "select in the listbox 'Effects' the second entry" Effects.select(2) Speed.getItemCount AutomaticPreview.unCheck sleep 1 AutomaticPreview.Check kontext - '/// Switch to TabPage: Emphasis ///' + printlog "Switch to TabPage: Emphasis" active.setPage(TabEmphasis) kontext "TabEmphasis" if TabEmphasis.exists(5) then @@ -654,7 +652,7 @@ testcase tSlideShowCustomAnimation warnlog "Impress:Tasks Pane:Custom Animation:TabEmphasis tabPage doesn't work." endif kontext - '/// Switch to TabPage: Exit ///' + printlog "Switch to TabPage: Exit" active.setPage(TabExit) kontext "TabExit" if TabExit.exists(5) then @@ -664,7 +662,7 @@ testcase tSlideShowCustomAnimation warnlog "Impress:Tasks Pane:Custom Animation:TabExit tabPage doesn't work." endif kontext - '/// Switch to TabPage: Motion Paths ///' + printlog "Switch to TabPage: Motion Paths" active.setPage(TabMotionPaths) kontext "TabMotionPaths" if TabMotionPaths.exists(5) then @@ -674,7 +672,7 @@ testcase tSlideShowCustomAnimation bError = true warnlog "Impress:Tasks Pane:Custom Animation:TabMotionPaths tabPage doesn't work." endif - '/// Close dialog 'Custom Animation' with 'OK' ///' + printlog "Close dialog 'Custom Animation' with 'OK'" TabMotionPaths.OK bError = false else @@ -683,11 +681,11 @@ testcase tSlideShowCustomAnimation endif Kontext "Tasks" if (NOT bError) then - '/// click button 'Change...' ///' + printlog "click button 'Change...'" EffectChange.click - '/// Dialog 'Custom Animation' comes up ///' + printlog "Dialog 'Custom Animation' comes up" kontext - '/// Switch to TabPage: Entrance ///' + printlog "Switch to TabPage: Entrance" active.setPage(TabEntrance) kontext "TabEntrance" if (NOT TabEntrance.exists(5)) then @@ -699,14 +697,14 @@ testcase tSlideShowCustomAnimation if EffectProperty.isEnabled then EffectProperty.getItemCount endif - '/// CLick on button '...' (Options) ///' + printlog "CLick on button '...' (Options)" EffectOptions.click kontext "TabEffect" if TabEffect.exists(5) then dialogTest(TabEffect) Sound.getItemCount AfterAnimation.getItemCount - '/// switch to TabPage 'Timing' ///' + printlog "switch to TabPage 'Timing'" Kontext active.setPage TabTiming kontext "TabTiming" @@ -723,7 +721,7 @@ testcase tSlideShowCustomAnimation else warnlog "Impress:Tasks Pane:Custom Animation:Effect Options: Timing TabPage didn't work." endif - '/// switch to TabPage 'Timing' ///' + printlog "switch to TabPage 'Timing'" Kontext active.setPage TabTextAnimation kontext "TabTextAnimation" @@ -753,10 +751,9 @@ testcase tSlideShowCustomAnimation endif kontext "Tasks" EffectAutomaticPreview.isChecked - '/// click button 'Remove' ///' + printlog "click button 'Remove'" EffectRemove.click endif - '/// close application ///' + printlog "close application" Call hCloseDocument -endcase - +endcase
\ No newline at end of file diff --git a/testautomation/graphics/optional/includes/impress/i_slidecopy.inc b/testautomation/graphics/optional/includes/impress/i_slidecopy.inc index 92283b35a369..61249353c9d1 100644 --- a/testautomation/graphics/optional/includes/impress/i_slidecopy.inc +++ b/testautomation/graphics/optional/includes/impress/i_slidecopy.inc @@ -169,7 +169,7 @@ testcase tiSlideCopyNewPresentation kontext "DocumentImpress" hMouseClick DocumentImpress, 90, 90 '---------------------------------------------------------------------------3 - '/// Copy the slide to the clipboard ///' + printlog "Copy the slide to the clipboard" kontext "Slides" SlidesControl.TypeKeys "<PAGEUP>" sleep (1) @@ -182,16 +182,16 @@ testcase tiSlideCopyNewPresentation Call hCloseDocument Goto Endsub endif - '/// Close the presentation-window ///' + printlog "Close the presentation-window" Call hCloseDocument - '/// Open a new presentation ///' + printlog "Open a new presentation" Call hNewDocument - '/// Paste the slide from the clipboard ///' + printlog "Paste the slide from the clipboard!" kontext "Slides" hUseAsyncSlot( "EditPaste" ) - '/// Delete the first slide ///' + printlog "Delete the first slide" hUseAsyncSlot( "EditDeleteSlide" ) - '/// Check if all three objects exists, and has the right values ///' + printlog "Check if all three objects exists, and has the right values" kontext "DocumentImpress" hTypeKeys "<ESCAPE>" hTypeKeys "<TAB>", 1 'Select the first object. @@ -263,7 +263,7 @@ testcase tiSlideCopyNewPresentation Warnlog "Wrong object or object-name! The name found was: " + value13 endif - '/// Close the bars we opened before. ///' + printlog "Close the bars we opened before." kontext "Connectorsbar" if Connectorsbar.Exists then Connectorsbar.Close kontext "SymbolShapes" @@ -271,7 +271,7 @@ testcase tiSlideCopyNewPresentation kontext "StarShapes" if StarShapes.Exists then StarShapes.Close - '/// Close Presentation. End testcase ///' + printlog "Close Presentation. End testcase" Call hCloseDocument endcase 'tiSlideCopyNewPresentation @@ -531,17 +531,17 @@ testcase tiSlideCopyPasteSpecial Dim value1 as string Dim value2 as string Dim value3 as string - '/// Copies slide, and pastes it with "Paste Special", ///' - '/// just to see if the office can handle it ///' - '/// Make new presentation ///' + printlog "Copies slide, and pastes it with Paste Special" + printlog "just to see if the office can handle it" + printlog "Make new presentation" Call hNewDocument - '/// Insert three objects: Connector, Door-plate, and Smiley ///' + printlog "Insert three objects: Connector, Door-plate, and Smiley" - '1 Insert Connector. + printlog "Insert Connector" kontext "Toolbar" sleep 1 try - Verbinder.TearOff ' insert connector + Verbinder.TearOff catch warnlog "bug for GH from FHA; .tearoff doesnt tell success" endcatch @@ -556,11 +556,11 @@ testcase tiSlideCopyPasteSpecial kontext "DocumentImpress" hMouseClick DocumentImpress, 90, 90 - '2 Insert Door-plate. + printlog "Insert Door-plate" kontext "Toolbar" sleep 1 try - StarShapes.TearOff ' insert connector + StarShapes.TearOff catch warnlog "bug for GH from FHA; .tearoff doesnt tell success" endcatch @@ -575,11 +575,11 @@ testcase tiSlideCopyPasteSpecial kontext "DocumentImpress" hMouseClick DocumentImpress, 90, 90 - '3 Insert Smiley. + printlog "Insert Smiley" kontext "Toolbar" sleep 1 try - SymbolShapes.TearOff ' insert connector + SymbolShapes.TearOff catch warnlog "bug for GH from FHA; .tearoff doesnt tell success" endcatch @@ -591,7 +591,7 @@ testcase tiSlideCopyPasteSpecial gMouseMove (70,70,89,89) gMouseUp (89,89) - '/// Copy the slide to the clipboard ///' + printlog "Copy the slide to the clipboard" kontext "Slides" SlidesControl.TypeKeys "<PAGEUP>" SlidesControl.TypeKeys "<SHIFT F10>" @@ -603,12 +603,12 @@ testcase tiSlideCopyPasteSpecial Goto Endsub endif - '/// Try to paste special. And check that the office still stays alive ///' + printlog "Try to paste special. And check that the office still stays alive" EditPasteSpecial kontext "InhaltEinfuegen" InhaltEinfuegen.OK - '/// Close the bars we opened before. ///' + printlog "Close the bars we opened before" kontext "Connectorsbar" if Connectorsbar.Exists then Connectorsbar.Close kontext "SymbolShapes" @@ -618,12 +618,13 @@ testcase tiSlideCopyPasteSpecial sleep 1 kontext "DocumentImpress" - '/// Close Presentation. End testcase ///' + printlog "Close Presentation. End testcase" Call hCloseDocument endcase 'tiSlideCopyPasteSpecial '----------------------------------------------------------------------- + testcase tiSlideCopyInSlideSorter qaerrorlog "#i58418#: Pasting in slide sorter sets slide to wrong position" goto endsub @@ -631,10 +632,10 @@ testcase tiSlideCopyInSlideSorter Dim value1 as string Dim value2 as string Dim value3 as string - '/// Copies slides within the slidesorter, and makes sure they are pasted on the correct position ///' - '/// Make new presentation ///' + printlog "Copies slides within the slidesorter, and makes sure they are pasted on the correct position" + printlog "Make new presentation" Call hNewDocument - '/// Insert an object: Connector, on the first slide ///' + printlog "Insert an object: Connector, on the first slide" kontext "Toolbar" sleep 1 try @@ -653,12 +654,9 @@ testcase tiSlideCopyInSlideSorter gMouseMove (10,10,30,30) gMouseUp (30,30) Printlog " Inserted a Connector-object." - 'Rename object hTypeKeys "<ESCAPE>" hTypeKeys "<TAB>", 1 DocumentImpress.TypeKeys "<SHIFT F10>" - - 'Rename if hMenuFindSelect(27027, true, 14) = false then Warnlog "Context-Menu-entry `Rename` was not found. Therefore the test ends." Call hCloseDocument @@ -668,15 +666,14 @@ testcase tiSlideCopyInSlideSorter NameField.SetText "First" NameDlgObject.OK sleep 1 - Printlog " Renamed a the object to 'First'" + Printlog "Renamed a the object to 'First'" sleep 3 - '/// Rename slide to "1" ///' + printlog "Rename slide to 1" kontext "Slides" SlidesControl.TypeKeys "<PAGEUP>" SlidesControl.TypeKeys "<SHIFT F10>" sleep 3 - 'Rename if hMenuFindSelect(27268, true, 2) = false then Warnlog "Context-Menu-entry `Rename` was not found. Therefore the test ends." Call hCloseDocument @@ -687,25 +684,24 @@ testcase tiSlideCopyInSlideSorter NameField.SetText "1" NameDlgPage.OK sleep 1 - Printlog " Renamed the Slide to '1'" + Printlog "Renamed the Slide to '1'" kontext "DocumentImpress" hMouseClick DocumentImpress, 90, 90 sleep 3 - '/// Insert a new slide ///' + printlog "Insert a new slide" kontext "Slides" SlidesControl.TypeKeys "<TAB><PAGEDOWN>" SlidesControl.OpenContextMenu sleep 3 - 'Insert slide if hMenuFindSelect(27014, true, 1) = false then Warnlog "Context-Menu-entry `Insert slide` was not found. Therefore the test ends." Call hCloseDocument Goto Endsub endif - Printlog " Inserted a new slide." - '/// Insert an object: Door-plate, on the second slide ///' + Printlog "Inserted a new slide." + printlog "Insert an object: Door-plate, on the second slide" kontext "Toolbar" sleep 1 try @@ -721,13 +717,10 @@ testcase tiSlideCopyInSlideSorter gMouseDown (40,40) gMouseMove (40,40,60,60) gMouseUp (60,60) - Printlog " Inserted a Door-Plate-object." - + Printlog "Inserted a Door-Plate-object." hTypeKeys "<ESCAPE>" hTypeKeys "<TAB>", 2 hTypeKeys "<SHIFT F10>" - - ' Rename if hMenuFindSelect(27027, true, 15) = false then Warnlog "Context-Menu-entry `Rename` was not found. Therefore the test ends." Call hCloseDocument @@ -738,16 +731,15 @@ testcase tiSlideCopyInSlideSorter NameField.SetText "Second" NameDlgObject.OK sleep 1 - Printlog " Renamed a the object to 'Second'" + Printlog "Renamed a the object to 'Second'" kontext "DocumentImpress" hMouseClick DocumentImpress, 90, 90 sleep 2 - '/// Rename slide to "2" ///' + printlog "Rename slide to 2" kontext "Slides" SlidesControl.OpenContextMenu sleep 3 - ' Rename if hMenuFindSelect(27268, true, 3) = false then Warnlog "Context-Menu-entry `Rename` was not found. Therefore the test ends." Call hCloseDocument @@ -759,20 +751,18 @@ testcase tiSlideCopyInSlideSorter sleep 1 Printlog " Renamed the slide '2'" - '/// Insert a new slide ///' + printlog "Insert a new slide" kontext "Slides" Slidescontrol.TypeKeys "<PAGEDOWN>", 2 Slidescontrol.TypeKeys "<SHIFT F10>" sleep 3 - 'Insert slide if hMenuFindSelect(27014, true, 1) = false then Warnlog "Context-Menu-entry `Insert slide` was not found. Therefore the test ends." Call hCloseDocument Goto Endsub endif - Printlog " Inserted a new slide." - - '/// Insert an object: Smiley, on the second slide ///' + Printlog "Inserted a new slide." + printlog "Insert an object: Smiley, on the second slide" kontext "Toolbar" sleep 1 try @@ -788,13 +778,9 @@ testcase tiSlideCopyInSlideSorter gMouseMove (70,70,89,89) gMouseUp (89,89) Printlog " Inserted a Smiley-object." - - 'Rename object hTypeKeys "<ESCAPE>" hTypeKeys "<TAB>", 2 hTypeKeys "<SHIFT F10>" - - 'Choose rename. if hMenuFindSelect(27027, true, 15) = false then Warnlog "Context-Menu-entry `Rename` was not found. Therefore the test ends." Call hCloseDocument @@ -804,13 +790,11 @@ testcase tiSlideCopyInSlideSorter NameField.SetText "Third" NameDlgObject.OK Printlog " Renamed a the object to 'Third'" - - '/// Rename slide to "3" ///' + printlog "Rename slide to 3" kontext "Slides" Slidescontrol.TypeKeys "<PAGEDOWN>", 2 SlidesControl.OpenContextMenu sleep 3 - ' Rename if hMenuFindSelect(27268, true, 3) = false then Warnlog "Context-Menu-entry `Rename` was not found. Therefore the test ends." Call hCloseDocument @@ -823,7 +807,7 @@ testcase tiSlideCopyInSlideSorter sleep 1 Printlog " Renamed the slide '3'" - '/// Close the bars we opened before. ///' + printlog "Close the bars we opened before." kontext "Connectorsbar" if Connectorsbar.Exists then Connectorsbar.Close kontext "SymbolShapes" @@ -831,47 +815,46 @@ testcase tiSlideCopyInSlideSorter kontext "StarShapes" if StarShapes.Exists then StarShapes.Close - '/// Change to Slidesorter ///' + printlog "Change to Slidesorter" kontext "DocumentImpress" ViewSlideSorter - '/// Now we have changed view to the slidesorter ///' + printlog "Now we have changed view to the slidesorter" kontext "Slides" - Printlog " Changed view to 'SlideSorter'" - '/// Make sure the last slide is selcted ///' + Printlog "Changed view to 'SlideSorter'" + printlog "Make sure the last slide is selcted" SlidesControl.TypeKeys "<TAB>" SlidesControl.TypeKeys "<PAGEDOWN>", 3 - '/// Cut the last slide ///' + printlog "Cut the last slide" SlidesControl.TypeKeys "<MOD1 X>" - '/// Make sure the first slide is selected ///' + printlog "Make sure the first slide is selected" SlidesControl.TypeKeys "<TAB>" SlidesControl.TypeKeys "<PAGEUP>", 2 sleep 1 - '/// Paste the Slide ///' + printlog "Paste the Slide" kontext "Slides" SlidesControl.TypeKeys "<MOD1 V>" - '/// choose "Before" as specification for where + printlog "choose Before as specification for where" Kontext "InsertPaste" if InsertPaste.Exists(3) then Before.Check InsertPaste.OK Printlog " Pasted slide 'Before'" else - warnlog " Problem when copying/pasting slide." + warnlog "Problem when copying/pasting slide." endif - '/// Check where the slide ended up ///' + printlog "Check where the slide ended up" kontext "Slides" SlidesControl.TypeKeys "<TAB>" SlidesControl.TypeKeys "<PAGEUP>", 3 'to get to the first slide SlidesControl.TypeKeys "<SHIFT F10>" sleep 3 - ' Rename if hMenuFindSelect(27268, true, 3) = false then Warnlog "Context-Menu-entry `Rename` was not found. Therefore the test ends." Call hCloseDocument @@ -888,12 +871,14 @@ testcase tiSlideCopyInSlideSorter sleep 1 kontext "Slides" - '/// Choose the slide in the middle (named "1") ///' + printlog "Choose the slide in the middle (named 1)" SlidesControl.TypeKeys "<TAB>" - SlidesControl.TypeKeys "<PAGEDOWN>", 3 'to get to the last slide - SlidesControl.TypeKeys "<PAGEUP>" 'to go back one step + printlog "to get to the last slide" + SlidesControl.TypeKeys "<PAGEDOWN>", 3 + printlog "to go back one step" + SlidesControl.TypeKeys "<PAGEUP>" SlidesControl.OpenContextMenu (true) - ' Check the name of that slide (via Rename) + printlog "Check the name of that slide (via Rename)" if hMenuFindSelect(27268, true, 3) = false then Warnlog "Context-Menu-entry `Rename` was not found. Therefore the test ends." Call hCloseDocument @@ -910,7 +895,7 @@ testcase tiSlideCopyInSlideSorter sleep 1 kontext "Slides" - '/// Cut the slide ///' + printlog "Cut the slide" SlidesControl.TypeKeys "<SHIFT F10>" sleep 3 if hMenuFindSelect(5710, true, 10) = false then @@ -919,18 +904,18 @@ testcase tiSlideCopyInSlideSorter Goto Endsub endif - '/// Make sure we have selected the last slide ///' + printlog "Make sure we have selected the last slide" SlidesControl.TypeKeys "<TAB>" SlidesControl.TypeKeys "<PAGEDOWN>", 2 - '/// Place the mousepointer to the left of the first slide ///' + printlog "Place the mousepointer to the left of the first slide" sleep 1 kontext "Slides" SlidesControl.MouseMove 2, 3 SlidesControl.OpenContextMenu true sleep 3 - '/// Paste the Slide ///' + printlog "Paste the Slide" if hMenuFindSelect(5712, true, 12) = false then Warnlog "Context-Menu-entry `Paste` were not found. Therefore the test ends." Call hCloseDocument @@ -938,7 +923,7 @@ testcase tiSlideCopyInSlideSorter endif sleep 1 - '/// Choose "After" as specification for where ///' + printlog "Choose After as specification for where" Kontext "InsertPaste" if InsertPaste.Exists(3) then After.Check @@ -948,13 +933,15 @@ testcase tiSlideCopyInSlideSorter warnlog " Problem when copying/pasting slide." endif - '/// Check where the slide ended up. Should have showed up at the last position ///' + printlog "Check where the slide ended up. Should have showed up at the last position" kontext "Slides" SlidesControl.TypeKeys "<TAB>" - SlidesControl.TypeKeys "<PAGEDOWN>", 3 'to get to the last slide - SlidesControl.TypeKeys "<SHIFT F10>" '= open context menu + printlog "to get to the last slide" + SlidesControl.TypeKeys "<PAGEDOWN>", 3 + printlog "open context menu" + SlidesControl.TypeKeys "<SHIFT F10>" sleep 3 - ' Rename + printlog "Rename" if hMenuFindSelect(27268, true, 3) = false then Warnlog "Context-Menu-entry `Rename` was not found. Therefore the test ends." Call hCloseDocument @@ -970,10 +957,8 @@ testcase tiSlideCopyInSlideSorter NameDlgPage.OK sleep 1 - '/// Close Presentation. End testcase ///' + printlog "Close Presentation. End testcase" Call hCloseDocument endcase 'tiSlideCopyInSlideSorter '------------------------------------------------------------------------ - -'TODO FHA - Check the objects after pasting them. diff --git a/testautomation/graphics/optional/includes/impress/i_slideshow.inc b/testautomation/graphics/optional/includes/impress/i_slideshow.inc index d313f444994b..cfcc0fbd2e2f 100644 --- a/testautomation/graphics/optional/includes/impress/i_slideshow.inc +++ b/testautomation/graphics/optional/includes/impress/i_slideshow.inc @@ -29,28 +29,20 @@ '* '* short description : '* -'******************************************************************* -'* -' #1 tSlideShowSlideShow -' #1 tSlideShowRehearseTimings -' #1 tSlideShowSlideShowSettings -' #1 tSlideShowCustomSlideShow -' #1 tSlideShowSlideTransition -' #1 tSlideShowShowHideSlide -'* '\****************************************************************** + testcase tSlideShowSlideShow dim bLoaded as boolean dim i as integer + dim testfile as string + dim localtestfile as string '/// open file 'graphics\\input\\diashow.odp' ///' - hFileOpen ConvertPath (gTesttoolPath + "graphics\required\input\diashow.odp") + testfile = ( gTesttoolPath + "graphics\required\input\diashow.odp" ) + hFileOpenLocally( testfile ) sleep 30 - printlog "check if the document is writable" - sMakeReadOnlyDocumentEditable - bLoaded = false Kontext "Navigator" @@ -137,8 +129,15 @@ testcase tSlideShowSlideShow '/// Set "Start with current page" back to default = on, in ToolsOptions ///' setStartCurrentPage(TRUE) '/// close the application ///' - Call hCloseDocument - + Call hCloseDocument + localtestfile = hFileGetLocalPath( gTesttoolPath + "diashow.odp" ) + printlog localtestfile + if (FileExists (localtestfile)) then + app.kill (localtestfile) + printlog "Deleting used file." + else + warnlog "File is missing." + endif endcase 'tSlideShowSlideShow '------------------------------------------------------------------------------- @@ -227,6 +226,8 @@ testcase tSlideShowSlideShowSettings dim sTemp as string dim saSlideNames(4) as string dim bCurrentPage as boolean + dim sTestfile as string + dim sLocaltestfile as string S1 = glLocale (2) + " 1" S2 = glLocale (2) + " 2" @@ -290,12 +291,11 @@ testcase tSlideShowSlideShowSettings Call hCloseDocument sleep 5 - bLoaded = false - '/// open file 'graphics\\input\\diashow.odp' (Slide Show with 4 Slides) ///' - hFileOpen ConvertPath (gTesttoolPath + "graphics\required\input\diashow.odp") + bLoaded = false + '/// open file 'graphics\\input\\diashow.odp' (Slide Show with 4 Slides) ///' + sTestfile = ( gTesttoolPath + "graphics\required\input\diashow.odp" ) + hFileOpenLocally( sTestfile ) sleep 10 - printlog "check if the document is writable" - sMakeReadOnlyDocumentEditable try Kontext "DocumentImpress" @@ -694,7 +694,15 @@ testcase tSlideShowSlideShowSettings setStartCurrentPage(TRUE) '/// Close the document ///' call hCloseDocument - + sLocaltestfile = hFileGetLocalPath( gTesttoolPath + "diashow.odp" ) + printlog sLocaltestfile + if (FileExists (sLocaltestfile)) then + app.kill (sLocaltestfile) + printlog "Deleting used file." + else + warnlog "File is missing." + endif + endcase 'tSlideShowSlideShowSettings '------------------------------------------------------------------------------- diff --git a/testautomation/graphics/optional/includes/impress/i_slideshow3.inc b/testautomation/graphics/optional/includes/impress/i_slideshow3.inc index 63a04aa6f8d5..bc138fef445d 100644 --- a/testautomation/graphics/optional/includes/impress/i_slideshow3.inc +++ b/testautomation/graphics/optional/includes/impress/i_slideshow3.inc @@ -529,7 +529,8 @@ endcase testcase tExtrasIndividuellePraesentation Printlog "- Slideshow/Individual slideshow" - Call hNewDocument '/// new impress document ///' + Call hNewDocument + Call sSelectEmptyLayout '/// new impress document ///' '/// Deactivate "Start with current page" in ToolsOptions ///' setStartCurrentPage(FALSE) '/// check state of navigator ! expected: closed ///' @@ -546,24 +547,27 @@ testcase tExtrasIndividuellePraesentation Kontext "Bildschirmpraesentation" Fenster.Check Bildschirmpraesentation.OK - InsertSlide '/// insert slide ///' - sleep 2 - hTypekeys "<Pagedown>" - sleep 2 - InsertSlide - sleep 2 - hTypekeys "<Pagedown>" - sleep 2 - InsertSlide '/// insert another slide ///' - sleep 2 - hTypekeys "<Pagedown>" - sleep 2 - Printlog " - Slides added" - sleep 1 - Kontext "DocumentImpress" - DocumentImpress.TypeKeys "<MOD1 SHIFT F5>" '/// open navigator ///' - sleep 1 - Kontext "NavigatorDraw" + InsertSlide '/// insert slide ///' + sleep 2 + Call sSelectEmptyLayout + hTypekeys "<Pagedown>" + sleep 2 + InsertSlide + sleep 2 + Call sSelectEmptyLayout + hTypekeys "<Pagedown>" + sleep 2 + InsertSlide '/// insert another slide ///' + sleep 2 + Call sSelectEmptyLayout + hTypekeys "<Pagedown>" + sleep 2 + Printlog " - Slides added" + sleep 1 + Kontext "DocumentImpress" + DocumentImpress.TypeKeys "<MOD1 SHIFT F5>" '/// open navigator ///' + sleep 1 + Kontext "NavigatorDraw" if NavigatorDraw.Exists Then Printlog " - Navigator exists" Erste.Click '/// switch to 1st slide ///' diff --git a/testautomation/graphics/optional/includes/impress/i_stylist.inc b/testautomation/graphics/optional/includes/impress/i_stylist.inc index 7efe28089365..1ef1773a5c55 100644 --- a/testautomation/graphics/optional/includes/impress/i_stylist.inc +++ b/testautomation/graphics/optional/includes/impress/i_stylist.inc @@ -29,15 +29,10 @@ '* '* short description : '* -'******************************************************************* -'* -' #1 tFormatStylistBackground -' #1 fGetSetPageBackground -'* '\******************************************************************* testcase tFormatStylistBackground -'/// special test for BUG # 96364 "Background style looses functionality over PPT Ex/import" ///' + printlog " special test for BUG # 96364 Background style looses functionality over PPT Ex/import" dim sFilter (50) as string dim sFileList (30) as string dim i as integer @@ -59,7 +54,7 @@ testcase tFormatStylistBackground goto endsub endif - '/// if not exists : gOfficePath + '\\user\\impress\\optional\\', create it ///' + printlog " if not exists : gOfficePath + '\\user\\impress\\optional\\', create it" if app.dir (ConvertPath ( gOfficePath + "user/work/impress") ) = "" then app.mkdir ConvertPath ( gOfficePath + "user/work/impress") endif @@ -67,23 +62,23 @@ testcase tFormatStylistBackground app.mkdir ConvertPath ( gOfficePath + "user/work/impress/optional") endif - '/// open application ///' + printlog " open application" Call hNewDocument iColor = 10 - '/// change background color via stylist ///' + printlog " change background color via stylist" if (iColor <> fGetSetPageBackground (iColor,0)) then warnlog "Stylist background was not changed as expected :-( "+iColor endif - '/// check if it is the same in Format -> Page ///' + printlog " check if it is the same in Format -> Page" if fGetSetPageBackground (0,1) <> iColor then warnlog " First stage error! Difference between stylist and menu entry :-( "+iColor endif - '/// save this in 3 formats: ///' - '///+ - StarImpress 5.0 ///' - '///+ - StarOffice 6.0 Presentation ///' - '///+ - Microsoft PowerPoint 97/2000/XP ///' + printlog " save this in 3 formats:" + printlog "+ - StarImpress 5.0" + printlog "+ - StarOffice 6.0 Presentation" + printlog "+ - Microsoft PowerPoint 97/2000/XP" FileSaveAs sleep 2 Kontext "SpeichernDlg" @@ -110,14 +105,14 @@ testcase tFormatStylistBackground printlog " saved with filter ("+i+"/3): "+ sFilter(i) next i - '/// close impress ///' + printlog "close impress" FileClose sleep 1 - kontext ' active about information loss ? + kontext if active.exists (5) then active.yes sleep 10 - '/// open just saved files ///' + printlog " open just saved files" sFileName = ConvertPath ( gOfficePath + "user/work/impress/optional/" ) GetFileList ( sFileName, "isty_*", sFileList() ) @@ -127,23 +122,23 @@ testcase tFormatStylistBackground hFileOpen ( sFileList(i) ) Sleep 5 If hIsNamedDocLoaded (sFileList(i)) Then - printlog " used filter: " + hGetUsedFilter() + printlog "used filter: " + hGetUsedFilter() else warnlog "document didn't get loaded" endif sleep 5 - '/// check if stylist, menue and prediction are as expected ///' + printlog " check if stylist, menue and prediction are as expected" iColor = 10 if ((fGetSetPageBackground (0,0) <> iColor) OR (fGetSetPageBackground (0,1) <> iColor)) then warnlog "Background was not as expected on loading :-( "+iColor endif iColor = 20 - '/// change background in stylist ///' + printlog " change background in stylist" if (fGetSetPageBackground (iColor,0) <> iColor) then warnlog "Stylist background was not changed as expected :-( "+iColor endif sleep 1 - '/// check if background is same in format menu ///' + printlog " check if background is same in format menu" if (fGetSetPageBackground (0,1) <> iColor) then warnlog "Format menu background is wrong :-( "+iColor endif @@ -151,7 +146,7 @@ testcase tFormatStylistBackground hCloseDocument sleep 2 next i -endcase +endcase 'tFormatStylistBackground '------------------------------------------------------------------------------ diff --git a/testautomation/graphics/optional/includes/impress/i_view.inc b/testautomation/graphics/optional/includes/impress/i_view.inc index 54ba5132d16e..214676c3b1a0 100644 --- a/testautomation/graphics/optional/includes/impress/i_view.inc +++ b/testautomation/graphics/optional/includes/impress/i_view.inc @@ -41,33 +41,35 @@ testcase tAnsichtHintergrundNotizen Printlog "- View background notes" - Call hNewDocument '/// new document ///' + printlog "new document" + Call hNewDocument try - ViewNotes '/// view background notes ///' + printlog "view background notes" + ViewNotes sleep 3 catch Warnlog "View-Notes could not be accessed" endcatch ViewWorkspaceDrawingView sleep 1 - Call hCloseDocument '/// close document ///' + printlog "close document" + Call hCloseDocument sleep 1 -endcase +endcase 'tAnsichtHintergrundNotizen '------------------------------------------------------------------------------- testcase tViewWorkspaceHandoutView Printlog "- View background handout" - Call hNewDocument '/// new document ///' + printlog "new document" + Call hNewDocument sleep 2 Kontext "DocumentImpress" - if NOT documentImpress.Exists then - hNewDocument - sleep 1 - end if - sleep 2 + DocumentImpress.UseMenu + hMenuSelectNr (5) + hMenuSelectNr (13) Printlog " ViewWorkspaceHandoutView" - ViewWorkspaceHandoutView '/// view background handout ///' + ViewWorkspaceHandoutView sleep 2 Kontext "Tasks" sleep 2 @@ -77,9 +79,11 @@ testcase tViewWorkspaceHandoutView Printlog " ViewWorkspaceHandoutView works" end if Printlog "ViewWorkspaceHandoutView closed" - ViewWorkspaceDrawingView '/// back to view background drawing ///' - Call hCloseDocument '/// close document ///' -endcase + printlog "back to view background drawing" + ViewWorkspaceDrawingView + printlog "close document" + Call hCloseDocument +endcase 'tViewWorkspaceHandoutView '------------------------------------------------------------------------------- @@ -89,67 +93,67 @@ testcase tViewWorkspaceOutlineView dim sFile as string dim i as integer - '/// load a document with heading styles in writer and use the function 'writer:'File->Send->Outline to presentation' to get it into the presentation ///' + printlog "load a document with heading styles in writer and use the function 'writer:'File->Send->Outline to presentation' to get it into the presentation" ' all 'heading 1' are new slides - '/// document used : "graphics\\required\\input\\outlinefromwriter.sxw" -> you get into writer ///' + printlog "document used : graphics\\required\\input\\outlinefromwriter.sxw -> you get into writer" sFile = ConvertPath (gTesttoolPath + "graphics\required\input\outlinefromwriter.sxw") hDateiOeffnen (sFile) sleep 10 - '///+ with 'File->Send->Outline to presentation' you get into impress ///' + printlog "with 'File->Send->Outline to presentation' you get into impress" FileSendOutlineToPresentation sleep 10 - Printlog "'/// View->Workspace->Outline View ///'" + Printlog "printlog View->Workspace->Outline View" ViewWorkspaceOutlineView sleep 1 - '/// go to the line with the 'I' (via 'search & replace' function) ///' + printlog "go to the line with the 'I' (via 'search & replace' function)" hTypeKeys "<STRG HOME>" EditSelectAll hFindeImDokument ("I") - '///<b> expected level/style: 'Outline 8' </b>///' - '/// get last character from selected style in stylist (expect a number of the outline(heading level) ///' + printlog "expected level/style: 'Outline 8'" + printlog "get last character from selected style in stylist (expect a number of the outline(heading level)" fGetPresentationStyle ("8") - '/// type keys [home] [tab] to go one level down ///' + printlog "type keys [home] [tab] to go one level down" Kontext "DocumentImpressOutlineView" DocumentImpressOutlineView.TypeKeys "<Home><Tab>" - '///<b> expected level/style: 'Outline 9' </b>///' + printlog "expected level/style: 'Outline 9'" fGetPresentationStyle ("9") Kontext "DocumentImpressOutlineView" - '/// Edit - "Select All" to go select the whole text ///' + printlog "Edit - Select All to go select the whole text" EditSelectAll - '/// type keys [shift]+[tab] eight times, to get all lines to the highest, except the one with the 'I' ///' + printlog "type keys [shift]+[tab] eight times, to get all lines to the highest, except the one with the 'I'" DocumentImpressOutlineView.TypeKeys ("<Shift Tab>", 8) hPrepareSearchBUG hTypeKeys "<STRG HOME>" EditSelectAll hFindeImDokument ("I") - '///<b> expected level/style: 'Outline 1' </b>///' + printlog "expected level/style: 'Outline 1" fGetPresentationStyle ("1") - '/// type keys [shift]+[tab] to get the last line to the highest level, too ///' + printlog "type keys [shift]+[tab] to get the last line to the highest level, too" Kontext "DocumentImpressOutlineView" DocumentImpressOutlineView.TypeKeys ("<Shift Tab>", 1) - '///<b> expected level/style: 'Title' </b>///' + printlog "expected level/style: 'Title'" fGetPresentationStyle (0) Kontext "DocumentImpressOutlineView" DocumentImpressOutlineView.TypeKeys ("<escape>", 1) - Printlog "'///<b> call 'Edit->Undo' nine times </b>///'" + Printlog "call 'Edit->Undo' nine times" for i = 1 to 9 editundo next i hPrepareSearchBUG hFindeImDokument ("I") - '///<b> expected level/style: 'Outline 9' </b>///' + printlog "expected level/style: 'Outline 9'" fGetPresentationStyle (9) - Printlog "'///<b> call 'Edit->Redo' nine times </b>///'" + Printlog "call 'Edit->Redo' nine times " for i = 1 to 9 editredo next i @@ -164,10 +168,10 @@ hPrepareSearchBUG hTypeKeys "<STRG HOME>" EditSelectAll hFindeImDokument ("I") - '///<b> expected level/style: 'Title' </b>///' + printlog "expected level/style: 'Title'" fGetPresentationStyle (0) - Printlog "'///<b> call 'Edit->Undo' nine times </b>///'" + Printlog "call 'Edit->Undo' nine times" for i = 1 to 9 editundo next i @@ -176,13 +180,13 @@ hPrepareSearchBUG hTypeKeys "<STRG HOME>" EditSelectAll hFindeImDokument ("I") - '///<b> expected level/style: 'Outline 9' </b>///' + printlog "expected level/style: 'Outline 9" fGetPresentationStyle (9) - '/// type keys [strg]+[A] ///' + printlog "type keys [strg]+[A]" Kontext "DocumentImpressOutlineView" EditSelectAll - '/// type keys [strg]+[X] ///' + printlog "type keys [strg]+[X]" DocumentImpressOutlineView.TypeKeys "<mod1 X>" kontext @@ -193,17 +197,17 @@ hPrepareSearchBUG Warnlog "messagebox missing ! (about deleting pages with graphic objects:)" endif - '/// 'Edit->Undo' ///' + printlog "'Edit->Undo'" editundo - '/// 'Edit->Redo' ///' + printlog "'Edit->Redo'" editredo - '/// 'Edit->Undo' ///' + printlog "'Edit->Undo'" editundo - '/// type keys [strg]+[A] ///' + printlog "type keys [strg]+[A]" Kontext "DocumentImpressOutlineView" EditSelectAll - '/// type keys [strg]+[X] ///' + printlog "type keys [strg]+[X]" DocumentImpressOutlineView.TypeKeys "<mod1 X>" kontext @@ -214,23 +218,23 @@ hPrepareSearchBUG Warnlog "messagebox missing ! (about deleting pages with graphic objects:)" endif - '/// type keys [strg]+[V] ///' + printlog "type keys [strg]+[V]" Kontext "DocumentImpressOutlineView" DocumentImpressOutlineView.TypeKeys "<mod1 V>" - '/// 'Edit->Undo' ///' + printlog "'Edit->Undo'" editundo - '/// 'Edit->Redo' ///' + printlog "'Edit->Redo'" editredo - '/// type keys [strg]+[End] ///' + printlog "type keys [strg]+[End]" Kontext "DocumentImpressOutlineView" DocumentImpressOutlineView.TypeKeys "<mod1 End>" - '/// type keys [strg]+[V] ///' + printlog "type keys [strg]+[V]" DocumentImpressOutlineView.TypeKeys "<mod1 V>" - '/// type keys [strg]+[A] ///' + printlog "type keys [strg]+[A]" EditSelectAll - '/// type keys [delete] ///' + printlog "type keys [delete]" DocumentImpressOutlineView.TypeKeys "<delete>" kontext @@ -242,7 +246,7 @@ hPrepareSearchBUG Warnlog "messagebox missing ! (about deleting pages with graphic objects:)" endif - '/// type keys [strg]+[A] ///' + printlog "type keys [strg]+[A]" Kontext "DocumentImpressOutlineView" EditSelectAll try @@ -252,7 +256,7 @@ hPrepareSearchBUG Warnlog "error 4711 TBO :-(" endcatch - '/// type keys [delete] ///' + printlog "type keys [delete]" Kontext "DocumentImpressOutlineView" DocumentImpressOutlineView.TypeKeys "<delete>" @@ -275,44 +279,50 @@ hPrepareSearchBUG endcatch ViewWorkspaceDrawingView - Call hCloseDocument '/// close document ///' - Call hCloseDocument '/// close document ///' -endcase + printlog "close document" + Call hCloseDocument +endcase 'tViewWorkspaceOutlineView '------------------------------------------------------------------------------- testcase tViewWorkspaceDrawingView Printlog "- View/Background-drawing" - Call hNewDocument '/// new document ///' + printlog "new document" + Call hNewDocument sleep 2 - ViewDrawing '/// view background drawing ///' + printlog "view background drawing" + ViewDrawing try - hRechteckErstellen ( 20,20,40,40 ) '/// create rectangle ///' + printlog "create rectangle" + hRechteckErstellen ( 20,20,40,40 ) sleep 1 Printlog " - rectangle created" catch Warnlog " Rectangle could not be created" endcatch - Call hCloseDocument '/// close document ///' -endcase + printlog "close document" + Call hCloseDocument +endcase 'tViewWorkspaceDrawingView '------------------------------------------------------------------------------- testcase tAnsichtEbene - printLog "- View/Layer" '/// view layer ///' - - - FileAutopilotPresentation '/// new document-autopilot ///' + printLog "- View/Layer" + + printlog "new document-autopilot" + FileAutopilotPresentation Kontext "AutopilotPraesentation1" sleep 5 AutopilotPraesentation1.Ok sleep 2 sleep 2 - ViewSlide '/// back to view slide ///' + printlog "back to view slide" + ViewSlide Sleep 2 - - Call hCloseDocument '/// close document ///' -endcase + printlog "close document" + Call hCloseDocument + +endcase 'tAnsichtEbene '------------------------------------------------------------------------------- diff --git a/testautomation/graphics/optional/includes/impress/options.inc b/testautomation/graphics/optional/includes/impress/options.inc index cfce04e68805..d67eaea8d195 100644 --- a/testautomation/graphics/optional/includes/impress/options.inc +++ b/testautomation/graphics/optional/includes/impress/options.inc @@ -41,8 +41,7 @@ function tiPEngineOptionsTest dim lala, optsound, os, oa, odc, ota, ets, etspeed, etrep, etshap, etgt as integer Kontext "Tasks" -' if (NOT bError) then - '/// CLick on button '...' (Options) ///' + printlog "CLick on button '...' (Options)" EffectOptions.Click kontext "TabEffect" if TabEffect.Exists(5) then @@ -56,13 +55,6 @@ function tiPEngineOptionsTest kontext "TabEffect" else kontext "TabEffect" -' if play.isEnabled then -' try -' play.click -' catch -' warnlog Sound.GetSelText + " wasn't played correctly." -' endcatch -' endif endif next os if AfterAnimation.isEnabled AND AfterAnimation.isVisible then @@ -89,7 +81,7 @@ function tiPEngineOptionsTest for ota = 1 to TextAnimation.GetItemCount TextAnimation.Select ota next ota - '/// switch to TabPage 'Timing' ///' + printlog "switch to TabPage 'Timing'" Kontext Active.SetPage TabTiming kontext "TabTiming" @@ -130,7 +122,7 @@ function tiPEngineOptionsTest else warnlog "Impress:Tasks Pane:Custom Animation:Effect Options: Timing TabPage didn't work." endif - '/// switch to TabPage 'Timing' ///' + printlog "switch to TabPage 'Timing'" Kontext active.setPage TabTextAnimation kontext "TabTextAnimation" @@ -163,9 +155,9 @@ function tiPEngineOptionsTest warnlog "Impress:Tasks Pane:Custom Animation:... button didn't work." endif Kontext "Tasks" -end function - +end function 'tiPEngineOptionsTest +'------------------------------------------------------------------------------- function optionstest2 dim filedialogue as boolean @@ -188,7 +180,7 @@ function optionstest2 else Warnlog "DelayBetweenCharacters should have been enabled" endif - '/// switch to TabPage 'Timing' ///' + printlog "switch to TabPage 'Timing'" Kontext Active.SetPage TabTiming kontext "TabTiming" @@ -234,7 +226,7 @@ function optionstest2 else warnlog "Impress:Tasks Pane:Custom Animation:Effect Options: Timing TabPage didn't work." endif - '/// switch to TabPage 'Timing' ///' + printlog "switch to TabPage 'Timing'" Kontext active.setPage TabTextAnimation kontext "TabTextAnimation" @@ -267,4 +259,4 @@ function optionstest2 warnlog "Impress:Tasks Pane:Custom Animation:... button didn't work." endif Kontext "Tasks" -end function +end function 'optionstest2
\ No newline at end of file diff --git a/testautomation/graphics/required/includes/global/id_001.inc b/testautomation/graphics/required/includes/global/id_001.inc index 5e2b4912f6e7..fee150c8381a 100644 --- a/testautomation/graphics/required/includes/global/id_001.inc +++ b/testautomation/graphics/required/includes/global/id_001.inc @@ -82,9 +82,9 @@ testcase tiFileSaveAs sFilter (0) = 0 ' initalize ;-)... printlog " used document: graphics\required\input\tbo_alf_.od?" - sFileName = "graphics\required\input\tbo_alf_." + ExtensionString ' this is the file with all features + sFileName = "graphics\required\input\tbo_alf_." + ExtensionString printlog "FileName is " + sFileName - sFile = "isas_" ' this is the filename of the export files + sFile = "isas_" sPath = ConvertPath ( gOfficePath + "user/work/graphics/required/"+gApplication+"\"+ gPlatform) ' this is the export path printlog "sPath is " + sPath if dir (sPath) = "" then @@ -92,7 +92,7 @@ testcase tiFileSaveAs end if printlog " deleting all files in output directory: \\user\\work\\graphics\\required\\gApplication gPlatform isas_*" - if gSamePC = TRUE then ' delete export directory + if gSamePC = TRUE then GetFileList ( sPath, sFile+"*", Exlist() ) if KillFileList ( Exlist() ) <> TRUE then Warnlog "Couldn't delete all Files in Output-Export-Directory, the followings are still there:" @@ -107,7 +107,7 @@ testcase tiFileSaveAs WaitSlot (3000) printlog "running 5 times save as with different Filters" - for i = 1 to 6 'run it 5 times + for i = 1 to 6 printlog "calling Save as Dialog" FileSaveAs WaitSlot (2000) diff --git a/testautomation/graphics/required/includes/global/id_004.inc b/testautomation/graphics/required/includes/global/id_004.inc index 42b0170fe6ef..a14912c6f141 100644 --- a/testautomation/graphics/required/includes/global/id_004.inc +++ b/testautomation/graphics/required/includes/global/id_004.inc @@ -307,11 +307,11 @@ testcase tiInsertChart InsertChart WaitSlot (2000) Kontext "Messagebox" - if Messagebox.Exists then - Warnlog Messagebox.GetText - Messagebox.OK - sleep 1 - end if + if Messagebox.Exists then + Warnlog Messagebox.GetText + Messagebox.OK + sleep 1 + end if gMouseClick 1,1 sleep 2 printlog "close application " @@ -360,17 +360,17 @@ testcase tiInsertSpreadsheet InsertSpreadsheetDraw WaitSlot (2000) Kontext "Messagebox" - if Messagebox.Exists (5) then - Warnlog Messagebox.GetText - Messagebox.OK - end if - sleep 2 - printlog "click somewhere out of the object, to deselect it " - gMouseClick 1,1 - sleep 1 - printlog "select and delete object with keys: <Tab><Delete> " - hTypekeys "<Tab><Delete>" - sleep 2 + if Messagebox.Exists (5) then + Warnlog Messagebox.GetText + Messagebox.OK + end if + sleep 2 + printlog "click somewhere out of the object, to deselect it " + gMouseClick 1,1 + sleep 1 + printlog "select and delete object with keys: <Tab><Delete> " + hTypekeys "<Tab><Delete>" + sleep 2 printlog "close application " Call hCloseDocument diff --git a/testautomation/graphics/required/includes/global/id_005.inc b/testautomation/graphics/required/includes/global/id_005.inc index 6ec5a5988235..cba38479f34b 100644 --- a/testautomation/graphics/required/includes/global/id_005.inc +++ b/testautomation/graphics/required/includes/global/id_005.inc @@ -54,7 +54,7 @@ sub id_005 call tiFormatFontwork call tiFormatGroup printlog " format->group is also modify->group " - ' tiFormatLayer ' not in impress + end sub '------------------------------------------------------------------------------ testcase tiFormatDefault diff --git a/testautomation/graphics/required/includes/global/id_006.inc b/testautomation/graphics/required/includes/global/id_006.inc index 434959a7ac2d..1b3a8b3c39a9 100644 --- a/testautomation/graphics/required/includes/global/id_006.inc +++ b/testautomation/graphics/required/includes/global/id_006.inc @@ -43,19 +43,21 @@ sub id_Tools call tiToolsEyedropper call tToolsOptionsTest ' global one end sub + '------------------------------------------------------------------------------- + testcase tiToolsSpellchecking if not gOOO then ' Spellcheck doesn't work in OOo builds. - '/// open application ///' + printlog "open application" Call hNewDocument - WaitSlot (2000) 'sleep 2 - '/// call subroutine 'hSetSpellHypLanguage' for setting the default language in th eoptions, to enable it for languages, which don't provide a dictionary (usually asian ones) ///' + WaitSlot (2000) + printlog " call subroutine 'hSetSpellHypLanguage' for setting the default language in th eoptions, to enable it for languages, which don't provide a dictionary (usually asian ones)" call hSetSpellHypLanguage - '/// create textframe with content ///' + printlog "create textframe with content" Call hTextrahmenErstellen ("Whaaaat", 10, 10, 30, 40) sleep 1 - '/// Tools->Spellcheck->Check ///' + printlog "Tools->Spellcheck->Check" ToolsSpellCheck WaitSlot (1000) 'sleep 1 Kontext "MessageBox" @@ -67,14 +69,14 @@ testcase tiToolsSpellchecking Kontext "Rechtschreibung" if Rechtschreibung.exists then Call DialogTest ( Rechtschreibung ) - '/// close dialog 'Spellcheck' ///' + printlog "close dialog 'Spellcheck'" Rechtschreibung.Close else warnlog " Spellcheck dialog didn't came up :-(" end if end if sleep 1 - '/// say OK to messagebox about 'Spellcheck has been completed' ///' + printlog "say OK to messagebox about 'Spellcheck has been completed'" Kontext "Messagebox" if Messagebox.exists (5) then warnlog "Shouldn't be any messagebox after pressing close in spellchecker" @@ -82,26 +84,30 @@ testcase tiToolsSpellchecking sleep (2) Kontext end if - '/// close application ///' + printlog "close application" Call hCloseDocument else goto endsub endif -endcase +endcase 'tiToolsSpellchecking + '------------------------------------------------------------------------------- + testcase tiToolsSpellcheckingAutomatic - '/// open application ///' + printlog "open application" Call hNewDocument - '/// Tools->Spellcheck->AutoSpellcheck ///' + printlog "Tools->Spellcheck->AutoSpellchec" ToolsSpellcheckAutoSpellcheck - '/// create textframe with text ///' + printlog " create textframe with text " Call hTextrahmenErstellen ("What", 10, 10, 30, 40) sleep 2 - '/// Tools->Spellcheck->AutoSpellcheck ///' + printlog "Tools->Spellcheck->AutoSpellcheck " ToolsSpellcheckAutoSpellcheck - '/// close application ///' + printlog "close application " Call hCloseDocument -endcase +endcase 'tiToolsSpellcheckingAutomatic + '------------------------------------------------------------------------------- + testcase tiToolsThesaurus Dim sWord as string Dim sExt as string @@ -164,20 +170,16 @@ testcase tiToolsThesaurus sWord = "Hello" endif end select - PrintLog "Thesaurus with 1 word: " + sWord - - if( Ucase(gApplication) = "DRAW" ) then + if( gApplication = "DRAW" ) then sExt = ".odg" elseif( Ucase(gApplication) = "IMPRESS" ) then sExt = ".odp" endif - Call hFileOpen (gTesttoolpath + "graphics\required\input\recht_" + iSprache + sExt) - Call sMakeReadOnlyDocumentEditable() + hFileOpenLocally( gTesttoolpath + "graphics\required\input\recht_" + iSprache + sExt) Call hTextrahmenErstellen (sWord,20,20,50,30) sleep 1 - printlog "select the word" hTypeKeys "<Home><SHIFT END>" @@ -196,132 +198,138 @@ testcase tiToolsThesaurus warnlog "the thesaurus does not appear" end if Call hCloseDocument -endcase +endcase 'tiToolsThesaurus + '------------------------------------------------------------------------------- + testcase tiToolsHyphenation - '/// open application ///' + printlog "open application " Call hNewDocument - '/// Tools->Hyphenation ///' + printlog "Tools->Hyphenation " ToolsLanguageHyphenationDraw - WaitSlot (2000) 'sleep 2 - '/// Tools->Hyphenation ///' + WaitSlot (2000) + printlog "Tools->Hyphenation " ToolsLanguageHyphenationDraw - '/// close application ///' + printlog "close application " Call hCloseDocument -endcase +endcase 'tiToolsHyphenation + '------------------------------------------------------------------------------- + testcase tiToolsAutoCorrect dim iLanguage as integer ' for resetting the language - '/// open application ///' + printlog "open application " Call hNewDocument - WaitSlot (1000) 'sleep 1 - '/// Tools->Autocorrect ///' + WaitSlot (1000) + printlog "Tools->Autocorrect " ToolsAutocorrect - WaitSlot (2000) 'sleep 1 + WaitSlot (2000) Kontext - '/// select tabpage 'Replace' ///' + printlog "select tabpage 'Replace' " Messagebox.SetPage TabErsetzung Kontext "TabErsetzung" - Call DialogTest ( TabErsetzung ) - '/// remember the language, that is selected in the 'Replacements and exceptions for Language' Listbox ///' - iLanguage = WelcheSprache.GetSelIndex - '///+ change the language to the 1st from the top ///' - WelcheSprache.Select 1 ' select language with empty list - '///+ type something into the field 'replace' ///' - Kuerzel.SetText "a" - '///+ type something into the field 'with' ///' - ErsetzenDurch.SetText "b" - '///+ click button 'new' ///' - Neu.Click - sleep 1 - '///+ click button 'delete' ///' + Call DialogTest ( TabErsetzung ) + printlog "remember the language, that is selected in the 'Replacements and exceptions for Language' Listbox " + iLanguage = WelcheSprache.GetSelIndex + printlog "+ change the language to the 1st from the top " + WelcheSprache.Select 1 ' select language with empty list + printlog "+ type something into the field 'replace' " + Kuerzel.SetText "a" + printlog "+ type something into the field 'with' " + ErsetzenDurch.SetText "b" + printlog "+ click button 'new' " + Neu.Click + sleep 1 + printlog "+ click button 'delete' " + Loeschen.Click + sleep 1 + try + printlog "+ click button 'delete' again " Loeschen.Click - sleep 1 - try - '///+ click button 'delete' again ///' - Loeschen.Click - catch - printlog "ok was CRASH before" '# - endcatch - '///+ if nothing happens it is ok, was a Crash before :-( ///' - '///+ restore cthe remembered language ///' - WelcheSprache.select (iLanguage) - Kontext - '/// select tabpage 'Exception' ///' - Messagebox.SetPage TabAusnahmen - Kontext "TabAusnahmen" - Call DialogTest ( TabAusnahmen ) - '/// type something into the field 'Abbreviations' ///' - Abkuerzungen.settext "Lala" - '///+ click button 'new' in 'Abbreviations' ///' - AbkuerzungenNeu.click - '///+ click button 'delete' in 'Abbreviations' ///' - AbkuerzungenLoeschen.click - '/// type something into the field 'Word with TWo INitial CApitals' ///' - Woerter.settext "LALA" - '///+ check the checkbox 'AutoInclude' in 'Word with TWo INitial CApitals' ///' - WoerterAutomatisch.Check - '///+ click button 'new' in 'Word with TWo INitial CApitals' ///' - WoerterNeu.click - '///+ click button 'delete' in 'Word with TWo INitial CApitals' ///' - WoerterLoeschen.click - '///+ UNcheck the checkbox 'AutoInclude' in 'Word with TWo INitial CApitals' ///' - WoerterAutomatisch.UnCheck - Kontext - '/// select tabpage 'Options' ///' - Messagebox.SetPage TabOptionen - Kontext "TabOptionen" - Call DialogTest ( TabOptionen ) - Kontext - '/// select tabpage 'Custom Quotes' ///' - Messagebox.SetPage TabLocalizedOptions - Kontext "TabLocalizedOptions" ' 1a - '/// in the part of 'single quotes': ///' - '///+ check 'replace' ///' - '///+ click 'start quote' ///' - SingleQuotesReplace.Check - SingleQuotesStart.Click - Kontext "Sonderzeichen" - Call DialogTest ( Sonderzeichen, 1 ) - '///+ cancel dialog 'start quote' ///' - Sonderzeichen.Cancel - Kontext "TabLocalizedOptions" ' 1b - '///+ click 'end quote' ///' - SingleQuotesEnd.Click - Kontext "Sonderzeichen" - Call DialogTest ( Sonderzeichen, 2 ) - '///+ cancel dialog 'end quote' ///' - Sonderzeichen.Cancel - Kontext "TabLocalizedOptions" ' 1s - '///+ click button 'default' ///' - SingleQuotesDefault.Click - - Kontext "TabLocalizedOptions" ' 2a - '/// in the part of 'double quotes': ///' - '///+ click 'start quote' ///' - DoubleQuotesStart.Click - Kontext "Sonderzeichen" - Call DialogTest ( Sonderzeichen, 3 ) - '///+ cancel dialog 'start quote' ///' - Sonderzeichen.Cancel - Kontext "TabLocalizedOptions" ' 2b - '///+ click 'end quote' ///' - DoubleQuotesEnd.Click - Kontext "Sonderzeichen" - Call DialogTest ( Sonderzeichen, 4 ) - '///+ cancel dialog 'end quote' ///' - Sonderzeichen.Cancel - Kontext "TabLocalizedOptions" ' 2s - '///+ click button 'default' ///' - DoubleQuotesDefault.Click - '///+ UNcheck 'replace' ///' - SingleQuotesReplace.UnCheck - '/// cancel dialog 'AtorCorrect' ///' - TabLocalizedOptions.cancel - '/// close application ///' + catch + printlog "ok was CRASH before" + endcatch + printlog "+ if nothing happens it is ok, was a Crash before :-( " + printlog "+ restore cthe remembered language " + WelcheSprache.select (iLanguage) + Kontext + printlog "select tabpage 'Exception' " + Messagebox.SetPage TabAusnahmen + Kontext "TabAusnahmen" + Call DialogTest ( TabAusnahmen ) + printlog "type something into the field 'Abbreviations' " + Abkuerzungen.settext "Lala" + printlog "+ click button 'new' in 'Abbreviations' " + AbkuerzungenNeu.click + printlog "+ click button 'delete' in 'Abbreviations' " + AbkuerzungenLoeschen.click + printlog "type something into the field 'Word with TWo INitial CApitals' " + Woerter.settext "LALA" + printlog "+ check the checkbox 'AutoInclude' in 'Word with TWo INitial CApitals' " + WoerterAutomatisch.Check + printlog "+ click button 'new' in 'Word with TWo INitial CApitals' " + WoerterNeu.click + printlog "+ click button 'delete' in 'Word with TWo INitial CApitals' " + WoerterLoeschen.click + printlog "+ UNcheck the checkbox 'AutoInclude' in 'Word with TWo INitial CApitals' " + WoerterAutomatisch.UnCheck + Kontext + printlog "select tabpage 'Options' " + Messagebox.SetPage TabOptionen + Kontext "TabOptionen" + Call DialogTest ( TabOptionen ) + Kontext + printlog "select tabpage 'Custom Quotes' " + Messagebox.SetPage TabLocalizedOptions + Kontext "TabLocalizedOptions" ' 1a + printlog "in the part of 'single quotes': " + printlog "+ check 'replace' " + printlog "+ click 'start quote' " + SingleQuotesReplace.Check + SingleQuotesStart.Click + Kontext "Sonderzeichen" + Call DialogTest ( Sonderzeichen, 1 ) + printlog "+ cancel dialog 'start quote' " + Sonderzeichen.Cancel + Kontext "TabLocalizedOptions" ' 1b + printlog "+ click 'end quote' " + SingleQuotesEnd.Click + Kontext "Sonderzeichen" + Call DialogTest ( Sonderzeichen, 2 ) + printlog "+ cancel dialog 'end quote' " + Sonderzeichen.Cancel + Kontext "TabLocalizedOptions" ' 1s + printlog "+ click button 'default' " + SingleQuotesDefault.Click + + Kontext "TabLocalizedOptions" ' 2a + printlog " in the part of 'double quotes': " + printlog "+ click 'start quote' " + DoubleQuotesStart.Click + Kontext "Sonderzeichen" + Call DialogTest ( Sonderzeichen, 3 ) + printlog "+ cancel dialog 'start quote' " + Sonderzeichen.Cancel + Kontext "TabLocalizedOptions" ' 2b + printlog "+ click 'end quote' " + DoubleQuotesEnd.Click + Kontext "Sonderzeichen" + Call DialogTest ( Sonderzeichen, 4 ) + printlog "+ cancel dialog 'end quote' " + Sonderzeichen.Cancel + Kontext "TabLocalizedOptions" ' 2s + printlog "+ click button 'default' " + DoubleQuotesDefault.Click + printlog "+ UNcheck 'replace' " + SingleQuotesReplace.UnCheck + printlog " cancel dialog 'AtorCorrect' " + TabLocalizedOptions.cancel + printlog " close application " Call hCloseDocument -endcase + +endcase 'tiToolsAutoCorrect '------------------------------------------------------------------------------- + testcase tChineseTranslation qaerrorlog( "#i89634# - Chinese Translation dialog does not close" ) @@ -336,139 +344,143 @@ testcase tChineseTranslation sFileName = "graphics\required\input\tchinese.odg" end if - '/// Open application ///' + printlog "Open application " Call hNewDocument - WaitSlot (2000) 'sleep 1 - '/// Save old state and Activate Support for Asian language ///' + WaitSlot (2000) + printlog "Save old state and Activate Support for Asian language " bSavedAsianSupport = ActiveDeactivateAsianSupport(TRUE) - '/// Open Document ///' + printlog "Open Document " Call hFileOpen ( ConvertPath(gTesttoolPath + sFileName) ) - '/// If write-protected - open as Temp-file ///' + printlog "If write-protected - open as Temp-file " sleep (2) Kontext "Standardbar" - if Bearbeiten.GetState(2) <> 1 then - Bearbeiten.Click '0 = not pressed. 1 = pressed. - Kontext - if Active.Exists(1) then - Active.Yes - else - warnlog "No messagebox after making document editable? - Test canceled here" - goto endsub - end if + if Bearbeiten.GetState(2) <> 1 then + Bearbeiten.Click '0 = not pressed. 1 = pressed. + Kontext + if Active.Exists(1) then + Active.Yes + else + warnlog "No messagebox after making document editable? - Test canceled here" + goto endsub end if + end if if uCase(gApplication) = "IMPRESS" then Kontext "DocumentImpress" else Kontext "DocumentDraw" end if - '/// Select all, Press RETURN to enter text in Editmode ///' - '/// Move marker to top of the text, go two steps right, mark two characters ///' + printlog "Select all, Press RETURN to enter text in Editmode " + printlog "Move marker to top of the text, go two steps right, mark two characters " EditSelectAll hTypeKeys "<RETURN>" hTypeKeys "<MOD1 HOME><RIGHT><RIGHT><SHIFT RIGHT RIGHT>" - '/// Open Chinesetranslation ///' + printlog "Open Chinesetranslation " ToolsChineseTranslation WaitSlot (2000) 'sleep 1 kontext "ChineseTranslation" - '/// Check if everything is there ///' - Call DialogTest ( ChineseTranslation ) - '/// Click on EditTerms ///' - EditTerms.Click - kontext "ChineseDictionary" - '/// Check if everything is there ///' - Call DialogTest ( ChineseDictionary ) - '/// Close dialog 'ChineseDictionary' with 'OK' ///' - ChineseDictionary.Ok + printlog " Check if everything is there " + Call DialogTest ( ChineseTranslation ) + printlog " Click on EditTerms " + EditTerms.Click + kontext "ChineseDictionary" + printlog " Check if everything is there " + Call DialogTest ( ChineseDictionary ) + printlog " Close dialog 'ChineseDictionary' with 'OK' " + ChineseDictionary.Ok kontext "ChineseTranslation" - '/// Close dialog 'Chinese' with 'OK' ///' - ChineseTranslation.OK + printlog " Close dialog 'Chinese' with 'OK' " + ChineseTranslation.OK kontext - '/// if messagebox exist, say OK; ('Spellcheck completed' or 'Word not found') ///' - if Messagebox.exists (5) then - printlog "Messagebox: "+Messagebox.gettext+"'" - Messagebox.ok - end if - '/// Restore old state for Asian language ///' + printlog " if messagebox exist, say OK; ('Spellcheck completed' or 'Word not found') " + if Messagebox.exists (5) then + printlog "Messagebox: "+Messagebox.gettext+"'" + Messagebox.ok + end if + printlog " Restore old state for Asian language " ActiveDeactivateAsianSupport(bSavedAsianSupport) - '/// Close application ///' + printlog " Close application " Call hCloseDocument -endcase + +endcase 'tChineseTranslation '------------------------------------------------------------------------------- + testcase tiToolsMacro - '/// open application ///' + printlog "open application " Call hNewDocument WaitSlot (2000) 'sleep 2 - '/// Tools->Macro ///' + printlog "Tools->Macro " ToolsMacro Kontext "Makro" - Call DialogTest ( Makro ) - '/// click button 'organizer...' ///' - Verwalten.Click - + Call DialogTest ( Makro ) + printlog "click button 'organizer...' " + Verwalten.Click Kontext - '/// switch to tabpage 'Modules' ///' - Messagebox.SetPage TabModule - Kontext "TabModule" - Call DialogTest ( TabModule ) - + printlog "switch to tabpage 'Modules' " + Messagebox.SetPage TabModule + Kontext "TabModule" + Call DialogTest ( TabModule ) Kontext - '/// switch to tabpage 'Libraries' ///' - Messagebox.SetPage TabBibliotheken - Kontext "TabBibliotheken" - Call DialogTest ( TabBibliotheken ) - '/// click lbutton 'append' ///' - Hinzufuegen.Click - Kontext "Messagebox" - if Messagebox.Exists (5) then - if Messagebox.GetRT = 304 then - Warnlog Messagebox.Gettext - Messagebox.Ok - end if - end if - Kontext "OeffnenDlg" - '/// cancel dialog 'append libraries' ///' - OeffnenDlg.Cancel - Kontext "TabBibliotheken" - '/// click button 'new' ///' - Neu.Click - kontext "NeueBibliothek" - sleep 1 'Bibliotheksname - '/// cancel dialog 'new library' ///' - NeueBibliothek.cancel - Kontext "TabBibliotheken" - '/// close dialog 'macro organizer' ///' - TabBibliotheken.Close + printlog "switch to tabpage 'Libraries' " + Messagebox.SetPage TabBibliotheken + Kontext "TabBibliotheken" + Call DialogTest ( TabBibliotheken ) + printlog "click lbutton 'append' " + Hinzufuegen.Click + Kontext "Messagebox" + if Messagebox.Exists (5) then + if Messagebox.GetRT = 304 then + Warnlog Messagebox.Gettext + Messagebox.Ok + end if + end if + Kontext "OeffnenDlg" + printlog "cancel dialog 'append libraries' " + OeffnenDlg.Cancel + Kontext "TabBibliotheken" + printlog "click button 'new' " + Neu.Click + kontext "NeueBibliothek" + sleep 1 'Bibliotheksname + printlog "cancel dialog 'new library' " + NeueBibliothek.cancel + Kontext "TabBibliotheken" + printlog "close dialog 'macro organizer' " + TabBibliotheken.Close Kontext "Makro" - '/// close dialog 'macro' ///' - Makro.Cancel - '/// close application ///' + printlog "close dialog 'macro' " + Makro.Cancel + printlog "close application " Call hCloseDocument -endcase +endcase 'tiToolsMacro + '------------------------------------------------------------------------------- + testcase tiToolsGallery - '/// open application ///' + printlog "open application " Call hNewDocument - '/// Tools->Gallery ///' + printlog "Tools->Gallery " ToolsGallery WaitSlot (2000) 'sleep 1 - '/// Tools->Gallery ///' + printlog "Tools->Gallery " ToolsGallery - '/// close application ///' + printlog "close application " Call hCloseDocument -endcase +endcase'tiToolsGallery + '------------------------------------------------------------------------------- + testcase tiToolsEyedropper - '/// open application ///' + printlog "open application " Call hNewDocument - '/// Tools->Eyedropper ///' + printlog "Tools->Eyedropper " ToolsEyedropper Kontext "Pipette" Call DialogTest (Pipette) - '/// close dialog 'Eyedropper' ///' + printlog "close dialog 'Eyedropper' " Pipette.Close sleep 1 - '/// close application ///' + printlog "close application " Call hCloseDocument -endcase +endcase 'tiToolsEyedropper diff --git a/testautomation/graphics/required/includes/global/id_007.inc b/testautomation/graphics/required/includes/global/id_007.inc index 29791d4b716f..81c265bca515 100644 --- a/testautomation/graphics/required/includes/global/id_007.inc +++ b/testautomation/graphics/required/includes/global/id_007.inc @@ -34,7 +34,6 @@ sub id_007 printLog Chr(13) + "--------- id_007 ----------" - ' in imp available via context menu, in draw via modify menu call tdModifyFlipVertikal call tdModifyFlipHorizontal @@ -56,487 +55,460 @@ sub id_007 call tdModifyCombineSplit end sub '------------------------------------------------------------------------------- -testcase tdModifyFlipVertikal - '/// open application ///' +testcase tdModifyFlipVertikal + printlog "open application" Call hNewDocument ' imp: contextmenue same SID! sleep 1 - '/// create rectangle ///' + printlog "create rectangle" Call hRechteckErstellen ( 10, 10, 20, 40 ) try - '/// imp: Kontextmenu: Flip->Vertically ///' - '///+ Modify->Flip->Vertically ///' + printlog "imp: Kontextmenu: Flip->Vertically" ContextFlipVerticalDraw Printlog "- Flip-vertical is working" catch Warnlog "- Flip-Vertical does not work" endcatch sleep 1 - '/// close application ///' + printlog "close application" Call hCloseDocument -endcase +endcase 'tdModifyFlipVertikal '------------------------------------------------------------------------------------------------------------------------------------------------ testcase tdModifyFlipHorizontal - '/// open application ///' + printlog "open application" Call hNewDocument ' imp: contextmenue same SID! WaitSlot (1000) - '/// create rectangle ///' + printlog "create rectangle" Call hRechteckErstellen ( 10, 10, 20, 40 ) try - '/// imp: Kontextmenu: Flip->Horizontally ///' - '///+ Modify->Flip->Horizontally ///' + printlog "imp: Kontextmenu: Flip->Horizontally" ContextFlipHorizontalDraw Printlog "- Flip-horizontal is working" catch Warnlog "- Flip-horizontal does not work" endcatch sleep 1 - '/// close application ///' + printlog "close application" Call hCloseDocument -endcase +endcase 'tdModifyFlipHorizontal '------------------------------------------------------------------------------------------------------------------------------------------------ testcase tdContextConvertIntoCurve - '/// open application ///' + printlog "open application" Call hNewDocument - '/// create rectangle ///' + printlog "create rectangle" Call hRechteckErstellen ( 10, 10, 20, 40 ) - '/// Modify->Convert->To Curve ///' - '///+ Modify->Convert->To Curve ///' + printlog "Modify->Convert->To Curve" ContextConvertIntoCurve WaitSlot (2000) - '/// close application ///' + printlog "close application" Call hCloseDocument -endcase +endcase 'tdContextConvertIntoCurve '------------------------------------------------------------------------------------------------------------------------------------------------ testcase tdContextConvertIntoPolygon dim iWaitIndex as integer - '/// open application ///' - Call hNewDocument ' imp: contextmenue same SID! + + printlog "open application" + Call hNewDocument InsertGraphicsFromFile Kontext "GrafikEinfuegenDlg" - '/// Check if the dialogue is there. If not - wait for maximum 10 seconds) - iWaitIndex = 0 - do while NOT GrafikEinfuegenDlg.Exists AND iWaitIndex < 10 - sleep(1) - iWaitIndex = iWaitIndex + 1 - loop - if NOT GrafikEinfuegenDlg.Exists AND iWaitIndex = 10 then - warnlog "Dialogue Insert Graphics didnt work. Ending testcase." - Call hCloseDocument - goto endsub - end if - '/// insert graphic: "global\input\graf_inp\enter.bmp" ///' - Dateiname.SetText ConvertPath (gTesttoolPath + "global\input\graf_inp\enter.bmp") - Oeffnen.Click - sleep 3 - '/// Modify->Convert->To Polygon ///' - '/// Modify->Convert->To Polygon ///' - ContextConvertIntoPolygon - Kontext "InPolygonUmwandeln" - Call DialogTest (InPolygonUmwandeln) - '/// check checkbox: 'Fill holes' ///' - LoecherFuellen.Check - '/// click more in number field: 'Number of colors' ///' - Farbanzahl.More - '/// click more in number field: 'Point reductionn' ///' - Punktreduktion.More - '/// click more in number field: 'Tile size' ///' - Kachelgroesse.More - '/// click button 'Preview' ///' - Vorschau.Click - sleep 10 - '/// cancel dialog 'Convert to Polygon' ///' - InPolygonUmwandeln.Cancel - sleep (2) - '/// close application ///' + printlog "Check if the dialogue is there. If not - wait for maximum 10 seconds)" + iWaitIndex = 0 + do while NOT GrafikEinfuegenDlg.Exists AND iWaitIndex < 10 + sleep(1) + iWaitIndex = iWaitIndex + 1 + loop + if NOT GrafikEinfuegenDlg.Exists AND iWaitIndex = 10 then + warnlog "Dialogue Insert Graphics didnt work. Ending testcase." + Call hCloseDocument + goto endsub + end if + printlog "insert graphic: global\input\graf_inp\enter.bmp" + Dateiname.SetText ConvertPath (gTesttoolPath + "global\input\graf_inp\enter.bmp") + Oeffnen.Click + sleep 3 + printlog "Modify->Convert->To Polygon" + ContextConvertIntoPolygon + Kontext "InPolygonUmwandeln" + Call DialogTest (InPolygonUmwandeln) + printlog "check checkbox: 'Fill holes'" + LoecherFuellen.Check + printlog "click more in number field: 'Number of colors'" + Farbanzahl.More + printlog "click more in number field: 'Point reductionn'" + Punktreduktion.More + printlog "click more in number field: 'Tile size'" + Kachelgroesse.More + printlog "click button 'Preview'" + Vorschau.Click + sleep 10 + printlog "cancel dialog 'Convert to Polygon'" + InPolygonUmwandeln.Cancel + sleep (2) + printlog "close application" Call hCloseDocument -endcase +endcase 'tdContextConvertIntoPolygon '------------------------------------------------------------------------------------------------------------------------------------------------ testcase tdContextConvertIntoContour - '/// open application ///' + printlog "open application" Call hNewDocument - '/// create rectangle ///' + printlog "create rectangle" Call hRechteckErstellen ( 10, 10, 20, 40 ) - '/// Modify->Convert->To Contour ///' - '/// Modify->Convert->To Contour ///' + printlog "Modify->Convert->To Contour" ContextConvertIntoContour WaitSlot (1000) - '/// close application ///' + printlog "close application" Call hCloseDocument -endcase +endcase 'tdContextConvertIntoContour '------------------------------------------------------------------------------------------------------------------------------------------------ testcase tdContextConvertInto3D - '/// open application ///' + printlog "open application" Call hNewDocument - '/// create rectangle ///' + printlog "create rectangle" Call hRechteckErstellen ( 10, 10, 20, 40 ) - '/// Modify->Convert->To 3D ///' - '/// Modify->Convert->To 3D ///' + printlog "Modify->Convert->To 3D" ContextConvertInto3D WaitSlot (1000) - '/// close application ///' + printlog "close application" Call hCloseDocument -endcase +endcase 'tdContextConvertInto3D '------------------------------------------------------------------------------------------------------------------------------------------------ testcase tdContextConvertIntoRotationObject - '/// open application ///' + printlog "open application" Call hNewDocument WaitSlot (1000) - '/// create rectangle ///' + printlog "create rectangle" Call hRechteckErstellen (20,20,50,50) sleep 2 - '/// Modify->Convert->To 3D Rotation Object ///' - '/// Modify->Convert->To 3D Rotation Object ///' + printlog "Modify->Convert->To 3D Rotation Object" ContextConvertInto3DRotationObject WaitSlot (1000) - '/// close application ///' + printlog "close application" Call hCloseDocument -endcase +endcase 'tdContextConvertIntoRotationObject '------------------------------------------------------------------------------------------------------------------------------------------------ testcase tdContextConvertIntoBitmap - '/// open application ///' + printlog "open application" Call hNewDocument WaitSlot (3000) InsertGraphicsFromFile WaitSlot (3000) Kontext "GrafikEinfuegenDlg" - sleep 2 - '/// insert graphic: "global\input\graf_inp\columbia.dxf" ///' - Dateiname.SetText ConvertPath (gTesttoolPath + "global\input\graf_inp\columbia.dxf") - sleep 2 - Oeffnen.Click - sleep 2 - try - '/// Modify->Convert->To Bitmap ///' - ContextConvertIntoBitmap - Printlog "- Convert into bitmap is working" - catch - Warnlog "- Convert into bitmap does not work" - endcatch - '/// close application ///' + sleep 2 + printlog "insert graphic: global\input\graf_inp\columbia.dxf" + Dateiname.SetText ConvertPath (gTesttoolPath + "global\input\graf_inp\columbia.dxf") + sleep 2 + Oeffnen.Click + sleep 2 + try + printlog "Modify->Convert->To Bitmap" + ContextConvertIntoBitmap + Printlog "- Convert into bitmap is working" + catch + Warnlog "- Convert into bitmap does not work" + endcatch +printlog "close application" Call hCloseDocument -endcase +endcase 'tdContextConvertIntoBitmap '------------------------------------------------------------------------------------------------------------------------------------------------ testcase tdContextConvertIntoMetaFile - '/// open application ///' + printlog "open application" Call hNewDocument WaitSlot (3000) InsertGraphicsFromFile WaitSlot (1000) kontext "Messagebox" - if Messagebox.Exists (5) Then Messagebox.OK - sleep 1 - Kontext "GrafikEinfuegenDlg" - '/// insert graphic: "global\input\graf_inp\desp.bmp" ///' - sleep 2 - Dateiname.SetText ConvertPath (gTesttoolPath + "global\input\graf_inp\desp.bmp") - sleep 2 - Preview.Click - sleep 3 - Oeffnen.Click - sleep 5 - try - '/// Modify->Convert->To Metafile ///' - '/// Modify->Convert->To Metafile ///' - ContextConvertIntoMetafile - Printlog "- convert into meta file does work" - catch - Warnlog "- convert into meta file does not work" - endcatch - '/// close application ///' + if Messagebox.Exists (5) Then Messagebox.OK + sleep 1 + Kontext "GrafikEinfuegenDlg" + printlog "insert graphic: global\input\graf_inp\desp.bmp" + sleep 2 + Dateiname.SetText ConvertPath (gTesttoolPath + "global\input\graf_inp\desp.bmp") + sleep 2 + Preview.Click + sleep 3 + Oeffnen.Click + sleep 5 + try + printlog "Modify->Convert->To Metafile" + printlog "Modify->Convert->To Metafile" + ContextConvertIntoMetafile + Printlog "- convert into meta file does work" + catch + Warnlog "- convert into meta file does not work" + endcatch + printlog "close application" Call hCloseDocument -endcase +endcase 'tdContextConvertIntoMetaFile '------------------------------------------------------------------------------------------------------------------------------------------------ testcase tdModifyArrange - '/// open application ///' + printlog "open application" Call hNewDocument - '/// create two rectangles ///' + printlog "create two rectangles" Call hRechteckErstellen ( 10, 10, 20, 40 ) hTypeKeys("<escape>") Call hRechteckErstellen ( 30, 30, 50, 60 ) - '/// Modify->Arrange->Bring to Front ///' - '///+ Modify->Arrange->Bring to Front ///' + printlog "Modify->Arrange->Bring to Front" FormatArrangeBringToFront WaitSlot (1000) - '/// Modify->Arrange->Bring Forward ///' - '///+ Modify->Arrange->Bring Forward ///' + printlog "Modify->Arrange->Bring Forward" ContextArrangeBringForward WaitSlot (1000) - '/// Modify->Arrange->Send Backward ///' - '///+ Modify->Arrange->Send Backward ///' + printlog "Modify->Arrange->Send Backward" ContextArrangeBringBackward WaitSlot (1000) - '/// Modify->Arrange->Send to Back ///' - '///+ Modify->Arrange->Send to Back ///' + printlog "Modify->Arrange->Send to Back" FormatArrangeSendToBack WaitSlot (1000) - '/// Edit->Select All ///' + printlog "Edit->Select All" EditSelectAll - '/// Modify->Arrange->Reverse ///' - '///+ Modify->Arrange->Reverse ///' + printlog "Modify->Arrange->Reverse" ContextArrangeReverse WaitSlot (1000) - '/// close application ///' + printlog "close application" Call hCloseDocument -endcase +endcase 'tdModifyArrange '------------------------------------------------------------------------------------------------------------------------------------------------ testcase tdModifyArrangeObjects - '/// open application ///' + printlog "open application" Call hNewDocument WaitSlot (1000) - '/// create two rectangles ///' + printlog "create two rectangles" Call hRechteckErstellen ( 20, 20, 30, 50 ) hTypeKeys("<escape>") Call hRechteckErstellen ( 30,30,50,50 ) - '/// Modify->Arrange->In Front of Object ///' - '///+ Modify->Arrange->In Front of Object ///' + printlog "Modify->Arrange->In Front of Object" ContextArrangeInFrontOfObject - '/// click on the upper left rectangle ///' + printlog "click on the upper left rectangle" gMouseClick 11,11 - '/// Modify->Arrange->Behind Object ///' - '///+ Modify->Arrange->Behind Object ///' + printlog "Modify->Arrange->Behind Object" ContextArrangeBehindObject - '/// click on the lower right rectangle ///' + printlog "click on the lower right rectangle" gMouseClick 45,45 sleep 1 - '/// close application ///' + printlog "close application" Call hCloseDocument -endcase +endcase 'tdModifyArrangeObjects '------------------------------------------------------------------------------------------------------------------------------------------------ testcase tdModifyAlignment - '/// open application ///' + printlog "open application" Call hNewDocument WaitSlot (1000) - '/// create rectangle ///' + printlog "create rectangle" Call hRechteckErstellen ( 20, 20, 30, 50 ) - '/// Modify->Alignment->Left ///' - '///+ Modify->Alignment->Left ///' + printlog "Modify->Alignment->Left" ContextAlignmentLeft WaitSlot (1000) - '/// Modify->Alignment->Centered ///' - '///+ Modify->Alignment->Centered ///' + printlog "Modify->Alignment->Centered" ContextAlignmentCentered WaitSlot (1000) - '/// Modify->Alignment->Right ///' - '///+ Modify->Alignment->Right ///' + printlog "Modify->Alignment->Right" ContextAlignmentRight WaitSlot (1000) - '/// Modify->Alignment->Top ///' - '///+ Modify->Alignment->Top ///' + printlog "Modify->Alignment->Top" ContextAlignmentTop WaitSlot (1000) - '/// Modify->Alignment->Center ///' - '///+ Modify->Alignment->Center ///' + printlog "Modify->Alignment->Center" ContextAlignmentBottom WaitSlot (1000) - '/// Modify->Alignment->Bottom ///' - '///+ Modify->Alignment->Bottom ///' + printlog "Modify->Alignment->Bottom" ContextAlignmentCenter WaitSlot (1000) - '/// close application ///' + printlog "close application" Call hCloseDocument -endcase +endcase 'tdModifyAlignment '------------------------------------------------------------------------------------------------------------------------------------------------ testcase tdContextDistribution - '/// open application ///' + printlog "open application" Call hNewDocument WaitSlot (3000) - '/// create 3 rectangles ///' + printlog "create 3 rectangles" Call sSelectEmptyLayout Call hRechteckErstellen (20,20,30,30) Call hRechteckErstellen (40,40,50,50) Call hRechteckErstellen (60,60,70,70) sleep 1 - '/// select all with keyboard: <STRG>+ <A> ///' + printlog "select all with keyboard: <STRG>+ <A>" EditSelectAll sleep 1 - '/// Modify->Distibution... ///' - '///+ Modify->Distibution... ///' + printlog "Modify->Distibution..." ContextDistribution Kontext "VerteilenDlg" - sleep 1 - Call DialogTest (VerteilenDlg) - sleep 1 - '/// check radiobutton horizontal 'Left' ///' - Links.Check - '///+ check radiobutton 'Center' ///' - MitteHorizontal.Check - '///+ check radiobutton 'spacing' ///' - AbstandHorizontal.Check - '///+ check radiobutton 'right' ///' - Rechts.Check - '///+ check radiobutton 'none' ///' - KeineHorizontal.Check - '/// check radiobutton vertical 'top' ///' - Oben.Check - '///+ check radiobutton 'center' ///' - MitteVertikal.Check - '///+ check radiobutton 'spacing' ///' - AbstandVertikal.Check - '///+ check radiobutton 'bottom' ///' - Unten.Check - '///+ check radiobutton 'none' ///' - KeineVertikal.Check - '/// cancel dialog 'Distribution' ///' - VerteilenDlg.Cancel - sleep 2 - '/// close application ///' + sleep 1 + Call DialogTest (VerteilenDlg) + sleep 1 + printlog "check radiobutton horizontal 'Left'" + Links.Check + printlog "check radiobutton 'Center'" + MitteHorizontal.Check + printlog "check radiobutton 'spacing'" + AbstandHorizontal.Check + printlog "check radiobutton 'right'" + Rechts.Check + printlog "check radiobutton 'none'" + KeineHorizontal.Check + printlog "check radiobutton vertical 'top'" + Oben.Check + printlog "check radiobutton 'center'" + MitteVertikal.Check + printlog "check radiobutton 'spacing'" + AbstandVertikal.Check + printlog "check radiobutton 'bottom'" + Unten.Check + printlog "check radiobutton 'none'" + KeineVertikal.Check + printlog "cancel dialog 'Distribution'" + VerteilenDlg.Cancel + sleep 2 + printlog "close application" Call hCloseDocument -endcase +endcase 'tdContextDistribution '------------------------------------------------------------------------------------------------------------------------------------------------ testcase tdContextDescriptionObject - '/// Open application ///' + printlog "Open application" Call hNewDocument WaitSlot (1000) - '/// create rectangle ///' + printlog "create rectangle" Call hRechteckErstellen ( 10, 10, 20, 40 ) ContextDescriptionObject Kontext "DescriptionObject" - Call DialogTest (DescriptionObject) - '/// Cancel dialog 'DescriptionObject' ///' - DescriptionObject.Cancel - '/// Close application ///' + Call DialogTest (DescriptionObject) + printlog "Cancel dialog 'DescriptionObject'" + DescriptionObject.Cancel + printlog "Close application" Call hCloseDocument -endcase +endcase 'tdContextDescriptionObject '------------------------------------------------------------------------------------------------------------------------------------------------ testcase tdContextNameObject - '/// open application ///' + printlog "open application" Call hNewDocument WaitSlot (1000) - '/// create two rectangles ///' + printlog "create two rectangles" Call hRechteckErstellen ( 20, 20, 30, 50 ) hTypeKeys("<escape>") Call hRechteckErstellen ( 30, 40, 50, 60 ) sleep 1 - '/// select both by spanning a selection with the mouse ///' + printlog "select both by spanning a selection with the mouse" gMouseMove 1,1,70,70 sleep 1 - '/// Modify->Group ///' - '///+ Modify->Group ///' + printlog "Modify->Group" FormatGroupGroup WaitSlot (1000) - '/// Modify->Name Object ///' - '///+ Modify->Name Object ///' + printlog "Modify->Name Object" ContextNameObject Kontext "NameDlgObject" - Call DialogTest (NameDlgObject) - '/// cancel dialog 'name' ///' - NameDlgObject.Cancel - '/// Modify->UnGroup ///' - '///+ Modify->UnGroup ///' - FormatUngroupDraw - '/// close application ///' + Call DialogTest (NameDlgObject) + printlog "cancel dialog 'name'" + NameDlgObject.Cancel + printlog "Modify->UnGroup" + FormatUngroupDraw + printlog "close application" Call hCloseDocument -endcase +endcase 'tdContextNameObject '------------------------------------------------------------------------------------------------------------------------------------------------ testcase tdModifyConnectBreak - '/// open application ///' + printlog "open application" Call hNewDocument Call sSelectEmptyLayout sleep 1 - '/// create two rectangles ///' + printlog "create two rectangles" Call hRechteckErstellen (10,10,30,30) Call hRechteckErstellen (35,35,50,50) sleep 1 - '/// Edit->Select All ///' + printlog "Edit->Select All" EditSelectAll - '/// Modify->Connect ///' - '///+ Modify->Connect ///' + printlog "Modify->Connect" ContextConnect sleep 1 try - '/// Modify->Break ///' - '///+ Modify->Break ///' + printlog "Modify->Break" ContextBreak catch - Warnlog "- Modify-Break does not work" + Warnlog "- Modify-Break does not work" endcatch sleep 1 - '/// close application ///' + printlog "close application" Call hCloseDocument -endcase +endcase 'tdModifyConnectBreak '------------------------------------------------------------------------------------------------------------------------------------------------ testcase tdModifyShapes - '/// open application ///' + printlog "open application" Call hNewDocument Call sSelectEmptyLayout sleep 1 - '/// create two rectangles ///' + printlog "create two rectangles" gMouseClick 50,50 Call hRechteckErstellen (30,30,50,50) Call hRechteckErstellen (60,60,80,80) sleep 1 - '/// Edit->Select All ///' + printlog "Edit->Select All" EditSelectAll sleep 1 try - '/// Modify->Shapes->Merge ///' - '///+ Modify->Shapes->Merge ///' - ModifyShapesMerge ' 1 + printlog "Modify->Shapes->Merge" + ModifyShapesMerge ' 1 WaitSlot (1000) 'sleep 1 - Printlog "- Modify-Shape merge is working" + Printlog "- Modify-Shape merge is working" catch - Warnlog "- Modify-shape merge is not working" + Warnlog "- Modify-shape merge is not working" endcatch - '/// select all and delete it ///' + printlog "select all and delete it" EditSelectAll sleep 1 hTypeKeys "<DELETE>" sleep 1 - '/// create two rectangles ///' + printlog "create two rectangles" Call hRechteckErstellen (30,30,50,50) Call hRechteckErstellen (60,60,80,80) sleep 1 - '/// Edit->Select All ///' + printlog "Edit->Select All" EditSelectAll sleep 1 try - '/// Modify->Shapes->Substract ///' - '///+ Modify->Shapes->Substract ///' - ModifyShapesSubstract ' 2 - Printlog "- Modify-shape-substract is working" + printlog "Modify->Shapes->Substract" + ModifyShapesSubstract ' 2 + Printlog "- Modify-shape-substract is working" catch - Warnlog "- Modify-shape substract is not working" + Warnlog "- Modify-shape substract is not working" endcatch sleep 1 - '/// select all and delete it ///' + printlog "select all and delete it" EditSelectAll sleep 1 hTypeKeys "<DELETE>" sleep 1 - '/// create two rectangles ///' + printlog "create two rectangles" Call hRechteckErstellen (30,30,50,50) sleep 1 Call hRechteckErstellen (60,60,80,80) @@ -544,45 +516,42 @@ testcase tdModifyShapes EditSelectall sleep 1 try - '/// Modify->Shapes->Intersect ///' - '///+ Modify->Shapes->Intersect ///' - ModifyShapesIntersect ' 3 - Printlog "- Modify-shape intersect is working" + printlog "Modify->Shapes->Intersect" + ModifyShapesIntersect ' 3 + Printlog "- Modify-shape intersect is working" catch - Warnlog "- Modify-Shape intersect is not working" + Warnlog "- Modify-Shape intersect is not working" endcatch - '/// close application ///' + printlog "close application" Call hCloseDocument -endcase +endcase 'tdModifyShapes '------------------------------------------------------------------------------------------------------------------------------------------------ testcase tdModifyCombineSplit - '/// open application ///' + printlog "open application" Call hNewDocument Call sSelectEmptyLayout sleep 1 - '/// create two rectangles ///' + printlog "create two rectangles" Call hRechteckErstellen (30,30,50,50) Call hRechteckErstellen (60,60,80,80) sleep 1 - '/// Edit->Select All ///' + printlog "Edit->Select All" EditSelectAll sleep 1 try - '/// Modify->Shapes->Combine ///' - '///+ Modify->Shapes->Combine ///' - ContextCombine - Printlog "- Modify combine is working" - '/// Modify->Shapes->Split ///' - '///+ Modify->Shapes->Split ///' - ContextSplit - Printlog "- Modify-split is working" + printlog "Modify->Shapes->Combine" + ContextCombine + Printlog "- Modify combine is working" + printlog "Modify->Shapes->Split" + ContextSplit + Printlog "- Modify-split is working" catch - Warnlog "- Modify-combine and split are not working" + Warnlog "- Modify-combine and split are not working" endcatch - '/// close application ///' + printlog "close application" Call hCloseDocument -endcase +endcase 'tdModifyCombineSplit -'------------------------------------------------------------------------------------------------------------------------------------------------ +'------------------------------------------------------------------------------------------------------------------------------------------------
\ No newline at end of file diff --git a/testautomation/graphics/required/includes/global/id_008.inc b/testautomation/graphics/required/includes/global/id_008.inc index 8848c7337dac..f88174929c1f 100644 --- a/testautomation/graphics/required/includes/global/id_008.inc +++ b/testautomation/graphics/required/includes/global/id_008.inc @@ -41,43 +41,44 @@ end sub '------------------------------------------------------------------------------- testcase tiWindowNewWindow - '/// open application ///' + printlog "open application" Call hNewDocument - '/// create rectangle ///' + printlog "create rectangle" Call hRechteckErstellen ( 10, 10, 20, 40 ) - '/// Window->New Window ///' + printlog "Window->New Window" WindowNewWindow WaitSlot (2000) - '/// close application ///' + printlog "close application" Call hCloseDocument -endcase +endcase 'tiWindowNewWindow + +'------------------------------------------------------------------------------- testcase tidWindow123 goto endsub '' testing TBO: 29.03.2002 dim iMenues as integer - '/// open application ///' + printlog "open application" Call hNewDocument - '/// create rectangle ///' + printlog "create rectangle" Call hRechteckErstellen ( 10, 10, 20, 40 ) Kontext "DocumentImpress" - DocumentImpress.UseMenu - iMenues = MenuGetItemCount - warnlog "---- Number of Main menus: " & iMenues - MenuSelect(Menugetitemid(8)) - sleep 1 - iMenues = MenuGetItemCount - printlog "---- Number of Main menus: " & iMenues - ' MenuSelect(Menugetitemid(14)) - sleep 1 - i=1 - printlog "count: " + i + "; of submenu: " + MenuGetItemCount + "; SID: " + MenuGetItemId (i) + "; Text: " + MenuGetItemText (Menugetitemid(i)) + "; Command: " + MenuGetItemCommand(Menugetitemid(i)) + "; Seperator?: " + MenuIsSeperator(i) + "; Enabled: " + MenuIsItemEnabled(Menugetitemid(i)) + "; Checked: " + MenuIsItemChecked(Menugetitemid(i)) + ";" - i=2 - printlog "count: " + i + "; of submenu: " + MenuGetItemCount + "; SID: " + MenuGetItemId (i) + "; Text: " + MenuGetItemText (Menugetitemid(i)) + "; Command: " + MenuGetItemCommand(Menugetitemid(i)) + "; Seperator?: " + MenuIsSeperator(i) + "; Enabled: " + MenuIsItemEnabled(Menugetitemid(i)) + "; Checked: " + MenuIsItemChecked(Menugetitemid(i)) + ";" - warnlog "Dynamic entries not accessible ? :-(((((" - ' i=3 - ' printlog "count: " + i + "; of submenue: " + MenuGetItemCount + "; SID: " + MenuGetItemId (i) + "; Text: " + MenuGetItemText (Menugetitemid(i)) + "; Command: " + MenuGetItemCommand(Menugetitemid(i)) + "; Seperator?: " + MenuIsSeperator(i) + "; Enabled: " + MenuIsItemEnabled(Menugetitemid(i)) + "; Checked: " + MenuIsItemChecked(Menugetitemid(i)) + ";" - '/// close application ///' + DocumentImpress.UseMenu + iMenues = MenuGetItemCount + warnlog "---- Number of Main menus: " & iMenues + MenuSelect(Menugetitemid(8)) + sleep 1 + iMenues = MenuGetItemCount + printlog "---- Number of Main menus: " & iMenues + ' MenuSelect(Menugetitemid(14)) + sleep 1 + i=1 + printlog "count: " + i + "; of submenu: " + MenuGetItemCount + "; SID: " + MenuGetItemId (i) + "; Text: " + MenuGetItemText (Menugetitemid(i)) + "; Command: " + MenuGetItemCommand(Menugetitemid(i)) + "; Seperator?: " + MenuIsSeperator(i) + "; Enabled: " + MenuIsItemEnabled(Menugetitemid(i)) + "; Checked: " + MenuIsItemChecked(Menugetitemid(i)) + ";" + i=2 + printlog "count: " + i + "; of submenu: " + MenuGetItemCount + "; SID: " + MenuGetItemId (i) + "; Text: " + MenuGetItemText (Menugetitemid(i)) + "; Command: " + MenuGetItemCommand(Menugetitemid(i)) + "; Seperator?: " + MenuIsSeperator(i) + "; Enabled: " + MenuIsItemEnabled(Menugetitemid(i)) + "; Checked: " + MenuIsItemChecked(Menugetitemid(i)) + ";" + warnlog "Dynamic entries not accessible ? :-(((((" + ' i=3 + ' printlog "count: " + i + "; of submenue: " + MenuGetItemCount + "; SID: " + MenuGetItemId (i) + "; Text: " + MenuGetItemText (Menugetitemid(i)) + "; Command: " + MenuGetItemCommand(Menugetitemid(i)) + "; Seperator?: " + MenuIsSeperator(i) + "; Enabled: " + MenuIsItemEnabled(Menugetitemid(i)) + "; Checked: " + MenuIsItemChecked(Menugetitemid(i)) + ";" + printlog "close application" Call hCloseDocument -endcase - +endcase 'tidWindow123
\ No newline at end of file diff --git a/testautomation/graphics/required/includes/global/id_009.inc b/testautomation/graphics/required/includes/global/id_009.inc index d03d99b6050c..3680dfafbc4f 100644 --- a/testautomation/graphics/required/includes/global/id_009.inc +++ b/testautomation/graphics/required/includes/global/id_009.inc @@ -43,252 +43,238 @@ sub id_009 end sub '------------------------------------------------------------------------------ -testcase tmHelpHelpAgent +testcase tmHelpHelpAgent Call hNewDocument - hTBOtypeInDoc - HelpHelpAgent ' it's just a switch sleep 2 HelpHelpAgent - Call hCloseDocument -endcase +endcase 'tmHelpHelpAgent -'...---....---.-.-.-.-.....---......--.-.-.-.....----..-........................---....... +'------------------------------------------------------------------------------ testcase tmHelpTips Call hNewDocument hTBOtypeInDoc - HelpTips Sleep 2 HelpTips - Call hCloseDocument -endcase +endcase 'tmHelpTips -'...---....---.-.-.-.-.....---......--.-.-.-.....----..-........................---....... +'------------------------------------------------------------------------------ testcase tmHelpExtendedTips Call hNewDocument hTBOtypeInDoc - HelpEntendedHelp Sleep (2) HelpEntendedHelp - Call hCloseDocument -endcase +endcase 'tmHelpExtendedTips -'...---....---.-.-.-.-.....---......--.-.-.-.....----..-........................---....... +'------------------------------------------------------------------------------ testcase tmHelpAboutStarOffice Call hNewDocument hTBOtypeInDoc - HelpAboutStarOffice Kontext "UeberStarMath" DialogTest (UeberStarMath) UeberStarMath.OK - Call hCloseDocument -endcase +endcase 'tmHelpAboutStarOffice -'...---....---.-.-.-.-.....---......--.-.-.-.....----..-........................---....... +'------------------------------------------------------------------------------ testcase tmHelpContents - goto endsub '"#i84486# - tmHelpContents outcommented due to crash." - dim i as integer + dim i as integer - '/// open application ///' - Call hNewDocument - '/// Help->Contents ///' - HelpContents - sleep(8) - kontext "StarOfficeHelp" - if Not StarOfficeHelp.Exists then - Warnlog "Help is not up!" - else - '/// get the number of entries in the listbox 'select Help modul' ///' - Printlog "HelpAbout: '" + HelpAbout.GetItemCount +"'" - '################ left half ################ - '/// on the left half of the dialog: ///' - '///+ change to the tabpage 'Contents' ///' - TabControl.SetPage ContentPage - '///+ get the number of entries in the listbox 'MAin help themes' ///' - Printlog "SearchContent: '" + SearchContent.GetItemCount + "'" - '///+ change to the tabpage 'Index' ///' - TabControl.SetPage IndexPage - '///+ get the number of entries in the listbox 'Search term' ///' - Printlog "SearchIndex: '" + SearchIndex.GetItemCount + "'" - sleep 5 - '///+ click on button 'Display' ///' - DisplayIndex.Click - sleep 5 - '///+ change to the tabpage 'Find' ///' - TabControl.SetPage FindPage - '///+ get the number of entries in the listbox 'Search term' ///' - Printlog "SearchFind: '" + SearchFind.GetItemCount + "'" - '/// If the Search-Text-Field is empty - Check that the Find-button is deactivated ///' - if SearchFind.GetSelText = "" then - if FindButton.IsEnabled then - warnlog " The Find-Button should have been inactive, but was active." - endif - else - warnlog " The Search-Text-Field shouldn't contain any text. But contained: " + SearchFind.GetSelText - endif - '/// Insert some irrelevant text to get 0 results from the search. ///' - SearchFind.SetText "Doobbidedooo" - '///+ click on button 'Find' ///' - FindButton.Click - kontext - '///+ Messagebox comes up about: 'No topics found.' say OK ///' - if (active.exists (2) )then - Printlog "active came up: '" + active.gettext + "'" - active.ok + printlog "open application" + Call hNewDocument + printlog "Help->Contents" + HelpContents + sleep(8) + kontext "StarOfficeHelp" + if Not StarOfficeHelp.Exists then + Warnlog "Help is not up!" + else + printlog "get the number of entries in the listbox 'select Help modul'" + Printlog "HelpAbout: '" + HelpAbout.GetItemCount +"'" + printlog "on the left half of the dialog:" + printlog "change to the tabpage 'Contents'" + TabControl.SetPage ContentPage + printlog "get the number of entries in the listbox 'MAin help themes'" + Printlog "SearchContent: '" + SearchContent.GetItemCount + "'" + printlog "change to the tabpage 'Index'" + TabControl.SetPage IndexPage + printlog "get the number of entries in the listbox 'Search term'" + Printlog "SearchIndex: '" + SearchIndex.GetItemCount + "'" + sleep 5 + printlog "click on button 'Display'" + DisplayIndex.Click + sleep 5 + printlog "change to the tabpage 'Find'" + TabControl.SetPage FindPage + printlog "get the number of entries in the listbox 'Search term'" + Printlog "SearchFind: '" + SearchFind.GetItemCount + "'" + printlog "If the Search-Text-Field is empty - Check that the Find-button is deactivated" + if SearchFind.GetSelText = "" then + if FindButton.IsEnabled then + warnlog " The Find-Button should have been inactive, but was active." endif - kontext "StarOfficeHelp" - '///+ check checkbox 'Complete words only' ///' - FindFullWords.Check - '///+ check checkbox 'Find in headings only' ///' - FindInHeadingsOnly.Check - '///+ get the number of entries in the listbox 'List of headings' ///' - Printlog "Result: '" + Result.GetItemCount + "'" - '///+ click on button 'Display' ///' - DisplayFind.Click - '///+ change to the tabpage 'Bookmarks' ///' - TabControl.SetPage BookmarksPage - '///+ get the number of entries in the listbox 'Bookmark list' ///' - Printlog "Bookmarks: '" + Bookmarks.GetItemCount + "'" - '///+ click on button 'Display' ///' - DisplayBookmarks.Click - '################ right half ################ - '/// on the right half of teh dialog: ///' - '################ toolbar ################ - Kontext "TB_Help" - '///+ click on button 'Hide/Show Navigation Pane' ///' - Index.Click + else + warnlog " The Search-Text-Field shouldn't contain any text. But contained: " + SearchFind.GetSelText + endif + printlog "Insert some irrelevant text to get 0 results from the search." + SearchFind.SetText "Doobbidedooo" + printlog "click on button 'Find'" + FindButton.Click + kontext + printlog "Messagebox comes up about: 'No topics found.' say OK" + if (active.exists (2) )then + Printlog "active came up: '" + active.gettext + "'" + active.ok + endif + kontext "StarOfficeHelp" + printlog "check checkbox 'Complete words only' " + FindFullWords.Check + printlog "check checkbox 'Find in headings only' " + FindInHeadingsOnly.Check + printlog "get the number of entries in the listbox 'List of headings'" + Printlog "Result: '" + Result.GetItemCount + "'" + printlog "click on button 'Display'" + DisplayFind.Click + printlog "change to the tabpage 'Bookmarks'" + TabControl.SetPage BookmarksPage + printlog "get the number of entries in the listbox 'Bookmark list'" + Printlog "Bookmarks: '" + Bookmarks.GetItemCount + "'" + printlog "click on button 'Display'" + DisplayBookmarks.Click + printlog "on the right half of teh dialog:" + Kontext "TB_Help" + printlog "click on button 'Hide/Show Navigation Pane'" + Index.Click + sleep 1 + printlog "click on button 'Hide/Show Navigation Pane'" + Index.Click + sleep 1 + printlog "click on button 'First Page'" + GoToStart.Click + sleep 1 + printlog "click on button 'Previous Page'" + Backward.Click + sleep 1 + printlog "click on button 'Next Page'" + Forward.Click + sleep 1 + printlog "click on button 'Print ...'" + PrintButton.Click + sleep (1) + kontext "Active" + if Active.Exists( 2 ) then + qaerrorlog "No default printer defined: " & Active.GetText + Active.Ok + end if + kontext "Printing" + if Printing.Exists( 2 ) then + printlog "In the dialog 'Print' press the button 'Cancel'" + Printing.cancel + else + warnlog "the Print-Dialogue didnt appear." + end if + Kontext "TB_Help" + printlog "click on button 'Add to Bookmarks ...'" + sleep 1 + SetBookmarks.Click + sleep 1 + Kontext "AddBookmark" + printlog "on the dialog 'Add to Bookmarks ...' get the text from the editfield 'Bookmark' and press button 'Cancel'" + Printlog "Bookmarkname: '" + Bookmarkname.GetText + "'" + AddBookmark.Cancel + sleep 1 + '################ help display ################ + kontext "HelpContent" + printlog "open the Context Menu of the Frame 'Help Content' and count the entries" + HelpContent.OpenContextMenu + sleep 1 + Printlog " i: " + hMenuItemGetCount + hMenuClose() + '################ right scroolbar ################ + kontext "HelpContent" + printlog "click on button 'Previous Page'" + if HelpContentUP.IsVisible then + HelpContentUP.Click sleep 1 - '///+ click on button 'Hide/Show Navigation Pane' ///' - Index.Click - sleep 1 - '///+ click on button 'First Page' ///' - GoToStart.Click - sleep 1 - '///+ click on button 'Previous Page' ///' - Backward.Click - sleep 1 - '///+ click on button 'Next Page' ///' - Forward.Click - sleep 1 - '///+ click on button 'Print ...' ///' - PrintButton.Click - sleep (1) - - kontext "Active" - if Active.Exists( 2 ) then - qaerrorlog "No default printer defined: " & Active.GetText - Active.Ok - end if - - kontext "Printing" - if Printing.Exists( 2 ) then - '/// In the dialog 'Print' press the button 'Cancel' ///' - Printing.cancel - else - warnlog "the Print-Dialogue didnt appear." - end if - Kontext "TB_Help" - '///+ click on button 'Add to Bookmarks ...' ///' - sleep 1 - SetBookmarks.Click - sleep 1 - Kontext "AddBookmark" - '///+ on the dialog 'Add to Bookmarks ...' get the text from the editfield 'Bookmark' and press button 'Cancel' ///' - Printlog "Bookmarkname: '" + Bookmarkname.GetText + "'" - AddBookmark.Cancel - sleep 1 - '################ help display ################ - kontext "HelpContent" - '///+ open the Context Menu of the Frame 'Help Content' and count the entries ///' - HelpContent.OpenContextMenu - - sleep 1 - Printlog " i: " + hMenuItemGetCount - hMenuClose() - '################ right scroolbar ################ - kontext "HelpContent" - '///+ click on button 'Previous Page' ///' - if HelpContentUP.IsVisible then - HelpContentUP.Click - sleep 1 - endif - '///+ click on button 'Navigation' ///' - if HelpContentNAVIGATION.IsVisible then - HelpContentNAVIGATION.Click - sleep 1 - endif - kontext "NavigationsFenster" - '/// on the toolbox 'Navigation' press the window close button 'X' ///' - NavigationsFenster.Close - sleep 1 - kontext "HelpContent" - '///+ click on button 'Next Page' ///' - if HelpContentDOWN.IsVisible then - HelpContentDOWN.Click - sleep 1 - endif - kontext "StarOfficeHelp" - '/// close the help with the keys [strg]+[F4] ///' - Printlog "trying to close the help now" - try - StarOfficeHelp.TypeKeys "<Mod1 F4>" ' strg F4 supported since bug #103586# - catch - Warnlog "failed to close the help window :-(" - endcatch - kontext "StarOfficeHelp" - if StarOfficeHelp.Exists then - warnlog "Help still up!" - endif - endif - '/// close application ///' - Call hCloseDocument -endcase + endif + printlog "click on button 'Navigation'" + if HelpContentNAVIGATION.IsVisible then + HelpContentNAVIGATION.Click + sleep 1 + endif + kontext "NavigationsFenster" + printlog "on the toolbox 'Navigation' press the window close button 'X'" + NavigationsFenster.Close + sleep 1 + kontext "HelpContent" + printlog "click on button 'Next Page'" + if HelpContentDOWN.IsVisible then + HelpContentDOWN.Click + sleep 1 + endif + kontext "StarOfficeHelp" + printlog "close the help with the keys [strg]+[F4]" + Printlog "trying to close the help now" + try + StarOfficeHelp.TypeKeys "<Mod1 F4>" ' strg F4 supported since bug #103586# + catch + Warnlog "failed to close the help window :-(" + endcatch + kontext "StarOfficeHelp" + if StarOfficeHelp.Exists then + warnlog "Help still up!" + endif + endif + printlog "close application" + Call hCloseDocument +endcase 'tmHelpContents -'...---....---.-.-.-.-.....---......--.-.-.-.....----..-........................---....... +'------------------------------------------------------------------------------ testcase tCheckIfTheHelpExists - '/// open application ///' - Call hNewDocument - '/// Bring up the help-window ///' - HelpContents - kontext "HelpContent" - sleep (5) - '/// Press "CTRL A" and "CTRL C" to select all and then copy it. ///' - HelpContent.TypeKeys "<MOD1 A>" - sleep (1) - HelpContent.TypeKeys "<MOD1 C>" - '/// If the clipboard now is empty, then nothing were copied, which means we have a bug. ///' - if GetClipBoard = "" then - Warnlog " No content in the Help-Content -view." - else - Printlog " The Help-Content -view contained content. Good." - endif - kontext "StarOfficeHelp" - '/// Press "CTRL F4" to close the help-window. ///' - try - StarOfficeHelp.TypeKeys "<MOD1 F4>" - catch - Warnlog " Failed to close the help window :-(" - endcatch - kontext "StarOfficeHelp" - if StarOfficeHelp.Exists then - warnlog "Help was still visible!" - endif - '/// And a dot into the main window. Making sure kontext and focus is right. ///' - hTypeKeys "." - '/// Close Application ///' - Call hCloseDocument + printlog "open application" + Call hNewDocument + printlog "Bring up the help-window" + HelpContents + kontext "HelpContent" + sleep (5) + printlog "Press CTRL A and CTRL C to select all and then copy it." + HelpContent.TypeKeys "<MOD1 A>" + sleep (1) + HelpContent.TypeKeys "<MOD1 C>" + printlog "If the clipboard now is empty, then nothing were copied, which means we have a bug." + if GetClipBoard = "" then + Warnlog "No content in the Help-Content -view." + else + Printlog "The Help-Content -view contained content. Good." + endif + kontext "StarOfficeHelp" + printlog "Press CTRL F4 to close the help-window." + try + StarOfficeHelp.TypeKeys "<MOD1 F4>" + catch + Warnlog " Failed to close the help window :-(" + endcatch + kontext "StarOfficeHelp" + if StarOfficeHelp.Exists then + warnlog "Help was still visible!" + endif + printlog "And a dot into the main window. Making sure kontext and focus is right." + hTypeKeys "." + printlog "Close Application" + Call hCloseDocument endcase 'tCheckIfTheHelpExists + +'------------------------------------------------------------------------------
\ No newline at end of file diff --git a/testautomation/graphics/required/includes/global/id_011.inc b/testautomation/graphics/required/includes/global/id_011.inc index 186c5e1b51ef..f9ad3f46378b 100644 --- a/testautomation/graphics/required/includes/global/id_011.inc +++ b/testautomation/graphics/required/includes/global/id_011.inc @@ -42,279 +42,271 @@ sub id_011 end sub '------------------------------------------------------------------------------- -testcase tiTextToolbar +testcase tiTextToolbar Dim iWaitIndex as integer Dim Zufall as integer Dim i as integer - '/// open application ///' + printlog "open application" Call hNewDocument Call sSelectEmptyLayout - - '/// create a textframe with text ///' + printlog "create a textframe with text" hTextrahmenErstellen ("This is a Text, which will be formatted in several ways", 20,20,40,80) - '/// The 'Object Toolbar' now changes ///' + printlog "The 'Object Toolbar' now changes" sleep 2 - '/// select of the text with <STRG> + <A> ///' + printlog "select of the text with <STRG> + <A>" EditSelectAll sleep 2 - '/// Call the textobjectbar from the View-Toolbars-menu ///' + printlog "Call the textobjectbar from the View-Toolbars-menu" Kontext "TextObjectbar" - if TextObjectbar.Exists <> TRUE then 'isVisible - ViewToolbarsTextFormatting - end if - WaitSlot (3000) 'sleep (3) + if TextObjectbar.Exists <> TRUE then 'isVisible + ViewToolbarsTextFormatting + end if + WaitSlot (3000) 'sleep (3) Kontext "TextObjectbar" - Printlog "- choose random font" - randomize - Zufall=((2*Rnd)+1) ' wird nicht auf den verfuegbaren bereich getreckt :-( TODO TBO! - Schriftart.GetItemcount - Schriftart.GetSelText - Schriftart.Select (Zufall) - '/// select any font you like in the listbox 'Font' on 'Object Toolbar' ///' - Printlog Schriftart.GetSelText + " chosen" - + Printlog "- choose random font" + randomize + Zufall=((2*Rnd)+1) ' wird nicht auf den verfuegbaren bereich getreckt :-( TODO TBO! + Schriftart.GetItemcount + Schriftart.GetSelText + Schriftart.Select (Zufall) + printlog "select any font you like in the listbox 'Font' on 'Object Toolbar'" + Printlog Schriftart.GetSelText + " chosen" Kontext "TextObjectbar" - sleep 2 - Printlog "- Change size of font" - '/// select any font you like in the listbox 'Size' on 'Object Toolbar' ///' - Schriftgroesse.Select (Zufall) - Printlog Schriftgroesse.GetSelText + " chosen" - + sleep 2 + Printlog "- Change size of font" + printlog "select any font you like in the listbox 'Size' on 'Object Toolbar'" + Schriftgroesse.Select (Zufall) + Printlog Schriftgroesse.GetSelText + " chosen" Kontext "TextObjectbar" - Printlog "- Font attribute bold" - '/// click button 'Bold' ///' - Fett.Click - sleep 2 - + Printlog "- Font attribute bold" + printlog "click button 'Bold'" + Fett.Click + sleep 2 Kontext "TextObjectbar" - Printlog "- Font attribute cursive" - '/// click button 'Italic' ///' - Kursiv.Click - sleep 2 - + Printlog "- Font attribute cursive" + printlog "click button 'Italic'" + Kursiv.Click + sleep 2 Kontext "TextObjectbar" - Printlog "- Font attribute cursiv" - '/// click button 'Underline' ///' - Unterstrichen.Click - sleep 2 - + Printlog "- Font attribute cursiv" + printlog "click button 'Underline'" + Unterstrichen.Click + sleep 2 Kontext "TextObjectbar" - Printlog "- font attribute color" - '/// click button 'Font Color' and tearoff the box ///' - sleep 3 - FontColorGraphics.TearOff - Kontext "TB_Farbe" - TB_Farbe.Move 20, 20 - Sleep 2 - '/// double click in the middle of the box ///' - TB_Farbe.MouseDoubleClick 50, 50 - Sleep 2 - '/// close box 'Font Color' ///' - TB_Farbe.Close + Printlog "- font attribute color" + printlog "click button 'Font Color' and tearoff the box" + sleep 3 + FontColorGraphics.TearOff + Kontext "TB_Farbe" + TB_Farbe.Move 20, 20 + Sleep 2 + printlog "double click in the middle of the box" + TB_Farbe.MouseDoubleClick 50, 50 + Sleep 2 + printlog "close box 'Font Color'" + TB_Farbe.Close Kontext "TextObjectbar" - Printlog "- Allign text left" - '/// click button 'Left' ///' - Linksbuendig.Click - sleep 2 + Printlog "- Allign text left" + printlog "click button 'Left'" + Linksbuendig.Click + sleep 2 Kontext "TextObjectbar" - Printlog "- Allign text centered" - '/// click button 'Centered' ///' - Zentriert.Click - sleep 2 + Printlog "- Allign text centered" + printlog "click button 'Centered'" + Zentriert.Click + sleep 2 Kontext "TextObjectbar" - Printlog "- align text to right" - '/// click button 'Right' ///' - Rechtsbuendig.Click - sleep 2 + Printlog "- align text to right" + printlog "click button 'Right'" + Rechtsbuendig.Click + sleep 2 Kontext "TextObjectbar" - Printlog "- Justified" - '/// click button 'Justified' ///' - Blocksatz.Click - sleep 2 + Printlog "- Justified" + printlog "click button 'Justified'" + Blocksatz.Click + sleep 2 Kontext "TextObjectbar" - if TextObjectbar.isEnabled <> TRUE then - warnlog "Couldn't access TextObjectbar - known bug with bars - FHA" - ViewToolbarsTextFormatting - end if - WaitSlot (2000) 'sleep 2 - Printlog "- Raising Font spacing" - '/// click button 'Increase Spacing' ///' - + if TextObjectbar.isEnabled <> TRUE then + warnlog "Couldn't access TextObjectbar - known bug with bars - FHA" + ViewToolbarsTextFormatting + end if + WaitSlot (2000) 'sleep 2 + Printlog "- Raising Font spacing" + printlog "click button 'Increase Spacing'" kontext "TextObjectbar" - sleep 1 - '/// Check if the bar is there. If not - wait for maximum 10 seconds) - iWaitIndex = 0 - do while NOT TextObjectbar.isEnabled AND iWaitIndex < 10 - sleep(1) - iWaitIndex = iWaitIndex + 1 - loop - if NOT TextObjectbar.isEnabled AND iWaitIndex = 10 then - warnlog "Dialogue TextObjectbar didnt work. Ending testcase." - Call hCloseDocument - goto endsub - end if - '/// Activate the Font spacing-buttons ///' - TextObjectbar.OpenContextMenu - sleep 2 - hMenuselectNr (1) - sleep 2 - hMenuItemCheck (13) - sleep 2 - TextObjectbar.OpenContextMenu - sleep 2 - hMenuselectNr (1) - sleep 2 - hMenuItemCheck (14) - sleep 2 - ZeilenabstandErhoehen.Click - sleep 2 - + sleep 1 + printlog "Check if the bar is there. If not - wait for maximum 10 seconds)" + iWaitIndex = 0 + do while NOT TextObjectbar.isEnabled AND iWaitIndex < 10 + sleep(1) + iWaitIndex = iWaitIndex + 1 + loop + if NOT TextObjectbar.isEnabled AND iWaitIndex = 10 then + warnlog "Dialogue TextObjectbar didnt work. Ending testcase." + Call hCloseDocument + goto endsub + end if + printlog "Activate the Font spacing-buttons" + TextObjectbar.OpenContextMenu + sleep 2 + hMenuselectNr (1) + sleep 2 + hMenuItemCheck (13) + sleep 2 + TextObjectbar.OpenContextMenu + sleep 2 + hMenuselectNr (1) + sleep 2 + hMenuItemCheck (14) + sleep 2 + ZeilenabstandErhoehen.Click + sleep 2 Kontext "TextObjectbar" - Printlog "- Decrease Spacing" - '/// click button 'Decrease Spacing' ///' - ZeilenabstandVerringern.Click - sleep 2 + Printlog "- Decrease Spacing" + printlog "click button 'Decrease Spacing'" + ZeilenabstandVerringern.Click + sleep 2 Kontext "TextObjectbar" - Printlog "- Numbering and Bullets" - sleep 2 - '/// click button 'Bullets On/Off' ///' - BulletsOnOff.Click - sleep 2 - '/// click button 'Bullets On/Off' ///' - BulletsOnOff.Click - '----------------------------------------------------------------------- + Printlog "- Numbering and Bullets" + sleep 2 + printlog "click button 'Bullets On/Off'" + BulletsOnOff.Click + sleep 2 + printlog "click button 'Bullets On/Off'" + BulletsOnOff.Click + '----------------------------------------------------------------------- Kontext "TextObjectBar" - Printlog "- Increase Font /Reduce Font" - sleep 2 - printlog "- Click on Increase Font" - IncreaseFont.Click - sleep 2 - printlog "- Click on Reduce Font" - ReduceFont.Click - '----------------------------------------------------------------------- + Printlog "- Increase Font /Reduce Font" + sleep 2 + printlog "- Click on Increase Font" + IncreaseFont.Click + sleep 2 + printlog "- Click on Reduce Font" + ReduceFont.Click + '----------------------------------------------------------------------- Kontext "TextObjectbar" - Printlog "- Text direction from left to right" - sleep 2 - Printlog "- click button 'Text direction from left to right'" - try - TextdirectionLeftToRight.Click - printlog "hor does work :-)" - if (gAsianSup = FALSE) then - warnlog " this doesn't have to work if asian lang support is disabled :-)" - end if - catch - if (gAsianSup = TRUE) then - warnlog "hor does NOT work :-(" - end if - endcatch - Printlog "- click button 'Text direction from top to bottom" - try - TextdirectionTopToBottom.Click - printlog "ver does work :-)" - if (gAsianSup = FALSE) then - warnlog " this doesnt have to work if asian lang support is disabled :-)" - end if - catch - if (gAsianSup = TRUE) then - warnlog "ver does NOT work :-( , AsianLanguage support is enabled !" - end if - endcatch + Printlog "- Text direction from left to right" + sleep 2 + Printlog "- click button 'Text direction from left to right'" + try + TextdirectionLeftToRight.Click + printlog "hor does work :-)" + if (gAsianSup = FALSE) then + warnlog " this doesn't have to work if asian lang support is disabled :-)" + end if + catch + if (gAsianSup = TRUE) then + warnlog "hor does NOT work :-(" + end if + endcatch + Printlog "- click button 'Text direction from top to bottom" + try + TextdirectionTopToBottom.Click + printlog "ver does work :-)" + if (gAsianSup = FALSE) then + warnlog " this doesnt have to work if asian lang support is disabled :-)" + end if + catch + if (gAsianSup = TRUE) then + warnlog "ver does NOT work :-( , AsianLanguage support is enabled !" + end if + endcatch Printlog "- open character dialog" Kontext "TextObjectbar" - sleep 2 - '/// click button 'Character' ///' - Zeichenformat.Click - sleep 2 - Kontext - Active.SetPage TabFont - Kontext "TabFont" - sleep 2 - if TabFont.Exists Then - '/// close dialog 'character' ///' - TabFont.Cancel - Printlog "- Tabfont exists" - else - Warnlog "- No dialog exists " - end if + sleep 2 + printlog "click button 'Character'" + Zeichenformat.Click + sleep 2 + Kontext + Active.SetPage TabFont + Kontext "TabFont" + sleep 2 + if TabFont.Exists Then + printlog "close dialog 'character'" + TabFont.Cancel + Printlog "- Tabfont exists" + else + Warnlog "- No dialog exists " + end if Kontext "TextObjectbar" - sleep 2 - Printlog "- call properties for paragraph using text object toolbar" - '/// click button 'Paragraph' ///' - Absatzformat.Click - sleep 2 - Kontext - Active.SetPage TabTabulator - Kontext "TabTabulator" - if TabTabulator.Exists Then - Printlog "- TabTabulator exists" - '/// close dialog 'Paragraph' ///' - TabTabulator.Cancel - else - Warnlog "- TabTabulator does not exist" - end if + sleep 2 + Printlog "- call properties for paragraph using text object toolbar" + printlog "click button 'Paragraph'" + Absatzformat.Click + sleep 2 + Kontext + Active.SetPage TabTabulator + Kontext "TabTabulator" + if TabTabulator.Exists Then + Printlog "- TabTabulator exists" + printlog "close dialog 'Paragraph'" + TabTabulator.Cancel + else + Warnlog "- TabTabulator does not exist" + end if if (UCase(gApplication)) = "IMPRESS" then ' IMPRESS only - '/// if the Application is Impress: ///' + printlog "if the Application is Impress:" Kontext "TextObjectbar" - '/// click button 'Numbering Symbols' ///' - OutlineBullet.Click - kontext - if active.exists (5) then - messagebox.SetPage TabOptionenNumerierung - kontext "TabOptionenNumerierung" - '/// cancel dialog 'Numbering/Bullets' ///' - if (TabOptionenNumerierung.exists (5) ) then - Printlog "Numbering/Bullets window came up :-)" - sleep 2 - TabOptionenNumerierung.cancel - else - warnlog "no Numbering/Bullets window came up :-(" - end if + printlog "click button 'Numbering Symbols'" + OutlineBullet.Click + kontext + if active.exists (5) then + messagebox.SetPage TabOptionenNumerierung + kontext "TabOptionenNumerierung" + printlog "cancel dialog 'Numbering/Bullets'" + if (TabOptionenNumerierung.exists (5) ) then + Printlog "Numbering/Bullets window came up :-)" sleep 2 - else - warnlog "no Numbering/Bullets window came up :-( 2" - end if + TabOptionenNumerierung.cancel + else + warnlog "no Numbering/Bullets window came up :-(" + end if + sleep 2 + else + warnlog "no Numbering/Bullets window came up :-( 2" + end if - Printlog "-change order of outline points" - sleep 3 - '/// View->Master View->Outline View ///' - ViewWorkspaceOutlineView - WaitSlot (2000) 'sleep (3) - Kontext "DocumentImpressOutlineView" - sleep 1 - '/// type something ///' - DocumentImpressOutlineView.TypeKeys "Bla bla bla <RETURN><TAB>bla bla bla bla bla <MOD1 SHIFT LEFT>" - sleep 1 - Kontext "TextObjectbar" - '/// click button 'Promote' ///' - HierachieRunter.Click - sleep 1 - Printlog "- Move back down" - '/// click button 'Denote' ///' - HierachieHoch.Click - sleep 1 - '/// click button 'Denote' ///' - HierachieHoch.Click - sleep 1 - Printlog "- Move paragraph up" - '/// click button 'Move Up', twice to get two slides ///' - AbsatzHoch.Click - sleep 1 - Printlog "- move paragraph back down and switch to drawing view" - '/// click button 'Move Down' ///' - AbsatzRunter.Click - sleep 1 + Printlog "-change order of outline points" + sleep 3 + printlog "View->Master View->Outline View" + ViewWorkspaceOutlineView + WaitSlot (2000) 'sleep (3) + Kontext "DocumentImpressOutlineView" + sleep 1 + printlog "type something" + DocumentImpressOutlineView.TypeKeys "Bla bla bla <RETURN><TAB>bla bla bla bla bla <MOD1 SHIFT LEFT>" + sleep 1 + Kontext "TextObjectbar" + printlog "click button 'Promote'" + HierachieRunter.Click + sleep 1 + Printlog "- Move back down" + printlog "click button 'Denote'" + HierachieHoch.Click + sleep 1 + printlog "click button 'Denote'" + HierachieHoch.Click + sleep 1 + Printlog "- Move paragraph up" + printlog "click button 'Move Up', twice to get two slides" + AbsatzHoch.Click + sleep 1 + Printlog "- move paragraph back down and switch to drawing view" + printlog "click button 'Move Down'" + AbsatzRunter.Click + sleep 1 Kontext "Vorschau" if Vorschau.Exists then @@ -324,80 +316,79 @@ testcase tiTextToolbar else ' DRAW only Kontext "TextObjectbar" - Printlog "- Double" - '/// click button 'Double' ///' - LineSpacing2.Click - sleep 2 + Printlog "- Double" + printlog "click button 'Double'" + LineSpacing2.Click + sleep 2 Kontext "TextObjectbar" - Printlog "- 1.5 lines" - '/// click button '1.5 lines' ///' - LineSpacing15.Click - sleep 2 + Printlog "- 1.5 lines" + printlog "click button '1.5 lines'" + LineSpacing15.Click + sleep 2 Kontext "TextObjectbar" - Printlog "- Single" - '/// click button 'Single' ///' - LineSpacing1.Click - sleep 2 + Printlog "- Single" + printlog "click button 'Single'" + LineSpacing1.Click + sleep 2 end if - '/// Check if the bar is there. If not - wait for maximum 10 seconds) + printlog "Check if the bar is there. If not - wait for maximum 10 seconds)" iWaitIndex = 0 Kontext "TextObjectbar" - do while TextObjectbar.isEnabled = FALSE AND iWaitIndex < 10 - sleep(1) - iWaitIndex = iWaitIndex + 1 - loop - if TextObjectbar.isEnabled = FALSE AND iWaitIndex = 10 then - warnlog "Dialogue TextObjectbar didnt work. Ending testcase." - Call hCloseDocument - goto endsub - end if - '/// Reset the original value of the Font spacing-buttons ///' - sleep 2 + do while TextObjectbar.isEnabled = FALSE AND iWaitIndex < 10 + sleep(1) + iWaitIndex = iWaitIndex + 1 + loop + if TextObjectbar.isEnabled = FALSE AND iWaitIndex = 10 then + warnlog "Dialogue TextObjectbar didnt work. Ending testcase." + Call hCloseDocument + goto endsub + end if + printlog "Reset the original value of the Font spacing-buttons" + sleep 2 Kontext "TextObjectbar" - TextObjectbar.OpenContextMenu - sleep 2 - hMenuselectNr (1) - sleep 2 - hMenuItemUnCheck (13) - sleep 2 - TextObjectbar.OpenContextMenu - sleep 2 - hMenuselectNr (1) - sleep 2 - hMenuItemUnCheck (14) - sleep 2 - '/// Close the TextFormatting Toolbar ///' - ViewToolbarsTextFormatting - WaitSlot (2000) 'sleep 1 - '/// Clear the document from content ///' + TextObjectbar.OpenContextMenu + sleep 2 + hMenuselectNr (1) + sleep 2 + hMenuItemUnCheck (13) + sleep 2 + TextObjectbar.OpenContextMenu + sleep 2 + hMenuselectNr (1) + sleep 2 + hMenuItemUnCheck (14) + sleep 2 + printlog "Close the TextFormatting Toolbar" + ViewToolbarsTextFormatting + WaitSlot (2000) 'sleep 1 + printlog "Clear the document from content" if (gApplication = "IMPRESS") then Kontext "DocumentImpressOutlineView" - DocumentImpressOutlineView.TypeKeys "<ESCAPE>" - EditSelectAll - DocumentImpressOutlineView.TypeKeys "<DELETE>" - sleep (3) - ViewWorkspaceDrawingView + DocumentImpressOutlineView.TypeKeys "<ESCAPE>" + EditSelectAll + DocumentImpressOutlineView.TypeKeys "<DELETE>" + sleep (3) + ViewWorkspaceDrawingView Kontext "DocumentImpress" - WaitSlot (2000) 'sleep 1 - DocumentImpress.TypeKeys "<ESCAPE>" - EditSelectAll - DocumentImpress.TypeKeys "<DELETE>" + WaitSlot (2000) 'sleep 1 + DocumentImpress.TypeKeys "<ESCAPE>" + EditSelectAll + DocumentImpress.TypeKeys "<DELETE>" else Kontext "DocumentDraw" - DocumentDraw.TypeKeys "<ESCAPE>" - EditSelectAll - DocumentDraw.TypeKeys "<DELETE>" + DocumentDraw.TypeKeys "<ESCAPE>" + EditSelectAll + DocumentDraw.TypeKeys "<DELETE>" end if Printlog "Test ended." - - '/// close application ///' + printlog "close application" Call hCloseDocument -endcase +endcase 'tiTextToolbar -'------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------' +'-------------------------------------------------------------------------------' testcase tiDrawObjectBar Dim a as string @@ -405,764 +396,755 @@ testcase tiDrawObjectBar Dim i as integer Dim x as integer - '/// open application ///' + printlog "open application" Call hNewDocument - - '/// create rectangle to test the part for draw objects ///' + printlog "create rectangle to test the part for draw objects" Call hRechteckErstellen (20,20,70,70) sleep 1 - '--------------------------- format line ------------------------ Printlog "- call format line using graphic object toolbar" Kontext "DrawingObjectbar" - '/// Check if the Graphic-Toolbar is there. Which it should be. ///' - '/// If it's not - then we call it from the View-Toolbars ///' - if DrawingObjectbar.Exists = FALSE then - ViewToolbarsGraphic - end if - if DrawingObjectbar.Exists = FALSE then - warnlog "Drawing-Objectbar should have been opened, but wasnt" - ViewToolbarsGraphic - end if - - sleep 3 - '/// click button 'line' on 'Object Toolbar' ///' - Linie.Click - sleep 2 - Kontext - Active.SetPage TabLinie - Kontext "TabLinie" - if TabLinie.Exists Then - '/// cancel dialog 'line' ///' - TabLinie.Cancel - Printlog "- TabLinie exists " - else - Warnlog "- TabLinie does not exist" - end if + printlog "Check if the Graphic-Toolbar is there. Which it should be." + printlog "If it's not - then we call it from the View-Toolbars" + if DrawingObjectbar.Exists = FALSE then + ViewToolbarsGraphic + end if + if DrawingObjectbar.Exists = FALSE then + warnlog "Drawing-Objectbar should have been opened, but wasnt" + ViewToolbarsGraphic + end if + sleep 3 + printlog "click button 'line' on 'Object Toolbar'" + Linie.Click + sleep 2 + Kontext + Active.SetPage TabLinie + Kontext "TabLinie" + if TabLinie.Exists Then + printlog "cancel dialog 'line'" + TabLinie.Cancel + Printlog "- TabLinie exists " + else + Warnlog "- TabLinie does not exist" + end if '--------------------------- Linienendenstil -------------------- Printlog "- Style of line ends" Kontext "DrawingObjectbar" - sleep 1 - '/// click button 'Arrow Style' and tearoff the box ///' - Linienendenstil.TearOff - sleep 2 - Kontext "Linienenden" - if Linienenden.Exists Then - Printlog "- dialog exists" - '/// close toolbox 'arrowheads' ///' - Linienenden.Close - else - Warnlog "- Arrowheads does not exist" - end if + sleep 1 + printlog "click button 'Arrow Style' and tearoff the box" + Linienendenstil.TearOff + sleep 2 + Kontext "Linienenden" + if Linienenden.Exists Then + Printlog "- dialog exists" + printlog "close toolbox 'arrowheads'" + Linienenden.Close + else + Warnlog "- Arrowheads does not exist" + end if '--------------------------- Linienstil ------------------------- Printlog "- choose style of lines using graphic object toolbar" Kontext "DrawingObjectbar" - sleep 1 - '/// select 2nd entry from the top in listbox 'Line Style' ///' - Linienstil.Select 2 - Printlog Linienstil.GetSelText + " chosen" - '/// select last entry in listbox 'Line Style' ///' - Linienstil.Select Linienstil.GetItemCount - Printlog Linienstil.GetSelText + " chosen" - sleep 2 + sleep 1 + printlog "select 2nd entry from the top in listbox 'Line Style'" + Linienstil.Select 2 + Printlog Linienstil.GetSelText + " chosen" + printlog "select last entry in listbox 'Line Style'" + Linienstil.Select Linienstil.GetItemCount + Printlog Linienstil.GetSelText + " chosen" + sleep 2 '--------------------------- Linienbreite------------------------ Printlog "- check style of lines using graphic object toolbar" Kontext "DrawingObjectbar" - sleep 1 - a = Linienbreite.GetText - SetClipboard a - sleep 1 - '/// set 'Line Width' to "0,5" ///' - Linienbreite.SetText "0,5" - sleep 2 - '/// check if the value is accepted or not ///' - if Linienbreite.GetText = a Then - Warnlog "- changes in edit field did not happen; is: '"+Linienbreite.GetText+"', should be : '"+"0,5"+"'" - else - Printlog "- Width of lines changed" - end if + sleep 1 + a = Linienbreite.GetText + SetClipboard a + sleep 1 + printlog "set 'Line Width' to 0,5" + Linienbreite.SetText "0,5" + sleep 2 + printlog "check if the value is accepted or not" + if Linienbreite.GetText = a Then + Warnlog "- changes in edit field did not happen; is: '"+Linienbreite.GetText+"', should be : '"+"0,5"+"'" + else + Printlog "- Width of lines changed" + end if '--------------------------- Linienfarbe ------------------------ Printlog "- change line color" Kontext "DrawingObjectbar" - sleep 1 - Zaehler = Linienfarbe.GetItemCount - randomize - i = Int(Zaehler*Rnd+1) - '/// select some entry in the listbox 'Line Color' ///' - Linienfarbe.Select i - Printlog Linienfarbe.GetSelText + " chosen" + sleep 1 + Zaehler = Linienfarbe.GetItemCount + randomize + i = Int(Zaehler*Rnd+1) + printlog "select some entry in the listbox 'Line Color'" + Linienfarbe.Select i + Printlog Linienfarbe.GetSelText + " chosen" '--------------------------- Flaechenformatierung --------------- Printlog "- Call Format area using graphic object toolbar" Kontext "DrawingObjectbar" - sleep 1 - '/// click button 'Area' ///' - try - Flaeche.Click - catch - printlog "clicking on area took ages :-(" - endcatch - sleep 5 - Kontext - Active.SetPage TabArea - Kontext "TabArea" - if TabArea.Exists Then - Printlog "- TabArea exists " - '/// cancel dialog 'Area' ///' - TabArea.Cancel - else - Warnlog "- TabArea does not exist" - end if + sleep 1 + printlog "click button 'Area'" + try + Flaeche.Click + catch + printlog "clicking on area took ages :-(" + endcatch + sleep 5 + Kontext + Active.SetPage TabArea + Kontext "TabArea" + if TabArea.Exists Then + Printlog "- TabArea exists " + printlog "cancel dialog 'Area'" + TabArea.Cancel + else + Warnlog "- TabArea does not exist" + end if '--- sleep 1 Kontext "DrawingObjectbar" + sleep 1 + x = AreaStyle.GetItemCount + i = 1 + for i = i to x + AreaStyle.Select i + Printlog "Area Style: (" + i + "/" + x + ") - " + AreaStyle.GetSelText sleep 1 - x = AreaStyle.GetItemCount - i = 1 - for i = i to x - AreaStyle.Select i - Printlog "Area Style: (" + i + "/" + x + ") - " + AreaStyle.GetSelText - sleep 1 - '/// for every item in the listbox 'Area Style' select the last item in the listbox 'Area Filling' ///' - if AreaStyle.GetSelIndex > 1 then - Printlog " Area Filling " + AreaFilling.GetSelIndex + " - " + AreaFilling.GetItemCount - if (i <> 1) AND (AreaFilling.GetItemCount <> 0) then - if (AreaFilling.GetSelIndex = 0) AND (AreaFilling.GetItemCount > 0) then - printlog "default item is 0 => means nothing; NO BUG! 100909" - end if - AreaFilling.Select (AreaFilling.GetItemCount) - Printlog " Selected: " + AreaFilling.GetSelIndex + " - " + AreaFilling.GetSelText + printlog "for every item in the listbox 'Area Style' select the last item in the listbox 'Area Filling'" + if AreaStyle.GetSelIndex > 1 then + Printlog " Area Filling " + AreaFilling.GetSelIndex + " - " + AreaFilling.GetItemCount + if (i <> 1) AND (AreaFilling.GetItemCount <> 0) then + if (AreaFilling.GetSelIndex = 0) AND (AreaFilling.GetItemCount > 0) then + printlog "default item is 0 => means nothing; NO BUG! 100909" end if + AreaFilling.Select (AreaFilling.GetItemCount) + Printlog " Selected: " + AreaFilling.GetSelIndex + " - " + AreaFilling.GetSelText end if - next i + end if + next i '---------------------------- Schatten -------------------------- Printlog "- Assign shadow using graphic object toolbar" Kontext "DrawingObjectbar" - sleep 1 - '/// click button 'Shadow' ///' - Schatten.Click - sleep 1 - Printlog "- shadow assigned" + sleep 1 + printlog "click button 'Shadow'" + Schatten.Click + sleep 1 + Printlog "- shadow assigned" '---------------------------- Praesentationsflyer --------------- - '/// if Application is Impress: ///' - if (UCase(gApplication)) = "IMPRESS" then ' IMPRESS only - Printlog "- Call presentation flyer" - Kontext "CommonTaskbar" ' first check , if presentation flyer is up! if not -> make it up :-) - '///+ if 'Presentation Box' is not visible, click button 'Presentation Box on/off' ///' - if CommonTaskbar.Exists Then - printlog "- flyer is already visible :-)" - else - printlog "- flyer wasn't visible :-( -will be now!" - Kontext "DrawingObjectbar" - sleep 1 - ViewToolbarsPresentation ' put it up again! - end if - end if - '/// Make sure the Graphics-Toolbar is visible ///' - if ((UCase(gApplication)) = "IMPRESS") then ' IMPRESS only + printlog "if Application is Impress:" + if (UCase(gApplication)) = "IMPRESS" then ' IMPRESS only + Printlog "- Call presentation flyer" + Kontext "CommonTaskbar" ' first check , if presentation flyer is up! if not -> make it up :-) + printlog "if 'Presentation Box' is not visible, click button 'Presentation Box on/off'" + if CommonTaskbar.Exists Then + printlog "- flyer is already visible :-)" + else + printlog "- flyer wasn't visible :-( -will be now!" Kontext "DrawingObjectbar" - if DrawingObjectbar.isVisible = FALSE then - ViewToolbarsGraphic - end if + sleep 1 + ViewToolbarsPresentation ' put it up again! end if - '/// close application ///' + end if + printlog "Make sure the Graphics-Toolbar is visible" + if ((UCase(gApplication)) = "IMPRESS") then ' IMPRESS only + Kontext "DrawingObjectbar" + if DrawingObjectbar.isVisible = FALSE then + ViewToolbarsGraphic + end if + end if + printlog "close application" Call hCloseDocument -endcase +endcase 'tiDrawObjectBar -'------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------' +'------------------------------------------------------------------------------' testcase tiGraphicsObjectBar dim i as integer - '/// open application ///' + printlog "open application" Call hNewDocument - '/// insert a graphic "global\input\graf_inp\desp.bmp" ///' + printlog "insert a graphic global\input\graf_inp\desp.bmp" hGrafikeinfuegen ConvertPath (gTesttoolPath + "global\input\graf_inp\desp.bmp") + sleep 1 + Kontext "GraphicObjectbar" + if GraphicObjectbar.Exists = FALSE then + ViewToolbarsPicture + end if + sleep 1 + printlog "click button 'Filter' and tearoff the box in the Objectbar" + Filter.TearOff + sleep 1 + Kontext "GraphicFilterBar" + sleep 1 + Printlog "invert" + printlog "click button 'Invert' in window 'Filters'" + Invert.Click + sleep 3 + Printlog "smooth" + printlog "click button 'Smooth' in window 'Filters'" + Smooth.Click + sleep 3 + Printlog "sharpen" + printlog "click button 'Sharpen' in window 'Filters'" + Sharpen.Click + sleep 3 + Printlog "remove noise" + printlog "click button 'RemoveNoise' in window 'Filters'" + Remove.Click + sleep 3 + Printlog "solarization" + printlog "click button 'Solarization' in window 'Filters'" + Solarization.Click + sleep 3 + Kontext "Solarization" + if Solarization.exists (5) then sleep 1 - Kontext "GraphicObjectbar" - if GraphicObjectbar.Exists = FALSE then - ViewToolbarsPicture - end if - sleep 1 - '/// click button 'Filter' and tearoff the box in the Objectbar///' - Filter.TearOff - sleep 1 - Kontext "GraphicFilterBar" - sleep 1 - Printlog "invert" - '/// click button 'Invert' in window 'Filters' ///' - Invert.Click - sleep 3 - Printlog "smooth" - '/// click button 'Smooth' in window 'Filters' ///' - Smooth.Click - sleep 3 - Printlog "sharpen" - '/// click button 'Sharpen' in window 'Filters' ///' - Sharpen.Click - sleep 3 - Printlog "remove noise" - '/// click button 'RemoveNoise' in window 'Filters' ///' - Remove.Click - sleep 3 - Printlog "solarization" - '/// click button 'Solarization' in window 'Filters' ///' - Solarization.Click - sleep 3 - Kontext "Solarization" - if Solarization.exists (5) then - sleep 1 - Call Dialogtest ( Solarization ) - sleep 1 - '/// press 'more' and 'less' in field 'Trashold Value' on dialog 'Solarization' ///' - Value.More - Value.Less - '/// check checkbox 'Invert' on dialog 'Solarization' ///' - Invert.Check - '/// close dialog 'Solarization' with OK ///' - Solarization.OK - else - warnlog "solarization didn't came up :-(" - end if - sleep 1 - Kontext "GraphicFilterBar" - sleep 1 - Printlog "aging" - '/// click button 'Aging' in window 'Filters' ///' - Aging.Click - Kontext "Aging" - sleep 1 - Call Dialogtest ( Aging ) - '/// press 'more' and 'less' in field 'Aging degree' on dialog 'Aging' ///' - AgingDegree.More - AgingDegree.Less - sleep 1 - '/// close dialog 'Aging' with OK ///' - Aging.OK - sleep 1 - Kontext "GraphicFilterBar" - sleep 1 - Printlog "poster" - '/// click button 'Posterize' in window 'Filters' ///' - Posterize.Click - sleep 1 - Kontext "Posterize" - sleep 1 - Call Dialogtest ( Posterize ) - '/// press 'more' and 'less' in field 'Aging degree' on dialog 'Posterize' ///' - PosterColors.More - PosterColors.Less - sleep 1 - '/// close dialog 'Posterize' with OK ///' - Posterize.OK - sleep 2 - kontext "GraphicFilterBar" - sleep 1 - Printlog "pop" - '/// click button 'PopArt' in window 'Filters' ///' - Art.Click - sleep 3 - Printlog "charcoal" - '/// click button 'CharcoalSketch' in window 'Filters' ///' - CharcoalSketch.Click - sleep 3 - Printlog "relief" - '/// click button 'Relief' in window 'Filters' ///' - Relief.Click - Kontext "Relief" - sleep 1 - Call Dialogtest ( Relief ) - LightSource.TypeKeys "<left><up>" - '/// close dialog 'Relief' with OK ///' - Relief.OK - sleep 3 - Kontext "GraphicFilterBar" - Printlog "mos" - '/// click button 'Mosaic' in window 'Filters' ///' - Mosaic.Click - sleep 1 - Kontext "Mosaic" - sleep 1 - Call Dialogtest ( Mosaic ) - '/// press 'more' and 'less' in field 'Width' on dialog 'Mosaic' ///' - Width.More - Width.Less - '/// press 'more' and 'less' in field 'Height' on dialog 'Mosaic' ///' - Height.More - Height.Less - '/// check checkbox 'Enhance Edges' on dialog 'Mosaic' ///' - EnhanceEdges.Check - '/// close dialog 'Mosaic' with OK ///' - Mosaic.OK - sleep 3 - Kontext "GraphicFilterBar" - '/// close dialog 'Filters' ///' - GraphicFilterBar.Close - - Kontext "GraphicObjectbar" - if GraphicObjectbar.Exists = FALSE then ViewToolbarsPicture - sleep 1 - '/// select every entry in the listbox 'Graphics mode' ///' - for i = 1 to Grafikmodus.GetItemCount - Grafikmodus.select i - sleep 1 - next i - - '/// Click on the icon for 'ColorSettings' to open the colorbar ///' - ColorSettings.Click - Kontext "ColorBar" - sleep (2) - - '/// press 'more' and 'less' in field 'Red' on colorbar ///' - try - Rotanteil.More - Rotanteil.Less - catch - warnlog "not working from testtool redvalue "+ rotanteil.GetRT - endcatch - '/// press 'more' and 'less' in field 'Green' on colorbar ///' - try - Gruenanteil.More - Gruenanteil.Less - catch - warnlog "not working from testtool Greenvalue." - endcatch - '/// press 'more' and 'less' in field 'Blue' on colorbar ///' - try - Blauanteil.More - Blauanteil.Less - catch - warnlog "not working from testtool Bluevalue." - endcatch - '/// press 'more' and 'less' in field 'Brightness' on colorbar ///' - try - Helligkeit.More - Helligkeit.Less - catch - warnlog "not working from testtool Brightness." - endcatch - '/// press 'more' and 'less' in field 'Contrast' on colorbar ///' - try - Kontrast.More - Kontrast.Less - catch - warnlog "not working from testtool Contrast." - endcatch - '/// press 'more' and 'less' in field 'Gamma' on colorbar ///' - try - Gamma.More - Gamma.Less - catch - warnlog "not working from testtool Gamma." - endcatch - - ColorBar.Close - Kontext "GraphicObjectbar" - - '/// press 'more' and 'less' in field 'Transparency' on objectbar ///' - try - Transparenz.More - Transparenz.Less - catch - warnlog "Not working from testtool Transparency." - endcatch - - '/// press button 'Crop' on objectbar ///' - Crop.click - '/// Opening Dialog via Slot - FormatCropPicture - - kontext "TabZuschneiden" - '/// check radiobutton 'Keep scale' on dialog 'Crop' ///' - GroesseBeibehalten.Check - '/// check radiobutton 'Keep Image Size' on dialog 'Crop' ///' - MassstabBeibehalten.Check - '/// press 'more' and 'less' in field 'Left' in section 'Crop' on dialog 'Crop' ///' - Links.More - Links.Less - '/// press 'more' and 'less' in field 'Right' in section 'Crop' on dialog 'Crop' ///' - Rechts.More - Rechts.Less - '/// press 'more' and 'less' in field 'Top' in section 'Crop' on dialog 'Crop' ///' - Oben.More - Oben.Less - '/// press 'more' and 'less' in field 'Bottom' in section 'Crop' on dialog 'Crop' ///' - Unten.More - Unten.Less - '/// press 'more' and 'less' in field 'Width' in section 'Scale' on dialog 'Crop' ///' - MassstabBreite.More - MassstabBreite.Less - '/// press 'more' and 'less' in field 'Height' in section 'Scale' on dialog 'Crop' ///' - MassstabHoehe.More - MassstabHoehe.Less - '/// press 'more' and 'less' in field 'Width' in section 'Image size' on dialog 'Crop' ///' - GroesseBreite.More - GroesseBreite.Less - '/// press 'more' and 'less' in field 'Height' in section 'Image size' on dialog 'Crop' ///' - GroesseHoehe.More - GroesseHoehe.Less - '/// click button 'Original Size' on dialog 'Crop' ///' - Originalgroesse.Click - '/// cancel dialog 'Crop' ///' - TabZuschneiden.Cancel + Call Dialogtest ( Solarization ) + sleep 1 + printlog " press 'more' and 'less' in field 'Trashold Value' on dialog 'Solarization'" + Value.More + Value.Less + printlog "check checkbox 'Invert' on dialog 'Solarization'" + Invert.Check + printlog "close dialog 'Solarization' with OK" + Solarization.OK + else + warnlog "solarization didn't came up :-(" + end if + sleep 1 + Kontext "GraphicFilterBar" + sleep 1 + Printlog "aging" + printlog "click button 'Aging' in window 'Filters'" + Aging.Click + Kontext "Aging" + sleep 1 + Call Dialogtest ( Aging ) + printlog " press 'more' and 'less' in field 'Aging degree' on dialog 'Aging'" + AgingDegree.More + AgingDegree.Less + sleep 1 + printlog "close dialog 'Aging' with OK" + Aging.OK + sleep 1 + Kontext "GraphicFilterBar" + sleep 1 + Printlog "poster" + printlog "click button 'Posterize' in window 'Filters'" + Posterize.Click + sleep 1 + Kontext "Posterize" + sleep 1 + Call Dialogtest ( Posterize ) + printlog " press 'more' and 'less' in field 'Aging degree' on dialog 'Posterize'" + PosterColors.More + PosterColors.Less + sleep 1 + printlog "close dialog 'Posterize' with OK" + Posterize.OK + sleep 2 + kontext "GraphicFilterBar" + sleep 1 + Printlog "pop" + printlog "click button 'PopArt' in window 'Filters'" + Art.Click + sleep 3 + Printlog "charcoal" + printlog "click button 'CharcoalSketch' in window 'Filters'" + CharcoalSketch.Click + sleep 3 + Printlog "relief" + printlog "click button 'Relief' in window 'Filters'" + Relief.Click + Kontext "Relief" + sleep 1 + Call Dialogtest ( Relief ) + LightSource.TypeKeys "<left><up>" + printlog "close dialog 'Relief' with OK" + Relief.OK + sleep 3 + Kontext "GraphicFilterBar" + Printlog "mos" + printlog "click button 'Mosaic' in window 'Filters'" + Mosaic.Click + sleep 1 + Kontext "Mosaic" + sleep 1 + Call Dialogtest ( Mosaic ) + printlog " press 'more' and 'less' in field 'Width' on dialog 'Mosaic'" + Width.More + Width.Less + printlog " press 'more' and 'less' in field 'Height' on dialog 'Mosaic'" + Height.More + Height.Less + printlog " check checkbox 'Enhance Edges' on dialog 'Mosaic'" + EnhanceEdges.Check + printlog "close dialog 'Mosaic' with OK" + Mosaic.OK + sleep 3 + Kontext "GraphicFilterBar" + printlog "close dialog 'Filters'" + GraphicFilterBar.Close + + Kontext "GraphicObjectbar" + if GraphicObjectbar.Exists = FALSE then ViewToolbarsPicture + sleep 1 + printlog "select every entry in the listbox 'Graphics mode'" + for i = 1 to Grafikmodus.GetItemCount + Grafikmodus.select i + sleep 1 + next i - '/// close application ///' + printlog " Click on the icon for 'ColorSettings' to open the colorbar" + ColorSettings.Click + Kontext "ColorBar" + sleep (2) + printlog " press 'more' and 'less' in field 'Red' on colorbar" + try + Rotanteil.More + Rotanteil.Less + catch + warnlog "not working from testtool redvalue "+ rotanteil.GetRT + endcatch + printlog " press 'more' and 'less' in field 'Green' on colorbar" + try + Gruenanteil.More + Gruenanteil.Less + catch + warnlog "not working from testtool Greenvalue." + endcatch + printlog " press 'more' and 'less' in field 'Blue' on colorbar" + try + Blauanteil.More + Blauanteil.Less + catch + warnlog "not working from testtool Bluevalue." + endcatch + printlog " press 'more' and 'less' in field 'Brightness' on colorbar" + try + Helligkeit.More + Helligkeit.Less + catch + warnlog "not working from testtool Brightness." + endcatch + printlog " press 'more' and 'less' in field 'Contrast' on colorbar" + try + Kontrast.More + Kontrast.Less + catch + warnlog "not working from testtool Contrast." + endcatch + printlog " press 'more' and 'less' in field 'Gamma' on colorbar" + try + Gamma.More + Gamma.Less + catch + warnlog "not working from testtool Gamma." + endcatch + + ColorBar.Close + Kontext "GraphicObjectbar" + + printlog " press 'more' and 'less' in field 'Transparency' on objectbar" + try + Transparenz.More + Transparenz.Less + catch + warnlog "Not working from testtool Transparency." + endcatch + + printlog "press button 'Crop' on objectbar" + Crop.click + printlog "Opening Dialog via Slot" + FormatCropPicture + + kontext "TabZuschneiden" + printlog " check radiobutton 'Keep scale' on dialog 'Crop'" + GroesseBeibehalten.Check + printlog " check radiobutton 'Keep Image Size' on dialog 'Crop'" + MassstabBeibehalten.Check + printlog " press 'more' and 'less' in field 'Left' in section 'Crop' on dialog 'Crop'" + Links.More + Links.Less + printlog " press 'more' and 'less' in field 'Right' in section 'Crop' on dialog 'Crop'" + Rechts.More + Rechts.Less + printlog " press 'more' and 'less' in field 'Top' in section 'Crop' on dialog 'Crop'" + Oben.More + Oben.Less + printlog " press 'more' and 'less' in field 'Bottom' in section 'Crop' on dialog 'Crop'" + Unten.More + Unten.Less + printlog " press 'more' and 'less' in field 'Width' in section 'Scale' on dialog 'Crop'" + MassstabBreite.More + MassstabBreite.Less + printlog " press 'more' and 'less' in field 'Height' in section 'Scale' on dialog 'Crop'" + MassstabHoehe.More + MassstabHoehe.Less + printlog " press 'more' and 'less' in field 'Width' in section 'Image size' on dialog 'Crop'" + GroesseBreite.More + GroesseBreite.Less + printlog " press 'more' and 'less' in field 'Height' in section 'Image size' on dialog 'Crop'" + GroesseHoehe.More + GroesseHoehe.Less + printlog " click button 'Original Size' on dialog 'Crop'" + Originalgroesse.Click + printlog "cancel dialog 'Crop'" + TabZuschneiden.Cancel + + printlog "close application" Call hCloseDocument -endcase +endcase 'tiGraphicsObjectBar -'------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------' +'-------------------------------------------------------------------------------' testcase tiGluepointToolbar - '/// open application ///' + printlog "open application" Call hNewDocument - '/// create 2 rectangles ///' + printlog "create 2 rectangles" Call hRechteckErstellen 20,20,40,40 Call hRechteckErstellen 60,60,80,80 sleep 2 - '/// View->Toolbars->Option Bar ///' + printlog "View->Toolbars->Option Bar" ViewToolbarsOptionbar - '/// at the bottom of the office has a toolbar to appear ///' + printlog "at the bottom of the office has a toolbar to appear" sleep 2 Kontext "Optionsbar" + if Optionsbar.Exists = False Then + ViewToolbarsOptionbar + Kontext "Optionsbar" if Optionsbar.Exists = False Then - ViewToolbarsOptionbar - Kontext "Optionsbar" - if Optionsbar.Exists = False Then - warnlog "Can't open Optionsbar." - end if + warnlog "Can't open Optionsbar." end if + end if + sleep 2 + Kontext "Toolbar" + sleep 1 + printlog "click button 'Connector' on Toolbar" + Verbinder.Click + printlog "make a line with the mouse" + gMouseMove 30,30,70,70 + sleep 3 + Kontext "Toolbar" + GluePoints.Click + sleep 1 + printlog "open Glue Points Toolbar" + Kontext "Gluepointsobjectbar" + if Gluepointsobjectbar.Exists = False Then + ViewToolbarsGluepoints + end if + sleep 3 + '-------------------------------------- Klebepunkt einfuegen ---- + try + printlog "click button 'Insert Glue Point' on Objecttoolbar" + PunkteEinfuegen.Click sleep 2 - Kontext "Toolbar" - sleep 1 - '/// click button 'Connector' on Toolbar ///' - Verbinder.Click - '/// make a line with the mouse ///' - gMouseMove 30,30,70,70 - sleep 3 - Kontext "Toolbar" - GluePoints.Click - sleep 1 - '/// open Glue Points Toolbar ///' - Kontext "Gluepointsobjectbar" - if Gluepointsobjectbar.Exists = False Then - ViewToolbarsGluepoints - end if - sleep 3 - '-------------------------------------- Klebepunkt einfuegen ---- - try - '/// click button 'Insert Glue Point' on Objecttoolbar ///' - PunkteEinfuegen.Click - sleep 2 - '/// click 2 times onto the created line ///' - gMouseClick 25,30 - sleep 1 - gMouseclick 25,30 - Printlog "- insert gluepoint works" - catch - Warnlog "- gluepoint could not be insert. Following errors might have their reason here" - endcatch - sleep 3 - Kontext "Gluepointsobjectbar" - - '-------------------------------------- Links ------------------- - try - '/// click button 'Exit Direction Left' on Objecttoolbar ///' - Links.Click - Printlog "- gluepoint left works" - catch - Warnlog "- gluepoint left does not work" - endcatch - sleep 1 - '-------------------------------------- Rechts ------------------ - try - '/// click button 'Exit Direction Right' on Objecttoolbar ///' - Rechts.Click - Printlog "- gluepoint right works" - catch - Warnlog "- gluepoint right does not work" - endcatch - sleep 1 - '-------------------------------------- Oben -------------------- - try - '/// click button 'Exit Direction Top' on Objecttoolbar ///' - Oben.Click - Printlog "- gluepoint top works" - catch - Warnlog "- gluepoint top does not work" - endcatch - sleep 1 - '-------------------------------------- Unten ------------------- - try - '/// click button 'Exit Direction Bottom' on Objecttoolbar ///' - Unten.Click - Printlog "- gluepoint bottom works" - catch - Warnlog "- gluepoint bottom does not work" - endcatch - sleep 1 - '---------------------- Position an Objekt anpassen ------------- - try - '/// click button 'Glue Point Relative' on Objecttoolbar ///' - PositionAnObjektAnpassen.Click - Printlog "- align position to object works" - gMouseClick 25,30 ' if you don't click onto an existing point, the state changes back :-[ - catch - Warnlog "- align position to object does not work" - endcatch - Kontext "Gluepointsobjectbar" - sleep 1 - '------------------------------------- Horizontal links --------- - if PositionAnObjektAnpassen.exists then printlog "PositionAnObjektAnpassen = Exists" - if PositionAnObjektAnpassen.GetState(2) <> 0 then PositionAnObjektAnpassen.Click ' make unpressed! - '0 = not pressed. 1 = pressed. - sleep 2 - try - Kontext "Gluepointsobjectbar" - '/// click button 'Glue Point Horizontal Left' on Objecttoolbar ///' - HorizontalLinks.Click - Printlog "- align horizontal left works" - catch - Warnlog "- align horizontal left does not work" - PositionAnObjektAnpassen.Click ' that's the middle button, it has to be UP/not activated! - for i = 1 to Gluepointsobjectbar.GetItemCount - if (Gluepointsobjectbar.GetState ( i, 0 ) <> 0 ) then ' is no seperator - printlog "----------------------------------------------------------------------" - printlog "helpid : " + Gluepointsobjectbar.Getstate ( i, 0 ) + " number in row: " + i - printlog "itemtype: " + Gluepointsobjectbar.GetState ( i, 1 ) - printlog "state : " + Gluepointsobjectbar.GetState ( i, 2 ) - printlog "----------------------------------------------------------------------" - end if - next i - endcatch - sleep 2 - '------------------------------------- Horizontal rechts -------- - try - '/// click button 'Glue Point Horizontal Right' on Objecttoolbar ///' - HorizontalRechts.Click - Printlog "- Align horizontal right does work" - catch - Warnlog "- Align horizontal right does notwork" - endcatch - sleep 1 - '------------------------------------- Horizontal zentriert ----- - try - '/// click button 'Glue Point Horizontal Center' on Objecttoolbar ///' - HorizontalZentriert.Click - Printlog "- align horizontal center does work" - catch - Warnlog "- align horizontal center does work" - endcatch - sleep 1 - '------------------------------------- Vertikal oben ------------ - try - '/// click button 'Glue Point Vertical Top' on Objecttoolbar ///' - VertikalOben.Click - sleep 1 - Printlog "- Align vertical top does work" - catch - Warnlog "- Align vertical top does not work" - endcatch - '------------------------------------- Vertikal unten ----------- - try - '/// click button 'Glue Point Vertical Bottom' on Objecttoolbar ///' - VertikalUnten.Click - sleep 1 - printlog "- Align vertical bottom does work" - catch - Warnlog "- Align vertical bottom does not work" - endcatch - '------------------------------------- Vertikal zentriert ------- - try - '/// click button 'Glue Point Vertical Center' on Objecttoolbar ///' - VertikalZentriert.Click - sleep 1 - Printlog "- Align vertical center does work" - catch - Warnlog "- Align vertical center does not work" - endcatch - - Printlog "- End of testing gluepoints" - - '/// Close the Option Bar via View->Toolbars->Option Bar ///' + printlog "click 2 times onto the created line" + gMouseClick 25,30 + sleep 1 + gMouseclick 25,30 + Printlog "- insert gluepoint works" + catch + Warnlog "- gluepoint could not be insert. Following errors might have their reason here" + endcatch + sleep 3 + Kontext "Gluepointsobjectbar" + + '-------------------------------------- Links ------------------- + try + printlog "click button 'Exit Direction Left' on Objecttoolbar" + Links.Click + Printlog "- gluepoint left works" + catch + Warnlog "- gluepoint left does not work" + endcatch + sleep 1 + '-------------------------------------- Rechts ------------------ + try + printlog "click button 'Exit Direction Right' on Objecttoolbar" + Rechts.Click + Printlog "- gluepoint right works" + catch + Warnlog "- gluepoint right does not work" + endcatch + sleep 1 + '-------------------------------------- Oben -------------------- + try + printlog "click button 'Exit Direction Top' on Objecttoolbar" + Oben.Click + Printlog "- gluepoint top works" + catch + Warnlog "- gluepoint top does not work" + endcatch + sleep 1 + '-------------------------------------- Unten ------------------- + try + printlog "click button 'Exit Direction Bottom' on Objecttoolbar" + Unten.Click + Printlog "- gluepoint bottom works" + catch + Warnlog "- gluepoint bottom does not work" + endcatch + sleep 1 + '---------------------- Position an Objekt anpassen ------------- + try + printlog "click button 'Glue Point Relative' on Objecttoolbar" + PositionAnObjektAnpassen.Click + Printlog "- align position to object works" + gMouseClick 25,30 ' if you don't click onto an existing point, the state changes back :-[ + catch + Warnlog "- align position to object does not work" + endcatch + Kontext "Gluepointsobjectbar" + sleep 1 + '------------------------------------- Horizontal links --------- + if PositionAnObjektAnpassen.exists then printlog "PositionAnObjektAnpassen = Exists" + if PositionAnObjektAnpassen.GetState(2) <> 0 then PositionAnObjektAnpassen.Click ' make unpressed! + '0 = not pressed. 1 = pressed. + sleep 2 + try + Kontext "Gluepointsobjectbar" + printlog "click button 'Glue Point Horizontal Left' on Objecttoolbar" + HorizontalLinks.Click + Printlog "- align horizontal left works" + catch + Warnlog "- align horizontal left does not work" + PositionAnObjektAnpassen.Click ' that's the middle button, it has to be UP/not activated! + for i = 1 to Gluepointsobjectbar.GetItemCount + if (Gluepointsobjectbar.GetState ( i, 0 ) <> 0 ) then ' is no seperator + printlog "----------------------------------------------------------------------" + printlog "helpid : " + Gluepointsobjectbar.Getstate ( i, 0 ) + " number in row: " + i + printlog "itemtype: " + Gluepointsobjectbar.GetState ( i, 1 ) + printlog "state : " + Gluepointsobjectbar.GetState ( i, 2 ) + printlog "----------------------------------------------------------------------" + end if + next i + endcatch + sleep 2 + '------------------------------------- Horizontal rechts -------- + try + printlog "click button 'Glue Point Horizontal Right' on Objecttoolbar" + HorizontalRechts.Click + Printlog "- Align horizontal right does work" + catch + Warnlog "- Align horizontal right does notwork" + endcatch + sleep 1 + '------------------------------------- Horizontal zentriert ----- + try + printlog "click button 'Glue Point Horizontal Center' on Objecttoolbar" + HorizontalZentriert.Click + Printlog "- align horizontal center does work" + catch + Warnlog "- align horizontal center does work" + endcatch + sleep 1 + '------------------------------------- Vertikal oben ------------ + try + printlog "click button 'Glue Point Vertical Top' on Objecttoolbar" + VertikalOben.Click + sleep 1 + Printlog "- Align vertical top does work" + catch + Warnlog "- Align vertical top does not work" + endcatch + '------------------------------------- Vertikal unten ----------- + try + printlog "click button 'Glue Point Vertical Bottom' on Objecttoolbar" + VertikalUnten.Click + sleep 1 + printlog "- Align vertical bottom does work" + catch + Warnlog "- Align vertical bottom does not work" + endcatch + '------------------------------------- Vertikal zentriert ------- + try + printlog "click button 'Glue Point Vertical Center' on Objecttoolbar" + VertikalZentriert.Click + sleep 1 + Printlog "- Align vertical center does work" + catch + Warnlog "- Align vertical center does not work" + endcatch + Printlog "- End of testing gluepoints" + printlog "Close the Option Bar via View->Toolbars->Option Bar" ViewToolbarsOptionbar sleep 2 Kontext "Optionsbar" - if Optionsbar.Exists = True Then - warnlog "Couldnt close Optionsbar." - end if - '/// close application ///' + if Optionsbar.Exists = True Then + warnlog "Couldnt close Optionsbar." + end if + printlog "close application" Call hCloseDocument -endcase +endcase 'tiGluepointToolbar -'------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------' +'----------------------------------------------------------------------------' testcase tdBezierToolbar - '/// Open the Application ///' + printlog "Open the Application" Call hNewDocument - - '/// Create a rectangle. ///' + printlog "Create a rectangle." Call hRechteckErstellen ( 10, 10, 30, 40 ) sleep (1) - - '/// Convert the recttangle to an 'Polygon-object' via the context-menu for the object ///' + printlog "Convert the recttangle to an 'Polygon-object' via the context-menu for the object" Call hOpenContextMenu - Call hMenuSelectNr (11) '/// Convert to ///' - Call hMenuSelectNr (2) '/// Polygon-object ///' + printlog "Convert to" + Call hMenuSelectNr (11) + printlog "Polygon-object" + Call hMenuSelectNr (2) sleep (1) - - '/// In the context-menu, select 'Edit Points" ///' + printlog "In the context-menu, select 'Edit Points" Call hOpenContextMenu - Call hMenuSelectNr (5) '/// Select entry nr 5 (Edit Points) ///' + printlog "Select entry nr 5 (Edit Points)" + Call hMenuSelectNr (5) sleep (2) - Kontext "Bezierobjectbar" + if Bezierobjectbar.Exists <> TRUE then + ViewToolbarsBezier + Sleep (2) if Bezierobjectbar.Exists <> TRUE then - ViewToolbarsBezier - Sleep (2) - if Bezierobjectbar.Exists <> TRUE then - warnlog "Bezierobjectbar did not show up. Check why." - end if + warnlog "Bezierobjectbar did not show up. Check why." end if + end if '----------------------------------- Punkte verschieben ------------------------------------ - '/// Select a part of the object with the keyboard ///' - hTypeKeys "<MOD1 TAB>", 4 '/// Selects the fourth vector. ///' - hTypeKeys "<RIGHT>", 40 '/// Moves the selected vector 40 steps. ///' + printlog "Select a part of the object with the keyboard" + printlog "Selects the fourth vector." + hTypeKeys "<MOD1 TAB>", 4 + printlog "Moves the selected vector 40 steps." + hTypeKeys "<RIGHT>", 40 - '/// The 'Object Toolbar' now changes ///' + printlog "The 'Object Toolbar' now changes" Kontext "Bezierobjectbar" - if Bezierobjectbar.Exists <> TRUE then - ViewToolbarsBezier - Sleep 2 - end if - if Bezierobjectbar.Exists <> TRUE then - Warnlog "The Bezier-Objectbar should have been opened, but wasnt." - ViewToolbarsBezier - Sleep 2 - end if + if Bezierobjectbar.Exists <> TRUE then + ViewToolbarsBezier + Sleep 2 + end if + if Bezierobjectbar.Exists <> TRUE then + Warnlog "The Bezier-Objectbar should have been opened, but wasnt." + ViewToolbarsBezier + Sleep 2 + end if Kontext "Bezierobjectbar" - sleep 1 - Printlog "- Move points" - '/// click button 'Move points' on 'Object Toolbar' ///' - Verschieben.Click - sleep 2 - - hTypeKeys "<MOD1 TAB>" - hTypeKeys "<MOD1 SHIFT SPACE>" '/// Marks the selected vector. ///' - hTypeKeys "<RIGHT>", 20 '/// Moves the vector 20 with "arrow right", twenty times. ///' - - Printlog "- Insert points" - '/// Click button 'Insert points' on 'Object Toolbar' ///' + sleep 1 + Printlog "- Move points" + printlog "click button 'Move points' on 'Object Toolbar'" + Verschieben.Click + sleep 2 + hTypeKeys "<MOD1 TAB>" + printlog "Marks the selected vector." + hTypeKeys "<MOD1 SHIFT SPACE>" + printlog "Moves the vector 20 with arrow right, twenty times." + hTypeKeys "<RIGHT>", 20 + + Printlog "- Insert points" + printlog "Click button 'Insert points' on 'Object Toolbar'" Kontext "Bezierobjectbar" - Einfuegen.Click - sleep 2 - Bezierobjectbar.Move 20, 20 - sleep (1) - Printlog "- Delete points" - - '/// Select another part of the object with spanning a selection with the mouse ///' - gMouseMove 25,25,45,45 - - hTypeKeys "<MOD1 TAB>", 2 '/// Select the second next vector. ///' - hTypeKeys "<MOD1 SHIFT SPACE>" '/// Mark the selected vector. ///' - hTypeKeys "<MOD1 TAB><SHIFT SPACE>" '/// Select and mark the next vector. ///' + Einfuegen.Click + sleep 2 + Bezierobjectbar.Move 20, 20 + sleep (1) + Printlog "- Delete points" + printlog "Select another part of the object with spanning a selection with the mouse" + gMouseMove 25,25,45,45 + printlog "Select the second next vector." + hTypeKeys "<MOD1 TAB>", 2 + printlog "Mark the selected vector." + hTypeKeys "<MOD1 SHIFT SPACE>" + printlog "Select and mark the next vector." + hTypeKeys "<MOD1 TAB><SHIFT SPACE>" - sleep 2 + sleep 2 Kontext "Bezierobjectbar" - sleep 2 - Printlog "- Convert into curve" - '/// click button 'convert to curve' on 'Object Toolbar' ///' - InKurve.Click - sleep 2 - Printlog "- Place edge point" - '/// click button 'corner point' on 'Object Toolbar' ///' - Ecke.Click - sleep 2 - Printlog "- Smooth transition" - '/// click button 'smooth transition' on 'Object Toolbar' ///' - Glatt.Click - sleep 2 - Printlog "- Symetric transition" - '/// click button 'symmetric transition' on 'Object Toolbar' ///' - Symmetrisch.Click - sleep 2 - - '/// Click button 'Eliminate points' on 'Object Toolbar' ///' + sleep 2 + Printlog "- Convert into curve" + printlog "click button 'convert to curve' on 'Object Toolbar'" + InKurve.Click + sleep 2 + Printlog "- Place edge point" + printlog "click button 'corner point' on 'Object Toolbar'" + Ecke.Click + sleep 2 + Printlog "- Smooth transition" + printlog "click button 'smooth transition' on 'Object Toolbar'" + Glatt.Click + sleep 2 + Printlog "- Symetric transition" + printlog "click button 'symmetric transition' on 'Object Toolbar'" + Symmetrisch.Click + sleep 2 + + printlog "Click button 'Eliminate points' on 'Object Toolbar'" Kontext "Bezierobjectbar" - PunkteReduzieren.Click - sleep 2 - - '/// Mark another point ///' - hTypeKeys "<MOD1 TAB>" - hTypeKeys "<MOD1 SHIFT SPACE>" + PunkteReduzieren.Click + sleep 2 - '/// click button 'split curve' on 'Object Toolbar' ///' + printlog "Mark another point" + hTypeKeys "<MOD1 TAB>" + hTypeKeys "<MOD1 SHIFT SPACE>" + + printlog "click button 'split curve' on 'Object Toolbar'" Kontext "Bezierobjectbar" - try - Auftrennen.Click - catch - Warnlog "- 'Break' could not be executed" - endcatch - sleep 2 + try + Auftrennen.Click + catch + Warnlog "- 'Break' could not be executed" + endcatch + sleep 2 - '/// Mark all points ///' - hTypeKeys "<MOD1 TAB>" - hTypeKeys "<MOD1 A>" + printlog "Mark all points" + hTypeKeys "<MOD1 TAB>" + hTypeKeys "<MOD1 A>" - Printlog "- Close bezier" + Printlog "- Close bezier" Kontext "Bezierobjectbar" + try + printlog "click button 'close bezier' on 'Object Toolbar'" + Schliessen.Click + catch + InKurve.Click + sleep 2 try - '/// click button 'close bezier' on 'Object Toolbar' ///' Schliessen.Click catch - InKurve.Click - sleep 2 - try - Schliessen.Click - catch - warnlog "Couldn't push button :-( can't reproduce it now, mostly seen on linux, if i loop this test, it happens only 1/5 of the time ... :-)" - endcatch + warnlog "Couldn't push button :-( can't reproduce it now, mostly seen on linux, if i loop this test, it happens only 1/5 of the time ... :-)" endcatch - sleep 2 + endcatch + sleep 2 - '/// Mark all points ///' - hTypeKeys "<MOD1 TAB>" - hTypeKeys "<MOD1 A>" + printlog "Mark all points" + hTypeKeys "<MOD1 TAB>" + hTypeKeys "<MOD1 A>" - '/// Click button 'Delete points' on 'Object Toolbar' ///' + printlog "Click button 'Delete points' on 'Object Toolbar'" Kontext "Bezierobjectbar" - Printlog "- Break curve" - if ( hClickButton( Loeschen ) = -1 ) then - warnlog( "Unable to click button <Loeschen>" ) - endif - 'try - ' Loeschen.Click - ' sleep 2 - 'catch - ' warnlog "Delete didn't work... why?" - 'endcatch + Printlog "- Break curve" + if ( hClickButton( Loeschen ) = -1 ) then + warnlog( "Unable to click button <Loeschen>" ) + endif - '/// Uncheck on the symbol 'Curve' on the toolbar 'Main Toolbar' ///' + printlog "Uncheck on the symbol 'Curve' on the toolbar 'Main Toolbar'" Kontext "Toolbar" - sleep 2 - Toolbar.OpenContextMenu ' Enable forms button in menuebar - sleep 2 - hMenuselectNr (1) - sleep 2 - hMenuItemUnCheck (7) - sleep 2 - '/// Close application ///' + sleep 2 + Toolbar.OpenContextMenu ' Enable forms button in menuebar + sleep 2 + hMenuselectNr (1) + sleep 2 + hMenuItemUnCheck (7) + sleep 2 + printlog "Close application" Call hCloseDocument -endcase +endcase 'tdBezierToolbar -'------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------' +'------------------------------------------------------------------------------
\ No newline at end of file diff --git a/testautomation/graphics/required/includes/global/id_opt_1.inc b/testautomation/graphics/required/includes/global/id_opt_1.inc index 7ca61a8774b5..dcb6c38795bb 100644 --- a/testautomation/graphics/required/includes/global/id_opt_1.inc +++ b/testautomation/graphics/required/includes/global/id_opt_1.inc @@ -32,162 +32,164 @@ '\****************************************************************************** testcase tToolsOptionsDrawGeneral (sApplication as string) - dim irgendwas(9) as boolean - dim iMasseinheit as integer - dim sTabAbstand as string - dim iZeichnungsmasstab as integer - dim sTemp as string - dim iTemp as integer - dim sTemp2 as string - dim iTemp2 as integer - dim sMeasUnit as string - - hNewDocument - - printlog "save states" - ToolsOptions - hToolsOptions (sApplication,"General") - - irgendwas(1) = Schnellbearbeitung.IsChecked - irgendwas(2) = TextbereichSelektierbar.IsChecked - - irgendwas(3) = CacheFuerHintergrund.IsChecked - irgendwas(4) = KopieBeimVerschieben.IsChecked - irgendwas(5) = ObjekteImmerVerschiebbar.IsChecked - - if (gApplication = "DRAW") then - irgendwas(6) = SetzenAufKreis.IsChecked ' DRAW - iZeichnungsmasstab = Zeichnungsmasstab.GetSelIndex ' DRAW - else ' IMPRESS - irgendwas(7) = MitAutopilotStarten.IsChecked - irgendwas(8) = MitAktuellerSeite.IsChecked - irgendwas(9) = AlleAbsatzabstaendeAddieren.IsChecked - endif - - iMasseinheit = Masseinheit.GetSelIndex - sTabAbstand = Tabulatorabstand.GetText - - printlog "all states inverting" + dim irgendwas(9) as boolean + dim iMasseinheit as integer + dim sTabAbstand as string + dim iZeichnungsmasstab as integer + dim sTemp as string + dim iTemp as integer + dim sTemp2 as string + dim iTemp2 as integer + dim sMeasUnit as string - if irgendwas(1) Then Schnellbearbeitung.UnCheck Else Schnellbearbeitung.Check - if irgendwas(2) Then TextbereichSelektierbar.UnCheck Else TextbereichSelektierbar.Check - - if irgendwas(3) Then CacheFuerHintergrund.UnCheck Else CacheFuerHintergrund.Check - if irgendwas(4) Then KopieBeimVerschieben.UnCheck Else KopieBeimVerschieben.Check - if irgendwas(5) Then ObjekteImmerVerschiebbar.UnCheck Else ObjekteImmerVerschiebbar.Check - - Tabulatorabstand.ToMax - sTemp = Tabulatorabstand.GetText - Tabulatorabstand.More + hNewDocument - if (LiberalMeasurement (sTemp,Tabulatorabstand.GetText) <> TRUE) Then Warnlog "Something wrong, please check!" - Tabulatorabstand.SetText (sTabAbstand) + printlog "save states" + ToolsOptions + hToolsOptions (sApplication,"General") - if (gApplication = "DRAW") then - If ( Zeichnungsmasstab.GetItemCount <> iZeichnungsmasstab ) Then Zeichnungsmasstab.Select (Zeichnungsmasstab.GetItemCount) _ - Else Zeichnungsmasstab.Select (1) - iTemp2 = Zeichnungsmasstab.GetSelIndex - if irgendwas(6) Then SetzenAufKreis.UnCheck Else SetzenAufKreis.Check - else ' IMPRESS - if irgendwas(7) Then MitAutopilotStarten.UnCheck Else MitAutopilotStarten.Check - if irgendwas(8) Then MitAktuellerSeite.UnCheck Else MitAktuellerSeite.Check - if irgendwas(9) Then AlleAbsatzabstaendeAddieren.UnCheck Else AlleAbsatzabstaendeAddieren.Check - endif + irgendwas(1) = Schnellbearbeitung.IsChecked + irgendwas(2) = TextbereichSelektierbar.IsChecked - printlog "<Meas.Unit> interacts with <Tap stops> and vice versa" + irgendwas(3) = CacheFuerHintergrund.IsChecked + irgendwas(4) = KopieBeimVerschieben.IsChecked + irgendwas(5) = ObjekteImmerVerschiebbar.IsChecked - If ( Masseinheit.GetItemCount <> iMasseinheit ) Then Masseinheit.Select (Masseinheit.GetItemCount) _ - Else Masseinheit.Select (1) - iTemp = Masseinheit.GetSelIndex + if (gApplication = "DRAW") then + irgendwas(6) = SetzenAufKreis.IsChecked ' DRAW + iZeichnungsmasstab = Zeichnungsmasstab.GetSelIndex ' DRAW + else ' IMPRESS + irgendwas(7) = MitAutopilotStarten.IsChecked + irgendwas(8) = MitAktuellerSeite.IsChecked + irgendwas(9) = AlleAbsatzabstaendeAddieren.IsChecked + endif - sTemp = Tabulatorabstand.GetText - Tabulatorabstand.ToMax - If ( Tabulatorabstand.GetText = sTemp ) Then Tabulatorabstand.ToMin - sTemp = Tabulatorabstand.GetText + iMasseinheit = Masseinheit.GetSelIndex + sTabAbstand = Tabulatorabstand.GetText - Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK + printlog "all states inverting" - printlog "Office quit - start" + if irgendwas(1) Then Schnellbearbeitung.UnCheck Else Schnellbearbeitung.Check + if irgendwas(2) Then TextbereichSelektierbar.UnCheck Else TextbereichSelektierbar.Check - ExitRestartTheOffice - printlog "opening new doc to get the Options" - Call hNewDocument - printlog "checking states" - ToolsOptions - hToolsOptions (sApplication,"General") + if irgendwas(3) Then CacheFuerHintergrund.UnCheck Else CacheFuerHintergrund.Check + if irgendwas(4) Then KopieBeimVerschieben.UnCheck Else KopieBeimVerschieben.Check + if irgendwas(5) Then ObjekteImmerVerschiebbar.UnCheck Else ObjekteImmerVerschiebbar.Check - If ( irgendwas(1) = Schnellbearbeitung.IsChecked ) Then WarnLog "Allow Quick Editing state changed" - If ( irgendwas(2) = TextbereichSelektierbar.IsChecked ) Then WarnLog "Only Text Area Selectable state changed" + Tabulatorabstand.ToMax + sTemp = Tabulatorabstand.GetText + Tabulatorabstand.More - If ( irgendwas(3) = CacheFuerHintergrund.IsChecked ) Then WarnLog "Use Background Cache state changed" - If ( irgendwas(4) = KopieBeimVerschieben.IsChecked ) Then WarnLog "Copy When Moving state changed" - If ( irgendwas(5) = ObjekteImmerVerschiebbar.IsChecked ) Then WarnLog "Objects Always Movable state changed" + if (LiberalMeasurement (sTemp,Tabulatorabstand.GetText) <> TRUE) Then Warnlog "Something wrong, please check!" + Tabulatorabstand.SetText (sTabAbstand) - if (gApplication = "DRAW") then + if (gApplication = "DRAW") then + If ( Zeichnungsmasstab.GetItemCount <> iZeichnungsmasstab ) Then + Zeichnungsmasstab.Select (Zeichnungsmasstab.GetItemCount) _ + Else Zeichnungsmasstab.Select (1) + iTemp2 = Zeichnungsmasstab.GetSelIndex + if irgendwas(6) Then SetzenAufKreis.UnCheck Else SetzenAufKreis.Check + endif + else ' IMPRESS + if irgendwas(7) Then MitAutopilotStarten.UnCheck Else MitAutopilotStarten.Check + if irgendwas(8) Then MitAktuellerSeite.UnCheck Else MitAktuellerSeite.Check + if irgendwas(9) Then AlleAbsatzabstaendeAddieren.UnCheck Else AlleAbsatzabstaendeAddieren.Check + endif + + printlog "<Meas.Unit> interacts with <Tap stops> and vice versa" + + If ( Masseinheit.GetItemCount <> iMasseinheit ) Then Masseinheit.Select (Masseinheit.GetItemCount) _ + Else Masseinheit.Select (1) + iTemp = Masseinheit.GetSelIndex + + sTemp = Tabulatorabstand.GetText + Tabulatorabstand.ToMax + If ( Tabulatorabstand.GetText = sTemp ) Then Tabulatorabstand.ToMin + sTemp = Tabulatorabstand.GetText + + Kontext "ExtrasOptionenDlg" + ExtrasOptionenDlg.OK + + printlog "Office quit - start" + + ExitRestartTheOffice + printlog "opening new doc to get the Options" + Call hNewDocument + printlog "checking states" + ToolsOptions + hToolsOptions (sApplication,"General") + + If ( irgendwas(1) = Schnellbearbeitung.IsChecked ) Then WarnLog "Allow Quick Editing state changed" + If ( irgendwas(2) = TextbereichSelektierbar.IsChecked ) Then WarnLog "Only Text Area Selectable state changed" + + If ( irgendwas(3) = CacheFuerHintergrund.IsChecked ) Then WarnLog "Use Background Cache state changed" + If ( irgendwas(4) = KopieBeimVerschieben.IsChecked ) Then WarnLog "Copy When Moving state changed" + If ( irgendwas(5) = ObjekteImmerVerschiebbar.IsChecked ) Then WarnLog "Objects Always Movable state changed" + + if (gApplication = "DRAW") then If ( Zeichnungsmasstab.GetSelIndex <> iTemp2 ) Then WarnLog "Drawing Scale state changed BUG #97391 is:"+Zeichnungsmasstab.GetSelIndex+"; should: "+iTemp2 If ( irgendwas(6) = SetzenAufKreis.IsChecked ) Then WarnLog "'Do not disort objects in curve' state changed" - else ' IMPRESS + else ' IMPRESS if ( irgendwas(7) = MitAutopilotStarten.IsChecked ) Then WarnLog "'Start with AutoPilot' state changed." -' + ' if ( irgendwas(8) = MitAktuellerSeite.IsChecked ) Then WarnLog "'Always with current page' changed" if ( irgendwas(9) = AlleAbsatzabstaendeAddieren.IsChecked ) Then WarnLog "'Add spacing between paragraphs in the current document' changed" - endif - - If ( Masseinheit.GetSelIndex <> iTemp ) Then WarnLog "Unit of Measurement state changed" - If (LiberalMeasurement (sTemp,Tabulatorabstand.GetText) <> TRUE ) Then WarnLog "Tab stops state changed - watch BugID: 82744 for Status" - - printlog "all UnCheck -> o" - - Schnellbearbeitung.UnCheck - TextbereichSelektierbar.UnCheck - - CacheFuerHintergrund.UnCheck - KopieBeimVerschieben.UnCheck - ObjekteImmerVerschiebbar.UnCheck - - if (gApplication = "DRAW") then - Zeichnungsmasstab.Select (1) - SetzenAufKreis.UnCheck - else ' IMPRESS - MitAutopilotStarten.UnCheck - MitAktuellerSeite.UnCheck - AlleAbsatzabstaendeAddieren.UnCheck - endif - - Masseinheit.Select (1) - Tabulatorabstand.ToMin - sTemp = Tabulatorabstand.GetText - printlog " More test " - Tabulatorabstand.More - if ( sTemp = Tabulatorabstand.GetText ) Then WarnLog "Tab Stops More-Button not working; stemp1: "+sTemp + " =? (2) " +Tabulatorabstand.GetText - sTemp = Tabulatorabstand.GetText - - Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK - - printlog "check if all UnChecked" - ToolsOptions - hToolsOptions (sApplication,"General") - - If Schnellbearbeitung.IsChecked Then WarnLog "Allow Quick Editing x" - If TextbereichSelektierbar.IsChecked Then WarnLog "Only Text Area Selectable x" - - If CacheFuerHintergrund.IsChecked Then WarnLog "Use Background Cache x" - If KopieBeimVerschieben.IsChecked Then WarnLog "Copy When Moving x" - If ObjekteImmerVerschiebbar.IsChecked Then WarnLog "Objects Always Movable x" - - if (gApplication = "DRAW") then - If ( Zeichnungsmasstab.GetSelIndex <> 1 ) Then WarnLog "'Drawing Scale' is not item 1" - If SetzenAufKreis.IsChecked Then WarnLog "'Do not disort objects in curve' x" - else ' IMPRESS - if MitAutopilotStarten.IsChecked Then WarnLog "Start with AutoPilot x" - if MitAktuellerSeite.IsChecked Then WarnLog "'Always with current page' x" - if AlleAbsatzabstaendeAddieren.IsChecked Then WarnLog "'Add spacing between paragraphs in the current document' x" - endif - - If ( Masseinheit.GetSelIndex <> 1 ) Then WarnLog "Unit of Measurement is not item 1" - If (LiberalMeasurement (sTemp,Tabulatorabstand.GetText) <> TRUE ) Then WarnLog "Tab stops is not min. is: " +Tabulatorabstand.GetText + " should: " +sTemp + endif + + If ( Masseinheit.GetSelIndex <> iTemp ) Then WarnLog "Unit of Measurement state changed" + If (LiberalMeasurement (sTemp,Tabulatorabstand.GetText) <> TRUE ) Then WarnLog "Tab stops state changed - watch BugID: 82744 for Status" + + printlog "all UnCheck -> o" + + Schnellbearbeitung.UnCheck + TextbereichSelektierbar.UnCheck + + CacheFuerHintergrund.UnCheck + KopieBeimVerschieben.UnCheck + ObjekteImmerVerschiebbar.UnCheck + + if (gApplication = "DRAW") then + Zeichnungsmasstab.Select (1) + SetzenAufKreis.UnCheck + else ' IMPRESS + MitAutopilotStarten.UnCheck + MitAktuellerSeite.UnCheck + AlleAbsatzabstaendeAddieren.UnCheck + endif + + Masseinheit.Select (1) + Tabulatorabstand.ToMin + sTemp = Tabulatorabstand.GetText + printlog " More test " + Tabulatorabstand.More + if ( sTemp = Tabulatorabstand.GetText ) Then WarnLog "Tab Stops More-Button not working; stemp1: "+sTemp + " =? (2) " +Tabulatorabstand.GetText + sTemp = Tabulatorabstand.GetText + + Kontext "ExtrasOptionenDlg" + ExtrasOptionenDlg.OK + + printlog "check if all UnChecked" + ToolsOptions + hToolsOptions (sApplication,"General") + + If Schnellbearbeitung.IsChecked Then WarnLog "Allow Quick Editing x" + If TextbereichSelektierbar.IsChecked Then WarnLog "Only Text Area Selectable x" + + If CacheFuerHintergrund.IsChecked Then WarnLog "Use Background Cache x" + If KopieBeimVerschieben.IsChecked Then WarnLog "Copy When Moving x" + If ObjekteImmerVerschiebbar.IsChecked Then WarnLog "Objects Always Movable x" + + if (gApplication = "DRAW") then + If ( Zeichnungsmasstab.GetSelIndex <> 1 ) Then WarnLog "'Drawing Scale' is not item 1" + If SetzenAufKreis.IsChecked Then WarnLog "'Do not disort objects in curve' x" + else ' IMPRESS + if MitAutopilotStarten.IsChecked Then WarnLog "Start with AutoPilot x" + if MitAktuellerSeite.IsChecked Then WarnLog "'Always with current page' x" + if AlleAbsatzabstaendeAddieren.IsChecked Then WarnLog "'Add spacing between paragraphs in the current document' x" + endif + + If ( Masseinheit.GetSelIndex <> 1 ) Then WarnLog "Unit of Measurement is not item 1" + If (LiberalMeasurement (sTemp,Tabulatorabstand.GetText) <> TRUE ) Then WarnLog "Tab stops is not min. is: " +Tabulatorabstand.GetText + " should: " +sTemp Kontext "ExtrasOptionenDlg" ExtrasOptionenDlg.OK @@ -198,56 +200,51 @@ testcase tToolsOptionsDrawGeneral (sApplication as string) hNewDocument printlog "set Default Tab Stop to 2,5cm" - ToolsOptions - hToolsOptions (sApplication,"General") - Masseinheit.Select (2) ' cm - sMeasUnit = GetMeasUnit(Tabulatorabstand.GetText) -' printlog "before " + Tabulatorabstand.GetText - Tabulatorabstand.SetText ("2" + GetDecimalSeperator(Tabulatorabstand.GetText) + "50"+ sMeasUnit) -' printlog "after " + Tabulatorabstand.GetText -' printlog "seperator: " + GetDecimalSeperator(Tabulatorabstand.GetText) -' printlog "generated string: " + "2" + GetDecimalSeperator(Tabulatorabstand.GetText) + "50cm" + ToolsOptions + hToolsOptions (sApplication,"General") + Masseinheit.Select (2) ' cm + sMeasUnit = GetMeasUnit(Tabulatorabstand.GetText) + ' printlog "before " + Tabulatorabstand.GetText + Tabulatorabstand.SetText ("2" + GetDecimalSeperator(Tabulatorabstand.GetText) + "50"+ sMeasUnit) + ' printlog "after " + Tabulatorabstand.GetText + ' printlog "seperator: " + GetDecimalSeperator(Tabulatorabstand.GetText) + ' printlog "generated string: " + "2" + GetDecimalSeperator(Tabulatorabstand.GetText) + "50cm" Kontext "ExtrasOptionenDlg" ExtrasOptionenDlg.OK printlog "creating document with tabstops and save it" - if (gApplication = "DRAW") then - kontext "Toolbar" - Textfield.Click - kontext "DocumentDraw" - hMouseClick DocumentDraw,50,50 - else - kontext "Toolbar" - Textfield.Click - kontext "DocumentImpress" - hMouseClick DocumentImpress,20,50 - endif - hTypeKeys "a<Tab>b<Tab>c<Tab>d<Tab>e<Tab>f<Tab>g<Tab>h<Tab>i<Tab>j" - - + if (gApplication = "DRAW") then + kontext "Toolbar" + Textfield.Click + kontext "DocumentDraw" + hMouseClick DocumentDraw,50,50 + else + kontext "Toolbar" + Textfield.Click + kontext "DocumentImpress" + hMouseClick DocumentImpress,20,50 + endif + hTypeKeys "a<Tab>b<Tab>c<Tab>d<Tab>e<Tab>f<Tab>g<Tab>h<Tab>i<Tab>j" if ( gApplication = "IMPRESS" ) then ExtensionString = "odp" else ExtensionString = "odg" end if - hFileSaveAsKill (gOfficePath + "user\work\tab25cm." & ExtensionString ) - - hCloseDocument - sleep (2) - + hCloseDocument + sleep (2) printlog "change tab stops" - hNewDocument + hNewDocument printlog "Changed the Default Tab Stop to 2,9cm" - ToolsOptions - hToolsOptions (sApplication,"General") - Masseinheit.Select (2) ' cm -' printlog "before " + Tabulatorabstand.GetText - Tabulatorabstand.SetText ("2" + GetDecimalSeperator(Tabulatorabstand.GetText) + "90"+sMeasUnit ) -' printlog "after " + Tabulatorabstand.GetText - Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK - sleep (2) + ToolsOptions + hToolsOptions (sApplication,"General") + Masseinheit.Select (2) ' cm + ' printlog "before " + Tabulatorabstand.GetText + Tabulatorabstand.SetText ("2" + GetDecimalSeperator(Tabulatorabstand.GetText) + "90"+sMeasUnit ) + ' printlog "after " + Tabulatorabstand.GetText + Kontext "ExtrasOptionenDlg" + ExtrasOptionenDlg.OK + sleep (2) @@ -271,98 +268,98 @@ testcase tToolsOptionsDrawGeneral (sApplication as string) hCloseDocument '--------------------------------------------------------------------------------- - Printlog ("'/// - all Check -> x ///") + Printlog ("all Check -> x") - printlog "Click in the open impress document to get the focus back to the document" - printlog "Otherwise it sometimes happend that the Tools/Option dialog doesn't display the correct applications" - hNewDocument - if ( sApplication = "IMPRESS") then + printlog "Click in the open impress document to get the focus back to the document" + printlog "Otherwise it sometimes happend that the Tools/Option dialog doesn't display the correct applications" + hNewDocument + if ( sApplication = "IMPRESS") then Kontext "DocumentImpress" - DocumentImpress.MouseDown(50,50) - DocumentImpress.MouseUp(50,50) - else + DocumentImpress.MouseDown(50,50) + DocumentImpress.MouseUp(50,50) + else Kontext "DocumentDraw" - DocumentDraw.MouseDown(50,50) - DocumentDraw.MouseUp(50,50) - endif + DocumentDraw.MouseDown(50,50) + DocumentDraw.MouseUp(50,50) + endif - ToolsOptions - hToolsOptions (sApplication,"General") - kontext "TabSonstigesDraw" - Schnellbearbeitung.Check - TextbereichSelektierbar.Check + ToolsOptions + hToolsOptions (sApplication,"General") + kontext "TabSonstigesDraw" + Schnellbearbeitung.Check + TextbereichSelektierbar.Check - CacheFuerHintergrund.Check - KopieBeimVerschieben.Check - ObjekteImmerVerschiebbar.Check + CacheFuerHintergrund.Check + KopieBeimVerschieben.Check + ObjekteImmerVerschiebbar.Check - if (gApplication = "DRAW") then + if (gApplication = "DRAW") then Zeichnungsmasstab.Select (2) itemp2 = Zeichnungsmasstab.GetSelIndex SetzenAufKreis.Check - else ' IMPRESS -' MitAutopilotStarten.Check + else ' IMPRESS + ' MitAutopilotStarten.Check MitAktuellerSeite.Check AlleAbsatzabstaendeAddieren.Check - endif + endif - Masseinheit.Select (2) - itemp = Masseinheit.GetSelIndex - sTemp = "3" + GetDecimalSeperator(Tabulatorabstand.GetText) + "21"+sMeasUnit - Tabulatorabstand.SetText (sTemp) + Masseinheit.Select (2) + itemp = Masseinheit.GetSelIndex + sTemp = "3" + GetDecimalSeperator(Tabulatorabstand.GetText) + "21"+sMeasUnit + Tabulatorabstand.SetText (sTemp) - Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK + Kontext "ExtrasOptionenDlg" + ExtrasOptionenDlg.OK - printlog ("'/// - check if all Checked ///") - ToolsOptions - hToolsOptions (sApplication,"General") + printlog ("check if all Checked") + ToolsOptions + hToolsOptions (sApplication,"General") - If True <> Schnellbearbeitung.IsChecked Then WarnLog "Allow Quick Editing o" - If True <> TextbereichSelektierbar.IsChecked Then WarnLog "Only Text Area Selectable o" + If True <> Schnellbearbeitung.IsChecked Then WarnLog "Allow Quick Editing o" + If True <> TextbereichSelektierbar.IsChecked Then WarnLog "Only Text Area Selectable o" - If True <> CacheFuerHintergrund.IsChecked Then WarnLog "Use Background Cache o i26631" - If True <> KopieBeimVerschieben.IsChecked Then WarnLog "Copy When Moving o" - If True <> ObjekteImmerVerschiebbar.IsChecked Then WarnLog "Objects Always Movable o" + If True <> CacheFuerHintergrund.IsChecked Then WarnLog "Use Background Cache o i26631" + If True <> KopieBeimVerschieben.IsChecked Then WarnLog "Copy When Moving o" + If True <> ObjekteImmerVerschiebbar.IsChecked Then WarnLog "Objects Always Movable o" - if (gApplication = "DRAW") then - If ( Zeichnungsmasstab.GetSelIndex <> iTemp2 ) Then WarnLog "Drawing Scale is not item " + iTemp2 + " it's: " + Zeichnungsmasstab.GetSelIndex - If True <> SetzenAufKreis.IsChecked Then WarnLog "'Do not disort objects in curve' o" - else ' IMPRESS -' If True <> MitAutopilotStarten.IsChecked Then WarnLog "Start with AutoPilot o" - If True <> MitAktuellerSeite.IsChecked Then WarnLog "'Always with current page' o" - If True <> AlleAbsatzabstaendeAddieren.IsChecked Then WarnLog "'Add spacing between paragraphs in the current document' o" - endif + if (gApplication = "DRAW") then + If ( Zeichnungsmasstab.GetSelIndex <> iTemp2 ) Then WarnLog "Drawing Scale is not item " + iTemp2 + " it's: " + Zeichnungsmasstab.GetSelIndex + If True <> SetzenAufKreis.IsChecked Then WarnLog "'Do not disort objects in curve' o" + else ' IMPRESS + ' If True <> MitAutopilotStarten.IsChecked Then WarnLog "Start with AutoPilot o" + If True <> MitAktuellerSeite.IsChecked Then WarnLog "'Always with current page' o" + If True <> AlleAbsatzabstaendeAddieren.IsChecked Then WarnLog "'Add spacing between paragraphs in the current document' o" + endif - If ( Masseinheit.GetSelIndex <> iTemp ) Then WarnLog "Masseinheit is not item " + iTemp + " it's: " + Masseinheit.GetSelIndex - If (LiberalMeasurement (sTemp,Tabulatorabstand.GetText) <> TRUE ) Then WarnLog "Tab stops is not " + sTemp + " it's: " + Tabulatorabstand.GetText + If ( Masseinheit.GetSelIndex <> iTemp ) Then WarnLog "Masseinheit is not item " + iTemp + " it's: " + Masseinheit.GetSelIndex + If (LiberalMeasurement (sTemp,Tabulatorabstand.GetText) <> TRUE ) Then WarnLog "Tab stops is not " + sTemp + " it's: " + Tabulatorabstand.GetText - printlog "restore states" + printlog "restore states" - If ( irgendwas(1) = TRUE ) Then Schnellbearbeitung.Check Else Schnellbearbeitung.UnCheck - If ( irgendwas(2) = TRUE ) Then TextbereichSelektierbar.Check Else TextbereichSelektierbar.UnCheck + If ( irgendwas(1) = TRUE ) Then Schnellbearbeitung.Check Else Schnellbearbeitung.UnCheck + If ( irgendwas(2) = TRUE ) Then TextbereichSelektierbar.Check Else TextbereichSelektierbar.UnCheck - If ( irgendwas(3) = TRUE ) Then CacheFuerHintergrund.Check Else CacheFuerHintergrund.UnCheck - If ( irgendwas(4) = TRUE ) Then KopieBeimVerschieben.Check Else KopieBeimVerschieben.UnCheck - If ( irgendwas(5) = TRUE ) Then ObjekteImmerVerschiebbar.Check Else ObjekteImmerVerschiebbar.UnCheck + If ( irgendwas(3) = TRUE ) Then CacheFuerHintergrund.Check Else CacheFuerHintergrund.UnCheck + If ( irgendwas(4) = TRUE ) Then KopieBeimVerschieben.Check Else KopieBeimVerschieben.UnCheck + If ( irgendwas(5) = TRUE ) Then ObjekteImmerVerschiebbar.Check Else ObjekteImmerVerschiebbar.UnCheck - if (gApplication = "DRAW") then - Zeichnungsmasstab.Select (iZeichnungsmasstab) - If ( irgendwas(6) = TRUE ) Then SetzenAufKreis.Check Else SetzenAufKreis.UnCheck - else ' IMPRESS - if ( irgendwas(7) = TRUE ) Then MitAutopilotStarten.Check Else MitAutopilotStarten.UnCheck - if ( irgendwas(8) = TRUE ) Then MitAktuellerSeite.Check Else MitAktuellerSeite.UnCheck - if ( irgendwas(9) = TRUE ) Then AlleAbsatzabstaendeAddieren.Check Else AlleAbsatzabstaendeAddieren.UnCheck - endif + if (gApplication = "DRAW") then + Zeichnungsmasstab.Select (iZeichnungsmasstab) + If ( irgendwas(6) = TRUE ) Then SetzenAufKreis.Check Else SetzenAufKreis.UnCheck + else ' IMPRESS + if ( irgendwas(7) = TRUE ) Then MitAutopilotStarten.Check Else MitAutopilotStarten.UnCheck + if ( irgendwas(8) = TRUE ) Then MitAktuellerSeite.Check Else MitAktuellerSeite.UnCheck + if ( irgendwas(9) = TRUE ) Then AlleAbsatzabstaendeAddieren.Check Else AlleAbsatzabstaendeAddieren.UnCheck + endif - Masseinheit.Select (iMasseinheit) 'sw:ListBox:TP_LAYOUT_O - Tabulatorabstand.SetText (sTabAbstand) ' sw:MetricField:TP_LAYOUT_OPT:MF_TAB + Masseinheit.Select (iMasseinheit) 'sw:ListBox:TP_LAYOUT_O + Tabulatorabstand.SetText (sTabAbstand) ' sw:MetricField:TP_LAYOUT_OPT:MF_TAB - Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK + Kontext "ExtrasOptionenDlg" + ExtrasOptionenDlg.OK - hCloseDocument + hCloseDocument endcase 'tToolsOptionsDrawGeneral '------------------------------------------------------------------------------ @@ -406,143 +403,143 @@ testcase tToolsOptionsDrawView (sApplication as string) printlog "all UnCheck -> o" - LinealeSichtbar.UnCheck - HilfslinienBeimBewegen.UnCheck - KontrolpunkteImBezierEditor.UnCheck - KonturFuerIndividuelleObjekte.UnCheck + LinealeSichtbar.UnCheck + HilfslinienBeimBewegen.UnCheck + KontrolpunkteImBezierEditor.UnCheck + KonturFuerIndividuelleObjekte.UnCheck - Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK + Kontext "ExtrasOptionenDlg" + ExtrasOptionenDlg.OK - printlog "check if all UnChecked" - ToolsOptions - hToolsOptions (sApplication,"View") + printlog "check if all UnChecked" + ToolsOptions + hToolsOptions (sApplication,"View") - If LinealeSichtbar.IsChecked Then WarnLog "Rulers Visible x" - If HilfslinienBeimBewegen.IsChecked Then WarnLog "Guides When Moving x" - If KontrolpunkteImBezierEditor.IsChecked Then WarnLog "'All Control Points In B�zier Editor' x" - If KonturFuerIndividuelleObjekte.IsChecked Then WarnLog "'Contour of Each Individual Object' x" + If LinealeSichtbar.IsChecked Then WarnLog "Rulers Visible x" + If HilfslinienBeimBewegen.IsChecked Then WarnLog "Guides When Moving x" + If KontrolpunkteImBezierEditor.IsChecked Then WarnLog "'All Control Points In B�zier Editor' x" + If KonturFuerIndividuelleObjekte.IsChecked Then WarnLog "'Contour of Each Individual Object' x" - Printlog "all Check -> x" + Printlog "all Check -> x" - LinealeSichtbar.Check - HilfslinienBeimBewegen.Check - KontrolpunkteImBezierEditor.Check - KonturFuerIndividuelleObjekte.Check + LinealeSichtbar.Check + HilfslinienBeimBewegen.Check + KontrolpunkteImBezierEditor.Check + KonturFuerIndividuelleObjekte.Check - Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK + Kontext "ExtrasOptionenDlg" + ExtrasOptionenDlg.OK - printlog "check if all Checked" - ToolsOptions - hToolsOptions (sApplication,"View") + printlog "check if all Checked" + ToolsOptions + hToolsOptions (sApplication,"View") - If True <> LinealeSichtbar.IsChecked Then WarnLog "Rulers Visible o" - If True <> HilfslinienBeimBewegen.IsChecked Then WarnLog "Guides When Moving o" - If True <> KontrolpunkteImBezierEditor.IsChecked Then WarnLog "'All Control Points In B�zier Editor' o" - If True <> KonturFuerIndividuelleObjekte.IsChecked Then WarnLog "'Contour of Each Individual Object' o" + If True <> LinealeSichtbar.IsChecked Then WarnLog "Rulers Visible o" + If True <> HilfslinienBeimBewegen.IsChecked Then WarnLog "Guides When Moving o" + If True <> KontrolpunkteImBezierEditor.IsChecked Then WarnLog "'All Control Points In B�zier Editor' o" + If True <> KonturFuerIndividuelleObjekte.IsChecked Then WarnLog "'Contour of Each Individual Object' o" - printlog "restore states" + printlog "restore states" - If ( irgendwas(1) = TRUE ) Then LinealeSichtbar.Check Else LinealeSichtbar.UnCheck - If ( irgendwas(2) = TRUE ) Then HilfslinienBeimBewegen.Check Else HilfslinienBeimBewegen.UnCheck - If ( irgendwas(3) = TRUE ) Then KontrolpunkteImBezierEditor.Check Else KontrolpunkteImBezierEditor.UnCheck - If ( irgendwas(4) = TRUE ) Then KonturFuerIndividuelleObjekte.Check Else KonturFuerIndividuelleObjekte.UnCheck + If ( irgendwas(1) = TRUE ) Then LinealeSichtbar.Check Else LinealeSichtbar.UnCheck + If ( irgendwas(2) = TRUE ) Then HilfslinienBeimBewegen.Check Else HilfslinienBeimBewegen.UnCheck + If ( irgendwas(3) = TRUE ) Then KontrolpunkteImBezierEditor.Check Else KontrolpunkteImBezierEditor.UnCheck + If ( irgendwas(4) = TRUE ) Then KonturFuerIndividuelleObjekte.Check Else KonturFuerIndividuelleObjekte.UnCheck - Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK + Kontext "ExtrasOptionenDlg" + ExtrasOptionenDlg.OK - hCloseDocument + hCloseDocument endcase 'tToolsOptionsDrawView '-------------------------------------------------------------------------------- testcase tToolsOptionsDrawGrid (sApplication as string) - dim irgendwas(10) as boolean - dim sMetricField(7) as string ' MetricField - dim sTempMetricField(7) as string - dim iTry as integer ' some increment variable + dim irgendwas(10) as boolean + dim sMetricField(7) as string ' MetricField + dim sTempMetricField(7) as string + dim iTry as integer ' some increment variable - if ( gApplication = "IMPRESS" ) then + if ( gApplication = "IMPRESS" ) then ExtensionString = "odp" else ExtensionString = "odg" end if - hNewDocument - - printlog "save states" - ToolsOptions - hToolsOptions (sApplication,"Grid") - - irgendwas(1) = FangrasterBenutzen.IsChecked - irgendwas(2) = RasterSichtbar.IsChecked - - irgendwas(3) = AchsenSynchronisieren.IsChecked - - irgendwas(4) = AnFanglinien.IsChecked - irgendwas(5) = AnSeitenraendern.IsChecked - irgendwas(6) = AmObjektrahmen.IsChecked - irgendwas(7) = AnObjektpunkten.IsChecked - - irgendwas(8) = BeimErzeugenUndBewegen.IsChecked - irgendwas(9) = LaengereKantenlaenge.IsChecked - irgendwas(10)= BeimDrehen.IsChecked - if BeimDrehen.IsChecked then sMetricField(7) = Winkel.getText - - sMetricField(1) = RasterAufloesungXAchse.GetText - sMetricField(2) = RasterAufloesungYAchse.GetText - sMetricField(3) = RasterUnterteilungXAchse.GetText - sMetricField(4) = RasterUnterteilungYAchse.GetText - sMetricField(5) = FangenFangbereich.GetText - sMetricField(6) = Punktreduktion.GetText - - printlog "all states inverting" - - if irgendwas(1) Then FangrasterBenutzen.UnCheck Else FangrasterBenutzen.Check - if irgendwas(2) Then RasterSichtbar.UnCheck Else RasterSichtbar.Check - -' if irgendwas(3) Then AchsenSynchronisieren.UnCheck Else AchsenSynchronisieren.Check - ' this CheckBox interacts with the MetricBoxes: - AchsenSynchronisieren.UnCheck - - if irgendwas(4) Then AnFanglinien.UnCheck Else AnFanglinien.Check - if irgendwas(5) Then AnSeitenraendern.UnCheck Else AnSeitenraendern.Check - if irgendwas(6) Then AmObjektrahmen.UnCheck Else AmObjektrahmen.Check - if irgendwas(7) Then AnObjektpunkten.UnCheck Else AnObjektpunkten.Check - - if irgendwas(8) Then BeimErzeugenUndBewegen.UnCheck Else BeimErzeugenUndBewegen.Check - if irgendwas(9) Then LaengereKantenlaenge.UnCheck Else LaengereKantenlaenge.Check - if irgendwas(10)Then BeimDrehen.UnCheck Else BeimDrehen.Check - - sTempMetricField(1) = RasterAufloesungXAchse.GetText - sTempMetricField(2) = RasterAufloesungYAchse.GetText - sTempMetricField(3) = RasterUnterteilungXAchse.GetText - sTempMetricField(4) = RasterUnterteilungYAchse.GetText - sTempMetricField(5) = FangenFangbereich.GetText - sTempMetricField(6) = Punktreduktion.GetText - RasterAufloesungXAchse.ToMax - RasterAufloesungYAchse.ToMin - RasterUnterteilungXAchse.ToMin - RasterUnterteilungYAchse.ToMax - FangenFangbereich.ToMin - Punktreduktion.ToMax - If ( RasterAufloesungXAchse.GetText = sTempMetricField(1) ) Then RasterAufloesungXAchse.ToMin - If ( RasterAufloesungYAchse.GetText = sTempMetricField(2) ) Then RasterAufloesungYAchse.ToMax - If ( RasterUnterteilungXAchse.GetText = sTempMetricField(3) ) Then RasterUnterteilungXAchse.ToMax - If ( RasterUnterteilungYAchse.GetText = sTempMetricField(4) ) Then RasterUnterteilungYAchse.ToMin - If ( FangenFangbereich.GetText = sTempMetricField(5) ) Then FangenFangbereich.ToMax - If ( Punktreduktion.GetText = sTempMetricField(6) ) Then Punktreduktion.ToMin - RasterAufloesungXAchse.More ' because it must greater than the.min value for the subdivisions if they are .tomax! - RasterAufloesungXAchse.More - RasterAufloesungYAchse.More - RasterAufloesungYAchse.More - sTempMetricField(1) = RasterAufloesungXAchse.GetText - sTempMetricField(2) = RasterAufloesungYAchse.GetText - sTempMetricField(3) = RasterUnterteilungXAchse.GetText - sTempMetricField(4) = RasterUnterteilungYAchse.GetText - sTempMetricField(5) = FangenFangbereich.GetText - sTempMetricField(6) = Punktreduktion.GetText + hNewDocument + + printlog "save states" + ToolsOptions + hToolsOptions (sApplication,"Grid") + + irgendwas(1) = FangrasterBenutzen.IsChecked + irgendwas(2) = RasterSichtbar.IsChecked + + irgendwas(3) = AchsenSynchronisieren.IsChecked + + irgendwas(4) = AnFanglinien.IsChecked + irgendwas(5) = AnSeitenraendern.IsChecked + irgendwas(6) = AmObjektrahmen.IsChecked + irgendwas(7) = AnObjektpunkten.IsChecked + + irgendwas(8) = BeimErzeugenUndBewegen.IsChecked + irgendwas(9) = LaengereKantenlaenge.IsChecked + irgendwas(10)= BeimDrehen.IsChecked + if BeimDrehen.IsChecked then sMetricField(7) = Winkel.getText + + sMetricField(1) = RasterAufloesungXAchse.GetText + sMetricField(2) = RasterAufloesungYAchse.GetText + sMetricField(3) = RasterUnterteilungXAchse.GetText + sMetricField(4) = RasterUnterteilungYAchse.GetText + sMetricField(5) = FangenFangbereich.GetText + sMetricField(6) = Punktreduktion.GetText + + printlog "all states inverting" + + if irgendwas(1) Then FangrasterBenutzen.UnCheck Else FangrasterBenutzen.Check + if irgendwas(2) Then RasterSichtbar.UnCheck Else RasterSichtbar.Check + + ' if irgendwas(3) Then AchsenSynchronisieren.UnCheck Else AchsenSynchronisieren.Check + ' this CheckBox interacts with the MetricBoxes: + AchsenSynchronisieren.UnCheck + + if irgendwas(4) Then AnFanglinien.UnCheck Else AnFanglinien.Check + if irgendwas(5) Then AnSeitenraendern.UnCheck Else AnSeitenraendern.Check + if irgendwas(6) Then AmObjektrahmen.UnCheck Else AmObjektrahmen.Check + if irgendwas(7) Then AnObjektpunkten.UnCheck Else AnObjektpunkten.Check + + if irgendwas(8) Then BeimErzeugenUndBewegen.UnCheck Else BeimErzeugenUndBewegen.Check + if irgendwas(9) Then LaengereKantenlaenge.UnCheck Else LaengereKantenlaenge.Check + if irgendwas(10)Then BeimDrehen.UnCheck Else BeimDrehen.Check + + sTempMetricField(1) = RasterAufloesungXAchse.GetText + sTempMetricField(2) = RasterAufloesungYAchse.GetText + sTempMetricField(3) = RasterUnterteilungXAchse.GetText + sTempMetricField(4) = RasterUnterteilungYAchse.GetText + sTempMetricField(5) = FangenFangbereich.GetText + sTempMetricField(6) = Punktreduktion.GetText + RasterAufloesungXAchse.ToMax + RasterAufloesungYAchse.ToMin + RasterUnterteilungXAchse.ToMin + RasterUnterteilungYAchse.ToMax + FangenFangbereich.ToMin + Punktreduktion.ToMax + If ( RasterAufloesungXAchse.GetText = sTempMetricField(1) ) Then RasterAufloesungXAchse.ToMin + If ( RasterAufloesungYAchse.GetText = sTempMetricField(2) ) Then RasterAufloesungYAchse.ToMax + If ( RasterUnterteilungXAchse.GetText = sTempMetricField(3) ) Then RasterUnterteilungXAchse.ToMax + If ( RasterUnterteilungYAchse.GetText = sTempMetricField(4) ) Then RasterUnterteilungYAchse.ToMin + If ( FangenFangbereich.GetText = sTempMetricField(5) ) Then FangenFangbereich.ToMax + If ( Punktreduktion.GetText = sTempMetricField(6) ) Then Punktreduktion.ToMin + RasterAufloesungXAchse.More ' because it must greater than the.min value for the subdivisions if they are .tomax! + RasterAufloesungXAchse.More + RasterAufloesungYAchse.More + RasterAufloesungYAchse.More + sTempMetricField(1) = RasterAufloesungXAchse.GetText + sTempMetricField(2) = RasterAufloesungYAchse.GetText + sTempMetricField(3) = RasterUnterteilungXAchse.GetText + sTempMetricField(4) = RasterUnterteilungYAchse.GetText + sTempMetricField(5) = FangenFangbereich.GetText + sTempMetricField(6) = Punktreduktion.GetText Kontext "ExtrasOptionenDlg" ExtrasOptionenDlg.OK @@ -557,205 +554,203 @@ testcase tToolsOptionsDrawGrid (sApplication as string) ToolsOptions hToolsOptions (sApplication,"Grid") - If ( irgendwas(1) = FangrasterBenutzen.IsChecked ) Then WarnLog "Snap to Grid state changed" - If ( irgendwas(2) = RasterSichtbar.IsChecked ) Then WarnLog "Visible Grid state changed" - -' If ( irgendwas(3) = AchsenSynchronisieren.IsChecked ) Then WarnLog "Synchronize Axes state changed" - if ( AchsenSynchronisieren.IsChecked = TRUE ) Then WarnLog "Synchronize Axes state changed" - - If ( irgendwas(4) = AnFanglinien.IsChecked ) Then WarnLog "To snap lines state changed" - If ( irgendwas(5) = AnSeitenraendern.IsChecked ) Then WarnLog "To the page margins state changed" - If ( irgendwas(6) = AmObjektrahmen.IsChecked ) Then WarnLog "To object frame state changed" - If ( irgendwas(7) = AnObjektpunkten.IsChecked ) Then WarnLog "To object points state changed" - - If ( irgendwas(8) = BeimErzeugenUndBewegen.IsChecked ) Then WarnLog "When creating or moving objects state changed" - If ( irgendwas(9) = LaengereKantenlaenge.IsChecked ) Then WarnLog "Extend Edges state changed" - If ( irgendwas(10)= BeimDrehen.IsChecked ) Then WarnLog "When Rotating state changed" - - If ( RasterAufloesungXAchse.GetText <> sTempMetricField(1) ) Then WarnLog "GridResolutionXAxel state changed" - If ( RasterAufloesungYAchse.GetText <> sTempMetricField(2) ) Then WarnLog "GridResolutionYAxel state changed" - If ( RasterUnterteilungXAchse.GetText <> sTempMetricField(3) ) Then WarnLog "GridSubdivisionXAxel state changed is: "+RasterUnterteilungXAchse.GetText+"; should: "+sTempMetricField(3) - If ( RasterUnterteilungYAchse.GetText <> sTempMetricField(4) ) Then WarnLog "GridSubdivisionYAxel state changed is: "+RasterUnterteilungYAchse.GetText+"; should: "+sTempMetricField(4) - If ( FangenFangbereich.GetText <> sTempMetricField(5) ) Then WarnLog "SnapSnap range state changed" - If ( Punktreduktion.GetText <> sTempMetricField(6) ) Then WarnLog "Pointreduction state changed" - - printlog "all UnCheck -> o" - - FangrasterBenutzen.UnCheck - RasterSichtbar.UnCheck - - AchsenSynchronisieren.UnCheck - - AnFanglinien.UnCheck - AnSeitenraendern.UnCheck - AmObjektrahmen.UnCheck - AnObjektpunkten.UnCheck - - BeimErzeugenUndBewegen.UnCheck - LaengereKantenlaenge.UnCheck - BeimDrehen.UnCheck - - RasterAufloesungXAchse.ToMin - RasterAufloesungYAchse.ToMin - RasterUnterteilungXAchse.ToMin - RasterUnterteilungYAchse.ToMin - FangenFangbereich.ToMin - Punktreduktion.ToMin - sTempMetricField(1) = RasterAufloesungXAchse.GetText - sTempMetricField(2) = RasterAufloesungYAchse.GetText - sTempMetricField(3) = RasterUnterteilungXAchse.GetText - sTempMetricField(4) = RasterUnterteilungYAchse.GetText - sTempMetricField(5) = FangenFangbereich.GetText - sTempMetricField(6) = Punktreduktion.GetText - printlog "More test" - RasterAufloesungXAchse.More - RasterAufloesungYAchse.More - RasterUnterteilungXAchse.More - RasterUnterteilungYAchse.More - FangenFangbereich.More - Punktreduktion.More - if ( sTempMetricField(1) = RasterAufloesungXAchse.GetText ) Then WarnLog "GridResolutionXAxel More-Button not working" - if ( sTempMetricField(2) = RasterAufloesungYAchse.GetText ) Then WarnLog "GridResolutionYAxel More-Button not working" - if ( sTempMetricField(3) = RasterUnterteilungXAchse.GetText ) Then WarnLog "GridSubdivisionXAxel More-Button not working" - if ( sTempMetricField(4) = RasterUnterteilungYAchse.GetText ) Then WarnLog "GridSubdivisionYAxel More-Button not working" - if ( sTempMetricField(5) = FangenFangbereich.GetText ) Then WarnLog "Snap Snap Range More-Button not working" - if ( sTempMetricField(6) = Punktreduktion.GetText ) Then WarnLog "Pointreduction More-Button not working is: "+Punktreduktion.GetText - sTempMetricField(1) = RasterAufloesungXAchse.GetText - sTempMetricField(2) = RasterAufloesungYAchse.GetText - sTempMetricField(3) = RasterUnterteilungXAchse.GetText - sTempMetricField(4) = RasterUnterteilungYAchse.GetText - sTempMetricField(5) = FangenFangbereich.GetText - sTempMetricField(6) = Punktreduktion.GetText + If ( irgendwas(1) = FangrasterBenutzen.IsChecked ) Then WarnLog "Snap to Grid state changed" + If ( irgendwas(2) = RasterSichtbar.IsChecked ) Then WarnLog "Visible Grid state changed" - Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK + ' If ( irgendwas(3) = AchsenSynchronisieren.IsChecked ) Then WarnLog "Synchronize Axes state changed" + if ( AchsenSynchronisieren.IsChecked = TRUE ) Then WarnLog "Synchronize Axes state changed" + + If ( irgendwas(4) = AnFanglinien.IsChecked ) Then WarnLog "To snap lines state changed" + If ( irgendwas(5) = AnSeitenraendern.IsChecked ) Then WarnLog "To the page margins state changed" + If ( irgendwas(6) = AmObjektrahmen.IsChecked ) Then WarnLog "To object frame state changed" + If ( irgendwas(7) = AnObjektpunkten.IsChecked ) Then WarnLog "To object points state changed" + + If ( irgendwas(8) = BeimErzeugenUndBewegen.IsChecked ) Then WarnLog "When creating or moving objects state changed" + If ( irgendwas(9) = LaengereKantenlaenge.IsChecked ) Then WarnLog "Extend Edges state changed" + If ( irgendwas(10)= BeimDrehen.IsChecked ) Then WarnLog "When Rotating state changed" + + If ( RasterAufloesungXAchse.GetText <> sTempMetricField(1) ) Then WarnLog "GridResolutionXAxel state changed" + If ( RasterAufloesungYAchse.GetText <> sTempMetricField(2) ) Then WarnLog "GridResolutionYAxel state changed" + If ( RasterUnterteilungXAchse.GetText <> sTempMetricField(3) ) Then WarnLog "GridSubdivisionXAxel state changed is: "+RasterUnterteilungXAchse.GetText+"; should: "+sTempMetricField(3) + If ( RasterUnterteilungYAchse.GetText <> sTempMetricField(4) ) Then WarnLog "GridSubdivisionYAxel state changed is: "+RasterUnterteilungYAchse.GetText+"; should: "+sTempMetricField(4) + If ( FangenFangbereich.GetText <> sTempMetricField(5) ) Then WarnLog "SnapSnap range state changed" + If ( Punktreduktion.GetText <> sTempMetricField(6) ) Then WarnLog "Pointreduction state changed" + + printlog "all UnCheck -> o" + + FangrasterBenutzen.UnCheck + RasterSichtbar.UnCheck + + AchsenSynchronisieren.UnCheck + + AnFanglinien.UnCheck + AnSeitenraendern.UnCheck + AmObjektrahmen.UnCheck + AnObjektpunkten.UnCheck + + BeimErzeugenUndBewegen.UnCheck + LaengereKantenlaenge.UnCheck + BeimDrehen.UnCheck + + RasterAufloesungXAchse.ToMin + RasterAufloesungYAchse.ToMin + RasterUnterteilungXAchse.ToMin + RasterUnterteilungYAchse.ToMin + FangenFangbereich.ToMin + Punktreduktion.ToMin + sTempMetricField(1) = RasterAufloesungXAchse.GetText + sTempMetricField(2) = RasterAufloesungYAchse.GetText + sTempMetricField(3) = RasterUnterteilungXAchse.GetText + sTempMetricField(4) = RasterUnterteilungYAchse.GetText + sTempMetricField(5) = FangenFangbereich.GetText + sTempMetricField(6) = Punktreduktion.GetText + printlog "More test" + RasterAufloesungXAchse.More + RasterAufloesungYAchse.More + RasterUnterteilungXAchse.More + RasterUnterteilungYAchse.More + FangenFangbereich.More + Punktreduktion.More + if ( sTempMetricField(1) = RasterAufloesungXAchse.GetText ) Then WarnLog "GridResolutionXAxel More-Button not working" + if ( sTempMetricField(2) = RasterAufloesungYAchse.GetText ) Then WarnLog "GridResolutionYAxel More-Button not working" + if ( sTempMetricField(3) = RasterUnterteilungXAchse.GetText ) Then WarnLog "GridSubdivisionXAxel More-Button not working" + if ( sTempMetricField(4) = RasterUnterteilungYAchse.GetText ) Then WarnLog "GridSubdivisionYAxel More-Button not working" + if ( sTempMetricField(5) = FangenFangbereich.GetText ) Then WarnLog "Snap Snap Range More-Button not working" + if ( sTempMetricField(6) = Punktreduktion.GetText ) Then WarnLog "Pointreduction More-Button not working is: "+Punktreduktion.GetText + sTempMetricField(1) = RasterAufloesungXAchse.GetText + sTempMetricField(2) = RasterAufloesungYAchse.GetText + sTempMetricField(3) = RasterUnterteilungXAchse.GetText + sTempMetricField(4) = RasterUnterteilungYAchse.GetText + sTempMetricField(5) = FangenFangbereich.GetText + sTempMetricField(6) = Punktreduktion.GetText + + Kontext "ExtrasOptionenDlg" + ExtrasOptionenDlg.OK - printlog "check if all UnChecked" - ToolsOptions - hToolsOptions (sApplication,"Grid") + printlog "check if all UnChecked" + ToolsOptions + hToolsOptions (sApplication,"Grid") - If FangrasterBenutzen.IsChecked Then WarnLog "Snap to Grid x" - If RasterSichtbar.IsChecked Then WarnLog "Visible Grid x" + If FangrasterBenutzen.IsChecked Then WarnLog "Snap to Grid x" + If RasterSichtbar.IsChecked Then WarnLog "Visible Grid x" - If AchsenSynchronisieren.IsChecked Then WarnLog "Synchronize Axes x" + If AchsenSynchronisieren.IsChecked Then WarnLog "Synchronize Axes x" - If AnFanglinien.IsChecked Then WarnLog "To Snap Lines x" - If AnSeitenraendern.IsChecked Then WarnLog "To The Page Margins x" - If AmObjektrahmen.IsChecked Then WarnLog "To Object Frame x" - If AnObjektpunkten.IsChecked Then WarnLog "To Object Points x" + If AnFanglinien.IsChecked Then WarnLog "To Snap Lines x" + If AnSeitenraendern.IsChecked Then WarnLog "To The Page Margins x" + If AmObjektrahmen.IsChecked Then WarnLog "To Object Frame x" + If AnObjektpunkten.IsChecked Then WarnLog "To Object Points x" - If BeimErzeugenUndBewegen.IsChecked Then WarnLog "When Creating or Moving Objects x" - If LaengereKantenlaenge.IsChecked Then WarnLog "Extend Edges x" - If BeimDrehen.IsChecked Then WarnLog "When Rotating x" + If BeimErzeugenUndBewegen.IsChecked Then WarnLog "When Creating or Moving Objects x" + If LaengereKantenlaenge.IsChecked Then WarnLog "Extend Edges x" + If BeimDrehen.IsChecked Then WarnLog "When Rotating x" - If ( RasterAufloesungXAchse.GetText <> sTempMetricField(1) ) Then WarnLog "GridResolutionXAxel is not min." - If ( RasterAufloesungYAchse.GetText <> sTempMetricField(2) ) Then WarnLog "GridResolutionYAxel is not min." - If ( RasterUnterteilungXAchse.GetText <> sTempMetricField(3) ) Then WarnLog "GridSubdivisionXAxel is not min." - If ( RasterUnterteilungYAchse.GetText <> sTempMetricField(4) ) Then WarnLog "GridSubdivisionYAxel is not min." - If ( FangenFangbereich.GetText <> sTempMetricField(5) ) Then WarnLog "Snap Snap Range is not min." - If ( Punktreduktion.GetText <> sTempMetricField(6) ) Then WarnLog "Point Reduction is not min." + If ( RasterAufloesungXAchse.GetText <> sTempMetricField(1) ) Then WarnLog "GridResolutionXAxel is not min." + If ( RasterAufloesungYAchse.GetText <> sTempMetricField(2) ) Then WarnLog "GridResolutionYAxel is not min." + If ( RasterUnterteilungXAchse.GetText <> sTempMetricField(3) ) Then WarnLog "GridSubdivisionXAxel is not min." + If ( RasterUnterteilungYAchse.GetText <> sTempMetricField(4) ) Then WarnLog "GridSubdivisionYAxel is not min." + If ( FangenFangbereich.GetText <> sTempMetricField(5) ) Then WarnLog "Snap Snap Range is not min." + If ( Punktreduktion.GetText <> sTempMetricField(6) ) Then WarnLog "Point Reduction is not min." - Printlog "all Check -> x" + Printlog "all Check -> x" - FangrasterBenutzen.Check - RasterSichtbar.Check + FangrasterBenutzen.Check + RasterSichtbar.Check - AchsenSynchronisieren.Check + AchsenSynchronisieren.Check printlog "Synchronize axes check" - RasterAufloesungXAchse.ToMax - sleep 1 - sTempMetricField(1) = RasterAufloesungXAchse.GetText - if RasterAufloesungYAchse.GetText <> sTempMetricField(1) then Warnlog "Y-axis res. differs from X-axis" - RasterUnterteilungXAchse.ToMax - sleep 1 - sTempMetricField(3) = RasterUnterteilungXAchse.GetText - if RasterUnterteilungYAchse.GetText <> sTempMetricField(3) then Warnlog "Y-axis sub. differs from X-axis" -'-------------------------------------------- - sTempMetricField(2) = RasterAufloesungYAchse.GetText - sTempMetricField(4) = RasterUnterteilungYAchse.GetText - - FangenFangbereich.Less - Punktreduktion.Less - sTempMetricField(5) = FangenFangbereich.GetText - sTempMetricField(6) = Punktreduktion.GetText - - AnFanglinien.Check - AnSeitenraendern.Check - AmObjektrahmen.Check - AnObjektpunkten.Check - - BeimErzeugenUndBewegen.Check - LaengereKantenlaenge.Check - BeimDrehen.Check - Winkel.ToMax - sTempMetricField(7) = Winkel.GetText + RasterAufloesungXAchse.ToMax + sleep 1 + sTempMetricField(1) = RasterAufloesungXAchse.GetText + if RasterAufloesungYAchse.GetText <> sTempMetricField(1) then Warnlog "Y-axis res. differs from X-axis" + RasterUnterteilungXAchse.ToMax + sleep 1 + sTempMetricField(3) = RasterUnterteilungXAchse.GetText + if RasterUnterteilungYAchse.GetText <> sTempMetricField(3) then Warnlog "Y-axis sub. differs from X-axis" + '-------------------------------------------- + sTempMetricField(2) = RasterAufloesungYAchse.GetText + sTempMetricField(4) = RasterUnterteilungYAchse.GetText + + FangenFangbereich.Less + Punktreduktion.Less + sTempMetricField(5) = FangenFangbereich.GetText + sTempMetricField(6) = Punktreduktion.GetText + + AnFanglinien.Check + AnSeitenraendern.Check + AmObjektrahmen.Check + AnObjektpunkten.Check + + BeimErzeugenUndBewegen.Check + LaengereKantenlaenge.Check + BeimDrehen.Check + Winkel.ToMax + sTempMetricField(7) = Winkel.GetText - Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK + Kontext "ExtrasOptionenDlg" + ExtrasOptionenDlg.OK - printlog "check if all Checked" - ToolsOptions - hToolsOptions (sApplication,"Grid") + printlog "check if all Checked" + ToolsOptions + hToolsOptions (sApplication,"Grid") - If True <> FangrasterBenutzen.IsChecked Then WarnLog "Snap to Grid o" - If True <> RasterSichtbar.IsChecked Then WarnLog "Visible Grid o" + If True <> FangrasterBenutzen.IsChecked Then WarnLog "Snap to Grid o" + If True <> RasterSichtbar.IsChecked Then WarnLog "Visible Grid o" - If True <> AchsenSynchronisieren.IsChecked Then WarnLog "Synchronize Axes o" + If True <> AchsenSynchronisieren.IsChecked Then WarnLog "Synchronize Axes o" - If True <> AnFanglinien.IsChecked Then WarnLog "to snap lines o" - If True <> AnSeitenraendern.IsChecked Then WarnLog "to the page margins o" - If True <> AmObjektrahmen.IsChecked Then WarnLog "to object frame o" - If True <> AnObjektpunkten.IsChecked Then WarnLog "To object points o" + If True <> AnFanglinien.IsChecked Then WarnLog "to snap lines o" + If True <> AnSeitenraendern.IsChecked Then WarnLog "to the page margins o" + If True <> AmObjektrahmen.IsChecked Then WarnLog "to object frame o" + If True <> AnObjektpunkten.IsChecked Then WarnLog "To object points o" - If True <> BeimErzeugenUndBewegen.IsChecked Then WarnLog "When creating or moving objects o" - If True <> LaengereKantenlaenge.IsChecked Then WarnLog "Extend Edges o" - If True <> BeimDrehen.IsChecked Then WarnLog "When Rotating o" - If ( Winkel.GetText <> sTempMetricField(7) ) Then WarnLog "Angle is not max." + If True <> BeimErzeugenUndBewegen.IsChecked Then WarnLog "When creating or moving objects o" + If True <> LaengereKantenlaenge.IsChecked Then WarnLog "Extend Edges o" + If True <> BeimDrehen.IsChecked Then WarnLog "When Rotating o" + If ( Winkel.GetText <> sTempMetricField(7) ) Then WarnLog "Angle is not max." - If ( RasterAufloesungXAchse.GetText <> sTempMetricField(1) ) Then WarnLog "GridResolutionXAxel is not max.Bug 54934 in 01:" - If ( RasterAufloesungYAchse.GetText <> sTempMetricField(2) ) Then WarnLog "GridResolutionYAxel is not max." - If ( RasterUnterteilungXAchse.GetText <> sTempMetricField(3) ) Then WarnLog "GridSubdivisionXAxel is not max." - If ( RasterUnterteilungYAchse.GetText <> sTempMetricField(4) ) Then WarnLog "GridSubdivisionYAxel is not max." - If ( FangenFangbereich.GetText <> sTempMetricField(5) ) Then WarnLog "Snap Snap Range is not max." - If ( Punktreduktion.GetText <> sTempMetricField(6) ) Then WarnLog "Pointreduction is not max." + If ( RasterAufloesungXAchse.GetText <> sTempMetricField(1) ) Then WarnLog "GridResolutionXAxel is not max.Bug 54934 in 01:" + If ( RasterAufloesungYAchse.GetText <> sTempMetricField(2) ) Then WarnLog "GridResolutionYAxel is not max." + If ( RasterUnterteilungXAchse.GetText <> sTempMetricField(3) ) Then WarnLog "GridSubdivisionXAxel is not max." + If ( RasterUnterteilungYAchse.GetText <> sTempMetricField(4) ) Then WarnLog "GridSubdivisionYAxel is not max." + If ( FangenFangbereich.GetText <> sTempMetricField(5) ) Then WarnLog "Snap Snap Range is not max." + If ( Punktreduktion.GetText <> sTempMetricField(6) ) Then WarnLog "Pointreduction is not max." - Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK + Kontext "ExtrasOptionenDlg" + ExtrasOptionenDlg.OK '------------------------------------------------------------------------------- printlog "Function Test: Grid Resolution" - printlog "gTesttoolPath + graphics\required\input\gridtst.od?" - - if ( gApplication = "IMPRESS" ) then + printlog "gTesttoolPath + graphics\required\input\gridtst.od?" + if ( gApplication = "IMPRESS" ) then ExtensionString = "odp" else ExtensionString = "odg" end if - - Call hFileOpen ( gTesttoolPath + "graphics\required\input\gridtst."+ExtensionString, False ) - sleep 5 - printlog "If write-protected - open as Temp-file" - Kontext "Standardbar" - if Bearbeiten.GetState(2) <> 1 then + Call hFileOpen ( gTesttoolPath + "graphics\required\input\gridtst."+ExtensionString, False ) + sleep 5 + printlog "If write-protected - open as Temp-file" + Kontext "Standardbar" + if Bearbeiten.GetState(2) <> 1 then Bearbeiten.Click '0 = not pressed. 1 = pressed. Kontext if Active.Exists() then - Active.Yes + Active.Yes else warnlog "No messagebox after making document editable? - Test canceled here" goto endsub endif - endif - sleep (8) - if uCase(gApplication) = "IMPRESS" then + endif + sleep (8) + if uCase(gApplication) = "IMPRESS" then Kontext "DocumentImpress" - else + else Kontext "DocumentDraw" - endif - printlog "select grafik element" - for iTry = 1 to 20 + endif + printlog "select grafik element" + for iTry = 1 to 20 try EditSelectAll printlog "EditSelectAll ready after " & iTry/10 & " seconds" @@ -769,21 +764,21 @@ testcase tToolsOptionsDrawGrid (sApplication as string) ContextPositionAndSize Kontext active.setpage TabPositionAndSize - Kontext "TabPositionAndSize" - sleep 1 - if ( StrToDouble (PositionX.GetText) <> 0 ) Then WarnLog "HorizontalBy wrong presupposition != 0" - if ( StrToDouble (Positiony.GetText) <> 0 ) Then WarnLog "VerticalBy wrong presupposition != 0" - TabPositionAndSize.Cancel - sleep (3) - - printlog "move grafik with <Alt> + <up/down>" + Kontext "TabPositionAndSize" + sleep 1 + if ( StrToDouble (PositionX.GetText) <> 0 ) Then WarnLog "HorizontalBy wrong presupposition != 0" + if ( StrToDouble (Positiony.GetText) <> 0 ) Then WarnLog "VerticalBy wrong presupposition != 0" + TabPositionAndSize.Cancel + sleep (3) + + printlog "move grafik with <Alt> + <up/down>" printlog "resulting step = defined for accessability <> one pixel with cursor traveling" - hTypeKeys "<Mod2 Down>" + hTypeKeys "<Mod2 Down>" sleep (3) - hTypeKeys "<Mod2 Right>" + hTypeKeys "<Mod2 Right>" - printlog "check if @ (1,1) Current-Measure-Unit :-)" - for iTry = 1 to 20 + printlog "check if @ (1,1) Current-Measure-Unit :-)" + for iTry = 1 to 20 try EditSelectAll printlog "EditSelectAll ready after " & iTry/10 & " seconds" @@ -792,18 +787,18 @@ testcase tToolsOptionsDrawGrid (sApplication as string) wait( 100 ) endcatch next iTry - try + try ContextPositionAndSize - catch + catch printlog "Why is format position and size not enabled ? Wrong focus?" - endcatch + endcatch Kontext active.setpage TabPositionAndSize - Kontext "TabPositionAndSize" - Printlog "X difference is: '"+StrToDouble (PositionX.GetText)+"'; "+PositionX.GetText - Printlog "Y difference is: '"+StrToDouble (PositionY.GetText)+"'; "+PositionY.GetText - TabPositionAndSize.Cancel -' sleep (3) + Kontext "TabPositionAndSize" + Printlog "X difference is: '"+StrToDouble (PositionX.GetText)+"'; "+PositionX.GetText + Printlog "Y difference is: '"+StrToDouble (PositionY.GetText)+"'; "+PositionY.GetText + TabPositionAndSize.Cancel + ' sleep (3) hCloseDocument @@ -813,27 +808,27 @@ testcase tToolsOptionsDrawGrid (sApplication as string) ToolsOptions hToolsOptions (sApplication,"Grid") - If ( irgendwas(2) = TRUE ) Then FangrasterBenutzen.Check Else FangrasterBenutzen.UnCheck - If ( irgendwas(3) = TRUE ) Then RasterSichtbar.Check Else RasterSichtbar.UnCheck - - If ( irgendwas(4) = TRUE ) Then AchsenSynchronisieren.Check Else AchsenSynchronisieren.UnCheck - - If ( irgendwas(5) = TRUE ) Then AnFanglinien.Check Else AnFanglinien.UnCheck - If ( irgendwas(6) = TRUE ) Then AnSeitenraendern.Check Else AnSeitenraendern.UnCheck - If ( irgendwas(7) = TRUE ) Then AmObjektrahmen.Check Else AmObjektrahmen.UnCheck - If ( irgendwas(8) = TRUE ) Then AnObjektpunkten.Check Else AnObjektpunkten.UnCheck - - If ( irgendwas(6) = TRUE ) Then BeimErzeugenUndBewegen.Check Else BeimErzeugenUndBewegen.UnCheck - If ( irgendwas(7) = TRUE ) Then LaengereKantenlaenge.Check Else LaengereKantenlaenge.UnCheck - If ( irgendwas(8) = TRUE ) Then BeimDrehen.Check Else BeimDrehen.UnCheck - if BeimDrehen.IsChecked then Winkel.SetText (sMetricField(7)) - - RasterAufloesungXAchse.SetText (sMetricField(1)) - RasterAufloesungYAchse.SetText (sMetricField(2)) - RasterUnterteilungXAchse.SetText (sMetricField(3)) - RasterUnterteilungYAchse.SetText (sMetricField(4)) - FangenFangbereich.SetText (sMetricField(5)) - Punktreduktion.SetText (sMetricField(6)) + If ( irgendwas(2) = TRUE ) Then FangrasterBenutzen.Check Else FangrasterBenutzen.UnCheck + If ( irgendwas(3) = TRUE ) Then RasterSichtbar.Check Else RasterSichtbar.UnCheck + + If ( irgendwas(4) = TRUE ) Then AchsenSynchronisieren.Check Else AchsenSynchronisieren.UnCheck + + If ( irgendwas(5) = TRUE ) Then AnFanglinien.Check Else AnFanglinien.UnCheck + If ( irgendwas(6) = TRUE ) Then AnSeitenraendern.Check Else AnSeitenraendern.UnCheck + If ( irgendwas(7) = TRUE ) Then AmObjektrahmen.Check Else AmObjektrahmen.UnCheck + If ( irgendwas(8) = TRUE ) Then AnObjektpunkten.Check Else AnObjektpunkten.UnCheck + + If ( irgendwas(6) = TRUE ) Then BeimErzeugenUndBewegen.Check Else BeimErzeugenUndBewegen.UnCheck + If ( irgendwas(7) = TRUE ) Then LaengereKantenlaenge.Check Else LaengereKantenlaenge.UnCheck + If ( irgendwas(8) = TRUE ) Then BeimDrehen.Check Else BeimDrehen.UnCheck + if BeimDrehen.IsChecked then Winkel.SetText (sMetricField(7)) + + RasterAufloesungXAchse.SetText (sMetricField(1)) + RasterAufloesungYAchse.SetText (sMetricField(2)) + RasterUnterteilungXAchse.SetText (sMetricField(3)) + RasterUnterteilungYAchse.SetText (sMetricField(4)) + FangenFangbereich.SetText (sMetricField(5)) + Punktreduktion.SetText (sMetricField(6)) Kontext "ExtrasOptionenDlg" ExtrasOptionenDlg.OK @@ -845,58 +840,58 @@ endcase 'tToolsOptionsDrawGrid testcase tToolsOptionsDrawPrint (sApplication as string) - dim irgendwas(11) as boolean - dim bRadioBut(7) as boolean ' RadioButtons - dim bTempRadioBut(7) as boolean - dim iShouldHaveBeenAMultiListBox as integer + dim irgendwas(11) as boolean + dim bRadioBut(7) as boolean ' RadioButtons + dim bTempRadioBut(7) as boolean + dim iShouldHaveBeenAMultiListBox as integer - hNewDocument + hNewDocument - printlog "save states" - ToolsOptions - hToolsOptions (sApplication,"Print") + printlog "save states" + ToolsOptions + hToolsOptions (sApplication,"Print") - Standard.Check - irgendwas(1) = Seitenname.IsChecked - irgendwas(2) = Datum.IsChecked - irgendwas(3) = Zeit.IsChecked - irgendwas(4) = AusgeblendeteSeitenDrucken.IsChecked + Standard.Check + irgendwas(1) = Seitenname.IsChecked + irgendwas(2) = Datum.IsChecked + irgendwas(3) = Zeit.IsChecked + irgendwas(4) = AusgeblendeteSeitenDrucken.IsChecked - Prospekt.Check - irgendwas(5) = Vorderseite.IsChecked - irgendwas(6) = Rueckseite.IsChecked + Prospekt.Check + irgendwas(5) = Vorderseite.IsChecked + irgendwas(6) = Rueckseite.IsChecked - irgendwas(7) = AusDruckereinstellung.IsChecked + irgendwas(7) = AusDruckereinstellung.IsChecked - bRadioBut(1) = StandardAusgabe.IsChecked - bRadioBut(2) = Graustufen.IsChecked - bRadioBut(3) = SchwarzWeiss.IsChecked - bRadioBut(4) = Standard.IsChecked - bRadioBut(5) = AnSeitengroesseAnpassen.IsChecked - bRadioBut(6) = SeitenKacheln.IsChecked + bRadioBut(1) = StandardAusgabe.IsChecked + bRadioBut(2) = Graustufen.IsChecked + bRadioBut(3) = SchwarzWeiss.IsChecked + bRadioBut(4) = Standard.IsChecked + bRadioBut(5) = AnSeitengroesseAnpassen.IsChecked + bRadioBut(6) = SeitenKacheln.IsChecked - printlog "all states inverting" + printlog "all states inverting" - Standard.Check - if irgendwas(1) Then Seitenname.UnCheck Else Seitenname.Check - if irgendwas(2) Then Datum.UnCheck Else Datum.Check - if irgendwas(3) Then Zeit.UnCheck Else Zeit.Check - if irgendwas(4) Then AusgeblendeteSeitenDrucken.UnCheck Else AusgeblendeteSeitenDrucken.Check + Standard.Check + if irgendwas(1) Then Seitenname.UnCheck Else Seitenname.Check + if irgendwas(2) Then Datum.UnCheck Else Datum.Check + if irgendwas(3) Then Zeit.UnCheck Else Zeit.Check + if irgendwas(4) Then AusgeblendeteSeitenDrucken.UnCheck Else AusgeblendeteSeitenDrucken.Check - Prospekt.Check - if irgendwas(5) Then Vorderseite.UnCheck Else Vorderseite.Check - if irgendwas(6) Then Rueckseite.UnCheck Else Rueckseite.Check + Prospekt.Check + if irgendwas(5) Then Vorderseite.UnCheck Else Vorderseite.Check + if irgendwas(6) Then Rueckseite.UnCheck Else Rueckseite.Check - if irgendwas(7) Then AusDruckereinstellung.UnCheck Else AusDruckereinstellung.Check + if irgendwas(7) Then AusDruckereinstellung.UnCheck Else AusDruckereinstellung.Check - if (StandardAusgabe.IsChecked = True) Then Graustufen.Check Else StandardAusgabe.Check - bTempRadioBut(1) = StandardAusgabe.IsChecked - bTempRadioBut(2) = Graustufen.IsChecked - bTempRadioBut(3) = SchwarzWeiss.IsChecked - if (Standard.IsChecked = True) Then AnSeitengroesseAnpassen.Check Else Standard.Check - bRadioBut(4) = Standard.IsChecked - bRadioBut(5) = AnSeitengroesseAnpassen.IsChecked - bRadioBut(6) = SeitenKacheln.IsChecked + if (StandardAusgabe.IsChecked = True) Then Graustufen.Check Else StandardAusgabe.Check + bTempRadioBut(1) = StandardAusgabe.IsChecked + bTempRadioBut(2) = Graustufen.IsChecked + bTempRadioBut(3) = SchwarzWeiss.IsChecked + if (Standard.IsChecked = True) Then AnSeitengroesseAnpassen.Check Else Standard.Check + bRadioBut(4) = Standard.IsChecked + bRadioBut(5) = AnSeitengroesseAnpassen.IsChecked + bRadioBut(6) = SeitenKacheln.IsChecked Kontext "ExtrasOptionenDlg" ExtrasOptionenDlg.OK @@ -910,145 +905,137 @@ testcase tToolsOptionsDrawPrint (sApplication as string) ToolsOptions hToolsOptions (sApplication,"Print") - Standard.Check - If ( irgendwas(1) = Seitenname.IsChecked ) Then WarnLog "Pagename state changed" - If ( irgendwas(2) = Datum.IsChecked ) Then WarnLog "Date state changed" - If ( irgendwas(3) = Zeit.IsChecked ) Then WarnLog "Time state changed" - If ( irgendwas(4) = AusgeblendeteSeitenDrucken.IsChecked ) Then WarnLog "Hidden Pages state changed" + Standard.Check + If ( irgendwas(1) = Seitenname.IsChecked ) Then WarnLog "Pagename state changed" + If ( irgendwas(2) = Datum.IsChecked ) Then WarnLog "Date state changed" + If ( irgendwas(3) = Zeit.IsChecked ) Then WarnLog "Time state changed" + If ( irgendwas(4) = AusgeblendeteSeitenDrucken.IsChecked ) Then WarnLog "Hidden Pages state changed" - Prospekt.Check - If ( irgendwas(5) = Vorderseite.IsChecked ) Then WarnLog "Brochure Front state changed" - If ( irgendwas(6) = Rueckseite.IsChecked ) Then WarnLog "Brochure Back state changed" + Prospekt.Check + If ( irgendwas(5) = Vorderseite.IsChecked ) Then WarnLog "Brochure Front state changed" + If ( irgendwas(6) = Rueckseite.IsChecked ) Then WarnLog "Brochure Back state changed" - If ( irgendwas(7) = AusDruckereinstellung.IsChecked ) Then WarnLog "Paper Tray From Printer Settings state changed" + If ( irgendwas(7) = AusDruckereinstellung.IsChecked ) Then WarnLog "Paper Tray From Printer Settings state changed" - If ( bTempRadioBut(1) <> StandardAusgabe.IsChecked ) Then WarnLog "Quality Default state changed" - If ( bTempRadioBut(2) <> Graustufen.IsChecked ) Then WarnLog "Quality Grayscale state changed" - If ( bTempRadioBut(3) <> SchwarzWeiss.IsChecked ) Then WarnLog "Quality Black & White state changed" - If ( bTempRadioBut(4) <> Standard.IsChecked ) Then WarnLog "Page Options Default state changed" - If ( bTempRadioBut(5) <> AnSeitengroesseAnpassen.IsChecked ) Then WarnLog "Page Options Fit to Page state changed" - If ( bTempRadioBut(6) <> SeitenKacheln.IsChecked ) Then WarnLog "Page Options Tile Pages state changed" + If ( bTempRadioBut(1) <> StandardAusgabe.IsChecked ) Then WarnLog "Quality Default state changed" + If ( bTempRadioBut(2) <> Graustufen.IsChecked ) Then WarnLog "Quality Grayscale state changed" + If ( bTempRadioBut(3) <> SchwarzWeiss.IsChecked ) Then WarnLog "Quality Black & White state changed" + If ( bTempRadioBut(4) <> Standard.IsChecked ) Then WarnLog "Page Options Default state changed" + If ( bTempRadioBut(5) <> AnSeitengroesseAnpassen.IsChecked ) Then WarnLog "Page Options Fit to Page state changed" + If ( bTempRadioBut(6) <> SeitenKacheln.IsChecked ) Then WarnLog "Page Options Tile Pages state changed" printlog "all UnCheck -> o" - Standard.Check - Seitenname.UnCheck - Datum.UnCheck - Zeit.UnCheck - AusgeblendeteSeitenDrucken.UnCheck - - Prospekt.Check - Vorderseite.UnCheck - Rueckseite.UnCheck - - AusDruckereinstellung.UnCheck - - if (Graustufen.IsChecked = True) Then SchwarzWeiss.Check Else Graustufen.Check - bTempRadioBut(1) = StandardAusgabe.IsChecked - bTempRadioBut(2) = Graustufen.IsChecked - bTempRadioBut(3) = SchwarzWeiss.IsChecked - if (AnSeitengroesseAnpassen.IsChecked = True) Then SeitenKacheln.Check Else AnSeitengroesseAnpassen.Check - bRadioBut(4) = Standard.IsChecked - bRadioBut(5) = AnSeitengroesseAnpassen.IsChecked - bRadioBut(6) = SeitenKacheln.IsChecked - - Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK - - printlog "check if all UnChecked" - ToolsOptions - hToolsOptions (sApplication,"Print") - - Standard.Check - If Seitenname.IsChecked Then WarnLog "Print: Page Name x" - If Datum.IsChecked Then WarnLog "Print: Date x" - If Zeit.IsChecked Then WarnLog "Print: Time x" - If AusgeblendeteSeitenDrucken.IsChecked Then WarnLog "Print: Hidden Pages x" - - Prospekt.Check - If Vorderseite.IsChecked Then WarnLog "Page options: Brochure: Front x" - If Rueckseite.IsChecked Then WarnLog "Page options: Brochure: Back x" + Standard.Check + Seitenname.UnCheck + Datum.UnCheck + Zeit.UnCheck + AusgeblendeteSeitenDrucken.UnCheck - If AusDruckereinstellung.IsChecked Then WarnLog "Page options: Paper tray from printer settings x" + Prospekt.Check + Vorderseite.UnCheck + Rueckseite.UnCheck - If ( bTempRadioBut(1) <> StandardAusgabe.IsChecked) Then WarnLog "Quality: Default state changed" - If ( bTempRadioBut(2) <> Graustufen.IsChecked ) Then WarnLog "Quality: Grayscale state changed" - If ( bTempRadioBut(3) <> SchwarzWeiss.IsChecked ) Then WarnLog "Quality: Black & White state changed" - If ( bTempRadioBut(4) <> Standard.IsChecked ) Then WarnLog "Page options: Default state changed" - If ( bTempRadioBut(5) <> AnSeitengroesseAnpassen.IsChecked ) Then WarnLog "Page options: Fit to page state changed" - If ( bTempRadioBut(6) <> SeitenKacheln.IsChecked ) Then WarnLog "Page options: Tile Pages state changed" + AusDruckereinstellung.UnCheck - Printlog "all Check -> x" + if (Graustufen.IsChecked = True) Then SchwarzWeiss.Check Else Graustufen.Check + bTempRadioBut(1) = StandardAusgabe.IsChecked + bTempRadioBut(2) = Graustufen.IsChecked + bTempRadioBut(3) = SchwarzWeiss.IsChecked + if (AnSeitengroesseAnpassen.IsChecked = True) Then SeitenKacheln.Check Else AnSeitengroesseAnpassen.Check + bRadioBut(4) = Standard.IsChecked + bRadioBut(5) = AnSeitengroesseAnpassen.IsChecked + bRadioBut(6) = SeitenKacheln.IsChecked - Standard.Check - Seitenname.Check - Datum.Check - Zeit.Check - AusgeblendeteSeitenDrucken.Check - - Prospekt.Check - Vorderseite.Check - Rueckseite.Check - - AusDruckereinstellung.Check + Kontext "ExtrasOptionenDlg" + ExtrasOptionenDlg.OK - if (SchwarzWeiss.IsChecked = True) Then StandardAusgabe.Check Else SchwarzWeiss.Check - bTempRadioBut(1) = StandardAusgabe.IsChecked - bTempRadioBut(2) = Graustufen.IsChecked - bTempRadioBut(3) = SchwarzWeiss.IsChecked - if (SeitenKacheln.IsChecked = True) Then Standard.Check Else SeitenKacheln.Check - bRadioBut(4) = Standard.IsChecked - bRadioBut(5) = AnSeitengroesseAnpassen.IsChecked - bRadioBut(6) = SeitenKacheln.IsChecked + printlog "check if all UnChecked" + ToolsOptions + hToolsOptions (sApplication,"Print") - Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK + Standard.Check + If Seitenname.IsChecked Then WarnLog "Print: Page Name x" + If Datum.IsChecked Then WarnLog "Print: Date x" + If Zeit.IsChecked Then WarnLog "Print: Time x" + If AusgeblendeteSeitenDrucken.IsChecked Then WarnLog "Print: Hidden Pages x" + Prospekt.Check + If Vorderseite.IsChecked Then WarnLog "Page options: Brochure: Front x" + If Rueckseite.IsChecked Then WarnLog "Page options: Brochure: Back x" + If AusDruckereinstellung.IsChecked Then WarnLog "Page options: Paper tray from printer settings x" + If ( bTempRadioBut(1) <> StandardAusgabe.IsChecked) Then WarnLog "Quality: Default state changed" + If ( bTempRadioBut(2) <> Graustufen.IsChecked ) Then WarnLog "Quality: Grayscale state changed" + If ( bTempRadioBut(3) <> SchwarzWeiss.IsChecked ) Then WarnLog "Quality: Black & White state changed" + If ( bTempRadioBut(4) <> Standard.IsChecked ) Then WarnLog "Page options: Default state changed" + If ( bTempRadioBut(5) <> AnSeitengroesseAnpassen.IsChecked ) Then WarnLog "Page options: Fit to page state changed" + If ( bTempRadioBut(6) <> SeitenKacheln.IsChecked ) Then WarnLog "Page options: Tile Pages state changed" + + Printlog "all Check -> x" + Standard.Check + Seitenname.Check + Datum.Check + Zeit.Check + AusgeblendeteSeitenDrucken.Check + Prospekt.Check + Vorderseite.Check + Rueckseite.Check + AusDruckereinstellung.Check + if (SchwarzWeiss.IsChecked = True) Then StandardAusgabe.Check Else SchwarzWeiss.Check + bTempRadioBut(1) = StandardAusgabe.IsChecked + bTempRadioBut(2) = Graustufen.IsChecked + bTempRadioBut(3) = SchwarzWeiss.IsChecked + if (SeitenKacheln.IsChecked = True) Then Standard.Check Else SeitenKacheln.Check + bRadioBut(4) = Standard.IsChecked + bRadioBut(5) = AnSeitengroesseAnpassen.IsChecked + bRadioBut(6) = SeitenKacheln.IsChecked - printlog "check if all Checked" - ToolsOptions - hToolsOptions (sApplication,"Print") + Kontext "ExtrasOptionenDlg" + ExtrasOptionenDlg.OK - Standard.Check - If True <> Seitenname.IsChecked Then WarnLog "Print: Page name o" - If True <> Datum.IsChecked Then WarnLog "Print: Date o" - If True <> Zeit.IsChecked Then WarnLog "Print: Time o" - If True <> AusgeblendeteSeitenDrucken.IsChecked Then WarnLog "Print: Hidden pages o" + printlog "check if all Checked" + ToolsOptions + hToolsOptions (sApplication,"Print") - Prospekt.Check - If True <> Vorderseite.IsChecked Then WarnLog "Page options: Brochure: Front o" - If True <> Rueckseite.IsChecked Then WarnLog "Page options: Brochure: Back o" + Standard.Check + If True <> Seitenname.IsChecked Then WarnLog "Print: Page name o" + If True <> Datum.IsChecked Then WarnLog "Print: Date o" + If True <> Zeit.IsChecked Then WarnLog "Print: Time o" + If True <> AusgeblendeteSeitenDrucken.IsChecked Then WarnLog "Print: Hidden pages o" - If True <> AusDruckereinstellung.IsChecked Then WarnLog "Page options: Paper tray from printer settings o" + Prospekt.Check + If True <> Vorderseite.IsChecked Then WarnLog "Page options: Brochure: Front o" + If True <> Rueckseite.IsChecked Then WarnLog "Page options: Brochure: Back o" - If ( bTempRadioBut(1) <> StandardAusgabe.IsChecked) Then WarnLog "Quality: Default state changed" - If ( bTempRadioBut(2) <> Graustufen.IsChecked ) Then WarnLog "Quality: Grayscale state changed" - If ( bTempRadioBut(3) <> SchwarzWeiss.IsChecked ) Then WarnLog "Quality: Black & White state changed" - If ( bTempRadioBut(4) <> Standard.IsChecked ) Then WarnLog "Page options: Default state changed" - If ( bTempRadioBut(5) <> AnSeitengroesseAnpassen.IsChecked ) Then WarnLog "Page options: Fit to page state changed" - If ( bTempRadioBut(6) <> SeitenKacheln.IsChecked ) Then WarnLog "Page options: Tile pages state changed" + If True <> AusDruckereinstellung.IsChecked Then WarnLog "Page options: Paper tray from printer settings o" - printlog "restore states" + If ( bTempRadioBut(1) <> StandardAusgabe.IsChecked) Then WarnLog "Quality: Default state changed" + If ( bTempRadioBut(2) <> Graustufen.IsChecked ) Then WarnLog "Quality: Grayscale state changed" + If ( bTempRadioBut(3) <> SchwarzWeiss.IsChecked ) Then WarnLog "Quality: Black & White state changed" + If ( bTempRadioBut(4) <> Standard.IsChecked ) Then WarnLog "Page options: Default state changed" + If ( bTempRadioBut(5) <> AnSeitengroesseAnpassen.IsChecked ) Then WarnLog "Page options: Fit to page state changed" + If ( bTempRadioBut(6) <> SeitenKacheln.IsChecked ) Then WarnLog "Page options: Tile pages state changed" - Standard.Check - If ( irgendwas(1) = TRUE ) Then Seitenname.Check Else Seitenname.UnCheck - If ( irgendwas(2) = TRUE ) Then Datum.Check Else Datum.UnCheck - If ( irgendwas(3) = TRUE ) Then Zeit.Check Else Zeit.UnCheck - If ( irgendwas(4) = TRUE ) Then AusgeblendeteSeitenDrucken.Check Else AusgeblendeteSeitenDrucken.UnCheck + printlog "restore states" - Prospekt.Check - If ( irgendwas(5) = TRUE ) Then Vorderseite.Check Else Vorderseite.UnCheck - If ( irgendwas(6) = TRUE ) Then Rueckseite.Check Else Rueckseite.UnCheck + Standard.Check + If ( irgendwas(1) = TRUE ) Then Seitenname.Check Else Seitenname.UnCheck + If ( irgendwas(2) = TRUE ) Then Datum.Check Else Datum.UnCheck + If ( irgendwas(3) = TRUE ) Then Zeit.Check Else Zeit.UnCheck + If ( irgendwas(4) = TRUE ) Then AusgeblendeteSeitenDrucken.Check Else AusgeblendeteSeitenDrucken.UnCheck - If ( irgendwas(7) = TRUE ) Then AusDruckereinstellung.Check Else AusDruckereinstellung.UnCheck + Prospekt.Check + If ( irgendwas(5) = TRUE ) Then Vorderseite.Check Else Vorderseite.UnCheck + If ( irgendwas(6) = TRUE ) Then Rueckseite.Check Else Rueckseite.UnCheck - If ( bRadioBut(1) = TRUE ) Then StandardAusgabe.Check - If ( bRadioBut(2) = TRUE ) Then Graustufen.Check - If ( bRadioBut(3) = TRUE ) Then SchwarzWeiss.Check - Standard.Check + If ( irgendwas(7) = TRUE ) Then AusDruckereinstellung.Check Else AusDruckereinstellung.UnCheck - Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK + If ( bRadioBut(1) = TRUE ) Then StandardAusgabe.Check + If ( bRadioBut(2) = TRUE ) Then Graustufen.Check + If ( bRadioBut(3) = TRUE ) Then SchwarzWeiss.Check + Standard.Check - hCloseDocument -endcase 'tToolsOptionsDrawPrint + Kontext "ExtrasOptionenDlg" + ExtrasOptionenDlg.OK + hCloseDocument +endcase 'tToolsOptionsDrawPrint
\ No newline at end of file diff --git a/testautomation/graphics/required/includes/global/id_opt_2.inc b/testautomation/graphics/required/includes/global/id_opt_2.inc index 8d38b2b9dc92..0d2f050f4916 100644 --- a/testautomation/graphics/required/includes/global/id_opt_2.inc +++ b/testautomation/graphics/required/includes/global/id_opt_2.inc @@ -37,15 +37,15 @@ testcase tToolsOptionsMeasurementUnit (sApplication as string) dim iCount2 as integer dim sUnitOptions as string dim sUnitDialog as string - + hNewDocument - sleep 1 + sleep 1 ToolsOptions hToolsOptions (sApplication,"General") iCount2 = Masseinheit.GetSelIndex printlog "current measurement unit is: " & iCount2 iCount = Masseinheit.GetItemCount - + Kontext "ExtrasOptionenDlg" ExtrasOptionenDlg.OK printlog "----------------------" @@ -56,14 +56,11 @@ testcase tToolsOptionsMeasurementUnit (sApplication as string) for i=1 to iCount ToolsOptions hToolsOptions (sApplication,"General") - Masseinheit.select i sUnitOptions = GetMeasUnit(Tabulatorabstand.getText) ' (1) printlog "(" + i + "/" + iCount + "): '" + Masseinheit.getSelText + "' - " + sUnitOptions + " (1)" - Kontext "ExtrasOptionenDlg" ExtrasOptionenDlg.OK - Format3D_Effects Kontext "Drei_D_Effekte" Geometrie.Click @@ -74,7 +71,6 @@ testcase tToolsOptionsMeasurementUnit (sApplication as string) printlog "Measurement Unit is same for Options:'" + sUnitOptions + "' and Depth:'" + getMeasUnit(Tiefe.getText) + "' (3)" endif Drei_D_Effekte.close - FormatParagraph Kontext Messagebox.SetPage TabEinzuegeUndAbstaende @@ -86,9 +82,8 @@ testcase tToolsOptionsMeasurementUnit (sApplication as string) printlog "Measurement Unit is same for Options:'" + sUnitOptions + "' and Vonlinks:'" + getMeasUnit(Vonlinks.getText) + "' Paragraph" endif TabEinzuegeUndAbstaende.cancel - next i - + printlog "Setting back measurement to " & iCount2 ToolsOptions hToolsOptions (sApplication,"General") @@ -97,4 +92,4 @@ testcase tToolsOptionsMeasurementUnit (sApplication as string) ExtrasOptionenDlg.OK hCloseDocument -endcase 'tToolsOptionsMeasurementUnit +endcase 'tToolsOptionsMeasurementUnit
\ No newline at end of file diff --git a/testautomation/graphics/required/includes/impress/im_003_.inc b/testautomation/graphics/required/includes/impress/im_003_.inc index 744c24fb9a86..4cdd6a595cc6 100644 --- a/testautomation/graphics/required/includes/impress/im_003_.inc +++ b/testautomation/graphics/required/includes/impress/im_003_.inc @@ -130,7 +130,9 @@ testcase tiViewPanes hMenuSelectNr (4) endcase 'tiViewPanes + '--------------------------------------------------------- + testcase tiViewMasterView printlog "open application" Call hNewDocument @@ -150,7 +152,9 @@ testcase tiViewMasterView printlog "close application " Call hCloseDocument endcase 'tiViewMasterView + '--------------------------------------------------------- + testcase tiViewSlideMaster printlog "open application with : File->Autopilot->Presentation; OK; OK " @@ -187,7 +191,9 @@ testcase tiViewSlideMaster Call hCloseDocument endcase 'tiViewSlideMaster + '-------------------------------------------------------- + testcase tiViewToolbar_1 const DEFAULT_DELAY = 3 @@ -198,21 +204,18 @@ testcase tiViewToolbar_1 dim i as integer TestFile = ConvertPath (gTesttoolPath + "global\input\graf_inp\desp.bmp") - printlog "open application " Call hNewDocument + + printlog "use the empty layout" Call sSelectEmptyLayout + printlog "delete default content" hUseAsyncSlot( "EditSelectAll" ) Kontext "DocumentImpress" DocumentImpress.typeKeys("<DELETE>",true) - - printlog "use the empty layout" - call sSelectEmptyLayout - printlog "Insert->Graphic... : global\input\graf_inp\desp.bmp " hUseAsyncSlot( "InsertGraphicsFromFile" ) - Kontext "GrafikEinfuegenDlg" if ( GrafikEinfuegenDlg.exists( DEFAULT_DELAY ) ) then Dateiname.SetText( TestFile ) @@ -259,4 +262,4 @@ testcase tiViewToolbar_1 printlog "close application " Call hCloseDocument -endcase 'tiViewToolbar_1 +endcase 'tiViewToolbar_1
\ No newline at end of file diff --git a/testautomation/graphics/required/includes/impress/im_005_.inc b/testautomation/graphics/required/includes/impress/im_005_.inc index 146d37c0f669..f0703913e068 100644 --- a/testautomation/graphics/required/includes/impress/im_005_.inc +++ b/testautomation/graphics/required/includes/impress/im_005_.inc @@ -43,20 +43,16 @@ testcase tiFormatModifyLayout printlog "open application " Call hNewDocument - printlog( "Format/Page" ) FormatPage - Kontext "SeitenLayout" if ( SeitenLayout.exists( 2 ) ) then DialogTest ( SeitenLayout ) - printlog "cancel dialog 'Page Setup' " hCloseDialog( SeitenLayout, "Cancel" ) else warnlog( "Dialog <SeitenLayout> did not open" ) endif - printlog "close application" Call hCloseDocument diff --git a/testautomation/graphics/required/includes/impress/im_007_.inc b/testautomation/graphics/required/includes/impress/im_007_.inc index 68d271e30d7f..3d6fcbb3f4f5 100644 --- a/testautomation/graphics/required/includes/impress/im_007_.inc +++ b/testautomation/graphics/required/includes/impress/im_007_.inc @@ -95,9 +95,10 @@ testcase tSlideShowSlideShow endcatch printlog "close application " Call hCloseDocument - endcase 'tSlideShowSlideShow + '------------------------------------------------------------------------------- + testcase tSlideShowRehearseTimings goto endsub @@ -139,11 +140,11 @@ testcase tSlideShowRehearseTimings sleep 3 printlog "close application " Call hCloseDocument - endcase 'tSlideShowRehearseTimings + '------------------------------------------------------------------------------- -testcase tSlideShowSlideShowSettings +testcase tSlideShowSlideShowSettings printlog "open application " Call hNewDocument sleep 2 @@ -270,11 +271,11 @@ testcase tSlideShowCustomSlideShow endif printlog "close application " Call hCloseDocument - endcase 'tSlideShowCustomSlideShow + '------------------------------------------------------------------------------ -testcase tSlideShowSlideTransition +testcase tSlideShowSlideTransition dim i as integer dim a as integer dim iCount as integer @@ -326,7 +327,7 @@ testcase tSlideShowSlideTransition if (OeffnenDlg.exists (5)) then printlog "Read all entries in Listbox 'File type' " for i = 1 to Dateityp.getItemCount - printlog "" + i + ":" + Dateityp.getItemText(i) + printlog i + ":" + Dateityp.getItemText(i) next i printlog "cancel dialog 'Open' " OeffnenDlg.cancel @@ -375,7 +376,9 @@ testcase tSlideShowSlideTransition Call hCloseDocument endcase 'tSlideShowSlideTransition + '------------------------------------------------------------------------------- + testcase tSlideShowShowHideSlide printlog "open application " @@ -392,7 +395,9 @@ testcase tSlideShowShowHideSlide SlideShowShowSlide printlog "close application " Call hCloseDocument -endcase +endcase 'tSlideShowShowHideSlide + +'------------------------------------------------------------------------------- testcase tSlideShowAnimation printlog "open application " @@ -478,9 +483,10 @@ testcase tSlideShowAnimation Call hCloseDocument endcase 'tSlideShowShowHideSlide + '------------------------------------------------------------------------------- -testcase tSlideShowCustomAnimation +testcase tSlideShowCustomAnimation dim bError as boolean printlog "open application" @@ -641,7 +647,9 @@ testcase tSlideShowCustomAnimation Call hCloseDocument endcase 'tSlideShowCustomAnimation + '------------------------------------------------------------------------------- + testcase tSlideShowInteraction printlog "open application " @@ -732,4 +740,4 @@ testcase tSlideShowInteraction printlog "close application " Call hCloseDocument -endcase 'tSlideShowInteraction +endcase 'tSlideShowInteraction
\ No newline at end of file diff --git a/testautomation/graphics/required/includes/impress/im_011_.inc b/testautomation/graphics/required/includes/impress/im_011_.inc index 2c505f5facc2..28e58ee2e6e7 100644 --- a/testautomation/graphics/required/includes/impress/im_011_.inc +++ b/testautomation/graphics/required/includes/impress/im_011_.inc @@ -177,4 +177,4 @@ testcase tiDiaLeiste Call hCloseDocument sleep 2 -endcase 'tiDiaLeiste +endcase 'tiDiaLeiste
\ No newline at end of file diff --git a/testautomation/graphics/tools/makeLokaleTxt.bas b/testautomation/graphics/tools/makeLokaleTxt.bas index 687822938dd7..59e66af87ff6 100644..100755 --- a/testautomation/graphics/tools/makeLokaleTxt.bas +++ b/testautomation/graphics/tools/makeLokaleTxt.bas @@ -31,9 +31,9 @@ '* '\****************************************************************** -'/// run this script, if you are testing a new language. ///' -'/// it will add all relevant strings to the file qatesttool/graphics/tools/locale_1.txt ///' -'/// you just have to make sure, that every language only appears once in the file! ///' +printlog "Run this script, if you are testing a new language." +printlog "it will add all relevant strings to the file qatesttool/graphics/tools/locale_1.txt " +printlog "you just have to make sure, that every language only appears once in the file! " public glLocale (15*20) as string public S1 as string @@ -54,13 +54,6 @@ sub main warnlog "Locales file doesn't exist: '" + gTesttoolPath + "graphics\tools\locale_1.txt'" endif - 'Handouts - 'Slide - 'Default - 'English (USA) - 'Background - 'German (Germany) - printlog "Current saved strings are: " printlog "O 1: " + glLocale (1) 'Handouts ' im_103.inc::tViewWorkspaceHandoutView printlog "O 2: " + glLocale (2) 'Slide ' impress/slideshow.inc:: @@ -69,7 +62,7 @@ sub main printlog "O 5: " + glLocale (5) 'Background printlog "O 6: " + glLocale (6) 'German (Germany) - '/// LOCALE Slide - 2 ///' + printlog "LOCALE Slide - 2 " S1 = glLocale (2) + " 1" S2 = glLocale (2) + " 2" S3 = glLocale (2) + " 3" @@ -83,14 +76,15 @@ sub main ' hMenuSelectNr(3) ' hMenuSelectNr(11) ' printlog hMenuItemGetText (4) - ' ViewWorkspaceHandoutView '/// view background handout ///' + ' printlog "view background handout" + ' ViewWorkspaceHandoutView ' sleep 2 ' FormatPage sleep 2 glLocale (1) = "Dummy" 'Seitenname.GetText Printlog "L1: '" + glLocale (1) + "'" '3 Seitenlayout.Close - ' ViewWorkspaceDrawingView '/// back to view background drawing ///' + ' ViewWorkspaceDrawingView '(2)tSlideShowInteraction/fGetSlideName Kontext "Navigator" diff --git a/testautomation/math/optional/includes/m_101_.inc b/testautomation/math/optional/includes/m_101_.inc index 989857403546..58582452dc63 100755..100644 --- a/testautomation/math/optional/includes/m_101_.inc +++ b/testautomation/math/optional/includes/m_101_.inc @@ -302,7 +302,7 @@ function TBOloadFormulaFromFile () as string '///+ take formula out of command window /// '///+ save it into a variable /// '/// close dokument /// - Call hFileOpen ( ConvertPath(gTesttoolPath + "math/optional/input/101_1.sxm") ) + Call hFileOpenLocally ( ConvertPath(gTesttoolPath + "math/optional/input/101_1.sxm") ) kontext "dokumentwriter" try EditSelectAllMath @@ -344,8 +344,7 @@ testcase tFilePrint goto endsub endif - Call hFileOpen ( ConvertPath(gTesttoolPath + "math/optional/input/101_2.sxw") ) - TBOmakeWriteable() + Call hFileOpenLocally ( ConvertPath(gTesttoolPath + "math/optional/input/101_2.sxw") ) '/// find the translated formula in the document and get the language it belongs to ///' '///+ compare it to the officelanguage ///' @@ -581,28 +580,6 @@ testcase tFilePrint endcase -function TBOmakeWriteable() - ' check if writeable! (especially for HTML Doks!!) - sleep (3) - try - UseBindings - FormatStyleBold - sleep 2 - FormatStyleBold - catch - '/// make document writeable :-)///' - kontext "Funktionsleiste" - printlog "ReadOnly, changed it to writeable." - Bearbeiten.click - kontext - if active.exists (5) then - Printlog " active, accessrights ?!: '"+active.GetText+"'" - active.yes - endif - endcatch - sleep (3) -end function - function isCheckedWarnAlienFormat (optional bChange as boolean) dim uno dim ap diff --git a/testautomation/spreadsheet/optional/includes/arrayconstants/c_arrayconstants.inc b/testautomation/spreadsheet/optional/includes/arrayconstants/c_arrayconstants.inc index ce5652c0ff1e..6d57e1f13fcf 100755..100644 --- a/testautomation/spreadsheet/optional/includes/arrayconstants/c_arrayconstants.inc +++ b/testautomation/spreadsheet/optional/includes/arrayconstants/c_arrayconstants.inc @@ -204,6 +204,7 @@ testcase tArrayconstants01 '///Close Document printlog "Close Document" call hCloseDocument + hFileDelete( sLocalFile ) endcase ' @@ -212,23 +213,17 @@ endcase testcase tArrayconstants02 Dim sImportFile as string - Dim sLocalFile as string Dim sFunctionSUM as string Dim sFunctionMDETERM as string Dim sCellcontent as string sImportFile = convertpath ( gTesttoolpath & "spreadsheet/optional/input/arrayconstants.xls" ) - sLocalFile = convertpath ( gOfficepath & "user/work/arrayconstants.xls" ) sFunctionSUM = fFunctionName ("SUM") sFunctionMDETERM = fFunctionName ("MDETERM") '///Load xls testdocument <i>gTestToolPath</i>/spreadsheet/optional/input/arrayconstants.xls printlog "Load xls testdocument <i>gTestToolPath</i>/spreadsheet/optional/input/arrayconstants.xls" - call hFileOpen ( sImportFile ) - sleep(2) - '///If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + call hFileOpenLocally( sImportFile ) '///Check that the cell contents of B4 is 1 printlog "Check that the cell contents of B4 is 1" @@ -264,7 +259,7 @@ testcase tArrayconstants02 '/// Save document back to xls locally printlog "Save document back to xls locally" - call hFileSaveAsKill ( slocalfile ) + call hFileSaveAsKill ( gLastWorkFile ) '/// Close document printlog "Close document" @@ -272,7 +267,7 @@ testcase tArrayconstants02 '/// Load Document printlog "Load Document" - call hFileOpen ( slocalfile ) + call hFileOpen ( gLastWorkFile ) sleep (2) '///Check that all cellvalues are the same as before @@ -312,5 +307,6 @@ testcase tArrayconstants02 '///Close document printlog "Close document" call hCloseDocument + hFileDelete( gLastWorkFile ) endcase diff --git a/testautomation/spreadsheet/optional/includes/getpivotdata/c_getpivotdata.inc b/testautomation/spreadsheet/optional/includes/getpivotdata/c_getpivotdata.inc index 216551959ded..e5f5e406ce60 100755..100644 --- a/testautomation/spreadsheet/optional/includes/getpivotdata/c_getpivotdata.inc +++ b/testautomation/spreadsheet/optional/includes/getpivotdata/c_getpivotdata.inc @@ -54,11 +54,7 @@ testcase tgetpivotdata_function_wizard '/// Load testdocument <i>gTestToolPath</i>/spreadsheet/optional/input/datapilot.ods printlog "Load testdocument datapilot.ods" - call hFileOpen ( stestdocument ) - sleep (2) - '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - sMakeReadOnlyDocumentEditable() + call hFileOpenLocally( stestdocument ) '/// Select cell I8 and open function wizard by INSERT FUNCTION printlog "Select cell I8 and open function wizard by INSERT FUNCTION" @@ -187,11 +183,7 @@ testcase tgetpivotdata_xls_filter '/// Load testdocument <i>gTestToolPath</i>/spreadsheet/optional/input/getpivotdata2.xls printlog "Load testdocument getpivotdata2.xls" - call hFileOpen ( stestdocument ) - sleep (2) - '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + call hFileOpenLocally( stestdocument ) '/// Verify that Cell G12 shows 2.5 printlog "Verify that Cell G12 shows 2" & sdecimalseperator & "5" call fCalcCompareCellValue ("G12","2" & sdecimalseperator & "5") diff --git a/testautomation/spreadsheet/optional/includes/import_general/c_import_general.inc b/testautomation/spreadsheet/optional/includes/import_general/c_import_general.inc index d53c23fbbe3d..a12fbb764115 100755..100644 --- a/testautomation/spreadsheet/optional/includes/import_general/c_import_general.inc +++ b/testautomation/spreadsheet/optional/includes/import_general/c_import_general.inc @@ -57,31 +57,6 @@ end sub ' '------------------------------------------------------------------------------- ' -function IsItLoaded as boolean - '/// IsItLoaded - '/// Wait until document is loaded - Dim iLoop as integer - - IsItLoaded = FALSE - sleep(3) - for iLoop =1 to 20 - try - 'Calling slot 'IsDocLoading' - IsItLoaded = IsDocLoading - catch - IsItLoaded = FALSE - endcatch - - if IsItLoaded = TRUE then - exit for - end if - sleep(1) - next iLoop - sleep(2) -end function -' -'------------------------------------------------------------------------------- -' testcase tLoadSpreadsheetDocument (SourceFile) Dim sOnlyFileName as string @@ -102,7 +77,7 @@ testcase tLoadSpreadsheetDocument (SourceFile) if sOnlyFileName > "" then 'Some extensions make no sense to load if sOnlyFileExtension <> "so" AND sOnlyFileExtension <> "tmp" AND sOnlyFileExtension <> "dbt" then - if fCalcFileOpen(SourceFile) AND IsItLoaded()then + if fCalcFileOpen(SourceFile) then if (hIsNamedDocLoaded (SourceFile)) then printlog "- loaded" sleep(15) diff --git a/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc b/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc index 186fe00ae9e4..f55bd6318ffd 100644 --- a/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc +++ b/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc @@ -27,7 +27,7 @@ '** '** owner : oliver.craemer@Sun.COM '** -'** short description : Test IBIS bug fixes +'** short description : Test IBIS bug fixes '** '************************************************************************ ' ** @@ -40,21 +40,17 @@ testcase tIBIS111099 Dim testdoc as string - testdoc = convertpath(gOfficePath & "user/work/111099.xls") - Printlog "Copy testdocument locally" - app.FileCopy convertpath(gTesttoolpath & "spreadsheet\optional\input\111099.xls"),gOfficePath + ConvertPath("user/work/111099.xls") + testdoc = convertpath( gTesttoolpath & "spreadsheet\optional\input\111099.xls" ) + printlog " Open the test document" - Call hFileOpen(testdoc) - Call sMakeReadOnlyDocumentEditable - '/// Invoke Control Toolbar - '///+ Try to click control 'Push Button' - '///+> <ul><li>Click successful - BUG #111099#</li> - '///+ <li>Click fails - document opened as expected in non-design mode</li> + hFileOpenLocally(testdoc) + + printlog " Select formcontrols toolbar" Call hToolbarSelect("CONTROLS", true) sleep(2) Kontext "FormControls" - if SwitchControlDesignMode.IsEnabled then - if SwitchControlDesignMode.getState(2) = 0 then + if SwitchControlDesignMode.IsEnabled then + if SwitchControlDesignMode.getState(2) = 0 then printlog "OK, design mode is disabled" else warnlog "#i108315# Document is opened in design mode -> #111099#" @@ -63,28 +59,27 @@ testcase tIBIS111099 printlog "Form controls toolbar was not enabled." end if call hCloseDocument + hDeleteFile( gLastWorkFile ) endcase '------------------------------------------------------------------------- testcase tIBIS111158 - Dim testdoc as string + Dim testdoc as string Dim testString as string - testdoc = convertpath(gOfficePath & "user/work/111158.xls") - - Printlog "Copy testdocument locally" - app.FileCopy convertpath(gTesttoolpath & "spreadsheet\optional\input\111158.xls"),gOfficePath + ConvertPath("user/work/111158.xls") + testdoc = convertpath( gTesttoolpath & "spreadsheet\optional\input\111158.xls" ) + printlog " Open the test document" - Call hFileOpen(testdoc) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally(testdoc) + Kontext "Standardbar" - '/// If 'Form Controls' toolbar is not visible: View / Toolbars / Form Controls + '/// If 'Form Controls' toolbar is not visible: View / Toolbars / Form Controls Call hToolbarSelect("CONTROLS", true) sleep(2) Kontext "FormControls" try - if SwitchControlDesignMode.GetState(2) = 0 then + if SwitchControlDesignMode.GetState(2) = 0 then '/// Click on 'Design Mode on/off' button on 'Form Controls'-toolbar SwitchControlDesignMode.click sleep(2) @@ -95,7 +90,7 @@ testcase tIBIS111158 call hCloseDocument goto endsub endcatch - '/// Click on 'Form Design' button on 'Form Controls'-toolbar + '/// Click on 'Form Design' button on 'Form Controls'-toolbar FormDesignTools.Click sleep(2) Kontext "FormDesignTools" @@ -111,9 +106,9 @@ testcase tIBIS111158 Call hCloseDocument goto endsub end if - -'/// Select the first 'ComboxBox' (9th entry from the top) -'/// Open context menu + + '/// Select the first 'ComboxBox' (9th entry from the top) + '/// Open context menu Kontext "FormularNavigator" Liste.TypeKeys "<HOME>" , true sleep(1) @@ -123,32 +118,33 @@ testcase tIBIS111158 sleep(2) '/// Open 'Properties' (last entry) hMenuSelectNr(5) - sleep(2) + sleep(2) Kontext "ControlPropertiesDialog" Kontext "ControlPropertiesTabControl" ControlPropertiesTabControl.SetPage TabGeneralControl Kontext "TabGeneralControl" '/// Enter in 'Help URL' as value exactly 'HID:123456' - TabGeneralControl.TypeKeys "<TAB>" , true - HelpURL.setText "HID:123456" + TabGeneralControl.TypeKeys "<TAB>" , true + HelpURL.setText "customcontrol1" HelpURL.TypeKeys "<RETURN>",true - if HelpURL.GetText <> "HID:123456" then - warnlog "'HID:123456' has not been accepted as 'Help URL' value." + if HelpURL.GetText <> "customcontrol1" then + warnlog "'customcontrol1' has not been accepted as 'Help URL' value." end if - '/// Close all disturbing menus - Kontext "ControlPropertiesDialog" - sleep(1) - ControlPropertiesDialog.close - sleep(2) + + Kontext "ControlPropertiesDialog" + hCloseDialog( ControlPropertiesDialog, "close" ) + Kontext "FormularNavigator" - FormularNavigator.close + hCloseDialog( FormularNavigator, "close" ) + Kontext "FormDesignTools" - FormDesignTools.close + hCloseDialog( FormDesignTools, "close" ) + Kontext "FormControls" '/// Switch back from the design mode SwitchControlDesignMode.click - FormControls.close - sleep(1) + hCloseDialog( FormControls, "close" ) + '/// Check for right initial string ('Please select one:')in control Kontext "MSC_Special_Dialog" if MSC_Special_Dialog.Exists(3) then @@ -162,12 +158,13 @@ testcase tIBIS111158 warnlog "The control seems to be not named in the document?! Verify! If Solaris: #i100870#" end if call hCloseDocument + hFileDelete( gLastWorkFile ) endcase '------------------------------------------------------------------------- testcase tIBIS111711 -printlog "iBIS Task 111711" + printlog "iBIS Task 111711" printlog " Create a new document" call hNewDocument @@ -176,12 +173,12 @@ printlog "iBIS Task 111711" DocumentCalc.typekeys "1<RETURN>2<RETURN><UP>" sleep(2) -'/// create a chart from the content -'/// + NOTE: Do NOT leave the Implace mode + '/// create a chart from the content + '/// + NOTE: Do NOT leave the Implace mode InsertChartCalc '/// The Chart wizard occours Kontext "ChartWizard" - '/// On the chart wizard press OK button + '/// On the chart wizard press OK button if ChartWizard.Exists(2) then printlog "Create chart" ChartWizard.OK @@ -190,31 +187,31 @@ printlog "iBIS Task 111711" warnlog "Chart wizard did not occour! Exiting test case." call hCloseDocument goto endsub - end if -'/// Call slot Window->New Window + end if + '/// Call slot Window->New Window Kontext "DocumentCalc" DocumentCalc.typekeys "<ESCAPE>" WindowNewWindow sleep(2) call gMouseClick(95,95) -'/// Select chart in new window + '/// Select chart in new window Kontext "DocumentCalc" call fselectFirstOLE sleep(2) - -'/// Delete chart in new window ... -'/// ... and check for crash + + '/// Delete chart in new window ... + '/// ... and check for crash Kontext "DocumentCalc" - try + try DocumentCalc.typekeys "<DELETE>" sleep (2) printlog "OK, there are still " & GetDocumentCount & " documents open" - catch + catch warnlog "Probably the office did crash -> #111711#" call hCloseDocument goto endsub - endcatch + endcatch call hCloseDocument endcase diff --git a/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_iz.inc b/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_iz.inc index e6e8030da3e5..873ca1bddabc 100644 --- a/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_iz.inc +++ b/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_iz.inc @@ -31,16 +31,16 @@ '** '************************************************************************ ' ** -' #1 tIZ19381 ' I/O error when OLE object is thrown out of undo/redo buffer +' #1 tIZ19381 ' I/O error when OLE object is thrown out of undo/redo buffer ' #1 tIZ21036 ' Crash after shifting cells with paste special ' ** '\*********************************************************************** testcase tIZ19381 - Dim sOutputFile as string + Dim sOutputFile as string Dim i as integer - - sOutputFile = convertpath(gOfficepath & "user/work/i19381.ods") + + sOutputFile = convertpath(gOfficepath & "user/work/i19381.ods") printlog "IssueZilla Task 19381" '/// File / New / Spreadsheet @@ -52,10 +52,10 @@ testcase tIZ19381 Kontext "DocumentCalc" DocumentCalc.typekeys "1<RETURN>2<RETURN><UP>" sleep(2) - '/// Insert / Chart - InsertChartCalc + '/// Insert / Chart + InsertChartCalc Kontext "ChartWizard" - '/// On the chart wizard press OK button + '/// On the chart wizard press OK button if ChartWizard.Exists(2) then printlog "Create chart" ChartWizard.OK @@ -64,18 +64,18 @@ testcase tIZ19381 warnlog "Chart wizard did not occour! Exiting test case." call hCloseDocument goto endsub - end if + end if Kontext "DocumentCalc" '/// Type [ESCAPE] - DocumentCalc.typekeys "<Escape>" - sleep(2) + DocumentCalc.typekeys "<Escape>" + sleep(2) '/// File Save As <i>gOfficepath</i>user/work/i19381.ods if NOT hFileSaveAsWithFilterKill (sOutputFile, "calc8") then warnlog "Saving test document localy failed -> Aborting" call hCloseDocument goto endsub end if - sleep(2) + sleep(2) '/// File / Close call hCloseDocument sleep(2) @@ -83,21 +83,21 @@ testcase tIZ19381 if hFileOpen(sOutputFile) then Kontext "DocumentCalc" '/// Click into the chart - call gMouseClick(95,95) + call gMouseClick(95,95) Kontext "DocumentCalc" '/// Press [F5] to open the Navigator '/// Select the first Chart/OLE object in the navigator call fselectFirstOLE '/// Edit / Cut - sleep(2) + sleep(2) EditCut - sleep(2) + sleep(2) Kontext "DocumentCalc" '/// Type [ESCAPE] twice DocumentCalc.TypeKeys "<ESCAPE>" , 2 '/// Edit / Paste EditPaste - sleep(2) + sleep(2) Kontext "DocumentCalc" '/// press [CTRL+S] to save the document again DocumentCalc.typekeys "<MOD1 S>" @@ -112,7 +112,7 @@ testcase tIZ19381 Active.OK call hCloseDocument goto endsub - end if + end if Kontext "DocumentCalc" '/// Type [ESCAPE] DocumentCalc.TypeKeys "<ESCAPE>" @@ -120,10 +120,10 @@ testcase tIZ19381 call fCalcSelectRange("E42") for i = 1 to 21 Kontext "DocumentCalc" - '/// Enter 1 and [RETURN] 21 times + '/// Enter 1 and [RETURN] 21 times '///+ as changes to get chart cut/paste out of the undo buffer DocumentCalc.typekeys "1<Return>" - next i + next i Kontext "DocumentCalc" '/// Type [CTRL + S] to save the document again DocumentCalc.typekeys "<MOD1 S>" @@ -137,8 +137,8 @@ testcase tIZ19381 end if else printlog "No message box is in the way!" - end if - '/// File / Close + end if + '/// File / Close call hCloseDocument else warnlog "It was not possible to open the saved document again!" @@ -149,63 +149,63 @@ endcase testcase tIZ21036 -printlog "IssueZilla Task 21036" - -'/// open new document -call hNewDocument -sleep(2) - -'/// select a whole row (e.g. A1:IV1) -Kontext "DocumentCalc" -DocumentCalc.typekeys "<SHIFT MOD1 RIGHT>" -sleep(2) - -'/// cut selection -try - EditCut -catch - QAErrorLog "Is this a crash?? Please check it out!" - goto endsub -endcatch -sleep(2) - -'/// go to A2 -Kontext "DocumentCalc" -call fCalcSelectRange("A2") -sleep(2) -Kontext "DocumentCalc" -'/// call edit->paste special -EditPasteSpecialCalc -sleep(2) - -'/// check shift cells->right -Kontext "InhalteEinfuegenCalc" -NachRechts.Check - -'/// OK -InhalteEinfuegenCalc.OK - -'/// confirm MsgBox -Kontext "Active" - if Active.Exists(2) then - if Active.GetRT = 304 then - printlog Active.GetText - Active.OK - sleep(2) - end if - else - warnlog "No message box came up!" - goto endsub - end if - -'/// check for crash -try - printlog "OK, there are still " & GetDocumentCount & " documents open" -catch - warnlog "Probably the office did crash -> #I21036#" - goto endsub -endcatch - -call hCloseDocument + printlog "IssueZilla Task 21036" + + '/// open new document + call hNewDocument + sleep(2) + + '/// select a whole row (e.g. A1:IV1) + Kontext "DocumentCalc" + DocumentCalc.typekeys "<SHIFT MOD1 RIGHT>" + sleep(2) + + '/// cut selection + try + EditCut + catch + QAErrorLog "Is this a crash?? Please check it out!" + goto endsub + endcatch + sleep(2) + + '/// go to A2 + Kontext "DocumentCalc" + call fCalcSelectRange("A2") + sleep(2) + Kontext "DocumentCalc" + '/// call edit->paste special + EditPasteSpecialCalc + sleep(2) + + '/// check shift cells->right + Kontext "InhalteEinfuegenCalc" + NachRechts.Check + + '/// OK + InhalteEinfuegenCalc.OK + + '/// confirm MsgBox + Kontext "Active" + if Active.Exists(2) then + if Active.GetRT = 304 then + printlog Active.GetText + Active.OK + sleep(2) + end if + else + warnlog "No message box came up!" + goto endsub + end if + + '/// check for crash + try + printlog "OK, there are still " & GetDocumentCount & " documents open" + catch + warnlog "Probably the office did crash -> #I21036#" + goto endsub + endcatch + + call hCloseDocument endcase diff --git a/testautomation/spreadsheet/optional/includes/solver/c_solver.inc b/testautomation/spreadsheet/optional/includes/solver/c_solver.inc index ba0e77d155be..74db821e9275 100644 --- a/testautomation/spreadsheet/optional/includes/solver/c_solver.inc +++ b/testautomation/spreadsheet/optional/includes/solver/c_solver.inc @@ -43,9 +43,7 @@ testcase tExampleCalculation sDecimalseperator = GetDecimalSeperator printlog " Open testdocument 'gTesttoolPath + spreadsheet\optional\input\Solver_testdoc01.ods'" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\optional\input\Solver_testdoc01.ods" )) - printlog " If the file is not editable, click the edit button on standardbar" - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath & "spreadsheet\optional\input\Solver_testdoc01.ods" ) printlog " Tools - Solver" ToolsSolver Kontext "Solver" @@ -148,9 +146,7 @@ endcase testcase tExampleCalculation2 printlog " Open testdocument 'gTesttoolPath + spreadsheet\optional\input\stest_large.ods'" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\optional\input\stest_large.ods" )) - printlog " If the file is not editable, click the edit button on standardbar" - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath & "spreadsheet\optional\input\stest_large.ods" ) printlog " Tools - Solver" ToolsSolver Kontext "Solver" diff --git a/testautomation/spreadsheet/optional/includes/validity/c_validity.inc b/testautomation/spreadsheet/optional/includes/validity/c_validity.inc index 8eaf0401afeb..f1f33573f66e 100644 --- a/testautomation/spreadsheet/optional/includes/validity/c_validity.inc +++ b/testautomation/spreadsheet/optional/includes/validity/c_validity.inc @@ -29,194 +29,189 @@ '** '** short description : Complete test for data validity '** -'************************************************************************ -' ** -' #1 tValidity_Check_Message -' #1 tValidity_Check_Excel -' ** '\*********************************************************************** testcase tValidity_Check_Message - printlog "This test checks, if an error messgae appears, when a wrong content is inserted into the appropriate cells" + printlog "This test checks, if an error messgae appears, when a wrong content is inserted into the appropriate cells" dim sInputFile as string dim sOutputFile as string dim sMType as string dim sInfoStr as string dim iCount as integer - + sInputFile = convertpath(gTesttoolPath & "spreadsheet/optional/input/validity.ods") - sOutputFile = convertpath (gOfficepath & "user/work/validity.ods.ods)" + sOutputFile = convertpath (gOfficepath & "user/work/validity.ods.ods)" - printlog " Open document <i>gTesttoolPath</i>spreadsheet/optional/input/validity.ods" - call hFileOpen (sInputFile) - printlog " Save the document under <i>gOfficePath</i>user/work/validity.ods" - if NOT hFileSaveAsWithFilter ( sOutputFile, "calc8" ) then - warnlog "Saving test document localy failed -> Aborting" - call hCloseDocument - goto endsub - endif + printlog " Open document <i>gTesttoolPath</i>spreadsheet/optional/input/validity.ods" + call hFileOpen (sInputFile) + printlog " Save the document under <i>gOfficePath</i>user/work/validity.ods" + if NOT hFileSaveAsWithFilter ( sOutputFile, "calc8" ) then + warnlog "Saving test document localy failed -> Aborting" + call hCloseDocument + goto endsub + endif - printlog " Do the following operations (see values in table) with every of the 4 sheets." - printlog " Goto first cell and insert the correct value" - printlog " Press RETURN" - printlog " No warning or information message should appear" - printlog " Enter the incorrect value" - printlog " Press RETURN" - printlog " A warning or information message should appear" - for iCount = 1 to 4 - select case iCount - case 1 : sMType = "Stop" : sInfoStr = "First" - case 2 : sMType = "Warning" : sInfoStr = "Second" - case 3 : sMType = "Information" : sInfoStr = "Third" - case 4 : sMType = "Macro" : sInfoStr = "Macro" - end select + printlog " Do the following operations (see values in table) with every of the 4 sheets." + printlog " Goto first cell and insert the correct value" + printlog " Press RETURN" + printlog " No warning or information message should appear" + printlog " Enter the incorrect value" + printlog " Press RETURN" + printlog " A warning or information message should appear" + for iCount = 1 to 4 + select case iCount + case 1 : sMType = "Stop" : sInfoStr = "First" + case 2 : sMType = "Warning" : sInfoStr = "Second" + case 3 : sMType = "Information" : sInfoStr = "Third" + case 4 : sMType = "Macro" : sInfoStr = "Macro" + end select - call fCalcSelectSheet(sMType) + call fCalcSelectSheet(sMType) printlog " *** " & sInfoStr & " it is checked, if the " & sMType & " messages appears, if wrong contents are inserted into the appropriate cells" - '///+<UL> - '///+<LI>Goto first cell and insert the <i>correct value</i></LI> - '///+<LI>Press RETURN</LI> - '///+<LI><UL><LI>No warning or information message should appear</LI></UL></LI> - '///+<LI>Enter the <i>incorrect value</I> - '///+<LI>Press RETURN</LI> - '///+<LI><UL><LI>A warning or information message should appear</LI></UL></LI> - '///+<LI><TABLE BORDER=1> - '///+ <TR><TH>Cell address</TH><TH>correct value</TH><TH>incorrect value</TH></TR> - '///+ <TR><TD>B4</TD><TD>3</TD><TD>8</TD></TR> - call check_message(sMType, "B4", "3", "8") - '///+ <TR><TD>B5</TD><TD>9</TD><TD>10</TD></TR> - call check_message(sMType, "B5", "9", "10") - '///+ <TR><TD>B6</TD><TD>28</TD><TD>25</TD></TR> - call check_message(sMType, "B6", "28", "25") - '///+ <TR><TD>B7</TD><TD>10</TD><TD>12</TD></TR> - call check_message(sMType, "B7", "10", "12") - '///+ <TR><TD>B8</TD><TD>11</TD><TD>9</TD></TR> - call check_message(sMType, "B8", "11", "9") - '///+ <TR><TD>B9</TD><TD>5</TD><TD>3</TD></TR> - call check_message(sMType, "B9", "5", "3") - '///+ <TR><TD>B10</TD><TD>1</TD><TD>6</TD></TR> - call check_message(sMType, "B10", "1", "6") - '///+ <TR><TD>B11</TD><TD>1</TD><TD>6</TD></TR> - call check_message(sMType, "B11", "1", "6") - '///+ <TR><TD>B17</TD><TD>3,14</TD><TD>3,15</TD></TR> - call check_message(sMType, "B17", "3,14", "3,15") - '///+ <TR><TD>B18</TD><TD>10,14</TD><TD>10,16</TD></TR> - call check_message(sMType, "B18", "10,14", "10,16") - '///+ <TR><TD>B19</TD><TD>25,10</TD><TD>25,09</TD></TR> - call check_message(sMType, "B19", "25,10", "25,09") - '///+ <TR><TD>B20</TD><TD>10,5</TD><TD>10,7</TD></TR> - call check_message(sMType, "B20", "10,5", "10,7") - '///+ <TR><TD>B21</TD><TD>11,9</TD><TD>10</TD></TR> - call check_message(sMType, "B21", "11,9", "10") - '///+ <TR><TD>B22</TD><TD>3,145</TD><TD>3,14</TD></TR> - call check_message(sMType, "B22", "3,145", "3,14") - '///+ <TR><TD>B23</TD><TD>1,45</TD><TD>1,38</TD></TR> - call check_message(sMType, "B23", "1,45", "1,38") - '///+ <TR><TD>B24</TD><TD>2,03</TD><TD>2,15</TD></TR> - call check_message(sMType, "B24", "2,03", "2,15") - '///+ <TR><TD>E4</TD><TD>13.12.99</TD><TD>13.11.99</TD></TR> - call check_message(sMType, "E4", "13.12.99", "13.11.99") - '///+ <TR><TD>E5</TD><TD>12.12.99</TD><TD>13.12.99</TD></TR> - call check_message(sMType, "E5", "12.12.99", "13.12.99") - '///+ <TR><TD>E6</TD><TD>14.12.99</TD><TD>13.12.99</TD></TR> - call check_message(sMType, "E6", "14.12.99", "13.12.99") - '///+ <TR><TD>E7</TD><TD>13.12.99</TD><TD>14.12.99</TD></TR> - call check_message(sMType, "E7", "13.12.99", "14.12.99") - '///+ <TR><TD>E8</TD><TD>13.12.99</TD><TD>12.12.99</TD></TR> - call check_message(sMType, "E8", "13.12.99", "12.12.99") - '///+ <TR><TD>E9</TD><TD>13.11.99</TD><TD>13.12.99</TD></TR> - call check_message(sMType, "E9", "13.11.99", "13.12.99") - '///+ <TR><TD>E10</TD><TD>23.12.99</TD><TD>12.12.99</TD></TR> - call check_message(sMType, "E10", "23.12.99", "12.12.99") - '///+ <TR><TD>E11</TD><TD>24.12.99</TD><TD>23.12.99</TD></TR> - call check_message(sMType, "E11", "24.12.99", "23.12.99") - '///+ <TR><TD>E17</TD><TD>13:15</TD><TD>13:16</TD></TR> - call check_message(sMType, "E17", "13:15", "13:16") - '///+ <TR><TD>E18</TD><TD>10:15</TD><TD>14:16</TD></TR> - call check_message(sMType, "E18", "10:15", "14:16") - '///+ <TR><TD>E19</TD><TD>23:10</TD><TD>12:09</TD></TR> - call check_message(sMType, "E19", "23:10", "12:09") - '///+ <TR><TD>E20</TD><TD>13:15</TD><TD>13:16</TD></TR> - call check_message(sMType, "E20", "13:15", "13:16") - '///+ <TR><TD>E21</TD><TD>13:15</TD><TD>13:14</TD></TR> - call check_message(sMType, "E21", "13:15", "13:14") - '///+ <TR><TD>E22</TD><TD>13:16</TD><TD>13:15</TD></TR> - call check_message(sMType, "E22", "13:16", "13:15") - '///+ <TR><TD>E23</TD><TD>13:15</TD><TD>23:13</TD></TR> - call check_message(sMType, "E23", "13:15", "23:13") - '///+ <TR><TD>E24</TD><TD>12:59</TD><TD>13:00</TD></TR> - call check_message(sMType, "E24", "12:59", "13:00") - '///+ <TR><TD>H4</TD><TD>abc</TD><TD>abcd</TD></TR> - call check_message(sMType, "H4", "abc", "abcd") - '///+ <TR><TD>H5</TD><TD>abcdefgrd</TD><TD>aderfgtzjm</TD></TR> - call check_message(sMType, "H5", "abcdefgrd", "aderfgtzjm") - '///+ <TR><TD>H6</TD><TD>rftgzhujikolmnbvcxyaswqepk</TD><TD>ftgzhnujikm,lopredswqayx</TD></TR> - call check_message(sMType, "H6", "rftgzhujikolmnbvcxyaswqepk", "ftgzhnujikm,lopredswqayx") - '///+ <TR><TD>H7</TD><TD>asweqrfvbg</TD><TD>edcvfrtgbnh</TD></TR> - call check_message(sMType, "H7", "asweqrfvbg", "edcvfrtgbnh") - '///+ <TR><TD>H8</TD><TD>edcswxyaqtgb</TD><TD>ujnmkipztr</TD></TR> - call check_message(sMType, "H8", "edcswxyaqtgb", "ujnmkipztr") - '///+ <TR><TD>H9</TD><TD>sdxc</TD><TD>tgb</TD></TR> - call check_message(sMType, "H9", "sdxc", "tgb") - '///+ <TR><TD>H10</TD><TD>rfvbj</TD><TD>dfcvgb</TD></TR> - call check_message(sMType, "H10", "rfvbj", "dfcvgb") - '///+ <TR><TD>H11</TD><TD>g</TD><TD>we</TD></TR> - call check_message(sMType, "H11", "g", "we") - '///+ <TR><TH>New featurs OpenOffice 2.0</TH></TR> - '///+ <TR><TD>B30</TD><TD>February</TD><TD>January</TD></TR> - call check_message(sMType, "B30", "February", "January") - '///+ <TR><TD>B31</TD><TD>May</TD><TD>February</TD></TR> - call check_message(sMType, "B31", "May", "February") - '///+ <TR><TD>B32</TD><TD>June</TD><TD>January</TD></TR> - call check_message(sMType, "B32", "June", "January") - '///+ <TR><TD>B33</TD><TD>August</TD><TD>November</TD></TR> - call check_message(sMType, "B33", "August", "November") - '///+ <TR><TD>B34</TD><TD>September</TD><TD>December</TD></TR> - call check_message(sMType, "B34", "September", "December") - '///+ <TR><TD>B35</TD><TD>October</TD><TD>March</TD></TR> - call check_message(sMType, "B35", "October", "March") - '///+ <TR><TD>B36</TD><TD>July</TD><TD>August</TD></TR> - call check_message(sMType, "B36", "July", "August") - '///+ <TR><TD>B37</TD><TD>April</TD><TD>October</TD></TR> - call check_message(sMType, "B37", "April", "October") - '///+ <TR><TD>B38</TD><TD>Name03</TD><TD>Name07</TD></TR> - call check_message(sMType, "B38", "Name03", "Name07") - '///+ <TR><TD>E30</TD><TD>alpha</TD><TD>omega</TD></TR> - call check_message(sMType, "E30", "alpha", "omega") - '///+ <TR><TD>E31</TD><TD>beta</TD><TD>zeta</TD></TR> - call check_message(sMType, "E31", "beta", "zeta") - '///+ <TR><TD>E32</TD><TD>gamma</TD><TD>psi</TD></TR> - call check_message(sMType, "E32", "gamma", "psi") - '///+ <TR><TD>E33</TD><TD>delta</TD><TD>pi/2</TD></TR> - call check_message(sMType, "E33", "delta", "pi/2") - '///+ </TABLE></LI></UL> - next iCount + '///+<UL> + '///+<LI>Goto first cell and insert the <i>correct value</i></LI> + '///+<LI>Press RETURN</LI> + '///+<LI><UL><LI>No warning or information message should appear</LI></UL></LI> + '///+<LI>Enter the <i>incorrect value</I> + '///+<LI>Press RETURN</LI> + '///+<LI><UL><LI>A warning or information message should appear</LI></UL></LI> + '///+<LI><TABLE BORDER=1> + '///+ <TR><TH>Cell address</TH><TH>correct value</TH><TH>incorrect value</TH></TR> + '///+ <TR><TD>B4</TD><TD>3</TD><TD>8</TD></TR> + call check_message(sMType, "B4", "3", "8") + '///+ <TR><TD>B5</TD><TD>9</TD><TD>10</TD></TR> + call check_message(sMType, "B5", "9", "10") + '///+ <TR><TD>B6</TD><TD>28</TD><TD>25</TD></TR> + call check_message(sMType, "B6", "28", "25") + '///+ <TR><TD>B7</TD><TD>10</TD><TD>12</TD></TR> + call check_message(sMType, "B7", "10", "12") + '///+ <TR><TD>B8</TD><TD>11</TD><TD>9</TD></TR> + call check_message(sMType, "B8", "11", "9") + '///+ <TR><TD>B9</TD><TD>5</TD><TD>3</TD></TR> + call check_message(sMType, "B9", "5", "3") + '///+ <TR><TD>B10</TD><TD>1</TD><TD>6</TD></TR> + call check_message(sMType, "B10", "1", "6") + '///+ <TR><TD>B11</TD><TD>1</TD><TD>6</TD></TR> + call check_message(sMType, "B11", "1", "6") + '///+ <TR><TD>B17</TD><TD>3,14</TD><TD>3,15</TD></TR> + call check_message(sMType, "B17", "3,14", "3,15") + '///+ <TR><TD>B18</TD><TD>10,14</TD><TD>10,16</TD></TR> + call check_message(sMType, "B18", "10,14", "10,16") + '///+ <TR><TD>B19</TD><TD>25,10</TD><TD>25,09</TD></TR> + call check_message(sMType, "B19", "25,10", "25,09") + '///+ <TR><TD>B20</TD><TD>10,5</TD><TD>10,7</TD></TR> + call check_message(sMType, "B20", "10,5", "10,7") + '///+ <TR><TD>B21</TD><TD>11,9</TD><TD>10</TD></TR> + call check_message(sMType, "B21", "11,9", "10") + '///+ <TR><TD>B22</TD><TD>3,145</TD><TD>3,14</TD></TR> + call check_message(sMType, "B22", "3,145", "3,14") + '///+ <TR><TD>B23</TD><TD>1,45</TD><TD>1,38</TD></TR> + call check_message(sMType, "B23", "1,45", "1,38") + '///+ <TR><TD>B24</TD><TD>2,03</TD><TD>2,15</TD></TR> + call check_message(sMType, "B24", "2,03", "2,15") + '///+ <TR><TD>E4</TD><TD>13.12.99</TD><TD>13.11.99</TD></TR> + call check_message(sMType, "E4", "13.12.99", "13.11.99") + '///+ <TR><TD>E5</TD><TD>12.12.99</TD><TD>13.12.99</TD></TR> + call check_message(sMType, "E5", "12.12.99", "13.12.99") + '///+ <TR><TD>E6</TD><TD>14.12.99</TD><TD>13.12.99</TD></TR> + call check_message(sMType, "E6", "14.12.99", "13.12.99") + '///+ <TR><TD>E7</TD><TD>13.12.99</TD><TD>14.12.99</TD></TR> + call check_message(sMType, "E7", "13.12.99", "14.12.99") + '///+ <TR><TD>E8</TD><TD>13.12.99</TD><TD>12.12.99</TD></TR> + call check_message(sMType, "E8", "13.12.99", "12.12.99") + '///+ <TR><TD>E9</TD><TD>13.11.99</TD><TD>13.12.99</TD></TR> + call check_message(sMType, "E9", "13.11.99", "13.12.99") + '///+ <TR><TD>E10</TD><TD>23.12.99</TD><TD>12.12.99</TD></TR> + call check_message(sMType, "E10", "23.12.99", "12.12.99") + '///+ <TR><TD>E11</TD><TD>24.12.99</TD><TD>23.12.99</TD></TR> + call check_message(sMType, "E11", "24.12.99", "23.12.99") + '///+ <TR><TD>E17</TD><TD>13:15</TD><TD>13:16</TD></TR> + call check_message(sMType, "E17", "13:15", "13:16") + '///+ <TR><TD>E18</TD><TD>10:15</TD><TD>14:16</TD></TR> + call check_message(sMType, "E18", "10:15", "14:16") + '///+ <TR><TD>E19</TD><TD>23:10</TD><TD>12:09</TD></TR> + call check_message(sMType, "E19", "23:10", "12:09") + '///+ <TR><TD>E20</TD><TD>13:15</TD><TD>13:16</TD></TR> + call check_message(sMType, "E20", "13:15", "13:16") + '///+ <TR><TD>E21</TD><TD>13:15</TD><TD>13:14</TD></TR> + call check_message(sMType, "E21", "13:15", "13:14") + '///+ <TR><TD>E22</TD><TD>13:16</TD><TD>13:15</TD></TR> + call check_message(sMType, "E22", "13:16", "13:15") + '///+ <TR><TD>E23</TD><TD>13:15</TD><TD>23:13</TD></TR> + call check_message(sMType, "E23", "13:15", "23:13") + '///+ <TR><TD>E24</TD><TD>12:59</TD><TD>13:00</TD></TR> + call check_message(sMType, "E24", "12:59", "13:00") + '///+ <TR><TD>H4</TD><TD>abc</TD><TD>abcd</TD></TR> + call check_message(sMType, "H4", "abc", "abcd") + '///+ <TR><TD>H5</TD><TD>abcdefgrd</TD><TD>aderfgtzjm</TD></TR> + call check_message(sMType, "H5", "abcdefgrd", "aderfgtzjm") + '///+ <TR><TD>H6</TD><TD>rftgzhujikolmnbvcxyaswqepk</TD><TD>ftgzhnujikm,lopredswqayx</TD></TR> + call check_message(sMType, "H6", "rftgzhujikolmnbvcxyaswqepk", "ftgzhnujikm,lopredswqayx") + '///+ <TR><TD>H7</TD><TD>asweqrfvbg</TD><TD>edcvfrtgbnh</TD></TR> + call check_message(sMType, "H7", "asweqrfvbg", "edcvfrtgbnh") + '///+ <TR><TD>H8</TD><TD>edcswxyaqtgb</TD><TD>ujnmkipztr</TD></TR> + call check_message(sMType, "H8", "edcswxyaqtgb", "ujnmkipztr") + '///+ <TR><TD>H9</TD><TD>sdxc</TD><TD>tgb</TD></TR> + call check_message(sMType, "H9", "sdxc", "tgb") + '///+ <TR><TD>H10</TD><TD>rfvbj</TD><TD>dfcvgb</TD></TR> + call check_message(sMType, "H10", "rfvbj", "dfcvgb") + '///+ <TR><TD>H11</TD><TD>g</TD><TD>we</TD></TR> + call check_message(sMType, "H11", "g", "we") + '///+ <TR><TH>New featurs OpenOffice 2.0</TH></TR> + '///+ <TR><TD>B30</TD><TD>February</TD><TD>January</TD></TR> + call check_message(sMType, "B30", "February", "January") + '///+ <TR><TD>B31</TD><TD>May</TD><TD>February</TD></TR> + call check_message(sMType, "B31", "May", "February") + '///+ <TR><TD>B32</TD><TD>June</TD><TD>January</TD></TR> + call check_message(sMType, "B32", "June", "January") + '///+ <TR><TD>B33</TD><TD>August</TD><TD>November</TD></TR> + call check_message(sMType, "B33", "August", "November") + '///+ <TR><TD>B34</TD><TD>September</TD><TD>December</TD></TR> + call check_message(sMType, "B34", "September", "December") + '///+ <TR><TD>B35</TD><TD>October</TD><TD>March</TD></TR> + call check_message(sMType, "B35", "October", "March") + '///+ <TR><TD>B36</TD><TD>July</TD><TD>August</TD></TR> + call check_message(sMType, "B36", "July", "August") + '///+ <TR><TD>B37</TD><TD>April</TD><TD>October</TD></TR> + call check_message(sMType, "B37", "April", "October") + '///+ <TR><TD>B38</TD><TD>Name03</TD><TD>Name07</TD></TR> + call check_message(sMType, "B38", "Name03", "Name07") + '///+ <TR><TD>E30</TD><TD>alpha</TD><TD>omega</TD></TR> + call check_message(sMType, "E30", "alpha", "omega") + '///+ <TR><TD>E31</TD><TD>beta</TD><TD>zeta</TD></TR> + call check_message(sMType, "E31", "beta", "zeta") + '///+ <TR><TD>E32</TD><TD>gamma</TD><TD>psi</TD></TR> + call check_message(sMType, "E32", "gamma", "psi") + '///+ <TR><TD>E33</TD><TD>delta</TD><TD>pi/2</TD></TR> + call check_message(sMType, "E33", "delta", "pi/2") + '///+ </TABLE></LI></UL> + next iCount '/// Close the document - printlog "Close the document" - call hCloseDocument + printlog "Close the document" + call hCloseDocument endcase ' '------------------------------------------------------------------------------- ' testcase tValidity_Check_Excel -'/// This test checks, if an error messgae appears, when a wrong content is inserted into the appropriate cells - - dim sInputFile as String + '/// This test checks, if an error messgae appears, when a wrong content is inserted into the appropriate cells + + dim sInputFile as String dim sOutputFile as String dim sMType as String dim iCount as integer dim sInfoStr as String dim sdecimalseperator as string - sDecimalseperator = GetDecimalSeperator + sDecimalseperator = GetDecimalSeperator - sInputFile = convertpath(gTesttoolPath & "spreadsheet/optional/input/validity.ods") + sInputFile = convertpath(gTesttoolPath & "spreadsheet/optional/input/validity.ods") sOutputFile = convertpath(gOfficePath & "user/work/validity.xls") '/// Open <i>gTesttoolPath</i>/calc/special/input/validity.ods - printlog "Open <i>gTesttoolPath</i>/calc/special/input/validity.ods" + printlog "Open <i>gTesttoolPath</i>/calc/special/input/validity.ods" call hFileOpen (sInputFile) Kontext "SecurityWarning" '/// If security warning occours click on 'Enable Macros'. @@ -238,141 +233,140 @@ testcase tValidity_Check_Excel call hFileOpen ( sOutputFile ) sleep (2) printlog " Do the following operations (see values in table) with every of the 3 sheets." - printlog " Goto first cell and insert the correct value" - printlog " Press RETURN" - printlog " No warning or information message should appear" - printlog " Enter the incorrect value" - printlog " Press RETURN" - printlog " A warning or information message should appear" + printlog " Goto first cell and insert the correct value" + printlog " Press RETURN" + printlog " No warning or information message should appear" + printlog " Enter the incorrect value" + printlog " Press RETURN" + printlog " A warning or information message should appear" for iCount = 1 to 3 select case iCount - case 1 : sMType = "Stop" : sInfoStr = "First" - case 2 : sMType = "Warning" : sInfoStr = "Second" - case 3 : sMType = "Information" : sInfoStr = "Third" + case 1 : sMType = "Stop" : sInfoStr = "First" + case 2 : sMType = "Warning" : sInfoStr = "Second" + case 3 : sMType = "Information" : sInfoStr = "Third" end select - '/// Do the following operations (see values in table) with every of the 3 sheets. - call fCalcSelectSheet(sMType) - printlog " *** " & sInfoStr & " it is checked, if the " & sMType & " messages appears, if wrong contents are " & _ - "inserted into the appropriate cells" -'///+<UL> -'///+<LI>Goto first cell and insert the <i>correct value</i></LI> -'///+<LI>Press RETURN</LI> -'///+<LI><UL><LI>No warning or information message should appear</LI></UL></LI> -'///+<LI>Enter the <i>incorrect value</I> -'///+<LI>Press RETURN</LI> -'///+<LI><UL><LI>A warning or information message should appear</LI></UL></LI> -'///+<LI><TABLE BORDER=1> -'///+ <TR><TH>Cell address</TH><TH>correct value</TH><TH>incorrect value</TH></TR> -'///+ <TR><TD>B4</TD><TD>3</TD><TD>8</TD></TR> - call check_message(sMType, "B4", "3", "8") -'///+ <TR><TD>B5</TD><TD>9</TD><TD>10</TD></TR> - call check_message(sMType, "B5", "9", "10") -'///+ <TR><TD>B6</TD><TD>28</TD><TD>25</TD></TR> - call check_message(sMType, "B6", "28", "25") -'///+ <TR><TD>B7</TD><TD>10</TD><TD>12</TD></TR> - call check_message(sMType, "B7", "10", "12") -'///+ <TR><TD>B8</TD><TD>11</TD><TD>9</TD></TR> - call check_message(sMType, "B8", "11", "9") -'///+ <TR><TD>B9</TD><TD>5</TD><TD>3</TD></TR> - call check_message(sMType, "B9", "5", "3") -'///+ <TR><TD>B10</TD><TD>1</TD><TD>6</TD></TR> - call check_message(sMType, "B10", "1", "6") -'///+ <TR><TD>B11</TD><TD>1</TD><TD>6</TD></TR> - call check_message(sMType, "B11", "1", "6") -'///+ <TR><TD>B17</TD><TD>3,14</TD><TD>3,15</TD></TR> - call check_message(sMType, "B17", "3" & sdecimalseperator & "14", "3" & sdecimalseperator & "15") -'///+ <TR><TD>B18</TD><TD>10,14</TD><TD>10,16</TD></TR> - call check_message(sMType, "B18", "10" & sdecimalseperator & "14", "10" & sdecimalseperator & "16") -'///+ <TR><TD>B19</TD><TD>25,10</TD><TD>25,09</TD></TR> - call check_message(sMType, "B19", "25" & sdecimalseperator & "10", "25" & sdecimalseperator & "09") -'///+ <TR><TD>B20</TD><TD>10,5</TD><TD>10,7</TD></TR> - call check_message(sMType, "B20", "10" & sdecimalseperator & "5", "10" & sdecimalseperator & "7") -'///+ <TR><TD>B21</TD><TD>11,9</TD><TD>10</TD></TR> - call check_message(sMType, "B21", "11" & sdecimalseperator & "9", "10") -'///+ <TR><TD>B22</TD><TD>3,145</TD><TD>3,14</TD></TR> - call check_message(sMType, "B22", "3" & sdecimalseperator & "145", "3" & sdecimalseperator & "14") -'///+ <TR><TD>B23</TD><TD>1,45</TD><TD>1,38</TD></TR> - call check_message(sMType, "B23", "1" & sdecimalseperator & "45", "1" & sdecimalseperator & "38") -'///+ <TR><TD>B24</TD><TD>2,03</TD><TD>2,15</TD></TR> - call check_message(sMType, "B24", "2" & sdecimalseperator & "03", "2" & sdecimalseperator & "15") -'///+ <TR><TD>E4</TD><TD>13.12.99</TD><TD>13.11.99</TD></TR> - call check_message(sMType, "E4", "13.12.99", "13.11.99") -'///+ <TR><TD>E5</TD><TD>12.12.99</TD><TD>13.12.99</TD></TR> - call check_message(sMType, "E5", "12.12.99", "13.12.99") -'///+ <TR><TD>E6</TD><TD>14.12.99</TD><TD>13.12.99</TD></TR> - call check_message(sMType, "E6", "14.12.99", "13.12.99") -'///+ <TR><TD>E7</TD><TD>13.12.99</TD><TD>14.12.99</TD></TR> - call check_message(sMType, "E7", "13.12.99", "14.12.99") -'///+ <TR><TD>E8</TD><TD>13.12.99</TD><TD>12.12.99</TD></TR> - call check_message(sMType, "E8", "13.12.99", "12.12.99") -'///+ <TR><TD>E9</TD><TD>13.11.99</TD><TD>13.12.99</TD></TR> - call check_message(sMType, "E9", "13.11.99", "13.12.99") -'///+ <TR><TD>E10</TD><TD>23.12.99</TD><TD>12.12.99</TD></TR> - call check_message(sMType, "E10", "23.12.99", "12.12.99") -'///+ <TR><TD>E11</TD><TD>24.12.99</TD><TD>23.12.99</TD></TR> - call check_message(sMType, "E11", "24.12.99", "23.12.99") -'///+ <TR><TD>E17</TD><TD>13:15</TD><TD>13:16</TD></TR> - call check_message(sMType, "E17", "13:15", "13:16") -'///+ <TR><TD>E18</TD><TD>10:15</TD><TD>14:16</TD></TR> - call check_message(sMType, "E18", "10:15", "14:16") -'///+ <TR><TD>E19</TD><TD>23:10</TD><TD>12:09</TD></TR> - call check_message(sMType, "E19", "23:10", "12:09") -'///+ <TR><TD>E20</TD><TD>13:15</TD><TD>13:16</TD></TR> - call check_message(sMType, "E20", "13:15", "13:16") -'///+ <TR><TD>E21</TD><TD>13:15</TD><TD>13:15</TD></TR> - call check_message(sMType, "E21", "13:15", "13:14") -'///+ <TR><TD>E22</TD><TD>13:16</TD><TD>13:15</TD></TR> - call check_message(sMType, "E22", "13:16", "13:15") -'///+ <TR><TD>E23</TD><TD>13:15</TD><TD>23:13</TD></TR> - call check_message(sMType, "E23", "13:15", "23:13") -'///+ <TR><TD>E24</TD><TD>12:59</TD><TD>13:00</TD></TR> - call check_message(sMType, "E24", "12:59", "13:00") -'///+ <TR><TD>H4</TD><TD>abc</TD><TD>abcd</TD></TR> - call check_message(sMType, "H4", "abc", "abcd") -'///+ <TR><TD>H5</TD><TD>abcdefgrd</TD><TD>aderfgtzjm</TD></TR> - call check_message(sMType, "H5", "abcdefgrd", "aderfgtzjm") -'///+ <TR><TD>H6</TD><TD>rftgzhujikolmnbvcxyaswqepk</TD><TD>ftgzhnujikm,lopredswqayx</TD></TR> - call check_message(sMType, "H6", "rftgzhujikolmnbvcxyaswqepk", "ftgzhnujikm,lopredswqayx") -'///+ <TR><TD>H7</TD><TD>asweqrfvbg</TD><TD>edcvfrtgbnh</TD></TR> - call check_message(sMType, "H7", "asweqrfvbg", "edcvfrtgbnh") -'///+ <TR><TD>H8</TD><TD>edcswxyaqtgb</TD><TD>ujnmkipztr</TD></TR> - call check_message(sMType, "H8", "edcswxyaqtgb", "ujnmkipztr") -'///+ <TR><TD>H9</TD><TD>sdxc</TD><TD>tgb</TD></TR> - call check_message(sMType, "H9", "sdxc", "tgb") -'///+ <TR><TD>H10</TD><TD>rfvbj</TD><TD>dfcvgb</TD></TR> - call check_message(sMType, "H10", "rfvbj", "dfcvgb") -'///+ <TR><TD>H11</TD><TD>g</TD><TD>we</TD></TR> - call check_message(sMType, "H11", "g", "we") -'///+ <TR><TH>New featurs OpenOffice 2.0</TH></TR>we</TD></TR> -'///+ <TR><TD>B30</TD><TD>February</TD><TD>January</TD></TR> - call check_message(sMType, "B30", "February", "January") -'///+ <TR><TD>B31</TD><TD>May</TD><TD>February</TD></TR> - call check_message(sMType, "B31", "May", "February") -'///+ <TR><TD>B32</TD><TD>June</TD><TD>January</TD></TR> - call check_message(sMType, "B32", "June", "January") -'///+ <TR><TD>B33</TD><TD>August</TD><TD>November</TD></TR> - call check_message(sMType, "B33", "August", "November") -'///+ <TR><TD>B34</TD><TD>September</TD><TD>December</TD></TR> - call check_message(sMType, "B34", "September", "December") -'///+ <TR><TD>B35</TD><TD>October</TD><TD>March</TD></TR> - call check_message(sMType, "B35", "October", "March") -'///+ <TR><TD>B36</TD><TD>July</TD><TD>August</TD></TR> - call check_message(sMType, "B36", "July", "August") -'///+ <TR><TD>B37</TD><TD>April</TD><TD>October</TD></TR> - call check_message(sMType, "B37", "April", "October") -'///+ <TR><TD>B38</TD><TD>Name03</TD><TD>Name07</TD></TR> - call check_message(sMType, "B38", "Name03", "Name07") -'///+ <TR><TD>E30</TD><TD>alpha</TD><TD>omega</TD></TR> - call check_message(sMType, "E30", "alpha", "omega") -'///+ <TR><TD>E31</TD><TD>beta</TD><TD>zeta</TD></TR> - call check_message(sMType, "E31", "beta", "zeta") -'///+ <TR><TD>E32</TD><TD>gamma</TD><TD>psi</TD></TR> - call check_message(sMType, "E32", "gamma", "psi") -'///+ <TR><TD>E33</TD><TD>delta</TD><TD>pi/2</TD></TR> - call check_message(sMType, "E33", "delta", "pi/2") -'///+ </TABLE></LI></UL> - next iCount -'/// File / Close - call hCloseDocument + '/// Do the following operations (see values in table) with every of the 3 sheets. + call fCalcSelectSheet(sMType) + printlog " *** " & sInfoStr & " it is checked, if the " & sMType & " messages appears, if wrong contents are " & "inserted into the appropriate cells" + '///+<UL> + '///+<LI>Goto first cell and insert the <i>correct value</i></LI> + '///+<LI>Press RETURN</LI> + '///+<LI><UL><LI>No warning or information message should appear</LI></UL></LI> + '///+<LI>Enter the <i>incorrect value</I> + '///+<LI>Press RETURN</LI> + '///+<LI><UL><LI>A warning or information message should appear</LI></UL></LI> + '///+<LI><TABLE BORDER=1> + '///+ <TR><TH>Cell address</TH><TH>correct value</TH><TH>incorrect value</TH></TR> + '///+ <TR><TD>B4</TD><TD>3</TD><TD>8</TD></TR> + call check_message(sMType, "B4", "3", "8") + '///+ <TR><TD>B5</TD><TD>9</TD><TD>10</TD></TR> + call check_message(sMType, "B5", "9", "10") + '///+ <TR><TD>B6</TD><TD>28</TD><TD>25</TD></TR> + call check_message(sMType, "B6", "28", "25") + '///+ <TR><TD>B7</TD><TD>10</TD><TD>12</TD></TR> + call check_message(sMType, "B7", "10", "12") + '///+ <TR><TD>B8</TD><TD>11</TD><TD>9</TD></TR> + call check_message(sMType, "B8", "11", "9") + '///+ <TR><TD>B9</TD><TD>5</TD><TD>3</TD></TR> + call check_message(sMType, "B9", "5", "3") + '///+ <TR><TD>B10</TD><TD>1</TD><TD>6</TD></TR> + call check_message(sMType, "B10", "1", "6") + '///+ <TR><TD>B11</TD><TD>1</TD><TD>6</TD></TR> + call check_message(sMType, "B11", "1", "6") + '///+ <TR><TD>B17</TD><TD>3,14</TD><TD>3,15</TD></TR> + call check_message(sMType, "B17", "3" & sdecimalseperator & "14", "3" & sdecimalseperator & "15") + '///+ <TR><TD>B18</TD><TD>10,14</TD><TD>10,16</TD></TR> + call check_message(sMType, "B18", "10" & sdecimalseperator & "14", "10" & sdecimalseperator & "16") + '///+ <TR><TD>B19</TD><TD>25,10</TD><TD>25,09</TD></TR> + call check_message(sMType, "B19", "25" & sdecimalseperator & "10", "25" & sdecimalseperator & "09") + '///+ <TR><TD>B20</TD><TD>10,5</TD><TD>10,7</TD></TR> + call check_message(sMType, "B20", "10" & sdecimalseperator & "5", "10" & sdecimalseperator & "7") + '///+ <TR><TD>B21</TD><TD>11,9</TD><TD>10</TD></TR> + call check_message(sMType, "B21", "11" & sdecimalseperator & "9", "10") + '///+ <TR><TD>B22</TD><TD>3,145</TD><TD>3,14</TD></TR> + call check_message(sMType, "B22", "3" & sdecimalseperator & "145", "3" & sdecimalseperator & "14") + '///+ <TR><TD>B23</TD><TD>1,45</TD><TD>1,38</TD></TR> + call check_message(sMType, "B23", "1" & sdecimalseperator & "45", "1" & sdecimalseperator & "38") + '///+ <TR><TD>B24</TD><TD>2,03</TD><TD>2,15</TD></TR> + call check_message(sMType, "B24", "2" & sdecimalseperator & "03", "2" & sdecimalseperator & "15") + '///+ <TR><TD>E4</TD><TD>13.12.99</TD><TD>13.11.99</TD></TR> + call check_message(sMType, "E4", "13.12.99", "13.11.99") + '///+ <TR><TD>E5</TD><TD>12.12.99</TD><TD>13.12.99</TD></TR> + call check_message(sMType, "E5", "12.12.99", "13.12.99") + '///+ <TR><TD>E6</TD><TD>14.12.99</TD><TD>13.12.99</TD></TR> + call check_message(sMType, "E6", "14.12.99", "13.12.99") + '///+ <TR><TD>E7</TD><TD>13.12.99</TD><TD>14.12.99</TD></TR> + call check_message(sMType, "E7", "13.12.99", "14.12.99") + '///+ <TR><TD>E8</TD><TD>13.12.99</TD><TD>12.12.99</TD></TR> + call check_message(sMType, "E8", "13.12.99", "12.12.99") + '///+ <TR><TD>E9</TD><TD>13.11.99</TD><TD>13.12.99</TD></TR> + call check_message(sMType, "E9", "13.11.99", "13.12.99") + '///+ <TR><TD>E10</TD><TD>23.12.99</TD><TD>12.12.99</TD></TR> + call check_message(sMType, "E10", "23.12.99", "12.12.99") + '///+ <TR><TD>E11</TD><TD>24.12.99</TD><TD>23.12.99</TD></TR> + call check_message(sMType, "E11", "24.12.99", "23.12.99") + '///+ <TR><TD>E17</TD><TD>13:15</TD><TD>13:16</TD></TR> + call check_message(sMType, "E17", "13:15", "13:16") + '///+ <TR><TD>E18</TD><TD>10:15</TD><TD>14:16</TD></TR> + call check_message(sMType, "E18", "10:15", "14:16") + '///+ <TR><TD>E19</TD><TD>23:10</TD><TD>12:09</TD></TR> + call check_message(sMType, "E19", "23:10", "12:09") + '///+ <TR><TD>E20</TD><TD>13:15</TD><TD>13:16</TD></TR> + call check_message(sMType, "E20", "13:15", "13:16") + '///+ <TR><TD>E21</TD><TD>13:15</TD><TD>13:15</TD></TR> + call check_message(sMType, "E21", "13:15", "13:14") + '///+ <TR><TD>E22</TD><TD>13:16</TD><TD>13:15</TD></TR> + call check_message(sMType, "E22", "13:16", "13:15") + '///+ <TR><TD>E23</TD><TD>13:15</TD><TD>23:13</TD></TR> + call check_message(sMType, "E23", "13:15", "23:13") + '///+ <TR><TD>E24</TD><TD>12:59</TD><TD>13:00</TD></TR> + call check_message(sMType, "E24", "12:59", "13:00") + '///+ <TR><TD>H4</TD><TD>abc</TD><TD>abcd</TD></TR> + call check_message(sMType, "H4", "abc", "abcd") + '///+ <TR><TD>H5</TD><TD>abcdefgrd</TD><TD>aderfgtzjm</TD></TR> + call check_message(sMType, "H5", "abcdefgrd", "aderfgtzjm") + '///+ <TR><TD>H6</TD><TD>rftgzhujikolmnbvcxyaswqepk</TD><TD>ftgzhnujikm,lopredswqayx</TD></TR> + call check_message(sMType, "H6", "rftgzhujikolmnbvcxyaswqepk", "ftgzhnujikm,lopredswqayx") + '///+ <TR><TD>H7</TD><TD>asweqrfvbg</TD><TD>edcvfrtgbnh</TD></TR> + call check_message(sMType, "H7", "asweqrfvbg", "edcvfrtgbnh") + '///+ <TR><TD>H8</TD><TD>edcswxyaqtgb</TD><TD>ujnmkipztr</TD></TR> + call check_message(sMType, "H8", "edcswxyaqtgb", "ujnmkipztr") + '///+ <TR><TD>H9</TD><TD>sdxc</TD><TD>tgb</TD></TR> + call check_message(sMType, "H9", "sdxc", "tgb") + '///+ <TR><TD>H10</TD><TD>rfvbj</TD><TD>dfcvgb</TD></TR> + call check_message(sMType, "H10", "rfvbj", "dfcvgb") + '///+ <TR><TD>H11</TD><TD>g</TD><TD>we</TD></TR> + call check_message(sMType, "H11", "g", "we") + '///+ <TR><TH>New featurs OpenOffice 2.0</TH></TR>we</TD></TR> + '///+ <TR><TD>B30</TD><TD>February</TD><TD>January</TD></TR> + call check_message(sMType, "B30", "February", "January") + '///+ <TR><TD>B31</TD><TD>May</TD><TD>February</TD></TR> + call check_message(sMType, "B31", "May", "February") + '///+ <TR><TD>B32</TD><TD>June</TD><TD>January</TD></TR> + call check_message(sMType, "B32", "June", "January") + '///+ <TR><TD>B33</TD><TD>August</TD><TD>November</TD></TR> + call check_message(sMType, "B33", "August", "November") + '///+ <TR><TD>B34</TD><TD>September</TD><TD>December</TD></TR> + call check_message(sMType, "B34", "September", "December") + '///+ <TR><TD>B35</TD><TD>October</TD><TD>March</TD></TR> + call check_message(sMType, "B35", "October", "March") + '///+ <TR><TD>B36</TD><TD>July</TD><TD>August</TD></TR> + call check_message(sMType, "B36", "July", "August") + '///+ <TR><TD>B37</TD><TD>April</TD><TD>October</TD></TR> + call check_message(sMType, "B37", "April", "October") + '///+ <TR><TD>B38</TD><TD>Name03</TD><TD>Name07</TD></TR> + call check_message(sMType, "B38", "Name03", "Name07") + '///+ <TR><TD>E30</TD><TD>alpha</TD><TD>omega</TD></TR> + call check_message(sMType, "E30", "alpha", "omega") + '///+ <TR><TD>E31</TD><TD>beta</TD><TD>zeta</TD></TR> + call check_message(sMType, "E31", "beta", "zeta") + '///+ <TR><TD>E32</TD><TD>gamma</TD><TD>psi</TD></TR> + call check_message(sMType, "E32", "gamma", "psi") + '///+ <TR><TD>E33</TD><TD>delta</TD><TD>pi/2</TD></TR> + call check_message(sMType, "E33", "delta", "pi/2") + '///+ </TABLE></LI></UL> + next iCount + '/// File / Close + call hCloseDocument endcase diff --git a/testautomation/spreadsheet/required/includes/c_upd_datamenu.inc b/testautomation/spreadsheet/required/includes/c_upd_datamenu.inc index 2975a7b1c9e2..2c77baeea56d 100755..100644 --- a/testautomation/spreadsheet/required/includes/c_upd_datamenu.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_datamenu.inc @@ -885,10 +885,7 @@ testcase tDataDataPilot '/// Open testdocument 'gTesttoolPath + spreadsheet\required\input\datapilot.ods' printlog " Open testdocument 'gTesttoolPath + spreadsheet\required\input\datapilot.ods'" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\datapilot.ods" )) - '/// If the file is not editable, click the edit button on standardbar - printlog " If the file is not editable, click the edit button on standardbar" - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\datapilot.ods" ) '/// Select cell C34 printlog " Select cell C34" Call fCalcSelectRange ( "C34" ) @@ -1030,10 +1027,7 @@ testcase tDataRefreshRange '/// Load testdocument Database_Refresh printlog " Load testdocument Database_Refresh" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\Database_Refresh.ods" )) - '/// If the file is not editable, click the edit button on standardbar - printlog " If the file is not editable, click the edit button on standardbar" - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\Database_Refresh.ods" ) '/// Refresh Database by 'Data – Refresh Range' printlog " Refresh Database by 'Data – Refresh Range'" DataRefreshRange diff --git a/testautomation/spreadsheet/required/includes/c_upd_editmenu2.inc b/testautomation/spreadsheet/required/includes/c_upd_editmenu2.inc index fed4fd764f17..a67502448d9a 100755..100644 --- a/testautomation/spreadsheet/required/includes/c_upd_editmenu2.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_editmenu2.inc @@ -638,10 +638,7 @@ testcase tEditObjectEdit '/// Load testdocument 'spreadsheet/required/input/tEditObject.ods' printlog " Load testdocument 'spreadsheet/required/input/tEditObject.ods'" - Call hFileOpen ( ConvertPath ( gTesttoolPath + "spreadsheet\required\input\tEditObject.ods")) - '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - sMakeReadOnlyDocumentEditable() + hFileOpenLocally( gTesttoolPath + "spreadsheet\required\input\tEditObject.ods" ) '/// Select OLE-object printlog " Select OLE-object" fselectFirstOLE diff --git a/testautomation/spreadsheet/required/includes/c_upd_filemenu.inc b/testautomation/spreadsheet/required/includes/c_upd_filemenu.inc index 6328a62f5b37..ea8efd09dd2c 100644 --- a/testautomation/spreadsheet/required/includes/c_upd_filemenu.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_filemenu.inc @@ -358,10 +358,10 @@ endcase testcase tFileRecentDocuments -if gPlatform = "lin" then - warnlog "#110649# Due to bug this testcase is not available" - goto endsub -end if +'if gPlatform = "lin" then +' warnlog "#110649# Due to bug this testcase is not available" +' goto endsub +'end if dim sTestFile as string @@ -372,11 +372,15 @@ end if Printlog " Enter some text" Kontext "DocumentCalc" DocumentCalc.Typekeys "The first doc!<RETURN>" + Printlog " Copy Test File spreadsheet/required/input/recentdocument.ods locally" - app.FileCopy convertpath(gTesttoolpath & "spreadsheet\required\input\recentdocument.ods"),gOfficePath + ConvertPath("user/work/recentdocument.ods") - Printlog " Load local copied testfile recentdocument.ods" - sTestFile = convertpath(gOfficePath & "user/work/recentdocument.ods") - Call hFileOpen(sTestFile) + hFileOpenLocally( gTesttoolpath & "spreadsheet\required\input\recentdocument.ods" ) + sTestFile = gLastWorkFile ' get the new file location + + 'app.FileCopy convertpath(gTesttoolpath & "spreadsheet\required\input\recentdocument.ods"),gOfficePath + ConvertPath("user/work/recentdocument.ods") + 'Printlog " Load local copied testfile recentdocument.ods" + 'sTestFile = convertpath(gOfficePath & "user/work/recentdocument.ods") + 'Call hFileOpen(sTestFile) '/// Close the document. Printlog " Close the document." '/// Now an item in <i>File / Recent Documents</i> should exist @@ -413,6 +417,8 @@ end if '/// Close starting document Printlog " Close starting document" Call hCloseDocument + Printlog " Delete local copy of the workfile" + hFileDelete( sTestFile ) endcase '----------------------------------------------------------- diff --git a/testautomation/spreadsheet/required/includes/c_upd_formatmenu.inc b/testautomation/spreadsheet/required/includes/c_upd_formatmenu.inc index f61db3626809..3ca188c3a8ee 100755..100644 --- a/testautomation/spreadsheet/required/includes/c_upd_formatmenu.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_formatmenu.inc @@ -630,8 +630,8 @@ testcase tFormatPage end if '/// Check that listbox 'Paper tray' has items printlog " Check that listbox 'Paper tray' has items" - if Schacht < 1 then - warnlog "The text direction listbox is empty" + if Schacht.GetItemCount < 1 then + warnlog "The paper tray listbox is empty" end if '/// Increase 'Margins Left' printlog " Increase 'Margins Left'" diff --git a/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc b/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc index 6ec04a89c260..cc448d3c3830 100755..100644 --- a/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc @@ -29,23 +29,6 @@ '* '* short description : Resource Test - Format Menu Part II '* -'************************************************************************ -'* -' #1 tFormatPrintRanges -' #1 tFormatCharacter -' #1 tFormatParagraph -' #1 tFormatChangeCase -' #1 tFormatStyles -' #1 tFormatAutoFormat -' #1 tFormatConditionalFormatting -' #1 tFormatAnchor -' #1 tFormatAlignment -' #1 tFormatArrange -' #1 tFormatFlip -' #1 tFormatGroup -' #0 tFormatControl - -'* '\*********************************************************************** sub c_upd_formatmenu2 @@ -635,10 +618,7 @@ testcase tFormatAlignment '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\twoobjects.ods" )) - '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\twoobjects.ods" ) '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) @@ -667,6 +647,7 @@ testcase tFormatAlignment '/// Close document printlog " Close document" Call hCloseDocument + hFileDelete( gLastWorkFile ) endcase @@ -747,10 +728,7 @@ testcase tFormatGroup '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\twoobjects.ods" )) - '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\twoobjects.ods" ) '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) @@ -773,6 +751,7 @@ testcase tFormatGroup '/// Close document printlog " Close document" Call hCloseDocument + hFileDelete( gLastWorkFile ) endcase diff --git a/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc b/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc index 08ea0cd1a3af..0dd9d3200937 100755..100644 --- a/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc @@ -29,14 +29,6 @@ '* '* short description : Resource Test - Format Menu Part III '* -'************************************************************************ -'* -' #1 tFormatGraphicPositionAndSize -' #1 tFormatGraphicLine -' #1 tFormatGraphicArea -' #1 tFormatGraphicText -' #1 tFormatGraphicPoints -'* '\*********************************************************************** sub c_upd_formatmenu3 @@ -58,10 +50,7 @@ testcase tFormatGraphicPositionAndSize '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\twoobjects.ods" )) - '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "spreadsheet\required\input\twoobjects.ods" ) '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) @@ -132,6 +121,7 @@ testcase tFormatGraphicPositionAndSize '/// Close document printlog " Close document" call hCloseDocument + hFileDelete( gLastWorkFile ) endcase @@ -144,10 +134,8 @@ testcase tFormatGraphicLine '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\twoobjects.ods" )) - '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\twoobjects.ods" ) + '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) @@ -374,6 +362,7 @@ testcase tFormatGraphicLine '/// Close document printlog " Close document" Call hCloseDocument + hFileDelete( gLastWorkFile ) endcase @@ -384,10 +373,7 @@ testcase tFormatGraphicArea '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\twoobjects.ods" )) - '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\twoobjects.ods" ) '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) @@ -919,6 +905,7 @@ testcase tFormatGraphicArea '/// Close document printlog " Close document" Call hCloseDocument + hFileDelete( gLastWorkFile ) endcase @@ -929,10 +916,7 @@ testcase tFormatGraphicText '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\twoobjects.ods" )) - '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\twoobjects.ods" ) '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) @@ -1038,6 +1022,7 @@ testcase tFormatGraphicText '/// Close document printlog " Close document" call hCloseDocument + hFileDelete( gLastWorkFile ) endcase @@ -1048,10 +1033,7 @@ testcase tFormatGraphicPoints '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\twoobjects.ods" )) - '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\twoobjects.ods" ) '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) @@ -1061,6 +1043,7 @@ testcase tFormatGraphicPoints '/// Close document printlog " Close document" call hCloseDocument + hFileDelete( gLastWorkFile ) endcase diff --git a/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc b/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc index bcc263147371..74598099b43d 100644 --- a/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc @@ -29,23 +29,6 @@ '* '* short description : Resource Test - Tools Menu Part I '* -'************************************************************************ -'* -' #1 tToolsSpellcheck -' #1 tToolsHangulHanjaConversion -' #1 tToolsLanguageChineseTranslation -' #1 tToolsLanguageThesaurus -' #1 tToolsLanguageHyphenation -' #1 tToolsDetective -' #1 tToolsAutoCorrect -' #1 tToolsGoalSeek -' #1 tToolsScenario -' #1 tToolsProtectSheet -' #1 tToolsProtectDocument -' #1 tToolsCellContents -' #1 tToolsGallery -' #1 tToolsMediaPlayer -'* '\*********************************************************************** sub c_upd_toolsmenu @@ -77,10 +60,7 @@ testcase tToolsSpellcheck Dim iDictionaries as integer printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\english.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\english.ods" )) - '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\english.ods" ) '/// Enter 'fgsdftk' in a cell printlog " Enter 'fgsdftk' in a cell" Kontext "DocumentCalc" @@ -208,6 +188,7 @@ testcase tToolsSpellcheck '/// Close starting document printlog " Close starting document" call hCloseDocument + hFileDelete( gLastWorkFile ) endcase @@ -228,10 +209,7 @@ testcase tToolsHangulHanjaConversion bCTLLanguage = ActiveDeactivateCTLSupport(TRUE) '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\korean.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\korean.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\korean.ods" )) - '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\korean.ods" ) '/// Select cell B1 printlog " Select cell B1" Call fCalcSelectRange ("B1") @@ -337,6 +315,7 @@ testcase tToolsHangulHanjaConversion '/// Close document printlog " Close document" call hCloseDocument + hFileDelete( gLastWorkFile ) endcase @@ -392,9 +371,7 @@ testcase tToolsLanguageThesaurus '///<u><b>Tools – Language – Chinese Translation</b></u> printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\english.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\english.ods" )) - printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\english.ods" ) Kontext "DocumentCalc" printlog " Enter 'test' in a cell" Call fCalcSelectRange ("B2") @@ -427,6 +404,7 @@ testcase tToolsLanguageThesaurus Thesaurus.Cancel printlog " Close document" call hCloseDocument + hFileDelete( gLastWorkFile ) endcase diff --git a/testautomation/spreadsheet/tools/includes/c_l10n_tools.inc b/testautomation/spreadsheet/tools/includes/c_l10n_tools.inc index 382e48f94f86..1807ab4bf35a 100755..100644 --- a/testautomation/spreadsheet/tools/includes/c_l10n_tools.inc +++ b/testautomation/spreadsheet/tools/includes/c_l10n_tools.inc @@ -29,11 +29,6 @@ '* '* short description : tools for localisation in calc '* -'************************************************************************************************** -'* -' #1 fFunctionname 'Returns the localized name of a given function in the current UI language -' #1 fError_l10n 'Returns the localized name of a given errorcode in the current UI language -'* '\************************************************************************************************ function fFunctionname ( sFunctionname_en as string ) as string @@ -42,89 +37,101 @@ function fFunctionname ( sFunctionname_en as string ) as string '///+ -Input is the english name of the function as string '///+ -Output is the localized name of the function as string '///+ -If there is no translation available the fallback is the english name - + dim sloaddocument as string dim sfunctionstring as string dim scelladress as string - - use "global/tools/includes/required/t_doc2.inc" - const CFN = "qa:qatesttool:spreadsheet:tools:includes:c_l10n_tools.in:fFunctionname " - - sloaddocument = Convertpath (gTesttoolPath + "spreadsheet\tools\input\Functionnames.ods" ) - + + use "global/tools/includes/required/t_doc2.inc" + const CFN = "spreadsheet:tools:includes:c_l10n_tools.in:fFunctionname " + + sloaddocument = gTesttoolPath & "spreadsheet\tools\input\Functionnames.ods" + '///Load document with all functions <i>gTestToolPath</i>/spreadsheet/tools/input/Functionnames.ods - call hFileOpen ( sloaddocument ) + hFileOpenLocally( sloaddocument ) sleep (2) - '///Make sure that the file is editable - call sMakeReadOnlyDocumentEditable() '///Setting selection to A1 to avoid messagebox in Search and Replace dialog. call fCalcSelectRange ("A1") '///Search for function by Search and Replace dialog kontext "DocumentCalc" EditSearchAndReplace - sleep (1) + kontext "FindAndReplace" - '///Setting dialog to defaults - More.Click - SimilaritySearch.UnCheck - CurrentSelectionOnly.UnCheck - Backwards.UnCheck - SearchForStyles.UnCheck - SearchIn.Select 1 - '///Setting search parameter - WholeWordsOnly.Check - SearchFor.SetText sFunctionname_en - SearchNow.click - kontext - '///If a MsgBox appears the search must have failed => Fallback to english name - if active.exists then - if active.getRT = 304 then - warnlog CFN & "Function not found, falling back to english name" - fFunctionname = sFunctionname_en - active.OK + printlog( "Reset <Find and Replace> dialog to default settings" ) + if ( FindAndReplace.exists( 1 ) ) then + More.Click + SimilaritySearch.UnCheck + CurrentSelectionOnly.UnCheck + Backwards.UnCheck + SearchForStyles.UnCheck + SearchIn.Select 1 + '///Setting search parameter + WholeWordsOnly.Check + SearchFor.SetText sFunctionname_en + SearchNow.click + kontext + '///If a MsgBox appears the search must have failed => Fallback to english name + if active.exists then + if active.getRT = 304 then + warnlog CFN & "Function not found, falling back to english name" + fFunctionname = sFunctionname_en + active.OK + else + '///Throw a warning if a dialog of unexpected resource type appears + warnlog CFN & "Unknown message box! " & active.GetText + active.Default + fFunctionname = sFunctionname_en + end if + + kontext "FindAndReplace" + printlog( "Reset dialog to default settings" ) + if ( FindAndReplace.exists( 1 ) ) then + WholeWordsOnly.UnCheck + hCloseDialog( FindAndReplace, "close" ) + else + warnlog( CFN & "<FindAndReplace> not open" ) + endif + call hCloseDocument + exit function + end if + + kontext "FindAndReplace" + printlog( "Reset <Find and Replace> dialog to default settings" ) + if ( FindAndReplace.exists( 1 ) ) then + WholeWordsOnly.UnCheck + hCloseDialog( FindAndReplace, "close" ) else - '///Throw a warning if a dialog of unexpected resource type appears - warnlog CFN & "Unknown message box! " & active.GetText - active.Default - fFunctionname = sFunctionname_en - end if - kontext "FindAndReplace" - sleep (1) - '///Reset dialog to defaultsetting - WholeWordsOnly.UnCheck - FindAndReplace.Close - call hCloseDocument - exit function - end if - kontext "FindAndReplace" - sleep (1) - '///Reset dialog to defaultsettings - WholeWordsOnly.UnCheck - FindAndReplace.Close - Kontext "RechenleisteCalc" - scelladress = Bereich.GetSelText - if fCalcGetCellValue (scelladress) = sFunctionname_en then - '///Get localised string for function by extracting functionname out of next cell - call fCalcSelectRange ( "B" & mid(scelladress,2) ) - kontext ( "RechenleisteCalc" ) - EingabeZeileCalc.TypeKeys ("<f2><mod1 a>") - editcopy - sfunctionstring = GetClipboardText () - kontext "DocumentCalc" - DocumentCalc.TypeKeys ("<ESCAPE>",2) - ' DEBUG: printlog sfunctionstring - ' DEBUG: printlog len(sfunctionstring) - ' DEBUG: printlog instr(sfunctionstring,"(") - fFunctionname = mid(sfunctionstring,2,(instr(sfunctionstring,"(")-2) - printlog " The name of the function in this locale (" & iSprache & ") is " & fFunctionname + warnlog( CFN & "<FindAndReplace> not open" ) + endif + + Kontext "RechenleisteCalc" + scelladress = Bereich.GetSelText + if fCalcGetCellValue (scelladress) = sFunctionname_en then + '///Get localised string for function by extracting functionname out of next cell + call fCalcSelectRange ( "B" & mid(scelladress,2) ) + kontext ( "RechenleisteCalc" ) + EingabeZeileCalc.TypeKeys ("<f2><mod1 a>") + editcopy + sfunctionstring = GetClipboardText () + kontext "DocumentCalc" + DocumentCalc.TypeKeys ("<ESCAPE>",2) + ' DEBUG: printlog sfunctionstring + ' DEBUG: printlog len(sfunctionstring) + ' DEBUG: printlog instr(sfunctionstring,"(") + fFunctionname = mid(sfunctionstring,2,(instr(sfunctionstring,"(")-2) + printlog " The name of the function in this locale (" & iSprache & ") is " & fFunctionname + else + warnlog CFN & "Function not found, falling back to english version" + fFunctionname = sFunctionname_en + end if else - warnlog CFN & "Function not found, falling back to english version" - fFunctionname = sFunctionname_en - end if - + warnlog( CFN & "Unable to open <FindAndReplace> dialog" ) + endif + call hCloseDocument - + hFileDelete( gLastWorkFile ) + end function ' @@ -137,21 +144,18 @@ function fError_l10n ( sError_en as string ) as string '///+ -Input is the english name of the error as string '///+ -Output is the localized name of the error as string '///+ -If there is no translation available the fallback is the english name - + dim sloaddocument as string dim sfunctionstring as string dim scelladress as string - - use "global/tools/includes/required/t_doc2.inc" + + use "global/tools/includes/required/t_doc2.inc" const CFN = "qa:qatesttool:spreadsheet:tools:includes:c_l10n_tools.in:fError_l10n " - - sloaddocument = Convertpath (gTesttoolPath + "spreadsheet\tools\input\Errorcodes.ods" ) - + + sloaddocument = gTesttoolPath & "spreadsheet\tools\input\Errorcodes.ods" + '///Load document with all errorcodes <i>gTestToolPath</i>/spreadsheet/tools/input/Errorcodes.ods - call hFileOpen ( sloaddocument ) - sleep (2) - '///Make sure that the file is editable - call sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sloaddocument ) '///Setting selection to A1 to avoid messagebox in Search and Replace dialog. call fCalcSelectRange ("A1") @@ -160,7 +164,7 @@ function fError_l10n ( sError_en as string ) as string EditSearchAndReplace sleep (1) kontext "FindAndReplace" - '///Setting dialog to defaults + '///Setting dialog to defaults More.Click SimilaritySearch.UnCheck CurrentSelectionOnly.UnCheck @@ -180,27 +184,37 @@ function fError_l10n ( sError_en as string ) as string active.OK else '///Throw a warning if a dialog of unexpected resource type appears - warnlog CFN & "Unknown message box! " & active.GetText - active.Default - fError_l10n = sError_en - end if - kontext "FindAndReplace" - sleep (1) - '///Reset dialog to defaultsetting - WholeWordsOnly.UnCheck - FindAndReplace.Close - call hCloseDocument - exit function - end if + warnlog CFN & "Unknown message box! " & active.GetText + active.Default + fError_l10n = sError_en + end if + + kontext "FindAndReplace" + '///Reset dialog to defaultsetting + if ( FindAndReplace.exists( 1 ) ) then + WholeWordsOnly.UnCheck + hCloseDialog( FindAndReplace, "close" ) + else + warnlog( CFN & "Failed to open <FindAndReplace>" ) + endif + + call hCloseDocument + exit function + end if + kontext "FindAndReplace" - sleep (1) '///Reset dialog to defaultsetting - WholeWordsOnly.UnCheck - FindAndReplace.Close + if ( FindAndReplace.exists( 1 ) ) then + WholeWordsOnly.UnCheck + hCloseDialog( FindAndReplace, "close" ) + else + warnlog( CFN & "Failed to open <FindAndReplace>" ) + endif + Kontext "RechenleisteCalc" - scelladress = Bereich.GetSelText + scelladress = Bereich.GetSelText if fCalcGetCellValue (scelladress) = sError_en then - '///Get localised string for ERR by extracting errorcode out of next cell + '///Get localised string for ERR by extracting errorcode out of next cell call fCalcSelectRange ( "B" & mid(scelladress,2) ) kontext "DocumentCalc" editcopy @@ -211,7 +225,8 @@ function fError_l10n ( sError_en as string ) as string warnlog CFN & "Errorcode not found, falling back to english version" fError_l10n = sError_en end if - + call hCloseDocument - + hFileDelete( gLastWorkFile ) + end function diff --git a/testautomation/tools/hid/cons.txt b/testautomation/tools/hid/cons.txt deleted file mode 100755 index ad1b62d7671f..000000000000 --- a/testautomation/tools/hid/cons.txt +++ /dev/null @@ -1,83 +0,0 @@ -644j_HID_Eigen 01010100101010101010101010 - -TB_SW_TEXT_TOOLBOX 23265 -TB_SW_TABLE_TOOLBOX 23266 -TB_SW_GRAFIK_TOOLBOX 23268 -TB_SW_DRAW_TEXTBOX_TOOLBOX 23269 -TB_SW_DRAW_TEXT_TOOLBOX 23270 -TB_SW_NUM_TOOLBOX 23271 -TB_SW_OLE_TOOLBOX 23272 -TB_SW_TOOLS_TOOLBOX 23273 -TB_SW_PREVIEW_TOOLBOX 20631 -HDE_OL_SW_FORMAT_GRAFIK 23267 -HDE_HID_LAB_LAB 54920 -HDE_PDF_EXPORT_DLG 33375 -TB_WEB_TOOLS_TOOLBOX 20402 -TB_WEB_TOOLBOX 20403 - -TB_SC_TEXT_TOOLBOX 25001 -TB_SC_DRAW_Text_TOOLBOX 25005 -TB_SC_PREVIEW_TOOLBOX 25006 -TB_SC_TOOLS_TOOLBOX 25035 -TB_SC_OLE_TOOLBOX 26436 - -TB_IM_TOOLS_TOOLBOX 23011 -TB_IM_DIA_TOOLBOX 23012 -TB_IM_TOOLBOX 23030 -TB_IM_SLIDE_OBJ_TOOLBOX 23014 -TB_SD_BEZIER_TOOLBOX 23015 -TB_IM_TEXT_TOOLBOX 23016 -TB_IM_OUTLINIG_TOOLBOX 23017 -TB_SD_GLUEPOINTS_TOOLBOX 23019 -TB_IM_OPTIONS_TOOLBOX 23020 -TB_IM_COMMONTASK_TOOLBOX 23021 -TB_SD_TOOLS_TOOLBOX 23025 -TB_SD_OPTION_TOOLBOX 23026 -TB_SD_TOOLBOX 23027 -TB_SD_TEXT_TOOLBOX 23028 - -TB_Fullscreen_Toolbox 558 - -TB_Basic_Controls 63543 - -HDE_PRN_UNX_PAPER 602472448 -HDE_PRN_UNX_PAPERSIZE 602476034 -HDE_PRN_UNX_ORIENTATION 602476036 -HDE_PRN_UNX_DUPLEX 602476038 -HDE_PRN_UNX_INPUT_SLOT 602476040 -HDE_PRN_UNX_SCALE 602479114 -HDE_PRN_UNX_DEVICE 602456064 -HDE_PRN_UNX_OPTION 602459652 -HDE_PRN_UNX_VALUE 602459654 -HDE_PRN_UNX_POSTSCRIPT 602465288 -HDE_PRN_UNX_COLOR 602459658 -HDE_PRN_UNX_COLORDEPTH 602465292 -HDE_PRN_UNX_COMPRESS 602457101 - -SID_VERB_OPEN 6103 -SID_VERB_START 6102 - -TB_Macro 14850 -TB_Macro_Controls 14916 -TZ_Filter_Warning 34195 - -MSC_Super_ID 123456 -MSC_Super_ID2 1234567 -MSC_Super_ID3 12345678 - -sfx2:ListBox:TP_CONFIG_ACCEL:BOX_ACC_KEY 575016462 - -HID_OPTIONS_JAVA_LIST 39997 - -PDF1TBO 867876864 -PDF2TBO 867860480 - -FontWork1TBO 40026 -FontWork2TBO 40027 - -Eval1TBO 64360 -Eval2TBO 64361 -HTMLTBO 808846359 - - - diff --git a/testautomation/tools/hid/hid.bat b/testautomation/tools/hid/hid.bat deleted file mode 100755 index b454bb366012..000000000000 --- a/testautomation/tools/hid/hid.bat +++ /dev/null @@ -1,2 +0,0 @@ -perl.exe hid.pl hid.lst hid.txt cons.txt - diff --git a/testautomation/tools/hid/hid.pl b/testautomation/tools/hid/hid.pl deleted file mode 100755 index 3a36b02cb31e..000000000000 --- a/testautomation/tools/hid/hid.pl +++ /dev/null @@ -1,92 +0,0 @@ -#************************************************************************** -# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. -# -# Copyright 2000, 2010 Oracle and/or its affiliates. -# -# OpenOffice.org - a multi-platform office productivity suite -# -# This file is part of OpenOffice.org. -# -# OpenOffice.org is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License version 3 -# only, as published by the Free Software Foundation. -# -# OpenOffice.org is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License version 3 for more details -# (a copy is included in the LICENSE file that accompanied this code). -# -# You should have received a copy of the GNU Lesser General Public License -# version 3 along with OpenOffice.org. If not, see -# <http://www.openoffice.org/license.html> -# for a copy of the LGPLv3 License. -# -#****************************************************************** -#* -#* Owner : thorsten.bosbach@oracle.com -#* -#* short description : Generate a cleaned hid.lst -#* -#****************************************************************** -# -# syntax : hid.pl Input Output ConstantEntries -# usually: hid.pl hid.lst hid.txt const.txt -# - -for (@ARGV){print $_."\n";} -open (HID,"<".@ARGV[0]) || die "Can't find old HID-file (first argument)"; -@ary=( <HID> ); -close HID; -open (HID,">".@ARGV[1]) || die "Can't find new HID-file (second argument)"; - -@longnum = @longname = (); - -for (@ary) { - s/MN_VIEW 21//g; # remove slots that are wrong - s/MN_INSERT 24//g; - s/MN_SUB_TOOLBAR 92//g; - s/SID_OBJECT_MIRROR 27085//g; - s/UID_SQLERROR_BUTTONMORE 38844//g; - s/MN_EXTRA 22//g; # ------------------------------------------- - s/RID_UNDO_DELETE_WARNING 20558//g; - s/.* 01010101010//g; - s/ +/ /g; # remove double blanks - @x = split(/\s+/) ; # seperate Longnames and HIDs -# @x[0]=~ tr/a-z/A-Z/; -# @x[1]=~ tr/a-z/A-Z/; - $longname[++$#longname] = @x[0]; - $longnum[++$#longnum] = @x[1]; - $_=@x[0]." ".@x[1]."\n"; -} - -@ary = @ary[ sort{ # sort - @longnum[$a] <=> @longnum[$b] || - @longname[$a] cmp @longname[$b] - }0..$#ary - ]; - -# @ary = grep( !/^ *$/, @ary); - -#remove double entries - -$n=""; -for (@ary) { - if ($n eq $_ || $_>0 ){ - $_=""; - } - else{ - $n=$_; - } - } - -@ary = grep( !/^ *$/, @ary); - -# to insert the constant entries at the beginning, read it and write it out -open (CON,"<".@ARGV[2]) || die "Can't find constant entries-file: const.txt (third argument)"; -@const=( <CON> ); -close CON; -print HID @const; - -print HID @ary; -close HID; diff --git a/testautomation/tools/hid/hid.sh b/testautomation/tools/hid/hid.sh deleted file mode 100755 index f7c6d27a5f98..000000000000 --- a/testautomation/tools/hid/hid.sh +++ /dev/null @@ -1,2 +0,0 @@ - perl hid.pl hid.lst hid.txt cons.txt - cp hid.txt ../../global/hid/hid.lst diff --git a/testautomation/writer/optional/includes/alternative_text/w_alternative_text.inc b/testautomation/writer/optional/includes/alternative_text/w_alternative_text.inc index 74f65eaa1704..a80e5b0e925b 100644 --- a/testautomation/writer/optional/includes/alternative_text/w_alternative_text.inc +++ b/testautomation/writer/optional/includes/alternative_text/w_alternative_text.inc @@ -37,7 +37,6 @@ sub w_alternative_text Call tFrameAlternativeText Call tOLEAlternativeText - end sub '------------------------------------------------------------------------- @@ -106,7 +105,7 @@ testcase tPictureAlternativeText Call hCloseDocument printlog "- Reload" - Call hFileOpen ( gOfficePath + "user\work\tPictureAlternativeText.odt" ) + hFileOpen( gOfficePath + "user\work\tPictureAlternativeText.odt" ) ' select graphic Call wTypeKeys ("<SHIFT F4>") @@ -190,7 +189,7 @@ testcase tFrameAlternativeText Call hCloseDocument printlog "- Reload" - Call hFileOpen ( gOfficePath + "user\work\tFrameAlternativeText.odt" ) + hFileOpen( gOfficePath + "user\work\tFrameAlternativeText.odt" ) ' select frame Call wTypeKeys ("<SHIFT F4>") @@ -271,7 +270,7 @@ testcase tOLEAlternativeText Call hCloseDocument printlog "- Reload" - Call hFileOpen ( gOfficePath + "user\work\tOLEAlternativeText.odt" ) + hFileOpen( gOfficePath + "user\work\tOLEAlternativeText.odt" ) ' select OLE Call wTypeKeys ("<SHIFT F4>") @@ -293,7 +292,5 @@ testcase tOLEAlternativeText printlog "- close document" Call hCloseDocument - - endcase
\ No newline at end of file diff --git a/testautomation/writer/optional/includes/autocorrection/w_autocorrect2.inc b/testautomation/writer/optional/includes/autocorrection/w_autocorrect2.inc index b15edc69479a..88297c3aa709 100755..100644 --- a/testautomation/writer/optional/includes/autocorrection/w_autocorrect2.inc +++ b/testautomation/writer/optional/includes/autocorrection/w_autocorrect2.inc @@ -127,8 +127,8 @@ testcase tToolsAutocorrectWordCompletion_2 '/// delete all entries '/// close and reopen dialog, check entries again - Call hFileOpen ( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) + 'Delete all entries in the list Call fDeleteAllEntries() @@ -196,8 +196,8 @@ testcase tToolsAutocorrectWordCompletion_3 '/// backwards with <SHIFT-CTRL-Tab> '/// endless loop test - Call hFileOpen ( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) + 'Delete all entries in the list Call fDeleteAllEntries() @@ -287,8 +287,8 @@ testcase tToolsAutocorrectWordCompletion_4 MaxEintraege.SetText sTestMaxEntries TabWortergaenzung.OK - Call hFileOpen ( gTesttoolPath + "writer\optional\input\advanced\" + sTestFile ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\advanced\" + sTestFile ) + Sleep 4 ToolsAutocorrect @@ -337,8 +337,8 @@ testcase tToolsAutocorrectWordCompletion_5 'Test when checkbox is checkec -- default 'Open 1st file - Call hFileOpen ( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) + 'Delete all entries in the list Call fDeleteAllEntries() @@ -355,8 +355,8 @@ testcase tToolsAutocorrectWordCompletion_5 Call wTypeKeys sTestWord1 'Open 2nd file - Call hFileOpen ( gTesttoolPath + "writer\optional\input\autocorrection\01-01.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\autocorrection\01-01.odt" ) + Call wTypeKeys sTestWord2 Call wTypeKeys sTestWord3 @@ -386,8 +386,8 @@ testcase tToolsAutocorrectWordCompletion_5 'Test when checkbox is Checked 'Open 1st file - Call hFileOpen ( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) + 'Delete all entries in the list fDeleteAllEntries() @@ -403,8 +403,8 @@ testcase tToolsAutocorrectWordCompletion_5 Call wTypeKeys sTestWord1 'Open 2nd file - Call hFileOpen ( gTesttoolPath + "writer\optional\input\autocorrection\01-01.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\autocorrection\01-01.odt" ) + Call wTypeKeys sTestWord2 Call wTypeKeys sTestWord3 @@ -453,8 +453,8 @@ testcase tToolsAutocorrectWordCompletion_6 '/// and a help tip will appear <--- no way to test yet 'Show as Tip -- uncheck (default) - Call hFileOpen ( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) + Call wTypeKeys sTestWord Call wTypeKeys "<Return>" diff --git a/testautomation/writer/optional/includes/clipboard/clipbrd_func.inc b/testautomation/writer/optional/includes/clipboard/clipbrd_func.inc index de6a4d0b4fef..0c9f976b187b 100755..100644 --- a/testautomation/writer/optional/includes/clipboard/clipbrd_func.inc +++ b/testautomation/writer/optional/includes/clipboard/clipbrd_func.inc @@ -141,8 +141,8 @@ end function function wSetClipboardtestDefaults(ForWhat as string) as boolean printlog " Points cursor to beginning of document " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\writer.sxw") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\writer.sxw") + Kontext "DocumentWriter" printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" diff --git a/testautomation/writer/optional/includes/clipboard/w_210_.inc b/testautomation/writer/optional/includes/clipboard/w_210_.inc index 12926c8a486b..bef3214a1d46 100755..100644 --- a/testautomation/writer/optional/includes/clipboard/w_210_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_210_.inc @@ -225,7 +225,7 @@ testcase WriterToWriterFrame printlog " + Close saved document " Call hCloseDocument printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_frame.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_frame.odt",false) printlog " + Close saved document " Call hCloseDocument else @@ -267,7 +267,7 @@ testcase WriterToWriterDrawingObject printlog " + Close saved document " Call hCloseDocument printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_draw.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_draw.odt",false) printlog " + Close saved document " Call hCloseDocument else @@ -309,7 +309,7 @@ testcase WriterToWriterGraphicLinked printlog " + Close saved document " Call hCloseDocument printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_graphic1.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_graphic1.odt",false) printlog " + Close saved document " Call hCloseDocument else @@ -351,7 +351,7 @@ testcase WriterToWriterGraphicEmbedded printlog " + Close saved document " Call hCloseDocument printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_graphic2.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_graphic2.odt",false) printlog " + Close saved document " Call hCloseDocument else @@ -393,7 +393,7 @@ testcase WriterToWriterOLEObject printlog " + Close saved document " Call hCloseDocument printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_ole.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_ole.odt",false) printlog " + Close saved document " Call hCloseDocument else @@ -435,7 +435,7 @@ testcase WriterToWriterControl printlog " + Close saved document " Call hCloseDocument printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_control.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_control.odt",false) printlog " + Close saved document " Call hCloseDocument else diff --git a/testautomation/writer/optional/includes/clipboard/w_211_.inc b/testautomation/writer/optional/includes/clipboard/w_211_.inc index b385e745cf16..7c4476eccc92 100755..100644 --- a/testautomation/writer/optional/includes/clipboard/w_211_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_211_.inc @@ -79,7 +79,7 @@ testcase WriterToCalcText Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_calc_text.ods",true) + hFileOpen( gOfficepath + "user\work\writer_to_calc_text.ods",true) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -133,7 +133,7 @@ testcase WriterToCalcField Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_calc_field.ods",true) + hFileOpen( gOfficepath + "user\work\writer_to_calc_field.ods",true) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -192,7 +192,7 @@ testcase WriterToCalcTable kontext "navigator" if navigator.exists then navigator.close - Call hFileOpen (gOfficepath + "user\work\writer_to_calc_table.ods",false) + hFileOpen( gOfficepath + "user\work\writer_to_calc_table.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -248,7 +248,7 @@ testcase WriterToCalcFrame Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_calc_frame.ods",false) + hFileOpen( gOfficepath + "user\work\writer_to_calc_frame.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -302,7 +302,7 @@ testcase WriterToCalcDrawingObject Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_calc_draw.ods",false) + hFileOpen( gOfficepath + "user\work\writer_to_calc_draw.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -357,7 +357,7 @@ testcase WriterToCalcGraphicLinked Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_calc_graphic1.ods",false) + hFileOpen( gOfficepath + "user\work\writer_to_calc_graphic1.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -412,7 +412,7 @@ testcase WriterToCalcGraphicEmbedded Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_calc_graphic2.ods",false) + hFileOpen( gOfficepath + "user\work\writer_to_calc_graphic2.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -466,7 +466,7 @@ testcase WriterToCalcOLEObject Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_calc_ole.ods",false) + hFileOpen( gOfficepath + "user\work\writer_to_calc_ole.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -520,7 +520,7 @@ testcase WriterToCalcControl Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_calc_control.ods",false) + hFileOpen( gOfficepath + "user\work\writer_to_calc_control.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_212_.inc b/testautomation/writer/optional/includes/clipboard/w_212_.inc index 6c2a6e9c175e..277a837d42bd 100755..100644 --- a/testautomation/writer/optional/includes/clipboard/w_212_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_212_.inc @@ -80,7 +80,7 @@ testcase WriterToImpressText Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_impress_text.odp",false) + hFileOpen( gOfficepath + "user\work\writer_to_impress_text.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -134,7 +134,7 @@ testcase WriterToImpressField Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_impress_field.odp",false) + hFileOpen( gOfficepath + "user\work\writer_to_impress_field.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -188,7 +188,7 @@ testcase WriterToImpressTable Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_impress_table.odp",false) + hFileOpen( gOfficepath + "user\work\writer_to_impress_table.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -242,7 +242,7 @@ testcase WriterToImpressFrame Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_impress_frame.odp",false) + hFileOpen( gOfficepath + "user\work\writer_to_impress_frame.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -296,7 +296,7 @@ testcase WriterToImpressDrawingObject Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_impress_draw.odp",false) + hFileOpen( gOfficepath + "user\work\writer_to_impress_draw.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -350,7 +350,7 @@ testcase WriterToImpressGraphicLinked Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_impress_graphic1.odp",false) + hFileOpen( gOfficepath + "user\work\writer_to_impress_graphic1.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -404,7 +404,7 @@ testcase WriterToImpressGraphicEmbedded Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_impress_graphic2.odp",false) + hFileOpen( gOfficepath + "user\work\writer_to_impress_graphic2.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -458,7 +458,7 @@ testcase WriterToImpressOLEObject Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_impress_ole.odp",false) + hFileOpen( gOfficepath + "user\work\writer_to_impress_ole.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -512,7 +512,7 @@ testcase WriterToImpressControl Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_impress_control.odp",false) + hFileOpen( gOfficepath + "user\work\writer_to_impress_control.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_213_.inc b/testautomation/writer/optional/includes/clipboard/w_213_.inc index 1cf8e50fa2de..72cdeac69678 100755..100644 --- a/testautomation/writer/optional/includes/clipboard/w_213_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_213_.inc @@ -79,7 +79,7 @@ testcase WriterToDrawText Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_draw_text.odg",false) + hFileOpen( gOfficepath + "user\work\writer_to_draw_text.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -133,7 +133,7 @@ testcase WriterToDrawField Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_draw_field.odg",false) + hFileOpen( gOfficepath + "user\work\writer_to_draw_field.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -187,7 +187,7 @@ testcase WriterToDrawTable Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_draw_table.odg",false) + hFileOpen( gOfficepath + "user\work\writer_to_draw_table.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -241,7 +241,7 @@ testcase WriterToDrawFrame Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_draw_frame.odg",false) + hFileOpen( gOfficepath + "user\work\writer_to_draw_frame.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -295,7 +295,7 @@ testcase WriterToDrawDrawingObject Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_draw_draw.odg",false) + hFileOpen( gOfficepath + "user\work\writer_to_draw_draw.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -350,7 +350,7 @@ testcase WriterToDrawGraphicLinked Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_draw_graphic1.odg",false) + hFileOpen( gOfficepath + "user\work\writer_to_draw_graphic1.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -405,7 +405,7 @@ testcase WriterToDrawGraphicEmbedded Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_draw_graphic2.odg",false) + hFileOpen( gOfficepath + "user\work\writer_to_draw_graphic2.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -459,7 +459,7 @@ testcase WriterToDrawOLEObject Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_draw_ole.odg",false) + hFileOpen( gOfficepath + "user\work\writer_to_draw_ole.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -513,7 +513,7 @@ testcase WriterToDrawControl Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_draw_control.odg",false) + hFileOpen( gOfficepath + "user\work\writer_to_draw_control.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_214_.inc b/testautomation/writer/optional/includes/clipboard/w_214_.inc index 5f6521b4ae67..12b9b687b426 100755..100644 --- a/testautomation/writer/optional/includes/clipboard/w_214_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_214_.inc @@ -78,7 +78,7 @@ testcase WriterToHTMLText Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_html_text.html") + hFileOpen( gOfficepath + "user\work\writer_to_html_text.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -131,7 +131,7 @@ testcase WriterToHTMLField Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_html_field.html") + hFileOpen( gOfficepath + "user\work\writer_to_html_field.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -184,7 +184,7 @@ testcase WriterToHTMLTable Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_html_table.html") + hFileOpen( gOfficepath + "user\work\writer_to_html_table.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -237,7 +237,7 @@ testcase WriterToHTMLFrame Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_html_frame.html") + hFileOpen( gOfficepath + "user\work\writer_to_html_frame.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -290,7 +290,7 @@ testcase WriterToHTMLDrawingObject Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_html_draw.html") + hFileOpen( gOfficepath + "user\work\writer_to_html_draw.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -343,7 +343,7 @@ testcase WriterToHTMLGraphicLinked Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_html_graphic1.html") + hFileOpen( gOfficepath + "user\work\writer_to_html_graphic1.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -396,7 +396,7 @@ testcase WriterToHTMLGraphicEmbedded Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_html_graphic2.html") + hFileOpen( gOfficepath + "user\work\writer_to_html_graphic2.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -449,7 +449,7 @@ testcase WriterToHTMLOLEObject Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_html_ole.html") + hFileOpen( gOfficepath + "user\work\writer_to_html_ole.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -502,7 +502,7 @@ testcase WriterToHTMLControl Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_html_control.html") + hFileOpen( gOfficepath + "user\work\writer_to_html_control.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_215_.inc b/testautomation/writer/optional/includes/clipboard/w_215_.inc index 95883f35ae1b..992efb2981ca 100755..100644 --- a/testautomation/writer/optional/includes/clipboard/w_215_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_215_.inc @@ -50,8 +50,8 @@ testcase CalcToWriterText1 printlog " Jump to beginning of document " printlog " Select cell <A2> " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") + Kontext "DocumentCalc" printlog " Jump to beginning of document " DocumentCalc.TypeKeys "<Mod1 Home>" @@ -113,8 +113,8 @@ testcase CalcToWriterText2 printlog " Jump to beginning of document " printlog " Select cell <A1>, press F2 and select all " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") + Kontext "DocumentCalc" printlog " Jump to beginning of document " DocumentCalc.TypeKeys "<Mod1 Home>" @@ -147,7 +147,7 @@ testcase CalcToWriterText2 Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_textformat_cellcontent.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_textformat_cellcontent.odt",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -168,8 +168,8 @@ testcase CalcToWriterCalculation printlog " Jump to beginning of document " printlog " Select cell <A5:C5> " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") + Kontext "DocumentCalc" printlog " Jump to beginning of document " DocumentCalc.TypeKeys "<Mod1 Home>" @@ -232,8 +232,8 @@ testcase CalcToWriterHyperlink1 printlog " Jump to beginning of document " printlog " Select cell <A8> " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") + Kontext "DocumentCalc" printlog " Jump to beginning of document " DocumentCalc.TypeKeys "<Mod1 Home>" @@ -295,8 +295,8 @@ testcase CalcToWriterHyperlink2 printlog " Jump to beginning of document " printlog " Select cell <A8> " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") + Kontext "DocumentCalc" printlog " Jump to beginning of document " DocumentCalc.TypeKeys "<Mod1 Home>" @@ -329,7 +329,7 @@ testcase CalcToWriterHyperlink2 Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_hyperlink_cellcontent.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_hyperlink_cellcontent.odt",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -350,8 +350,8 @@ testcase CalcToWriterDrawObject printlog " Jump to beginning of document " printlog " Select Drawing object " printlog " Copy selected object " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") + Kontext "DocumentCalc" printlog " Jump to beginning of document " Call wNavigatorAuswahl(8,1) @@ -381,7 +381,7 @@ testcase CalcToWriterDrawObject Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_draw.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_draw.odt",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -402,8 +402,8 @@ testcase CalcToWriterOLE printlog " Jump to beginning of document " printlog " Select OLE-Object " printlog " Copy selected object " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") + Kontext "DocumentCalc" printlog " Jump to beginning of document " Call wNavigatorAuswahl(6,1) @@ -433,7 +433,7 @@ testcase CalcToWriterOLE Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_ole.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_ole.odt",false) Wait 500 printlog " Close saved document " Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_216_.inc b/testautomation/writer/optional/includes/clipboard/w_216_.inc index 3952ece03e4c..bfbbdf637695 100755..100644 --- a/testautomation/writer/optional/includes/clipboard/w_216_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_216_.inc @@ -50,8 +50,8 @@ testcase HTMLToWRITERText printlog " Jump to beginning of document " printlog " Select first paragraph " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + sleep (3) if GetDocumentCount() = 2 then Warnlog "#i104365#read only document remains opened" @@ -122,8 +122,8 @@ testcase HTMLToWRITERField printlog " Jump to beginning of document " printlog " Select paragraph with 'Date Field' " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + if GetDocumentCount() = 2 then Warnlog "#i104365#read only document remains opened" endif @@ -192,8 +192,8 @@ testcase HTMLToWRITERTable printlog " Jump to beginning of document " printlog " Select 'Table' " printlog " Copy selected table " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + if GetDocumentCount() = 2 then Warnlog "#i104365#read only document remains opened" endif @@ -262,8 +262,8 @@ testcase HTMLToWRITERGraphicLinked printlog " Jump to beginning of document " printlog " Select 'Linked Graphic' " printlog " Copy selected Linked Graphic " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + if GetDocumentCount() = 2 then Warnlog "#i104365#read only document remains opened" endif @@ -297,7 +297,7 @@ testcase HTMLToWRITERGraphicLinked Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\html_to_writer_graphic1.odt",false) + hFileOpen( gOfficepath + "user\work\html_to_writer_graphic1.odt",false) printlog " Reopen saved document " Wait 500 printlog " Close saved document " @@ -321,8 +321,8 @@ testcase HTMLToWRITERControl printlog " Jump to beginning of document " printlog " Select 'Control' " printlog " Copy selected Control " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + if GetDocumentCount() = 2 then Warnlog "#i104365#read only document remains opened" endif @@ -357,7 +357,7 @@ testcase HTMLToWRITERControl Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\html_to_writer_control.odt",false) + hFileOpen( gOfficepath + "user\work\html_to_writer_control.odt",false) printlog " Reopen saved document " Wait 500 printlog " Close saved document " @@ -381,8 +381,8 @@ testcase HTMLToWRITERFloatingFrame printlog " Jump to beginning of document " printlog " Select 'Floating Frame' " printlog " Copy selected Floating Frame " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + if GetDocumentCount() = 2 then Warnlog "#i104365#read only document remains opened" endif @@ -423,7 +423,7 @@ testcase HTMLToWRITERFloatingFrame Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\html_to_writer_float.odt",false) + hFileOpen( gOfficepath + "user\work\html_to_writer_float.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_217_.inc b/testautomation/writer/optional/includes/clipboard/w_217_.inc index fcb6b450803a..5e81b745f6d8 100755..100644 --- a/testautomation/writer/optional/includes/clipboard/w_217_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_217_.inc @@ -49,8 +49,8 @@ testcase HTMLToCALCText printlog " Jump to beginning of document " printlog " Select first paragraph " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys "<Shift Down><Shift End>" @@ -115,8 +115,8 @@ testcase HTMLToCALCField printlog " Jump to beginning of document " printlog " Select paragraph with 'Date Field' " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys "<Down>",2 @@ -149,7 +149,7 @@ testcase HTMLToCALCField Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_calc_field.ods",true) + hFileOpen( gOfficepath + "user\work\html_to_calc_field.ods",true) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -172,8 +172,8 @@ testcase HTMLToCALCTable printlog " Jump to beginning of document " printlog " Select 'Table' " printlog " Copy selected table " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys "<Down>",5 @@ -203,7 +203,7 @@ testcase HTMLToCALCTable printlog " Save document as ..\user\work\html_to_calc_table.ods" Call hCloseDocument printlog " Close saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_calc_table.ods",true) + hFileOpen( gOfficepath + "user\work\html_to_calc_table.ods",true) printlog " Reopen saved document " Call hCloseDocument printlog " Close saved document " @@ -226,8 +226,8 @@ testcase HTMLToCALCGraphicLinked printlog " Jump to beginning of document " printlog " Select 'Linked Graphic' " printlog " Copy selected Linked Graphic " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys ( "<Shift F4>" ) @@ -260,7 +260,7 @@ testcase HTMLToCALCGraphicLinked Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_calc_graphic1.ods",false) + hFileOpen( gOfficepath + "user\work\html_to_calc_graphic1.ods",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -283,8 +283,8 @@ testcase HTMLToCALCControl printlog " Jump to beginning of document " printlog " Select 'Control' " printlog " Copy selected Control " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys ( "<Shift F4>" ) @@ -317,7 +317,7 @@ testcase HTMLToCALCControl Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_calc_control.ods",false) + hFileOpen( gOfficepath + "user\work\html_to_calc_control.ods",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -340,8 +340,8 @@ testcase HTMLToCALCFloatingFrame printlog " Jump to beginning of document " printlog " Select 'Floating Frame' " printlog " Copy selected Floating Frame " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys ( "<Shift F4>" ) @@ -378,7 +378,7 @@ testcase HTMLToCALCFloatingFrame printlog " Close saved document " Call hCloseDocument printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_calc_float.ods",false) + hFileOpen( gOfficepath + "user\work\html_to_calc_float.ods",false) printlog " Close saved document " Call hCloseDocument else diff --git a/testautomation/writer/optional/includes/clipboard/w_218_.inc b/testautomation/writer/optional/includes/clipboard/w_218_.inc index 6788407f6c05..08f23ef0df96 100755..100644 --- a/testautomation/writer/optional/includes/clipboard/w_218_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_218_.inc @@ -49,8 +49,8 @@ testcase HTMLToDRAWText printlog " + Jump to beginning of document " printlog " + Select first paragraph " printlog " + Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys "<Shift Down><Shift End>" @@ -115,8 +115,8 @@ testcase HTMLToDRAWField printlog " + Jump to beginning of document " printlog " + Select paragraph with 'Date Field' " printlog " + Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys "<Down>",2 @@ -154,7 +154,7 @@ testcase HTMLToDRAWField Call hCloseDocument sleep (2) printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_draw_field.odg",false) + hFileOpen( gOfficepath + "user\work\html_to_draw_field.odg",false) Wait 500 printlog " + Close saved document " Call hCloseDocument @@ -177,8 +177,8 @@ testcase HTMLToDRAWTable printlog " + Jump to beginning of document " printlog " + Select 'Table' " printlog " + Copy selected table " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys "<Down>",5 @@ -211,7 +211,7 @@ testcase HTMLToDRAWTable Call hCloseDocument wait 500 printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_draw_table.odg",false) + hFileOpen( gOfficepath + "user\work\html_to_draw_table.odg",false) Wait 500 printlog " + Close saved document " Call hCloseDocument @@ -234,8 +234,8 @@ testcase HTMLToDRAWGraphicLinked printlog " + Jump to beginning of document " printlog " + Select 'Linked Graphic' " printlog " + Copy selected Linked Graphic " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys ( "<Shift F4>" ) @@ -267,7 +267,7 @@ testcase HTMLToDRAWGraphicLinked Call hCloseDocument wait 500 printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_draw_graphic1.odg",false) + hFileOpen( gOfficepath + "user\work\html_to_draw_graphic1.odg",false) Wait 500 printlog " + Close saved document " Call hCloseDocument @@ -290,8 +290,8 @@ testcase HTMLToDRAWControl printlog " + Jump to beginning of document " printlog " + Select 'Control' " printlog " + Copy selected Control " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys ( "<Shift F4>" ) @@ -324,7 +324,7 @@ testcase HTMLToDRAWControl Call hCloseDocument wait 500 printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_draw_control.odg",false) + hFileOpen( gOfficepath + "user\work\html_to_draw_control.odg",false) Wait 500 printlog " + Close saved document " Call hCloseDocument @@ -347,8 +347,8 @@ testcase HTMLToDRAWFloatingFrame printlog " + Jump to beginning of document " printlog " + Select 'Floating Frame' " printlog " + Copy selected Floating Frame " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys ( "<Shift F4>" ) @@ -386,7 +386,7 @@ testcase HTMLToDRAWFloatingFrame Call hCloseDocument wait 500 printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_draw_float.odg",false) + hFileOpen( gOfficepath + "user\work\html_to_draw_float.odg",false) Wait 500 printlog " + Close saved document " Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_219_.inc b/testautomation/writer/optional/includes/clipboard/w_219_.inc index 74ca4d7c5f71..371e1e127e6e 100755..100644 --- a/testautomation/writer/optional/includes/clipboard/w_219_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_219_.inc @@ -49,8 +49,8 @@ testcase HTMLToIMPRESSText printlog " Jump to beginning of document " printlog " Select first paragraph " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys "<Shift Down><Shift End>" @@ -115,8 +115,8 @@ testcase HTMLToIMPRESSField printlog " Jump to beginning of document " printlog " Select paragraph with 'Date Field' " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys "<Down>",2 @@ -149,7 +149,7 @@ testcase HTMLToIMPRESSField Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_impress_field.odp",false) + hFileOpen( gOfficepath + "user\work\html_to_impress_field.odp",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -172,8 +172,8 @@ testcase HTMLToIMPRESSTable printlog " Jump to beginning of document " printlog " Select 'Table' " printlog " Copy selected table " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys "<Down>",5 @@ -206,7 +206,7 @@ testcase HTMLToIMPRESSTable Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_impress_table.odp",false) + hFileOpen( gOfficepath + "user\work\html_to_impress_table.odp",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -229,8 +229,8 @@ testcase HTMLToIMPRESSGraphicLinked printlog " Jump to beginning of document " printlog " Select 'Linked Graphic' " printlog " Copy selected Linked Graphic " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys ( "<Shift F4>" ) @@ -262,7 +262,7 @@ testcase HTMLToIMPRESSGraphicLinked Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_impress_graphic1.odp",false) + hFileOpen( gOfficepath + "user\work\html_to_impress_graphic1.odp",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -285,8 +285,8 @@ testcase HTMLToIMPRESSControl printlog " Jump to beginning of document " printlog " Select 'Control' " printlog " Copy selected Control " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys ( "<Shift F4>" ) @@ -319,7 +319,7 @@ testcase HTMLToIMPRESSControl Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_impress_control.odp",false) + hFileOpen( gOfficepath + "user\work\html_to_impress_control.odp",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -342,8 +342,8 @@ testcase HTMLToIMPRESSFloatingFrame printlog " Jump to beginning of document " printlog " Select 'Floating Frame' " printlog " Copy selected Floating Frame " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys ( "<Shift F4>" ) @@ -381,7 +381,7 @@ testcase HTMLToIMPRESSFloatingFrame Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_impress_float.odp",false) + hFileOpen( gOfficepath + "user\work\html_to_impress_float.odp",false) Wait 500 printlog " Close saved document " Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_220_.inc b/testautomation/writer/optional/includes/clipboard/w_220_.inc index e938ba027fd1..4ae43a6d7124 100755..100644 --- a/testautomation/writer/optional/includes/clipboard/w_220_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_220_.inc @@ -54,8 +54,8 @@ testcase HTMLToHTMLText printlog " Jump to beginning of document " printlog " Select first paragraph " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys "<Shift Down><Shift End>" @@ -86,7 +86,7 @@ testcase HTMLToHTMLText Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\html_to_html_text.html",false) + hFileOpen( gOfficepath + "user\work\html_to_html_text.html",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -110,8 +110,8 @@ testcase HTMLToHTMLField printlog " Jump to beginning of document " printlog " Select paragraph with 'Date Field' " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys "<Down>",2 @@ -143,7 +143,7 @@ testcase HTMLToHTMLField Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\html_to_html_field.html",false) + hFileOpen( gOfficepath + "user\work\html_to_html_field.html" ) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -167,8 +167,8 @@ testcase HTMLToHTMLTable printlog " Jump to beginning of document " printlog " Select 'Table' " printlog " Copy selected table " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys "<Down>",5 @@ -200,7 +200,7 @@ testcase HTMLToHTMLTable Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\html_to_html_table.html",false) + hFileOpen( gOfficepath + "user\work\html_to_html_table.html",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -224,8 +224,8 @@ testcase HTMLToHTMLGraphicLinked printlog " Jump to beginning of document " printlog " Select 'Linked Graphic' " printlog " Copy selected Linked Graphic " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys ( "<Shift F4>" ) @@ -256,7 +256,7 @@ testcase HTMLToHTMLGraphicLinked Call hCloseDocument printlog " Close saved document " sleep (2) - Call hFileOpen (gOfficepath + "user\work\html_to_html_graphic1.html",false) + hFileOpen( gOfficepath + "user\work\html_to_html_graphic1.html",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -280,8 +280,8 @@ testcase HTMLToHTMLControl printlog " Jump to beginning of document " printlog " Select 'Control' " printlog " Copy selected Control " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys ( "<Shift F4>" ) @@ -313,7 +313,7 @@ testcase HTMLToHTMLControl Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\html_to_html_control.html",false) + hFileOpen( gOfficepath + "user\work\html_to_html_control.html",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -337,8 +337,8 @@ testcase HTMLToHTMLFloatingFrame printlog " Jump to beginning of document " printlog " Select 'Floating Frame' " printlog " Copy selected Floating Frame " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "<Mod1 Home>" Call wTypeKeys ( "<Shift F4>" ) @@ -375,7 +375,7 @@ testcase HTMLToHTMLFloatingFrame Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\html_to_html_float.html",false) + hFileOpen( gOfficepath + "user\work\html_to_html_float.html",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_221_.inc b/testautomation/writer/optional/includes/clipboard/w_221_.inc index 4b5818065244..7b5674d9ca97 100755..100644 --- a/testautomation/writer/optional/includes/clipboard/w_221_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_221_.inc @@ -50,8 +50,8 @@ testcase DrawToHTMLScrollingText printlog " + Jump to beginning of document " printlog " + Select Scrolling text " printlog " + Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "<Tab>" @@ -80,7 +80,7 @@ testcase DrawToHTMLScrollingText Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_html_scrolling_text.html",false) + hFileOpen( gOfficepath + "user\work\draw_to_html_scrolling_text.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -105,8 +105,8 @@ testcase DrawToHTMLGroupedObject printlog " + Jump to beginning of document " printlog " + Select Grouped Object " printlog " + Copy selected Object " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "<Tab>",2 @@ -135,7 +135,7 @@ testcase DrawToHTMLGroupedObject Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_html_grouped_object.html",false) + hFileOpen( gOfficepath + "user\work\draw_to_html_grouped_object.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -160,8 +160,8 @@ testcase DrawToHTML3D printlog " + Jump to beginning of document " printlog " + Select cell <A5:C5> " printlog " + Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "<Tab>",3 @@ -190,7 +190,7 @@ testcase DrawToHTML3D Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_html_3d.html",false) + hFileOpen( gOfficepath + "user\work\draw_to_html_3d.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -215,8 +215,8 @@ testcase DrawToHTMLFontwork printlog " + Jump to beginning of document " printlog " + Select Fontwork " printlog " + Copy selected Fontwork " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "<Tab>",4 @@ -245,7 +245,7 @@ testcase DrawToHTMLFontwork Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_html_fontwork.html",false) + hFileOpen( gOfficepath + "user\work\draw_to_html_fontwork.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -270,8 +270,8 @@ testcase DrawToHTMLBullets printlog " + Jump to beginning of document " printlog " + Select Bullets " printlog " + Copy selected Bullets " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "<Tab>",5 @@ -300,7 +300,7 @@ testcase DrawToHTMLBullets Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_html_bullets.html",false) + hFileOpen( gOfficepath + "user\work\draw_to_html_bullets.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -325,8 +325,8 @@ testcase DrawToHTMLDimensionLines printlog " + Jump to beginning of document " printlog " + Select Dimension Lines " printlog " + Copy selected Dimension Lines " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "<PageDown>" @@ -356,7 +356,7 @@ testcase DrawToHTMLDimensionLines Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_html_dim_lines.html",false) + hFileOpen( gOfficepath + "user\work\draw_to_html_dim_lines.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -381,8 +381,8 @@ testcase DrawToHTMLConnectors printlog " + Jump to beginning of document " printlog " + Select Connectors " printlog " + Copy selected Connectors " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "<PageDown>" @@ -412,7 +412,7 @@ testcase DrawToHTMLConnectors Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_html_connectors.html",false) + hFileOpen( gOfficepath + "user\work\draw_to_html_connectors.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_222_.inc b/testautomation/writer/optional/includes/clipboard/w_222_.inc index 1efb0e67fda4..166ad4b4e38e 100755..100644 --- a/testautomation/writer/optional/includes/clipboard/w_222_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_222_.inc @@ -51,8 +51,8 @@ testcase DrawToWriterScrollingText printlog " Jump to beginning of document " printlog " Select Scrolling text " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "<Tab>" @@ -81,7 +81,7 @@ testcase DrawToWriterScrollingText Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_writer_scrolling_text.odt",false) + hFileOpen( gOfficepath + "user\work\draw_to_writer_scrolling_text.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -106,8 +106,8 @@ testcase DrawToWriterGroupedObject printlog " Jump to beginning of document " printlog " Select Grouped Object " printlog " Copy selected Object " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "<Tab>",2 @@ -136,7 +136,7 @@ testcase DrawToWriterGroupedObject Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_writer_grouped_object.odt",false) + hFileOpen( gOfficepath + "user\work\draw_to_writer_grouped_object.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -161,8 +161,8 @@ testcase DrawToWriter3D printlog " Jump to beginning of document " printlog " Select cell <A5:C5> " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "<Tab>",3 @@ -191,7 +191,7 @@ testcase DrawToWriter3D Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_writer_3d.odt",false) + hFileOpen( gOfficepath + "user\work\draw_to_writer_3d.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -216,8 +216,8 @@ testcase DrawToWriterFontwork printlog " Jump to beginning of document " printlog " Select Fontwork " printlog " Copy selected Fontwork " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "<Tab>",4 @@ -246,7 +246,7 @@ testcase DrawToWriterFontwork Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_writer_fontwork.odt",false) + hFileOpen( gOfficepath + "user\work\draw_to_writer_fontwork.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -271,8 +271,8 @@ testcase DrawToWriterBullets printlog " Jump to beginning of document " printlog " Select Bullets " printlog " Copy selected Bullets " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "<Tab>",5 @@ -301,7 +301,7 @@ testcase DrawToWriterBullets Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_writer_bullets.odt",false) + hFileOpen( gOfficepath + "user\work\draw_to_writer_bullets.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -326,8 +326,8 @@ testcase DrawToWriterDimensionLines printlog " Jump to beginning of document " printlog " Select Dimension Lines " printlog " Copy selected Dimension Lines " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "<PageDown>" @@ -357,7 +357,7 @@ testcase DrawToWriterDimensionLines Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_writer_dim_lines.odt",false) + hFileOpen( gOfficepath + "user\work\draw_to_writer_dim_lines.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -382,8 +382,8 @@ testcase DrawToWriterConnectors printlog " Jump to beginning of document " printlog " Select Connectors " printlog " Copy selected Connectors " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "<PageDown>" @@ -413,7 +413,7 @@ testcase DrawToWriterConnectors Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_writer_connectors.odt",false) + hFileOpen( gOfficepath + "user\work\draw_to_writer_connectors.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/contextmenu/w_contextmenu1.inc b/testautomation/writer/optional/includes/contextmenu/w_contextmenu1.inc index c4d79cece29a..729659dfc54d 100755..100644 --- a/testautomation/writer/optional/includes/contextmenu/w_contextmenu1.inc +++ b/testautomation/writer/optional/includes/contextmenu/w_contextmenu1.inc @@ -177,6 +177,8 @@ endcase testcase tPickGraphic + Warnlog "#i115132#Missing .uno Slots in context menus" + goto endsub printlog "Open context menu on not focussed graphic" Call hNewDocument Printlog " Set zoom to 100%" @@ -187,13 +189,13 @@ testcase tPickGraphic Call wTypeKeys "<Escape>" Call wTypeKeys "Don't be afraid !" - Call DocumentWriter.MouseMove 50,30 + Call gMouseClick ( 50,30 ) Printlog " Open context menu upon graphic with mouse" Call wOpenContextMenu(true) printlog " Select 'ImageMap' in context menu" try - CALL hMenuFindSelect (".uno:ImageMapDialog", true, 9, true) 'Find "ImageMap" and call the slot. + CALL hMenuFindSelect (".uno:ImageMapDialog", true, 11, true) 'Find "ImageMap" and call the slot. wait 500 catch Warnlog "Unable to open context menu" @@ -245,13 +247,13 @@ testcase tPickHyperlink printlog " Empty clipboard" SetClipBoard = "" printlog " Insert a hyperlink in document" - Call wTypeKeys "www.sun.com" + Call wTypeKeys "www.oracle.com" Call wTypeKeys " " Call wTypeKeys "<HOME>" printlog " Open context menu on hyperlink" Call wTypeKeys "<SHIFT F10>" printlog " Last entry in menu has to be 'Open hyperlink' ...." - CALL hMenuFindSelect (10955, true, 17, true) 'Find "Hyperlink-dialog" and call the slot. + CALL hMenuFindSelect (10955, false, 17, true) 'Find "Hyperlink-dialog" and call the slot. kontext "TabHyperlinkInternet" if TabHyperlinkInternet.Exists(3) then Warnlog "Hyperlink-Dialog opened!" @@ -265,6 +267,9 @@ endcase testcase tHyperlinkEdit + Warnlog "#i115132#Missing .uno Slots in context menus" + goto endsub + printlog "Context menu on hyperlinks" printlog " Open a new text document" CALL hNewDocument @@ -277,19 +282,19 @@ testcase tHyperlinkEdit Call wTypeKeys " " Call wTypeKeys "<HOME>" printlog " Open context menu on hyperlink" - Call wTypeKeys "<SHIFT F10>" + Call wTypeKeys "<SHIFT F10>" printlog " Open contextmenu, find the entry 'Edit Hyperlink', and call the slot..." - CALL hMenuFindSelect (21835, true, 18, true) 'Find "Edit Hyperlink" and call the slot. + CALL hMenuFindSelect (21835, true, 18, true) 'Find "Edit Hyperlink" and call the slot. printlog " Check if the Hyperlink-dialogue comes up correctly." - kontext "TabHyperlinkInternet" - if NOT TabHyperlinkInternet.Exists(3) then - Warnlog "No Hyperlink-Dialog visible!" + kontext "HyperlinkDialog" + if NOT HyperlinkDialog.Exists(3) then + Warnlog "No Hyperlink-Dialog visible!" else - TabHyperlinkInternet.Close - end if + HyperlinkDialog.Close + end if printlog " Close text document" - CALL hCloseDocument + CALL hCloseDocument endcase ' ----------------------------------------------------------------------------- @@ -387,6 +392,9 @@ endcase testcase tPickDrawingObjects + Warnlog "#i115132#Missing .uno Slots in context menus" + goto endsub + printlog "Context menu on drawing objects" printlog " Open a new text document" Call hNewDocument diff --git a/testautomation/writer/optional/includes/drawing/w_drawing_tools2.inc b/testautomation/writer/optional/includes/drawing/w_drawing_tools2.inc index 8b6b8e8329e8..08ebbfed45d4 100755..100644 --- a/testautomation/writer/optional/includes/drawing/w_drawing_tools2.inc +++ b/testautomation/writer/optional/includes/drawing/w_drawing_tools2.inc @@ -53,7 +53,7 @@ end sub '------------------------------------------------------------------------- -testcase tGroup_1 +testcase tGroup_1 PrintLog "- Generate a objects group via menu Format/Group/Group" @@ -80,7 +80,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_2 +testcase tGroup_2 PrintLog "- Generate a objects group via contextmenu Format/Group/Group" @@ -109,7 +109,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_3 +testcase tGroup_3 PrintLog "- Menu entries may not be enabled if less then two objects are selected." @@ -138,7 +138,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_4 +testcase tGroup_4 Dim sGroupName as String @@ -193,7 +193,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_5 +testcase tGroup_5 Dim sGroupName as String @@ -248,7 +248,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_6 +testcase tGroup_6 Dim sPositionX1 as String Dim sPositionY1 as String @@ -283,7 +283,7 @@ testcase tGroup_6 Sleep 2 Call gMouseClick(80,80) - Call wObjektSelektieren ( 28, 28, 70, 80 ) + Call wObjektSelektieren ( 31, 31, 70, 80 ) Sleep 2 FormatGroupGroup Sleep 1 @@ -317,7 +317,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_7 +testcase tGroup_7 Dim sPositionX1 as String Dim sPositionY1 as String @@ -351,7 +351,7 @@ testcase tGroup_7 Sleep 2 Call gMouseClick(80,80) - Call wObjektSelektieren ( 28, 28, 70, 80 ) + Call wObjektSelektieren ( 31, 31, 70, 80 ) Sleep 2 FormatGroupGroup Sleep 1 @@ -388,7 +388,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_8 +testcase tGroup_8 Dim sPositionX as String Dim sPositionY as String @@ -445,7 +445,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_9 +testcase tGroup_9 Dim sPositionX as String Dim sPositionY as String @@ -507,7 +507,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_10 +testcase tGroup_10 PrintLog "- create new objects inside the group ," PrintLog " Undo new created objects before leaving the group" @@ -554,7 +554,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_11 +testcase tGroup_11 PrintLog "- create new objects inside the group ," PrintLog " Undo new created objects after leaving the group" @@ -603,7 +603,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_12 +testcase tGroup_12 Dim sDocument as String @@ -636,8 +636,8 @@ testcase tGroup_12 Call hCloseDocument PrintLog "- Open previous saved document " - Call hFileOpen (sDocument) - Call sMakeReadOnlyDocumentEditable + Call hFileOpen( sDocument) + Kontext "DocumentWriter" Call gMouseClick(34,34) 'set focus in the group @@ -655,7 +655,7 @@ endcase '------------------------------------------------------------------------- -testcase tEncapsulatedGroup_1 +testcase tEncapsulatedGroup_1 PrintLog "- Group objects inside the group ,Encapsulated Group" @@ -667,7 +667,7 @@ testcase tEncapsulatedGroup_1 Sleep 1 Call wZeichenobjektEinfuegen("ELLIPSE", 40, 45, 60, 70, false) Sleep 1 - Call wObjektSelektieren ( 28, 28, 70, 80 ) + Call wObjektSelektieren ( 31, 31, 70, 80 ) Sleep 1 FormatGroupGroup @@ -677,20 +677,37 @@ testcase tEncapsulatedGroup_1 PrintLog "- insert 2 drawing objects (rectangle and ellipse) in the group" Call wZeichenobjektEinfuegen("RECHTECK", 35, 40, 38, 45, false) - Call wZeichenobjektEinfuegen("ELLIPSE", 52, 40, 78, 45, false) - Call wObjektSelektieren ( 28, 38, 80, 48 ) + Call wZeichenobjektEinfuegen("ELLIPSE", 40, 40, 58, 45, false, true) + Call wObjektSelektieren ( 31, 31, 80, 80 ) + + Sleep 1 + PrintLog "- generate a new group" try - PrintLog "- generate a new group" FormatGroupGroup - PrintLog "- edit the new group" + catch + Warnlog "Unable to execute Format / Group" + endcatch + + PrintLog "- edit the new group" + try FormatGroupEditGroup - PrintLog "- leave the new group" + catch + Warnlog "Unable to execute Group / Enter Group" + endcatch + + PrintLog "- leave the new group" + try FormatGroupExitGroup - PrintLog "- Undo the new group" + catch + Warnlog "Unable to exceute Format / Exit Group" + endcatch + + PrintLog "- Undo the new group" + try FormatGroupUnGroup catch - Warnlog "Something wrong where operating the Encapsulated group!" + Warnlog "Unable to execute Format / Ungroup" endcatch Call hCloseDocument diff --git a/testautomation/writer/optional/includes/dropdownLB/w_dropdownLB1.inc b/testautomation/writer/optional/includes/dropdownLB/w_dropdownLB1.inc index 6c4b39d0263f..7e1eee588127 100755..100644 --- a/testautomation/writer/optional/includes/dropdownLB/w_dropdownLB1.inc +++ b/testautomation/writer/optional/includes/dropdownLB/w_dropdownLB1.inc @@ -1024,8 +1024,8 @@ testcase tDropDownLB_17 PrintLog "- Open a new document" Call hNewDocument PrintLog "- Open a word document which includes 2 entries." - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + Kontext "EditInputList" if EditInputList.Exists then EditInputList.Cancel diff --git a/testautomation/writer/optional/includes/fields/w_fields1.inc b/testautomation/writer/optional/includes/fields/w_fields1.inc index 2f727260b6c2..c6caf2c5fade 100755..100644 --- a/testautomation/writer/optional/includes/fields/w_fields1.inc +++ b/testautomation/writer/optional/includes/fields/w_fields1.inc @@ -151,13 +151,23 @@ testcase tInsertFieldsTime if NOT Len(sTime2) > 7 then Warnlog "Time-format is wrong !" printlog "Stop for a while ..." + '/// Stop for a while , check if the time is still correct Sleep 2 + ' update fields + Call wTypeKeys "<F9>" + ' read field content Call wTypeKeys "<MOD1 Home>" Call wTypeKeys "<Shift Right>" EditCopy if GetClipboard <> sTime1 then Warnlog "Fixed time is wrong !" - + + '/// Stop for a while , check if the time is still correct + Sleep 2 + ' update fields + Call wTypeKeys "<F9>" + ' read field content + Call wTypeKeys "<MOD1 Home>" Call wTypeKeys "<Down><Home>" Call wTypeKeys "<Shift Right>" EditCopy diff --git a/testautomation/writer/optional/includes/fields/w_fields2.inc b/testautomation/writer/optional/includes/fields/w_fields2.inc index 4f2c5c39388c..168fed204ebe 100755..100644 --- a/testautomation/writer/optional/includes/fields/w_fields2.inc +++ b/testautomation/writer/optional/includes/fields/w_fields2.inc @@ -319,8 +319,8 @@ testcase tDocumentChapter Call hNewDocument '/// Open test file chapterTest.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + Call wTypeKeys "<MOD1 End><Return>" @@ -357,12 +357,12 @@ endcase testcase tDocumentDate Dim sDate as String - + printlog "Insert/Fields/Other/Document / Date" '/// <b> Insert/Fields/Other/Document / Date </b> - + Call hNewDocument - + '/// Insert/Fields/Other/Document / Date '/// Check if the insertion is correct Call fInsertFieldsOther("TabDokumentFeldbefehle") @@ -371,14 +371,14 @@ testcase tDocumentDate Einfuegen.Click Kontext "TabDokumentFeldbefehle" TabDokumentFeldbefehle.Close - + Call wTypeKeys "<Shift Left>" EditCopy Sleep 1 if GetClipboard = "" then Warnlog "Field returns an empty string" end if - + Call hCloseDocument endcase @@ -386,65 +386,57 @@ endcase '----------------------------------------------------------------- testcase tDocumentFilename - if bAsianLan = true then - QaErrorLog "No testing with Asian language. Aborting." - goto endsub - end if - - Dim sOriginalFile as String - Dim sTestFile as String - Dim sFilename(4) as String - Dim i as Integer - - sTestFile = Convertpath (gOfficepath + "user\work\pageTest.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\pageTest.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if - - sFilename(0) = "pageTest.sxw" - sFilename(1) = "pageTest" - sFilename(2) = Convertpath (gOfficepath + "user\work\") - sFilename(3) = sTestFile - - printlog "Insert/Fields/Other/Document / File name" - - Call hNewDocument - - '/// Open test file pageTest.sxw - Call hFileOpen(sTestFile) - - Call wTypeKeys "<MOD1 Home>" - Call wTypeKeys "<End><Return>" - - printlog "Insert/Fields/Other/Document / File name" - printlog "Insert File name, File name without extension , Path , Path/File name" - printlog "Check if the insertion is correct" - Call fInsertFieldsOther("TabDokumentFeldbefehle") - Feldtyp.Select fGetType("File name") - for i = 0 to 3 - Kontext "TabDokumentFeldbefehle" - Formatliste.Select i+1 - Sleep 1 - Einfuegen.Click - sleep 1 - Call wTypeKeys "<F9>" - Sleep 2 - Call wTypeKeys "<Shift LEFT>" 'HOME - Sleep 1 - if fGetFieldContent() <> sFilename(i) then - Warnlog i &" - Should get " & sFilename(i) & " but get " & fGetFieldContent() - end if - Call wTypeKeys "<Delete>" - next i - Kontext "TabDokumentFeldbefehle" - TabDokumentFeldbefehle.Close - - Call hCloseDocument + + if ( bAsianLan ) then + QaErrorLog "No testing with Asian language. Aborting." + goto endsub + end if + + Dim sTestFile as String + Dim sFilename(4) as String + Dim i as Integer + + sTestFile = convertpath( gTesttoolPath & "writer\optional\input\fields\pageTest.sxw" ) + + sFilename(0) = "pageTest.sxw" + sFilename(1) = "pageTest" + sFilename(2) = hGetWorkPath() + sFilename(3) = hFileGetLocalPath( sTestFile ) + + printlog "Insert/Fields/Other/Document / File name" + + Call hNewDocument + + '/// Open test file pageTest.sxw + hFileOpenLocally( sTestFile ) + + Call wTypeKeys "<MOD1 Home>" + Call wTypeKeys "<End><Return>" + + printlog "Insert/Fields/Other/Document / File name" + printlog "Insert File name, File name without extension , Path , Path/File name" + printlog "Check if the insertion is correct" + Call fInsertFieldsOther("TabDokumentFeldbefehle") + Feldtyp.Select fGetType("File name") + for i = 0 to 3 + Kontext "TabDokumentFeldbefehle" + Formatliste.Select i+1 + Sleep 1 + Einfuegen.Click + sleep 1 + Call wTypeKeys "<F9>" + Sleep 2 + Call wTypeKeys "<Shift LEFT>" 'HOME + Sleep 1 + if fGetFieldContent() <> sFilename(i) then + Warnlog i &" - Should get " & sFilename(i) & " but get " & fGetFieldContent() + end if + Call wTypeKeys "<Delete>" + next i + Kontext "TabDokumentFeldbefehle" + TabDokumentFeldbefehle.Close + + Call hCloseDocument endcase @@ -470,8 +462,8 @@ testcase tDocumentPage Call hNewDocument '/// Open test file pageTest.sxw which includes 3 pages - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Go to the 2nd page Call wTypeKeys "<MOD1 Home>" @@ -867,22 +859,12 @@ endcase testcase tDocumentStatistics Dim sTestFile as String - Dim sOriginalFile as string Dim sStatistics() as String Dim sType as string Dim i as Integer sStatistics = Array( "2", "2", "3", "13", "2", "2", "1" ) - - sTestFile = Convertpath (gOfficepath + "user\work\statisticsTest.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\statisticsTest.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if + sTestFile= Convertpath (gTesttoolpath + "writer\optional\input\fields\statisticsTest.sxw") printlog "Insert/Fields/Other/Document / Statistics" '/// <b> Insert/Fields/Other/Document / Statistics </b> @@ -890,7 +872,7 @@ testcase tDocumentStatistics '/// Open test file statisticsTest.sxw which includes '/// 2 tables , 2 pictures , 22 paragraph , 1 object , '/// 2 words , 12 characters and 2 pages - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home><Down>" @@ -928,40 +910,31 @@ endcase testcase tDocumentTemplate Dim sTestFile as String - Dim sOriginalFile as string Dim sDirectory as String Dim oDirectory as String Dim sLanguage as String Dim sFormat() as String Dim sResult(6) as String Dim i as Integer - + sLanguage = fGetDirLanguage() - sTestFile = Convertpath (gOfficepath + "user\work\diploma.ott") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\diploma.ott") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if - - sResult(0) = fGetCateGory() + sTestFile = convertpath( gTesttoolpath + "writer\optional\input\fields\diploma.ott" ) + + sResult(0) = fGetCategory() sResult(1) = "diploma.ott" sResult(2) = "diploma" - sResult(3) = Convertpath (gOfficepath + "user\work") - sResult(4) = sTestFile + sResult(3) = convertpath( gOfficePath & "user/work" ) + sResult(4) = hGetWorkFile( sResult( 1 ) ) sResult(5) = fGetStyle() - + printlog "Insert/Fields/Other/Document / Template" '/// <b> Insert/Fields/Other/Document / Template </b> - + '/// Open test file diploma.ott - Call hFileOpen(sTestFile) - + hFileOpenLocally( sTestFile ) + Call wTypeKeys "<MOD1 Home>" - + '/// Insert/Fields/Other/Document / Template '/// Insert Category , File name , File name without extension , '/// + Path , Path/File name , Style @@ -991,10 +964,8 @@ testcase tDocumentTemplate next i Kontext "TabDokumentFeldbefehle" TabDokumentFeldbefehle.Close - - Do Until GetDocumentCount = 0 - Call hCloseDocument - Loop + + hFileCloseAll() endcase '----------------------------------------------------------------- diff --git a/testautomation/writer/optional/includes/fields/w_fields3.inc b/testautomation/writer/optional/includes/fields/w_fields3.inc index 7b4e7f50722b..64261c7e1ac6 100755..100644 --- a/testautomation/writer/optional/includes/fields/w_fields3.inc +++ b/testautomation/writer/optional/includes/fields/w_fields3.inc @@ -94,8 +94,8 @@ testcase tSetReferenceNoSelection Call hNewDocument '/// Open test file pageTest.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set curson to the 2nd page Call wTypeKeys "<MOD1 Home>" @@ -182,8 +182,8 @@ testcase tInsertReferencePage Call hNewDocument '/// Open test file pageTest.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set curson to the 2nd page Call wTypeKeys "<MOD1 Home>" @@ -242,8 +242,8 @@ testcase tInsertReferenceChapter Call hNewDocument '/// Open test file chapterTest.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set curson to the 2nd line Call wTypeKeys "<MOD1 Home>" @@ -685,8 +685,8 @@ testcase tInsertBookmarkPage Call hNewDocument '/// Open test file pageTest.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set curson to the 2nd page Call wTypeKeys "<MOD1 Home>" @@ -743,8 +743,8 @@ testcase tInsertBookmarkChapter Call hNewDocument '/// Open test file chapterTest.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set curson to the 2nd line Call wTypeKeys "<MOD1 Home>" diff --git a/testautomation/writer/optional/includes/fields/w_fields4.inc b/testautomation/writer/optional/includes/fields/w_fields4.inc index d1e16a1a36be..315c6b0f96d3 100755..100644 --- a/testautomation/writer/optional/includes/fields/w_fields4.inc +++ b/testautomation/writer/optional/includes/fields/w_fields4.inc @@ -67,8 +67,8 @@ testcase tDocInformationTitle Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// File / Properties / Description , input some '/// + new text in Title @@ -119,8 +119,8 @@ testcase tDocInformationSubject Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// File / Properties / Description , input some '/// + text in Subject @@ -171,8 +171,8 @@ testcase tDocInformationKeywords Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// File / Properties / Description , input some '/// + text in Keywords @@ -223,8 +223,8 @@ testcase tDocInformationDescription Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// File / Properties / Description , input some '/// + text in Description @@ -264,23 +264,13 @@ testcase tDocInformationUserDefined QAErrorLog "#i112077#Tabpage 'Custom properties' has no declaration" goto endsub Dim sTestFile as String - Dim sOriginalFile as string Dim sVarResult() as String Dim sFixResult() as String Dim i as integer Dim j as Integer j = UBound(sVarResult) - sTestFile = Convertpath (gOfficepath + "user\work\fields_docinfos.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if - + sTestFile = gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw" sVarResult = Array( _ "A1" , _ "B2" , _ @@ -301,7 +291,7 @@ testcase tDocInformationUserDefined Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) '/// File / Properties / Description , input some '/// + text in Description @@ -344,26 +334,17 @@ endcase testcase tDocInformationCreated - Dim sTestFile as String - Dim sOriginalFile as String Dim sFirstName as String Dim sLastName as String Dim sFirstName1 as String Dim sLastName1 as String Dim sVarResult(3) as String Dim sFixResult(3) as String + dim sTestFile as string Dim i as Integer sFirstName1 = "Test1" : sLastName1 = "Test2" - sTestFile = Convertpath (gOfficePath + "user\work\fields_docinfos.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if + sTestFile = gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw" sVarResult(0) = sFirstName1 + " " + sLastName1 sVarResult(1) = fGetDate1(Date) @@ -378,8 +359,8 @@ testcase tDocInformationCreated Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + Call fFindWord ("Created") Call wTypeKeys "<End><Right><Down><Down><Down><Home>" @@ -458,7 +439,6 @@ endcase testcase tDocInformationModified Dim sTestFile as String - Dim sOriginalFile as String Dim sSaveasFile as String Dim sFirstName as String Dim sLastName as String @@ -469,15 +449,7 @@ testcase tDocInformationModified Dim i as Integer sFirstName1 = "Test1" : sLastName1 = "Test2" - sTestFile = Convertpath (gOfficePath + "user\work\fields_docinfos.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if + sTestFile = gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw" sSaveasFile = ConvertPath (gOfficePath + "user\work\fields_docinfos1.sxw" ) sVarResult(0) = sFirstName1 + " " + sLastName1 @@ -495,7 +467,7 @@ testcase tDocInformationModified Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) Call hFileSaveAsKill (sSaveAsFile) Call fFindWord ("Modified") @@ -595,7 +567,6 @@ testcase tDocInformationModifiedSavefile goto endsub Dim sTestFile as String - Dim sOriginalFile as string Dim sSaveasFile as String Dim sFirstName as String Dim sLastName as String @@ -606,15 +577,7 @@ testcase tDocInformationModifiedSavefile Dim i as Integer sFirstName1 = "Test1" : sLastName1 = "Test2" - sTestFile = Convertpath (gOfficePath + "user\work\fields_docinfos.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if + sTestFile = gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw" sSaveasFile = ConvertPath (gOfficePath + "user\work\fields_docinfos1.sxw" ) sVarResult(0) = sFirstName1 + " " + sLastName1 @@ -632,7 +595,7 @@ testcase tDocInformationModifiedSavefile Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) Call fFindWord ("Modified") Call wTypeKeys "<End><Right><Down><Down><Down><Home>" @@ -715,7 +678,6 @@ endcase testcase tDocInformationPrinted Dim sTestFile as String - Dim sOriginalFile as String Dim sFirstName as String Dim sLastName as String Dim sFirstName1 as String @@ -725,17 +687,7 @@ testcase tDocInformationPrinted Dim i as Integer sFirstName1 = "Test1" : sLastName1 = "Test2" - sTestFile = Convertpath (gOfficePath + "user\work\fields_docinfos.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if - - + sTestFile = gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw" sVarResult(0) = sFirstName1 + " " + sLastName1 sVarResult(1) = fGetDate1(Date) @@ -749,7 +701,7 @@ testcase tDocInformationPrinted Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) Call fFindWord ("Last printed") Call wTypeKeys "<End><Right><Down><Down><Down><Home>" @@ -842,7 +794,6 @@ endcase testcase tDocInformationRevisionnumber Dim sTestFile as String - Dim sOriginalFile as string Dim sSaveasFile as String Dim sFirstName as String Dim sLastName as String @@ -854,15 +805,7 @@ testcase tDocInformationRevisionnumber sFirstName1 = "Test1" : sLastName1 = "Test2" sVarResult = "17" : sFixResult = "4" - sTestFile = Convertpath (gOfficePath + "user\work\fields_docinfos.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if + sTestFile = gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw" sSaveasFile = ConvertPath (gOfficePath + "user\work\tDocInformationRevisionnumber.sxw" ) if FileExists ( sSaveAsFile ) then app.kill ( sSaveAsFile ) @@ -873,7 +816,7 @@ testcase tDocInformationRevisionnumber Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) '/// Change author to author : Test2 Test1 ToolsOptions @@ -947,21 +890,12 @@ endcase testcase tDocInformationTotaleditingtime Dim sTestFile as String - Dim sOriginalFile as string Dim sSaveasFile as String Dim sVarResult as String Dim sFixResult as String sFixResult = "00:29:05" - sTestFile = Convertpath (gOfficePath + "user\work\fields_docinfos.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if + sTestFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw") sSaveasFile = ConvertPath (gOfficePath + "user\work\tDocInformationRevisionnumber.sxw" ) if FileExists ( sSaveAsFile ) then app.kill ( sSaveAsFile ) @@ -972,7 +906,7 @@ testcase tDocInformationTotaleditingtime Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) '/// Save the file as another file Call hFileSaveAsKill(sSaveAsFile) diff --git a/testautomation/writer/optional/includes/fields/w_fields5.inc b/testautomation/writer/optional/includes/fields/w_fields5.inc index 334d01906307..75f94e8a3351 100755..100644 --- a/testautomation/writer/optional/includes/fields/w_fields5.inc +++ b/testautomation/writer/optional/includes/fields/w_fields5.inc @@ -722,7 +722,7 @@ testcase tVariablesDDEFieldManual '/// Open the test file which you just closed , add something , '/// Save the file - Call hFileOpen(sDDEFile) + hFileOpenLocally( sDDEFile) Call wTypeKeys "<MOD1 Home>" Call wTypeKeys "XYZ" FileSave @@ -818,7 +818,7 @@ testcase tVariablesDDEFieldAutomatic '/// Open the test file which you just closed , add something , '/// Save the file - Call hFileOpen(sDDEFile) + hFileOpenLocally( sDDEFile) Call wTypeKeys "<MOD1 Home>" Call wTypeKeys "XYZ" FileSave diff --git a/testautomation/writer/optional/includes/fields/w_fields6.inc b/testautomation/writer/optional/includes/fields/w_fields6.inc index e310b67740af..f29eff451edb 100755..100644 --- a/testautomation/writer/optional/includes/fields/w_fields6.inc +++ b/testautomation/writer/optional/includes/fields/w_fields6.inc @@ -795,8 +795,8 @@ testcase tFunctionsCombineCharacter Call hNewDocument '/// Open test file pageTest.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + Call wTypeKeys "<MOD1 Home>" Call wTypeKeys "<Right>" diff --git a/testautomation/writer/optional/includes/fields/w_fields7.inc b/testautomation/writer/optional/includes/fields/w_fields7.inc index 5893e324366b..c5b21d00d5eb 100755..100644 --- a/testautomation/writer/optional/includes/fields/w_fields7.inc +++ b/testautomation/writer/optional/includes/fields/w_fields7.inc @@ -119,8 +119,8 @@ testcase tL10NtestAboveBelow Call hNewDocument '/// Open test file AboveBelow.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Check if reference above/below is changed after language is changed @@ -182,7 +182,6 @@ testcase tL10NtestDate end if Dim sTestFile as String - Dim sOriginalFile as string Dim sDate() as String Dim iCountry() as Integer Dim i , j as Integer @@ -215,17 +214,7 @@ testcase tL10NtestDate ExtrasOptionenDlg.Cancel Call hCloseDocument - sTestFile = Convertpath (gOfficepath + "user\work\Date.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\Date.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if - - + sTestFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\Date.sxw") sDate = Array( _ "Tuesday, August 3, 2004" , _ "mardi 3 août 2004" , _ @@ -248,7 +237,7 @@ testcase tL10NtestDate Call hNewDocument '/// Open test file Date.sxw - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) '/// Check if Date is changed after language is changed j = UBound(iCountry) @@ -304,7 +293,6 @@ testcase tL10NtestTime end if Dim sTestFile as String - Dim sOriginalFile as string Dim sTime() as String Dim iCountry() as Integer Dim i as Integer @@ -338,17 +326,8 @@ testcase tL10NtestTime ExtrasOptionenDlg.Cancel Call hCloseDocument - sTestFile = Convertpath (gOfficepath + "user\work\Time.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\Time.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if - - + + sTestFile = gTesttoolpath + "writer\optional\input\fields\Time.sxw" sTime = Array( _ "04:46:08 PM" , _ "04:46:08 PM" , _ @@ -371,7 +350,7 @@ testcase tL10NtestTime Call hNewDocument '/// Open test file Time.sxw - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) '/// Check if time is changed after language is changed j = UBound(iCountry) diff --git a/testautomation/writer/optional/includes/formatcharacter/w_format_character1.inc b/testautomation/writer/optional/includes/formatcharacter/w_format_character1.inc index eb2de884a8cc..df216304ea2e 100755..100644 --- a/testautomation/writer/optional/includes/formatcharacter/w_format_character1.inc +++ b/testautomation/writer/optional/includes/formatcharacter/w_format_character1.inc @@ -243,9 +243,9 @@ testcase tFormatCharacter3 Call hCloseDocument printlog "reopen previous saved document and check saved character format" if gApplication = "WRITER" then - Call hFileOpen ( gOfficePath + "user\work\format1.odt" ) + hFileOpen( gOfficePath & "user\work\format1.odt" ) else - Call hFileOpen ( gOfficePath + "user\work\format1.odm" ) + hFileOpen( gOfficePath & "user\work\format1.odm" ) end if Call wTypeKeys "<Mod1 Home><Right>" Wait 500 @@ -343,10 +343,10 @@ testcase tFormatStyles1 '/// Write 'Style Bold' - execute Context menu 'Style Bold' Call wTypeKeys "Style Bold" Call wTypeKeys "<Shift Home>" - Kontext "DocumentWriter" - DocumentWriter.OpenContextMenu - Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. - Call hMenuFindSelect (".uno:Bold", true, 1, false) 'Find 'Bold' and call the slot. + Kontext "DocumentWriter" + DocumentWriter.OpenContextMenu + Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. + if hMenuFindSelect (".uno:Bold", true, 1, false) = true then 'Find 'Bold' and call the slot. '/// Check if changes to style have been made /// Kontext "TextObjectbar" if Fett.Getstate(2) = 0 then @@ -354,114 +354,121 @@ testcase tFormatStyles1 end if Call wTypeKeys "<End><Mod1 Shift X>" - wait 500 + wait 500 Call wTypeKeys "<Return>" + endif printlog "- Style 'Italic' " '/// Write 'Style Italic' - execute Context menu 'Style Italic' Call wTypeKeys "Style Italic" Call wTypeKeys "<Shift Home>" - Kontext "DocumentWriter" - DocumentWriter.OpenContextMenu - Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. - Call hMenuFindSelect (".uno:Italic", true, 2, false) 'Find 'Italic' and call the slot. - ' /// Check if changes to style have been made /// + Kontext "DocumentWriter" + DocumentWriter.OpenContextMenu + Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. + if hMenuFindSelect (".uno:Italic", true, 2, false) = true then 'Find 'Italic' and call the slot. + ' /// Check if changes to style have been made /// Kontext "TextObjectbar" if Kursiv.Getstate(2) = 0 then Warnlog "#58722#Style 'Italic' with context menu has not been set!" end if - Call wTypeKeys "<End><Right>" - Call wTypeKeys "<Return>" + Call wTypeKeys "<End><Right>" + Call wTypeKeys "<Return>" + end if printlog "- Style 'Underline' " '/// Write 'Style Underline' - execute Context menu 'Style Underline' Call wTypeKeys "Style Underline" Call wTypeKeys "<Shift Home>" - Kontext "DocumentWriter" - DocumentWriter.OpenContextMenu - Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. - Call hMenuFindSelect (".uno:Underline", true, 4, false) 'Find 'Underline' and call the slot. - ' /// Check if changes to style have been made /// - FormatCharacter - Kontext - Active.Setpage TabFontEffects - Kontext "TabFontEffects" - if Underline.GetSelIndex <> 2 then Warnlog "Style 'Underline' with context menu has not been set!" - TabFontEffects.Cancel - Call wTypeKeys "<End><Right>" - Call wTypeKeys "<Return>" - + Kontext "DocumentWriter" + DocumentWriter.OpenContextMenu + Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. + if hMenuFindSelect (".uno:Underline", true, 4, false) = true then 'Find 'Underline' and call the slot. + ' /// Check if changes to style have been made /// + FormatCharacter + Kontext + Active.Setpage TabFontEffects + Kontext "TabFontEffects" + if Underline.GetSelIndex <> 2 then Warnlog "Style 'Underline' with context menu has not been set!" + TabFontEffects.Cancel + Call wTypeKeys "<End><Right>" + Call wTypeKeys "<Return>" + end if + printlog "- Style 'Overline' " '/// Write 'Style Overline' - execute Context menu 'Style Strikethrough' Call wTypeKeys "Style Overline" Call wTypeKeys "<Shift Home>" - Kontext "DocumentWriter" - DocumentWriter.OpenContextMenu - Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. - Call hMenuFindSelect (".uno:Overline", true, 3, false) 'Find 'Overline' and call the slot. - ' /// Check if changes to style have been made /// - FormatCharacter - Kontext - Active.Setpage TabFontEffects - Kontext "TabFontEffects" - if Overline.GetSelIndex <> 2 then Warnlog "Style 'Overline' with context menu has not been set!" - TabFontEffects.Cancel - Call wTypeKeys "<End><Right>" - Call wTypeKeys "<Return>" + Kontext "DocumentWriter" + DocumentWriter.OpenContextMenu + Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. + if hMenuFindSelect (".uno:Overline", true, 3, false) = true then 'Find 'Overline' and call the slot. + ' /// Check if changes to style have been made /// + FormatCharacter + Kontext + Active.Setpage TabFontEffects + Kontext "TabFontEffects" + if Overline.GetSelIndex <> 2 then Warnlog "Style 'Overline' with context menu has not been set!" + TabFontEffects.Cancel + Call wTypeKeys "<End><Right>" + Call wTypeKeys "<Return>" + end if printlog "- Style 'StrikeThrough' " '/// Write 'Style Strikethrough' - execute Context menu 'Style Strikethrough' Call wTypeKeys "Style Strikethrough" Call wTypeKeys "<Shift Home>" Kontext "DocumentWriter" - DocumentWriter.OpenContextMenu - Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. - Call hMenuFindSelect (".uno:Strikeout", true, 5, false) 'Find 'Strikethrough' and call the slot. - ' /// Check if changes to style have been made /// - FormatCharacter - Kontext - Active.Setpage TabFontEffects - Kontext "TabFontEffects" - if StrikeThrough.GetSelIndex <> 2 then Warnlog "Style 'StrikeThrough' with context menu has not been set!" - TabFontEffects.Cancel - Call wTypeKeys "<End>" - Call wTypeKeys "<Right><Return>" + DocumentWriter.OpenContextMenu + Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. + if hMenuFindSelect (".uno:Strikeout", true, 5, false) = true then 'Find 'Strikethrough' and call the slot. + ' /// Check if changes to style have been made /// + FormatCharacter + Kontext + Active.Setpage TabFontEffects + Kontext "TabFontEffects" + if StrikeThrough.GetSelIndex <> 2 then Warnlog "Style 'StrikeThrough' with context menu has not been set!" + TabFontEffects.Cancel + Call wTypeKeys "<End>" + Call wTypeKeys "<Right><Return>" + end if printlog "- Style 'Shadow' " '/// Write 'Style Shadow' - execute Context menu 'Style Shadow' Call wTypeKeys "Style Shadow" Call wTypeKeys "<Shift Home>" Kontext "DocumentWriter" - DocumentWriter.OpenContextMenu - Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. - Call hMenuFindSelect (".uno:Shadowed", true, 6, false) 'Find 'Shadowed' and call the slot. - ' /// Check if changes to style have been made /// - FormatCharacter - Kontext - Active.Setpage TabFontEffects - Kontext "TabFontEffects" - if Shadow.IsChecked = False then Warnlog "Style 'Shadow' with context menu has not been set!" - TabFontEffects.Cancel - Call wTypeKeys "<End><Right>" - Call wTypeKeys "<Return>" + DocumentWriter.OpenContextMenu + Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. + if hMenuFindSelect (".uno:Shadowed", true, 6, false) = true then 'Find 'Shadowed' and call the slot. + ' /// Check if changes to style have been made /// + FormatCharacter + Kontext + Active.Setpage TabFontEffects + Kontext "TabFontEffects" + if Shadow.IsChecked = False then Warnlog "Style 'Shadow' with context menu has not been set!" + TabFontEffects.Cancel + Call wTypeKeys "<End><Right>" + Call wTypeKeys "<Return>" + end if printlog "- Style 'Outline' " '/// Write 'Style Outline' - execute Context menu 'Style Outline' Call wTypeKeys "Style Outline" Call wTypeKeys "<Shift Home>" Kontext "DocumentWriter" - DocumentWriter.OpenContextMenu - Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. - Call hMenuFindSelect (".uno:OutlineFont", true, 7, false) 'Find 'Outline' and call the slot. - ' /// Check if changes to style have been made /// - FormatCharacter - Kontext - Active.Setpage TabFontEffects - Kontext "TabFontEffects" - if Outline.IsChecked = false then Warnlog "Style 'Outline' with context menu has not been set!" - TabFontEffects.Cancel - + DocumentWriter.OpenContextMenu + Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. + if hMenuFindSelect (".uno:OutlineFont", true, 7, false) = true then 'Find 'Outline' and call the slot. + ' /// Check if changes to style have been made /// + FormatCharacter + Kontext + Active.Setpage TabFontEffects + Kontext "TabFontEffects" + if Outline.IsChecked = false then Warnlog "Style 'Outline' with context menu has not been set!" + TabFontEffects.Cancel + end if + printlog "Close Document." Call hCloseDocument endcase @@ -579,9 +586,9 @@ testcase tFormatCharacter Call hCloseDocument printlog "re-open previous saved document" if gApplication = "WRITER" then - Call hFileOpen ( gOfficePath + "user\work\format1.odt" ) + hFileOpen( gOfficePath & "user\work\format1.odt" ) else - Call hFileOpen ( gOfficePath + "user\work\format1.odm" ) + hFileOpen( gOfficePath & "user\work\format1.odm" ) end if Call wTypeKeys "<Mod1 Home><Right>" Wait 500 diff --git a/testautomation/writer/optional/includes/formatpage/w_formatpage1.inc b/testautomation/writer/optional/includes/formatpage/w_formatpage1.inc index 84a5c5281f8b..a7393d50f6df 100644 --- a/testautomation/writer/optional/includes/formatpage/w_formatpage1.inc +++ b/testautomation/writer/optional/includes/formatpage/w_formatpage1.inc @@ -348,7 +348,7 @@ testcase tFormatPage_6 Call hNewDocument - Call hFileOpen(gOfficepath + "user\work\tFormatPage_6.odt") + hFileOpen( gOfficepath + "user\work\tFormatPage_6.odt") '/// Check if Pre-defined formats are correct fFormatPageWriter("TabSeite") @@ -602,8 +602,8 @@ testcase tFormatPage_11 '/// Open a test file , '/// + There are 2 pictures in 2 pages separately , '/// + and they are anchored as character - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// FormatPage / tabpage Page , Set left margins to 10cm , '/// + and set page layout to "Right to left" @@ -662,8 +662,8 @@ testcase tFormatPage_12 '/// Open a test file , '/// + there are 2 pictures in 2 pages separately , and they are anchored as character - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// FormatPage / tabpage Page , Set left margins to 10cm , '/// + and set page layout to "Mirrored" @@ -724,8 +724,8 @@ testcase tFormatPage_13 '/// Open a test file , '/// + there are 2 pictures in 2 pages separately - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// FormatPage / tabpage Page , Set left margins to 10cm , '/// + and set page layout to "Only right" @@ -781,8 +781,8 @@ testcase tFormatPage_14 '/// Open a test file , '/// + there are 2 pictures in 2 pages separately - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// FormatPage / tabpage Page , Set left margins to 10cm , '/// + and set page layout to "Only left" diff --git a/testautomation/writer/optional/includes/formatpage/w_formatpage2.inc b/testautomation/writer/optional/includes/formatpage/w_formatpage2.inc index 290b1a395b94..a191efc726cf 100755..100644 --- a/testautomation/writer/optional/includes/formatpage/w_formatpage2.inc +++ b/testautomation/writer/optional/includes/formatpage/w_formatpage2.inc @@ -60,8 +60,8 @@ testcase tFormatPage_16 Call hNewDocument '/// Open test file testForAutoFit.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Open Navigator and enter as page number 2 Kontext "Navigator" @@ -151,8 +151,8 @@ testcase tFormatPage_17 Call hNewDocument '/// Open test file testForAutoFit.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Open Navigator and enter as page number 2 Kontext "Navigator" @@ -255,8 +255,8 @@ testcase tFormatPage_18 Call hNewDocument '/// Open test file testForAutoFit.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Open Navigator and enter as page number 2 Kontext "Navigator" @@ -340,8 +340,8 @@ testcase tFormatPage_19 Call hNewDocument '/// Open test file testForAutoFit.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Open Navigator and enter as page number 2 Kontext "Navigator" @@ -417,8 +417,8 @@ testcase tFormatPage_20 Call hNewDocument '/// Open test file testForAutoFit.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Open Navigator and enter as page number 2 Kontext "Navigator" @@ -507,8 +507,8 @@ testcase tFormatPage_21 '/// AutoFit height - Check (Footer,multiline content) '/// Open test file testForAutoFit.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Open Navigator and enter as page number 2 Kontext "Navigator" @@ -613,8 +613,8 @@ testcase tFormatPage_22 Call hNewDocument '/// Open test file testForAutoFit.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Open Navigator and enter as page number 2 Kontext "Navigator" @@ -697,8 +697,8 @@ testcase tFormatPage_23 '/// AutoFit height - UnCheck (Footer,multiline content) '/// Open test file testForAutoFit.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Open Navigator and enter as page number 2 Kontext "Navigator" diff --git a/testautomation/writer/optional/includes/formatpage/w_formatpage3.inc b/testautomation/writer/optional/includes/formatpage/w_formatpage3.inc index 784f6dad28cc..df0f810f9093 100644 --- a/testautomation/writer/optional/includes/formatpage/w_formatpage3.inc +++ b/testautomation/writer/optional/includes/formatpage/w_formatpage3.inc @@ -71,8 +71,8 @@ testcase tFormatPage_29 '/// Open test file testHeaderContent29.sxw '/// + (The test file include 2 pages , and the '/// + content in header are different ) - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// formatPage , tabpage header , check 'same content left/right' fFormatPageWriter("TabKopfzeile") @@ -159,8 +159,8 @@ testcase tFormatPage_30 '/// Open test file testHeaderContent30.sxw '/// + (The test file include 2 pages , and the '/// + content in header is same ) - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// formatPage , tabpage header , Uncheck 'same content left/right' fFormatPageWriter("TabKopfzeile") @@ -226,8 +226,8 @@ testcase tFormatPage_31 '/// Open test file testFooterContent31.sxw '/// + (The test file include 2 pages , and the content '/// + in footer are different ) - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// + formatPage , tabpage footer , check 'same content left/right' fFormatPageWriter("TabFusszeile") @@ -314,8 +314,8 @@ testcase tFormatPage_32 '/// Open test file testFooterContent32.sxw '/// + (The test file include 2 pages , and the '/// + content in footer is same ) - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// formatPage , tabpage footer , Uncheck 'same content left/right' fFormatPageWriter("TabFusszeile") @@ -743,8 +743,8 @@ testcase tFormatPage_39 '/// Open test file testColumnInPage.sxw '/// + (The test file includes 2 pages , some text '/// + is in 1st page and another is in 2nd page) - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// formatPage , tabpage columns , change column to 3 via controls fFormatPageWriter("TabSpalten") @@ -808,8 +808,8 @@ testcase tFormatPage_40 '/// Open test file testColumnInPage.sxw '/// + (The test file includes 2 pages , some text is '/// + in 1st page and another is in 2nd page) - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// formatPage , tabpage columns , change column to 3 via spinfield fFormatPageWriter("TabSpalten") @@ -882,8 +882,8 @@ testcase tFormatPage_41 '/// Open test file testColumnInPage2.sxw '/// + (The test file includes 2 pages , some text is '/// + in 1st page and another is in 2nd page) - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Create 3 with different columns . formatPage , '/// + tabpage columns , set 3 columns @@ -973,8 +973,8 @@ testcase tFormatPage_42 '/// Open test file testColumnInPage2.sxw '/// + (The test file includes 2 pages , some text is '/// + in 1st page and another is in 2nd page) - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// formatPage , tabpage columns , set 3 columns fFormatPageWriter("TabSpalten") @@ -1136,8 +1136,8 @@ testcase tFormatPage_45 '/// Open test file testSeparatorLine.sxw '/// + (The test file includes 6 columns , some '/// + test text lllll... is in 2nd column - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + Kontext EditSearchAndReplace @@ -1263,7 +1263,7 @@ testcase tFormatPage_46 Call hCloseDocument Call hNewDocument - Call hFileOpen(gOfficepath + "user\work\tFormatPage_46.odt") + hFileOpen( gOfficepath + "user\work\tFormatPage_46.odt") '/// Check if the setting are still kept fFormatPageWriter("TabSpalten") diff --git a/testautomation/writer/optional/includes/formatpage/w_formatpage4.inc b/testautomation/writer/optional/includes/formatpage/w_formatpage4.inc index 9b800e3bad4b..728cd204ed50 100644 --- a/testautomation/writer/optional/includes/formatpage/w_formatpage4.inc +++ b/testautomation/writer/optional/includes/formatpage/w_formatpage4.inc @@ -375,8 +375,8 @@ testcase tFormatPage_53 '/// Open test file testColumnVertical.sxw '/// + There are 8 columns in the page , and a test '/// + word is in 3rd column - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// formatPage , tabpage page, select right to left (vertical) Call fFormatPageWriter("TabSeite") @@ -763,8 +763,8 @@ testcase tFormatPage_60 Call hCloseDocument Call hNewDocument - Call hFileOpen(gOfficepath + "user\work\tFormatPage_60.odt") - Call sMakeReadOnlyDocumentEditable + hFileOpen( gOfficepath + "user\work\tFormatPage_60.odt") + '/// check if the configuration is all right fFormatPageWriter("TabUmrandung") diff --git a/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph1.inc b/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph1.inc index 4fa007cfc4b0..7c31482e37af 100755..100644 --- a/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph1.inc +++ b/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph1.inc @@ -366,8 +366,8 @@ testcase tParagraphIndent5 '/// Open the test file '/// This file includes 2 paragraphs , and the end of 2nd paragraph is in 1st page - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set the focus to 2nd paragraph Kontext @@ -426,8 +426,8 @@ testcase tParagraphIndent6 '/// Open the test file '/// This file includes 2 paragraphs , and the end of 2nd paragraph is in 1st page - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set the focus to 1st paragraph Kontext @@ -494,8 +494,8 @@ testcase tParagraphIndent7 '/// if the spacing is adopted 1cm ,2nd paragrahp will be in 1st page '/// if the spacing is adopted 2cm ,2nd paragrahp part will be in 1st page , part will be in 2nd page '/// if the spacing is adopted 3cm ,2nd paragrahp will be in 2nd page - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set the focus to the end of the 1st paragraph Kontext @@ -582,8 +582,8 @@ testcase tParagraphIndent8 '/// if the spacing is adopted 1cm ,2nd paragrahp will be in 1st page '/// if the spacing is adopted 2cm ,2nd paragrahp part will be in 1st page , part will be in 2nd page '/// if the spacing is adopted 3cm ,2nd paragrahp will be in 2nd page - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set the focus to the end of the 1st paragraph Kontext @@ -642,8 +642,8 @@ testcase tParagraphIndent9 '/// Open the test file '/// This file includes 8 lines , '/// + when the spacing is single line , the 8 lines should be in 1 page as design. - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Indents & Spacing , select single line in Line spacing Call fFormatParagraph("TabEinzuegeUndAbstaende") @@ -683,8 +683,8 @@ testcase tParagraphIndent10 '/// This file includes 8 lines '/// when the spacing is 1.5 lines , '/// + the last 2(or 3) lines should be in 2nd page. - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Indents & Spacing , select 1.5 lines in Line spacing Call fFormatParagraph("TabEinzuegeUndAbstaende") @@ -753,8 +753,8 @@ testcase tParagraphIndent11 '/// This file includes 8 lines '/// when the spacing is Double lines , the first 4 lines should be in 1st page '/// + the last 4 lines should be in 2nd page. - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Indents & Spacing , select Double lines in Line spacing Call fFormatParagraph("TabEinzuegeUndAbstaende") @@ -833,8 +833,8 @@ testcase tParagraphIndent12 '/// This file includes 8 lines '/// when the spacing Proportional is more than 200% , '/// + then it will change to be Double line automatically - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Indents & Spacing , '/// + select Proportional in Line spacing , and input 300% @@ -907,8 +907,8 @@ testcase tParagraphIndent13 '/// This file includes 8 lines and 1 pic is anchored as character in 1st line '/// when the spacing is At least to 4cm, there should be 1 line/page '/// + and the pic should move down - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Get the original coordinate-Y Call wTypeKeys ( "<Shift F4>" ) @@ -976,8 +976,8 @@ testcase tParagraphIndent14 '/// This file includes 8 lines and 1 pic is anchored as character in 1st line '/// when the spacing is leading to 4cm, there should be 1 line/page '/// + and the pic should NOT move - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Get the original coordinate-Y Call wTypeKeys ( "<Shift F4>" ) @@ -1042,8 +1042,8 @@ testcase tParagraphIndent15 '/// Open the test file '/// + This file includes 8 lines , and font size is 12 - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Indents & Spacing , '/// + select Fixed lines in Line spacing @@ -1112,8 +1112,8 @@ testcase tParagraphIndent16 '/// + You will find out the "He2 heard quiet steps" '/// + isn't at the same line with the context left it . '/// + There is a pic anchored "He2" . - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Get the original location for the pic Call wTypeKeys ( "<Shift F4>" ) @@ -1171,8 +1171,8 @@ testcase tParagraphIndent17 '/// In Tools/Optionis/Text Document/Compatibility, '/// + the 'Add spacing between paragarph and talbes' '/// + should be checked - Call hFileOpen(sTestFile1) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile1) + ToolsOptions Call hToolsOptions("WRITER","COMPATIBILITY") @@ -1193,8 +1193,8 @@ testcase tParagraphIndent17 '/// In Tools/Optionis/Text Document/Compatibility, '/// + the 'Add spacing between paragarph and talbes' '/// + should NOT be checked - Call hFileOpen(sTestFile2) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile2) + ToolsOptions Call hToolsOptions("WRITER","COMPATIBILITY") diff --git a/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph2.inc b/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph2.inc index dccebdcf930e..d204f8f2e02c 100755..100644 --- a/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph2.inc +++ b/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph2.inc @@ -29,31 +29,6 @@ '* '* short description : Test the functionality of Paragraph Formatting - 2 '* -'************************************************************************ -'* -' #1 tParagraphAlignment1 'Test 'Left' alignment -' #1 tParagraphAlignment2 'Test 'Right' alignment -' #1 tParagraphAlignment3 'Test 'Center' alignment -' #1 tParagraphAlignment4 'Test 'Justified' alignment - Default -' #1 tParagraphAlignment5 'Test 'Justified' alignment - Centered -' #1 tParagraphAlignment6 'Test 'Justified' alignment - Justified -' #1 tParagraphAlignment7 'Test 'Expand single word' -' #1 tParagraphAlignment8 'Test Uncheck 'Snap to text grid(if active)' -' #1 tParagraphAlignment9 'Test Check 'Snap to text grid(if active)' -' #1 tParagraphTextFlow1 'Hyphenation must be processed while entering text WITHOUT inquiry -' #1 tParagraphTextFlow2 'Hyphenation - Characters at line end -' #1 tParagraphTextFlow3 'Hyphenation - Characters at line begin -' #1 tParagraphTextFlow4 'Hyphenation - maxinum number of consecutive typhens -' #1 tParagraphTextFlow5 'Paragraph break before Column -' #1 tParagraphTextFlow6 'Paragraph break after Column -' #1 tParagraphTextFlow7 'Paragraph break before Page -' #1 tParagraphTextFlow8 'Paragraph break after Page -' #1 tParagraphTextFlow9 'Do not split paragraph -' #1 tParagraphTextFlow10 'Keep with next paragraph -' #1 tParagraphTextFlow11 'Orphan control -' #1 tParagraphTextFlow12 'widow control -' #1 tParagraphTextFlow13 'Special test for Hyphenation -'* '\*********************************************************************** testcase tParagraphAlignment1 @@ -70,8 +45,7 @@ testcase tParagraphAlignment1 '/// + Open the test file '/// + This file includes 1 paragraphs , and a pic is anchored to the character - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) 'Get the original coordinate-X Call wTypeKeys ( "<Shift F4>" ) @@ -119,8 +93,7 @@ testcase tParagraphAlignment2 '/// + Open the test file '/// + This file includes 1 paragraphs , and a pic is anchored to the laste character - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// + Format/Paragraph / Alignment , choose Right/Bottom option Call fFormatParagraph("TabAusrichtungAbsatz") @@ -156,8 +129,7 @@ testcase tParagraphAlignment3 '/// + Open the test file '/// + This file includes 1 paragraphs , and a pic is anchored to the character - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// + Format/Paragraph / Alignment , choose Center option Call fFormatParagraph("TabAusrichtungAbsatz") @@ -196,8 +168,7 @@ testcase tParagraphAlignment4 '/// Open the test file '/// + This file includes 1 paragraphs , and a pic is anchored to the last character - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) Call wTypeKeys ( "<Shift F4>" ) Sleep 1 @@ -264,8 +235,7 @@ testcase tParagraphAlignment5 '/// Open the test file '/// + This file includes 1 paragraphs , and a pic is anchored to the last character - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Format/Paragraph / Alignment , '/// + choose Justified option , and select centered in last line @@ -307,8 +277,7 @@ testcase tParagraphAlignment6 '/// Open the test file '/// + This file includes 1 paragraphs, '/// + and 2 pics are in 2nd line - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) Call wTypeKeys ( "<Shift F4>" ) Call wTypeKeys "<TAB>" @@ -374,8 +343,7 @@ testcase tParagraphAlignment7 '/// + This file includes 1 paragraphs , '/// + there is only 1 word - "That" in last line , '/// + and a drawring object is anchored as character after "That" - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) printlog "Select the object." Sleep 1 @@ -441,8 +409,7 @@ testcase tParagraphAlignment8 '/// Open the test file '/// + This file includes 1 paragraphs , '/// + and a drawring object is anchored as character after "That" - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Get the drawing object original position /// Call wTypeKeys ( "<Shift F4>" ) @@ -512,8 +479,7 @@ testcase tParagraphAlignment9 '/// Open the test file '/// + This file includes 1 paragraphs , '/// + and a drawring object is anchored as character after "That" - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Get the drawing object original position /// Call wTypeKeys ( "<Shift F4>" ) @@ -578,8 +544,7 @@ testcase tParagraphTextFlow1 '/// Open the test file '/// + This file includes 2 words : AAA and Kilometerhigh - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) 'the focus is in front of Kilometerhigh Call wTypeKeys "<Home>" @@ -607,8 +572,7 @@ testcase tParagraphTextFlow1 Call hCloseDocument Call hNewDocument - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// 2. Test there is the Hyphenation configuratioin '/// + Format/Paragraph / Text Flow , @@ -657,8 +621,7 @@ testcase tParagraphTextFlow2 '/// Open the test file '/// + This file includes 2 words : AAA and Kilometerhigh - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// 1.Test Characters at line end ==> 6 '/// + Format/Paragraph / Text Flow , @@ -689,8 +652,7 @@ testcase tParagraphTextFlow2 Call hNewDocument - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// 2.Test Characters at line end ==> 8 '/// + Format/Paragraph / Text Flow , @@ -735,8 +697,7 @@ testcase tParagraphTextFlow3 '/// Open the test file '/// + This file includes 2 words : AAA and Kilometerhigh - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// 1.Test Characters at line begin ==> 4 '/// + Format/Paragraph / Text Flow , @@ -766,8 +727,8 @@ testcase tParagraphTextFlow3 Call hNewDocument - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// 2.Test Characters at line end ==> 6 '/// + Format/Paragraph / Text Flow , @@ -817,8 +778,7 @@ testcase tParagraphTextFlow4 '/// Open the test file '/// + This file includes 4 words : KiloAmterhigh1 kiloAmeterhigh2 kiloAmeterhigh3 kiloAmeterhigh4 '/// + the words' length is longer then page length - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// 1.Test maxinum number of consecutive typhens (default => 0) '/// + Format/Paragraph / Text Flow , @@ -935,8 +895,7 @@ testcase tParagraphTextFlow5 '/// + There are 2 columns/page ,includes 2 paragraph '/// + the 1st paragraph is in 1st and 2nd column '/// + the 2nd paragraph is is 2nd and 3rd column - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Set the focus to 2nd paragraph Kontext @@ -987,8 +946,7 @@ testcase tParagraphTextFlow6 '/// + There are 2 columns/page ,includes 1 paragraph '/// + the paragraph is in 1st and 2nd column '/// + and it is NOT full of 2nd column - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Format/Paragraph / Text Flow '/// + Set 'Breaks' enable @@ -1031,8 +989,7 @@ testcase tParagraphTextFlow7 '/// Open the test file '/// + There are 2 paragraphs in 1 page - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Set the focus to 2nd paragraph Kontext @@ -1092,8 +1049,7 @@ testcase tParagraphTextFlow8 '/// Open the test file '/// + There is 1 paragraph in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Format/Paragraph / Text Flow '/// + Set 'Breaks' enable @@ -1139,8 +1095,7 @@ testcase tParagraphTextFlow9 '/// Open the test file '/// + There is 1 paragraph which cross 2 pages - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" Call fFindWord("She") @@ -1173,8 +1128,7 @@ testcase tParagraphTextFlow9 PrintLog "- Check Don't split paragraph" Call hNewDocument - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" @@ -1225,8 +1179,7 @@ testcase tParagraphTextFlow10 '/// Open the test file '/// There are 2 paragraphes in the file , 1st one crosses '/// + 1st and 2nd page , 2nd one is in 2nd page - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) EditSearchAndReplace Kontext "FindAndReplace" SearchFor.SetText "He1" @@ -1269,8 +1222,7 @@ testcase tParagraphTextFlow10 Call hNewDocument - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) PrintLog "- Check Keep with next paragraph" '/// 2. Test checking "Keep with next paragraph" @@ -1331,8 +1283,7 @@ testcase tParagraphTextFlow11 '/// Open the test file '/// + There is 1 paragraph (8 lines) in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Format/Paragraph / Text Flow '/// + Check 'Orphan control' , set 3 in 'Lines' @@ -1385,8 +1336,7 @@ testcase tParagraphTextFlow12 '/// Open the test file '/// + There is 1 paragraph (8 lines) in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Format/Paragraph / Text Flow '/// + Check 'Widow control' , set 3 in 'Lines' @@ -1436,8 +1386,7 @@ testcase tParagraphTextFlow13 '/// Open the test file '/// + There is 1 word TABC in the end of the first line - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Press spaces in the head of the first line , we hope '/// + the whole word - 'TABC' will go to 2nd line at one time diff --git a/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph3.inc b/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph3.inc index 77af9b0a0301..37c79948a1cc 100755..100644 --- a/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph3.inc +++ b/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph3.inc @@ -73,8 +73,8 @@ testcase tParagraphTabs1 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Tabs , '/// + check Left in the type area , and input 3cm in Position @@ -119,8 +119,8 @@ testcase tParagraphTabs2 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Tabs , '/// + check Right in the type area , and input 3cm in Position @@ -165,8 +165,8 @@ testcase tParagraphTabs3 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Tabs , '/// + check Centered in the type area , and input 3cm in Position @@ -212,8 +212,8 @@ testcase tParagraphTabs4 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file , '/// + and there are 1 "." seperator in front of the pic - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Tabs , '/// + check Decimal in the type area , @@ -351,8 +351,8 @@ testcase tParagraphDropCaps1 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Drop Caps , '/// + Check 'Display Drop Caps' , close the dialog @@ -403,8 +403,8 @@ testcase tParagraphDropCaps2 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Drop Caps , '/// + Check 'Display Drop Caps' , then check 'whole word' , then close the dialog @@ -457,8 +457,8 @@ testcase tParagraphDropCaps3 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Drop Caps , '/// + Check 'Display Drop Caps' , then set '6' in 'number of characters' ,then close the dialog @@ -511,8 +511,8 @@ testcase tParagraphDropCaps4 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Drop Caps , '/// + Check 'Display Drop Caps' , then set '6' in 'Lines' ,then close the dialog @@ -562,8 +562,8 @@ testcase tParagraphDropCaps5 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Drop Caps , '/// + Check 'Display Drop Caps' ,then set 'Space to text' to be 1cm , close the dialog @@ -648,8 +648,8 @@ testcase tParagraphDropCaps7 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Drop Caps , '/// + Check 'Display Drop Caps' ,then set Xyz in Contents 'Text' field , close the dialog @@ -779,8 +779,8 @@ testcase tParagraphNumbering1 '/// Open the test file , '/// + there are 2 paragraphes in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Find the test word , set the focus to 1st paragraph Call fFindWord( sTest1 ) diff --git a/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion1.inc b/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion1.inc index bacd2dd1d8af..a16949d37851 100755..100644 --- a/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion1.inc +++ b/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion1.inc @@ -67,8 +67,7 @@ testcase tHHNoSelction_1 '/// Open a test file , which includes some Korean characters '/// + and some Chinese characters - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + hFileOpenLocally(sTestFile) '/// Set focus before the 3rd character Call wTypeKeys "<MOD1 Home>" @@ -137,8 +136,7 @@ testcase tHHNoSelction_2 '/// Open a test file , which includes some English , '/// + Germany , French , Korean and Chinese characters '/// + (Korean is before Chinese) - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally(sTestFile) '/// Set focus to the beginning Call wTypeKeys "<MOD1 Home>" @@ -195,8 +193,8 @@ testcase tHHNoSelction_3 '/// Open a test file , which includes some English , '/// + Germany , French , Korean and Chinese characters '/// + (Chinese is before Korean) - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally( sTestFile ) + () '/// Set focus to the beginning Call wTypeKeys "<MOD1 Home>" @@ -250,8 +248,8 @@ testcase tHHNoSelction_4 '/// Open a test file , which includes some English , '/// + Germany , French characters . '/// + There are no Chinese and Korean - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally( sTestFile ) + () '/// Set focus to the beginning Call wTypeKeys "<MOD1 Home>" @@ -291,8 +289,8 @@ testcase tHHNoSelction_5 Call hNewDocument '/// Open a test file , which includes some Chinese and Korean - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally( sTestFile ) + () '/// Set focus to the end of the file Call wTypeKeys "<MOD1 End>" @@ -333,8 +331,8 @@ testcase tHHNoSelction_6 '/// Open a test file , which includes some Chinese and Korean, '/// + the 3rd character in 1st line isn't convertible - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally( sTestFile ) + () '/// Set focus to the 3rd character (korean) Call wTypeKeys "<MOD1 Home>" @@ -398,8 +396,8 @@ testcase tHHNoSelction_7 '/// Open a test file , which includes some Chinese and Korean, '/// + the 3rd character in 2nd line isn't convertible - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally( sTestFile ) + () '/// Set focus to the 3rd chinese character Call wTypeKeys "<MOD1 Home><Down><Home>" @@ -466,8 +464,8 @@ testcase tHHSingleSelction_1 Call hNewDocument '/// Open a test file , which includes some Chinese and Korean - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally( sTestFile ) + () '/// Select from 4th to 7th character Call wTypeKeys "<MOD1 Home>" @@ -527,8 +525,8 @@ testcase tHHMultiSelction_1 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally( sTestFile ) + () '/// Do a multi Selectiong to the charcters -- 입력 Call fFindWord(sMultiWord) @@ -573,8 +571,8 @@ testcase tHHTextBox_1 '/// Open a test file , which includes a text box and '/// + some Korean chacters in the text box - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally( sTestFile ) + () '/// Tools / HangulHanjaConversion , the below 4 checkboxes ralated '/// + ruby should be disabled . @@ -645,8 +643,8 @@ testcase tHHDrawBox_1 '/// Open a test file , which includes a draw box and '/// + some Korean chacters in the text box - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally( sTestFile ) + () '/// Tools / HangulHanjaConversion , the below 4 checkboxes ralated '/// + ruby should be disabled . '/// -> 'Hanja As Ruby Above Hangul' diff --git a/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion2.inc b/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion2.inc index 26437f17f920..dface018692f 100755..100644 --- a/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion2.inc +++ b/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion2.inc @@ -80,7 +80,7 @@ testcase tHHConversion_1 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" '/// Tools / HangulHanjaConversion , @@ -129,7 +129,7 @@ testcase tHHConversion_2 '/// Open a test file , which includes some '/// + Chinese character and Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" '/// Tools / HangulHanjaConversion , check hanja only . @@ -180,7 +180,7 @@ testcase tHHConversion_3 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" '/// Tools / HangulHanjaConversion , check Hanja(Hangul) @@ -232,7 +232,7 @@ testcase tHHConversion_4 '/// Open a test file , which includes some '/// + Chinese character and Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" '/// Tools / HangulHanjaConversion , check Hanja(Hangul). @@ -284,7 +284,7 @@ testcase tHHConversion_5 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" '/// Tools / HangulHanjaConversion , check Hangul(Hanja) , @@ -337,7 +337,7 @@ testcase tHHConversion_6 '/// Open a test file , which includes some '/// + Chinese character and Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" '/// Tools / HangulHanjaConversion , check Hangul(Hanja), @@ -390,7 +390,7 @@ testcase tHHConversion_7 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , check 'Hanja As Ruby Above Hangul' , @@ -450,7 +450,7 @@ testcase tHHConversion_8 Call hNewDocument '/// Open a test file , which includes some Chinese chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , check 'Hanja As Ruby Above Hangul' , @@ -510,7 +510,7 @@ testcase tHHConversion_9 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , check 'Hanja As Ruby Below Hangul' , @@ -570,7 +570,7 @@ testcase tHHConversion_10 Call hNewDocument '/// Open a test file , which includes some Chinese chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , check 'Hanja As Ruby Below Hangul' , @@ -630,7 +630,7 @@ testcase tHHConversion_11 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , check 'Hangul As Ruby Above Hanja' , @@ -690,7 +690,7 @@ testcase tHHConversion_12 Call hNewDocument '/// Open a test file , which includes some Chinese chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , check 'Hangul As Ruby Above Hanja' , @@ -750,7 +750,7 @@ testcase tHHConversion_13 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , check 'Hangul As Ruby Below Hanja' , @@ -810,7 +810,7 @@ testcase tHHConversion_14 Call hNewDocument '/// Open a test file , which includes some Chinese chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , check 'Hangul As Ruby Below Hanja' , @@ -865,7 +865,7 @@ testcase tHHConversion_15 '/// Open a test file , which includes some Korean chacters . '/// + Set focus before Korean character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , @@ -913,7 +913,7 @@ testcase tHHConversion_16 '/// Open a test file , which includes some Chinese chacters . '/// + Set focus before Chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , @@ -964,7 +964,7 @@ testcase tHHConversion_17 Call hNewDocument '/// Open a test file , which includes some Korean chacters . - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , press Ignore , @@ -1015,7 +1015,7 @@ testcase tHHConversion_18 '/// Open a test file , which includes some Chinese chacters =>. '/// + 山下 上山下乡 山下 - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , press Always Ignore , @@ -1046,7 +1046,7 @@ testcase tHHConversion_18 '/// So far , there is still a StarOffice session exists . '/// Reopen the test file - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , @@ -1097,7 +1097,7 @@ testcase tHHConversion_19 '/// Open a test file , which includes some Chinese chacters =>. '/// + 山下 上山下乡 山下 - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , press Always Ignore , @@ -1120,7 +1120,7 @@ testcase tHHConversion_19 Call hNewDocument '/// Reopen the test file - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , 山下 should be selcted @@ -1159,7 +1159,7 @@ testcase tHHConversion_20 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , select a word in selection @@ -1225,7 +1225,7 @@ testcase tHHConversion_21 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , select a word in selection, @@ -1267,7 +1267,7 @@ testcase tHHConversion_21 Call hNewDocument '/// Reopen this test file - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion @@ -1321,7 +1321,7 @@ testcase tHHConversion_22 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , select a word in selection, @@ -1350,7 +1350,7 @@ testcase tHHConversion_22 Call hStartTheOffice Call hNewDocument '/// Reopen this test file - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion @@ -1389,7 +1389,7 @@ testcase tHHConversion_23 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , select a word in selection, @@ -1454,7 +1454,7 @@ testcase tHHConversion_24 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , the default for 'Replace by character' @@ -1509,7 +1509,7 @@ testcase tHHConversion_25 '/// Open a test file , which includes some Chinese chacters =>. '/// + 山下 上山下乡 山下 - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , Check 'Replace by character' , @@ -1573,7 +1573,7 @@ testcase tHHConversion_26 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<Home>" '/// Tools / HangulHanjaConversion , Check 'Replace by character' , diff --git a/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion3.inc b/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion3.inc index 0808ccacb3bb..e7b89b0accf0 100755..100644 --- a/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion3.inc +++ b/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion3.inc @@ -29,21 +29,6 @@ '* '* short description : Test of Hangul/Hanja Conversion - 3 '* -'************************************************************************ -'* -' #1 tHHOptions_1 'User defined dictionaries -' #1 tHHOptions_2 'Options - New 1 -' #1 tHHOptions_3 'Options - New 2 -' #1 tHHOptions_4 'Options - New 3 -' #1 tHHOptions_5 'Options - Edit (Book) -' #1 tHHOptions_6 'Options - Edit (Original) -1 -' #1 tHHOptions_7 'Options - Edit (Original) -2 -' #1 tHHOptions_8 'Options - Edit (Original) -3 -' #1 tHHOptions_9 'Options - Edit (Original) -4 -' #1 tHHOptions_10 'Options - Edit (Original) -5 -' #1 tHHOptions_11 'Options - Edit (Original) -6 -' #1 tHHOptions_12 'Options - Edit (Original) -7 -'* '\*********************************************************************** testcase tHHOptions_1 @@ -62,7 +47,7 @@ testcase tHHOptions_1 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" @@ -107,7 +92,7 @@ testcase tHHOptions_2 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" '/// Tools / HangulHanjaConversion , Press Options button , @@ -189,7 +174,7 @@ testcase tHHOptions_3 '/// Open a test file , which includes some '/// + Korean chacters and chinese characters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" '/// Tools / HangulHanjaConversion , Press Options button , @@ -254,7 +239,7 @@ warnlog( "#i111911# - Test is broken beyond repait, please rewrite" ) '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" '/// Tools / HangulHanjaConversion , Press Options button , @@ -321,7 +306,7 @@ testcase tHHOptions_5 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" '/// Tools / HangulHanjaConversion , Press Options button , @@ -396,7 +381,7 @@ testcase tHHOptions_6 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" '/// Tools / HangulHanjaConversion , Press Options button , @@ -507,7 +492,7 @@ testcase tHHOptions_7 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" '/// Tools / HangulHanjaConversion , Press Options button , @@ -615,7 +600,7 @@ testcase tHHOptions_8 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" '/// Tools / HangulHanjaConversion , Press Options button , @@ -705,7 +690,7 @@ testcase tHHOptions_9 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" '/// Tools / HangulHanjaConversion , Press Options button , @@ -791,7 +776,7 @@ testcase tHHOptions_10 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" '/// Tools / HangulHanjaConversion , Press Options button , @@ -879,7 +864,7 @@ testcase tHHOptions_11 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" '/// Tools / HangulHanjaConversion , Press Options button , @@ -962,7 +947,7 @@ testcase tHHOptions_12 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "<MOD1 Home>" '/// Tools / HangulHanjaConversion , Press Options button , diff --git a/testautomation/writer/optional/includes/hyphenation/w_hyphenation.inc b/testautomation/writer/optional/includes/hyphenation/w_hyphenation.inc index 62132356360c..560265c301e8 100755..100644 --- a/testautomation/writer/optional/includes/hyphenation/w_hyphenation.inc +++ b/testautomation/writer/optional/includes/hyphenation/w_hyphenation.inc @@ -51,8 +51,8 @@ testcase tHyphenation_1 printlog "Test Hyphenation using ctrl and -" printlog "open a test file" - Call hFileOpen ( gTesttoolPath + "writer\optional\input\hyphenation\" + testFile ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\hyphenation\" + testFile ) + ' we must assure the word 'following' is the first word in second line ' otherwise the test will not work correctly @@ -98,8 +98,8 @@ testcase tHyphenation_2 printlog "Test Hyphenation using ctrl and -" printlog "open a test file" - Call hFileOpen ( gTesttoolPath + "writer\optional\input\hyphenation\" + testFile ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\hyphenation\" + testFile ) + ' we must assure the word 'following' is the first word in second line ' otherwise the test will not work correctly @@ -153,8 +153,8 @@ testcase tHyphenation_3 printlog "Test Hyphenation using Tools/Hyphenation ,test like fol-lowing" printlog "open a test file" - Call hFileOpen ( gTesttoolPath + "writer\optional\input\hyphenation\" + testFile ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\hyphenation\" + testFile ) + ' we must assure the word 'following' is the first word in second line ' otherwise the test will not work correctly @@ -265,8 +265,8 @@ testcase tHyphenation_4 printlog "Test Hyphenation using Tools/Hyphenation ,test like follow-ing" printlog "open a test file" - Call hFileOpen ( gTesttoolPath + "writer\optional\input\hyphenation\" + testFile ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\hyphenation\" + testFile ) + ' we must assure the word 'following' is the first word in second line ' otherwise the test will not work correctly diff --git a/testautomation/writer/optional/includes/insertgraphic/w_insertgraphic1.inc b/testautomation/writer/optional/includes/insertgraphic/w_insertgraphic1.inc index 4b0a23775f33..4e670f290f13 100755..100644 --- a/testautomation/writer/optional/includes/insertgraphic/w_insertgraphic1.inc +++ b/testautomation/writer/optional/includes/insertgraphic/w_insertgraphic1.inc @@ -520,8 +520,10 @@ endcase testcase tInsertGraphic_10 Dim sTestFile as String + dim sOutFile as string sTestFile = ConvertPath(gOfficepath + "user\work\tInsertGraphic_5.sxw") + sOutFile = gOfficepath + "user\work\tInsertGraphic_5.odt" PrintLog "- Insert linked graphics and break the links via Menu Edit - Link" '/// Insert linked graphics and break the links via Menu Edit - Link @@ -636,15 +638,15 @@ testcase tInsertGraphic_10 PrintLog "- Save and Reload the file" '/// Save the file and close the file - Call hFileSaveAsWithFilterKill(gOfficepath + "user\work\tInsertGraphic_5.odt", "writer8") + Call hFileSaveAsWithFilterKill( sOutFile, "writer8") sleep(2) Call hCloseDocument sleep(2) '/// Reload the file - Call hFileOpen(gOfficepath + "user\work\tInsertGraphic_5.odt") + hFileOpen( sOutFile ) sleep(2) - Call sMakeReadOnlyDocumentEditable + '/// Check if the inserted graphics are still there Kontext "DocumentWriter" @@ -652,6 +654,10 @@ testcase tInsertGraphic_10 sleep(1) if fFormatGraphic("TabZusaetze") = false then Warnlog "#i46300#linked JPEG pictures will disappear when doc is modified." + + kontext "TabZusatze" + if ( TabZusaetze.exists() ) then TabZusaetze.close() + kontext "DocumentWriter" Call hCloseDocument goto endsub end if diff --git a/testautomation/writer/optional/includes/loadsave/w_loadsave.inc b/testautomation/writer/optional/includes/loadsave/w_loadsave.inc index e4871e78f400..f8dd252cd174 100644 --- a/testautomation/writer/optional/includes/loadsave/w_loadsave.inc +++ b/testautomation/writer/optional/includes/loadsave/w_loadsave.inc @@ -27,22 +27,16 @@ '* '* owner : helge.delfs@oracle.com '* -'* short description : Checks the export to all available Filters from +'* short description : Checks the export to all available Filters from '* -'*********************************************************************** -' -' #1 tExportAllReadableFormatsIntoODF -' #1 tExportAllReadableFormatsIntoThemselves -' #1 tExportTop5FormatsIntoTop5 -' '\*********************************************************************** testcase tExportAllReadableFormatsIntoODF - if iSprache <> 1 then - QAErrorlog "#100970#test only support english language" - goto endsub - end if + if iSprache <> 1 then + QAErrorlog "#100970#test only support english language" + goto endsub + end if Dim AvailableFilters( 35 ) as String Dim ImportFileList ( 300 ) as String @@ -65,7 +59,7 @@ testcase tExportAllReadableFormatsIntoODF for i=1 to FehlerListe(0) printlog " <> " & FehlerListe(i) next i - goto endsub + goto endsub end if end if app.Mkdir WorkDirectory @@ -74,6 +68,9 @@ testcase tExportAllReadableFormatsIntoODF GetFileList ( ImportDir, "*.*", ImportFileList() ) printlog "- Done." + ' Create local copies of all files to be imported + hFileListCopyLocal( ImportFileList() ) + printlog "- Start loading files in list" For i = 1 to listCount(ImportFileList()) printlog "- " & i & ". load: " & ImportFileList(i) @@ -85,7 +82,7 @@ testcase tExportAllReadableFormatsIntoODF elseif LCase( sExceptionFile ) = "swdos.txt" then QAErrorlog "#i114062#General I/O error loading StarWriter DOS file" else - Call hFileOpen ( ImportFileList(i) ) + Call hFileOpenLocally( ImportFileList(i) ) printlog "- done" Kontext "TextImport" @@ -186,11 +183,11 @@ endcase testcase tExportAllReadableFormatsIntoThemselves - if iSprache <> 1 then - QAErrorlog "#100970#test only support english language" - goto endsub - end if - + if iSprache <> 1 then + QAErrorlog "#100970#test only support english language" + goto endsub + end if + Dim AvailableFilters( 35 ) as String Dim SavedCorrectly as Boolean Dim ImportFileList ( 300 ) as String @@ -222,154 +219,152 @@ testcase tExportAllReadableFormatsIntoThemselves For iCurrentFileIndex = 7 to 7 select case iCurrentFileIndex - case 1 : sCurrentFile = "xml2.odt" - sCurrentFilter = "writer8" - case 2 : sCurrentFile = "wpsfile.wps" - sCurrentFilter = "Text (encoded)" - case 3 : sCurrentFile = "dostext.txt" - sCurrentFilter = "Text (encoded)" - case 4 : sCurrentFile = "sw30.sdw" - sCurrentFilter = "StarWriter 3.0" - case 5 : sCurrentFile = "sw50.vor" - sCurrentFilter = "StarWriter 5.0 Vorlage/Template" - case 6 : sCurrentFile = "sw31.sdw" - sCurrentFilter = "StarWriter 3.0" - case 7 : sCurrentFile = "sw31.vor" - sCurrentFilter = "StarWriter 3.0 Vorlage/Template" - case 8 : sCurrentFile = "sw40.sdw" - sCurrentFilter = "StarWriter 4.0" - case 9 : sCurrentFile = "sw40_sp2.vor" - sCurrentFilter = "StarWriter 4.0 Vorlage/Template" - case 10 : sCurrentFile = "sw50.sdw" - sCurrentFilter = "StarWriter 5.0" - case 11 : sCurrentFile = "html.html" - sCurrentFilter = "HTML (StarWriter)" - case 12 : sCurrentFile = "rtf.rtf" - sCurrentFilter = "Rich Text Format" - case 13 : sCurrentFile = "sw60.sxw" - sCurrentFilter = "StarOffice XML (Writer)" - case 14 : sCurrentFile = "winw97.doc" - sCurrentFilter = "MS Word 97" - case 15 : sCurrentFile = "winword6.doc" - sCurrentFilter = "MS Word 95" - case 16 : sCurrentFile = "wintext.txt" - sCurrentFilter = "Text (encoded)" -' case 17 : sCurrentFile = "pocketword.psw" -' sCurrentFilter = "PocketWord File" -' TODO: 18-23 not applyable. Can be opened, but saving in the format is not supported. -' case 18 : sCurrentFile = "unixtext.txt" -' sCurrentFilter = "Text" -' case 19 : sCurrentFile = "sw2.sdw" -' sCurrentFilter = "StarWriter 2.0" -' case 20 : sCurrentFile = "amipro3.sam" -' sCurrentFilter = "Ami Pro 1.x-3.1 (W4W)" -' case 21 : sCurrentFile = "mactext.txt" -' sCurrentFilter = "Mac Write 4.x 5.0 (W4W)" -' case 22 : sCurrentFile = "sw1.sdw" -' sCurrentFilter = "StarWriter 1.0" -' case 23 : sCurrentFile = "swdoc.txt" -' sCurrentFilter = "Text (encoded) (StarWriter/GlobalDocument)" -' case 24 : sCurrentFile = "hangul.hwp" -' sCurrentFilter = "writer_MIZI_Hwp_97" + case 1 : sCurrentFile = "xml2.odt" + sCurrentFilter = "writer8" + case 2 : sCurrentFile = "wpsfile.wps" + sCurrentFilter = "Text (encoded)" + case 3 : sCurrentFile = "dostext.txt" + sCurrentFilter = "Text (encoded)" + case 4 : sCurrentFile = "sw30.sdw" + sCurrentFilter = "StarWriter 3.0" + case 5 : sCurrentFile = "sw50.vor" + sCurrentFilter = "StarWriter 5.0 Vorlage/Template" + case 6 : sCurrentFile = "sw31.sdw" + sCurrentFilter = "StarWriter 3.0" + case 7 : sCurrentFile = "sw31.vor" + sCurrentFilter = "StarWriter 3.0 Vorlage/Template" + case 8 : sCurrentFile = "sw40.sdw" + sCurrentFilter = "StarWriter 4.0" + case 9 : sCurrentFile = "sw40_sp2.vor" + sCurrentFilter = "StarWriter 4.0 Vorlage/Template" + case 10 : sCurrentFile = "sw50.sdw" + sCurrentFilter = "StarWriter 5.0" + case 11 : sCurrentFile = "html.html" + sCurrentFilter = "HTML (StarWriter)" + case 12 : sCurrentFile = "rtf.rtf" + sCurrentFilter = "Rich Text Format" + case 13 : sCurrentFile = "sw60.sxw" + sCurrentFilter = "StarOffice XML (Writer)" + case 14 : sCurrentFile = "winw97.doc" + sCurrentFilter = "MS Word 97" + case 15 : sCurrentFile = "winword6.doc" + sCurrentFilter = "MS Word 95" + case 16 : sCurrentFile = "wintext.txt" + sCurrentFilter = "Text (encoded)" + ' case 17 : sCurrentFile = "pocketword.psw" + ' sCurrentFilter = "PocketWord File" + ' TODO: 18-23 not applyable. Can be opened, but saving in the format is not supported. + ' case 18 : sCurrentFile = "unixtext.txt" + ' sCurrentFilter = "Text" + ' case 19 : sCurrentFile = "sw2.sdw" + ' sCurrentFilter = "StarWriter 2.0" + ' case 20 : sCurrentFile = "amipro3.sam" + ' sCurrentFilter = "Ami Pro 1.x-3.1 (W4W)" + ' case 21 : sCurrentFile = "mactext.txt" + ' sCurrentFilter = "Mac Write 4.x 5.0 (W4W)" + ' case 22 : sCurrentFile = "sw1.sdw" + ' sCurrentFilter = "StarWriter 1.0" + ' case 23 : sCurrentFile = "swdoc.txt" + ' sCurrentFilter = "Text (encoded) (StarWriter/GlobalDocument)" + ' case 24 : sCurrentFile = "hangul.hwp" + ' sCurrentFilter = "writer_MIZI_Hwp_97" end select sLoadFile = sImportDir & sCurrentFile - sSaveFile = sWorkDirectory & "filenr_" & iCurrentFileIndex & "." & GetExtention ( sCurrentFile ) + sSaveFile = sWorkDirectory & "filenr_" & iCurrentFileIndex & "." & GetExtention ( sCurrentFile ) printlog "- Export of File nr " + iCurrentFileIndex + " started" printlog " - Save file: " & sLoadFile printlog " - to file: " & sSaveFile - ' Load In-file - Call hFileOpenWithFilter(sLoadFile, sCurrentFilter, false) - - kontext "active" - if active.exists(2) then - active.ok - warnlog "Error with file " + sLoadFile + " as " + sSaveFile + "." - end if - - Kontext "TextImport" - if TextImport.Exists then - TextImport.Ok - end if - - Kontext "Filterauswahl" - if Filterauswahl.Exists then - Filterauswahl.Cancel - end if - - Kontext "AsciiFilterOptionen" - if AsciiFilterOptionen.Exists then AsciiFilterOptionen.Ok - Kontext "SecurityWarning" - if SecurityWarning.Exists(3) then SecurityWarning.Ok - Kontext "DocumentWriter" - if DocumentWriter.Exists(3) then - Do until DocumentWriter.StatusIsProgress = false - wait 500 - Loop - else - Kontext "DocumentCalc" - if DocumentCalc.Exists(3) then - Do until DocumentCalc.StatusIsProgress = false - wait 500 - Loop - else - Warnlog "Neither DocumentWriter or DocumentCalc existed? Some other dialogue in focus?" - end if - end if + ' Load In-file + Call hFileOpenWithFilter(sLoadFile, sCurrentFilter, false) - ' Check for macro alert - Kontext "SecurityWarning" - if SecurityWarning.Exists then - if inStr(currentfile,"sw40") = false then - QAErrorlog "Macro-Security Warning is up though document should have no macro! Macro disabled" - end if - SecurityWarning.Cancel - end if - Sleep 1 - - Kontext "AlienWarning" - if AlienWarning.Exists then AlienWarning.Ok - - ' Save Out-file - Call hFileSaveAsWithFilterKill(sSaveFile, sCurrentFilter) - - kontext "active" - if active.exists(2) then - active.ok - warnlog "Error saving file " + sLoadFile + " as " + sSaveFile + "." - goto Cleanup - end if - - ' Load Out-file again - Call hFileOpenWithFilter(sSaveFile, sCurrentFilter, false) - - ' Check for macro alert - Kontext "SecurityWarning" - if SecurityWarning.Exists then - if inStr(currentfile,"sw40") > 0 then - QAErrorlog "Macro-Security Warning is up though document should have no macro! Macro disabled" - end if - SecurityWarning.Cancel - end if - Sleep 1 + kontext "active" + if active.exists(2) then + active.ok + warnlog "Error with file " + sLoadFile + " as " + sSaveFile + "." + end if + + Kontext "TextImport" + if TextImport.Exists then + TextImport.Ok + end if + + Kontext "Filterauswahl" + if Filterauswahl.Exists then + Filterauswahl.Cancel + end if + + Kontext "AsciiFilterOptionen" + if AsciiFilterOptionen.Exists then AsciiFilterOptionen.Ok + Kontext "SecurityWarning" + if SecurityWarning.Exists(3) then SecurityWarning.Ok + Kontext "DocumentWriter" + if DocumentWriter.Exists(3) then + Do until DocumentWriter.StatusIsProgress = false + wait 500 + Loop + else + Kontext "DocumentCalc" + if DocumentCalc.Exists(3) then + Do until DocumentCalc.StatusIsProgress = false + wait 500 + Loop + else + Warnlog "Neither DocumentWriter or DocumentCalc existed? Some other dialogue in focus?" + end if + end if + + ' Check for macro alert + Kontext "SecurityWarning" + if SecurityWarning.Exists then + if inStr(currentfile,"sw40") = false then + QAErrorlog "Macro-Security Warning is up though document should have no macro! Macro disabled" + end if + SecurityWarning.Cancel + end if + Sleep 1 + + Kontext "AlienWarning" + if AlienWarning.Exists then AlienWarning.Ok + + ' Save Out-file + Call hFileSaveAsWithFilterKill(sSaveFile, sCurrentFilter) + + kontext "active" + if active.exists(2) then + active.ok + warnlog "Error saving file " + sLoadFile + " as " + sSaveFile + "." + goto Cleanup + end if + + ' Load Out-file again + Call hFileOpenWithFilter(sSaveFile, sCurrentFilter, false) + + ' Check for macro alert + Kontext "SecurityWarning" + if SecurityWarning.Exists then + if inStr(currentfile,"sw40") > 0 then + QAErrorlog "Macro-Security Warning is up though document should have no macro! Macro disabled" + end if + SecurityWarning.Cancel + end if + Sleep 1 Cleanup: kontext "active" - if active.exists(2) then + if active.exists(2) then active.ok Select Case iCurrentFileIndex - case 7: QAErrorlog "#i106758#Saving StarWriter 3 template corrupts file" - case else - warnlog "Error with file " + sLoadFile + " as " + sSaveFile + "." + case 7: QAErrorlog "#i106758#Saving StarWriter 3 template corrupts file" + case else + warnlog "Error with file " + sLoadFile + " as " + sSaveFile + "." end select end if printlog " Close all open files." - Do Until GetDocumentCount = 0 - Call hCloseDocument - Loop + hFileCloseAll() printlog " - File nr " + iCurrentFileIndex + " completed." Next iCurrentFileIndex @@ -380,10 +375,10 @@ endcase testcase tExportTop5FormatsIntoTop5 - if iSprache <> 1 then - QAErrorlog "#100970#test only support english language" - goto endsub - end if + if iSprache <> 1 then + QAErrorlog "#100970#test only support english language" + goto endsub + end if Dim ExportFileList(300) as String Dim sWorkDirectory as String @@ -415,76 +410,66 @@ testcase tExportTop5FormatsIntoTop5 '// Start of the LOAD-Loop For iCurrentLoadFileIndex = 1 to 4 Select case iCurrentLoadFileIndex - case 1 : sCurrentLoadFile = sImportDir & "xml2.odt" - sCurrentLoadFilter = "writer8" - case 2 : sCurrentLoadFile = sImportDir & "sw60.sxw" - sCurrentLoadFilter = "StarOffice XML (Writer)" - case 3 : sCurrentLoadFile = sImportDir & "winw97.doc" - sCurrentLoadFilter = "MS Word 97" - case 4 : sCurrentLoadFile = sImportDir & "rtf.rtf" - sCurrentLoadFilter = "Rich Text Format" - case 5 : sCurrentLoadFile = sImportDir & "html.html" - sCurrentLoadFilter = "HTML (StarWriter)" + case 1 : sCurrentLoadFile = sImportDir & "xml2.odt" + sCurrentLoadFilter = "writer8" + case 2 : sCurrentLoadFile = sImportDir & "sw60.sxw" + sCurrentLoadFilter = "StarOffice XML (Writer)" + case 3 : sCurrentLoadFile = sImportDir & "winw97.doc" + sCurrentLoadFilter = "MS Word 97" + case 4 : sCurrentLoadFile = sImportDir & "rtf.rtf" + sCurrentLoadFilter = "Rich Text Format" + case 5 : sCurrentLoadFile = sImportDir & "html.html" + sCurrentLoadFilter = "HTML (StarWriter)" End select printlog "- Export of File nr " + iCurrentLoadFileIndex + " started." printlog " - Save file: " & sCurrentLoadFile - + '/// Here comes the SAVE-Loop For iCurrentSaveFileIndex = 1 to 5 if hFileOpenWithFilter((sCurrentLoadFile), sCurrentLoadFilter) = true then - Select case iCurrentSaveFileIndex - case 1 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s1.odt" - sCurrentSaveFilter = "writer8" - case 2 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s2.sxw" - sCurrentSaveFilter = "StarOffice XML (Writer)" - case 3 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s3.doc" - sCurrentSaveFilter = "MS Word 97" - case 4 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s4.rtf" - sCurrentSaveFilter = "Rich Text Format" - case 5 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s5.html" - sCurrentSaveFilter = "HTML (StarWriter)" - End select - - printlog " - " & iCurrentSaveFileIndex & ". to file: " & sCurrentSaveFile - if hFileSaveAsWithFilterKill(sCurrentSaveFile, sCurrentSaveFilter) = true then - printlog " - close all open documents" - Do Until GetDocumentCount = 0 - Call hCloseDocument - Loop - printlog " - check if file exists" - if FileExists (sCurrentSaveFile) then - printlog " - success" - printlog " - reload previously saved file" - if hFileOpenWithFilter(sCurrentSaveFile, sCurrentSaveFilter) = true then - printlog " - success" - else - Warnlog "error loading file: " & sCurrentSaveFile - end if - Do Until GetDocumentCount = 0 - Call hCloseDocument - Loop - else - Warnlog "Saved file doesn't exist" - 'Close the opened file - Do Until GetDocumentCount = 0 - Call hCloseDocument - Loop - end if - else - Warnlog "Error saving file: " & sCurrentLoadFile - 'Close the opened file - Do Until GetDocumentCount = 0 - Call hCloseDocument - Loop - end if - else - Warnlog "Error loading file: " & sCurrentLoadFile - 'Close the opened file - Do Until GetDocumentCount = 0 - Call hCloseDocument - Loop - end if + Select case iCurrentSaveFileIndex + case 1 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s1.odt" + sCurrentSaveFilter = "writer8" + case 2 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s2.sxw" + sCurrentSaveFilter = "StarOffice XML (Writer)" + case 3 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s3.doc" + sCurrentSaveFilter = "MS Word 97" + case 4 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s4.rtf" + sCurrentSaveFilter = "Rich Text Format" + case 5 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s5.html" + sCurrentSaveFilter = "HTML (StarWriter)" + End select + + printlog " - " & iCurrentSaveFileIndex & ". to file: " & sCurrentSaveFile + if hFileSaveAsWithFilterKill(sCurrentSaveFile, sCurrentSaveFilter) = true then + printlog " - close all open documents" + hFileCloseAll() + printlog " - check if file exists" + if FileExists (sCurrentSaveFile) then + printlog " - success" + printlog " - reload previously saved file" + if hFileOpenWithFilter(sCurrentSaveFile, sCurrentSaveFilter) = true then + printlog " - success" + else + Warnlog "error loading file: " & sCurrentSaveFile + end if + hFileCloseAll() + else + Warnlog "Saved file doesn't exist" + 'Close the opened file + hFileCloseAll() + end if + else + Warnlog "Error saving file: " & sCurrentLoadFile + 'Close the opened file + hFileCloseAll() + end if + else + Warnlog "Error loading file: " & sCurrentLoadFile + 'Close the opened file + hFileCloseAll() + end if Next iCurrentSaveFileIndex printlog "- Export of File nr " + iCurrentLoadFileIndex + " completed." diff --git a/testautomation/writer/optional/includes/navigator/w_navigator.inc b/testautomation/writer/optional/includes/navigator/w_navigator.inc index ec3b6cfd4627..e164bce470be 100755..100644 --- a/testautomation/writer/optional/includes/navigator/w_navigator.inc +++ b/testautomation/writer/optional/includes/navigator/w_navigator.inc @@ -216,8 +216,8 @@ testcase tViewNavigator3 '/// Edit / Navigator : check some Navigator-Functions /// printlog "- Edit / Navigator : check some Navigator-Functions" '/// Open document ( navigator.odt ) /// - Call hFileOpen ( gTesttoolpath + "writer\optional\input\navigator\navigator.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\navigator\navigator.odt" ) + '/// Open Navigator /// Kontext "Navigator" if Navigator.NotExists then ViewNavigator @@ -363,8 +363,8 @@ testcase tViewNavigator4 endif printlog "- Edit / Navigator : check entry's in Navigator Index" '/// File / Open / 'gTesttoolpath + "writer\optional\input\navigator\navigator.odt"' /// - Call hFileOpen ( gTesttoolpath + "writer\optional\input\navigator\navigator.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\navigator\navigator.odt" ) + '/// Open Navigator through Edit / Navigator /// ViewNavigator Kontext "NavigatorWriter" @@ -432,8 +432,8 @@ testcase tViewNavigator5 printlog "- Edit / Navigator : Check Jumpmark from Index in Navigator" '/// File / Open / 'gTesttoolpath + "writer\optional\input\navigator\navigator.odt"' /// - Call hFileOpen ( gTesttoolpath + "writer\optional\input\navigator\navigator.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\navigator\navigator.odt" ) + '/// Open Navigator /// Kontext "NavigatorWriter" if Not NavigatorWriter.Exists then @@ -617,8 +617,8 @@ testcase tViewNavigator6 printlog "- Edit / Navigator : Rename Objects" '/// File / Open / 'gTesttoolpath + "writer\optional\input\navigator\st1_1.sxw" ' /// - Call hFileOpen ( gTesttoolpath + "writer\optional\input\navigator\st1_1.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\navigator\st1_1.sxw" ) + Kontext "Navigator" '/// Open Navigator /// if Navigator.NotExists then ViewNavigator @@ -674,7 +674,7 @@ testcase tViewNavigator6 Sleep 2 printlog "- Saving and Loading the document, check settings" - Call hFileOpen(gOfficePath + "user\work\uvobj.odt") + hFileOpen( gOfficePath & "user\work\uvobj.odt") '/// Navigator has to be opened with document /// Kontext "Navigator" if Navigator.NotExists then diff --git a/testautomation/writer/optional/includes/number/w_205_.inc b/testautomation/writer/optional/includes/number/w_205_.inc index 57a56ab80b8c..ade7afe66ad2 100755..100644 --- a/testautomation/writer/optional/includes/number/w_205_.inc +++ b/testautomation/writer/optional/includes/number/w_205_.inc @@ -183,7 +183,7 @@ testcase tFormatNumberingBullets Sleep 2 Call hCloseDocument Sleep 2 - Call hFileOpen ( gOfficePath + "user\work\format4." & WriterFilterExtension(0) ) + hFileOpen( gOfficePath & "user\work\format4." & WriterFilterExtension(0) ) Sleep 2 '/// Close document /// Call hCloseDocument @@ -315,7 +315,7 @@ testcase tFormatNumberingPosition Sleep 2 Call hCloseDocument Sleep 2 - Call hFileOpen ( gOfficePath + "user\work\tFormatNumberingPosition." & WriterFilterExtension(0) ) + hFileOpen( gOfficePath & "user\work\tFormatNumberingPosition." & WriterFilterExtension(0) ) '/// check settings on Format / NumberingBullets /// FormatNumberingBullets @@ -499,7 +499,7 @@ testcase tFormatNumberingOptions Sleep 2 Call hCloseDocument Sleep 2 - Call hFileOpen ( gOfficePath + "user\work\format6." & WriterFilterExtension(0) ) + hFileOpen( gOfficePath & "user\work\format6." & WriterFilterExtension(0) ) For i = 1 to 15 call wTypeKeys "<Up>" Wait 500 @@ -713,7 +713,7 @@ testcase tFormatNumberingAll Sleep 2 Call hCloseDocument Sleep 2 - Call hFileOpen ( gOfficePath + "user\work\format7." & WriterFilterExtension(0) ) + hFileOpen( gOfficePath & "user\work\format7." & WriterFilterExtension(0) ) Sleep 2 FormatNumberingBullets '/// reopen Format / NumberingBullets and check saved settings /// diff --git a/testautomation/writer/optional/includes/number/w_205a_.inc b/testautomation/writer/optional/includes/number/w_205a_.inc index 0e157368d433..385d2a5501f4 100755..100644 --- a/testautomation/writer/optional/includes/number/w_205a_.inc +++ b/testautomation/writer/optional/includes/number/w_205a_.inc @@ -47,8 +47,8 @@ testcase tToolsOutlineNumbering1 Dim i as integer PrintLog "- Tools / Outline Numbering: Part 1 - Numbering" - Call hFileOpen ( gTesttoolPath + "writer\optional\input\number\numbering1.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\number\numbering1.sxw" ) + ToolsOutlineNumbering Kontext @@ -240,10 +240,10 @@ testcase tToolsOutlineNumbering1 Select Case i Case 1 printlog "- Load sxw and check formattings" - Call hFileOpen ( gOfficePath + "user\work\tToolsOutlineNumbering1.sxw" ) + hFileOpen( gOfficePath & "user\work\tToolsOutlineNumbering1.sxw" ) Case 2 printlog "- Load odt and check formattings" - Call hFileOpen ( gOfficePath + "user\work\tToolsOutlineNumbering1.odt" ) + hFileOpen( gOfficePath & "user\work\tToolsOutlineNumbering1.odt" ) end select call wTypeKeys "<PageUp>", 8 call wTypeKeys "<Up>", 10 @@ -343,8 +343,8 @@ testcase tToolsOutlineNumbering2 PrintLog "- Tools / Outline Numbering: Part 2 - Tabpage Position" - Call hFileOpen ( gTesttoolPath + "writer\optional\input\number\numbering1.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\number\numbering1.sxw" ) + ToolsOutlineNumbering Kontext @@ -463,7 +463,7 @@ testcase tToolsOutlineNumbering2 printlog " - check saved Numbering" Call hFileSaveAsWithFilterKill ( gOfficePath + "user\work\tToolsOutlineNumbering2.odt", "writer8" ) Call hCloseDocument - Call hFileOpen ( gOfficePath + "user\work\tToolsOutlineNumbering2.odt" ) + hFileOpen( gOfficePath & "user\work\tToolsOutlineNumbering2.odt" ) ToolsOutlineNumbering Kontext @@ -638,7 +638,7 @@ testcase tToolsOutlineNumbering3 printlog " - check saved Numbering" Call hFileSaveAsWithFilterKill ( gOfficePath + "user\work\tToolsOutlineNumbering3.odt", "writer8" ) Call hCloseDocument - Call hFileOpen ( gOfficePath + "user\work\tToolsOutlineNumbering3.odt" ) + hFileOpen( gOfficePath & "user\work\tToolsOutlineNumbering3.odt" ) ToolsOutlineNumbering Kontext Active.SetPage TabKapitelnumerierung @@ -840,7 +840,7 @@ testcase tToolsFootnoteEndnote printlog " - Save and reload" Call hFileSaveAsWithFilterKill ( gOfficePath + "user\work\tToolsFootnoteEndnote.odt", "writer8" ) Call hCloseDocument - Call hFileOpen ( gOfficePath + "user\work\tToolsFootnoteEndnote.odt" ) + hFileOpen( gOfficePath & "user\work\tToolsFootnoteEndnote.odt" ) printlog " - check saved properties" ToolsFootnote Kontext diff --git a/testautomation/writer/optional/includes/number/w_206_.inc b/testautomation/writer/optional/includes/number/w_206_.inc index ae7698017216..92958c2d9b18 100755..100644 --- a/testautomation/writer/optional/includes/number/w_206_.inc +++ b/testautomation/writer/optional/includes/number/w_206_.inc @@ -340,7 +340,7 @@ testcase tToolsNumbering6 Call hFileSaveAsKill ( gOfficepath & "user\work\tToolsNumbering6.odt" ) '/// Close and reload document Call hCloseDocument - Call hFileOpen ( gOfficepath & "user\work\tToolsNumbering6.odt" ) + hFileOpen( gOfficepath & "user\work\tToolsNumbering6.odt" ) end if call wTypeKeys ( "<MOD1 A>" ) EditCopy @@ -448,7 +448,7 @@ testcase tToolsNumbering7 Call hFileSaveAsKill ( gOfficepath & "user\work\tToolsNumbering7.odt" ) '/// Close and reload document Call hCloseDocument - Call hFileOpen ( gOfficepath & "user\work\tToolsNumbering7.odt" ) + hFileOpen( gOfficepath & "user\work\tToolsNumbering7.odt" ) end if call wTypeKeys ( "<MOD1 A>" ) diff --git a/testautomation/writer/optional/includes/number/w_207_.inc b/testautomation/writer/optional/includes/number/w_207_.inc index 634e7c5773a7..4bc525553f56 100755..100644 --- a/testautomation/writer/optional/includes/number/w_207_.inc +++ b/testautomation/writer/optional/includes/number/w_207_.inc @@ -74,10 +74,10 @@ testcase tToolsNumbering12 end select printlog( "Open file: " & DocFileList( iCurrentDocument ) ) - Call hFileOpen ( DocFileList( iCurrentDocument ) ) + hFileOpenLocally( DocFileList( iCurrentDocument ) ) printlog( "Make a copy if the file is write protected" ) - Call sMakeReadOnlyDocumentEditable + printlog( "Test for unexpected dialog: Filter Selection" ) Kontext "Filterauswahl" @@ -111,7 +111,7 @@ testcase tToolsNumbering12 Call hCloseDocument printlog " - load previous saved document" - Call hFileOpen ( ExportFileName ) + hFileOpen( ExportFileName ) printlog " - close document" hFileCloseAll() @@ -132,8 +132,8 @@ testcase tToolsNumbering13 '/// This testcase loads a Worddocument that lost all formattings printlog "#i73790 regression testing" '/// Load document 'writer\\optional\\input\\number\\regression\\73790.doc' - Call hFileOpen ( gTesttoolPath + "writer\optional\input\number\regression\73790.doc" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\number\regression\73790.doc" ) + '/// Document has Heading1-Heading3 formatted, be sure it is call wTypeKeys ("<Mod1 Home>") '/// Point cursor to top of document with <STRG HOME> diff --git a/testautomation/writer/optional/includes/option/wh_o_1.inc b/testautomation/writer/optional/includes/option/wh_o_1.inc index cbc35f599a4b..4eb667c7dc19 100755..100644 --- a/testautomation/writer/optional/includes/option/wh_o_1.inc +++ b/testautomation/writer/optional/includes/option/wh_o_1.inc @@ -148,8 +148,8 @@ testcase tToolsOptionsHTMLLayout Dim iMasseinheit(3) as integer Dim iTemp(3) as integer '///Open "writer\\optional\\input\\options\\options1.sxw /// - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) + printlog "'///- Tools/Options/Writer: View ///" ToolsOptions @@ -397,8 +397,8 @@ testcase tToolsOptionsHTMLGrid Dim sTempMetricField(4) as string '/// uses: "writer\\optional\\input\\options\\options1.sxw" /// - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) + printlog "'///- Tools/Options/HTML: Grid ///" printlog ("'/// - save states ///") @@ -552,8 +552,8 @@ testcase tToolsOptionsHTMLGrid '/// ( gTesttoolPath + "writer\optional\input\options\gridtst.sxw" ) ///' '/// NOT Possible Without <ALT> + <cursor> stuff :-((((( BugID: 84741 ///' '/// uses"writer\optional\input\options\htmltag.html" /// - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\htmltag.html" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\htmltag.html" ) + '/// check if writeable!///' try diff --git a/testautomation/writer/optional/includes/option/wh_o_2.inc b/testautomation/writer/optional/includes/option/wh_o_2.inc index bdee49ed7460..ff58ce4e4f09 100755..100644 --- a/testautomation/writer/optional/includes/option/wh_o_2.inc +++ b/testautomation/writer/optional/includes/option/wh_o_2.inc @@ -48,8 +48,8 @@ testcase tToolsOptionsHTMLPrint dim bRadioBut(4) as boolean ' RadioButtons dim bTempRadioBut(4) as boolean - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\test.html" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\test.html" ) + printlog "- Tools/Options/HTML: PrintHTML " printlog (" - save states ") @@ -83,7 +83,13 @@ testcase tToolsOptionsHTMLPrint if bCheckboxStatus(6) Then AusDruckereinstellung.UnCheck Else AusDruckereinstellung.Check - if (Keine.IsChecked = True) Then NurNotizen.Check Else Keine.Check + if ( Keine.IsEnabled) then + if (Keine.IsChecked = True) Then + NurNotizen.Check + Else + Keine.Check + end if + end if bTempRadioBut(1) = Keine.IsChecked bTempRadioBut(2) = NurNotizen.IsChecked @@ -163,7 +169,7 @@ testcase tToolsOptionsHTMLPrint ' Is saved with document Kontext "ExtrasOptionenDlg" ExtrasOptionenDlg.OK - Call hFileOpen(gOfficepath + "user\work\printtest.html") + hFileOpen( gOfficePath & "user\work\printtest.html") ToolsOptions Call hToolsOptions ( "HTML" , "PRINT" ) @@ -185,7 +191,13 @@ testcase tToolsOptionsHTMLPrint AusDruckereinstellung.Check - if (Dokumentende.IsChecked = True) Then Seitenende.Check Else Dokumentende.Check + if ( Dokumentende.IsEnabled ) then + if (Dokumentende.IsChecked = True) Then + Seitenende.Check + Else + Dokumentende.Check + end if + end if bTempRadioBut(1) = Keine.IsChecked bTempRadioBut(2) = NurNotizen.IsChecked diff --git a/testautomation/writer/optional/includes/option/wr_o_1.inc b/testautomation/writer/optional/includes/option/wr_o_1.inc index 26edd589af84..6ca437431ec4 100755..100644 --- a/testautomation/writer/optional/includes/option/wr_o_1.inc +++ b/testautomation/writer/optional/includes/option/wr_o_1.inc @@ -426,8 +426,8 @@ testcase tToolsOptionsWriterView5 Call hNewDocument '/// open document: writer\\optional\\input\\options\\options1.sxw - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) + '///- Tools/Options/Writer: View printlog ("'/// - save states ///") @@ -481,8 +481,8 @@ testcase tToolsOptionsWriterView6 Call hNewDocument '/// open document: writer\\optional\\input\\options\\options1.sxw - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) + '///- Tools/Options/Writer: View printlog ("'/// - save states ///") @@ -542,8 +542,8 @@ testcase tToolsOptionsWriterView7 Call hNewDocument '/// open document: writer\\optional\\input\\options\\options1.sxw - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) + '///- Tools/Options/Writer: View printlog ("'/// - save states ///") @@ -867,8 +867,8 @@ testcase tToolsOptionsWriterGrid4 printlog ("'/// Function Test: Grid Resolution ///'") '/// ( gTesttoolPath + "writer\optional\input\options\gridtst.sxw" ) ///' - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\gridtst.sxw", False ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\gridtst.sxw", False ) + ' select grafik element Call wNavigatorAuswahl(4,1) diff --git a/testautomation/writer/optional/includes/option/wr_o_2.inc b/testautomation/writer/optional/includes/option/wr_o_2.inc index cdc8dc00de4c..4c5cdc95391f 100755..100644 --- a/testautomation/writer/optional/includes/option/wr_o_2.inc +++ b/testautomation/writer/optional/includes/option/wr_o_2.inc @@ -102,8 +102,8 @@ testcase tToolsOptionsWriterDefaultfont (WestOrEast as string) '/// use a document to check the font with styles///' '///+ use 'input\\writer\\optional\\options\\options2.sxw' /// - Call hFileOpen ( sFileName ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sFileName ) + printlog "- Tools/Options/Writer: DefaultFont" printlog ("/// - save states ///") @@ -239,8 +239,8 @@ testcase tToolsOptionsWriterDefaultfont (WestOrEast as string) Printlog "'/// - verify global settings don't affect saved Document ///" '///+ use input\\writer\\optional\\options\\options2.sxw /// - Call hFileOpen ( sFileName ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sFileName ) + Kontext "DocumentWriter" DocumentWriter.TypeKeys "<Up>", 5 Call wTypeKeys "<Home><Right>" @@ -463,8 +463,8 @@ testcase tToolsOptionsWriterPrint1 '(4) = Seitenende '/// uses "input\\writer\\optional\\options\\options3.sxw" /// - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\options3.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\options3.sxw" ) + printlog "'///- Tools/Options/Writer: PrintWriter ///" printlog ("'/// - save states ///") @@ -508,7 +508,13 @@ testcase tToolsOptionsWriterPrint1 if bCheckboxes(10) then LeereSeitenDrucken.UnCheck else LeereSeitenDrucken.Check if bCheckboxes(11) then AusDruckereinstellung.UnCheck else AusDruckereinstellung.Check - if (Keine.IsChecked = True) then NurNotizen.Check else Keine.Check + if Keine.IsEnabled then + if (Keine.IsChecked = True) then + NurNotizen.Check + else + Keine.Check + endif + endif bTempRadioBut(1) = Keine.IsChecked bTempRadioBut(2) = NurNotizen.IsChecked @@ -587,7 +593,7 @@ testcase tToolsOptionsWriterPrint1 ExtrasOptionenDlg.OK WaitSlot (2) ' Notify is saved with document - Call hFileOpen(gOfficepath + "user\work\printtest." & WriterFilterExtension(0) ) + hFileOpen( gOfficePath & "user\work\printtest." & WriterFilterExtension(0) ) ToolsOptions Call hToolsOptions ( "WRITER" , "PRINT" ) @@ -612,7 +618,13 @@ testcase tToolsOptionsWriterPrint1 LeereSeitenDrucken.UnCheck AusDruckereinstellung.UnCheck - if (NurNotizen.IsChecked = True) then Dokumentende.Check else NurNotizen.Check + if NurNotizen.IsEnabled then + if (NurNotizen.IsChecked = True) then + Dokumentende.Check + else + NurNotizen.Check + endif + endif bTempRadioBut(1) = Keine.IsChecked bTempRadioBut(2) = NurNotizen.IsChecked @@ -666,7 +678,13 @@ testcase tToolsOptionsWriterPrint1 LeereSeitenDrucken.Check AusDruckereinstellung.Check - if (Dokumentende.IsChecked = True) then Seitenende.Check else Dokumentende.Check + if Dokumentende.IsEnabled then + if (Dokumentende.IsChecked = True) then + Seitenende.Check + else + Dokumentende.Check + endif + endif bTempRadioBut(1) = Keine.IsChecked bTempRadioBut(2) = NurNotizen.IsChecked diff --git a/testautomation/writer/optional/includes/option/wr_o_3.inc b/testautomation/writer/optional/includes/option/wr_o_3.inc index 39fd97994e1a..0a047499d9f8 100755..100644 --- a/testautomation/writer/optional/includes/option/wr_o_3.inc +++ b/testautomation/writer/optional/includes/option/wr_o_3.inc @@ -938,7 +938,7 @@ testcase tToolsOptionsWriterCompatibility1 printlog "- load previously saved document" Call hNewDocument - Call hFileOpen (gOfficePath + "user\work\tToolsOptionsWriterCompatibility1.odt") + hFileOpen( gOfficePath & "user\work\tToolsOptionsWriterCompatibility1.odt") Printlog "check state of all checkboxes and uncheck all checkboxes" ToolsOptions @@ -1010,8 +1010,8 @@ testcase tToolsOptionsWriterCompatibility2 Call hNewDocument printlog "open document ./writer/leve11/input/options/compatibility1.doc" printlog "check formatting of current opened document" - Call hFileOpen ( gTesttoolpath & "writer\optional\input\options\compatibility1.doc" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath & "writer\optional\input\options\compatibility1.doc" ) + Call wTypeKeys ("<Mod1 Home>") Call wTypeKeys ("<Down>") @@ -1097,10 +1097,10 @@ endcase '------------------------------------------------------------------------------------------------------------ testcase tToolsOptionsWriterCompatibility3 -DIM iWords_to_right AS integer 'variable for counting word-steps -DIM iOptionsCount AS integer 'variable for counting options on cmopatibility page -DIM sDocument AS string 'variable for saving the doc -DIM sFoundWord AS string 'variable for word found one line below + DIM iWords_to_right AS integer 'variable for counting word-steps + DIM iOptionsCount AS integer 'variable for counting options on cmopatibility page + DIM sDocument AS string 'variable for saving the doc + DIM sFoundWord AS string 'variable for word found one line below printlog ">>> Configuration of behavior when a line break is inserted <<<" '/// New Writer Doc @@ -1253,7 +1253,7 @@ DIM sFoundWord AS string 'variable for word found one line below ExtrasOptionenDLG.Cancel printlog "Reload recently saved document" - Call hFileOpen (sDocument) + hFileOpen( sDocument) printlog "Tools-Options-OOo Writer-Compatibility" ToolsOptions diff --git a/testautomation/writer/optional/includes/option/wr_o_4.inc b/testautomation/writer/optional/includes/option/wr_o_4.inc index 83f09e5c7e89..d5516718ee66 100755..100644 --- a/testautomation/writer/optional/includes/option/wr_o_4.inc +++ b/testautomation/writer/optional/includes/option/wr_o_4.inc @@ -217,7 +217,7 @@ testcase tToolsOptionsWriterOther ' load file in this environment '///use "output\\writer\\w95\\tab25cm.odt" /// - Call hFileOpen (gOfficePath + "user\work\tab25cm.odt") + hFileOpen( gOfficePath & "user\work\tab25cm.odt") sleep (2) ' check TabStops, have to be the ones this file was saved with ToolsOptions @@ -858,9 +858,6 @@ endcase testcase tToolsOptionsWriterMailMerge - warnlog( "#i111914# - Test excluded, needs review" ) - goto endsub - Call hNewDocument printlog ("- Tools/Options/Writer: Mail Merge ") Kontext "Navigator" diff --git a/testautomation/writer/optional/includes/option/wr_o_a.inc b/testautomation/writer/optional/includes/option/wr_o_a.inc index ac6084157867..64f60fa7e0f9 100755..100644 --- a/testautomation/writer/optional/includes/option/wr_o_a.inc +++ b/testautomation/writer/optional/includes/option/wr_o_a.inc @@ -45,8 +45,8 @@ testcase tToolsOptionsWriterPrint Dim i as integer printlog "- Tools/Options/Writer: PrintWriter (real print)" - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\options3.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\options3.sxw" ) + Printlog " - check all (real print)" ToolsOptions diff --git a/testautomation/writer/optional/includes/redlining/w_redlining1.inc b/testautomation/writer/optional/includes/redlining/w_redlining1.inc index d6983e200a4c..b08faaf6d8d8 100755..100644 --- a/testautomation/writer/optional/includes/redlining/w_redlining1.inc +++ b/testautomation/writer/optional/includes/redlining/w_redlining1.inc @@ -1104,8 +1104,8 @@ testcase tRedlining_16 '/// + Redlining test => OK_2 <-- Numbering style : list 2 '/// + Redlining test => OK_3 <-- Numbering style : list 3 - Call hFileOpen ( gTesttoolPath + "writer\optional\input\redlining\tRedlining_15.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\redlining\tRedlining_15.sxw" ) + Call wTypeKeys "<Up>" , 3 diff --git a/testautomation/writer/optional/includes/regexp/regular.inc b/testautomation/writer/optional/includes/regexp/regular.inc index 3a323bce2a49..d53277085b13 100755..100644 --- a/testautomation/writer/optional/includes/regexp/regular.inc +++ b/testautomation/writer/optional/includes/regexp/regular.inc @@ -899,8 +899,8 @@ sub Ausgangszustand_herstellen '///+ Uncheck 'Search for Styles' /// '///+ Uncheck 'Similarity Search' /// '///+ Check 'Regular Expressions' /// - Call hFileOpen ( gtesttoolpath + "writer\optional\input\search\regu_aus.sxw") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath + "writer\optional\input\search\regu_aus.sxw") + kontext if FindAndReplace.Exists then FindAndReplace.Close kontext "DocumentWriter" diff --git a/testautomation/writer/optional/includes/regexp/search.inc b/testautomation/writer/optional/includes/regexp/search.inc index 8121859870ad..e5fe3b4f267f 100755..100644 --- a/testautomation/writer/optional/includes/regexp/search.inc +++ b/testautomation/writer/optional/includes/regexp/search.inc @@ -64,10 +64,8 @@ end sub '--------------------------------------------------------- testcase tCheckDialog - warnlog( "#i111908# - Control <Replace> cannot be accessed" ) - goto endsub - Dim Checkboxtitel + Dim Checkboxtitel Call hNewDocument EditSearchAndReplace Sleep 2 @@ -1524,11 +1522,11 @@ sub wSetFindAndReplaceToDefault(WhichDocument as integer) Case 0 Call hNewDocument ' empty Document Case 1 - Call hFileOpen ( gTesttoolPath +"writer\optional\input\search\such_u_e.sxw") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath +"writer\optional\input\search\such_u_e.sxw") + case 2 - Call hFileOpen ( gTesttoolPath +"writer\optional\input\search\attrib.sxw") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath +"writer\optional\input\search\attrib.sxw") + end select kontext "FindAndReplace" Sleep 2 diff --git a/testautomation/writer/optional/includes/regression/issuezilla/w_issuezilla_regression.inc b/testautomation/writer/optional/includes/regression/issuezilla/w_issuezilla_regression.inc index 5e13f9353891..dd3b304ad151 100755..100644 --- a/testautomation/writer/optional/includes/regression/issuezilla/w_issuezilla_regression.inc +++ b/testautomation/writer/optional/includes/regression/issuezilla/w_issuezilla_regression.inc @@ -153,8 +153,8 @@ testcase i65094 Call hNewDocument '/// Open file \\writer\\optional\\input\\regression\\issuezilla\\i65094a.odt printlog "- Open file: i65094a.odt" - Call hFileOpen ( gTesttoolPath + "writer\optional\input\regression\issuezilla\i65094a.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\regression\issuezilla\i65094a.odt" ) + '/// Compare document with other version \\writer\\optional\\input\\regression\\issuezilla\\i65094b.odt ' UseBindings printlog "- Compare document with other version" @@ -165,7 +165,7 @@ testcase i65094 ' Sleep 2 Oeffnen.Click Sleep 5 - Call sMakeReadOnlyDocumentEditable + printlog "- Accept all" '/// In Redlining dialog select 'Accept all' Kontext "Redlining" @@ -205,7 +205,7 @@ testcase i69045 Call hCloseDocument printlog "- Save, close and load document" '/// Open saved document - Call hFileOpen ( gOfficepath & "user\work\i69045.odt" ) + hFileOpen( gOfficepath & "user\work\i69045.odt" ) '/// Check try EditChangesAcceptOrReject @@ -236,8 +236,8 @@ testcase i69521 '/// New writer document Call hNewDocument '/// Load document: \\writer\\optional\\input\\regression\\issuezilla\\i69521.odt - Call hFileOpen (gTesttoolpath & "writer\optional\input\regression\issuezilla\i69521.odt") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath & "writer\optional\input\regression\issuezilla\i69521.odt") + '/// Loaded document should have 5 EPS Graphics iItems = CountItemsInNavigatorGroup(4) if iItems <> 5 then @@ -251,7 +251,7 @@ testcase i69521 '/// close document Call hCloseDocument '/// reload previous saved document - Call hFileOpen (gOfficePath & "user\work\i96521-1.odt") + hFileOpen( gOfficePath & "user\work\i96521-1.odt") '/// Check if all 5 Graphics are still in document iItems = CountItemsInNavigatorGroup(4) if iItems <> 5 then @@ -325,7 +325,7 @@ testcase i75027 Call hFileSaveAsKill (gOfficepath & "user\work\i75027.html") '/// Reload previous saved document Call hCloseDocument - Call hFileOpen (gOfficepath & "user\work\i75027.html") + hFileOpen( gOfficepath & "user\work\i75027.html") '/// Check that the numbering is still the same. printlog "- check numbering (previous saved)" Call wTypeKeys ( "<MOD1 A>" ) @@ -444,8 +444,8 @@ testcase i103265 printlog "ODF Hyperlinks in TOCs" Call hNewDocument printlog "- Open test document" - Call hFileOpen ( gTesttoolPath + "writer\optional\input\regression\issuezilla\i103265.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\regression\issuezilla\i103265.odt" ) + printlog "- Update TOC" ToolsUpdateAllIndexes @@ -482,7 +482,7 @@ testcase i103265 Call hCloseDocument printlog "- Reload" - Call hFileOpen ( gOfficePath + "user\work\ODFHyperlinksInTOCs.html" ) + hFileOpen( gOfficePath & "user\work\ODFHyperlinksInTOCs.html" ) printlog "Check that every hyperlink jumps correctly to its target" For i = 1 to 3 ' point cursor to beginning of document diff --git a/testautomation/writer/optional/includes/section/w_section_3.inc b/testautomation/writer/optional/includes/section/w_section_3.inc index 6dc00cd5c0f3..e23b4c8502d5 100755..100644 --- a/testautomation/writer/optional/includes/section/w_section_3.inc +++ b/testautomation/writer/optional/includes/section/w_section_3.inc @@ -1064,7 +1064,7 @@ testcase tPasswordProtectSection_2 Call hCloseDocument PrintLog " Reload the file" - Call hFileOpen (gOfficePath + "user\work\tPasswordProtectSection_2.odt") + hFileOpen( gOfficepath + "user\work\tPasswordProtectSection_2.odt") FormatSections Kontext "BereicheBearbeiten" @@ -1200,7 +1200,7 @@ testcase tPasswordProtectSection_4 Call hCloseDocument PrintLog " Reload the file" - Call hFileOpen (gOfficePath + "user\work\tPasswordProtectSection_4.odt") + hFileOpen( gOfficepath + "user\work\tPasswordProtectSection_4.odt") PrintLog " In format/section, PW-Dialogue should appear when clicking 'option' button" FormatSections diff --git a/testautomation/writer/optional/includes/section/w_section_4.inc b/testautomation/writer/optional/includes/section/w_section_4.inc index 2c811268f93b..632956e92d17 100755..100644 --- a/testautomation/writer/optional/includes/section/w_section_4.inc +++ b/testautomation/writer/optional/includes/section/w_section_4.inc @@ -856,8 +856,8 @@ testcase tParagraphSection_1 PrintLog " - Keep paragraphs together" '/// Open a file with 4 paragraphs, the 4th paragraph is crossing the page - Call hFileOpen(documentName) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( documentName) + EditSelectAll Call fInsertSection(sectionName) @@ -1198,8 +1198,8 @@ testcase tScenarioSection_1 next i '/// open testdocument (tScenarioSection_1.sxw) /// - Call hFileOpen ( gTesttoolpath + "writer\optional\input\section\tScenarioSection_1.sxw") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\section\tScenarioSection_1.sxw") + '/// Select 'File /Send -> Create Masterdocument /// FileSendCreateMasterdocument @@ -1318,8 +1318,8 @@ testcase tScenarioSection_2 next i '/// open testdocument (tScenarioSection_2.sxw) /// - Call hFileOpen ( gTesttoolpath + "writer\optional\input\section\tScenarioSection_2.sxw") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\section\tScenarioSection_2.sxw") + '/// Select 'File -> Send -> Create Masterdocument /// FileSendCreateMasterdocument diff --git a/testautomation/writer/optional/includes/shortcut/w_shortcuts.inc b/testautomation/writer/optional/includes/shortcut/w_shortcuts.inc index 0bd84118edc5..22d64c36ed43 100755..100644 --- a/testautomation/writer/optional/includes/shortcut/w_shortcuts.inc +++ b/testautomation/writer/optional/includes/shortcut/w_shortcuts.inc @@ -779,6 +779,7 @@ testcase tShortcutPasteUnformattedText Kontext Active.Setpage TabFont Kontext "TabFont" + wait 500 DefaultSize = Size.GetSelIndex Size.Select 14 ' Size 20 DefaultStyle = Style.GetSelIndex @@ -824,6 +825,7 @@ testcase tShortcutPasteUnformattedText Kontext Active.Setpage TabFont Kontext "TabFont" + wait 500 if Size.GetSelIndex <> 14 then Warnlog "formatted word has lost its size" endif @@ -842,6 +844,7 @@ testcase tShortcutPasteUnformattedText Kontext Active.Setpage TabFont Kontext "TabFont" + wait 500 if Size.GetSelIndex <> DefaultSize then Warnlog "formatted word has no default size" endif diff --git a/testautomation/writer/optional/includes/sorting/w_sorting1.inc b/testautomation/writer/optional/includes/sorting/w_sorting1.inc index d4cb27449cba..70fcbab3f26f 100755..100644 --- a/testautomation/writer/optional/includes/sorting/w_sorting1.inc +++ b/testautomation/writer/optional/includes/sorting/w_sorting1.inc @@ -28,15 +28,6 @@ '* '* short description : Sorting functions in Writer '* -'************************************************************************ -'* -' #1 tToolsSort1 ' Text in one Column and 1 Key -' #1 tToolsSort2 ' Numbers in 1 Column and 1 Key -' #1 tToolsSort3 ' Text in several Columns and 3 Keys -' #1 tToolsSort4 ' Table with Header ( Text and Numbers mixed ) -' #1 tToolsSort5 ' Table without Header ( Text and Numbers mixed ) -' #1 tToolsSort6 ' Copy sorted table in another table -'* '\*********************************************************************** sub w_sorting @@ -236,18 +227,16 @@ testcase tToolsSort3 PrintLog "- Tools / Sorting text in several lines" for i=1 to 3 select case i - case 1: Printlog " - Seperator is a tabulator" - case 2: Printlog " - Seperator is a semicolon" + case 1: Printlog " - Separator is a tabulator" + case 2: Printlog " - Separator is a semicolon" Trennzeichen = ";" - case 3: Printlog " - Seperator is a '|'" + case 3: Printlog " - Separator is a '|'" Trennzeichen = "|" end select if gApplication = "WRITER" then - Call hFileOpen ( gTesttoolPath + "writer\optional\input\sorting\sort2.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort2.odt" ) else - Call hFileOpen ( gTesttoolPath + "writer\optional\input\sorting\sort2.odm" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort2.odm" ) end if if i <> 1 then TrennzeichenSetzen ( Trennzeichen ) @@ -319,11 +308,9 @@ endcase testcase tToolsSort4 PrintLog "- Tools / Sorting in table with header" if gApplication = "WRITER" then - Call hFileOpen ( gTesttoolPath + "writer\optional\input\sorting\sort1.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort1.odt" ) else - Call hFileOpen ( gTesttoolPath + "writer\optional\input\sorting\sort1.odm" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort1.odm" ) end if Call wTypeKeys "<Mod1 a>", 2 @@ -444,11 +431,9 @@ endcase testcase tToolsSort5 PrintLog "- Tools / Sorting in table without header" if gApplication = "WRITER" then - Call hFileOpen ( gTesttoolPath + "writer\optional\input\sorting\sort1.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort1.odt" ) else - Call hFileOpen ( gTesttoolPath + "writer\optional\input\sorting\sort1.odm" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort1.odm" ) end if Call wNavigatorAuswahl (2, 2) @@ -574,11 +559,9 @@ testcase tToolsSort6 PrintLog "- Tools / Sort a sorted table and copy in another one" if gApplication = "WRITER" then - Call hFileOpen ( gTesttoolPath + "writer\optional\input\sorting\sort3.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort3.odt" ) else - Call hFileOpen ( gTesttoolPath + "writer\optional\input\sorting\sort3.odm" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort3.odm" ) end if Call wTypeKeys "<Mod1 a>", 2 diff --git a/testautomation/writer/optional/includes/sorting/w_sorting2.inc b/testautomation/writer/optional/includes/sorting/w_sorting2.inc index d5d3b49ea61f..c716b597126b 100755..100644 --- a/testautomation/writer/optional/includes/sorting/w_sorting2.inc +++ b/testautomation/writer/optional/includes/sorting/w_sorting2.inc @@ -93,8 +93,8 @@ testcase tSort_1 printlog " open a test file" - Call hFileOpen ( TestFile ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( TestFile ) + printlog " select all table" Call wTypeKeys "<Mod1 a>", 2 @@ -187,8 +187,8 @@ testcase tSort_2 end select printlog " open a test file" - Call hFileOpen ( TestFile ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( TestFile ) + printlog " select all table" Call wTypeKeys "<Mod1 a>", 2 diff --git a/testautomation/writer/optional/includes/spellcheck/w_spellcheck.inc b/testautomation/writer/optional/includes/spellcheck/w_spellcheck.inc index 886f7fa91967..a6dd6c18b997 100644 --- a/testautomation/writer/optional/includes/spellcheck/w_spellcheck.inc +++ b/testautomation/writer/optional/includes/spellcheck/w_spellcheck.inc @@ -58,8 +58,8 @@ testcase tToolsSpellcheckWithShortcut exit sub end if - call hFileOpen (TheFile,false) - Call sMakeReadOnlyDocumentEditable + call hFileOpenLocally (TheFile,false) + printlog " Insert some faulty text" select case iSprache @@ -149,8 +149,8 @@ testcase tToolsSpellcheckCorrect PrintLog "- Tools / Spellcheck without text" printlog " Open document where the formatting is set to the language we wish to test." - call hFileOpen (TheFile,false) - Call sMakeReadOnlyDocumentEditable + call hFileOpenLocally (TheFile,false) + printlog " Insert some faulty text" Sleep 1 @@ -284,8 +284,8 @@ testcase tToolsSpellcheck1Mistake end select printlog " Open document where the formatting is set to the language we wish to test." - call hFileOpen (TheFile,false) - Call sMakeReadOnlyDocumentEditable + call hFileOpenLocally (TheFile,false) + '/// Insert a sentence with one definded mistake and execute spellcheck /// Call wTypeKeys sErrorSampleText @@ -387,8 +387,8 @@ testcase tToolsSpellcheckForward if wInsertDocumentinMasterDoc(InsFile) = False then goto endsub EditPaste else - Call hFileOpen(InsFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( InsFile) + end if '/// point cursor to beginning of document and execute spellcheck /// Call wTypeKeys "<Mod1 Home>" @@ -561,8 +561,8 @@ testcase tToolsSpellcheckOnlyOneWord if wInsertDocumentinMasterDoc(InsFile) = False then goto endsub EditPaste else - Call hFileOpen(InsFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( InsFile) + end if Call wTypeKeys "<Mod1 Home>" @@ -741,8 +741,8 @@ testcase tToolsSpellcheckAutomatic PrintLog "- Tools / Spellcheck / AutoSpellcheck" printlog " Open document where the formatting is set to the language we wish to test." - call hFileOpen (TheFile,false) - Call sMakeReadOnlyDocumentEditable + call hFileOpenLocally (TheFile,false) + '/// Enable Auto-Spellcheck in options Call wEnableAutoSpellcheck ( true ) @@ -937,8 +937,8 @@ testcase tToolsSpellcheckChangeLanguageAttribute if wInsertDocumentinMasterDoc(InsFile) = False then goto endsub EditPaste else - Call hFileOpen(InsFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( InsFile) + end if Call wTypeKeys "<Mod1 Home>" @@ -1135,8 +1135,8 @@ testcase tToolsSpellcheckButtonChange if wInsertDocumentinMasterDoc(InsFile) = False then goto endsub EditPaste else - Call hFileOpen(InsFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( InsFile) + end if Call wTypeKeys "<Mod1 Home>" @@ -1202,8 +1202,8 @@ testcase tToolsSpellcheckButtonChangeAll if wInsertDocumentinMasterDoc(InsFile) = False then goto endsub EditPaste else - Call hFileOpen(InsFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( InsFile) + end if Call wTypeKeys "<Mod1 Home>" @@ -1288,8 +1288,8 @@ testcase tToolsThesaurus end select printlog "Open new preformatted-writerdocument" - call hFileOpen (TheFile,false) - Call sMakeReadOnlyDocumentEditable + call hFileOpenLocally (TheFile,false) + printlog "- Thesaurus without a word" '/// Call Thesaurus without a written word /// @@ -1322,8 +1322,8 @@ testcase tToolsThesaurus wait 500 printlog " Open new preformatted-document where the formatting is set to the language we wish to test." - call hFileOpen (TheFile,false) - Call sMakeReadOnlyDocumentEditable + call hFileOpenLocally (TheFile,false) + Call wTypeKeys sWordInitial Call wTypeKeys "<Home><Right><Right>" @@ -1444,8 +1444,8 @@ testcase tToolsThesaurusSynonyms end select printlog "Open new preformatted-writerdocument" - call hFileOpen (TheFile,false) - Call sMakeReadOnlyDocumentEditable + call hFileOpenLocally (TheFile,false) + Call wTypeKeys sWordInitial Call wTypeKeys "<Shift Home>" diff --git a/testautomation/writer/optional/includes/spellcheck/w_spellcheck1.inc b/testautomation/writer/optional/includes/spellcheck/w_spellcheck1.inc index 069b133700bd..d2df892a3bc5 100755..100644 --- a/testautomation/writer/optional/includes/spellcheck/w_spellcheck1.inc +++ b/testautomation/writer/optional/includes/spellcheck/w_spellcheck1.inc @@ -50,7 +50,7 @@ DIM WordLanguageTemp AS string 'variable for checking if Office language is a '///Load test document/// call hFileOpen (ConvertPath ( gTesttoolPath + "writer\optional\input\spellcheck\Language_Guessing_Sample_Texts.odt")) 'loading Test-Doc - Call sMakeReadOnlyDocumentEditable + sleep(5) '---------------------------------------------------------------- '///Enable auto spellcheck/// diff --git a/testautomation/writer/optional/includes/textframes/w_textframes1.inc b/testautomation/writer/optional/includes/textframes/w_textframes1.inc index 17eeff80ad95..ed3ee9b2dd5e 100755..100644 --- a/testautomation/writer/optional/includes/textframes/w_textframes1.inc +++ b/testautomation/writer/optional/includes/textframes/w_textframes1.inc @@ -408,8 +408,8 @@ testcase tTextframes_6 '/// + This test file is designed for Anchor To Page test. '/// + There are 2 pages in the file , and the frame is in '/// + the bottom of first page - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + Check1: EditSearchAndReplace @@ -506,8 +506,8 @@ testcase tTextframes_7 '/// + There are 2 paragraphs in the file , and the head of 2nd '/// + paragraph is in the bottom of the first page . '/// + The frame is in the first line of 2nd paragraph - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// check if the frame is in the first page Call wTypeKeys ( "<Shift F4>" ) @@ -586,8 +586,8 @@ testcase tTextframes_8 '/// + The frame is anchored to the character 't' of That . '/// + The frame is in the bottom of the first page - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// check if the frame is in the first page Call wTypeKeys ( "<Shift F4>" ) @@ -643,8 +643,8 @@ testcase tTextframes_8 Call hCloseDocument - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + Call wTypeKeys ( "<Shift F4>" ) Sleep 1 @@ -718,8 +718,8 @@ testcase tTextframes_9 '/// + This test file is designed for Anchor as Character test. '/// + The frame is anchored as the character. '/// + The frame is in the right and bottom of the first page - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'check if the frame is in the first page Call wTypeKeys ( "<Shift F4>" ) @@ -775,8 +775,8 @@ testcase tTextframes_9 Call hCloseDocument - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + Check2: Kontext @@ -852,8 +852,8 @@ testcase tTextframes_10 '/// Open a test file '/// + This test file is designed for Anchor in gathering pages&columns test. '/// + There are 2 columns in the page. And the frame is in the second column. - Call hFileOpen(sTestFile1,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile1,false) + 'Press return to ensure the frame is in 2nd column Call wTypeKeys "<MOD1 Home>" @@ -888,8 +888,8 @@ testcase tTextframes_10 '/// + This test file is designed for Anchor in seperating '/// + pages&columns test. '/// + There are 2 pages. And the frame is in the second page. - Call hFileOpen(sTestFile2,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile2,false) + 'check if the frame is in the 2nd page Call wTypeKeys ( "<Shift F4>" ) @@ -957,8 +957,8 @@ testcase tTextframes_11 '/// + There are 2 paragraph in the file . '/// + The 1st paragraph is in 1st page and the 2nd paragraph is in 2nd page '/// + Two paragraphs, a frame is anchored to the second one. When deleting the paragraph mark, the anchor of the frame has to move the the first paragraph. - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + Check1: 'First check diff --git a/testautomation/writer/optional/includes/textframes/w_textframes2.inc b/testautomation/writer/optional/includes/textframes/w_textframes2.inc index a316cd19b49c..4fca2bdbddb6 100755..100644 --- a/testautomation/writer/optional/includes/textframes/w_textframes2.inc +++ b/testautomation/writer/optional/includes/textframes/w_textframes2.inc @@ -212,8 +212,8 @@ testcase tTextframes_20 '/// + There are 1 page in the file. '/// + The frame is ocupied in the whole 1st page and wraped as Through '/// + Some text are behind the frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set focus to frame Call wTypeKeys ( "<Shift F4>" ) @@ -282,8 +282,8 @@ testcase tTextframes_21 '/// + The frame is ocupied in the whole 1st page and wraped as None '/// + Some text are in the 2nd page - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set focus to frame Call wTypeKeys ( "<Shift F4>" ) @@ -353,8 +353,8 @@ testcase tTextframes_22 '/// + there are some space in the left of the frame. '/// + Some text are in the 2nd page - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + printlog "- Test wrap - before" @@ -472,8 +472,8 @@ testcase tTextframes_23 '/// + there are some space in the right of the frame. '/// + Some text are in the 2nd page - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + printlog "- Test wrap - before" @@ -1075,7 +1075,7 @@ testcase tTextframes_31 Sleep 2 '/// Check if the frame is non-editable - Call hFileOpen(sTestFile,false) + hFileOpen( sTestFile ) Call wTypeKeys ( "<Shift F4>" ) @@ -1132,7 +1132,7 @@ testcase tTextframes_32 Sleep 2 '/// Check if the text can be inputed into frame - Call hFileOpen(sTestFile,false) + hFileOpen( sTestFile ) Call wTypeKeys "<SHIFT F4><RETURN>" Wait 500 diff --git a/testautomation/writer/optional/includes/textframes/w_textframes3.inc b/testautomation/writer/optional/includes/textframes/w_textframes3.inc index 28e6f9b7f404..d9db6fa32253 100755..100644 --- a/testautomation/writer/optional/includes/textframes/w_textframes3.inc +++ b/testautomation/writer/optional/includes/textframes/w_textframes3.inc @@ -273,8 +273,8 @@ testcase tTextframes_36 '/// + This test file is designed for testing link '/// + frames which are placed on different pages '/// + There are 2 pages in the file and 1 frame/page - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to first frame Call wTypeKeys ( "<Shift F4>" ) @@ -364,8 +364,8 @@ testcase tTextframes_37 '/// + frames which are placed on header '/// + There are 2 frames in the header - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set focus to first frame Call wTypeKeys ( "<Shift F4>" ) @@ -427,8 +427,8 @@ testcase tTextframes_38 '/// + This test file is designed for testing link '/// + frames which are placed on header '/// + There are 2 frames in the header - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set focus to first frame Call wTypeKeys ( "<Shift F4>" ) diff --git a/testautomation/writer/optional/includes/textframes/w_textframes4.inc b/testautomation/writer/optional/includes/textframes/w_textframes4.inc index 43af4c5bd532..6da21bcd513f 100755..100644 --- a/testautomation/writer/optional/includes/textframes/w_textframes4.inc +++ b/testautomation/writer/optional/includes/textframes/w_textframes4.inc @@ -95,8 +95,8 @@ testcase tTextframes_50 '/// Open a test file , which includes a frame and '/// + it is StarOffice 7 format - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set focus to frame Call wTypeKeys ( "<Shift F4>" ) @@ -132,8 +132,8 @@ testcase tTextframes_51 '/// Open a test file , which is a Word file and includes '/// + a frame that is in 'in front of text' mode - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set focus to frame Call wTypeKeys ( "<Shift F4>" ) @@ -169,8 +169,8 @@ testcase tTextframes_52 '/// Open a test file , which is a Word file and includes '/// + a frame that is in 'behind text' mode - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set focus to the frame Call wTypeKeys ( "<Shift F4>" ) @@ -206,8 +206,8 @@ testcase tTextframes_53 '/// Open a test file , which is a Word file and includes '/// + a frame that is in 'tight' mode - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set focus to the frame Call wTypeKeys ( "<Shift F4>" ) @@ -222,9 +222,7 @@ testcase tTextframes_53 TabType.Cancel printlog " Close active document " - Do Until GetDocumentCount = 0 - Call hCloseDocument - Loop + hFileCloseAll() endcase @@ -243,8 +241,8 @@ testcase tTextframes_54 '/// Open a test file , which is a Word file and includes '/// + a frame that is in 'square' mode - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set focus to the frame Call wTypeKeys ( "<Shift F4>" ) @@ -376,8 +374,8 @@ testcase tTextframes_57 '/// Open a test file , which includes a frame in header and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "<Shift F4>" ) @@ -455,8 +453,8 @@ testcase tTextframes_58 '/// Open a test file , which includes a frame in header and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "<Shift F4>" ) @@ -529,8 +527,8 @@ testcase tTextframes_59 '/// Open a test file , which includes a frame in table and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "<Shift F4>" ) @@ -615,8 +613,8 @@ testcase tTextframes_60 '/// Open a test file , which includes a frame in table and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the frame Call wTypeKeys ( "<Shift F4>" ) @@ -711,8 +709,8 @@ testcase tTextframes_61 '/// Open a test file , which includes a frame in footer and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "<Shift F4>" ) @@ -789,8 +787,8 @@ testcase tTextframes_62 '/// Open a test file , which includes a frame in footer and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "<Shift F4>" ) @@ -867,8 +865,8 @@ testcase tTextframes_63 '/// Open a test file , which includes a frame in table and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "<Shift F4>" ) @@ -957,8 +955,8 @@ testcase tTextframes_64 '/// Open a test file , which includes a frame in table and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "<Shift F4>" ) @@ -1048,8 +1046,8 @@ testcase tTextframes_65 '/// Open a test file , which includes 2 frames , '/// Frame A is anchored Frame B '/// + a picture which is anchored to Frame A - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "<Shift F4>" ) @@ -1127,8 +1125,8 @@ testcase tTextframes_66 '/// Open a test file , which includes 2 frames , '/// Frame A is anchored Frame B '/// + a picture which is anchored to Frame A - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "<Shift F4>" ) @@ -1205,8 +1203,8 @@ testcase tTextframes_67 '/// Open a test file , which includes a frame in table and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "<Shift F4>" ) @@ -1295,8 +1293,8 @@ testcase tTextframes_68 '/// Open a test file , which includes a frame in table and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "<Shift F4>" ) @@ -1386,8 +1384,8 @@ testcase tTextframes_69 '/// Open a test file , which includes 2 frames , '/// Frame A is anchored Frame B '/// + a picture which is anchored to Frame A - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "<Shift F4>" ) @@ -1465,8 +1463,8 @@ testcase tTextframes_70 '/// Open a test file , which includes 2 frames , '/// Frame A is anchored Frame B '/// + a picture which is anchored to Frame A - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "<Shift F4>" ) diff --git a/testautomation/writer/optional/includes/textframes/w_textframes5.inc b/testautomation/writer/optional/includes/textframes/w_textframes5.inc index f9a9944b4333..7bcba8594a9c 100755..100644 --- a/testautomation/writer/optional/includes/textframes/w_textframes5.inc +++ b/testautomation/writer/optional/includes/textframes/w_textframes5.inc @@ -115,8 +115,7 @@ testcase tTextframes_72 '/// Open a test file , which includes 2 frames , '/// Frame A is anchored Frame B - Call hFileOpen(( Convertpath (gTesttoolpath + "writer\optional\input\textframe\frameInFrame.sxw") ),false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\textframe\frameInFrame.sxw" ) 'Set focus to Frame B Call wTypeKeys ( "<Shift F4>" ) @@ -152,8 +151,7 @@ testcase tTextframes_73 Call hNewDocument '/// Open a test file , which includes 1 frame in the document body - Call hFileOpen((Convertpath (gTesttoolpath + "writer\optional\input\textframe\frame.sxw")),false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath & "writer\optional\input\textframe\frame.sxw" ) '/// Set focus to Frame Call wTypeKeys ( "<Shift F4>" ) @@ -188,8 +186,7 @@ testcase tTextframes_74 Call hNewDocument '/// Open a test file , which includes 1 frame in the document body - Call hFileOpen((Convertpath (gTesttoolpath + "writer\optional\input\textframe\frameInTable.sxw")),false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\textframe\frameInTable.sxw" ) '/// Set focus to Frame Call wTypeKeys ( "<Shift F4>" ) @@ -223,8 +220,7 @@ testcase tTextframes_75 Call hNewDocument '/// Open a test file , which includes 1 frame in the header - Call hFileOpen((Convertpath (gTesttoolpath + "writer\optional\input\textframe\Header.sxw")),false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\textframe\Header.sxw" ) '/// Set focus to Frame Call wTypeKeys ( "<Shift F4>" ) @@ -259,8 +255,7 @@ testcase tTextframes_76 Call hNewDocument '/// Open a test file , which includes 1 frame in the footer - Call hFileOpen((gTesttoolpath + "writer\optional\input\textframe\Footer.sxw"),false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\textframe\Footer.sxw" ) '/// Set focus to Frame Call wTypeKeys ( "<Shift F4>" ) @@ -295,8 +290,7 @@ testcase tTextframes_77 Call hNewDocument '/// Open a test file , which includes 1 frame in the footnote - Call hFileOpen((Convertpath(gTesttoolpath + "writer\optional\input\textframe\frameInFootnote.sxw")),false) - Call sMakeReadOnlyDocumentEditable + hFileOpen( gTesttoolpath & "writer\optional\input\textframe\frameInFootnote.sxw" ) '/// Set focus to Frame Call wTypeKeys ( "<Shift F4>" ) @@ -331,8 +325,7 @@ testcase tTextframes_78 Call hNewDocument '/// Open a test file , which includes 1 frame in the endnote - Call hFileOpen((Convertpath(gTesttoolpath + "writer\optional\input\textframe\frameInEndnote.sxw")),false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath & "writer\optional\input\textframe\frameInEndnote.sxw" ) '/// Set focus to Frame Call wTypeKeys ( "<Shift F4>" ) @@ -379,8 +372,7 @@ testcase tTextframes_80 '/// Open a test file , which includes 1 frame which is '/// + anchored 'To Character' and a picture which is anchored '/// + in the frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Set focus to Frame Call wTypeKeys ( "<Shift F4>" ) @@ -435,8 +427,7 @@ testcase tTextframes_81 '/// Open a test file , which includes 1 frame which is '/// + anchored 'To Character' and a picture which is anchored '/// + in the frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Set focus to Frame Call wTypeKeys ( "<Shift F4>" ) @@ -491,8 +482,7 @@ testcase tTextframes_82 '/// Open a test file , which includes 1 frame which is '/// + anchored 'To Character' and a picture which is anchored '/// + in the frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Set focus to Frame Call wTypeKeys ( "<Shift F4>" ) @@ -549,8 +539,7 @@ testcase tTextframes_83 '/// Open a test file , which includes 1 frame which is '/// + anchored 'To Character' and a picture which is anchored '/// + in the frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Set focus to Frame Call wTypeKeys ( "<Shift F4>" ) @@ -615,8 +604,7 @@ testcase tTextframes_84 '/// Open a test file , which includes 1 frame which is '/// + anchored 'To Character' and a picture which is anchored '/// + in the frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Set focus to Frame Call wTypeKeys ( "<Shift F4>" ) @@ -683,9 +671,7 @@ testcase tTextframes_85 '/// + One is top to the line text , '/// + another one is center to the line text , '/// + the 3rd one is bottom to the line text - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable - Sleep (2) + hFileOpenLocally( sTestFile ) '/// Set focus to 1st Frame Call wTypeKeys ( "<Shift F4>" ) diff --git a/testautomation/writer/optional/includes/tools/tools1.inc b/testautomation/writer/optional/includes/tools/tools1.inc index f5d8362b2a84..a2a1e04dc0ad 100755 --- a/testautomation/writer/optional/includes/tools/tools1.inc +++ b/testautomation/writer/optional/includes/tools/tools1.inc @@ -66,8 +66,8 @@ end function function fFormatGraphic(Options as string) as boolean Dim j as integer, sSlotOK as boolean + fFormatGraphic = true if ( hUseAsyncSlot( "FormatGraphics" ) <> -1 ) then - Kontext if ( Active.exists( 2 ) ) then Select case Options @@ -99,9 +99,11 @@ function fFormatGraphic(Options as string) as boolean end select else warnlog( "Failed to access <Format Graphics> Tabpage" ) + fFormatGraphic = false endif else warnlog( "Failed to execute <FormatGraphics>" ) + fFormatGraphic = false endif Kontext Options diff --git a/testautomation/writer/optional/includes/undo/w_undo_history_4.inc b/testautomation/writer/optional/includes/undo/w_undo_history_4.inc index e1370f29e541..568d6cd3d295 100755 --- a/testautomation/writer/optional/includes/undo/w_undo_history_4.inc +++ b/testautomation/writer/optional/includes/undo/w_undo_history_4.inc @@ -290,8 +290,8 @@ testcase tUndoSpellcheck '/// <B>Spellcheck(Autocheck/Spellcheck)</B> printlog "- Spellcheck: Autocheck" '/// new document /// - hfileOpen (gTesttoolpath + "writer\optional\input\undo\spellcheck_undo.odt") - Call sMakeReadOnlyDocumentEditable + Call hfileOpenLocally (gTesttoolpath + "writer\optional\input\undo\spellcheck_undo.odt") + '/// Type "This is a testp<End>" Call wTypeKeys ( "<End>" ) 'This is a testp '/// Select word' testp' diff --git a/testautomation/writer/optional/w_clipbrd.bas b/testautomation/writer/optional/w_clipbrd.bas index 5fa732706afc..97d209d7599e 100644..100755 --- a/testautomation/writer/optional/w_clipbrd.bas +++ b/testautomation/writer/optional/w_clipbrd.bas @@ -35,22 +35,34 @@ Global CharsetSet as integer Global ExportSet as integer sub main - use "writer\tools\includes\w_tools.inc" - use "writer\optional\includes\clipboard\clipbrd_func.inc" - use "writer\optional\includes\clipboard\w_210_.inc" - use "writer\optional\includes\clipboard\w_211_.inc" - use "writer\optional\includes\clipboard\w_212_.inc" - use "writer\optional\includes\clipboard\w_213_.inc" - use "writer\optional\includes\clipboard\w_214_.inc" - use "writer\optional\includes\clipboard\w_215_.inc" - use "writer\optional\includes\clipboard\w_216_.inc" - use "writer\optional\includes\clipboard\w_217_.inc" - use "writer\optional\includes\clipboard\w_218_.inc" - use "writer\optional\includes\clipboard\w_219_.inc" - use "writer\optional\includes\clipboard\w_220_.inc" - use "writer\optional\includes\clipboard\w_221_.inc" - use "writer\optional\includes\clipboard\w_222_.inc" - Dim Start : Start = Now() + use "writer\tools\includes\w_tools.inc" + use "writer\optional\includes\clipboard\clipbrd_func.inc" + use "writer\optional\includes\clipboard\w_210_.inc" + use "writer\optional\includes\clipboard\w_211_.inc" + use "writer\optional\includes\clipboard\w_212_.inc" + use "writer\optional\includes\clipboard\w_213_.inc" + use "writer\optional\includes\clipboard\w_214_.inc" + use "writer\optional\includes\clipboard\w_215_.inc" + use "writer\optional\includes\clipboard\w_216_.inc" + use "writer\optional\includes\clipboard\w_217_.inc" + use "writer\optional\includes\clipboard\w_218_.inc" + use "writer\optional\includes\clipboard\w_219_.inc" + use "writer\optional\includes\clipboard\w_220_.inc" + use "writer\optional\includes\clipboard\w_221_.inc" + use "writer\optional\includes\clipboard\w_222_.inc" + Dim Start : Start = Now() + Dim lsSourceList(3) as string + + ' copy needed files linked in test documents lo local file system if needed Issue #112208 + lsSourceList(0) = 3 + lsSourceList(1) = ConvertPath ( gtesttoolpath & "writer\optional\input\clipboard\dummy.sxw" ) + lsSourceList(2) = ConvertPath ( gtesttoolpath & "writer\optional\input\clipboard\dummy.txt" ) + lsSourceList(3) = ConvertPath ( gtesttoolpath & "writer\optional\input\clipboard\flower.gif" ) + + if hFileListCopyLocal(lsSourceList()) = false then + warnlog "Copying of elementary files failed. Test interrupted!" + exit sub + end if ExportSet = wChangeHTMLCompatibilityExport CharsetSet = wChangeHTMLCompatibility @@ -72,9 +84,9 @@ sub main Call hStatusOut Call wChangeHTMLCompatibility(CharsetSet) - Call wChangeHTMLCompatibilityExport(ExportSet) + Call wChangeHTMLCompatibilityExport(ExportSet) - printlog "Duration : " + Wielange ( Start ) + printlog "Duration : " + Wielange ( Start ) end sub '--------------------------------------------------------- diff --git a/testautomation/writer/required/includes/w_001_.inc b/testautomation/writer/required/includes/w_001_.inc index 8cd43ccbcbae..1fc2001e78bb 100755..100644 --- a/testautomation/writer/required/includes/w_001_.inc +++ b/testautomation/writer/required/includes/w_001_.inc @@ -773,9 +773,7 @@ testcase tFileSaveAsExport Call hNewDocument PrintLog "Open document '..\writer\required\input\st1_1.sxw" - Call hFileOpen(xExport) - - Call sMakeReadOnlyDocumentEditable + Call hFileOpenLocally(xExport) PrintLog "Select Save as .. and choose 'Microsoft Word 97/2000/XP' as export-filter" xExportFile = gOfficepath + "user\work\ecksport.doc" @@ -1029,7 +1027,7 @@ testcase tFileReload Wait (500) PrintLog "Open previous saved document" - Call hFileOpen ( gOfficePath + "user\work\" + sFile$ ) + hFileOpen( gOfficePath + "user\work\" + sFile$ ) PrintLog "Insert a table in document" Call hTabelleEinfuegen PrintLog "File / Reload" diff --git a/testautomation/writer/required/includes/w_001b_.inc b/testautomation/writer/required/includes/w_001b_.inc index e20d497482f0..4d8e6883891a 100644 --- a/testautomation/writer/required/includes/w_001b_.inc +++ b/testautomation/writer/required/includes/w_001b_.inc @@ -125,7 +125,7 @@ testcase tFileSendOutlineToPresentation goto endsub end select PrintLog "Open file ( gTesttoolPath + writer\required\input\ + htmltest.sxw )" - Call hFileOpen ( gTesttoolPath + "writer\required\input\" + sFile$ ) + hFileOpenLocally( gTesttoolPath + "writer\required\input\" + sFile$ ) Kontext "Navigator" if Navigator.Exists then Navigator.Close Sleep 1 @@ -176,7 +176,7 @@ testcase tFileSendOutlineToClipboard end select PrintLog "Open file ( gTesttoolPath + writer\required\input\ + htmltest.sxw )" - Call hFileOpen ( gTesttoolPath + "writer\required\input\" + sFile$ ) + hFileOpenLocally( gTesttoolPath + "writer\required\input\" + sFile$ ) Sleep 1 PrintLog "File / Send / Outline to Clipboard" try @@ -198,6 +198,7 @@ testcase tFileSendOutlineToClipboard PrintLog "Paste outline in new document" hUseAsyncSlot( "EditPaste" ) + WaitSlot(1000) Call wTypeKeys("<Up>", 6) Call wTypeKeys("<Home><Shift End>") hUseAsyncSlot( "EditCopy" ) @@ -223,7 +224,7 @@ testcase tFileSendCreateAutoabstract end select PrintLog "Open file ( gTesttoolPath + writer\required\input\ + htmltest.sxw )" - Call hFileOpen ( gTesttoolPath + "writer\required\input\" + sFile$ ) + hFileOpenLocally( gTesttoolPath + "writer\required\input\" + sFile$ ) Kontext "Navigator" if Navigator.Exists then Navigator.Close Sleep 1 @@ -274,7 +275,7 @@ testcase tFileSendAutoabstractToPresentation end select PrintLog "Open file ( gTesttoolPath + writer\required\input\ + htmltest.sxw )" - Call hFileOpen ( gTesttoolPath + "writer\required\input\" + sFile$ ) + hFileOpenLocally( gTesttoolPath + "writer\required\input\" + sFile$ ) Kontext "Navigator" if Navigator.Exists then Navigator.Close Sleep 1 @@ -399,7 +400,7 @@ testcase tMasterDocFileSaveWithPassword FileClose WaitSlot(2000) PrintLog "Open previous saved document" - Call hFileOpen(Datei$) + Call hFileOpen( Datei$) Kontext "PasswordFileOpen" PrintLog "Enter a wrong password." @@ -427,7 +428,7 @@ testcase tMasterDocFileSaveWithPassword Sleep 1 PrintLog "File / Open again your previous saved document" - Call hFileOpen(Datei$) + Call hFileOpen( Datei$) PrintLog "Enter your password in password dialog" Kontext "PasswordFileOpen" if PasswordFileOpen.Exists then @@ -468,7 +469,7 @@ testcase tMasterDocFileSaveWithPassword Sleep 1 FileClose PrintLog "File / Close and open your document again" - Call hFileOpen(Datei$) + hFileOpen( Datei$) Sleep 1 Kontext "PasswordFileOpen" PrintLog "Now the passwort dialog should come up" @@ -517,7 +518,7 @@ testcase tMasterDocFileReload endif PrintLog "Open previous saved document" - Call hFileOpen ( sDocumentPath ) + Call hFileOpen( sDocumentPath ) PrintLog "Insert a table in document" Call hTabelleEinfuegen @@ -652,7 +653,7 @@ testcase tMasterDocFileSendOutlineToPresentation gApplication = "MASTERDOCUMENT" - Call hFileOpen ( gTesttoolPath + "writer\required\input\" + sFile ) + hFileOpenLocally( gTesttoolPath + "writer\required\input\" + sFile ) Kontext "Navigator" if ( Navigator.Exists ) then @@ -698,7 +699,7 @@ testcase tMasterDocFileSendOutlineToClipboard Dim sFile as string : sFile = "htmltest.sxg" PrintLog "- File / Send / Outline to Clipboard" - Call hFileOpen ( gTesttoolPath + "writer\required\input\" + sFile ) + hFileOpenLocally( gTesttoolPath + "writer\required\input\" + sFile ) PrintLog "File / Send / Outline to Clipboard" try @@ -738,7 +739,7 @@ testcase tMasterDocFileSendCreateAutoabstract Dim sFile as string : sFile = "htmltest.sxg" PrintLog "- File / Send / Create Autoabstract" - Call hFileOpen ( gTesttoolPath + "writer\required\input\" + sFile ) + hFileOpenLocally( gTesttoolPath + "writer\required\input\" + sFile ) Kontext "Navigator" hCloseDialog( Navigator, "Close,optional" ) @@ -788,7 +789,7 @@ testcase tMasterDocFileSendAutoabstractToPresentation PrintLog "- File / Send / Autoabstract to Presentation" PrintLog "Open file ( gTesttoolPath + writer\required\input\ + htmltest.sxw )" - Call hFileOpen ( gTesttoolPath + "writer\required\input\" + sFile ) + hFileOpenLocally( gTesttoolPath + "writer\required\input\" + sFile ) Kontext "Navigator" hCloseDialog( Navigator, "Close,optional" ) diff --git a/testautomation/writer/required/includes/w_007_.inc b/testautomation/writer/required/includes/w_007_.inc index 94fa0d70f9f9..20b468c9605c 100755..100644 --- a/testautomation/writer/required/includes/w_007_.inc +++ b/testautomation/writer/required/includes/w_007_.inc @@ -84,8 +84,7 @@ testcase tToolsSpellcheck Warnlog "Found no Document for the language you're testing in, Please inform the Test-Developer." goto endsub end if - hFileOpen ( TheFile ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( TheFile ) printlog " Insert some faulty text" select case iSprache @@ -246,8 +245,7 @@ testcase tToolsThesaurus Warnlog "Found no Document for the language you're testing in, Please inform the Test-Developer." goto endsub end if - call hFileOpen( TheFile ) - Call sMakeReadOnlyDocumentEditable + call hFileOpenLocally( TheFile ) printlog " Insert some faulty text" select case iSprache @@ -337,7 +335,7 @@ testcase tToolsHyphenation Select Case gApplication Case "WRITER" - hFileOpen( DieDatei ) + hFileOpenLocally( DieDatei ) Case "MASTERDOCUMENT" if wInsertDocumentinMasterDoc(DieDatei) = False then @@ -354,7 +352,6 @@ testcase tToolsHyphenation goto endsub end select - Call sMakeReadOnlyDocumentEditable printlog " Insert file 'writer\required\input\linguistik\0 + [OfficeLanguage] + '.odt'" Sleep 1 Call wTypeKeys ("<Mod1 Home>") @@ -986,8 +983,7 @@ testcase tToolsHangulHanjaConversion bAsianLanguage = ActiveDeactivateAsianSupport(TRUE) printlog " Open the test file" - hFileOpen (sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally(sTestFile) Call wTypeKeys("<MOD1 Home>") printlog " Tools / HangulHanjaConversion" @@ -1126,8 +1122,7 @@ testcase tHtmlDocToolsHangulHanjaConversion bAsianLanguage = ActiveDeactivateAsianSupport(TRUE) printlog " Open the test file" - hFileOpen (sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally(sTestFile) Call wTypeKeys("<MOD1 Home>") printlog " Tools / HangulHanjaConversion" @@ -1238,7 +1233,7 @@ testcase tMasterDocToolsHyphenation hUseAsyncSlot( "EditPaste" ) end if - Call sMakeReadOnlyDocumentEditable + printlog " Insert file 'writer\required\input\linguistik\0 + [OfficeLanguage] + '.odt'" Sleep 1 Call wTypeKeys ("<Mod1 Home>") diff --git a/testautomation/writer/tools/includes/w_tool3.inc b/testautomation/writer/tools/includes/w_tool3.inc index 16fd825f6447..5aa58e2f967c 100755..100644 --- a/testautomation/writer/tools/includes/w_tool3.inc +++ b/testautomation/writer/tools/includes/w_tool3.inc @@ -270,7 +270,7 @@ sub UndoRichtigBeiSortierung if Fehler = TRUE then Warnlog "Undo after sorting has not been functioned correctly" Call hCloseDocument - Call hFileOpen ( gTesttoolPath + "writer\optional\input\st1_5.sdw" ) + hFileOpenLocally( gTesttoolPath + "writer\optional\input\st1_5.sdw" ) end if Call wTypeKeys "<End>" Call wTypeKeys "<Down>",6 diff --git a/testautomation/writer/tools/includes/w_tools.inc b/testautomation/writer/tools/includes/w_tools.inc index 27b9526bb0de..cfe0aa6e07f3 100755 --- a/testautomation/writer/tools/includes/w_tools.inc +++ b/testautomation/writer/tools/includes/w_tools.inc @@ -141,11 +141,14 @@ end function ' ----------------------------------------------------------------------- -sub wZeichenobjektEinfuegen ( Objekt$, xStart%, yStart%, xEnde%, yEnde%, optional sCloseToolbar as boolean ) +sub wZeichenobjektEinfuegen ( Objekt$, xStart%, yStart%, xEnde%, yEnde%, optional sCloseToolbar as boolean, optional bLeaveSelected as boolean ) Kontext "DrawBar" if Not DrawBar.Exists then Call hToolbarSelect("Drawing", true) Sleep 2 + if IsMissing(bLeaveSelected) then + bLeaveSelected = false + endif Objekt = UCase( Objekt ) select case Objekt @@ -187,8 +190,10 @@ sub wZeichenobjektEinfuegen ( Objekt$, xStart%, yStart%, xEnde%, yEnde%, optiona end if if Objekt <> "TEXT" and Objekt <> "VTEXT" then Kontext "DocumentWriter" - Call gMouseClick (10, 10) - wait 100 + if bLeaveSelected = false then + Call gMouseClick (10, 10) + wait 100 + endif end if Case "MASTERDOCUMENT" @@ -205,8 +210,10 @@ sub wZeichenobjektEinfuegen ( Objekt$, xStart%, yStart%, xEnde%, yEnde%, optiona end if if Objekt <> "TEXT" and Objekt <> "VTEXT" then Kontext "DocumentMasterDoc" - Call gMouseClick (10, 10) - wait 100 + if bLeaveSelected = false then + Call gMouseClick (10, 10) + wait 100 + endif end if end select sleep (1) @@ -215,18 +222,21 @@ end sub ' ----------------------------------------------------------------------- sub wObjektSelektieren ( xStart%, yStart%, xEnde%, yEnde% ) - ' Call gMouseClick(90,90) Call hToolbarSelect("DRAWING",true) - Auswahl.Click + if Auswahl.Getstate(2) = 0 then + Auswahl.Click + endif Select Case gApplication Case "WRITER" Kontext "DocumentWriter" DocumentWriter.MouseDown xStart%, yStart% + wait 500 DocumentWriter.MouseMove xEnde%, yEnde% DocumentWriter.MouseUp xEnde%, yEnde% Case "MASTERDOCUMENT" Kontext "DocumentMasterDoc" DocumentMasterDoc.MouseDown xStart%, yStart% + wait 500 DocumentMasterDoc.MouseMove xEnde%, yEnde% DocumentMasterDoc.MouseUp xEnde%, yEnde% end select @@ -1042,7 +1052,7 @@ end sub function wInsertDocumentinMasterDoc(DocumentName as string) as boolean Call hNewDocument - Call hFileOpen(DocumentName) + hFileOpenLocally( DocumentName) Sleep 2 Call wTypeKeys "<Mod1 A>" Sleep 2 |