1*d975be8cSAndre Fischer/**************************************************************
2*d975be8cSAndre Fischer *
3*d975be8cSAndre Fischer * Licensed to the Apache Software Foundation (ASF) under one
4*d975be8cSAndre Fischer * or more contributor license agreements.  See the NOTICE file
5*d975be8cSAndre Fischer * distributed with this work for additional information
6*d975be8cSAndre Fischer * regarding copyright ownership.  The ASF licenses this file
7*d975be8cSAndre Fischer * to you under the Apache License, Version 2.0 (the
8*d975be8cSAndre Fischer * "License"); you may not use this file except in compliance
9*d975be8cSAndre Fischer * with the License.  You may obtain a copy of the License at
10*d975be8cSAndre Fischer *
11*d975be8cSAndre Fischer *   http://www.apache.org/licenses/LICENSE-2.0
12*d975be8cSAndre Fischer *
13*d975be8cSAndre Fischer * Unless required by applicable law or agreed to in writing,
14*d975be8cSAndre Fischer * software distributed under the License is distributed on an
15*d975be8cSAndre Fischer * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*d975be8cSAndre Fischer * KIND, either express or implied.  See the License for the
17*d975be8cSAndre Fischer * specific language governing permissions and limitations
18*d975be8cSAndre Fischer * under the License.
19*d975be8cSAndre Fischer *
20*d975be8cSAndre Fischer *************************************************************/
21*d975be8cSAndre Fischer
22*d975be8cSAndre Fischer
23*d975be8cSAndre Fischer
24*d975be8cSAndre Fischer#ifndef __com_sun_star_ui_ContextChangeEventObject_idl__
25*d975be8cSAndre Fischer#define __com_sun_star_ui_ContextChangeEventObject_idl__
26*d975be8cSAndre Fischer
27*d975be8cSAndre Fischer#ifndef __com_sun_star_uno_XInterface_idl__
28*d975be8cSAndre Fischer#include <com/sun/star/uno/XInterface.idl>
29*d975be8cSAndre Fischer#endif
30*d975be8cSAndre Fischer
31*d975be8cSAndre Fischer#ifndef __com_sun_star_lang_EventObject_idl__
32*d975be8cSAndre Fischer#include <com/sun/star/lang/EventObject.idl>
33*d975be8cSAndre Fischer#endif
34*d975be8cSAndre Fischer
35*d975be8cSAndre Fischer
36*d975be8cSAndre Fischermodule com { module sun { module star { module ui {
37*d975be8cSAndre Fischer
38*d975be8cSAndre Fischerstruct ContextChangeEventObject : com::sun::star::lang::EventObject
39*d975be8cSAndre Fischer{
40*d975be8cSAndre Fischer    /** Return the name of the application.
41*d975be8cSAndre Fischer    */
42*d975be8cSAndre Fischer    string ApplicationName;
43*d975be8cSAndre Fischer
44*d975be8cSAndre Fischer    /** Return the application specific context name.
45*d975be8cSAndre Fischer    */
46*d975be8cSAndre Fischer    string ContextName;
47*d975be8cSAndre Fischer};
48*d975be8cSAndre Fischer
49*d975be8cSAndre Fischer}; }; }; };
50*d975be8cSAndre Fischer
51*d975be8cSAndre Fischer//=============================================================================
52*d975be8cSAndre Fischer
53*d975be8cSAndre Fischer#endif
54