summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2021-01-06 15:58:13 +0900
committerTomaž Vajngerl <quikee@gmail.com>2021-01-13 11:59:01 +0100
commit9bbf7a1a1029f780e569b5e8df79e86ba5b8c88e (patch)
treed170c90f6399c21382bbaa388fe03a4e5f51f811 /include
parentfcd96df8f648439ea191d8c2070e8b21ff0b1001 (diff)
devtools: Add treeview with content of current object
Change-Id: I8d6dd035e60a7521c404e23045fade7eae47fc6c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108975 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/svx/devtools/DevelopmentToolDockingWindow.hxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/svx/devtools/DevelopmentToolDockingWindow.hxx b/include/svx/devtools/DevelopmentToolDockingWindow.hxx
index 30499379f32e..a7c39480cf64 100644
--- a/include/svx/devtools/DevelopmentToolDockingWindow.hxx
+++ b/include/svx/devtools/DevelopmentToolDockingWindow.hxx
@@ -28,6 +28,10 @@ class SAL_WARN_UNUSED SVX_DLLPUBLIC DevelopmentToolChildWindow final : public Sf
class SAL_WARN_UNUSED SVX_DLLPUBLIC DevelopmentToolDockingWindow final : public SfxDockingWindow
{
+private:
+ std::unique_ptr<weld::Label> mpClassNameLabel;
+ std::unique_ptr<weld::TreeView> mpClassListBox;
+
public:
DevelopmentToolDockingWindow(SfxBindings* pBindings, SfxChildWindow* pChildWindow,
vcl::Window* pParent);
@@ -35,6 +39,8 @@ public:
virtual ~DevelopmentToolDockingWindow() override;
virtual void ToggleFloatingMode() override;
+
+ void introspect(css::uno::Reference<css::uno::XInterface> const& xInterface);
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */