16fbb7301SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
36fbb7301SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
46fbb7301SAndrew Rist * or more contributor license agreements.  See the NOTICE file
56fbb7301SAndrew Rist * distributed with this work for additional information
66fbb7301SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
76fbb7301SAndrew Rist * to you under the Apache License, Version 2.0 (the
86fbb7301SAndrew Rist * "License"); you may not use this file except in compliance
96fbb7301SAndrew Rist * with the License.  You may obtain a copy of the License at
106fbb7301SAndrew Rist *
116fbb7301SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
126fbb7301SAndrew Rist *
136fbb7301SAndrew Rist * Unless required by applicable law or agreed to in writing,
146fbb7301SAndrew Rist * software distributed under the License is distributed on an
156fbb7301SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
166fbb7301SAndrew Rist * KIND, either express or implied.  See the License for the
176fbb7301SAndrew Rist * specific language governing permissions and limitations
186fbb7301SAndrew Rist * under the License.
196fbb7301SAndrew Rist *
206fbb7301SAndrew Rist *************************************************************/
216fbb7301SAndrew Rist
226fbb7301SAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#ifndef __ooo_vba_excel_SheetObject_idl__
25cdf0e10cSrcweir#define __ooo_vba_excel_SheetObject_idl__
26cdf0e10cSrcweir
27*b63233d8Sdamjan#include <ooo/vba/excel/XSheetObject.idl>
28*b63233d8Sdamjan
29cdf0e10cSrcweir#include <ooo/vba/excel/XCharacters.idl>
30*b63233d8Sdamjan#include <ooo/vba/excel/XButton.idl>
31cdf0e10cSrcweir
32cdf0e10cSrcweir//=============================================================================
33cdf0e10cSrcweir
34cdf0e10cSrcweir/*  Note: This file collects all compatibility interfaces for drawing objects
35cdf0e10cSrcweir    and drawing controls embedded in sheets. All these symbols are deprecated
36cdf0e10cSrcweir    in VBA and kept for compatibility with old VBA scripts. */
37cdf0e10cSrcweir
38cdf0e10cSrcweir//=============================================================================
39cdf0e10cSrcweir
40cdf0e10cSrcweirmodule ooo {  module vba { module excel {
41cdf0e10cSrcweir
42cdf0e10cSrcweir//=============================================================================
43cdf0e10cSrcweir
44cdf0e10cSrcweir//=============================================================================
45cdf0e10cSrcweir
46cdf0e10cSrcweir/** Represents a drawing button control in a spreadsheet. */
47cdf0e10cSrcweirservice Button
48cdf0e10cSrcweir{
49cdf0e10cSrcweir    interface XSheetObject;
50cdf0e10cSrcweir    interface XControlObject;
51cdf0e10cSrcweir    interface XButton;
52cdf0e10cSrcweir};
53cdf0e10cSrcweir
54cdf0e10cSrcweir//=============================================================================
55cdf0e10cSrcweir
56cdf0e10cSrcweir}; }; };
57cdf0e10cSrcweir
58cdf0e10cSrcweir#endif
59