1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
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.
14  *
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).
20  *
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.
25  *
26  ************************************************************************/
27 
28 package ifc.table;
29 
30 import lib.MultiPropertyTest;
31 import util.ValueComparer;
32 
33 import com.sun.star.table.XCellRange;
34 import com.sun.star.uno.UnoRuntime;
35 import com.sun.star.uno.XInterface;
36 
37 /**
38 * Testing <code>com.sun.star.table.TableColumn</code>
39 * service properties :
40 * <ul>
41 *  <li><code> Width</code></li>
42 *  <li><code> OptimalWidth</code></li>
43 *  <li><code> IsVisible</code></li>
44 *  <li><code> IsStartOfNewPage</code></li>
45 * </ul> <p>
46 * Properties testing is automated by <code>lib.MultiPropertyTest</code>.
47 * @see com.sun.star.table.TableColumn
48 */
49 public class _TableColumn extends MultiPropertyTest {
50 
51     public void _OptimalWidth() {
52         boolean res = false;
53         try {
54             XInterface tObject = tEnv.getTestObject();
55             XCellRange aRange = (XCellRange)
56                     UnoRuntime.queryInterface(XCellRange.class, tObject);
57             aRange.getCellByPosition(0,0).setFormula("Thats a pretty long text");
58             Object width_before = oObj.getPropertyValue("Width");
59             log.println("Before setting to optimal width: "+width_before);
60             oObj.setPropertyValue("OptimalWidth", new Boolean(true));
61             Object width_after = oObj.getPropertyValue("Width");
62             log.println("After setting to optimal width: "+width_after);
63             res = ! ValueComparer.equalValue(width_before,width_after);
64         } catch (Exception e) {
65            res = false;
66            e.printStackTrace(log);
67         }
68 
69         tRes.tested("OptimalWidth",res );
70     }
71 
72 } //finish class _TableColumn
73 
74 
75