merged tag ooo/DEV300_m102
[LibreOffice.git] / testautomation / graphics / optional / g_stylist.bas
blob50da6610c41a2d09787f4a2f5525926f6db3c10b
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: Stylist
32 '\*******************************************************************
34 public glLocale (15*20) as string
36 sub main
37 PrintLog "------------------------- Stylist Test -------------------"
38 Call hStatusIn ( "Graphics","g_stylist.bas" )
40 use "graphics\tools\id_tools.inc"
41 use "graphics\tools\id_tools_2.inc"
42 use "graphics\optional\includes\global\g_stylist.inc"
43 use "graphics\optional\includes\impress\i_stylist.inc"
45 if hSetLocaleStrings ( gTesttoolPath + "graphics\tools\locale_1.txt" , glLocale () ) = FALSE then
46 warnlog "Locales file doesn't exist graphics\tools\locale_1.txt"
47 endif
49 gApplication = "IMPRESS"
51 PrintLog "-------------------------" + gApplication + "-------------------"
52 Call tFormatStylistFlyer
53 Call tFormatStylistDocuments
54 Call tFormatStylistTemplatesUse
55 Call tFormatStylistTemplateCreate
56 if iSprache <> "82" then
57 Call tFormatStylistTemplateSelect
58 Call tFormatStylistTemplateNew
59 else
60 qaerrorlog "#i65490# - Deactivated tFormatStylistTemplateSelect, tFormatStylistTemplateNew due to bug."
61 endif
62 call tiFormatStylist
63 call tFormatStylist
65 if iSprache <> "81" then
66 if iSprache <> "82" then
67 Call tFormatStylistBackground
68 else
69 qaerrorlog "#i65534# - Deactivated tFormatStylistBackground due to bug under Korean."
70 endif
71 else
72 qaerrorlog "Deactivated tFormatStylistBackground due to string-name-difficulties."
73 endif
75 gApplication = "DRAW"
76 PrintLog "-------------------------" + gApplication + "-------------------"
78 Call tFormatStylistFlyer
79 Call tFormatStylistDocuments
80 Call tFormatStylistTemplatesUse
81 ' Call tFormatStylistTemplateCreate
82 if iSprache <> "82" then
83 Call tFormatStylistTemplateSelect
84 Call tFormatStylistTemplateNew
85 else
86 qaerrorlog "#i65490# - Deactivated tFormatStylistTemplateSelect, tFormatStylistTemplateNew due to bug."
87 endif
88 call tiFormatStylist
89 call tFormatStylist
91 Call hStatusOut
92 end sub
94 sub LoadIncludeFiles
95 use "global\system\includes\master.inc"
96 use "global\system\includes\gvariabl.inc"
97 gApplication = "IMPRESS"
98 Call GetUseFiles
99 end sub