-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfindreplace.ui
127 lines (127 loc) · 3.27 KB
/
findreplace.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
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>FindReplace</class>
<widget class="QDialog" name="FindReplace">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>269</width>
<height>371</height>
</rect>
</property>
<property name="windowTitle">
<string>查找替换</string>
</property>
<property name="windowIcon">
<iconset resource="resource.qrc">
<normaloff>:/qdevcpp.ico</normaloff>:/qdevcpp.ico</iconset>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QFormLayout" name="formLayout">
<item row="0" column="0">
<widget class="QLabel" name="labelFind">
<property name="text">
<string>查找</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLineEdit" name="findPattern"/>
</item>
<item row="1" column="0">
<widget class="QLabel" name="labelReplace">
<property name="text">
<string>替换</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QLineEdit" name="replacePattern"/>
</item>
</layout>
</item>
<item>
<widget class="QGroupBox" name="options">
<property name="title">
<string>选项</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_5">
<item>
<widget class="QCheckBox" name="useRegex">
<property name="text">
<string>使用正则表达式</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="caseInsensitive">
<property name="text">
<string>不区分大小写</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="matchWord">
<property name="text">
<string>全字匹配</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="findBackward">
<property name="text">
<string>向开头搜索</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="wrap">
<property name="text">
<string>循环搜索</string>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<layout class="QGridLayout" name="gridLayout">
<item row="1" column="0">
<widget class="QPushButton" name="find">
<property name="text">
<string>查找</string>
</property>
</widget>
</item>
<item row="2" column="3">
<widget class="QPushButton" name="close">
<property name="text">
<string>关闭</string>
</property>
</widget>
</item>
<item row="1" column="3">
<widget class="QPushButton" name="replaceAll">
<property name="text">
<string>替换全部</string>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QPushButton" name="replace">
<property name="text">
<string>替换</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
<resources>
<include location="resource.qrc"/>
</resources>
<connections/>
</ui>