summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/ui
diff options
context:
space:
mode:
authorLaurent Godard <lgodard.libre@laposte.net>2015-08-24 14:15:57 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-08-25 12:08:57 +0000
commitc609b30b12df9118a9fb5fcf06177a39c54d895a (patch)
tree604cc73a9ac48d994047ce0680802625a6497b88 /offapi/com/sun/star/ui
parent65a66d41fd0e13d0aad9df935091b731b4af650a (diff)
sidebar uno api corrections
Change-Id: I1bd1040cc80c0450a5e029c37f0737c0692c056a Reviewed-on: https://gerrit.libreoffice.org/17952 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'offapi/com/sun/star/ui')
-rw-r--r--offapi/com/sun/star/ui/XDeck.idl6
-rw-r--r--offapi/com/sun/star/ui/XDecks.idl7
-rw-r--r--offapi/com/sun/star/ui/XPanel.idl4
-rw-r--r--offapi/com/sun/star/ui/XPanels.idl9
-rw-r--r--offapi/com/sun/star/ui/XSidebarProvider.idl1
5 files changed, 22 insertions, 5 deletions
diff --git a/offapi/com/sun/star/ui/XDeck.idl b/offapi/com/sun/star/ui/XDeck.idl
index 53b739703587..f19ed40dc9e3 100644
--- a/offapi/com/sun/star/ui/XDeck.idl
+++ b/offapi/com/sun/star/ui/XDeck.idl
@@ -15,7 +15,9 @@
module com { module sun { module star { module ui {
-/** provides access to Desk */
+/** provides access to Deck
+ @since LibreOffice 5.1
+*/
interface XDeck
@@ -39,7 +41,7 @@ interface XDeck
*/
boolean isActive();
- /** Activate the deck and isplays its content
+ /** Activate the deck and displays its content
@param bActivate
The requested state for the deck
diff --git a/offapi/com/sun/star/ui/XDecks.idl b/offapi/com/sun/star/ui/XDecks.idl
index ba7c3a7f3107..0ed297702db6 100644
--- a/offapi/com/sun/star/ui/XDecks.idl
+++ b/offapi/com/sun/star/ui/XDecks.idl
@@ -15,11 +15,16 @@
module com { module sun { module star { module ui {
-/** provides access to Desks of a Sidebar.*/
+/** provides access to Decks of a Sidebar.
+ @since LibreOffice 5.1
+*/
interface XDecks
{
+ /**
+ returned ANYs are actually of type com::sun::star::ui::XDeck
+ */
interface com::sun::star::container::XIndexAccess;
interface com::sun::star::container::XNameAccess;
};
diff --git a/offapi/com/sun/star/ui/XPanel.idl b/offapi/com/sun/star/ui/XPanel.idl
index 0070d2356cca..f02d8b3b5609 100644
--- a/offapi/com/sun/star/ui/XPanel.idl
+++ b/offapi/com/sun/star/ui/XPanel.idl
@@ -16,7 +16,9 @@
module com { module sun { module star { module ui {
-/** provides access to Desk */
+/** provides access to Panel
+ @since LibreOffice 5.1
+*/
interface XPanel
diff --git a/offapi/com/sun/star/ui/XPanels.idl b/offapi/com/sun/star/ui/XPanels.idl
index a2aa85103e46..361785546f41 100644
--- a/offapi/com/sun/star/ui/XPanels.idl
+++ b/offapi/com/sun/star/ui/XPanels.idl
@@ -15,14 +15,21 @@
module com { module sun { module star { module ui {
-/** provides access to Panels of a Deck.*/
+/** provides access to Panels of a Deck.
+ @since LibreOffice 5.1
+*/
interface XPanels
{
+ /**
+ returned ANYs are actually of type com::sun::star::ui::XPanel
+ */
interface com::sun::star::container::XIndexAccess;
interface com::sun::star::container::XNameAccess;
+ /** The deck Id that contains the Panels
+ */
string getDeckId();
};
diff --git a/offapi/com/sun/star/ui/XSidebarProvider.idl b/offapi/com/sun/star/ui/XSidebarProvider.idl
index 8392bea6255a..96dbfd8dce1a 100644
--- a/offapi/com/sun/star/ui/XSidebarProvider.idl
+++ b/offapi/com/sun/star/ui/XSidebarProvider.idl
@@ -21,6 +21,7 @@
module com { module sun { module star { module ui {
/** Interface of the sidebar
+ @since LibreOffice 5.1
*/
interface XSidebarProvider: com::sun::star::uno::XInterface
{