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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/* -*- 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>
enum TemplateViewMode
{
eListView,
eThumbnailView
};
class SfxDocumentTemplates;
class TemplateContainerItem;
struct ListViewItem;
class ListView
{
public:
ListView(std::unique_ptr<weld::TreeView> xTreeView);
~ListView();
void AppendItem(const OUString& rId, const OUString& rTitle, const OUString& rSubtitle,
const OUString& rPath, bool bDefault);
void AppendRow(const OUString& rImage, const OUString& rTitle, const OUString& rSubtitle,
const OUString& rApplication, const OUString& rModify, const OUString& rSize,
const OUString& rId);
void UpdateRow(int nIndex, const OUString& rImage, const OUString& rTitle,
const OUString& rSubtitle, const OUString& rApplication, const OUString& rModify,
const OUString& rSize, const OUString& rId);
void ReloadRows();
bool UpdateRows();
void sortColumn(const int col);
void sort();
void clearListView();
void ShowListView() { mxTreeView->show(); }
void HideListView() { mxTreeView->hide(); }
void unselect_all() { mxTreeView->unselect_all(); }
void grab_focus() { mxTreeView->grab_focus(); }
void rename(const OUString& rId, const OUString& rTitle);
void refreshDefaultColumn();
protected:
sal_uInt16 get_nId(int pos) const;
void select_id(const OUString& sId) { mxTreeView->select_id(sId); }
int get_selected_index() const { return mxTreeView->get_selected_index(); }
std::vector<int> get_selected_rows() const { return mxTreeView->get_selected_rows(); }
bool IsListViewVisible() const { return mxTreeView->is_visible(); }
OUString get_id(int pos) const { return mxTreeView->get_id(pos); }
void set_cursor(int pos) { mxTreeView->set_cursor(pos); }
int get_cursor_index() const { return mxTreeView->get_cursor_index(); }
sal_uInt16 get_cursor_nId() const { return get_nId(mxTreeView->get_cursor_index()); }
void select(int pos) { mxTreeView->select(pos); }
int get_index(sal_uInt16 nId) const { return mxTreeView->find_id(OUString::number(nId)); }
DECL_LINK(ColumnClickedHdl, const int, void);
DECL_LINK(QueryTooltipHdl, const weld::TreeIter&, OUString);
protected:
std::unique_ptr<weld::TreeView> mxTreeView;
std::vector<std::unique_ptr<ListViewItem>> mListViewItems;
Link<weld::TreeView&, void> maSelectionChangedHdl;
int mnSortColumn;
};
struct ListViewItem
{
public:
OUString maId;
OUString maTitle;
OUString maSubtitle;
OUString maApplication;
OUString maPath;
bool mbDefault;
/** Last modify time in seconds since 1/1/1970. */
sal_uInt32 mnModify;
/** Size in bytes of the file. */
sal_uInt64 mnSize;
OUString maDisplayModify;
OUString maDisplaySize;
OUString maDisplayPath;
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|