Kaydet (Commit) 0b3c2cb3 authored tarafından Ashod Nakashian's avatar Ashod Nakashian Kaydeden (comit) Andras Timar

sd: document the left pane classes

Change-Id: Id037e2f5f733ef7266ef6d48ff2ff7dea956ea25
Reviewed-on: https://gerrit.libreoffice.org/69070Reviewed-by: 's avatarAndras Timar <andras.timar@collabora.com>
Tested-by: 's avatarAndras Timar <andras.timar@collabora.com>
üst e5a0bafa
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
namespace sd { namespace sd {
/// Base class of Impress and Draw left sidebars/panes.
class PaneChildWindow class PaneChildWindow
: public SfxChildWindow : public SfxChildWindow
{ {
...@@ -37,20 +38,24 @@ public: ...@@ -37,20 +38,24 @@ public:
virtual ~PaneChildWindow() override; virtual ~PaneChildWindow() override;
}; };
/// The slide-sorter sidebar (on the left) in Impress.
class LeftPaneImpressChildWindow class LeftPaneImpressChildWindow
: public PaneChildWindow : public PaneChildWindow
{ {
public: public:
LeftPaneImpressChildWindow (vcl::Window*, sal_uInt16, SfxBindings*, SfxChildWinInfo*); LeftPaneImpressChildWindow(vcl::Window* pParentWindow, sal_uInt16 nId, SfxBindings* pBindings,
SfxChildWinInfo* pInfo);
SFX_DECL_CHILDWINDOW_WITHID(LeftPaneImpressChildWindow); SFX_DECL_CHILDWINDOW_WITHID(LeftPaneImpressChildWindow);
}; };
/// The pages sidebar (on the left) in Draw.
class LeftPaneDrawChildWindow class LeftPaneDrawChildWindow
: public PaneChildWindow : public PaneChildWindow
{ {
public: public:
LeftPaneDrawChildWindow (vcl::Window*, sal_uInt16, SfxBindings*, SfxChildWinInfo*); LeftPaneDrawChildWindow(vcl::Window* pParentWindow, sal_uInt16 nId, SfxBindings* pBindings,
SfxChildWinInfo* pInfo);
SFX_DECL_CHILDWINDOW_WITHID(LeftPaneDrawChildWindow); SFX_DECL_CHILDWINDOW_WITHID(LeftPaneDrawChildWindow);
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment