diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2021-03-15 16:16:05 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2021-03-16 03:41:39 +0100 |
commit | 2b9cf977810193b642761328ec15ec78ce245016 (patch) | |
tree | ceae57fbe83ba82ec739742ac68bc274e84da1d6 /include/sfx2/devtools/DevelopmentToolDockingWindow.hxx | |
parent | 173697822d6a598461f79da2e2f77f24723d40ab (diff) |
devtools: add a text view to show the value of selected property
Sometimes the property value in textual form can take a lot of
space, which can't be shown completely in the tree view. To solve
this problem, this change adds a text view at the bottom of the
tree view, that shows the complete value of currently selected
property.
The text view can be expanded if necessary, but to not require
constant changing of the pane, the position of the text view is
always reset to 90% of the total height.
Change-Id: I209ee29c7b60ecaa15227cc4966f19a063a7dc0a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112548
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include/sfx2/devtools/DevelopmentToolDockingWindow.hxx')
-rw-r--r-- | include/sfx2/devtools/DevelopmentToolDockingWindow.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sfx2/devtools/DevelopmentToolDockingWindow.hxx b/include/sfx2/devtools/DevelopmentToolDockingWindow.hxx index 656e46fedada..1c4826f975f6 100644 --- a/include/sfx2/devtools/DevelopmentToolDockingWindow.hxx +++ b/include/sfx2/devtools/DevelopmentToolDockingWindow.hxx @@ -62,9 +62,9 @@ public: virtual ~DevelopmentToolDockingWindow() override; - virtual void dispose() override; + void dispose() override; - virtual void ToggleFloatingMode() override; + void ToggleFloatingMode() override; // Inspect the input object in the object inspector void introspect(css::uno::Reference<css::uno::XInterface> const& xInterface); |