summaryrefslogtreecommitdiff
path: root/testautomation/writer/optional/includes/table/w_204b_.inc
blob: 785197a6365f6b842b3d7f7d7e2c30f0aca69ed9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
'encoding UTF-8  Do not remove or change this line!
'**************************************************************************
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 * 
 * Copyright 2000, 2010 Oracle and/or its affiliates.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
'/************************************************************************
'*
'* owner : helge.delfs@sun.com
'*
'* short description : Writer Table test
'*
'\***********************************************************************

sub w_204b_
   Call wSplittingTableCellsIntoEqualProportions
end sub


testcase wSplittingTableCellsIntoEqualProportions
   Dim i as integer 
   Dim DaRowHeight as string
   Dim SetRowHeight as boolean
   
   SetRowHeight = True
   printlog "Based on feature ID: 103485"
   printlog " Open a new writer document"
   Call hNewDocument
   printlog "Insert a table with 4 rows and 4 lines"
   Call TBOhTabelleEinfuegen("SplittingTable", 0, 1, 0, 1, "4", "4")
   printlog "Select the table ( Strg + A )"
   Call wTypeKeys ( "<Mod1 A>" )
   printlog "Format / Row / Height"
   Kontext "ZellenHoehe"
   TableAutoFitSetRowHeight
   printlog "In upcoming dialog (Row Height) set height to 1,2cm and check 'Fit to size'"
   if iSystemSprache = 01 or iSystemSprache = 48 or iSystemSprache = 07 then
      Hoehe.Settext "1.20"
   else
      Hoehe.Settext "1,20"
   end if
   Dynamisch.Check
   DaRowHeight = Hoehe.Gettext
   printlog "Close 'Row Height' with 'OK'"
   ZellenHoehe.Ok
   printlog "Point cursor to first cell in first row ( Strg + Home )"
   Call wTypeKeys ( "<Mod1 Home>" )
   For i = 1 to 4
      if wCheckRowHeight( DaRowHeight ) = False then SetRowHeight = False
      Call wTypeKeys ( "<Down>" )
   next i
   if SetRowHeight = True then
      Call wTypeKeys ( "<Up>", 4 )
      printlog "Select 1st and 2nd column"
      Call wTypeKeys ( "<Shift Down>", 3 )
      Call wTypeKeys ( "<Shift Right>" )
      printlog "Format / Cell / Merge to merge all cells"
      TableMergeCells
      printlog "Now split previous merged cell into 4 pieces ( horizontally )"
      printlog "Format / Cell / Split"
      TableSplitCell
      Kontext "ZellenTeilen"
      printlog "In 'Split Cells' Dialog set 'Split cell into' to 4"
      Anzahl.Settext "4"
      printlog "Check 'Horizontally' and 'Into equal proportions'"
      Horizontal.Check
      GleichmaessigTeilen.Check
      printlog "Close dialog with 'OK'"
      ZellenTeilen.Ok
      printlog "Now the cell has to be splitted into 4 rows of height 1,2cm"
      For i = 1 to 4
         if wCheckRowHeight( DaRowHeight ) = False then SetRowHeight = False
         Call wTypeKeys ( "<Down>" )
      next i
   else
      Warnlog "Error setting the row height !"
   end if

   Call hCloseDocument

endcase