merge the formfield patch from ooo-build
[ooovba.git] / testautomation / writer / optional / includes / table / w_204b_.inc
blob11cdfdb867b7a5c4ffbc81f611cc53b5604c0bb9
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: w_204b_.inc,v $
11 '* $Revision: 1.2 $
13 '* last change: $Author: vg $ $Date: 2008-08-18 12:37:14 $
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 : helge.delfs@sun.com
36 '* short description : Writer Table test
38 '\***********************************************************************
40 sub w_204b_
41    Call wSplittingTableCellsIntoEqualProportions
42 end sub
45 testcase wSplittingTableCellsIntoEqualProportions
46    Dim i as integer 
47    Dim DaRowHeight as string
48    Dim SetRowHeight as boolean
49    
50    SetRowHeight = True
51    printlog "Based on feature ID: 103485"
52    printlog " Open a new writer document"
53    Call hNewDocument
54    printlog "Insert a table with 4 rows and 4 lines"
55    Call TBOhTabelleEinfuegen("SplittingTable", 0, 1, 0, 1, "4", "4")
56    printlog "Select the table ( Strg + A )"
57    Call wTypeKeys ( "<Mod1 A>" )
58    printlog "Format / Row / Height"
59    Kontext "ZellenHoehe"
60    TableAutoFitSetRowHeight
61    printlog "In upcoming dialog (Row Height) set height to 1,2cm and check 'Fit to size'"
62    if iSystemSprache = 01 or iSystemSprache = 48 or iSystemSprache = 07 then
63       Hoehe.Settext "1.20"
64    else
65       Hoehe.Settext "1,20"
66    end if
67    Dynamisch.Check
68    DaRowHeight = Hoehe.Gettext
69    printlog "Close 'Row Height' with 'OK'"
70    ZellenHoehe.Ok
71    printlog "Point cursor to first cell in first row ( Strg + Home )"
72    Call wTypeKeys ( "<Mod1 Home>" )
73    For i = 1 to 4
74       if wCheckRowHeight( DaRowHeight ) = False then SetRowHeight = False
75       Call wTypeKeys ( "<Down>" )
76    next i
77    if SetRowHeight = True then
78       Call wTypeKeys ( "<Up>", 4 )
79       printlog "Select 1st and 2nd column"
80       Call wTypeKeys ( "<Shift Down>", 3 )
81       Call wTypeKeys ( "<Shift Right>" )
82       printlog "Format / Cell / Merge to merge all cells"
83       TableMergeCells
84       printlog "Now split previous merged cell into 4 pieces ( horizontally )"
85       printlog "Format / Cell / Split"
86       TableSplitCell
87       Kontext "ZellenTeilen"
88       printlog "In 'Split Cells' Dialog set 'Split cell into' to 4"
89       Anzahl.Settext "4"
90       printlog "Check 'Horizontally' and 'Into equal proportions'"
91       Horizontal.Check
92       GleichmaessigTeilen.Check
93       printlog "Close dialog with 'OK'"
94       ZellenTeilen.Ok
95       printlog "Now the cell has to be splitted into 4 rows of height 1,2cm"
96       For i = 1 to 4
97          if wCheckRowHeight( DaRowHeight ) = False then SetRowHeight = False
98          Call wTypeKeys ( "<Down>" )
99       next i
100    else
101       Warnlog "Error setting the row height !"
102    end if
104    Call hCloseDocument
106 endcase