Revert "Revert "Revert "stronger typing for SwClient::GetRegisteredIn"" and fix SwIte...
[LibreOffice.git] / include / sfx2 / devtools / ObjectInspectorWidgets.hxx
blob04d6b0f1c06c7052260a41f3c915333d26b6e715
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 */
11 #pragma once
13 #include <sfx2/dllapi.h>
14 #include <vcl/weld.hxx>
16 struct SFX2_DLLPUBLIC ObjectInspectorWidgets
18 ObjectInspectorWidgets(const std::unique_ptr<weld::Builder>& rxBuilder);
20 ~ObjectInspectorWidgets();
22 std::unique_ptr<weld::Label> mpClassNameLabel;
23 std::unique_ptr<weld::TreeView> mpInterfacesTreeView;
24 std::unique_ptr<weld::TreeView> mpServicesTreeView;
25 std::unique_ptr<weld::TreeView> mpPropertiesTreeView;
26 std::unique_ptr<weld::TreeView> mpMethodsTreeView;
27 std::unique_ptr<weld::Toolbar> mpToolbar;
28 std::unique_ptr<weld::Notebook> mpNotebook;
29 std::unique_ptr<weld::TextView> mpTextView;
30 std::unique_ptr<weld::Paned> mpPaned;
33 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */