LibreOffice
LibreOffice 24.2 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 
20 module com { module sun { module star { module frame {
21 
39 {
47 
78 
87 
99 
112  boolean mouseButtonDown( [in] ::com::sun::star::awt::MouseEvent aMouseEvent );
113 
126  boolean mouseMove( [in] ::com::sun::star::awt::MouseEvent aMouseEvent );
127 
140  boolean mouseButtonUp( [in] ::com::sun::star::awt::MouseEvent aMouseEvent );
141 
159  [in] long nCommand,
160  [in] boolean bMouseEvent,
161  [in] any aData );
162 
177  void paint( [in] ::com::sun::star::awt::XGraphics xGraphics,
178  [in] ::com::sun::star::awt::Rectangle OutputRectangle,
179  [in] long nStyle );
180 
187  void click( [in] ::com::sun::star::awt::Point aPos );
188 
196 };
197 
198 }; }; }; };
199 
200 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
provides the basic output operation of a device.
Definition: XGraphics.idl:32
makes it possible to receive events when the state of a feature changes.
Definition: XStatusListener.idl:36
interface to be implemented by a component offering a more complex user interface to users within a s...
Definition: XStatusbarController.idl:39
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:39
initializes an object directly after its creation.
Definition: XInitialization.idl:41
is supported by objects with data that can be updated from a data source.
Definition: XUpdatable.idl:27
Definition: Ambiguous.idl:20
specifies an event from the mouse.
Definition: MouseEvent.idl:35
specifies a 2-dimensional point using the Cartesian coordinate system.
Definition: Point.idl:28
specifies a rectangular area by position and size.
Definition: Rectangle.idl:28