1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 */
10#ifndef __ooo_vba_word_XWordBasic_idl__
11#define __ooo_vba_word_XWordBasic_idl__
12
13module ooo {  module vba {  module word {
14
15interface XWordBasic
16{
17    [attribute] long MailMergeMainDocumentType;
18
19    void FileOpen( [in] string Name, [in] any ConfirmConversions, [in] any ReadOnly, [in] any AddToMru, [in] any PasswordDoc, [in] any PasswordDot, [in] any Revert, [in] any WritePasswordDoc, [in] any WritePasswordDot );
20    void FileSave();
21    void FileSaveAs( [in] any Name, [in] any Format, [in] any LockAnnot, [in] any Password, [in] any AddToMru, [in] any WritePassword, [in] any RecommendReadOnly, [in] any EmbedFonts, [in] any NativePictureFormat, [in] any FormsData, [in] any SaveAsAOCELetter );
22    void FileClose( [in] any Save );
23    void ToolsOptionsView( [in] any DraftFont, [in] any WrapToWindow, [in] any PicturePlaceHolders, [in] any FieldCodes, [in] any BookMarks, [in] any FieldShading, [in] any StatusBar, [in] any HScroll, [in] any VScroll, [in] any StyleAreaWidth, [in] any Tabs, [in] any Spaces, [in] any Paras, [in] any Hyphens, [in] any Hidden, [in] any ShowAll, [in] any Drawings, [in] any Anchors, [in] any TextBoundaries, [in] any VRuler, [in] any Highlight );
24    any WindowName( [in] any Number );
25    any ExistingBookmark( [in] string Name );
26    void MailMergeOpenDataSource( [in] string Name,
27                                  [in] any Format,
28                                  [in] any ConfirmConversions,
29                                  [in] any ReadOnly,
30                                  [in] any LinkToSource,
31                                  [in] any AddToRecentFiles,
32                                  [in] any PasswordDocument,
33                                  [in] any PasswordTemplate,
34                                  [in] any Revert,
35                                  [in] any WritePasswordDocument,
36                                  [in] any WritePasswordTemplate,
37                                  [in] any Connection,
38                                  [in] any SQLStatement,
39                                  [in] any SQLStatement1,
40                                  [in] any OpenExclusive,
41                                  [in] any SubType );
42
43    any AppMaximize( [in] any WindowName, [in] any State );
44    any DocMaximize( [in] any State );
45    void AppShow( [in] any WindowName );
46    any AppCount();
47};
48
49}; }; };
50
51#endif
52
53/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
54