LibreOffice
LibreOffice 7.4 SDK API Reference
XPanel.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  */
10 #ifndef __com_sun_star_ui_XPanel_idl__
11 #define __com_sun_star_ui_XPanel_idl__
12 
15 
16 
17  module com { module sun { module star { module ui {
18 
23 interface XPanel
24 
25 {
28  string getId();
29 
32  string getTitle();
33 
39  void setTitle( [in] string newTitle );
40 
43  boolean isExpanded();
44 
47  void collapse ();
48 
57  void expand ( [in] boolean bCollapseOther );
58 
61  long getOrderIndex();
62 
65  void setOrderIndex( [in] long newOrderIndex );
66 
69  void moveFirst();
70 
73  void moveLast();
74 
77  void moveUp();
78 
81  void moveDown();
82 
86 
87 };
88 
89 
90 }; }; }; };
91 
92 #endif
93 
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
specifies the basic operations for a window component.
Definition: XWindow.idl:51
provides access to Panel
Definition: XPanel.idl:25
void moveLast()
Move panel as last item of the deck.
void moveDown()
Move the panel one step down in the deck.
void collapse()
Collapse the panel to only show its title bar.
void setTitle([in] string newTitle)
Set the panel title string.
void moveUp()
Move panel one step up in the deck.
string getTitle()
Get the panel title string.
void setOrderIndex([in] long newOrderIndex)
Set the ordering index of the panel in the deck.
void expand([in] boolean bCollapseOther)
Expand and display the panel.
void moveFirst()
Move panel as first item of the deck.
boolean isExpanded()
Is the panel expanded.
long getOrderIndex()
Get the ordering index of the panel in the deck.
com::sun::star::awt::XWindow getDialog()
Get the panel dialog element.
string getId()
The panel identifier.
Definition: Ambiguous.idl:22