merged tag ooo/DEV300_m102
[LibreOffice.git] / testautomation / graphics / optional / g_arrangealign.bas
blob3d9f2e2ab4abe960b3db8a8d3ffe456df40b566e
1 'encoding UTF-8 Do not remove or change this line!
2 '**************************************************************************
3 ' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 '
5 ' Copyright 2000, 2010 Oracle and/or its affiliates.
7 ' OpenOffice.org - a multi-platform office productivity suite
9 ' This file is part of OpenOffice.org.
11 ' OpenOffice.org is free software: you can redistribute it and/or modify
12 ' it under the terms of the GNU Lesser General Public License version 3
13 ' only, as published by the Free Software Foundation.
15 ' OpenOffice.org is distributed in the hope that it will be useful,
16 ' but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ' GNU Lesser General Public License version 3 for more details
19 ' (a copy is included in the LICENSE file that accompanied this code).
21 ' You should have received a copy of the GNU Lesser General Public License
22 ' version 3 along with OpenOffice.org. If not, see
23 ' <http://www.openoffice.org/license.html>
24 ' for a copy of the LGPLv3 License.
26 '/************************************************************************
28 '* Owner : wolfram.garten@oracle.com
30 '* short description : Graphics Function: Arrange and Align
32 '\******************************************************************
34 global datei as string
35 global Ueber_Text_1 as string
36 global Ueber_Text_2 as string
37 global Ueber_Text_3 as string
39 sub main
40 PrintLog "------------------------- g_arrangealign test -------------------------"
41 Call hStatusIn ( "Graphics","g_arrangealign.bas")
43 use "graphics\tools\id_tools.inc"
44 use "graphics\tools\id_tools_2.inc"
45 use "graphics\optional\includes\global\g_arrangealign.inc"
47 gApplication = "IMPRESS"
48 PrintLog "-------------------------" + gApplication + "-------------------"
49 Datei = ConvertPath (gOfficePath + "user\work\" + "anord.odp")
50 Call tiDatei_Fuer_Anordnen_Erstellen ' is needed for the following test :-( ueber vars are set here
51 Call tdContextSendBackward
52 Call tdContextBringForward
53 Call tdContextSendToBack
54 Call tdContextBringToFront
55 Call tdContextInFrontOfObject
56 Call tdContextBehindObject
57 Call tdContextReverse
59 gApplication = "DRAW"
60 PrintLog "-------------------------" + gApplication + "-------------------"
61 Datei = ConvertPath (gOfficePath + "user\work\" + "anord.odg")
62 Call tiDatei_Fuer_Anordnen_Erstellen ' is needed for the following test :-( ueber vars are set here
63 Call tdContextSendBackward
64 Call tdContextBringForward
65 Call tdContextSendToBack
66 Call tdContextBringToFront
67 Call tdContextInFrontOfObject
68 Call tdContextBehindObject
69 Call tdContextReverse
71 Call hStatusOut
72 end sub
74 sub LoadIncludeFiles
75 use "global\system\includes\master.inc"
76 use "global\system\includes\gvariabl.inc"
77 gApplication = "IMPRESS"
78 Call GetUseFiles
79 end sub