1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
/* -*- 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 <sfx2/templatelocalview.hxx>
#include <sfx2/listview.hxx>
class TemplateDlgLocalView final : public TemplateLocalView, public ListView
{
public:
TemplateDlgLocalView(std::unique_ptr<weld::ScrolledWindow> xWindow,
std::unique_ptr<weld::Menu> xMenu,
std::unique_ptr<weld::TreeView> xTreeView);
void setTemplateViewMode(TemplateViewMode eMode);
virtual void showAllTemplates() override;
void showRegion(TemplateContainerItem const* pItem);
void showRegion(std::u16string_view rName);
void reload();
virtual bool KeyInput(const KeyEvent& rKEvt) override;
void createContextMenu(const bool bIsDefault, const bool bIsBuiltIn, const bool bIsSingleSel,
const OUString& rDefaultImg);
virtual void Show() override;
virtual void Hide() override;
bool IsVisible() const;
void connect_focus_rect(const Link<weld::Widget&, tools::Rectangle>& rLink)
{
GetDrawingArea()->connect_focus_rect(rLink);
}
void MakeItemVisible(sal_uInt16 nId) { ThumbnailView::MakeItemVisible(nId); }
void insertItems(const std::vector<TemplateItemProperties>& rTemplates, bool isRegionSelected,
bool bShowCategoryInTooltip);
private:
void ContextMenuSelectHdl(std::string_view rIdent);
void insertFilteredItems();
void syncCursor();
void updateSelection();
DECL_LINK(RowActivatedHdl, weld::TreeView&, bool);
DECL_LINK(ListViewChangedHdl, weld::TreeView&, void);
DECL_LINK(PopupMenuHdl, const CommandEvent&, bool);
DECL_LINK(KeyPressHdl, const KeyEvent&, bool);
TemplateViewMode mViewMode;
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|