-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkfilesearchermainwindow.ui
165 lines (165 loc) · 4.26 KB
/
kfilesearchermainwindow.ui
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>KFileSearcherMainWindow</class>
<widget class="QMainWindow" name="KFileSearcherMainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>832</width>
<height>550</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>9</pointsize>
</font>
</property>
<property name="windowTitle">
<string>桌面文件搜索器</string>
</property>
<property name="windowIcon">
<iconset resource="kfilesearcher.qrc">
<normaloff>:/icon/icon.svg</normaloff>:/icon/icon.svg</iconset>
</property>
<widget class="QWidget" name="m_centralwidget">
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QLineEdit" name="m_inputLineEdit">
<property name="placeholderText">
<string>请输入搜索内容(支持拼音搜索)</string>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="m_filter_ComboBox">
<item>
<property name="text">
<string>所有</string>
</property>
</item>
<item>
<property name="text">
<string>文件夹</string>
</property>
</item>
<item>
<property name="text">
<string>文件</string>
</property>
</item>
</widget>
</item>
</layout>
</item>
<item>
<widget class="KFileDetailsView" name="m_detailsView"/>
</item>
</layout>
</widget>
<widget class="QMenuBar" name="m_menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>832</width>
<height>17</height>
</rect>
</property>
<property name="font">
<font>
<pointsize>9</pointsize>
</font>
</property>
<widget class="QMenu" name="menu">
<property name="title">
<string>文件</string>
</property>
<addaction name="m_exportAction"/>
<addaction name="m_hideAction"/>
<addaction name="m_quitAction"/>
</widget>
<widget class="QMenu" name="menu_2">
<property name="title">
<string>编辑</string>
</property>
<addaction name="m_selectAllAction"/>
<addaction name="m_deleteAction"/>
</widget>
<widget class="QMenu" name="menu_3">
<property name="title">
<string>搜索</string>
</property>
<addaction name="m_regExpAction"/>
</widget>
<addaction name="menu"/>
<addaction name="menu_2"/>
<addaction name="menu_3"/>
</widget>
<widget class="QStatusBar" name="m_statusbar"/>
<action name="m_quitAction">
<property name="text">
<string>退出</string>
</property>
<property name="shortcut">
<string>Ctrl+Q</string>
</property>
</action>
<action name="m_exportAction">
<property name="text">
<string>将选中的文件导出到</string>
</property>
<property name="shortcut">
<string>Ctrl+S</string>
</property>
</action>
<action name="m_selectAllAction">
<property name="text">
<string>全选</string>
</property>
<property name="shortcut">
<string>Ctrl+A</string>
</property>
</action>
<action name="m_regExpAction">
<property name="checkable">
<bool>true</bool>
</property>
<property name="text">
<string>使用正则表达式</string>
</property>
<property name="shortcut">
<string>Ctrl+R</string>
</property>
</action>
<action name="m_deleteAction">
<property name="text">
<string>删除选中文件</string>
</property>
<property name="shortcut">
<string>Del</string>
</property>
</action>
<action name="m_hideAction">
<property name="text">
<string>隐藏/显示</string>
</property>
<property name="shortcut">
<string>Alt+Space</string>
</property>
</action>
</widget>
<customwidgets>
<customwidget>
<class>KFileDetailsView</class>
<extends>QTableView</extends>
<header>kfiledetailsview.h</header>
</customwidget>
</customwidgets>
<resources>
<include location="kfilesearcher.qrc"/>
</resources>
<connections/>
</ui>