LibreOffice
LibreOffice 7.4 SDK API Reference
XStatusbarController.idl
Go to the documentation of this file.
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  * This file incorporates work covered by the following license notice:
10  *
11  * Licensed to the Apache Software Foundation (ASF) under one or more
12  * contributor license agreements. See the NOTICE file distributed
13  * with this work for additional information regarding copyright
14  * ownership. The ASF licenses this file to you under the Apache
15  * License, Version 2.0 (the "License"); you may not use this file
16  * except in compliance with the License. You may obtain a copy of
17  * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
19 #ifndef __com_sun_star_frame_XStatusbarController_idl__
20 #define __com_sun_star_frame_XStatusbarController_idl__
21 
30 
31 module com { module sun { module star { module frame {
32 
50 {
58 
89 
98 
110 
123  boolean mouseButtonDown( [in] ::com::sun::star::awt::MouseEvent aMouseEvent );
124 
137  boolean mouseMove( [in] ::com::sun::star::awt::MouseEvent aMouseEvent );
138 
151  boolean mouseButtonUp( [in] ::com::sun::star::awt::MouseEvent aMouseEvent );
152 
170  [in] long nCommand,
171  [in] boolean bMouseEvent,
172  [in] any aData );
173 
188  void paint( [in] ::com::sun::star::awt::XGraphics xGraphics,
189  [in] ::com::sun::star::awt::Rectangle OutputRectangle,
190  [in] long nStyle );
191 
198  void click( [in] ::com::sun::star::awt::Point aPos );
199 
207 };
208 
209 }; }; }; };
210 
211 #endif
212 
213 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
provides the basic output operation of a device.
Definition: XGraphics.idl:41
makes it possible to receive events when the state of a feature changes.
Definition: XStatusListener.idl:41
interface to be implemented by a component offering a more complex user interface to users within a s...
Definition: XStatusbarController.idl:50
boolean mouseButtonDown([in] ::com::sun::star::awt::MouseEvent aMouseEvent)
is called by a status bar if the mouse position is within the controller and a mouse button has been ...
void command([in] ::com::sun::star::awt::Point aPos, [in] long nCommand, [in] boolean bMouseEvent, [in] any aData)
is called by a status bar if a command event is available for a controller.
void doubleClick([in] ::com::sun::star::awt::Point aPos)
is called by a status bar if the user double-clicked with mouse into the field of the corresponding c...
void paint([in] ::com::sun::star::awt::XGraphics xGraphics, [in] ::com::sun::star::awt::Rectangle OutputRectangle, [in] long nStyle)
is called by a status bar if the controller has to update the visual representation.
boolean mouseButtonUp([in] ::com::sun::star::awt::MouseEvent aMouseEvent)
is called by a status bar if the mouse position is within the controller and a mouse button has been ...
boolean mouseMove([in] ::com::sun::star::awt::MouseEvent aMouseEvent)
is called by a status bar if the mouse position is within the controller and a mouse has been moved.
void click([in] ::com::sun::star::awt::Point aPos)
is called by a status bar if the user clicked with mouse into the field of the corresponding control.
allows to explicitly free resources and break cyclic references.
Definition: XComponent.idl:43
initializes an object directly after its creation.
Definition: XInitialization.idl:47
is supported by objects with data that can be updated from a data source.
Definition: XUpdatable.idl:32
Definition: Ambiguous.idl:22
specifies an event from the mouse.
Definition: MouseEvent.idl:39
specifies a 2-dimensional point using the Cartesian coordinate system.
Definition: Point.idl:30
specifies a rectangular area by position and size.
Definition: Rectangle.idl:30