1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: XWindow.idl,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef __ooo_vba_excel_XWindow_idl__
31 #define __ooo_vba_excel_XWindow_idl__
33 #ifndef __com_sun_star_uno_XInterface_idl__
34 #include
<com
/sun
/star
/uno
/XInterface.idl
>
37 #ifndef __ooo_vba_XHelperInterface_idl__
38 #include
<ooo
/vba
/XHelperInterface.idl
>
41 //=============================================================================
43 module ooo
{ module vba
{ module excel
{
45 //=============================================================================
49 interface XWindow
: com
::sun
::star
::uno
::XInterface
51 [attribute
] any Caption
;
52 [attribute
] boolean DisplayGridlines
;
53 [attribute
] boolean DisplayHeadings
;
54 [attribute
] boolean DisplayHorizontalScrollBar
;
55 [attribute
] boolean DisplayOutline
;
56 [attribute
] boolean DisplayVerticalScrollBar
;
57 [attribute
] boolean DisplayWorkbookTabs
;
58 [attribute
] boolean FreezePanes
;
59 [attribute
] boolean Split
;
60 [attribute
] long SplitColumn
;
61 [attribute
] double SplitHorizontal
;
62 [attribute
] long SplitRow
;
63 [attribute
] double SplitVertical
;
64 [attribute
] any ScrollColumn
;
65 [attribute
] any ScrollRow
;
67 [attribute
] any WindowState
;
69 any SelectedSheets
( [in] any aIndex
);
70 void SmallScroll
( [in] any Down
, [in] any Up
, [in] any ToRight
, [in] any ToLeft
);
71 void LargeScroll
( [in] any Down
, [in] any Up
, [in] any ToRight
, [in] any ToLeft
);
72 void ScrollWorkbookTabs
( [in] any Sheets
, [in] any Position
);
74 void Close
([in] any SaveChanges
, [in] any FileName
, [in] any RouteWorkBook
);
75 XRange ActiveCell
() raises
(com
::sun
::star
::script
::BasicErrorException
);
76 any Selection
() raises
(com
::sun
::star
::script
::BasicErrorException
);
77 long PointsToScreenPixelsX
([in] long Points
) raises
(com
::sun
::star
::script
::BasicErrorException
);
78 long PointsToScreenPixelsY
([in] long Points
) raises
(com
::sun
::star
::script
::BasicErrorException
);
79 void PrintOut
([in] /*optional short*/ any From
,
80 [in] /*optional short*/ any To
,
81 [in] /*optional short*/ any Copies
,
82 [in] /*optional boolean*/ any Preview
,
83 [in] /*optional string*/ any ActivePrinter
,
84 [in] /*optional boolean*/ any PrintToFile
,
85 [in] /*optional boolean*/ any Collate
,
86 [in] /*optional string*/ any PrToFileName
87 ) raises
(com
::sun
::star
::script
::BasicErrorException
);
88 void PrintPreview
( [in] /*Optional*/ any EnableChanges
) raises
( com
::sun
::star
::script
::BasicErrorException
);
90 XWorksheet ActiveSheet
() raises
(com
::sun
::star
::script
::BasicErrorException
);
91 XPane ActivePane
() raises
(com
::sun
::star
::script
::BasicErrorException
);
94 //=============================================================================