summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshod Nakashian <ashod.nakashian@collabora.co.uk>2018-11-12 08:22:17 -0500
committerAndras Timar <andras.timar@collabora.com>2019-09-03 13:39:11 +0200
commit17d338ae7c8d6ac3e66706887aada270dccade0e (patch)
treedc3219bc03ef4d864a40ef8e563f20ce0eee4ea5
parentc4d30aa3fc562fe7662440ab682023d3a76bacb8 (diff)
sd: document the left pane classes
Change-Id: Id037e2f5f733ef7266ef6d48ff2ff7dea956ea25 Reviewed-on: https://gerrit.libreoffice.org/69070 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com> (cherry picked from commit 0b3c2cb3cb8c8b2ddec6063c2ea75b24abf518fc) Reviewed-on: https://gerrit.libreoffice.org/78442
-rw-r--r--sd/source/ui/inc/PaneChildWindows.hxx9
1 files changed, 7 insertions, 2 deletions
diff --git a/sd/source/ui/inc/PaneChildWindows.hxx b/sd/source/ui/inc/PaneChildWindows.hxx
index d277a808d6b7..ff72731b822c 100644
--- a/sd/source/ui/inc/PaneChildWindows.hxx
+++ b/sd/source/ui/inc/PaneChildWindows.hxx
@@ -24,6 +24,7 @@
namespace sd {
+/// Base class of Impress and Draw left sidebars/panes.
class PaneChildWindow
: public SfxChildWindow
{
@@ -37,20 +38,24 @@ public:
virtual ~PaneChildWindow() override;
};
+/// The slide-sorter sidebar (on the left) in Impress.
class LeftPaneImpressChildWindow
: public PaneChildWindow
{
public:
- LeftPaneImpressChildWindow (vcl::Window*, sal_uInt16, SfxBindings*, SfxChildWinInfo*);
+ LeftPaneImpressChildWindow(vcl::Window* pParentWindow, sal_uInt16 nId, SfxBindings* pBindings,
+ SfxChildWinInfo* pInfo);
SFX_DECL_CHILDWINDOW_WITHID(LeftPaneImpressChildWindow);
};
+/// The pages sidebar (on the left) in Draw.
class LeftPaneDrawChildWindow
: public PaneChildWindow
{
public:
- LeftPaneDrawChildWindow (vcl::Window*, sal_uInt16, SfxBindings*, SfxChildWinInfo*);
+ LeftPaneDrawChildWindow(vcl::Window* pParentWindow, sal_uInt16 nId, SfxBindings* pBindings,
+ SfxChildWinInfo* pInfo);
SFX_DECL_CHILDWINDOW_WITHID(LeftPaneDrawChildWindow);
};