LibreOffice
LibreOffice 7.6 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 
11 
12  module com { module sun { module star { module ui {
13 
18 interface XPanel
19 
20 {
23  string getId();
24 
27  string getTitle();
28 
34  void setTitle( [in] string newTitle );
35 
38  boolean isExpanded();
39 
42  void collapse ();
43 
52  void expand ( [in] boolean bCollapseOther );
53 
56  long getOrderIndex();
57 
60  void setOrderIndex( [in] long newOrderIndex );
61 
64  void moveFirst();
65 
68  void moveLast();
69 
72  void moveUp();
73 
76  void moveDown();
77 
81 
82 };
83 
84 
85 }; }; }; };
86 
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
com::sun::star::ui::XPanel::collapse
void collapse()
Collapse the panel to only show its title bar.
com::sun::star::ui::XPanel
provides access to Panel
Definition: XPanel.idl:20
com::sun::star::awt::XWindow
specifies the basic operations for a window component.
Definition: XWindow.idl:33
com::sun::star::ui::XPanel::getOrderIndex
long getOrderIndex()
Get the ordering index of the panel in the deck.
com::sun::star::ui::XPanel::moveUp
void moveUp()
Move panel one step up in the deck.
com::sun::star::ui::XPanel::getTitle
string getTitle()
Get the panel title string.
com::sun::star::ui::XPanel::isExpanded
boolean isExpanded()
Is the panel expanded.
com::sun::star::ui::XPanel::setTitle
void setTitle([in] string newTitle)
Set the panel title string.
com::sun::star::ui::XPanel::setOrderIndex
void setOrderIndex([in] long newOrderIndex)
Set the ordering index of the panel in the deck.
com::sun::star::ui::XPanel::getDialog
com::sun::star::awt::XWindow getDialog()
Get the panel dialog element.
com::sun::star::ui::XPanel::expand
void expand([in] boolean bCollapseOther)
Expand and display the panel.
com::sun::star::ui::XPanel::moveDown
void moveDown()
Move the panel one step down in the deck.
com
Definition: Ambiguous.idl:20
com::sun::star::ui::XPanel::getId
string getId()
The panel identifier.
com::sun::star::ui::XPanel::moveFirst
void moveFirst()
Move panel as first item of the deck.
com::sun::star::ui::XPanel::moveLast
void moveLast()
Move panel as last item of the deck.