Update ooo320-m1
[ooovba.git] / testautomation / framework / tools / includes / window_tools.inc
blobb9e441de250f3c9e6df5aa7b29e525f6c0c98052
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: window_tools.inc,v $
11 '* $Revision: 1.1 $
13 '* last change: $Author: jsi $ $Date: 2008-06-16 12:19:06 $
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 : joerg.skottke@sun.com
36 '*  short description : Tools to handle windows/frames
38 '\******************************************************************************
40 function hMaximizeDocument() as boolean
43     '///<h3>Maximize a document window</h3>
44     '///<i>Note</i>: The function runs silent (no logs written)<br><br>
45     '///<u>Return Value:</u><br>
47     '///<ol>
48     '///+<li>Errorcondition (boolean)</li>
49     '///<ul>
50     '///+<li>TRUE if the window claims to have been maximized</li>
51     '///+<li>FALSE on invalid gApplication (with warning)</li>
52     '///+<li>FALSE if the window thinks it has not been maximized</li>
53     '///</ul>
54     '///</ol>
56     const CFN = "hMaximizeDocument::"
57     dim brc as boolean 'a multi purpose boolean returnvalue
59     '///<u>Description:</u>
60     '///<ul>
61     '///+<li>Maximize the documentwindow depending on gApplication</li>
62     select case ( ucase( gApplication ) )
63     case "WRITER"    : Kontext "DocumentWriter"
64                        DocumentWriter.maximize()
65                        brc = DocumentWriter.isMaximized()
66     case "CALC"      : Kontext "DocumentCalc"
67                        DocumentCalc.maximize()
68                        brc = DocumentCalc.isMaximized()
69     case "IMPRESS"   : Kontext "DocumentImpress"
70                        DocumentImpress.maximize()
71                        brc = DocumentImpress.isMaximized()
72     case "DRAW"      : Kontext "DocumentDraw"
73                        DocumentDraw.maximize()
74                        brc = DocumentDraw.isMaximized()
75     case "MATH"      : Kontext "DocumentMath"
76                        DocumentMath.maximize()
77                        brc = DocumentMath.isMaximized()
78     case "MASTERDOCUMENT" : Kontext "DocumentWriter"
79                        DocumentWriter.maximize()
80                        brc = DocumentWriter.isMaximized()
81     case "HTML"      : Kontext "DocumentWriter"
82                        DocumentWriter.maximize()
83                        brc = DocumentWriter.isMaximized()
84     case else        : qaerrorlog( CFN & "Invalid documenttype" )
85                        brc = false
86     end select
88     '///</ul>
90     hMaximizeDocument() = brc
92 end function