update dev300-m58
[ooovba.git] / testautomation / framework / optional / f_options_ooo.bas
blobd21514ed61b63501eadc6ad42960c5f864fa3cab
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 2008 by Sun Microsystems, Inc.
6 '*
7 '* OpenOffice.org - a multi-platform office productivity suite
8 '*
9 '* $RCSfile: f_options_ooo.bas,v $
11 '* $Revision: 1.3 $
13 '* last change: $Author: jsk $ $Date: 2008-06-20 08:07:02 $
15 '* This file is part of OpenOffice.org.
17 '* OpenOffice.org is free software: you can redistribute it and/or modify
18 '* it under the terms of the GNU Lesser General Public License version 3
19 '* only, as published by the Free Software Foundation.
21 '* OpenOffice.org is distributed in the hope that it will be useful,
22 '* but WITHOUT ANY WARRANTY; without even the implied warranty of
23 '* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 '* GNU Lesser General Public License version 3 for more details
25 '* (a copy is included in the LICENSE file that accompanied this code).
27 '* You should have received a copy of the GNU Lesser General Public License
28 '* version 3 along with OpenOffice.org. If not, see
29 '* <http://www.openoffice.org/license.html>
30 '* for a copy of the LGPLv3 License.
32 '/************************************************************************
34 '* owner : thorsten.bosbach@sun.com
36 '* short description : General Tools/Options test
38 '\***********************************************************************
40 sub main
42 GLOBAL_USE_NEW_SLEEP = TRUE
44 use "framework\optional\includes\options_ooo_general.inc"
45 use "framework\optional\includes\options_ooo_memory.inc"
46 use "framework\optional\includes\options_ooo_userdata.inc"
47 use "framework\optional\includes\options_ooo_view.inc"
48 use "framework\optional\includes\options_ooo_print.inc"
49 use "framework\optional\includes\options_ooo_paths.inc"
50 use "framework\optional\includes\options_ooo_colors.inc"
51 use "framework\optional\includes\options_ooo_fontreplacement.inc"
52 use "framework\optional\includes\options_ooo_security.inc"
53 use "framework\optional\includes\options_ooo_appearance.inc"
54 use "framework\optional\includes\options_ooo_accessibility.inc"
55 use "framework\optional\includes\options_ooo_java.inc"
57 Call hStatusIn ( "framework", "f_options_ooo.bas" )
59 printlog " 1. part : test if all global options are saved"
61 Call tOOoUserData
62 Call tOOoGeneral
63 Call tOOoMemory
64 Call tOOoView
65 Call tOOoPrint
66 Call tOOoPaths
67 Call tOOoColors
68 Call tOOoFontReplacement
69 Call tOOoSecurity
70 Call tOOoAppearance
71 Call tOOoAccessibility
72 Call tOOoJava
74 Call hStatusOut
76 end sub
78 sub LoadIncludeFiles
80 use "global\system\includes\master.inc"
81 use "global\system\includes\gvariabl.inc"
83 use "global\tools\includes\optional\t_docfuncs.inc"
84 use "global\tools\includes\optional\t_filetools.inc"
85 use "global\tools\includes\optional\t_control_objects.inc"
86 use "global\tools\includes\optional\t_key_tools.inc"
88 use "framework\tools\includes\init_tools.inc"
89 use "framework\tools\includes\options_tools.inc"
91 Call GetUseFiles
92 gApplication = "WRITER"
94 end sub