Files
loongoffice/include/sfx2/devtools/ObjectInspectorWidgets.hxx
Tomaž Vajngerl 2b9cf97781 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>
2021-03-16 03:41:39 +01:00

56 lines
2.0 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
*/
#pragma once
#include <vcl/weld.hxx>
struct ObjectInspectorWidgets
{
ObjectInspectorWidgets(std::unique_ptr<weld::Builder>& rxBuilder)
: mpClassNameLabel(rxBuilder->weld_label("class_name_value_id"))
, mpInterfacesTreeView(rxBuilder->weld_tree_view("interfaces_treeview_id"))
, mpServicesTreeView(rxBuilder->weld_tree_view("services_treeview_id"))
, mpPropertiesTreeView(rxBuilder->weld_tree_view("properties_treeview_id"))
, mpMethodsTreeView(rxBuilder->weld_tree_view("methods_treeview_id"))
, mpToolbar(rxBuilder->weld_toolbar("object_inspector_toolbar"))
, mpNotebook(rxBuilder->weld_notebook("object_inspector_notebookbar"))
, mpTextView(rxBuilder->weld_text_view("object_inspector_text_view"))
, mpPaned(rxBuilder->weld_paned("object_inspector_paned"))
{
}
~ObjectInspectorWidgets()
{
// dispose welded objects
mpClassNameLabel.reset();
mpInterfacesTreeView.reset();
mpServicesTreeView.reset();
mpPropertiesTreeView.reset();
mpMethodsTreeView.reset();
mpToolbar.reset();
mpNotebook.reset();
mpTextView.reset();
mpPaned.reset();
}
std::unique_ptr<weld::Label> mpClassNameLabel;
std::unique_ptr<weld::TreeView> mpInterfacesTreeView;
std::unique_ptr<weld::TreeView> mpServicesTreeView;
std::unique_ptr<weld::TreeView> mpPropertiesTreeView;
std::unique_ptr<weld::TreeView> mpMethodsTreeView;
std::unique_ptr<weld::Toolbar> mpToolbar;
std::unique_ptr<weld::Notebook> mpNotebook;
std::unique_ptr<weld::TextView> mpTextView;
std::unique_ptr<weld::Paned> mpPaned;
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */