-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathplugin_qt5.qml
More file actions
110 lines (102 loc) · 2.27 KB
/
plugin_qt5.qml
File metadata and controls
110 lines (102 loc) · 2.27 KB
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
import QtQuick 2.2
import QtCharts 2.4
import Qt.labs.folderlistmodel 2.11
Rectangle
{
id: root
SystemPalette
{
id: pal
colorGroup: SystemPalette.Active
}
anchors.centerIn: parent
color: pal.window
Rectangle
{
anchors.top: parent.top
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: path.bottom
color: pal.highlight
}
Text
{
id: path
anchors.top: parent.top
anchors.left: parent.left
anchors.right: parent.right
color: pal.highlightedText
onTextChanged: fmodel.folder = path.text
}
ChartView
{
id: dirchart
anchors.top: path.bottom
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
backgroundColor: pal.window
legend.alignment: Qt.AlignRight
legend.labelColor: pal.text
titleColor: pal.text
titleFont.pointSize: 15
titleFont.bold: true
//theme: ChartView.ChartThemeDark
PieSeries { id: pieser }
FolderListModel
{
id: fmodel
showDirs: false
showDotAndDotDot: false
sortField: "Size"
nameFilters: ["*"]
onStatusChanged:
{
if (fmodel.status == FolderListModel.Ready)
{
pieser.clear()
dirchart.title = (fmodel.count == 0) ? "There are no files in this folder" : "Top 10 files you want to remove"
var count = (fmodel.count < 10) ? fmodel.count : 10
for (var i = 0; i < count; i++)
pieser.append(fmodel.get(i, "fileName"), fmodel.get(i, "fileSize"))
if (fmodel.count > 10)
{
var size = 0
for (var i = 11; i < fmodel.count; i++)
size += fmodel.get(i, "fileSize")
pieser.append("... (" + Number(fmodel.count - 10) + " file(s))", size)
}
}
}
}
}
function myListLoad(FileToLoad: string, ShowFlags: int): bool
{
path.text = FileToLoad
return true
}
function myListLoadNext(FileToLoad: string, ShowFlags: int): bool
{
return myListLoad(FileToLoad, ShowFlags)
}
function myListSendCommand(Command: int, Parameter: int): bool
{
return false
}
function myListSearchDialog(FindNext: bool): bool
{
return true
}
function myListSearchText(SearchString: string, SearchParameter: int): bool
{
return false
}
function myListPrint(FileToPrint: string, DefPrinter: string, PrintFlags: int, Margins: rect): bool
{
return false
}
function myListCloseWindow()
{
return
}
}